/* ========================================
   CSS RESET & BASE STYLES
   ======================================== */

*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --ink: #17120E;
    --cream: #FAF7F2;
    --sand: #F0E8DB;
    --neutral-50: #FAFAFA;
    --neutral-100: #F5F5F5;
    --neutral-200: #E5E5E5;
    --neutral-300: #D4D4D4;
    --neutral-400: #A3A3A3;
    --neutral-500: #737373;
    --neutral-600: #525252;
    --neutral-700: #404040;
    --neutral-800: #262626;
    --font-heading: 'Outfit', system-ui, sans-serif;
    --font-body: 'Manrope', system-ui, sans-serif;
}

* {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

@media (prefers-reduced-motion: no-preference) {
    html {
        scroll-behavior: smooth;
    }
}

body {
    margin: 0;
    font-family: var(--font-body);
    background: var(--cream);
    color: var(--ink);
    overflow-x: hidden;
    line-height: 1.5;
}

img {
    max-width: 100%;
    display: block;
}

button {
    border: none;
    background: none;
    cursor: pointer;
    font-family: inherit;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

/* Dark Mode */
body.dark {
    background: #0B0B0F;
    color: var(--neutral-50);
}

body.dark .bg-cream {
    background-color: #0B0B0F;
}

body.dark .bg-sand {
    background-color: #131318;
}

body.dark .grid-dots {
    background-image: radial-gradient(circle, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
}

/* App Container */
.app {
    min-height: 100vh;
    width: 100%;
    position: relative;
}

/* Grain overlay */
.grain::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    opacity: 0.035;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* Text gradient */
.text-gradient {
    background: linear-gradient(100deg, #F59E0B 0%, #E2603B 50%, #B4400F 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Grid backgrounds */
.grid-dots {
    background-image: radial-gradient(circle, rgba(23, 18, 14, 0.06) 1px, transparent 1px);
    background-size: 28px 28px;
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.grid-lines-overlay {
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: 0.4;
    background-image: linear-gradient(rgba(255,255,255,0.06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.06) 1px, transparent 1px);
    background-size: 56px 56px;
}

/* Aurora blobs */
.aurora {
    position: absolute;
    filter: blur(80px);
    opacity: 0.55;
    border-radius: 9999px;
    will-change: transform;
    pointer-events: none;
}

@keyframes drift {
    0%, 100% { transform: translate3d(0, 0, 0) scale(1); }
    33% { transform: translate3d(40px, -30px, 0) scale(1.1); }
    66% { transform: translate3d(-30px, 20px, 0) scale(0.95); }
}

@keyframes drift-slow {
    0%, 100% { transform: translate3d(0, 0, 0) scale(1); }
    33% { transform: translate3d(-40px, 30px, 0) scale(1.05); }
    66% { transform: translate3d(30px, -20px, 0) scale(0.98); }
}

.aurora-1 {
    left: 8%;
    top: 6%;
    height: 18rem;
    width: 18rem;
    background: rgba(251, 191, 36, 0.6);
    animation: drift 16s ease-in-out infinite;
}

.aurora-2 {
    right: 6%;
    top: 2%;
    height: 20rem;
    width: 20rem;
    background: rgba(251, 146, 60, 0.5);
    animation: drift-slow 24s ease-in-out infinite;
}

.aurora-3 {
    left: 50%;
    top: 30%;
    height: 16rem;
    width: 16rem;
    background: rgba(251, 113, 133, 0.4);
    transform: translateX(-50%);
    animation: drift 16s ease-in-out infinite;
}

/* Status dot */
.status-dot {
    display: flex;
    height: 0.5rem;
    width: 0.5rem;
    border-radius: 9999px;
    background-color: #10B981;
    position: relative;
}

.ping {
    position: absolute;
    height: 0.5rem;
    width: 0.5rem;
    border-radius: 9999px;
    background-color: #10B981;
    animation: ping 2s cubic-bezier(0, 0, 0.2, 1) infinite;
}

@keyframes ping {
    75%, 100% {
        transform: scale(2);
        opacity: 0;
    }
}

/* Fade animations */
.fade-in {
    animation: fadeIn 0.6s ease-out forwards;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(16px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-view {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in-view.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ========================================
   NAVBAR
   ======================================== */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 50;
    display: flex;
    justify-content: center;
    padding: 1rem;
    opacity: 0;
    transform: translateY(-80px);
    animation: slideDown 0.8s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

@keyframes slideDown {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 72rem;
    padding: 0.75rem 1.25rem;
    border-radius: 9999px;
    border: 1px solid transparent;
    background: transparent;
    transition: all 0.5s ease;
}

.navbar.scrolled .nav-container {
    border-color: rgba(229, 229, 229, 0.7);
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(12px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
}

body.dark .navbar.scrolled .nav-container {
    border-color: rgba(255, 255, 255, 0.1);
    background: rgba(11, 11, 15, 0.7);
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo-icon {
    display: grid;
    place-items: center;
    height: 2rem;
    width: 2rem;
    border-radius: 0.5rem;
    background: var(--ink);
}

body.dark .logo-icon {
    background: rgba(255, 255, 255, 0.1);
}

.logo-dot {
    display: block;
    height: 0.625rem;
    width: 0.625rem;
    border-radius: 0.125rem;
    background: linear-gradient(135deg, #F59E0B, #E2603B);
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 1.125rem;
    font-weight: 600;
    letter-spacing: -0.025em;
}

.nav-links {
    display: none;
    align-items: center;
    gap: 2rem;
}

.nav-links a {
    position: relative;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--neutral-600);
    transition: color 0.2s;
}

body.dark .nav-links a {
    color: var(--neutral-400);
}

.nav-links a:hover {
    color: var(--ink);
}

body.dark .nav-links a:hover {
    color: white;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -0.25rem;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--ink);
    transition: width 0.3s;
}

body.dark .nav-links a::after {
    background: white;
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-actions {
    display: none;
    align-items: center;
    gap: 0.75rem;
}

.theme-toggle {
    display: grid;
    place-items: center;
    height: 2.5rem;
    width: 2.5rem;
    border-radius: 9999px;
    border: 1px solid var(--neutral-200);
    background: white;
    color: var(--neutral-700);
    transition: all 0.2s;
}

body.dark .theme-toggle {
    border-color: rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.05);
    color: var(--neutral-200);
}

.theme-toggle:hover {
    background: var(--neutral-50);
}

body.dark .theme-toggle:hover {
    background: rgba(255, 255, 255, 0.1);
}

.theme-toggle svg {
    width: 1.25rem;
    height: 1.25rem;
}

.icon-sun {
    display: block;
}

.icon-moon {
    display: none;
}

body.dark .icon-sun {
    display: none;
}

body.dark .icon-moon {
    display: block;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    padding: 0.625rem 1.25rem;
    border-radius: 9999px;
    background: var(--ink);
    color: white;
    font-size: 0.875rem;
    font-weight: 500;
    transition: transform 0.2s ease-out;
}

body.dark .btn-primary {
    background: white;
    color: var(--ink);
}

.btn-primary:hover {
    transform: translateY(-1px);
}

.btn-primary svg {
    width: 1rem;
    height: 1rem;
    transition: transform 0.2s ease-out;
}

.btn-primary:hover svg {
    transform: translate(1px, -1px);
}

.mobile-actions {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.mobile-menu-btn {
    display: grid;
    place-items: center;
    height: 2.5rem;
    width: 2.5rem;
    border-radius: 9999px;
    border: 1px solid var(--neutral-200);
    background: white;
    color: var(--ink);
}

body.dark .mobile-menu-btn {
    border-color: rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.05);
    color: var(--neutral-100);
}

.mobile-menu-btn svg {
    width: 1.25rem;
    height: 1.25rem;
}

.icon-close {
    display: none;
}

.mobile-menu-btn.active .icon-menu {
    display: none;
}

.mobile-menu-btn.active .icon-close {
    display: block;
}

.mobile-menu {
    position: absolute;
    top: 5rem;
    left: 1rem;
    right: 1rem;
    padding: 1.5rem;
    border-radius: 1.5rem;
    border: 1px solid var(--neutral-200);
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(12px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
    opacity: 0;
    transform: translateY(-12px);
    pointer-events: none;
    transition: opacity 0.3s, transform 0.3s;
}

body.dark .mobile-menu {
    border-color: rgba(255, 255, 255, 0.1);
    background: rgba(19, 19, 24, 0.95);
}

.mobile-menu.active {
    opacity: 1;
    transform: translateY(0);
    pointer-events: all;
}

.mobile-menu-links {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.mobile-menu-links a {
    display: block;
    padding: 0.75rem 1rem;
    border-radius: 0.75rem;
    font-size: 1.125rem;
    font-weight: 500;
    color: var(--neutral-800);
    transition: background 0.2s;
}

body.dark .mobile-menu-links a {
    color: var(--neutral-200);
}

.mobile-menu-links a:hover {
    background: var(--neutral-50);
}

body.dark .mobile-menu-links a:hover {
    background: rgba(255, 255, 255, 0.05);
}

.btn-primary-mobile {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    margin-top: 1rem;
    padding: 0.875rem 1.25rem;
    border-radius: 9999px;
    background: var(--ink);
    color: white;
    font-size: 1rem;
    font-weight: 500;
}

body.dark .btn-primary-mobile {
    background: white;
    color: var(--ink);
}

@media (min-width: 768px) {
    .nav-links {
        display: flex;
    }

    .nav-actions {
        display: flex;
    }

    .mobile-actions {
        display: none;
    }
}

/* ========================================
   HERO SECTION
   ======================================== */

.hero {
    position: relative;
    overflow: hidden;
    background: var(--cream);
    padding: 9rem 1.5rem 5rem;
}

body.dark .hero {
    background: #0B0B0F;
}

.aurora-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
}

.hero-container {
    position: relative;
    z-index: 10;
    max-width: 80rem;
    margin: 0 auto;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.375rem 1rem;
    border-radius: 9999px;
    border: 1px solid var(--neutral-200);
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(4px);
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--neutral-600);
}

body.dark .badge {
    border-color: rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.05);
    color: var(--neutral-400);
}

.hero-title {
    margin: 2rem auto 0;
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 600;
    line-height: 1.05;
    letter-spacing: -0.025em;
}

.hero-line {
    display: block;
}

.hero-desc {
    max-width: 42rem;
    margin: 1.5rem auto 0;
    font-size: 1.125rem;
    line-height: 1.625;
    color: var(--neutral-600);
}

body.dark .hero-desc {
    color: var(--neutral-400);
}

.hero-cta {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 2.25rem;
    width: 100%;
}

.btn-hero-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: 9999px;
    background: var(--ink);
    color: white;
    font-size: 1rem;
    font-weight: 500;
    transition: transform 0.2s ease-out, box-shadow 0.2s ease-out;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.1);
    text-align: center;
    white-space: nowrap;
}

body.dark .btn-hero-primary {
    background: white;
    color: var(--ink);
}

.btn-hero-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.btn-hero-primary svg {
    width: 1rem;
    height: 1rem;
    transition: transform 0.2s ease-out;
}

.btn-hero-primary:hover svg {
    transform: translate(1px, -1px);
}

.btn-hero-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2rem;
    border-radius: 9999px;
    border: 1px solid var(--neutral-200);
    background: white;
    color: var(--ink);
    font-size: 1rem;
    font-weight: 500;
    transition: background 0.2s ease-out, border-color 0.2s ease-out, transform 0.2s ease-out;
    text-align: center;
    white-space: nowrap;
}

body.dark .btn-hero-secondary {
    border-color: rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.05);
    color: var(--neutral-50);
}

.btn-hero-secondary:hover {
    background: var(--neutral-50);
    border-color: var(--neutral-300);
    transform: translateY(-1px);
}

body.dark .btn-hero-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
}

.hero-mockup {
    position: relative;
    max-width: 80rem;
    margin: 4rem auto 0;
}

.mockup-container {
    position: relative;
    overflow: hidden;
    border-radius: 1rem;
    border: 1px solid rgba(229, 229, 229, 0.8);
    background: white;
    padding: 0.5rem;
    box-shadow: 0 40px 80px -20px rgba(0, 0, 0, 0.18);
}

body.dark .mockup-container {
    border-color: rgba(255, 255, 255, 0.1);
    background: #17171C;
}

.mockup-container img {
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
    border-radius: 0.75rem;
}

.float-card {
    display: none;
    position: absolute;
    padding: 1rem;
    border-radius: 1rem;
    border: 1px solid var(--neutral-200);
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

body.dark .float-card {
    border-color: rgba(255, 255, 255, 0.1);
    background: rgba(27, 27, 33, 0.9);
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-12px);
    }
}

.float-card-1 {
    left: -1rem;
    top: 6rem;
    animation: float 5s ease-in-out infinite;
}

.float-card-2 {
    right: -1rem;
    bottom: 5rem;
    animation: float 6s ease-in-out infinite;
}

.float-card-3 {
    display: none;
    right: -1.5rem;
    top: 1.5rem;
    flex-direction: row;
    align-items: center;
    gap: 0.25rem;
    padding: 0.375rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 500;
    animation: float 4.5s ease-in-out 1s infinite;
}

.float-card-content {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.float-card-icon {
    display: grid;
    place-items: center;
    height: 2.5rem;
    width: 2.5rem;
    border-radius: 0.75rem;
}

.float-card-icon.orange {
    background: #FFF7ED;
    color: #EA580C;
}

.float-card-icon.amber {
    background: #FFFBEB;
    color: #F59E0B;
}

.float-card-icon svg {
    width: 1.25rem;
    height: 1.25rem;
}

.float-card-value {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 600;
}

.float-card-label {
    font-size: 0.75rem;
    color: var(--neutral-500);
}

body.dark .float-card-label {
    color: var(--neutral-400);
}

.icon-star {
    width: 1rem;
    height: 1rem;
    color: #F59E0B;
}

@media (min-width: 768px) {
    .hero {
        padding: 11rem 3rem 7rem;
    }

    .hero-title {
        font-size: 4.5rem;
    }

    .hero-desc {
        font-size: 1.25rem;
    }

    .hero-cta {
        flex-direction: row;
        justify-content: center;
    }

    .mockup-container {
        border-radius: 1.5rem;
        padding: 0.75rem;
    }

    .mockup-container img {
        border-radius: 1rem;
    }

    .float-card {
        display: block;
    }

    .float-card-3 {
        display: flex;
    }
}

@media (min-width: 1024px) {
    .hero-title {
        font-size: 5.25rem;
    }
}

/* ========================================
   SOCIAL PROOF
   ======================================== */

.social-proof {
    position: relative;
    border-top: 1px solid rgba(229, 229, 229, 0.6);
    border-bottom: 1px solid rgba(229, 229, 229, 0.6);
    background: var(--cream);
    padding: 3.5rem 0;
}

body.dark .social-proof {
    border-color: rgba(255, 255, 255, 0.1);
    background: #0B0B0F;
}

.social-proof-container {
    max-width: 80rem;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.social-proof-text {
    margin-bottom: 2.25rem;
    text-align: center;
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.025em;
    color: var(--neutral-500);
}

body.dark .social-proof-text {
    color: var(--neutral-400);
}

.marquee {
    position: relative;
    overflow: hidden;
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
    mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
}

.marquee-content {
    display: flex;
    animation: marquee 30s linear infinite;
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.marquee-item {
    flex-shrink: 0;
    margin: 0 2.5rem;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 600;
    letter-spacing: -0.025em;
    color: var(--neutral-300);
    transition: color 0.3s;
    user-select: none;
}

body.dark .marquee-item {
    color: var(--neutral-600);
}

.marquee-item:hover {
    color: var(--neutral-800);
}

body.dark .marquee-item:hover {
    color: var(--neutral-200);
}

@media (min-width: 768px) {
    .marquee-item {
        font-size: 1.875rem;
    }
}

/* ========================================
   SECTION COMMON
   ======================================== */

.section-container {
    max-width: 80rem;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.section-header {
    margin-bottom: 4rem;
}

.section-header.centered {
    text-align: center;
    max-width: 48rem;
    margin-left: auto;
    margin-right: auto;
}

.section-overline {
    margin-bottom: 1rem;
    font-size: 0.875rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #EA580C;
}

.section-overline.light {
    color: #FCD34D;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 2.25rem;
    font-weight: 600;
    letter-spacing: -0.025em;
    line-height: 1.1;
}

body.dark .section-title {
    color: var(--neutral-50);
}

.section-title.light {
    color: white;
}

.section-desc {
    margin-top: 1.25rem;
    font-size: 1.125rem;
    line-height: 1.625;
    color: var(--neutral-600);
}

body.dark .section-desc {
    color: var(--neutral-400);
}

@media (min-width: 768px) {
    .section-container {
        padding: 0 3rem;
    }

    .section-title {
        font-size: 3rem;
    }
}

/* ========================================
   FEATURED PROJECTS
   ======================================== */

.featured-projects {
    background: var(--cream);
    padding: 6rem 0;
}

body.dark .featured-projects {
    background: #0B0B0F;
}

.projects-grid {
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

.project-row {
    display: grid;
    gap: 2rem;
    align-items: center;
}

.project-image-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 1.5rem;
    border: 1px solid rgba(229, 229, 229, 0.7);
    box-shadow: 0 20px 50px -20px rgba(0, 0, 0, 0.2);
}

body.dark .project-image-wrapper {
    border-color: rgba(255, 255, 255, 0.1);
}

.project-image-overlay {
    position: absolute;
    inset: 0;
    z-index: 10;
    opacity: 0;
    mix-blend-mode: multiply;
    transition: opacity 0.5s;
}

.gradient-1 {
    background: linear-gradient(135deg, #F59E0B, #E2603B);
}

.gradient-2 {
    background: linear-gradient(135deg, #E2603B, #E11D48);
}

.gradient-3 {
    background: linear-gradient(135deg, #F59E0B, #E11D48);
}

.project-image-wrapper:hover .project-image-overlay {
    opacity: 0.2;
}

.project-image-wrapper img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    transition: transform 0.7s ease-out;
}

.project-image-wrapper:hover img {
    transform: scale(1.05);
}

.project-hover-badge {
    position: absolute;
    bottom: 1.25rem;
    left: 1.25rem;
    z-index: 20;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(4px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    font-size: 0.875rem;
    font-weight: 500;
    opacity: 0;
    transition: opacity 0.5s;
}

body.dark .project-hover-badge {
    background: rgba(27, 27, 33, 0.9);
}

.project-image-wrapper:hover .project-hover-badge {
    opacity: 1;
}

.project-hover-badge svg {
    width: 1rem;
    height: 1rem;
}

.project-meta {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--neutral-500);
}

body.dark .project-meta {
    color: var(--neutral-400);
}

.project-meta .dot {
    width: 0.25rem;
    height: 0.25rem;
    border-radius: 9999px;
    background: var(--neutral-300);
}

body.dark .project-meta .dot {
    background: var(--neutral-700);
}

.project-name {
    margin-top: 0.75rem;
    font-family: var(--font-heading);
    font-size: 1.875rem;
    font-weight: 600;
    letter-spacing: -0.025em;
}

body.dark .project-name {
    color: var(--neutral-50);
}

.project-blurb {
    margin-top: 1rem;
    max-width: 28rem;
    font-size: 1.125rem;
    line-height: 1.625;
    color: var(--neutral-600);
}

body.dark .project-blurb {
    color: var(--neutral-400);
}

.project-metric-badge {
    display: inline-flex;
    align-items: baseline;
    gap: 0.75rem;
    margin-top: 2rem;
    padding: 1rem 1.5rem;
    border-radius: 1rem;
    border: 1px solid rgba(229, 229, 229, 0.7);
    background: white;
}

body.dark .project-metric-badge {
    border-color: rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.05);
}

.metric-value {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 600;
    letter-spacing: -0.025em;
}

.metric-label {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--neutral-500);
}

body.dark .metric-label {
    color: var(--neutral-400);
}

@media (min-width: 768px) {
    .featured-projects {
        padding: 9rem 0;
    }

    .projects-grid {
        gap: 7rem;
    }

    .project-row {
        grid-template-columns: repeat(2, 1fr);
        gap: 4rem;
    }

    .project-row-reverse .project-image-wrapper {
        order: 2;
    }

    .project-row-reverse .project-content {
        order: 1;
    }

    .project-name {
        font-size: 2.5rem;
    }
}

/* ========================================
   SERVICES
   ======================================== */

.services {
    background: var(--sand);
    padding: 6rem 0;
}

body.dark .services {
    background: #131318;
}

.services-grid {
    display: grid;
    gap: 1.5rem;
}

.service-card {
    position: relative;
    display: flex;
    flex-direction: column;
    padding: 2rem;
    border-radius: 1.5rem;
    border: 1px solid rgba(229, 229, 229, 0.7);
    background: white;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.04);
    transition: box-shadow 0.3s ease-out, transform 0.3s ease-out;
}

body.dark .service-card {
    border-color: rgba(255, 255, 255, 0.1);
    background: #17171C;
}

.service-card:hover {
    box-shadow: 0 28px 60px -15px rgba(0, 0, 0, 0.14);
    transform: translateY(-4px);
}

.service-tag {
    position: absolute;
    right: 1.5rem;
    top: 1.25rem;
    font-family: var(--font-heading);
    font-size: 4rem;
    font-weight: 700;
    opacity: 0.4;
    background: linear-gradient(100deg, #F59E0B, #E2603B);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    transition: opacity 0.5s;
}

.service-card:hover .service-tag {
    opacity: 1;
}

.service-icon {
    position: relative;
    display: grid;
    place-items: center;
    height: 3.5rem;
    width: 3.5rem;
    border-radius: 1rem;
    background: var(--ink);
    color: white;
    transition: transform 0.3s ease-out;
}

body.dark .service-icon {
    background: rgba(255, 255, 255, 0.1);
}

.service-card:hover .service-icon {
    transform: translateY(-2px);
}

.service-icon svg {
    width: 1.5rem;
    height: 1.5rem;
    transition: transform 0.3s ease-out;
}

.service-card:hover .service-icon svg {
    transform: scale(1.05);
}

.service-title {
    position: relative;
    margin-top: 1.5rem;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 600;
    letter-spacing: -0.025em;
}

body.dark .service-title {
    color: var(--neutral-50);
}

.service-desc {
    position: relative;
    margin-top: 0.75rem;
    font-size: 1rem;
    line-height: 1.625;
    color: var(--neutral-600);
}

body.dark .service-desc {
    color: var(--neutral-400);
}

.service-points {
    position: relative;
    margin-top: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.625rem;
}

.service-points li {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--neutral-700);
}

body.dark .service-points li {
    color: var(--neutral-300);
}

.service-points svg {
    flex-shrink: 0;
    width: 1.25rem;
    height: 1.25rem;
    padding: 0.125rem;
    border-radius: 9999px;
    background: #FFF7ED;
    color: #EA580C;
}

.service-link {
    position: relative;
    display: flex;
    align-items: center;
    gap: 0.375rem;
    margin-top: 2rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--ink);
    transition: color 0.2s;
}

body.dark .service-link {
    color: var(--neutral-50);
}

.service-card:hover .service-link {
    color: #EA580C;
}

.service-link svg {
    width: 1rem;
    height: 1rem;
    transition: transform 0.3s;
}

.service-card:hover .service-link svg {
    transform: translate(0.125rem, -0.125rem);
}

@media (min-width: 768px) {
    .services {
        padding: 9rem 0;
    }

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

/* ========================================
   PROCESS
   ======================================== */

.process {
    background: var(--cream);
    padding: 6rem 0;
}

body.dark .process {
    background: #0B0B0F;
}

.process-container {
    max-width: 80rem;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: grid;
    gap: 3rem;
}

.process-sidebar-desc {
    margin-top: 1.25rem;
    max-width: 28rem;
    font-size: 1.125rem;
    line-height: 1.625;
    color: var(--neutral-600);
}

body.dark .process-sidebar-desc {
    color: var(--neutral-400);
}

.process-list {
    display: flex;
    flex-direction: column;
}

.process-item {
    display: flex;
    gap: 1.5rem;
    padding: 2rem 0;
    border-top: 1px solid var(--neutral-200);
}

body.dark .process-item {
    border-color: rgba(255, 255, 255, 0.1);
}

.process-item:first-child {
    border-top: none;
}

.process-number {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 700;
    line-height: 1;
    color: var(--neutral-200);
    transition: background 0.5s;
}

.process-item:hover .process-number {
    background: linear-gradient(100deg, #F59E0B, #E2603B);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.process-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 600;
    letter-spacing: -0.025em;
    margin-bottom: 0.75rem;
}

body.dark .process-title {
    color: var(--neutral-50);
}

.process-desc {
    max-width: 28rem;
    font-size: 1.125rem;
    line-height: 1.625;
    color: var(--neutral-600);
}

body.dark .process-desc {
    color: var(--neutral-400);
}

@media (min-width: 768px) {
    .process {
        padding: 9rem 0;
    }

    .process-container {
        padding: 0 3rem;
        grid-template-columns: 0.9fr 1.1fr;
        gap: 5rem;
    }

    .process-sidebar {
        position: sticky;
        top: 8rem;
        height: fit-content;
    }

    .process-item {
        gap: 2.5rem;
        padding: 2.5rem 0;
    }

    .process-number {
        font-size: 4.5rem;
    }

    .process-title {
        font-size: 1.875rem;
    }
}

/* ========================================
   WHY VISOFY
   ======================================== */

.why-visofy {
    background: var(--sand);
    padding: 6rem 0;
}

body.dark .why-visofy {
    background: #131318;
}

.why-grid {
    display: grid;
    gap: 1.25rem;
}

.why-large-card {
    position: relative;
    overflow: hidden;
    border-radius: 1.5rem;
    border: 1px solid rgba(229, 229, 229, 0.7);
    background: var(--ink);
    color: white;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 20rem;
}

body.dark .why-large-card {
    border-color: rgba(255, 255, 255, 0.1);
}

.aurora-why {
    bottom: -2.5rem;
    right: -2.5rem;
    height: 14rem;
    width: 14rem;
    background: rgba(245, 158, 11, 0.5);
    animation: drift-slow 20s ease-in-out infinite;
}

.why-large-content {
    position: relative;
    z-index: 10;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

.why-large-label {
    font-size: 0.875rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.5);
}

.why-large-title {
    margin-top: 1rem;
    font-family: var(--font-heading);
    font-size: 1.875rem;
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: -0.025em;
}

.why-large-desc {
    margin-top: 2rem;
    font-size: 1rem;
    line-height: 1.625;
    color: rgba(255, 255, 255, 0.7);
}

.why-card {
    position: relative;
    overflow: hidden;
    border-radius: 1.5rem;
    border: 1px solid rgba(229, 229, 229, 0.7);
    background: white;
    padding: 1.75rem;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.03);
    transition: transform 0.3s ease-out, box-shadow 0.3s ease-out;
}

body.dark .why-card {
    border-color: rgba(255, 255, 255, 0.1);
    background: #17171C;
}

.why-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.07);
}

.why-icon {
    display: grid;
    place-items: center;
    height: 2.75rem;
    width: 2.75rem;
    border-radius: 0.75rem;
    background: #FFF7ED;
    color: #EA580C;
    transition: transform 0.3s ease-out;
}

.why-card:hover .why-icon {
    transform: scale(1.05);
}

.why-icon svg {
    width: 1.25rem;
    height: 1.25rem;
}

.why-title {
    margin-top: 1.25rem;
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 600;
    letter-spacing: -0.025em;
}

body.dark .why-title {
    color: var(--neutral-50);
}

.why-desc {
    margin-top: 0.5rem;
    font-size: 1rem;
    line-height: 1.625;
    color: var(--neutral-600);
}

body.dark .why-desc {
    color: var(--neutral-400);
}

.why-arrow {
    position: absolute;
    right: 1.5rem;
    top: 1.5rem;
    width: 1.25rem;
    height: 1.25rem;
    color: var(--neutral-300);
    transition: all 0.5s;
}

.why-card:hover .why-arrow {
    color: #EA580C;
}

@media (min-width: 768px) {
    .why-visofy {
        padding: 9rem 0;
    }

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

    .why-large-card {
        grid-column: span 1;
        grid-row: span 2;
    }

    .why-large-title {
        font-size: 2.25rem;
    }
}

/* ========================================
   CLIENT RESULTS
   ======================================== */

.client-results {
    position: relative;
    overflow: hidden;
    background: var(--ink);
    color: white;
    padding: 6rem 0;
}

body.dark .client-results {
    background: #17171C;
}

.aurora-result-1 {
    left: 10%;
    top: 10%;
    height: 18rem;
    width: 18rem;
    background: rgba(245, 158, 11, 0.4);
    animation: drift 16s ease-in-out infinite;
}

.aurora-result-2 {
    right: 8%;
    bottom: 6%;
    height: 20rem;
    width: 20rem;
    background: rgba(251, 146, 60, 0.4);
    animation: drift-slow 24s ease-in-out infinite;
}

.stats-grid {
    position: relative;
    z-index: 10;
    display: grid;
    gap: 2rem;
    grid-template-columns: repeat(2, 1fr);
}

.stat-card {
    padding: 1.75rem;
    border-radius: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(4px);
}

.stat-value {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 600;
    letter-spacing: -0.025em;
}

.stat-divider {
    height: 1px;
    width: 2.5rem;
    background: rgba(255, 255, 255, 0.2);
    margin: 0.75rem 0;
}

.stat-label {
    font-size: 0.875rem;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.6);
}

@media (min-width: 768px) {
    .client-results {
        padding: 9rem 0;
    }

    .stats-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 1.5rem;
    }

    .stat-value {
        font-size: 3.75rem;
    }
}

/* ========================================
   TESTIMONIALS
   ======================================== */

.testimonials {
    background: var(--cream);
    padding: 6rem 0;
}

body.dark .testimonials {
    background: #0B0B0F;
}

.testimonials-container {
    max-width: 64rem;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.testimonial-slider-wrapper {
    position: relative;
    padding: 2rem;
    border-radius: 1.5rem;
    border: 1px solid rgba(229, 229, 229, 0.7);
    background: white;
}

body.dark .testimonial-slider-wrapper {
    border-color: rgba(255, 255, 255, 0.1);
    background: #17171C;
}

.quote-icon {
    position: absolute;
    right: 2rem;
    top: 2rem;
    width: 3.5rem;
    height: 3.5rem;
    color: var(--neutral-200);
}

body.dark .quote-icon {
    color: rgba(255, 255, 255, 0.1);
}

.testimonial-swiper {
    padding: 1rem 0;
}

.stars {
    display: flex;
    gap: 0.25rem;
    margin-bottom: 1.5rem;
}

.stars svg {
    width: 1.25rem;
    height: 1.25rem;
    color: #F59E0B;
}

.testimonial-quote {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 500;
    line-height: 1.4;
    letter-spacing: -0.025em;
    color: var(--ink);
}

body.dark .testimonial-quote {
    color: var(--neutral-50);
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 2rem;
}

.testimonial-author img {
    width: 3rem;
    height: 3rem;
    border-radius: 9999px;
    object-fit: cover;
    border: 2px solid white;
}

body.dark .testimonial-author img {
    border-color: rgba(255, 255, 255, 0.1);
}

.author-name {
    font-weight: 600;
    color: var(--ink);
}

body.dark .author-name {
    color: var(--neutral-50);
}

.author-role {
    font-size: 0.875rem;
    color: var(--neutral-500);
}

body.dark .author-role {
    color: var(--neutral-400);
}

.testimonial-controls {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 2.5rem;
}

.testimonial-pagination {
    display: flex;
    gap: 0.5rem;
}

.swiper-pagination-bullet {
    width: 0.5rem;
    height: 0.5rem;
    border-radius: 9999px;
    background: var(--neutral-300);
    transition: all 0.3s;
}

body.dark .swiper-pagination-bullet {
    background: var(--neutral-600);
}

.swiper-pagination-bullet-active {
    width: 2rem;
    background: var(--ink);
}

body.dark .swiper-pagination-bullet-active {
    background: white;
}

.testimonial-buttons {
    display: flex;
    gap: 0.5rem;
}

.testimonial-btn {
    display: grid;
    place-items: center;
    width: 2.75rem;
    height: 2.75rem;
    border-radius: 9999px;
    border: 1px solid var(--neutral-200);
    background: white;
    color: var(--ink);
    transition: all 0.2s;
}

body.dark .testimonial-btn {
    border-color: rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.05);
    color: var(--neutral-200);
}

.testimonial-btn:hover {
    background: var(--neutral-100);
}

body.dark .testimonial-btn:hover {
    background: rgba(255, 255, 255, 0.1);
}

.testimonial-btn svg {
    width: 1.25rem;
    height: 1.25rem;
}

@media (min-width: 768px) {
    .testimonials {
        padding: 9rem 0;
    }

    .testimonial-slider-wrapper {
        padding: 3.5rem;
    }

    .testimonial-quote {
        font-size: 1.875rem;
    }
}

/* ========================================
   FAQ
   ======================================== */

.faq {
    background: var(--sand);
    padding: 6rem 0;
}

body.dark .faq {
    background: #131318;
}

.faq-container {
    max-width: 72rem;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: grid;
    gap: 3rem;
}

.faq-sidebar-desc {
    margin-top: 1.25rem;
    font-size: 1.125rem;
    line-height: 1.625;
    color: var(--neutral-600);
}

body.dark .faq-sidebar-desc {
    color: var(--neutral-400);
}

.faq-list {
    display: flex;
    flex-direction: column;
}

.faq-item {
    border-bottom: 1px solid var(--neutral-200);
}

body.dark .faq-item {
    border-color: rgba(255, 255, 255, 0.1);
}

.faq-trigger {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem 0;
    text-align: left;
    font-family: var(--font-heading);
    font-size: 1.125rem;
    font-weight: 500;
    letter-spacing: -0.025em;
    color: var(--ink);
    transition: color 0.2s;
}

body.dark .faq-trigger {
    color: var(--neutral-50);
}

.faq-trigger:hover {
    color: #EA580C;
}

.faq-icon {
    display: grid;
    place-items: center;
    height: 2rem;
    width: 2rem;
    flex-shrink: 0;
    margin-left: 1rem;
    border-radius: 9999px;
    border: 1px solid var(--neutral-200);
    background: white;
    color: var(--neutral-500);
    transition: all 0.3s;
}

body.dark .faq-icon {
    border-color: rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.05);
    color: var(--neutral-400);
}

.faq-trigger:hover .faq-icon {
    border-color: #FED7AA;
    color: #EA580C;
}

.faq-icon svg {
    width: 1rem;
    height: 1rem;
    transition: transform 0.3s;
}

.faq-item.active .faq-icon svg {
    transform: rotate(45deg);
}

.faq-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

.faq-item.active .faq-content {
    max-height: 500px;
}

.faq-content p {
    padding-bottom: 1.5rem;
    padding-right: 2.5rem;
    font-size: 1rem;
    line-height: 1.625;
    color: var(--neutral-600);
}

body.dark .faq-content p {
    color: var(--neutral-400);
}

@media (min-width: 768px) {
    .faq {
        padding: 9rem 0;
    }

    .faq-container {
        padding: 0 3rem;
        grid-template-columns: 0.8fr 1.2fr;
        gap: 4rem;
    }

    .faq-sidebar {
        position: sticky;
        top: 8rem;
        height: fit-content;
    }
}

/* ========================================
   CTA
   ======================================== */

.cta {
    background: var(--cream);
    padding: 6rem 1.5rem;
}

body.dark .cta {
    background: #0B0B0F;
}

.cta-box {
    position: relative;
    max-width: 72rem;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 2rem;
    border: 1px solid rgba(229, 229, 229, 0.6);
    background: var(--ink);
    padding: 5rem 1.5rem;
    text-align: center;
    color: white;
}

body.dark .cta-box {
    border-color: rgba(255, 255, 255, 0.1);
}

.aurora-cta-1 {
    left: 15%;
    top: 0;
    height: 18rem;
    width: 18rem;
    background: rgba(245, 158, 11, 0.5);
    animation: drift 16s ease-in-out infinite;
}

.aurora-cta-2 {
    right: 12%;
    bottom: 0;
    height: 18rem;
    width: 18rem;
    background: rgba(251, 146, 60, 0.5);
    animation: drift-slow 24s ease-in-out infinite;
}

.cta-content {
    position: relative;
    z-index: 10;
}

.cta-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.375rem 1rem;
    border-radius: 9999px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(4px);
    font-size: 0.875rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.7);
}

.cta-badge svg {
    width: 1rem;
    height: 1rem;
}

.cta-title {
    max-width: 48rem;
    margin: 1.5rem auto 0;
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 600;
    line-height: 1.08;
    letter-spacing: -0.025em;
}

.cta-br {
    display: none;
}

.cta-desc {
    max-width: 36rem;
    margin: 1.5rem auto 0;
    font-size: 1.125rem;
    line-height: 1.625;
    color: rgba(255, 255, 255, 0.6);
}

.cta-buttons {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 2.5rem;
}

.btn-cta-primary {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: 9999px;
    background: white;
    color: var(--ink);
    font-size: 1rem;
    font-weight: 500;
    overflow: hidden;
    transition: transform 0.3s;
}

.btn-cta-primary:hover {
    transform: scale(1.04);
}

.btn-cta-bg {
    position: absolute;
    inset: 0;
    border-radius: 9999px;
    background: linear-gradient(90deg, #F59E0B, #E2603B, #E11D48);
    opacity: 0;
    transition: opacity 0.5s;
}

.btn-cta-primary:hover .btn-cta-bg {
    opacity: 1;
}

.btn-cta-text {
    position: relative;
    z-index: 10;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: color 0.3s;
}

.btn-cta-primary:hover .btn-cta-text {
    color: white;
}

.btn-cta-text svg {
    width: 1rem;
    height: 1rem;
}

.btn-cta-secondary {
    display: inline-flex;
    align-items: center;
    padding: 1rem 2rem;
    border-radius: 9999px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: transparent;
    color: white;
    font-size: 1rem;
    font-weight: 500;
    transition: background 0.2s;
}

.btn-cta-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
}

@media (min-width: 768px) {
    .cta {
        padding: 9rem 3rem;
    }

    .cta-box {
        padding: 7rem 4rem;
    }

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

    .cta-br {
        display: block;
    }

    .cta-buttons {
        flex-direction: row;
    }
}

/* ========================================
   FOOTER
   ======================================== */

.footer {
    position: relative;
    overflow: hidden;
    border-radius: 2.5rem 2.5rem 0 0;
    background: var(--ink);
    color: white;
}

body.dark .footer {
    background: #17171C;
}

.aurora-footer-1 {
    left: -2.5rem;
    top: 0;
    height: 18rem;
    width: 18rem;
    background: rgba(245, 158, 11, 0.4);
    animation: drift-slow 24s ease-in-out infinite;
}

.aurora-footer-2 {
    right: -2.5rem;
    top: 2.5rem;
    height: 20rem;
    width: 20rem;
    background: rgba(251, 146, 60, 0.3);
    animation: drift 16s ease-in-out infinite;
}

.footer-container {
    position: relative;
    max-width: 80rem;
    margin: 0 auto;
    padding: 5rem 1.5rem 0;
}

.footer-top {
    display: grid;
    gap: 3.5rem;
    padding-bottom: 4rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-tag {
    font-size: 0.875rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #FCD34D;
}

.footer-title {
    max-width: 40rem;
    margin-top: 1.25rem;
    font-family: var(--font-heading);
    font-size: 2.25rem;
    font-weight: 600;
    line-height: 1.05;
    letter-spacing: -0.025em;
}

.footer-email {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 2rem;
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.8);
    transition: color 0.2s;
}

.footer-email:hover {
    color: white;
}

.footer-email svg {
    width: 1.25rem;
    height: 1.25rem;
    transition: transform 0.3s;
}

.footer-email:hover svg {
    transform: translate(0.25rem, -0.25rem);
}

.footer-capture-desc {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.5);
}

.newsletter-form {
    margin-top: 1.25rem;
}

.newsletter-input-wrapper {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.375rem;
    border-radius: 9999px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(4px);
    transition: border-color 0.2s;
}

.newsletter-input-wrapper:focus-within {
    border-color: rgba(252, 211, 77, 0.6);
}

.newsletter-input-wrapper input {
    flex: 1;
    padding: 0.625rem 1rem;
    background: transparent;
    border: none;
    outline: none;
    color: white;
    font-size: 0.875rem;
}

.newsletter-input-wrapper input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.newsletter-input-wrapper button {
    display: grid;
    place-items: center;
    height: 2.75rem;
    width: 2.75rem;
    flex-shrink: 0;
    border-radius: 9999px;
    background: white;
    color: var(--ink);
    transition: transform 0.3s;
}

.newsletter-input-wrapper button:hover {
    transform: scale(1.05);
}

.newsletter-input-wrapper button svg {
    width: 1.25rem;
    height: 1.25rem;
}

.icon-check {
    display: none;
}

.newsletter-form.submitted .icon-arrow {
    display: none;
}

.newsletter-form.submitted .icon-check {
    display: block;
}

.newsletter-success {
    margin-top: 0.75rem;
    padding-left: 1rem;
    font-size: 0.875rem;
    color: #FCD34D;
    opacity: 0;
    transition: opacity 0.3s;
}

.newsletter-form.submitted .newsletter-success {
    opacity: 1;
}

.footer-social {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 2rem;
}

.footer-social a {
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.6);
    transition: all 0.2s;
}

.footer-social a:hover {
    border-color: rgba(255, 255, 255, 0.4);
    color: white;
}

.footer-nav {
    display: grid;
    gap: 2.5rem;
    padding: 3.5rem 0;
}

.footer-column-title {
    font-size: 0.875rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.25rem;
}

.footer-column ul {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-column a {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.5);
    transition: color 0.2s;
}

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

.footer-status {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    background: rgba(255, 255, 255, 0.04);
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.7);
}

.footer-location {
    margin-top: 1rem;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.4);
}

.footer-bottom {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 2rem 1.5rem;
    margin-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-copyright {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.4);
}

.footer-bottom-links {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.footer-bottom-links a {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.4);
    transition: color 0.2s;
}

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

.back-to-top {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    background: rgba(255, 255, 255, 0.04);
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.8);
    transition: all 0.2s;
}

.back-to-top:hover {
    border-color: rgba(255, 255, 255, 0.4);
    color: white;
}

.back-to-top svg {
    width: 1rem;
    height: 1rem;
    transition: transform 0.3s;
}

.back-to-top:hover svg {
    transform: translateY(-0.125rem);
}

@media (min-width: 768px) {
    .footer-container {
        padding: 7rem 3rem 0;
    }

    .footer-top {
        grid-template-columns: 1.2fr 0.8fr;
        gap: 5rem;
    }

    .footer-title {
        font-size: 3.75rem;
    }

    .footer-email {
        font-size: 1.5rem;
    }

    .footer-nav {
        grid-template-columns: 1fr 1fr 1fr auto;
    }

    .footer-meta {
        display: flex;
        flex-direction: column;
        align-items: flex-end;
    }

    .footer-location {
        text-align: right;
    }

    .footer-bottom {
        flex-direction: row;
        padding: 2rem 3rem;
    }
}

/* ========================================
   REDUCED MOTION
   ======================================== */

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}
