/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Colors */
    --background: #f8fafc;
    --foreground: #1e293b;
    --card: #ffffff;
    --card-foreground: #1e293b;
    --primary: #1e5a8e;
    --primary-foreground: #ffffff;
    --primary-light: #2563eb;
    --primary-dark: #0c3a5c;
    --secondary: #f1f5f9;
    --secondary-foreground: #334155;
    --muted: #f1f5f9;
    --muted-foreground: #64748b;
    --accent: #0ea5e9;
    --accent-foreground: #ffffff;
    --trust: #059669;
    --trust-foreground: #ffffff;
    --warning: #f59e0b;
    --warning-foreground: #ffffff;
    --destructive: #ef4444;
    --destructive-foreground: #ffffff;
    --border: #e2e8f0;
    --input: #e2e8f0;
    
    /* Typography */
    --font-display: 'Plus Jakarta Sans', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    /* Spacing */
    --container-max-width: 1280px;
    --section-padding: 5rem 0;
    
    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgba(30, 41, 59, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(30, 41, 59, 0.07), 0 2px 4px -2px rgba(30, 41, 59, 0.05);
    --shadow-lg: 0 10px 15px -3px rgba(30, 41, 59, 0.08), 0 4px 6px -4px rgba(30, 41, 59, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(30, 41, 59, 0.1), 0 8px 10px -6px rgba(30, 41, 59, 0.05);
    --shadow-card: 0 4px 20px rgba(30, 41, 59, 0.08);
    --shadow-glow: 0 0 40px rgba(30, 90, 142, 0.2);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background-color: var(--background);
    color: var(--foreground);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    line-height: 1.2;
}

.container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 1rem;
}

@media (min-width: 1024px) {
    .container {
        padding: 0 2rem;
    }
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(248, 250, 252, 0.8);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 64px;
}

@media (min-width: 1024px) {
    .header-content {
        height: 80px;
    }
}

.logo img {
    height: 56px;
    width: auto;
}

@media (min-width: 1024px) {
    .logo img {
        height: 68px;
    }
}

.nav {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav a {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--muted-foreground);
    text-decoration: none;
    transition: color 0.3s;
}

.nav a:hover {
    color: var(--primary);
}

.desktop-nav {
    display: none;
}

@media (min-width: 1024px) {
    .desktop-nav {
        display: flex;
    }
}

.header-actions {
    display: none;
    align-items: center;
    gap: 1rem;
}

@media (min-width: 1024px) {
    .header-actions {
        display: flex;
    }
}

.nav-link {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--muted-foreground);
    text-decoration: none;
    transition: color 0.3s;
}

.nav-link:hover {
    color: var(--primary);
}

.mobile-menu-toggle {
    display: block;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

@media (min-width: 1024px) {
    .mobile-menu-toggle {
        display: none;
    }
}

.menu-icon {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--foreground);
    position: relative;
}

.menu-icon::before,
.menu-icon::after {
    content: '';
    position: absolute;
    width: 24px;
    height: 2px;
    background: var(--foreground);
    left: 0;
}

.menu-icon::before {
    top: -8px;
}

.menu-icon::after {
    top: 8px;
}

.mobile-nav {
    display: none;
    padding: 1rem 0;
    border-top: 1px solid var(--border);
}

.mobile-nav.active {
    display: block;
    animation: fadeIn 0.3s ease-out;
}

.mobile-nav nav {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.mobile-nav a {
    font-size: 1rem;
    font-weight: 500;
    color: var(--muted-foreground);
    text-decoration: none;
    padding: 0.5rem 0;
    transition: color 0.3s;
}

.mobile-nav a:hover {
    color: var(--primary);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    font-size: 0.875rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 0.5rem;
    transition: all 0.3s;
    cursor: pointer;
    border: none;
    font-family: var(--font-body);
}

.btn-cta {
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    color: var(--primary-foreground);
}

.btn-cta:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-hero {
    background: var(--card);
    color: var(--primary);
    padding: 1rem 2rem;
    font-size: 1rem;
}

.btn-hero:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-hero-outline {
    background: transparent;
    color: var(--primary-foreground);
    border: 2px solid var(--primary-foreground);
    padding: 1rem 2rem;
    font-size: 1rem;
}

.btn-hero-outline:hover {
    background: rgba(255, 255, 255, 0.1);
}

.btn-outline {
    background: transparent;
    color: var(--foreground);
    border: 1px solid var(--border);
}

.btn-outline:hover {
    background: var(--secondary);
}

.btn-lg {
    padding: 1rem 2rem;
    font-size: 1rem;
}

.btn .icon {
    width: 20px;
    height: 20px;
}

/* Hero Section */
.hero-section {
    position: relative;
    min-height: 100vh;
    background: linear-gradient(135deg, #0c3a5c 0%, #1e5a8e 50%, #2563eb 100%);
    overflow: hidden;
    padding-top: 7rem;
    padding-bottom: 4rem;
}

.hero-background {
    position: absolute;
    inset: 0;
    opacity: 0.1;
}

.hero-background::before {
    content: '';
    position: absolute;
    top: 80px;
    left: 40px;
    width: 288px;
    height: 288px;
    background: var(--primary-foreground);
    border-radius: 50%;
    filter: blur(80px);
}

.hero-background::after {
    content: '';
    position: absolute;
    bottom: 80px;
    right: 40px;
    width: 384px;
    height: 384px;
    background: var(--accent);
    border-radius: 50%;
    filter: blur(80px);
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
    position: relative;
    z-index: 10;
}

@media (min-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }
}

.hero-content {
    text-align: center;
}

@media (min-width: 1024px) {
    .hero-content {
        text-align: left;
    }
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 9999px;
    padding: 0.5rem 1rem;
    margin-bottom: 1.5rem;
    animation: fadeUp 0.6s ease-out;
}

.hero-badge .icon {
    width: 16px;
    height: 16px;
    color: var(--primary-foreground);
}

.hero-badge span {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--primary-foreground);
}

.hero-title {
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--primary-foreground);
    margin-bottom: 1.5rem;
    animation: fadeUp 0.6s ease-out 0.1s backwards;
}

@media (min-width: 768px) {
    .hero-title {
        font-size: 3rem;
    }
}

@media (min-width: 1024px) {
    .hero-title {
        font-size: 3.75rem;
    }
}

.hero-title .text-light {
    opacity: 0.8;
}

.hero-description {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
    animation: fadeUp 0.6s ease-out 0.2s backwards;
}

@media (min-width: 1024px) {
    .hero-description {
        font-size: 1.25rem;
        margin-left: 0;
        margin-right: 0;
    }
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 2.5rem;
    animation: fadeUp 0.6s ease-out 0.3s backwards;
}

@media (min-width: 640px) {
    .hero-buttons {
        flex-direction: row;
    }
}

@media (min-width: 1024px) {
    .hero-buttons {
        justify-content: flex-start;
    }
}

.trust-indicators {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    justify-content: center;
    animation: fadeUp 0.6s ease-out 0.4s backwards;
}

@media (min-width: 1024px) {
    .trust-indicators {
        justify-content: flex-start;
    }
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.7);
}

.trust-item .icon {
    width: 20px;
    height: 20px;
}

.trust-item span {
    font-size: 0.875rem;
    font-weight: 500;
}

.hero-image {
    position: relative;
    animation: fadeUp 0.6s ease-out 0.3s backwards;
}

.device-preview {
    position: relative;
    z-index: 10;
}

.device-preview img {
    width: 100%;
    max-width: 512px;
    margin: 0 auto;
    border-radius: 1rem;
    box-shadow: var(--shadow-xl);
    display: block;
}

.floating {
    animation: float 6s ease-in-out infinite;
}

.glow-effect {
    position: absolute;
    inset: 0;
    background: rgba(14, 165, 233, 0.2);
    border-radius: 1.5rem;
    filter: blur(60px);
    z-index: -1;
    transform: scale(0.9);
}

.wave-divider {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
}

.wave-divider svg {
    display: block;
    width: 100%;
    height: auto;
}

/* Section Styles */
.features-section,
.use-cases-section,
.privacy-section {
    padding: 5rem 0;
    background: var(--background);
}

@media (min-width: 1024px) {
    .features-section,
    .use-cases-section,
    .privacy-section {
        padding: 7rem 0;
    }
}

.comparison-section,
.how-it-works-section {
    padding: 5rem 0;
    background: var(--muted);
}

@media (min-width: 1024px) {
    .comparison-section,
    .how-it-works-section {
        padding: 7rem 0;
    }
}

.section-header {
    text-align: center;
    max-width: 768px;
    margin: 0 auto 4rem;
}

.section-label {
    display: inline-block;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
}

.section-title {
    font-size: 1.875rem;
    font-weight: 700;
    color: var(--foreground);
    margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
    .section-title {
        font-size: 2.25rem;
    }
}

@media (min-width: 1024px) {
    .section-title {
        font-size: 3rem;
    }
}

.section-description {
    font-size: 1.125rem;
    color: var(--muted-foreground);
}

.text-gradient {
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 640px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 2rem;
    }
}

.feature-card {
    background: var(--card);
    border-radius: 1rem;
    padding: 1.5rem;
    box-shadow: var(--shadow-card);
    transition: all 0.3s;
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.feature-icon {
    width: 56px;
    height: 56px;
    border-radius: 0.75rem;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
    transition: transform 0.3s;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1);
}

.feature-icon svg {
    width: 28px;
    height: 28px;
    color: var(--primary-foreground);
}

.feature-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--foreground);
    margin-bottom: 0.75rem;
}

.feature-description {
    color: var(--muted-foreground);
    line-height: 1.6;
}

/* Comparison Table */
.comparison-table-wrapper {
    overflow-x: auto;
}

.comparison-table {
    width: 100%;
    background: var(--card);
    border-radius: 1rem;
    box-shadow: var(--shadow-card);
    overflow: hidden;
    border-collapse: collapse;
}

.comparison-table thead {
    background: var(--primary);
}

.comparison-table th {
    padding: 1rem 1.5rem;
    color: var(--primary-foreground);
    font-weight: 600;
    text-align: center;
}

.comparison-table th.text-left {
    text-align: left;
}

.comparison-table th.highlight {
    background: var(--accent);
}

.comparison-table tbody tr {
    border-bottom: 1px solid var(--border);
}

.comparison-table tbody tr:last-child {
    border-bottom: none;
}

.comparison-table tbody tr:nth-child(even) {
    background: rgba(241, 245, 249, 0.3);
}

.comparison-table td {
    padding: 1rem 1.5rem;
    text-align: center;
}

.comparison-table td:first-child {
    font-weight: 500;
    color: var(--foreground);
    text-align: left;
}

.comparison-table td.highlight {
    background: rgba(30, 90, 142, 0.05);
}

.check-icon {
    width: 20px;
    height: 20px;
    margin: 0 auto;
    display: block;
}

.check-icon.positive {
    color: var(--trust);
}

.check-icon.negative {
    color: var(--destructive);
}

.key-distinction {
    margin-top: 3rem;
    background: var(--card);
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: var(--shadow-card);
    border-left: 4px solid var(--primary);
}

.key-distinction h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--foreground);
    margin-bottom: 0.75rem;
}

.key-distinction p {
    color: var(--muted-foreground);
    line-height: 1.6;
}

.key-distinction strong {
    color: var(--foreground);
}

/* Use Cases Grid */
.use-cases-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 768px) {
    .use-cases-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .use-cases-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.use-case-card {
    background: var(--card);
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: var(--shadow-card);
    border: 1px solid rgba(226, 232, 240, 0.5);
    transition: all 0.3s;
}

.use-case-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.use-case-icon {
    width: 64px;
    height: 64px;
    border-radius: 1rem;
    background: rgba(30, 90, 142, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: all 0.3s;
}

.use-case-card:hover .use-case-icon {
    background: var(--primary);
    transform: scale(1.1);
}

.use-case-icon svg {
    width: 32px;
    height: 32px;
    color: var(--primary);
    transition: color 0.3s;
}

.use-case-card:hover .use-case-icon svg {
    color: var(--primary-foreground);
}

.use-case-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--foreground);
    margin-bottom: 0.75rem;
}

.use-case-card > p {
    color: var(--muted-foreground);
    margin-bottom: 1rem;
}

.use-case-example {
    padding-top: 1rem;
    border-top: 1px solid var(--border);
    font-size: 0.875rem;
    color: var(--muted-foreground);
    font-style: italic;
}

.use-case-example strong {
    color: var(--foreground);
    font-style: normal;
}

/* How It Works */
.how-it-works-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .how-it-works-grid {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }
}

.steps-column {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.step-card {
    display: flex;
    gap: 1.5rem;
    background: var(--card);
    border-radius: 0.75rem;
    padding: 1.5rem;
    box-shadow: var(--shadow-card);
    transition: all 0.3s;
}

.step-card:hover {
    box-shadow: var(--shadow-lg);
}

.step-icon {
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    border-radius: 0.75rem;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.step-icon svg {
    width: 28px;
    height: 28px;
    color: var(--primary-foreground);
}

.step-content {
    flex: 1;
}

.step-number-title {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.5rem;
}

.step-number {
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--primary);
}

.step-content h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--foreground);
}

.step-content p {
    color: var(--muted-foreground);
}

.cta-button-wrapper {
    padding-top: 1.5rem;
}

.device-image-column {
    position: relative;
}

.device-image-wrapper {
    position: relative;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.device-image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
}

.device-caption {
    position: absolute;
    bottom: -1rem;
    left: 50%;
    transform: translateX(-50%);
    background: var(--card);
    border-radius: 0.5rem;
    padding: 0.75rem 1.5rem;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border);
}

.device-caption p {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--foreground);
    white-space: nowrap;
}

/* Privacy Section */
.privacy-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: start;
}

@media (min-width: 1024px) {
    .privacy-grid {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }
}

.privacy-content .section-label,
.privacy-content .section-title {
    text-align: left;
    margin-bottom: 1.5rem;
}

.privacy-intro {
    font-size: 1.125rem;
    color: var(--muted-foreground);
    margin-bottom: 2rem;
}

.privacy-features {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

@media (min-width: 640px) {
    .privacy-features {
        grid-template-columns: repeat(2, 1fr);
    }
}

.privacy-feature {
    display: flex;
    gap: 1rem;
}

.privacy-feature-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    border-radius: 0.75rem;
    background: rgba(5, 150, 105, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
}

.privacy-feature-icon svg {
    width: 24px;
    height: 24px;
    color: var(--trust);
}

.privacy-feature h3 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--foreground);
    margin-bottom: 0.25rem;
}

.privacy-feature p {
    font-size: 0.875rem;
    color: var(--muted-foreground);
}

.privacy-link {
    margin-top: 2rem;
}

/* Notice Card */
.notice-card {
    background: var(--card);
    border-radius: 1rem;
    box-shadow: var(--shadow-card);
    border: 1px solid var(--border);
    overflow: hidden;
}

.notice-header {
    background: rgba(245, 158, 11, 0.1);
    border-bottom: 1px solid rgba(245, 158, 11, 0.2);
    padding: 1rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.notice-header .icon {
    width: 24px;
    height: 24px;
    color: var(--warning);
}

.notice-header h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--foreground);
}

.notice-content {
    padding: 1.5rem;
}

.notice-item {
    margin-bottom: 1rem;
}

.notice-item:last-child {
    margin-bottom: 0;
}

.notice-item h4 {
    font-weight: 600;
    color: var(--foreground);
    margin-bottom: 0.5rem;
}

.notice-item p {
    font-size: 0.875rem;
    color: var(--muted-foreground);
}

.notice-footer {
    padding-top: 1rem;
    border-top: 1px solid var(--border);
}

.notice-footer p {
    font-size: 0.75rem;
    color: var(--muted-foreground);
}

.notice-footer a {
    color: var(--primary);
    text-decoration: none;
}

.notice-footer a:hover {
    text-decoration: underline;
}

/* CTA Section */
.cta-section {
    position: relative;
    padding: 5rem 0;
    background: linear-gradient(135deg, #0c3a5c 0%, #1e5a8e 50%, #2563eb 100%);
    overflow: hidden;
}

@media (min-width: 1024px) {
    .cta-section {
        padding: 7rem 0;
    }
}

.cta-background {
    position: absolute;
    inset: 0;
    opacity: 0.1;
}

.cta-background::before {
    content: '';
    position: absolute;
    top: 40px;
    right: 80px;
    width: 256px;
    height: 256px;
    background: var(--primary-foreground);
    border-radius: 50%;
    filter: blur(80px);
}

.cta-background::after {
    content: '';
    position: absolute;
    bottom: 40px;
    left: 80px;
    width: 320px;
    height: 320px;
    background: var(--accent);
    border-radius: 50%;
    filter: blur(80px);
}

.cta-content {
    max-width: 896px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 10;
}

.cta-content h2 {
    font-size: 1.875rem;
    font-weight: 700;
    color: var(--primary-foreground);
    margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
    .cta-content h2 {
        font-size: 2.25rem;
    }
}

@media (min-width: 1024px) {
    .cta-content h2 {
        font-size: 3rem;
    }
}

.cta-content p {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
    max-width: 672px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 3rem;
}

@media (min-width: 640px) {
    .cta-buttons {
        flex-direction: row;
    }
}

/* Footer */
.footer {
    background: var(--foreground);
    color: var(--primary-foreground);
    padding: 4rem 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .footer-grid {
        grid-template-columns: 2fr 1fr 1fr;
    }
}

.footer-brand {
    max-width: 448px;
}

.footer-logo {
    height: 48px;
    width: auto;
    margin-bottom: 1rem;
    filter: brightness(0) invert(1);
}

.footer-brand > p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1.5rem;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: rgba(255, 255, 255, 0.7);
}

.contact-item .icon {
    width: 20px;
    height: 20px;
}

.contact-item a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s;
}

.contact-item a:hover {
    color: var(--primary-foreground);
}

.footer-links h3 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.footer-links ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--primary-foreground);
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

@media (min-width: 768px) {
    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
    }
}

.footer-bottom p {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.6);
}

/* Animations */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-15px);
    }
}

/* Icon */
.icon {
    width: 16px;
    height: 16px;
    stroke-width: 2;
}
