/* ===================================
   CSS VARIABLES & DESIGN TOKENS
   ALPINE EDITORIAL DESIGN SYSTEM
   =================================== */
:root {
    /* Foundation Colors */
    --midnight: #1C1C2E;
    --snow: #FFFFFF;
    --stone: #E8E5DF;
    --graphite: #2D2D34;

    /* Accent Colors */
    --terracotta: #3A6B4E;
    --amber: #4A8060;
    --alpine-blue: #4A4A58;
    --moss: #8B9A5B;
    --burgundy: #8E3B46;

    /* Legacy compatibility (mapped to new system) */
    --primary: var(--midnight);
    --background: var(--snow);
    --background-alt: var(--stone);
    --text: #6B6870;
    --text-heading: var(--midnight);
    --text-inverse: var(--snow);
    --text-secondary: #8A8790;

    --accent: var(--terracotta);
    --accent-hover: var(--amber);
    --accent-secondary: var(--alpine-blue);
    --cta: var(--terracotta);

    --section-dark: var(--graphite);
    --section-dark-text: var(--stone);

    --border: #D1D5DB;
    --border-light: rgba(255, 255, 255, 0.1);

    /* Gradient System */
    --gradient-hero: linear-gradient(135deg, #D4622E 0%, #F4A261 50%, #4A7C9E 100%);
    --gradient-card: radial-gradient(ellipse at top, #FDFEFE 0%, #E8E6E3 100%);
    --gradient-dark: linear-gradient(180deg, #0A0E1A 0%, #2D2D34 100%);
    --gradient-glow: radial-gradient(circle at center, rgba(244, 162, 97, 0.3) 0%, transparent 70%);
    --gradient-button: linear-gradient(135deg, #D4622E 0%, #F4A261 100%);
    --gradient-accent: linear-gradient(135deg, #D4622E 0%, #8E3B46 100%);
    --gradient-primary: linear-gradient(135deg, #4A7C9E 0%, #8B9A5B 100%);
    --gradient-cta-section: linear-gradient(135deg, #2D2D34 0%, #0A0E1A 100%);

    /* Typography - Alpine Editorial System */
    --font-display: 'Bricolage Grotesque', sans-serif;
    --font-heading: 'Bricolage Grotesque', sans-serif;
    --font-body: 'Inter', sans-serif;
    --font-mono: 'DM Mono', monospace;

    /* Border Radius - Editorial refinement */
    --radius-sm: 2px;
    --radius-md: 3px;
    --radius-lg: 4px;
    --radius-xl: 4px;
    --radius-pill: 3px;

    /* Shadows - Layered depth */
    --shadow-sm: 0 1px 3px rgba(10, 14, 26, 0.1);
    --shadow-md: 0 4px 6px -1px rgba(10, 14, 26, 0.1), 0 2px 4px -1px rgba(10, 14, 26, 0.06);
    --shadow-lg: 0 10px 25px -5px rgba(10, 14, 26, 0.1), 0 10px 10px -5px rgba(10, 14, 26, 0.04);
    --shadow-xl: 0 20px 40px -8px rgba(10, 14, 26, 0.15), 0 8px 16px -4px rgba(10, 14, 26, 0.08);
    --shadow-glow: 0 0 30px rgba(212, 98, 46, 0.15);
    --shadow-glow-purple: 0 0 40px rgba(142, 59, 70, 0.2);

    /* Transitions - Choreographed motion */
    --transition-base: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-fast: 0.15s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);

    /* Container */
    --container-max: 1280px;
    --container-padding: 2rem;
}

/* Spacing */
:root {
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3.5rem;
    --spacing-2xl: 6rem;
    --spacing-3xl: 8rem;
}

/* ===================================
   RESET & BASE STYLES
   =================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    font-weight: 400;
    line-height: 1.7;
    font-size: 1.125rem;
    color: var(--text);
    background-color: var(--background);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-display);
    font-weight: 600;
    line-height: 1.15;
    color: var(--text-heading);
    letter-spacing: -0.02em;
    font-optical-sizing: auto;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-base);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
    border-radius: var(--radius-lg);
}

ul {
    list-style: none;
}

/* ===================================
   CONTAINER & LAYOUT
   =================================== */
.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

.section {
    padding: var(--spacing-3xl) 0;
}

.section-header {
    text-align: center;
    margin-bottom: var(--spacing-2xl);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.section-title {
    font-size: clamp(2.5rem, 8vw, 4rem);
    margin-bottom: var(--spacing-md);
}

.section-subtitle {
    font-size: clamp(1.125rem, 2vw, 1.25rem);
    color: var(--text);
    opacity: 0.8;
}

/* ===================================
   NAVIGATION - TRANSFORM ON SCROLL
   =================================== */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(20px);
    padding: 1.25rem 0;
    box-shadow: 0 1px 0 rgba(10, 14, 26, 0.06);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.nav.scrolled {
    padding: 1rem 0;
    box-shadow: 0 4px 20px rgba(10, 14, 26, 0.08);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo .logo-img {
    height: 36px;
    transition: all var(--transition-base);
}

.nav.scrolled .nav-logo .logo-img {
    height: 32px;
    transform: scale(0.9);
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    align-items: center;
}

.nav-link {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-heading);
    position: relative;
    transition: color var(--transition-base);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--terracotta);
    transition: width var(--transition-base);
}

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

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

.nav-cta {
    background: var(--terracotta);
    color: white;
    padding: 0.75rem 1.75rem;
    border-radius: var(--radius-pill);
    font-weight: 700;
    transition: all var(--transition-base);
    box-shadow: 0 4px 12px -2px rgba(58, 107, 78, 0.3);
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px -2px rgba(58, 107, 78, 0.4);
}

/* Keep lang switcher clean */
.lang-switcher {
    background: var(--background-alt);
    border: none;
    border-radius: var(--radius-pill);
    padding: 0.5rem 1rem;
}

/* Language Switcher */
.lang-switcher {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px 12px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all var(--transition-fast);
    margin-left: var(--spacing-md);
}

.lang-switcher:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--accent);
}

.lang-switcher a {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--text-secondary);
    text-decoration: none;
    transition: color var(--transition-fast);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.lang-switcher a.active {
    color: var(--terracotta);
}

.lang-switcher a:hover {
    color: var(--accent);
}

.lang-switcher .divider {
    width: 1px;
    height: 10px;
    background: var(--border);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
}

.nav-toggle span {
    width: 26px;
    height: 3px;
    background-color: var(--text-heading);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 2px;
}

.nav-toggle.active span {
    background-color: white;
}

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

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

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

/* ===================================
   HERO SECTION - ALPINE EDITORIAL
   =================================== */
.hero {
    position: relative;
    min-height: 75vh;
    padding-top: 100px;
    background: var(--stone);
    overflow: hidden;
}

/* Animated grain texture overlay */
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='0.03'/%3E%3C/svg%3E");
    pointer-events: none;
    opacity: 0.6;
}

.hero-grid {
    position: relative;
    display: flex;
    align-items: center;
    min-height: calc(75vh - 100px);
    z-index: 2;
}

.hero-text {
    position: relative;
    z-index: 10;
    max-width: 750px;
    padding-right: 0;
}

.hero-badge {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: var(--radius-pill);
    font-size: 0.8125rem;
    font-weight: 700;
    font-family: var(--font-mono);
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    text-shadow: 0 1px 8px rgba(0,0,0,0.5);
    animation: slideUp 0.6s cubic-bezier(0.16, 1, 0.3, 1) 0.2s both;
}

.hero-title {
    font-size: clamp(3.5rem, 10vw, 6rem);
    margin-bottom: 2.5rem;
    letter-spacing: -0.02em;
    line-height: 1.05;
    font-weight: 600;
    font-optical-sizing: auto;
    color: #ffffff;
    text-shadow: 0 2px 24px rgba(0,0,0,0.6), 0 1px 6px rgba(0,0,0,0.5);
    animation: slideUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.4s both;
}

.text-gradient {
    color: #9DCFB3;
    position: relative;
    display: inline-block;
}

.hero-subtitle {
    font-size: 1.375rem;
    margin-bottom: 3rem;
    max-width: 580px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 400;
    text-shadow: 0 1px 16px rgba(0,0,0,0.6), 0 1px 4px rgba(0,0,0,0.4);
    animation: fadeIn 0.6s cubic-bezier(0.16, 1, 0.3, 1) 0.6s both;
}

.hero-btns {
    display: flex;
    gap: 1.5rem;
    align-items: center;
    animation: slideUp 0.6s cubic-bezier(0.16, 1, 0.3, 1) 0.8s both;
    margin-bottom: 3rem;
}

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

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.btn-primary {
    background: var(--terracotta);
    color: white;
    padding: 1.25rem 3rem;
    border-radius: var(--radius-pill);
    font-weight: 700;
    font-size: 1.125rem;
    font-family: var(--font-body);
    box-shadow: 0 8px 20px -4px rgba(212, 98, 46, 0.35);
    transition: all var(--transition-base);
    border: none;
    cursor: pointer;
    text-align: center;
    display: inline-block;
    position: relative;
    overflow: hidden;
}

.btn-primary:hover {
    background: #2E5440;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px -4px rgba(212, 98, 46, 0.35);
}

.btn-primary:active {
    transform: translateY(-1px) scale(1.01);
}

.btn-secondary {
    background-color: var(--alpine-blue);
    color: white;
    padding: 1rem 2.5rem;
    border-radius: var(--radius-pill);
    font-weight: 700;
    font-size: 1rem;
    transition: all var(--transition-base);
    display: inline-block;
    border: none;
    cursor: pointer;
    text-align: center;
    box-shadow: 0 4px 12px -2px rgba(74, 124, 158, 0.3);
}

.btn-secondary:hover {
    background-color: var(--midnight);
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 8px 20px -2px rgba(10, 14, 26, 0.4);
}

.btn-ghost {
    font-weight: 700;
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.9);
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    border-radius: var(--radius-pill);
    border: 2px solid rgba(255, 255, 255, 0.35);
    background: transparent;
    transition: all var(--transition-base);
}

.btn-ghost:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.6);
    color: #ffffff;
    transform: translateX(8px);
}

.btn-block {
    display: block;
    width: 100%;
}

/* Hero Visual - Full Bleed Background */
.hero-visual {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-image-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero-image-wrapper::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(to bottom, rgba(10, 10, 20, 0.45) 0%, rgba(10, 10, 20, 0.2) 50%, rgba(10, 10, 20, 0.15) 100%);
    pointer-events: none;
}

.hero-main-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 65%;
    border-radius: 0;
    filter: brightness(0.85) saturate(0.85);
    animation: fadeIn 0.6s cubic-bezier(0.16, 1, 0.3, 1) 0s both;
}

.floating-card {
    position: absolute;
    background: white;
    padding: 2rem 2.5rem;
    border-radius: var(--radius-xl);
    display: flex;
    align-items: center;
    gap: 1.5rem;
    box-shadow: var(--shadow-xl);
    z-index: 15;
    border: 1px solid var(--border);
    backdrop-filter: blur(10px);
    animation: floating 4s ease-in-out infinite, fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) both;
    min-width: 280px;
    transition: all var(--transition-base);
}

.floating-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: var(--shadow-xl), var(--shadow-glow);
}

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

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

.card-1 {
    top: 20%;
    left: -25%;
    animation-delay: 0s, 1s;
}

.card-2 {
    bottom: 10%;
    left: -15%;
    animation-delay: 2s, 1.2s;
}

.card-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(212, 98, 46, 0.1), rgba(244, 162, 97, 0.1));
    border-radius: 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.card-icon svg {
    width: 28px;
    height: 28px;
    color: var(--terracotta);
    stroke-width: 2.5;
}

.card-content h4 {
    font-size: 1.25rem;
    margin-bottom: 0.375rem;
    color: var(--text-heading);
    font-family: var(--font-display);
    font-weight: 700;
}

.card-content p {
    font-size: 1rem;
    opacity: 0.75;
    margin: 0;
    color: var(--text);
}


@media (max-width: 992px) {
    .hero {
        min-height: auto;
        padding: 120px 0 80px;
    }

    .hero-grid {
        flex-direction: column;
        min-height: auto;
    }

    .hero-text {
        max-width: 100%;
        text-align: center;
        padding-right: 0;
        z-index: 20;
    }

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

    .hero-subtitle {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-btns {
        justify-content: center;
        flex-wrap: wrap;
    }

    .floating-card {
        display: none;
    }
}

@media (max-width: 640px) {
    .hero-title {
        font-size: clamp(2.5rem, 10vw, 4rem);
    }

    .hero-subtitle {
        font-size: 1.125rem;
    }

    .hero-badge {
        font-size: 0.65rem;
        padding: 0.4rem 1rem;
        letter-spacing: 0.8px;
    }

}

/* ===================================
   METHOD SECTION - SWISS GRID PRECISION
   =================================== */
.section-dark {
    background: var(--snow);
    color: var(--text-heading);
    border-radius: 0;
    margin: 0;
    padding: var(--spacing-3xl) 0;
    position: relative;
    overflow: hidden;
}

/* Swiss cross pattern background */
.section-dark::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        repeating-linear-gradient(90deg, transparent, transparent 99px, rgba(212, 98, 46, 0.02) 99px, rgba(212, 98, 46, 0.02) 100px),
        repeating-linear-gradient(0deg, transparent, transparent 99px, rgba(212, 98, 46, 0.02) 99px, rgba(212, 98, 46, 0.02) 100px);
    pointer-events: none;
    opacity: 0.5;
}

.section-dark .section-title {
    color: var(--text-heading);
}

.section-dark .section-title .text-gradient {
    color: var(--terracotta);
}

.section-dark .section-subtitle {
    color: var(--text);
    font-size: 1.25rem;
    line-height: 1.7;
    max-width: 600px;
}

.glow-bg {
    display: none;
}

.dark-content-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
    position: relative;
    z-index: 2;
}

.dark-text {
    max-width: 650px;
}

/* Swiss Grid - Bento Style Asymmetric Layout */
.dark-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, minmax(200px, auto));
    gap: 1.5rem;
    margin-top: 3rem;
}

.dark-card {
    background: white;
    border: 1px solid var(--border);
    padding: 2.5rem;
    border-radius: var(--radius-lg);
    transition: all var(--transition-base);
    box-shadow: var(--shadow-sm);
    position: relative;
}

.dark-card:hover {
    transform: translateY(-8px) rotate(0.5deg);
    box-shadow: var(--shadow-xl), var(--shadow-glow);
    border-color: var(--terracotta);
}

/* Asymmetric grid spans */
.dark-card:nth-child(1) {
    grid-column: span 2;
    grid-row: span 2;
    background: linear-gradient(135deg, rgba(212, 98, 46, 0.03), rgba(244, 162, 97, 0.03));
}

.dark-card:nth-child(2) {
    grid-column: span 2;
    grid-row: span 1;
}

.dark-card:nth-child(3) {
    grid-column: span 2;
    grid-row: span 1;
}

.dark-card:nth-child(4) {
    grid-column: span 2;
    grid-row: span 1;
}

.dark-icon {
    width: 64px;
    height: 64px;
    margin-bottom: 1.5rem;
    color: var(--terracotta);
    display: flex;
    align-items: center;
    justify-content: center;
}

.dark-icon svg {
    width: 48px;
    height: 48px;
    stroke-width: 1.5;
}

.dark-card h3 {
    color: var(--text-heading);
    font-size: 1.75rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.dark-card p {
    color: var(--text);
    font-size: 1.0625rem;
    line-height: 1.7;
    opacity: 0.9;
}

@media (max-width: 992px) {
    .dark-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: auto;
    }

    .dark-card:nth-child(1) {
        grid-column: span 2;
        grid-row: span 1;
    }

    .dark-card:nth-child(2),
    .dark-card:nth-child(3),
    .dark-card:nth-child(4) {
        grid-column: span 1;
        grid-row: span 1;
    }
}

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

    .dark-card:nth-child(1),
    .dark-card:nth-child(2),
    .dark-card:nth-child(3),
    .dark-card:nth-child(4) {
        grid-column: span 1;
        grid-row: span 1;
    }
}

/* ===================================
   BENEFITS SECTION - EDITORIAL LAYOUT
   =================================== */
.section-benefits {
    background: linear-gradient(180deg, var(--snow) 0%, var(--stone) 100%);
}

.benefits-grid-new {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin-top: 4rem;
}

.benefit-item {
    text-align: left;
    display: flex;
    flex-direction: column;
    background: white;
    padding: 3rem;
    border-radius: var(--radius-xl);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-base);
    position: relative;
}

/* Staggered heights for editorial feel */
.benefit-item:nth-child(2) {
    transform: translateY(2rem);
}

.benefit-item:hover {
    transform: translateY(-12px);
    box-shadow: var(--shadow-xl);
    border-color: var(--terracotta);
}

.benefit-item:nth-child(2):hover {
    transform: translateY(calc(2rem - 12px));
}

.benefit-icon-wrapper {
    width: 72px;
    height: 72px;
    background: linear-gradient(135deg, rgba(212, 98, 46, 0.1), rgba(244, 162, 97, 0.1));
    border-radius: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    color: var(--terracotta);
}

.benefit-icon-wrapper svg {
    width: 36px;
    height: 36px;
    stroke-width: 2;
}

.benefit-item h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--text-heading);
    font-weight: 700;
    line-height: 1.2;
}

.benefit-item p {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--text);
}

/* ===================================
   STATS SECTION - MONOSPACE PRECISION
   =================================== */
.section-stats {
    text-align: center;
    padding: var(--spacing-3xl) 0;
    background: white;
    border-radius: 0;
    margin: 0;
    position: relative;
}

.section-stats::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at center, rgba(212, 98, 46, 0.03) 0%, transparent 70%);
    pointer-events: none;
}

.stat-huge {
    font-size: clamp(6rem, 20vw, 14rem);
    font-weight: 500;
    font-family: var(--font-mono);
    line-height: 0.9;
    margin: 2rem 0;
    letter-spacing: -0.02em;
    color: var(--text-heading);
    position: relative;
}

.stat-label {
    font-size: clamp(1rem, 2vw, 1.25rem);
    font-weight: 600;
    font-family: var(--font-mono);
    color: var(--terracotta);
    text-transform: uppercase;
    letter-spacing: 0.15em;
}

/* ===================================
   PRICING SECTION - MAGAZINE SPREAD
   =================================== */
.section-pricing {
    background: var(--stone);
}

.pricing-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr 1fr;
    gap: 2rem;
    align-items: start;
    margin-top: 3rem;
}

.pricing-card {
    background: white;
    padding: 3rem;
    border-radius: var(--radius-xl);
    border: 2px solid var(--border);
    transition: all var(--transition-base);
    display: flex;
    flex-direction: column;
    height: 100%;
    position: relative;
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--terracotta);
}

/* Featured card - Middle, larger */
.pricing-card.featured {
    border: 2px solid var(--terracotta);
    transform: scale(1.08);
    z-index: 2;
    box-shadow: 0 20px 50px -10px rgba(212, 98, 46, 0.25);
    background: linear-gradient(135deg, white 0%, rgba(212, 98, 46, 0.02) 100%);
}

.pricing-card.featured:hover {
    transform: scale(1.08) translateY(-8px);
    box-shadow: 0 25px 60px -10px rgba(212, 98, 46, 0.35);
}

/* Animated gradient border for featured - Subtle pulsing glow */
.pricing-card.featured::before {
    content: '';
    position: absolute;
    inset: -3px;
    border-radius: var(--radius-xl);
    background: linear-gradient(135deg, var(--terracotta), var(--amber), var(--alpine-blue));
    opacity: 0.6;
    filter: blur(8px);
    animation: pulse-glow 3s ease-in-out infinite;
    z-index: -1;
}

@keyframes pulse-glow {
    0%, 100% {
        opacity: 0.4;
        filter: blur(8px);
    }
    50% {
        opacity: 0.7;
        filter: blur(12px);
    }
}

.plan-badge {
    display: inline-block;
    padding: 0.375rem 1rem;
    background: var(--stone);
    border-radius: var(--radius-pill);
    font-size: 0.75rem;
    font-weight: 700;
    font-family: var(--font-mono);
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.featured-badge {
    background: var(--gradient-button);
    color: white;
    position: relative;
}

.featured-badge::before {
    content: '';
    position: absolute;
    left: -8px;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    background: var(--terracotta);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
        transform: translateY(-50%) scale(1);
    }
    50% {
        opacity: 0.5;
        transform: translateY(-50%) scale(1.3);
    }
}

.pricing-header {
    margin-bottom: 2rem;
}

.pricing-title {
    font-size: 2rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.pricing-price {
    font-size: 3.5rem;
    font-weight: 700;
    font-family: var(--font-display);
    margin-bottom: 2rem;
    color: var(--text-heading);
}

.pricing-price span {
    font-size: 1.25rem;
    opacity: 0.6;
    font-weight: 400;
}

.pricing-features {
    margin-bottom: 2.5rem;
    flex-grow: 1;
}

.pricing-features li {
    margin-bottom: 1.25rem;
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    font-size: 1.0625rem;
    font-weight: 400;
    line-height: 1.6;
}

.pricing-features li::before {
    content: '✓';
    color: var(--terracotta);
    font-weight: 800;
    font-size: 1.25rem;
    flex-shrink: 0;
}

/* ===================================
   TESTIMONIALS SECTION - WARM GRADIENT MESH
   =================================== */
.section-testimonials {
    background: linear-gradient(135deg, rgba(244, 162, 97, 0.08) 0%, rgba(74, 124, 158, 0.08) 100%);
    position: relative;
    overflow: hidden;
}

.section-testimonials::before {
    content: '';
    position: absolute;
    top: -20%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(244, 162, 97, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(80px);
}

.section-testimonials::after {
    content: '';
    position: absolute;
    bottom: -20%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(74, 124, 158, 0.12) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(80px);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
    position: relative;
    z-index: 2;
}

.testimonial-card {
    background: white;
    padding: 3rem;
    border-radius: var(--radius-xl);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-md);
    transition: all var(--transition-base);
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--alpine-blue);
}

.testimonial-text {
    font-size: 1.1875rem;
    font-style: italic;
    font-family: var(--font-display);
    font-weight: 300;
    margin-bottom: 2rem;
    line-height: 1.7;
    color: var(--text);
}

.author-info {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 52px;
    height: 52px;
    background: var(--gradient-hero);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-family: var(--font-mono);
    font-size: 0.875rem;
}

/* ===================================
   CALENDLY SECTION
   =================================== */
.section-calendly {
    background: var(--background);
}

.calendly-wrapper {
    max-width: 720px;
    margin: 0 auto;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    background: white;
}

/* ===================================
   FOOTER
   =================================== */
.footer {
    padding: var(--spacing-3xl) 0 3rem;
    background: var(--midnight);
    color: white;
}

.footer-main {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-brand .logo-img {
    height: 36px;
    margin-bottom: 1.25rem;
    filter: brightness(0) invert(1);
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.7;
    font-size: 0.9375rem;
}

.footer-heading {
    font-size: 0.75rem;
    margin-bottom: 1.25rem;
    color: rgba(255, 255, 255, 0.4);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.footer-list li {
    margin-bottom: 0.75rem;
    color: rgba(255, 255, 255, 0.6);
}

.footer-list a {
    color: rgba(255, 255, 255, 0.6);
    transition: color var(--transition-fast);
}

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

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.35);
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-xs);
}

.form-group label {
    font-weight: 600;
    font-size: 0.875rem;
    color: var(--primary);
}

.form-group input,
.form-group select {
    padding: 0.75rem 1rem;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    font-family: var(--font-body);
    font-size: 1rem;
    transition: all var(--transition-fast);
    background-color: rgba(15, 23, 42, 0.5);
    color: white;
}

/* INPUT FOCUS STATES - Required Animation */
.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--cta);
    box-shadow: 0 0 15px rgba(185, 28, 28, 0.2);
    background-color: rgba(30, 41, 59, 0.8);
}

.form-group input::placeholder {
    color: var(--text-secondary);
    opacity: 0.6;
}

.form-privacy {
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
    font-size: 0.875rem;
    color: var(--text-secondary);
    margin-top: var(--spacing-sm);
}

.form-privacy svg {
    color: var(--success);
    flex-shrink: 0;
}

/* Cleaned up redundant styles */

/* ===================================
   STEPS SECTION
   =================================== */
.section-steps {
    background-color: var(--background);
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-xl);
}

.step-card {
    background: var(--gradient-card);
    padding: var(--spacing-xl);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    transition: all var(--transition-base);
    position: relative;
    backdrop-filter: blur(8px);
}

/* CARD HOVER EFFECTS - Lift + Shadow */
.step-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-xl), var(--shadow-glow);
    border-color: var(--accent);
}

.step-number {
    position: absolute;
    top: var(--spacing-md);
    right: var(--spacing-md);
    font-size: 3rem;
    font-weight: 700;
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    opacity: 0.15;
    font-family: var(--font-heading);
}

.step-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--cta), var(--accent));
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--spacing-md);
}

.step-icon svg {
    color: white;
}

.step-title {
    font-size: 1.375rem;
    margin-bottom: var(--spacing-sm);
}

.step-description {
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ===================================
   BENTO GRID - Benefits Section
   =================================== */
.section-benefits {
    background-color: var(--background);
}

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

.bento-card {
    background: var(--gradient-card);
    padding: var(--spacing-xl);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    transition: all var(--transition-base);
    display: flex;
    flex-direction: column;
    position: relative;
}

/* CARD HOVER EFFECTS */
.bento-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-xl), var(--shadow-glow);
    border-color: var(--accent);
}

/* Gradient border effect on hover */
.bento-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: var(--radius-lg);
    padding: 2px;
    background: var(--gradient-accent);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity var(--transition-base);
    pointer-events: none;
}

.bento-card:hover::before {
    opacity: 1;
}

.bento-card:nth-child(1) {
    grid-column: span 2;
    grid-row: span 2;
}

.bento-card:nth-child(2) {
    grid-column: span 2;
}

.bento-card:nth-child(3) {
    grid-column: span 2;
}

.bento-card:nth-child(4) {
    grid-column: span 2;
}

.bento-card:nth-child(5) {
    grid-column: span 4;
}

.bento-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, rgba(3, 105, 161, 0.1), rgba(59, 130, 246, 0.1));
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--spacing-md);
}

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

.bento-title {
    font-size: 1.25rem;
    margin-bottom: var(--spacing-sm);
}

.bento-description {
    color: var(--text-secondary);
    line-height: 1.7;
}

.bento-large .bento-icon {
    width: 72px;
    height: 72px;
}

.bento-large .bento-title {
    font-size: 1.75rem;
}

.bento-large .bento-description {
    font-size: 1.125rem;
}

/* ===================================
   TESTIMONIALS SECTION
   =================================== */
.section-testimonials {
    background-color: var(--background);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: var(--spacing-xl);
}

.testimonial-card {
    background: var(--gradient-card);
    padding: var(--spacing-xl);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    transition: all var(--transition-base);
}

.testimonial-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-xl), var(--shadow-glow);
    border-color: var(--accent);
}

.testimonial-stars {
    display: flex;
    gap: 4px;
    margin-bottom: var(--spacing-md);
    color: #F59E0B;
}

.testimonial-text {
    font-size: 1.0625rem;
    line-height: 1.7;
    margin-bottom: var(--spacing-lg);
    color: var(--text);
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
}

.author-avatar {
    width: 48px;
    height: 48px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-family: var(--font-heading);
    box-shadow: var(--shadow-md);
}

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

.author-location {
    font-size: 0.875rem;
    color: var(--text-secondary);
}

/* ===================================
   CTA SECTION
   =================================== */
.section-cta {
    background: var(--gradient-cta-section);
    color: white;
    position: relative;
    overflow: hidden;
}

.section-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(8, 145, 178, 0.15) 0%, transparent 60%);
    border-radius: 50%;
    pointer-events: none;
}

.section-cta::after {
    content: '';
    position: absolute;
    bottom: -40%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.12) 0%, transparent 60%);
    border-radius: 50%;
    pointer-events: none;
}

.cta-card {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.cta-title {
    font-size: clamp(2rem, 4vw, 2.75rem);
    color: white;
    margin-bottom: var(--spacing-md);
}

.cta-subtitle {
    font-size: clamp(1.125rem, 2vw, 1.375rem);
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: var(--spacing-xl);
}

.cta-note {
    margin-top: var(--spacing-md);
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9375rem;
}

/* ===================================
   FOOTER
   =================================== */
.footer {
    background-color: #050810;
    /* Deeper midnight for the footer */
    color: white;
    padding: var(--spacing-2xl) 0 var(--spacing-lg);
    border-top: 1px solid var(--border);
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 2fr;
    gap: var(--spacing-2xl);
    margin-bottom: var(--spacing-xl);
}

.footer-brand {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    /* Ensure items don't stretch */
    gap: var(--spacing-sm);
}

.footer-logo {
    height: 40px;
    /* Refined height */
    width: auto;
    display: block;
    background-color: white;
    padding: 6px 12px;
    border-radius: var(--radius-sm);
    margin-bottom: var(--spacing-xs);
    object-fit: contain;
    /* Extra safety for aspect ratio */
}

.footer-tagline {
    color: rgba(255, 255, 255, 0.7);
    margin-top: var(--spacing-xs);
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-xl);
}

.footer-heading {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: var(--spacing-md);
    color: white;
}

.footer-list {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
}

.footer-list a {
    color: rgba(255, 255, 255, 0.7);
    transition: color var(--transition-fast);
}

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

.footer-list li {
    color: rgba(255, 255, 255, 0.6);
}

.footer-list li::before {
    content: none;
}

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

/* ===================================
   REVEAL ON SCROLL ANIMATION
   =================================== */
.reveal-on-scroll {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity var(--transition-slow) ease-out,
        transform var(--transition-slow) ease-out;
}

.reveal-on-scroll.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* Stagger effect for multiple items */
.reveal-on-scroll:nth-child(1) {
    transition-delay: 0ms;
}

.reveal-on-scroll:nth-child(2) {
    transition-delay: 100ms;
}

.reveal-on-scroll:nth-child(3) {
    transition-delay: 200ms;
}

.reveal-on-scroll:nth-child(4) {
    transition-delay: 300ms;
}

.reveal-on-scroll:nth-child(5) {
    transition-delay: 400ms;
}

.reveal-on-scroll:nth-child(6) {
    transition-delay: 500ms;
}

/* ===================================
   REDUCED MOTION
   =================================== */
@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    .reveal-on-scroll {
        opacity: 1;
        transform: none;
    }
}

/* ===================================
   RESPONSIVE DESIGN - MOBILE FIRST
   =================================== */

/* Tablet & Below */
@media (max-width: 1024px) {
    :root {
        --container-padding: 1.5rem;
        --spacing-3xl: 5rem;
        --spacing-2xl: 4rem;
    }

    .section {
        padding: var(--spacing-2xl) 0;
    }

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

    .footer-main {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }

    .footer-big-text {
        font-size: clamp(4rem, 15vw, 10rem);
    }
}

/* Mobile Navigation */
@media (max-width: 768px) {
    :root {
        --container-padding: 1rem;
        --spacing-3xl: 4rem;
        --spacing-2xl: 3rem;
    }

    .section {
        padding: 3rem 0;
    }

    /* Navigation */
    .nav {
        padding: 1rem 0;
    }

    .nav.scrolled {
        padding: 0.875rem 0;
    }

    .nav-logo .logo-img {
        height: 28px;
    }

    .nav {
        background-color: rgba(253, 254, 254, 0.95) !important;
        backdrop-filter: blur(20px);
    }

    /* Override scrolled styles when mobile menu is active */
    .nav.nav-links.active ~ .nav,
    .nav:has(.nav-links.active) {
        background-color: transparent !important;
        backdrop-filter: none;
    }

    .nav-links {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: var(--gradient-dark);
        flex-direction: column;
        justify-content: center;
        padding: 2rem;
        transform: translateX(100%);
        opacity: 0;
        pointer-events: none;
        transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
        gap: 2rem;
        z-index: 999;
    }

    .nav-links.active {
        transform: translateX(0);
        opacity: 1;
        pointer-events: all;
    }

    .nav-link {
        font-size: 1.5rem;
        color: white;
    }

    .nav-link::after {
        display: none;
    }

    .nav-cta {
        background: var(--terracotta);
        color: white;
        padding: 1rem 2rem;
        font-size: 1.25rem;
    }

    .lang-switcher {
        margin-left: 0;
        margin-top: 1rem;
        background: rgba(255, 255, 255, 0.1);
        border-color: rgba(255, 255, 255, 0.2);
        padding: 10px 20px;
    }

    .lang-switcher a {
        color: rgba(255, 255, 255, 0.7);
        font-size: 0.875rem;
    }

    .lang-switcher a.active {
        color: white;
    }

    .lang-switcher .divider {
        background: rgba(255, 255, 255, 0.3);
    }

    .nav-toggle {
        display: flex;
        z-index: 1000;
    }

    .nav-toggle span {
        background-color: var(--text-heading);
    }

    .nav-toggle.active span {
        background-color: white;
    }

    /* Hero Section */
    .hero {
        min-height: auto;
        padding: 80px 0 40px;
    }

    .hero-title {
        font-size: clamp(2.5rem, 9vw, 4rem);
        line-height: 1;
        margin-bottom: 1.5rem;
    }

    .hero-subtitle {
        font-size: 1.125rem;
        margin-bottom: 2rem;
    }

    .hero-btns {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 1rem;
    }

    .btn-primary,
    .btn-ghost {
        padding: 0.9rem 1.75rem;
        font-size: 0.95rem;
    }

    .btn-ghost {
        transform: none !important;
    }

    .btn-ghost:hover {
        transform: none !important;
    }

    /* Benefits */
    .benefits-grid-new {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .benefit-item {
        padding: 2rem;
    }

    .benefit-item h3 {
        font-size: 1.5rem;
    }

    .benefit-item p {
        font-size: 1rem;
    }

    /* Stats */
    .stat-huge {
        font-size: clamp(4rem, 15vw, 8rem);
    }

    /* Pricing */
    .pricing-card {
        padding: 2rem;
    }

    .pricing-title {
        font-size: 1.5rem;
    }

    .pricing-price {
        font-size: 2.5rem;
    }

    /* Testimonials */
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .testimonial-card {
        padding: 2rem;
    }

    .testimonial-text {
        font-size: 1.0625rem;
    }

    /* Footer */
    .footer-main {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .footer-big-text {
        font-size: clamp(3rem, 12vw, 8rem);
        margin: 3rem 0;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    :root {
        --container-padding: 1rem;
    }

    body {
        font-size: 1rem;
    }

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

    .hero-subtitle {
        font-size: 1rem;
    }

    .section-title {
        font-size: clamp(1.75rem, 7vw, 2.5rem);
    }

    .benefit-item h3 {
        font-size: 1.375rem;
    }

    .dark-card h3 {
        font-size: 1.375rem;
    }

    .pricing-price {
        font-size: 2rem;
    }

    .stat-huge {
        font-size: clamp(3rem, 12vw, 6rem);
    }

    .footer-big-text {
        font-size: clamp(2.5rem, 10vw, 6rem);
    }
}

/* ===================================
   PRICING SECTION
   =================================== */
.section-pricing {
    background-color: var(--background);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-xl);
    align-items: start;
}

.pricing-card {
    background-color: var(--background);
    padding: var(--spacing-xl);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    transition: all var(--transition-base);
    display: flex;
    flex-direction: column;
    height: 100%;
    position: relative;
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl), var(--shadow-glow);
    border-color: var(--accent);
}

/* Feature Card (Middle) */
.pricing-card.featured {
    border: 1px solid transparent;
    background: var(--background) padding-box,
        var(--gradient-accent) border-box;
    box-shadow: 0 0 50px rgba(185, 28, 28, 0.2);
    transform: scale(1.05);
    z-index: 2;
}

.pricing-card.featured:hover {
    transform: scale(1.07) translateY(-8px);
    box-shadow: var(--shadow-xl), var(--shadow-glow-purple);
}

.pricing-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-primary);
    color: white;
    padding: 0.25rem 1rem;
    border-radius: var(--radius-sm);
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    box-shadow: var(--shadow-md);
}

.pricing-header {
    margin-bottom: var(--spacing-lg);
    text-align: center;
    border-bottom: 1px solid var(--border);
    padding-bottom: var(--spacing-lg);
}

.pricing-title {
    font-size: 1.5rem;
    color: var(--primary);
    margin-bottom: var(--spacing-xs);
}

.pricing-price {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text);
    font-family: var(--font-heading);
}

.pricing-price span {
    font-size: 1rem;
    font-weight: 400;
    color: var(--text-secondary);
}

.pricing-features {
    flex-grow: 1;
    margin-bottom: var(--spacing-xl);
}

.pricing-features ul {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
}

.pricing-features li {
    display: flex;
    align-items: flex-start;
    gap: var(--spacing-sm);
    font-size: 0.9375rem;
    color: var(--text);
    line-height: 1.5;
}

.pricing-features li svg {
    color: var(--accent);
    flex-shrink: 0;
    margin-top: 3px;
}

.pricing-features li.disabled {
    color: var(--text-secondary);
    opacity: 0.6;
    text-decoration: line-through;
}

.pricing-features li.highlight {
    font-weight: 600;
    color: var(--cta);
    background: linear-gradient(90deg, rgba(185, 28, 28, 0.15) 0%, transparent 100%);
    padding: 0.375rem 0.75rem;
    border-radius: var(--radius-sm);
    margin: 0 -0.5rem;
    border-left: 3px solid var(--cta);
}

@media (max-width: 1024px) {
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .pricing-card.featured {
        transform: none;
    }

    .pricing-card.featured:hover {
        transform: translateY(-8px);
    }

    .benefits-grid-new {
        grid-template-columns: 1fr;
    }

    .benefit-item:nth-child(2) {
        transform: none;
    }

    .benefit-item:hover,
    .benefit-item:nth-child(2):hover {
        transform: translateY(-12px);
    }
}

/* ===================================
   TEAM SECTION
   =================================== */
.section-team {
    background-color: white;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-xl);
    margin-top: var(--spacing-xl);
}

.team-card {
    text-align: center;
    transition: all var(--transition-base);
}

.team-card:hover {
    transform: translateY(-5px);
}

.team-image-wrapper {
    width: 160px;
    height: 160px;
    margin: 0 auto var(--spacing-md);
    position: relative;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid white;
    box-shadow: var(--shadow-md);
    background-color: var(--border);
    /* Placeholder color details */
}

/* Placeholder effect */
.team-image-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #E2E8F0 0%, #F1F5F9 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    font-size: 2rem;
    font-weight: 700;
}

.team-name {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
    color: var(--primary);
}

.team-role {
    color: var(--accent);
    font-weight: 600;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: var(--spacing-sm);
}

.team-bio {
    font-size: 0.9375rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.team-flag {
    display: inline-block;
    margin-top: var(--spacing-xs);
    font-size: 1.2rem;
}

/* ===================================
   COOKIE BANNER
   =================================== */
.cookie-banner {
    position: fixed;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%) translateY(100px);
    width: 90%;
    max-width: 500px;
    background: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(15px);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: var(--spacing-md);
    z-index: 2000;
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    opacity: 0;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    visibility: hidden;
}

.cookie-banner.show {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
    visibility: visible;
}

.cookie-text {
    font-size: 0.875rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

.cookie-text a {
    color: var(--accent);
    text-decoration: underline;
}

.cookie-actions {
    display: flex;
    justify-content: flex-end;
}

.btn-cookie {
    padding: 0.5rem 1.5rem;
    font-size: 0.75rem;
}

@media (max-width: 480px) {
    .cookie-banner {
        bottom: 1rem;
        padding: var(--spacing-sm);
    }
}