/* ============================================
   SECTION STYLES
   Page-specific sections
   ============================================ */

/* ========== Navigation ========== */

.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: var(--z-fixed);
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--color-border-light);
    transition: all var(--transition-base);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--space-3) var(--container-padding);
    gap: var(--space-4);
}

.nav-dropdown-mobile {
    order: 1;
}

.nav-logo a {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    font-size: var(--font-size-h4);
    font-weight: var(--font-weight-black);
    color: var(--color-text-primary);
}

.nav-logo .logo-image {
    height: 36px;
    width: auto;
    object-fit: contain;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: var(--space-5);
    order: 2;
}

.nav-link {
    color: var(--color-text-secondary);
    font-weight: var(--font-weight-semibold);
    transition: color var(--transition-base);
}

.nav-link:hover {
    color: var(--color-primary);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    padding: var(--space-1);
    order: 3;
}

.nav-toggle span {
    width: 24px;
    height: 2px;
    background: var(--color-text-primary);
    border-radius: var(--radius-full);
    transition: all var(--transition-base);
}

/* Mobile navigation */
@media (max-width: 1023px) {
    .nav-container {
        flex-wrap: nowrap;
    }

    .nav-logo {
        order: 0;
        flex: 0 0 auto;
    }

    .nav-dropdown-mobile {
        order: 1;
        flex: 0 0 auto;
        margin-left: auto;
        margin-right: var(--space-3);
    }

    .nav-dropdown-mobile .dropdown-toggle {
        font-size: var(--font-size-small);
        white-space: nowrap;
    }

    .nav-toggle {
        display: flex;
        order: 3;
        flex: 0 0 auto;
    }

    .nav-menu {
        position: fixed;
        top: 73px;
        left: 0;
        right: 0;
        flex-direction: column;
        align-items: stretch;
        background: white;
        padding: var(--space-4);
        gap: var(--space-2);
        box-shadow: var(--shadow-lg);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all var(--transition-base);
        order: 4;
    }

    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .nav-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(8px, 8px);
    }

    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(8px, -8px);
    }

    .nav-link {
        padding: var(--space-2) 0;
        text-align: center;
    }
}

/* ========== AI Products Dropdown ========== */

.nav-dropdown {
    position: relative;
}

.dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 6px;
}

.dropdown-toggle i {
    font-size: 12px;
    transition: transform var(--transition-base);
}

.nav-dropdown:hover .dropdown-toggle i {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    right: 0;
    background: white;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-2xl);
    border: 1px solid var(--color-border-light);
    min-width: 320px;
    max-height: 75vh;
    overflow-y: auto;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    z-index: 1001;
    margin-top: 8px;
    padding-bottom: 12px;
}

.nav-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-header {
    padding: 16px 20px 12px;
    border-bottom: 1px solid var(--color-border-light);
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
}

.challenge-text {
    font-size: 0.9em;
    font-weight: 600;
    color: var(--color-primary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.dropdown-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 14px 20px;
    color: var(--color-text-primary);
    text-decoration: none;
    transition: all 0.2s ease;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.dropdown-item:last-child {
    border-bottom: none;
}

.dropdown-item:hover {
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    transform: translateX(4px);
    color: var(--color-primary);
}

.dropdown-item.current {
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    color: white;
}

.dropdown-item.current:hover {
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    transform: translateX(0);
}

.week-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 44px;
    height: 32px;
    background: var(--color-primary);
    color: white;
    border-radius: 6px;
    font-size: 0.8em;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.dropdown-item.current .week-badge {
    background: rgba(255, 255, 255, 0.2);
}

.week-badge.current {
    background: linear-gradient(135deg, #f59e0b, #ef4444);
    box-shadow: 0 2px 8px rgba(245, 158, 11, 0.3);
}

.product-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
    flex: 1;
}

.product-name {
    font-weight: 600;
    font-size: 0.95em;
    line-height: 1.2;
}

.product-desc {
    font-size: 0.8em;
    opacity: 0.7;
    line-height: 1.2;
}

.dropdown-item.current .product-desc {
    opacity: 0.9;
}

/* Mobile dropdown */
@media (max-width: 1023px) {
    .nav-dropdown {
        position: relative;
    }

    .dropdown-menu {
        position: absolute;
        top: calc(100% + 8px);
        right: -12px;
        left: auto;
        width: 78vw;
        max-width: 300px;
        opacity: 0;
        visibility: hidden;
        transform: translateY(-10px);
        box-shadow: var(--shadow-2xl);
        border: 1px solid var(--color-border-light);
        border-radius: var(--radius-lg);
        margin-top: 0;
        max-height: 70vh;
        display: block;
        transition: all 0.3s ease;
    }

    .nav-dropdown.active .dropdown-menu {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .dropdown-item {
        padding: 12px 16px;
    }
}


/* ========== Hero Section ========== */

.hero {
    padding: var(--space-20) 0 var(--space-15);
    background: var(--color-bg-light);
    margin-top: 73px; /* Account for fixed nav */
    position: relative;
    overflow: hidden;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-10);
    align-items: center;
}

.hero-content {
    position: relative;
}

.floating-badges {
    position: relative;
    height: 60px;
    margin-bottom: var(--space-4);
}

.hero-title {
    font-size: var(--font-size-h1);
    font-weight: var(--font-weight-black);
    line-height: var(--line-height-tight);
    margin-bottom: var(--space-4);
}

.hero-description {
    font-size: var(--font-size-large);
    color: var(--color-text-secondary);
    line-height: var(--line-height-relaxed);
    margin-bottom: var(--space-6);
    max-width: 600px;
}

.hero-cta {
    display: flex;
    gap: var(--space-3);
    flex-wrap: wrap;
}

.hero-cta .btn {
    width: 240px;
    flex: 0 0 240px;
}

.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Responsive hero */
@media (max-width: 1023px) {
    .hero {
        padding: var(--space-15) 0 var(--space-10);
    }

    .hero-container {
        grid-template-columns: 1fr;
        gap: var(--space-8);
        text-align: center;
    }

    .hero-content {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .hero-description {
        max-width: 100%;
    }

    .hero-cta {
        justify-content: center;
        width: 100%;
    }
}

@media (max-width: 767px) {
    .hero {
        padding: var(--space-12) 0 var(--space-8);
    }

    .hero-cta {
        flex-direction: column;
        width: 100%;
        max-width: 320px;
        margin: 0 auto;
    }

    .hero-cta .btn {
        width: 100%;
        padding: 9px 24px;
        font-size: 15px;
        height: auto;
        min-height: auto;
        flex: 0 0 auto;
    }
}


/* ========== Problem Section ========== */

.problem {
    background: var(--color-bg-white);
    padding: var(--space-15) 0;
}

.problem-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.problem-text {
    font-size: var(--font-size-h3);
    color: var(--color-text-secondary);
    line-height: var(--line-height-relaxed);
    margin-bottom: var(--space-6);
}

.problem-question {
    font-size: var(--font-size-h2);
    font-weight: var(--font-weight-bold);
    color: var(--color-text-primary);
    margin: 0;
}

@media (max-width: 767px) {
    .problem {
        padding: var(--space-10) 0;
    }

    .problem-text {
        font-size: var(--font-size-h4);
    }

    .problem-question {
        font-size: var(--font-size-h3);
    }
}


/* ========== How It Works Section ========== */

.how-it-works {
    background: var(--color-bg-light);
    padding: var(--section-padding);
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-6);
}

@media (max-width: 1023px) {
    .steps-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-4);
    }
}

@media (max-width: 767px) {
    .steps-grid {
        grid-template-columns: 1fr;
    }
}


/* ========== Features Section ========== */

.features {
    background: var(--color-bg-white);
    padding: var(--section-padding);
}

.feature-row {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: var(--space-10);
    align-items: center;
    margin-bottom: var(--space-15);
}

.feature-row:last-child {
    margin-bottom: 0;
}

.feature-content {
    max-width: 540px;
}

/* Visual on left (column 1), content on right (column 2) */
.feature-row.feature-row-left > .feature-visual {
    grid-column: 1 !important;
    grid-row: 1 !important;
}

.feature-row.feature-row-left > .feature-content {
    grid-column: 2 !important;
    grid-row: 1 !important;
}

/* Content on left (column 1), visual on right (column 2) */
.feature-row.feature-row-right > .feature-visual {
    grid-column: 2 !important;
    grid-row: 1 !important;
}

.feature-row.feature-row-right > .feature-content {
    grid-column: 1 !important;
    grid-row: 1 !important;
}

.feature-title {
    font-size: var(--font-size-h3);
    font-weight: var(--font-weight-bold);
    margin-bottom: var(--space-3);
}

.feature-description {
    font-size: var(--font-size-body);
    color: var(--color-text-secondary);
    line-height: var(--line-height-relaxed);
    margin-bottom: var(--space-4);
}

.feature-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.feature-placeholder {
    width: 100%;
    max-width: 320px;
    aspect-ratio: 1;
    background: var(--color-bg-light);
    border-radius: var(--radius-2xl);
    display: flex;
    justify-content: center;
    align-items: center;
    padding: var(--space-8);
}

/* Feature visuals (placeholders) */
.waveform-visual {
    display: flex;
    gap: var(--space-2);
    align-items: center;
    height: 120px;
}

.waveform-visual span {
    width: 12px;
    background: var(--gradient-primary);
    border-radius: var(--radius-full);
    animation: waveform-pulse 1.5s ease-in-out infinite;
}

.waveform-visual span:nth-child(1) { height: 40%; animation-delay: 0s; }
.waveform-visual span:nth-child(2) { height: 100%; animation-delay: 0.2s; }
.waveform-visual span:nth-child(3) { height: 70%; animation-delay: 0.4s; }
.waveform-visual span:nth-child(4) { height: 90%; animation-delay: 0.6s; }
.waveform-visual span:nth-child(5) { height: 50%; animation-delay: 0.8s; }

@keyframes waveform-pulse {
    0%, 100% { opacity: 0.4; }
    50% { opacity: 1; }
}

.memory-visual {
    position: relative;
    width: 200px;
    height: 200px;
}

.memory-node {
    position: absolute;
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: var(--radius-full);
    box-shadow: var(--shadow-lg);
}

.memory-node:nth-child(1) { top: 0; left: 50%; transform: translateX(-50%); }
.memory-node:nth-child(2) { bottom: 0; left: 0; }
.memory-node:nth-child(3) { bottom: 0; right: 0; }

.memory-connection {
    position: absolute;
    width: 2px;
    height: 100%;
    background: var(--color-primary);
    opacity: 0.3;
    left: 50%;
    transform: translateX(-50%);
}

.emotion-visual {
    display: flex;
    flex-direction: column;
    gap: var(--space-3);
}

.emotion-badge {
    padding: var(--space-3) var(--space-4);
    background: var(--gradient-primary);
    color: white;
    border-radius: var(--radius-lg);
    font-weight: var(--font-weight-bold);
    text-align: center;
    box-shadow: var(--shadow-md);
}

.security-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.security-shield {
    color: var(--color-primary);
}

/* Responsive features */
@media (max-width: 900px) {
    .feature-row {
        grid-template-columns: 1fr;
        gap: var(--space-6);
        margin-bottom: var(--space-10);
    }

    .feature-content {
        max-width: 100%;
    }

    /* Reset grid-column positioning for mobile - use natural flow */
    .feature-row-left .feature-visual,
    .feature-row-right .feature-visual,
    .feature-row-left .feature-content,
    .feature-row-right .feature-content {
        grid-column: auto !important;
        grid-row: auto !important;
    }
}


/* ========== Social Network Section ========== */

.social-network {
    background: var(--gradient-primary);
    color: white;
    padding: var(--section-padding);
}

.social-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto var(--space-10);
}

.social-header .section-title {
    color: white;
}

.social-description {
    font-size: var(--font-size-large);
    line-height: var(--line-height-relaxed);
    margin: 0;
}

.network-visual {
    max-width: 600px;
    margin: 0 auto var(--space-10);
}

.network-diagram {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-2xl);
    padding: var(--space-8);
    text-align: center;
}

.network-node {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-1);
    padding: var(--space-3) var(--space-4);
    background: rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-lg);
    margin: var(--space-2);
}

.node-label {
    font-size: var(--font-size-small);
    font-weight: var(--font-weight-semibold);
}

.node-relationship {
    font-size: var(--font-size-tiny);
    font-weight: var(--font-weight-normal);
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.network-arrow {
    margin-top: var(--space-4);
    font-size: var(--font-size-large);
    font-weight: var(--font-weight-bold);
}

.use-cases-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-6);
    margin-top: var(--space-10);
}

@media (max-width: 1023px) {
    .use-cases-grid {
        grid-template-columns: 1fr;
    }
}


/* ========== Trust & Privacy Section ========== */

.trust-privacy {
    background: var(--color-bg-light);
    padding: var(--section-padding);
}

.trust-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-10);
    align-items: center;
}

.trust-title {
    font-size: var(--font-size-h2);
    font-weight: var(--font-weight-bold);
    margin-bottom: var(--space-6);
}

.badge-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-4);
}

@media (max-width: 1023px) {
    .trust-grid {
        grid-template-columns: 1fr;
        gap: var(--space-8);
    }

    .badge-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 767px) {
    .badge-grid {
        grid-template-columns: 1fr;
    }
}


/* ========== Early Access Section ========== */

.early-access-section {
    background: var(--gradient-primary);
    padding: var(--section-padding);
    position: relative;
}

.early-access-content {
    max-width: 1000px;
    margin: 0 auto;
}

.early-access-intro {
    text-align: center;
    margin-bottom: var(--space-8);
}

.early-access-badge {
    display: inline-block;
    padding: var(--space-2) var(--space-4);
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    margin-bottom: var(--space-4);
    font-weight: var(--font-weight-semibold);
    color: white;
}

.early-access-intro .gradient-text {
    color: white;
    background: none;
    -webkit-background-clip: unset;
    -webkit-text-fill-color: white;
    background-clip: unset;
    margin-bottom: var(--space-4);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.early-access-intro .subtitle {
    font-size: var(--font-size-large);
    color: rgba(255, 255, 255, 0.9);
    max-width: 700px;
    margin: 0 auto;
}

.early-access-form-container {
    max-width: 600px;
    margin: 0 auto;
}

.waitlist-form {
    background: white;
    padding: var(--space-8);
    border-radius: var(--border-radius-xl);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.form-header {
    text-align: center;
    margin-bottom: var(--space-6);
}

.form-header h3 {
    font-size: var(--font-size-h3);
    color: var(--color-text);
    margin-bottom: var(--space-2);
}

.form-header p {
    color: var(--color-text-light);
    font-size: var(--font-size-small);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-4);
}

.form-group {
    margin-bottom: var(--space-4);
}

.form-group label {
    display: block;
    font-weight: var(--font-weight-semibold);
    color: var(--color-text);
    margin-bottom: var(--space-2);
    font-size: var(--font-size-small);
}

/* Required field indicator - smaller asterisk for better readability */
.waitlist-form .form-group label::after {
    content: " *";
    color: var(--color-primary);
    font-size: 0.7em;
    vertical-align: super;
    line-height: 0;
    margin-left: 2px;
}

.form-group input {
    width: 100%;
    padding: var(--space-3);
    border: 2px solid var(--color-border);
    border-radius: var(--border-radius-md);
    font-size: var(--font-size-base);
    transition: all 0.3s ease;
}

.form-group input:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 4px rgba(99, 102, 241, 0.1);
}

/* Smaller placeholder text */
.form-group input::placeholder {
    font-size: 0.875em;
    color: #9ca3af;
}

.waitlist-form .btn {
    display: block;
    margin: var(--space-6) auto var(--space-2);
    min-width: 280px;
}

.form-perks {
    display: flex;
    justify-content: center;
    gap: var(--space-6);
    margin-top: var(--space-4);
    flex-wrap: wrap;
}

.perk-item {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    color: var(--color-text-light);
    font-size: var(--font-size-small);
}

.perk-item svg {
    color: var(--color-primary);
}

/* Success Message */
.success-message {
    background: white;
    padding: var(--space-8);
    border-radius: var(--border-radius-xl);
    text-align: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.success-icon {
    margin-bottom: var(--space-4);
}

.success-icon svg {
    color: var(--color-success);
    animation: checkmark 0.5s ease-in-out;
}

.success-message h3 {
    font-size: var(--font-size-h3);
    color: var(--color-text);
    margin-bottom: var(--space-3);
}

.success-message p {
    color: var(--color-text-light);
    margin-bottom: var(--space-4);
}

.success-details {
    padding-top: var(--space-4);
    border-top: 1px solid var(--color-border);
}

.success-details p {
    font-size: var(--font-size-small);
    color: var(--color-text-light);
    margin: 0;
}

.success-message.celebrate {
    animation: celebrate 0.6s ease-in-out;
}

/* Error Message */
.error-message {
    background: white;
    padding: var(--space-8);
    border-radius: var(--border-radius-xl);
    text-align: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.error-icon {
    margin-bottom: var(--space-4);
}

.error-icon svg {
    color: var(--color-error);
}

.error-message h4 {
    font-size: var(--font-size-h4);
    color: var(--color-text);
    margin-bottom: var(--space-2);
}

.error-message p {
    color: var(--color-text-light);
    margin: 0;
}

/* Animations */
@keyframes checkmark {
    0% {
        transform: scale(0);
        opacity: 0;
    }
    50% {
        transform: scale(1.2);
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes celebrate {
    0%, 100% {
        transform: scale(1);
    }
    25% {
        transform: scale(1.02) rotate(-1deg);
    }
    75% {
        transform: scale(1.02) rotate(1deg);
    }
}

/* Loading State */
.btn.loading {
    opacity: 0.7;
    cursor: not-allowed;
}

/* Responsive Design */
@media (max-width: 767px) {
    .form-row {
        grid-template-columns: 1fr;
    }

    .waitlist-form {
        padding: var(--space-6);
    }

    .form-perks {
        flex-direction: column;
        gap: var(--space-3);
        align-items: flex-start;
    }

    .early-access-intro .gradient-text {
        font-size: var(--font-size-h2);
    }
}


/* ========== Footer ========== */

.footer {
    background: var(--color-bg-dark);
    color: var(--color-text-light);
    padding: var(--space-10) 0 var(--space-4);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: var(--space-8);
    margin-bottom: var(--space-8);
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    font-size: var(--font-size-h3);
    font-weight: var(--font-weight-black);
    color: white;
    margin-bottom: var(--space-2);
}

.footer-logo-image {
    height: 32px;
    width: auto;
    object-fit: contain;
}

.footer-tagline {
    color: var(--color-text-light);
    margin: 0 0 var(--space-4) 0;
}

.social-links {
    display: flex;
    gap: var(--space-3);
    margin-top: var(--space-4);
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-full);
    color: white;
    font-size: 18px;
    transition: all var(--transition-base);
}

.social-link:hover {
    background: var(--color-primary);
    color: white;
    transform: translateY(-2px);
}

.footer-links h4 {
    color: white;
    font-size: var(--font-size-body);
    font-weight: var(--font-weight-bold);
    margin-bottom: var(--space-3);
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: var(--space-2);
}

.footer-links a {
    color: var(--color-text-light);
    transition: color var(--transition-base);
}

.footer-links a:hover {
    color: white;
}

.footer-bottom {
    text-align: center;
    padding-top: var(--space-4);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    color: var(--color-text-light);
    font-size: var(--font-size-small);
    margin: 0;
}

@media (max-width: 1023px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: var(--space-6);
    }

    .footer-brand {
        grid-column: 1 / -1;
    }
}

@media (max-width: 767px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: var(--space-6);
    }

    .footer-brand {
        grid-column: 1;
        text-align: center;
    }

    .social-links {
        justify-content: center;
    }

    .footer-links {
        text-align: center;
    }
}
