/* ===== Font ===== */
@font-face {
    font-family: 'Switzer';
    src: url('../assets/fonts/Switzer-Variable.woff2') format('woff2'),
        url('../assets/fonts/Switzer-Variable.woff') format('woff');
    font-weight: 100 900;
    font-display: swap;
    font-style: normal;
}

/* ===== Reset & Base ===== */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    width: 100%;
    height: 100%;
    overflow: hidden;
    font-family: 'Switzer', sans-serif;
    background: #060d1a;
    color: #ffffff;
}

body.loaded {
    overflow-y: auto;
}

/* ===== Persistent Silk Background ===== */
#silk-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    image-rendering: auto;
    opacity: 0;
    transition: opacity 1s ease;
}

#silk-bg.visible {
    opacity: 1;
}

/* ===== Loading Screen ===== */
#loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #060d1a;
    transition: opacity 1.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

#loading-screen.fade-out {
    opacity: 0;
    pointer-events: none;
}

#silk-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    image-rendering: auto;
}

/* Logo on loading screen */
#logo-container {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: scale(0.95) translateY(8px);
    transition: opacity 2s cubic-bezier(0.25, 0.46, 0.45, 0.94),
        transform 2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: opacity, transform;
}

#logo-container.visible {
    opacity: 1;
    transform: scale(1) translateY(0);
    pointer-events: auto;
}

#logo-container:not(.visible) {
    pointer-events: none;
}

#logo-image {
    width: clamp(220px, 28vw, 380px);
    height: auto;
    filter: drop-shadow(0 0 50px rgba(15, 80, 140, 0.25));
}

#website-url {
    margin-top: 50px;
    font-size: clamp(11px, 1.1vw, 14px);
    font-weight: 300;
    letter-spacing: 4px;
    color: rgba(255, 255, 255, 0.0);
    text-transform: uppercase;
    animation: urlFadeIn 1s ease forwards 1.2s;
}

@keyframes urlFadeIn {
    0% {
        color: rgba(255, 255, 255, 0.0);
        transform: translateY(8px);
        letter-spacing: 6px;
    }

    100% {
        color: rgba(255, 255, 255, 0.4);
        transform: translateY(0);
        letter-spacing: 4px;
    }
}

/* Flying logo (created by JS) */
#flying-logo {
    pointer-events: none;
    will-change: top, left, width, height;
}

/* ===== Header ===== */
#site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(6, 13, 26, 0.7);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    opacity: 0;
    transform: translateY(-100%);
    transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

#site-header.visible {
    opacity: 1;
    transform: translateY(0);
}

.header-inner {
    max-width: 100%;
    margin: 0;
    padding: 0 40px 0 60px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Header Logo */
.header-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    opacity: 0;
    transition: opacity 0.5s ease 0.3s;
}

#site-header.visible .header-logo {
    opacity: 1;
}

.header-logo-img {
    height: 60px;
    width: auto;
}

/* Navigation */
.main-nav {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-link {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 10px 16px;
    font-size: 14px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    border: none;
    background: none;
    cursor: pointer;
    font-family: inherit;
    letter-spacing: 0.3px;
    border-radius: 8px;
    transition: color 0.3s ease, background 0.3s ease;
    white-space: nowrap;
}

.nav-link:hover {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.06);
}

.dropdown-arrow {
    transition: transform 0.3s ease;
    margin-top: 1px;
    flex-shrink: 0;
}

/* Dropdown */
.nav-dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: calc(100% + 8px);
    left: 50%;
    transform: translateX(-50%) translateY(-8px);
    min-width: 220px;
    background: rgba(12, 20, 38, 0.95);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 8px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

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

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

.dropdown-item {
    display: block;
    padding: 10px 16px;
    font-size: 13.5px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.65);
    text-decoration: none;
    border-radius: 8px;
    transition: color 0.2s ease, background 0.2s ease;
}

.dropdown-item:hover {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.08);
}

/* Language Switcher */
.lang-switcher {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 4px 8px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.lang-btn {
    padding: 4px 10px;
    font-size: 12px;
    font-weight: 500;
    font-family: inherit;
    color: rgba(255, 255, 255, 0.4);
    background: none;
    border: none;
    border-radius: 14px;
    cursor: pointer;
    letter-spacing: 0.5px;
    transition: color 0.3s ease, background 0.3s ease;
}

.lang-btn:hover {
    color: rgba(255, 255, 255, 0.7);
}

.lang-btn.active {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.1);
}

.lang-divider {
    color: rgba(255, 255, 255, 0.15);
    font-size: 12px;
    user-select: none;
}

/* ===== Main Content ===== */
#main-content {
    position: relative;
    z-index: 1;
    width: 100%;
    min-height: 100vh;
    opacity: 0;
    transform: translateY(80px);
    transition: opacity 1.2s cubic-bezier(0.16, 1, 0.3, 1),
        transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
    pointer-events: none;
}

#main-content.visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

/* ===== Hero — Split Layout ===== */
.hero {
    display: grid;
    grid-template-columns: auto 1fr;
    /* Text pinned left, carousel fills right */
    align-items: center;
    min-height: 100vh;
    padding: 100px 0 0;
    overflow: hidden;
    position: relative;
}

/* Left Side: Text Content */
.hero-content {
    max-width: 560px;
    z-index: 2;
    padding-left: 60px;
    /* Align with header logo */
    padding-right: 40px;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #8ab4d6;
    margin-bottom: 24px;
    padding: 8px 16px;
    background: rgba(138, 180, 214, 0.08);
    border: 1px solid rgba(138, 180, 214, 0.15);
    border-radius: 100px;
    width: fit-content;
}

.hero-title {
    font-family: 'Switzer', sans-serif;
    font-size: clamp(2.8rem, 5vw, 4.5rem);
    font-weight: 200;
    line-height: 1.1;
    letter-spacing: -1px;
    color: #ffffff;
    margin-bottom: 28px;
}

.hero-title em {
    font-style: normal;
    background: linear-gradient(135deg, #8ab4d6 0%, #a8d0f0 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 300;
}

.hero-desc {
    font-size: 1.05rem;
    line-height: 1.8;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.55);
    margin-bottom: 36px;
    max-width: 480px;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-bottom: 48px;
}

.hero-cta-primary {
    padding: 16px 40px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-decoration: none;
    color: #0a0e1a;
    background: #ffffff;
    border-radius: 100px;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 8px 32px rgba(255, 255, 255, 0.1);
}

.hero-cta-primary:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 12px 48px rgba(255, 255, 255, 0.2);
}

.hero-cta-secondary {
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 1px;
    text-decoration: none;
    color: rgba(255, 255, 255, 0.5);
    transition: color 0.3s ease;
}

.hero-cta-secondary:hover {
    color: #ffffff;
}

.hero-stats {
    display: flex;
    gap: 40px;
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.stat-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.stat-number {
    font-family: 'Switzer', sans-serif;
    font-size: 1.8rem;
    font-weight: 300;
    color: #ffffff;
    letter-spacing: -1px;
}

.stat-label {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.3);
}

/* Right Side: Radial Slider */
.hero-visual {
    flex: 0 0 auto;
    /* Shrink to content — eliminates dead centering space */
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: visible;
}

/* ===== Stacked Deck Carousel ===== */
.radial-container {
    width: auto;
    /* Hug the wheel — no extra centering space */
    height: 100%;
    position: relative;
    user-select: none;
    -webkit-user-select: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    perspective: 1400px;
    overflow: visible;
}

.radial-wheel {
    position: relative;
    width: 420px;
    height: 540px;
    transform-style: preserve-3d;
    cursor: grab;
}

.radial-wheel:active {
    cursor: grabbing;
}

.radial-item {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 24px;
    overflow: hidden;
    background: #161e2e;
    border: 1.5px solid rgba(255, 255, 255, 0.12);
    box-shadow:
        0 24px 64px rgba(0, 0, 0, 0.5),
        0 6px 20px rgba(0, 0, 0, 0.35);
    will-change: transform, opacity;
    transform-origin: center center;
    cursor: pointer;
    transition: transform 0.55s cubic-bezier(0.23, 1, 0.32, 1),
        opacity 0.55s ease,
        box-shadow 0.4s ease,
        border-color 0.4s ease;
}

/* Active (front) card */
.radial-item.active {
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow:
        0 30px 80px rgba(0, 0, 0, 0.55),
        0 0 50px rgba(138, 180, 214, 0.07),
        inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

/* Hover: lift + glow — only on front card */
.radial-item.active:hover {
    transform: translateY(-12px) scale(1.02) !important;
    border-color: rgba(138, 180, 214, 0.35);
    box-shadow:
        0 40px 100px rgba(0, 0, 0, 0.6),
        0 0 60px rgba(138, 180, 214, 0.12),
        inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

/* Shine sweep overlay on hover */
.radial-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 60%;
    height: 100%;
    background: linear-gradient(105deg,
            transparent 30%,
            rgba(255, 255, 255, 0.08) 45%,
            rgba(255, 255, 255, 0.15) 50%,
            rgba(255, 255, 255, 0.08) 55%,
            transparent 70%);
    transition: left 0.7s ease;
    pointer-events: none;
    z-index: 5;
}

.radial-item.active:hover::after {
    left: 140%;
}

.radial-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
    pointer-events: none;
}

/* Gradient label at bottom */
.radial-label {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 60px 18px 22px;
    font-family: 'Switzer', sans-serif;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #ffffff;
    text-align: center;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.5) 45%, transparent 100%);
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.7);
    z-index: 4;
}

/* ===== Deck Navigation ===== */
.deck-nav {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 60px;
    /* Increased to clear enarlged active card */
    z-index: 200;
    z-index: 200;
    width: 100%;
    max-width: 480px;
    /* Increased to match enlarged card */
}

.deck-arrow {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1.5px solid rgba(255, 255, 255, 0.15);
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    color: rgba(255, 255, 255, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.deck-arrow:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.35);
    color: #ffffff;
    transform: scale(1.08);
}

.deck-arrow:active {
    transform: scale(0.95);
}

/* Progress area between arrows */
.deck-progress {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.deck-progress-track {
    width: 100%;
    height: 2px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
    overflow: hidden;
}

.deck-progress-fill {
    height: 100%;
    width: 0%;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 2px;
    transition: width 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

.deck-counter {
    font-family: 'Switzer', sans-serif;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 3px;
    color: rgba(255, 255, 255, 0.4);
}

.deck-current {
    color: rgba(255, 255, 255, 0.85);
    font-weight: 600;
}

/* ===== CTA Button (kept for reuse) ===== */
.product-cta {
    align-self: flex-start;
    padding: 16px 48px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-decoration: none;
    color: #000000;
    background: #ffffff;
    border-radius: 100px;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 10px 40px rgba(255, 255, 255, 0.1);
}

.product-cta:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 15px 50px rgba(255, 255, 255, 0.2);
}

/* ===== Responsive ===== */
@media (max-width: 1200px) {
    .hero-visual {
        flex: 0 0 auto;
        /* Keep auto at this breakpoint too */
    }

    .hero-content {
        flex: 0 0 50%;
    }
}

@media (max-width: 900px) {
    .header-inner {
        padding: 0 20px;
        height: 64px;
    }

    .main-nav {
        gap: 2px;
    }

    .nav-link {
        padding: 8px 10px;
        font-size: 13px;
    }

    .header-logo-img {
        height: 45px;
    }

    .hero {
        grid-template-columns: 1fr;
        /* Stack vertically on mobile */
        padding: 90px 1.5rem 2rem;
        min-height: auto;
        gap: 40px;
    }

    .hero-content {
        flex: none;
        max-width: 100%;
        padding-left: 0;
        padding-right: 0;
        text-align: center;
        align-items: center;
    }

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

    .hero-actions {
        justify-content: center;
    }

    .hero-stats {
        justify-content: center;
    }

    .hero-visual {
        flex: none;
        width: 100%;
        height: 60vh;
        min-height: 400px;
    }

    .radial-wheel {
        width: 300px;
        height: 400px;
    }

    .radial-item {
        border-radius: 20px;
    }

    .radial-label {
        font-size: 13px;
        padding: 45px 14px 18px;
    }

    .deck-nav {
        margin-top: 20px;
        max-width: 300px;
    }
}

@media (max-width: 640px) {
    .main-nav {
        display: none;
    }

    .header-inner {
        height: 56px;
    }

    .header-logo-img {
        height: 40px;
    }

    .hero {
        padding: 80px 1rem 1.5rem;
    }

    .hero-title {
        font-size: clamp(2rem, 8vw, 3rem);
    }

    .hero-stats {
        gap: 24px;
    }

    .stat-number {
        font-size: 1.4rem;
    }

    .hero-visual {
        height: 55vh;
        min-height: 440px;
    }

    .radial-wheel {
        width: 260px;
        height: 360px;
    }

    .radial-item {
        border-radius: 18px;
    }

    .radial-label {
        font-size: 11px;
        letter-spacing: 1px;
        padding: 35px 10px 14px;
    }


    .deck-nav {
        margin-top: 16px;
        gap: 12px;
        max-width: 260px;
    }

    .deck-arrow {
        width: 34px;
        height: 34px;
    }
}

/* ────────────────── HOME: NEW SECTIONS ────────────────── */

/* --- Introduction Section --- */
.home-intro {
    padding: 120px 24px;
    text-align: center;
    position: relative;
    z-index: 2;
}

.intro-inner {
    max-width: 800px;
    margin: 0 auto;
}

.intro-title {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--accent-gold);
    margin-bottom: 24px;
    font-weight: 500;
}

.intro-text {
    font-size: 2rem;
    line-height: 1.4;
    color: var(--text-primary);
    font-weight: 300;
}

/* --- Process Section --- */
.home-process {
    padding: 100px 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    z-index: 2;
    background: rgba(0, 0, 0, 0.2);
    /* Slight tint */
    backdrop-filter: blur(10px);
}

.process-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 40px;
}

.process-step {
    flex: 1;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.process-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    color: var(--accent-gold);
    transition: all 0.3s ease;
}

.process-step:hover .process-icon {
    background: rgba(212, 175, 55, 0.1);
    transform: scale(1.05);
}

.process-icon svg {
    width: 28px;
    height: 28px;
}

.process-step h3 {
    font-size: 1.25rem;
    color: var(--text-primary);
    margin-bottom: 12px;
    font-weight: 500;
}

.process-step p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.6;
    max-width: 300px;
    margin: 0 auto;
}

.process-divider {
    width: 1px;
    height: 120px;
    background: linear-gradient(to bottom, transparent, rgba(255, 255, 255, 0.1), transparent);
    align-self: center;
}

/* --- CTA Section --- */
.home-cta {
    padding: 140px 24px;
    text-align: center;
    position: relative;
    z-index: 2;
}

.cta-inner {
    max-width: 700px;
    margin: 0 auto;
}

.cta-title {
    font-size: 2.5rem;
    color: var(--text-primary);
    margin-bottom: 16px;
    font-weight: 300;
}

.cta-desc {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 40px;
    line-height: 1.6;
}

.cta-button {
    display: inline-block;
    padding: 16px 40px;
    background: #ffffff;
    color: #000000;
    border-radius: 100px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 4px 20px rgba(255, 255, 255, 0.1);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.25);
    background: #f2f2f2;
}


/* ===== Footer ===== */
.site-footer {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding: 80px 24px 32px;
    margin-top: auto;
    position: relative;
    z-index: 2;
    background: #020408;
    /* Solid background for footer */
}

.footer-inner {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-col h4 {
    font-size: 14px;
    color: var(--accent-gold);
    /* Gold accent for headers */
    margin-bottom: 24px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Brand Column */
.brand-col {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
}

.footer-logo {
    height: 60px;
    width: auto;
    opacity: 0.9;
    margin-bottom: 8px;
}

.footer-tagline {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
    margin: 0;
    font-weight: 500;
}

.footer-desc {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
    max-width: 300px;
    margin: 0;
}

/* Links & Contact Columns */
.footer-nav {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-nav a,
.footer-link {
    font-size: 15px;
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s;
    display: inline-block;
}

.footer-nav a:hover,
.footer-link:hover {
    color: var(--text-primary);
}

.footer-address {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.4);
    line-height: 1.6;
    margin-top: 12px;
}

/* Social Column */
.social-links {
    display: flex;
    gap: 16px;
}

.social-links a {
    color: var(--text-secondary);
    transition: color 0.3s, transform 0.3s;
}

.social-links a:hover {
    color: var(--text-primary);
    transform: translateY(-2px);
}

/* Bottom */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding-top: 32px;
    text-align: center;
}

.footer-copy {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.3);
    margin: 0;
}

@media (max-width: 1024px) {
    .footer-inner {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .home-intro .intro-text {
        font-size: 1.5rem;
    }

    .process-inner {
        flex-direction: column;
        gap: 40px;
    }

    .process-divider {
        width: 60px;
        height: 1px;
        background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.1), transparent);
    }

    .cta-title {
        font-size: 2rem;
    }

    .footer-inner {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }

    .brand-col,
    .footer-col {
        align-items: center;
    }

    .footer-desc {
        max-width: 100%;
    }
}