/* ==========================================================================
   AURA Landing Page Styles
   Based on Brand Guidelines v1.0
   Typography: Outfit | Colors: Warm Off-White, Anthrazit, Spectral Accents
   ========================================================================== */

/* --------------------------------------------------------------------------
   CSS Custom Properties (Design Tokens)
   -------------------------------------------------------------------------- */
:root {
    /* Colors - Primary Palette */
    --color-sand: #F5F3EF;
    --color-sand-dark: #EBE8E2;
    --color-anthrazit: #1A1A1A;
    --color-anthrazit-light: #2D2D2D;
    --color-anthrazit-muted: #4A4A4A;
    --color-text-muted: #5A5A5A;

    /* Spectral/Prismatic Colors */
    --gradient-prismatic: linear-gradient(
        135deg,
        rgba(255, 107, 107, 0.15) 0%,
        rgba(255, 193, 107, 0.15) 20%,
        rgba(255, 255, 107, 0.12) 40%,
        rgba(107, 255, 180, 0.12) 60%,
        rgba(107, 181, 255, 0.15) 80%,
        rgba(181, 107, 255, 0.15) 100%
    );
    --gradient-prismatic-strong: linear-gradient(
        135deg,
        rgba(255, 107, 107, 0.4) 0%,
        rgba(255, 193, 107, 0.4) 25%,
        rgba(107, 255, 180, 0.35) 50%,
        rgba(107, 181, 255, 0.4) 75%,
        rgba(181, 107, 255, 0.4) 100%
    );

    /* Typography Scale - Outfit */
    --font-family: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;

    /* Font Sizes */
    --text-h1: clamp(2.5rem, 5vw, 4.5rem);
    --text-h2: clamp(2rem, 4vw, 3rem);
    --text-h3: clamp(1.5rem, 2.5vw, 2rem);
    --text-h4: 1.5rem;
    --text-h5: 1.25rem;
    --text-body-large: 1.25rem;
    --text-body: 1.0625rem;
    --text-body-small: 0.9375rem;
    --text-overline: 0.8125rem;
    --text-caption: 0.8125rem;

    /* Font Weights */
    --weight-light: 300;
    --weight-regular: 400;
    --weight-medium: 500;
    --weight-semibold: 600;
    --weight-bold: 700;

    /* Spacing */
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 1.5rem;
    --space-lg: 2rem;
    --space-xl: 3rem;
    --space-2xl: 4rem;
    --space-3xl: 6rem;
    --space-4xl: 7rem;

    /* Layout */
    --container-max: 1200px;
    --container-narrow: 800px;

    /* Transitions */
    --transition-fast: 150ms ease;
    --transition-base: 250ms ease;
    --transition-slow: 400ms ease;

    /* Shadows */
    --shadow-sm: 0 1px 2px rgba(26, 26, 26, 0.05);
    --shadow-md: 0 4px 12px rgba(26, 26, 26, 0.08);
    --shadow-lg: 0 8px 30px rgba(26, 26, 26, 0.12);
    --shadow-xl: 0 20px 60px rgba(26, 26, 26, 0.15);

    /* Border Radius */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-xl: 20px;
    --radius-full: 9999px;
}

/* --------------------------------------------------------------------------
   Scroll Progress Indicator
   -------------------------------------------------------------------------- */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 3px;
    background: linear-gradient(
        90deg,
        rgba(255, 107, 107, 0.9) 0%,
        rgba(255, 193, 107, 0.9) 25%,
        rgba(107, 255, 180, 0.85) 50%,
        rgba(107, 181, 255, 0.9) 75%,
        rgba(181, 107, 255, 0.9) 100%
    );
    z-index: 1001;
    transition: width 0.1s ease-out;
    pointer-events: none;
}

/* --------------------------------------------------------------------------
   Accessibility: Skip Link
   -------------------------------------------------------------------------- */
.skip-link {
    position: absolute;
    top: -100px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--color-anthrazit);
    color: var(--color-sand);
    padding: 1rem 2rem;
    border-radius: var(--radius-md);
    font-weight: var(--weight-medium);
    z-index: 10000;
    transition: top var(--transition-fast);
    text-decoration: none;
}

.skip-link:focus {
    top: var(--space-md);
    outline: none;
}

/* --------------------------------------------------------------------------
   Accessibility: Focus Visible Styles
   -------------------------------------------------------------------------- */
:focus-visible {
    outline: 2px solid var(--color-anthrazit);
    outline-offset: 2px;
}

/* Prismatic focus outline for interactive elements */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
    outline: 2px solid var(--color-anthrazit);
    outline-offset: 2px;
}

/* Remove default focus outline on mouse click */
:focus:not(:focus-visible) {
    outline: none;
}

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

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-family);
    font-size: var(--text-body);
    font-weight: var(--weight-regular);
    line-height: 1.65;
    color: var(--color-anthrazit);
    background-color: var(--color-sand);
}

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

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

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

/* --------------------------------------------------------------------------
   Typography
   -------------------------------------------------------------------------- */
h1, h2, h3, h4, h5, h6 {
    font-weight: var(--weight-semibold);
    line-height: 1.1;
    letter-spacing: -0.02em;
}

h1 { font-size: var(--text-h1); }
h2 { font-size: var(--text-h2); line-height: 1.15; }
h3 { font-size: var(--text-h3); font-weight: var(--weight-medium); }
h4 { font-size: var(--text-h4); font-weight: var(--weight-medium); }
h5 { font-size: var(--text-h5); font-weight: var(--weight-medium); }

p {
    margin-bottom: 1em;
}

p:last-child {
    margin-bottom: 0;
}

.overline {
    font-size: var(--text-overline);
    font-weight: var(--weight-semibold);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--color-text-muted);
    margin-bottom: var(--space-md);
}

/* --------------------------------------------------------------------------
   Layout
   -------------------------------------------------------------------------- */
.container {
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--space-lg);
}

section {
    padding: var(--space-4xl) 0;
}

/* --------------------------------------------------------------------------
   Components: Buttons
   -------------------------------------------------------------------------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-xs);
    padding: 1rem 2rem;
    font-size: var(--text-body);
    font-weight: var(--weight-medium);
    letter-spacing: 0.01em;
    border-radius: var(--radius-md);
    transition: all var(--transition-base);
}

.btn-primary {
    background-color: var(--color-anthrazit);
    color: var(--color-sand);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

/* Prismatic shimmer effect on hover */
.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(255, 107, 107, 0.15) 20%,
        rgba(255, 193, 107, 0.2) 35%,
        rgba(107, 255, 180, 0.2) 50%,
        rgba(107, 181, 255, 0.2) 65%,
        rgba(181, 107, 255, 0.15) 80%,
        transparent 100%
    );
    z-index: -1;
    transition: left 0.6s ease;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    background-color: var(--color-anthrazit-light);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background-color: transparent;
    color: var(--color-anthrazit);
    border: 1.5px solid var(--color-anthrazit);
}

.btn-secondary:hover {
    background-color: var(--color-anthrazit);
    color: var(--color-sand);
}

.btn-large {
    padding: 1.25rem 2.5rem;
    font-size: var(--text-body-large);
}

.play-icon {
    width: 0;
    height: 0;
    border-left: 8px solid currentColor;
    border-top: 5px solid transparent;
    border-bottom: 5px solid transparent;
    margin-right: 4px;
}

/* --------------------------------------------------------------------------
   Navigation
   -------------------------------------------------------------------------- */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: var(--color-anthrazit);
    backdrop-filter: blur(10px);
    transition: all var(--transition-base);
}

.nav-container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: var(--space-sm) var(--space-lg);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 24px;
    width: auto;
    animation: logo-shimmer 1.5s ease-out;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: var(--space-xl);
}

.nav-links a {
    font-size: var(--text-body-small);
    font-weight: var(--weight-medium);
    color: rgba(245, 243, 239, 0.8);
    transition: color var(--transition-fast);
}

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

.nav-cta {
    padding: 0.625rem 1.25rem;
    background: var(--color-sand);
    color: var(--color-anthrazit) !important;
    border-radius: var(--radius-md);
    position: relative;
    overflow: hidden;
}

/* Prismatic shimmer on nav CTA */
.nav-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(255, 107, 107, 0.3) 20%,
        rgba(107, 255, 180, 0.3) 50%,
        rgba(107, 181, 255, 0.3) 80%,
        transparent 100%
    );
    transition: left 0.5s ease;
}

.nav-cta:hover::before {
    left: 150%;
}

.nav-cta:hover {
    background: white;
}

/* --------------------------------------------------------------------------
   Language Switcher
   -------------------------------------------------------------------------- */
.lang-switcher {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-left: var(--space-md);
    padding-left: var(--space-md);
    border-left: 1px solid rgba(245, 243, 239, 0.2);
}

.lang-option {
    font-size: var(--text-body-small);
    font-weight: var(--weight-medium);
    color: rgba(245, 243, 239, 0.6);
    transition: color var(--transition-fast);
    padding: 0.25rem 0.5rem;
    border-radius: var(--radius-sm);
}

.lang-option:hover {
    color: var(--color-sand);
}

.lang-option.active {
    color: var(--color-sand);
    background: rgba(245, 243, 239, 0.1);
}

.lang-divider {
    color: rgba(245, 243, 239, 0.3);
    font-size: var(--text-body-small);
}

/* Mobile language switcher */
@media (max-width: 768px) {
    .lang-switcher {
        margin-left: 0;
        padding-left: 0;
        border-left: none;
        margin-top: var(--space-md);
        padding-top: var(--space-md);
        border-top: 1px solid rgba(245, 243, 239, 0.1);
        justify-content: center;
    }
}

/* --------------------------------------------------------------------------
   Section: Hero
   -------------------------------------------------------------------------- */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: calc(var(--space-4xl) + 60px);
    padding-bottom: var(--space-4xl);
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    width: 200%;
    height: 60px;
    top: 30%;
    left: -50%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(249, 212, 155, 0.4),
        rgba(232, 168, 73, 0.3),
        rgba(201, 169, 98, 0.2),
        transparent
    );
    filter: blur(40px);
    pointer-events: none;
    z-index: 1;
    animation: light-sweep 2s ease-out forwards;
}

.hero-grid {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--space-lg);
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-xl);
    align-items: center;
}

@media (min-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr 1fr;
        gap: var(--space-2xl);
    }
}

@media (min-width: 1280px) {
    .hero-grid {
        grid-template-columns: 55% 45%;
    }
}

.hero-bg-effects {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.prismatic-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.6;
    animation: float 20s ease-in-out infinite;
}

.prismatic-orb-1 {
    width: 600px;
    height: 600px;
    top: -200px;
    right: -100px;
    background: var(--gradient-prismatic-strong);
    animation-delay: 0s;
}

.prismatic-orb-2 {
    width: 400px;
    height: 400px;
    bottom: -100px;
    left: -50px;
    background: var(--gradient-prismatic-strong);
    animation-delay: -10s;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    25% { transform: translate(20px, -30px) scale(1.05); }
    50% { transform: translate(-10px, 20px) scale(0.95); }
    75% { transform: translate(30px, 10px) scale(1.02); }
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-headline {
    margin-bottom: var(--space-lg);
    animation: fadeInUp 0.8s ease both;
}

.hero-headline-accent {
    background: linear-gradient(
        90deg,
        var(--color-anthrazit) 0%,
        #E8A849 25%,
        #D4847C 50%,
        #C9A962 75%,
        var(--color-anthrazit) 100%
    );
    background-size: 200% 100%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: prismatic-text-flow 4s ease-in-out 1s infinite;
}

.hero-subheadline {
    font-size: var(--text-body-large);
    line-height: 1.6;
    color: var(--color-anthrazit-muted);
    margin-bottom: var(--space-xl);
    animation: fadeInUp 0.8s ease 0.1s both;
}

.hero-ctas {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-md);
    margin-bottom: var(--space-xl);
    animation: fadeInUp 0.8s ease 0.2s both;
}

.hero-trust {
    animation: fadeInUp 0.8s ease 0.3s both;
}

.trust-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-xs);
    font-size: var(--text-body-small);
    color: var(--color-text-muted);
}

.trust-badge::before {
    content: '';
    width: 8px;
    height: 8px;
    background: linear-gradient(135deg, #6BF5B4 0%, #6BB5FF 100%);
    border-radius: 50%;
}

.hero-trustpilot {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    margin-left: 1.25rem;
    padding-left: 1.25rem;
    border-left: 1px solid var(--color-border);
    text-decoration: none;
    transition: opacity var(--transition-base);
}

.hero-trustpilot:hover {
    opacity: 0.7;
}

.hero-trustpilot-stars {
    display: inline-flex;
    font-size: 0.75rem;
    letter-spacing: 1px;
    color: #00B67A;
}

.hero-trustpilot-stars .half {
    background: linear-gradient(90deg, #00B67A 50%, var(--color-text-muted) 50%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-trustpilot-text {
    font-size: 0.75rem;
    color: var(--color-text-muted);
    font-weight: var(--weight-medium);
}

@media (max-width: 600px) {
    .hero-trust {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }

    .hero-trustpilot {
        margin-left: 0;
        padding-left: 0;
        border-left: none;
    }
}

.hero-visual {
    display: none;
    z-index: 1;
}

@media (min-width: 1024px) {
    .hero-visual {
        display: block;
    }
}

.hero-image-container {
    position: relative;
}

.hero-image {
    width: 100%;
    height: auto;
    border-radius: var(--radius-xl);
    object-fit: cover;
    box-shadow: var(--shadow-xl);
}

.hero-image-glow {
    position: absolute;
    inset: -20px;
    background: var(--gradient-prismatic-strong);
    filter: blur(40px);
    opacity: 0.3;
    z-index: -1;
    border-radius: var(--radius-xl);
}

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

/* Hero "Wow-Moment" Animations */
@keyframes prismatic-text-flow {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

@keyframes light-sweep {
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); opacity: 1; }
    100% { transform: translateX(200%) translateY(200%) rotate(45deg); opacity: 0; }
}

@keyframes logo-shimmer {
    0% { filter: brightness(1) drop-shadow(0 0 0 transparent); }
    50% { filter: brightness(1.2) drop-shadow(0 0 8px rgba(201, 169, 98, 0.6)); }
    100% { filter: brightness(1) drop-shadow(0 0 0 transparent); }
}

/* --------------------------------------------------------------------------
   Section: Problem
   -------------------------------------------------------------------------- */
.problem {
    background: var(--color-sand);
}

.section-headline {
    margin-bottom: var(--space-lg);
}

.headline-muted {
    color: var(--color-text-muted);
}

.section-intro {
    font-size: var(--text-body-large);
    line-height: 1.7;
    color: var(--color-anthrazit-muted);
    max-width: var(--container-narrow);
    margin-bottom: var(--space-3xl);
}

.pain-points {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--space-lg);
}

.pain-card {
    background: white;
    padding: var(--space-xl);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
}

/* Prismatic border effect on hover */
.pain-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: var(--radius-lg);
    padding: 2px;
    background: linear-gradient(
        135deg,
        rgba(255, 107, 107, 0.5) 0%,
        rgba(255, 193, 107, 0.5) 25%,
        rgba(107, 255, 180, 0.4) 50%,
        rgba(107, 181, 255, 0.5) 75%,
        rgba(181, 107, 255, 0.5) 100%
    );
    background-size: 200% 200%;
    -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);
}

.pain-card:hover::before {
    opacity: 1;
    animation: prismatic-border-flow 3s ease infinite;
}

@keyframes prismatic-border-flow {
    0% { background-position: 0% 0%; }
    50% { background-position: 100% 100%; }
    100% { background-position: 0% 0%; }
}

.pain-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.pain-icon {
    width: 56px;
    height: 56px;
    margin-bottom: var(--space-md);
    color: var(--color-anthrazit);
}

.pain-icon svg {
    width: 100%;
    height: 100%;
}

.pain-title {
    font-size: var(--text-h5);
    margin-bottom: var(--space-sm);
}

.pain-description {
    color: var(--color-text-muted);
    font-size: var(--text-body);
    line-height: 1.6;
}

/* --------------------------------------------------------------------------
   Section: Disruption
   -------------------------------------------------------------------------- */
.disruption {
    background: white;
}

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

@media (min-width: 900px) {
    .disruption .container {
        grid-template-columns: 1fr 1fr;
    }
}

.disruption-headline {
    margin-bottom: var(--space-xl);
}

.headline-emphasis {
    position: relative;
    display: inline;
}

.headline-emphasis::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0.1em;
    width: 100%;
    height: 0.15em;
    background: var(--gradient-prismatic-strong);
    opacity: 0.6;
    z-index: -1;
}

.disruption-text {
    font-size: var(--text-body-large);
    line-height: 1.8;
}

.disruption-text p {
    margin-bottom: var(--space-md);
}

.disruption-truth {
    font-weight: var(--weight-semibold);
    color: var(--color-anthrazit);
}

.disruption-insight {
    padding: var(--space-md);
    background: var(--color-sand);
    border-radius: var(--radius-md);
    border-left: 3px solid var(--color-anthrazit);
}

.comparison-visual {
    display: flex;
    gap: var(--space-md);
    align-items: stretch;
}

.comparison-side {
    flex: 1;
    padding: 0;
    border-radius: var(--radius-lg);
    text-align: center;
    overflow: hidden;
}

.comparison-before {
    background: var(--color-sand);
}

.comparison-after {
    background: var(--color-anthrazit);
    color: var(--color-sand);
}

.comparison-label {
    position: absolute;
    top: var(--space-md);
    left: 50%;
    transform: translateX(-50%);
    font-size: var(--text-overline);
    font-weight: var(--weight-semibold);
    letter-spacing: 0.05em;
    text-transform: uppercase;
    background: rgba(255, 255, 255, 0.9);
    padding: var(--space-xs) var(--space-sm);
    border-radius: var(--radius-sm);
    z-index: 2;
}

.comparison-after .comparison-label {
    background: rgba(0, 0, 0, 0.7);
    color: var(--color-sand);
}

.comparison-scene {
    position: relative;
    width: 100%;
    height: 100%;
}

.comparison-icon {
    width: 120px;
    height: 90px;
}

.comparison-image {
    width: 100%;
    height: 100%;
    min-height: 280px;
    object-fit: cover;
    display: block;
}

.comparison-scene span {
    position: absolute;
    bottom: var(--space-md);
    left: 50%;
    transform: translateX(-50%);
    font-size: var(--text-body-small);
    background: rgba(255, 255, 255, 0.9);
    padding: var(--space-xs) var(--space-sm);
    border-radius: var(--radius-sm);
    white-space: nowrap;
    z-index: 2;
}

.comparison-after .comparison-scene span {
    background: rgba(0, 0, 0, 0.7);
    color: var(--color-sand);
}

.comparison-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
}

.comparison-vs {
    font-size: var(--text-body-small);
    font-weight: var(--weight-semibold);
    color: var(--color-text-muted);
}

/* --------------------------------------------------------------------------
   Section: Insight
   -------------------------------------------------------------------------- */
.insight {
    position: relative;
    background: var(--color-sand);
    overflow: hidden;
}

.insight-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.prismatic-band {
    position: absolute;
    top: 50%;
    left: -10%;
    right: -10%;
    height: 300px;
    transform: translateY(-50%) rotate(-3deg);
    background: var(--gradient-prismatic);
    filter: blur(60px);
    opacity: 0.5;
}

.insight .container {
    position: relative;
    z-index: 1;
}

.insight-headline {
    text-align: center;
    max-width: var(--container-narrow);
    margin-left: auto;
    margin-right: auto;
}

.insight-intro {
    text-align: center;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: var(--space-3xl);
}

.transformation-box {
    background: white;
    border-radius: var(--radius-xl);
    padding: var(--space-xl);
    box-shadow: var(--shadow-lg);
    max-width: 800px;
    margin: 0 auto var(--space-3xl);
    position: relative;
    overflow: hidden;
}

/* Prismatic animated border */
.transformation-box::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: var(--radius-xl);
    padding: 2px;
    background: linear-gradient(
        90deg,
        rgba(255, 107, 107, 0.5) 0%,
        rgba(255, 193, 107, 0.5) 20%,
        rgba(255, 255, 107, 0.4) 40%,
        rgba(107, 255, 180, 0.5) 60%,
        rgba(107, 181, 255, 0.5) 80%,
        rgba(181, 107, 255, 0.5) 100%
    );
    background-size: 300% 100%;
    -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;
    animation: prismatic-border 6s linear infinite;
    opacity: 0.8;
}

@keyframes prismatic-border {
    0% { background-position: 0% 50%; }
    100% { background-position: 300% 50%; }
}

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

.transformation-label {
    font-size: var(--text-overline);
    font-weight: var(--weight-semibold);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--color-text-muted);
}

.transformation-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-md);
}

.transformation-item {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    padding: var(--space-md);
    background: var(--color-sand);
    border-radius: var(--radius-md);
}

.transformation-from {
    flex: 1;
    color: var(--color-text-muted);
    text-decoration: line-through;
    text-decoration-color: rgba(26, 26, 26, 0.3);
}

.transformation-arrow {
    width: 24px;
    height: 2px;
    background: var(--color-anthrazit);
    position: relative;
}

.transformation-arrow::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    border-left: 6px solid var(--color-anthrazit);
    border-top: 4px solid transparent;
    border-bottom: 4px solid transparent;
}

.transformation-to {
    flex: 1;
    font-weight: var(--weight-semibold);
    text-align: right;
}

.testimonial-highlight {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    padding: var(--space-xl);
    position: relative;
}

/* Prismatic quotation marks */
.testimonial-highlight::before,
.testimonial-highlight::after {
    font-size: 6rem;
    font-family: Georgia, serif;
    line-height: 1;
    position: absolute;
    background: linear-gradient(
        135deg,
        rgba(255, 107, 107, 0.6) 0%,
        rgba(255, 193, 107, 0.6) 25%,
        rgba(107, 255, 180, 0.5) 50%,
        rgba(107, 181, 255, 0.6) 75%,
        rgba(181, 107, 255, 0.6) 100%
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    opacity: 0.5;
    pointer-events: none;
}

.testimonial-highlight::before {
    content: '"';
    top: 0;
    left: 0;
    transform: translate(-20%, -30%);
}

.testimonial-highlight::after {
    content: '"';
    bottom: 0;
    right: 0;
    transform: translate(20%, 10%);
}

.testimonial-quote {
    font-size: var(--text-h4);
    font-weight: var(--weight-medium);
    font-style: italic;
    line-height: 1.5;
    margin-bottom: var(--space-lg);
    position: relative;
    z-index: 1;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    gap: var(--space-xs);
}

.author-name {
    font-weight: var(--weight-semibold);
}

.author-role {
    color: var(--color-text-muted);
    font-size: var(--text-body-small);
}

.author-details {
    color: var(--color-text-muted);
    font-size: var(--text-caption);
}

/* --------------------------------------------------------------------------
   Section: Solution
   -------------------------------------------------------------------------- */
.solution {
    background: white;
}

.solution .section-headline,
.solution .section-intro {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

.solution .section-intro {
    margin-bottom: var(--space-3xl);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-lg);
    margin-bottom: var(--space-3xl);
}

.feature-card {
    background: var(--color-sand);
    padding: var(--space-xl);
    border-radius: var(--radius-lg);
    text-align: center;
    transition: all var(--transition-base);
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.feature-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto var(--space-md);
    color: var(--color-anthrazit);
    position: relative;
}

.feature-icon svg {
    width: 100%;
    height: 100%;
    position: relative;
    z-index: 1;
    transition: transform var(--transition-base);
}

/* Light refraction effect on hover */
.feature-icon::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 80px;
    height: 80px;
    transform: translate(-50%, -50%) scale(0.5);
    background: conic-gradient(
        from 0deg,
        transparent 0deg,
        rgba(255, 107, 107, 0.3) 30deg,
        rgba(255, 193, 107, 0.3) 60deg,
        rgba(107, 255, 180, 0.25) 120deg,
        rgba(107, 181, 255, 0.3) 180deg,
        rgba(181, 107, 255, 0.3) 240deg,
        transparent 300deg
    );
    border-radius: 50%;
    opacity: 0;
    filter: blur(12px);
    transition: all var(--transition-base);
    z-index: 0;
}

.feature-card:hover .feature-icon::after {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
    animation: light-refract 3s linear infinite;
}

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

@keyframes light-refract {
    0% { transform: translate(-50%, -50%) scale(1) rotate(0deg); }
    100% { transform: translate(-50%, -50%) scale(1) rotate(360deg); }
}

.feature-title {
    font-size: var(--text-h5);
    margin-bottom: var(--space-sm);
}

.feature-benefit {
    color: var(--color-text-muted);
    line-height: 1.6;
}

.demo-player {
    max-width: 600px;
    margin: 0 auto var(--space-3xl);
    background: var(--color-anthrazit);
    border-radius: var(--radius-lg);
    overflow: hidden;
    position: relative;
    transition: box-shadow var(--transition-base);
}

/* Prismatic glow effect when playing */
.demo-player::before {
    content: '';
    position: absolute;
    inset: -3px;
    background: linear-gradient(
        90deg,
        rgba(255, 107, 107, 0.6) 0%,
        rgba(255, 193, 107, 0.6) 20%,
        rgba(107, 255, 180, 0.5) 40%,
        rgba(107, 181, 255, 0.6) 60%,
        rgba(181, 107, 255, 0.6) 80%,
        rgba(255, 107, 107, 0.6) 100%
    );
    background-size: 200% 100%;
    border-radius: calc(var(--radius-lg) + 3px);
    opacity: 0;
    z-index: -1;
    filter: blur(8px);
    transition: opacity var(--transition-base);
}

.demo-player.playing::before {
    opacity: 1;
    animation: prismatic-glow-pulse 3s ease-in-out infinite;
}

@keyframes prismatic-glow-pulse {
    0%, 100% {
        background-position: 0% 50%;
        filter: blur(8px);
    }
    50% {
        background-position: 100% 50%;
        filter: blur(12px);
    }
}

.demo-header {
    padding: var(--space-md) var(--space-lg);
    border-bottom: 1px solid rgba(245, 243, 239, 0.1);
}

.demo-label {
    font-size: var(--text-body-small);
    color: rgba(245, 243, 239, 0.7);
}

.demo-content {
    display: flex;
    align-items: center;
    gap: var(--space-lg);
    padding: var(--space-lg);
}

.demo-play-btn {
    width: 56px;
    height: 56px;
    background: var(--color-sand);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-anthrazit);
    transition: all var(--transition-base);
    flex-shrink: 0;
}

.demo-play-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 0 30px rgba(245, 243, 239, 0.3);
}

.demo-play-btn svg {
    width: 20px;
    height: 20px;
    margin-left: 3px;
}

.demo-play-btn .pause-icon {
    margin-left: 0;
}

.demo-progress-container {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.demo-progress-bar {
    width: 100%;
    height: 4px;
    background: rgba(245, 243, 239, 0.2);
    border-radius: 2px;
    cursor: pointer;
    overflow: hidden;
}

.demo-progress {
    height: 100%;
    width: 0%;
    background: var(--color-sand);
    border-radius: 2px;
    transition: width 0.1s linear;
}

.demo-waveform {
    display: flex;
    align-items: center;
    gap: 2px;
    height: 32px;
}

.waveform-bar {
    flex: 1;
    background: rgba(245, 243, 239, 0.3);
    border-radius: 2px;
    height: 100%;
    transform-origin: bottom;
    transition: height 0.15s ease;
}

.demo-player.playing .waveform-bar {
    animation: waveform-dance 0.5s ease-in-out infinite alternate;
}

.waveform-bar:nth-child(1) { height: 30%; animation-delay: 0s; }
.waveform-bar:nth-child(2) { height: 60%; animation-delay: 0.05s; }
.waveform-bar:nth-child(3) { height: 45%; animation-delay: 0.1s; }
.waveform-bar:nth-child(4) { height: 80%; animation-delay: 0.15s; }
.waveform-bar:nth-child(5) { height: 55%; animation-delay: 0.2s; }
.waveform-bar:nth-child(6) { height: 90%; animation-delay: 0.25s; }
.waveform-bar:nth-child(7) { height: 70%; animation-delay: 0.3s; }
.waveform-bar:nth-child(8) { height: 100%; animation-delay: 0.35s; }
.waveform-bar:nth-child(9) { height: 75%; animation-delay: 0.4s; }
.waveform-bar:nth-child(10) { height: 50%; animation-delay: 0.45s; }
.waveform-bar:nth-child(11) { height: 85%; animation-delay: 0.5s; }
.waveform-bar:nth-child(12) { height: 60%; animation-delay: 0.55s; }
.waveform-bar:nth-child(13) { height: 40%; animation-delay: 0.6s; }
.waveform-bar:nth-child(14) { height: 70%; animation-delay: 0.65s; }
.waveform-bar:nth-child(15) { height: 35%; animation-delay: 0.7s; }
.waveform-bar:nth-child(16) { height: 65%; animation-delay: 0.75s; }
.waveform-bar:nth-child(17) { height: 50%; animation-delay: 0.8s; }
.waveform-bar:nth-child(18) { height: 80%; animation-delay: 0.85s; }
.waveform-bar:nth-child(19) { height: 45%; animation-delay: 0.9s; }
.waveform-bar:nth-child(20) { height: 55%; animation-delay: 0.95s; }

@keyframes waveform-dance {
    0% { transform: scaleY(0.5); }
    100% { transform: scaleY(1); }
}

.demo-time {
    color: rgba(245, 243, 239, 0.7);
    font-size: var(--text-caption);
    font-variant-numeric: tabular-nums;
    white-space: nowrap;
    min-width: 90px;
    text-align: right;
}

.integrations {
    text-align: center;
}

.integrations-label {
    font-size: var(--text-body-small);
    color: var(--color-text-muted);
    margin-bottom: var(--space-lg);
}

.integrations-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: var(--space-xl);
}

.integration-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--space-sm) var(--space-md);
    transition: all var(--transition-base);
}

.integration-logo img {
    height: 32px;
    width: auto;
    max-width: 120px;
    object-fit: contain;
    filter: grayscale(100%) opacity(0.5);
    transition: all var(--transition-base);
}

.integration-logo:hover img {
    filter: grayscale(0%) opacity(1);
    transform: scale(1.05);
}

.integration-more {
    padding: var(--space-sm) var(--space-md);
    font-size: var(--text-body-small);
    font-weight: var(--weight-medium);
    color: var(--color-text-muted);
}

/* --------------------------------------------------------------------------
   Section: Proof
   -------------------------------------------------------------------------- */
.proof {
    background: var(--color-sand);
}

.proof-headline {
    text-align: center;
    margin-bottom: var(--space-3xl);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-lg);
    margin-bottom: var(--space-3xl);
}

@media (max-width: 900px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.stat-card {
    text-align: center;
    padding: var(--space-lg);
}

.stat-number {
    display: block;
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: var(--weight-bold);
    line-height: 1;
    margin-bottom: var(--space-sm);
    background: linear-gradient(
        135deg,
        var(--color-anthrazit) 0%,
        var(--color-anthrazit-muted) 100%
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

/* Prismatic shimmer effect on stats */
.stat-number::after {
    content: attr(data-value);
    position: absolute;
    inset: 0;
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(255, 107, 107, 0.6) 15%,
        rgba(255, 193, 107, 0.6) 30%,
        rgba(107, 255, 180, 0.6) 50%,
        rgba(107, 181, 255, 0.6) 70%,
        rgba(181, 107, 255, 0.6) 85%,
        transparent 100%
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% 100%;
    opacity: 0;
    animation: shimmer-reveal 2s ease-out forwards;
    animation-delay: var(--shimmer-delay, 0s);
}

@keyframes shimmer-reveal {
    0% {
        opacity: 0;
        background-position: 100% 0;
    }
    20% {
        opacity: 1;
    }
    80% {
        opacity: 1;
    }
    100% {
        opacity: 0;
        background-position: -100% 0;
    }
}

.stat-card:nth-child(1) .stat-number { --shimmer-delay: 0.2s; }
.stat-card:nth-child(2) .stat-number { --shimmer-delay: 0.4s; }
.stat-card:nth-child(3) .stat-number { --shimmer-delay: 0.6s; }
.stat-card:nth-child(4) .stat-number { --shimmer-delay: 0.8s; }

.stat-label {
    font-size: var(--text-body-small);
    color: var(--color-text-muted);
}

/* Logo Marquee Section */
.logo-marquee-section {
    padding: var(--space-2xl) 0;
    background: white;
    border-bottom: 1px solid var(--color-sand-dark);
    overflow: hidden;
}

.logo-marquee {
    position: relative;
    width: 100%;
    overflow: hidden;
    mask-image: linear-gradient(
        to right,
        transparent 0%,
        black 10%,
        black 90%,
        transparent 100%
    );
    -webkit-mask-image: linear-gradient(
        to right,
        transparent 0%,
        black 10%,
        black 90%,
        transparent 100%
    );
}

.logo-marquee-track {
    display: flex;
    align-items: center;
    gap: var(--space-3xl);
    width: max-content;
    animation: marquee 30s linear infinite;
}

.logo-marquee:hover .logo-marquee-track {
    animation-play-state: paused;
}

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

.customer-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    padding: 0 var(--space-sm);
}

.customer-logo img {
    height: 45px;
    width: auto;
    max-width: 130px;
    object-fit: contain;
    filter: grayscale(100%) opacity(0.4);
    transition: all var(--transition-base);
}

.customer-logo:hover img {
    filter: grayscale(0%) opacity(1);
}

.case-study {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-xl);
    background: white;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

@media (min-width: 900px) {
    .case-study {
        grid-template-columns: 1fr 1fr;
    }
}

.case-study-content {
    padding: var(--space-2xl);
}

.case-study-label {
    font-size: var(--text-overline);
    font-weight: var(--weight-semibold);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--color-text-muted);
    margin-bottom: var(--space-sm);
}

.case-study-title {
    font-size: var(--text-h4);
    margin-bottom: var(--space-xs);
}

.case-study-meta {
    color: var(--color-text-muted);
    font-size: var(--text-body-small);
    margin-bottom: var(--space-lg);
}

.case-study-quote {
    font-size: var(--text-body-large);
    font-style: italic;
    line-height: 1.6;
    margin-bottom: var(--space-lg);
    padding-left: var(--space-md);
    border-left: 3px solid var(--color-anthrazit);
}

.case-study-author {
    display: flex;
    flex-direction: column;
    margin-bottom: var(--space-lg);
}

.case-study-results {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-sm);
}

.result-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-xs);
    padding: var(--space-xs) var(--space-sm);
    background: var(--color-sand);
    border-radius: var(--radius-full);
    font-size: var(--text-caption);
    font-weight: var(--weight-medium);
}

.result-badge::before {
    content: '';
    width: 6px;
    height: 6px;
    background: linear-gradient(135deg, #6BF5B4 0%, #6BB5FF 100%);
    border-radius: 50%;
}

.case-study-visual {
    background: var(--color-sand-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 300px;
    position: relative;
    overflow: hidden;
}

/* Prismatic corner accents on case study image */
.case-study-visual::before,
.case-study-visual::after {
    content: '';
    position: absolute;
    width: 100px;
    height: 100px;
    opacity: 0;
    transition: opacity var(--transition-slow);
    pointer-events: none;
    z-index: 1;
}

.case-study-visual::before {
    top: 0;
    left: 0;
    background: linear-gradient(
        135deg,
        rgba(255, 107, 107, 0.4) 0%,
        rgba(255, 193, 107, 0.3) 30%,
        transparent 70%
    );
}

.case-study-visual::after {
    bottom: 0;
    right: 0;
    background: linear-gradient(
        315deg,
        rgba(107, 181, 255, 0.4) 0%,
        rgba(181, 107, 255, 0.3) 30%,
        transparent 70%
    );
}

.case-study:hover .case-study-visual::before,
.case-study:hover .case-study-visual::after {
    opacity: 1;
}

.case-study-image {
    width: 100%;
    height: 100%;
}

.image-placeholder {
    width: 100%;
    height: 100%;
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-text-muted);
    font-size: var(--text-body-small);
    background: var(--gradient-prismatic);
}

.case-study-img {
    width: 100%;
    height: 100%;
    min-height: 300px;
    object-fit: cover;
    object-position: center top;
}

/* Video Testimonial */
.video-testimonial {
    margin-top: var(--space-3xl);
    text-align: center;
}

.video-testimonial-header {
    margin-bottom: var(--space-lg);
}

.video-testimonial-label {
    font-size: var(--text-overline);
    font-weight: var(--weight-semibold);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--color-text-muted);
    display: block;
    margin-bottom: var(--space-xs);
}

.video-testimonial-title {
    font-size: var(--text-h4);
    font-weight: var(--weight-medium);
}

.video-container {
    max-width: 800px;
    margin: 0 auto;
}

.video-wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    background: var(--color-anthrazit);
}

.video-placeholder {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: opacity 0.3s ease;
}

.video-wrapper.playing .video-placeholder {
    opacity: 0;
    pointer-events: none;
}

.video-thumbnail {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.7);
    transition: filter var(--transition-base), transform var(--transition-slow);
}

.video-placeholder:hover .video-thumbnail {
    filter: brightness(0.5);
    transform: scale(1.05);
}

.video-play-btn {
    position: relative;
    z-index: 2;
    width: 80px;
    height: 80px;
    background: var(--color-sand);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-anthrazit);
    cursor: pointer;
    transition: all var(--transition-base);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.video-play-btn svg {
    width: 28px;
    height: 28px;
    margin-left: 4px;
}

.video-play-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 0 0 8px rgba(245, 243, 239, 0.2),
                0 4px 30px rgba(0, 0, 0, 0.4);
}

/* Prismatic ring on play button */
.video-play-btn::before {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    background: conic-gradient(
        from 0deg,
        rgba(255, 107, 107, 0.6) 0deg,
        rgba(255, 193, 107, 0.6) 72deg,
        rgba(107, 255, 180, 0.5) 144deg,
        rgba(107, 181, 255, 0.6) 216deg,
        rgba(181, 107, 255, 0.6) 288deg,
        rgba(255, 107, 107, 0.6) 360deg
    );
    opacity: 0;
    z-index: -1;
    transition: opacity var(--transition-base);
}

.video-play-btn:hover::before {
    opacity: 1;
    animation: video-btn-spin 4s linear infinite;
}

@keyframes video-btn-spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.video-duration {
    position: absolute;
    bottom: var(--space-md);
    right: var(--space-md);
    padding: var(--space-xs) var(--space-sm);
    background: rgba(26, 26, 26, 0.8);
    color: var(--color-sand);
    font-size: var(--text-caption);
    font-weight: var(--weight-medium);
    border-radius: var(--radius-sm);
    z-index: 2;
}

.video-iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.video-wrapper.playing .video-iframe {
    opacity: 1;
}

/* Trustpilot Reviews Carousel */
.trustpilot-section {
    margin-top: var(--space-2xl);
    text-align: center;
}

.trustpilot-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-md);
    margin-bottom: var(--space-xl);
    flex-wrap: wrap;
}

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

.trustpilot-star-icon {
    width: 24px;
    height: 24px;
    color: #00B67A;
}

.trustpilot-wordmark {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-anthrazit);
    letter-spacing: -0.02em;
}

.trustpilot-rating {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.trustpilot-stars {
    display: flex;
    gap: 2px;
}

.trustpilot-stars .star {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    background: #00B67A;
    color: white;
    font-size: 0.8rem;
}

.trustpilot-stars .star:last-child {
    background: linear-gradient(90deg, #00B67A 40%, #DCDCE6 40%);
}

.trustpilot-score {
    font-size: var(--text-body-small);
    font-weight: var(--weight-medium);
    color: var(--color-anthrazit);
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-md);
    max-width: 1000px;
    margin: 0 auto;
}

.review-card {
    background: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
    text-align: left;
    transition: transform var(--transition-base), box-shadow var(--transition-base);
    display: flex;
    flex-direction: column;
}

.review-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
}

.review-stars {
    color: #00B67A;
    font-size: 1.125rem;
    letter-spacing: 2px;
    margin-bottom: var(--space-sm);
}

.review-title {
    font-size: var(--text-body);
    font-weight: var(--weight-semibold);
    margin-bottom: var(--space-sm);
    color: var(--color-anthrazit);
    line-height: 1.3;
}

.trustpilot-link {
    display: inline-block;
    margin-top: var(--space-lg);
    font-size: var(--text-body-small);
    color: var(--color-text-muted);
    text-decoration: none;
    transition: color var(--transition-base);
}

.trustpilot-link:hover {
    color: var(--color-anthrazit);
}

@media (max-width: 900px) {
    .reviews-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .review-card:last-child {
        display: none;
    }
}

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

    .review-card:nth-child(2),
    .review-card:last-child {
        display: none;
    }
}

/* --------------------------------------------------------------------------
   Section: Plan
   -------------------------------------------------------------------------- */
.plan {
    background: white;
}

.plan .overline,
.plan .section-headline {
    text-align: center;
}

.plan .section-headline {
    margin-bottom: var(--space-3xl);
}

.steps-container {
    position: relative;
    margin-bottom: var(--space-3xl);
}

.steps-line {
    display: none;
    position: absolute;
    top: 40px;
    left: 12.5%;
    right: 12.5%;
    height: 2px;
    background: var(--color-sand-dark);
}

@media (min-width: 900px) {
    .steps-line {
        display: block;
    }
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: var(--space-lg);
}

.step-card {
    text-align: center;
    padding: var(--space-lg);
    background: var(--color-sand);
    border-radius: var(--radius-lg);
    position: relative;
}

.step-card-highlight {
    background: var(--color-anthrazit);
    color: var(--color-sand);
}

.step-number {
    width: 48px;
    height: 48px;
    margin: 0 auto var(--space-md);
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--text-h4);
    font-weight: var(--weight-semibold);
    box-shadow: var(--shadow-md);
    position: relative;
}

/* Prismatic ring animation on step numbers */
.step-number::after {
    content: '';
    position: absolute;
    inset: -3px;
    border-radius: 50%;
    background: conic-gradient(
        from 0deg,
        rgba(255, 107, 107, 0.6) 0deg,
        rgba(255, 193, 107, 0.6) 72deg,
        rgba(107, 255, 180, 0.5) 144deg,
        rgba(107, 181, 255, 0.6) 216deg,
        rgba(181, 107, 255, 0.6) 288deg,
        rgba(255, 107, 107, 0.6) 360deg
    );
    opacity: 0;
    z-index: -1;
    transition: opacity var(--transition-base);
}

.step-card:hover .step-number::after {
    opacity: 1;
    animation: prismatic-ring-spin 4s linear infinite;
}

@keyframes prismatic-ring-spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.step-card-highlight .step-number {
    background: var(--color-sand);
    color: var(--color-anthrazit);
}

.step-title {
    font-size: var(--text-body);
    font-weight: var(--weight-semibold);
    margin-bottom: var(--space-sm);
}

.step-description {
    font-size: var(--text-body-small);
    color: var(--color-text-muted);
    line-height: 1.5;
}

.step-card-highlight .step-description {
    color: rgba(245, 243, 239, 0.7);
}

.objections {
    max-width: var(--container-narrow);
    margin: 0 auto;
}

.objections-title {
    text-align: center;
    font-size: var(--text-h4);
    margin-bottom: var(--space-xl);
}

.objections-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-md);
}

.objection-item {
    padding: var(--space-lg);
    background: var(--color-sand);
    border-radius: var(--radius-md);
}

.objection-question {
    font-weight: var(--weight-semibold);
    font-style: italic;
    margin-bottom: var(--space-sm);
}

.objection-answer {
    color: var(--color-text-muted);
    font-size: var(--text-body-small);
    line-height: 1.6;
}

/* --------------------------------------------------------------------------
   Section: Transformation (Failure vs Success)
   -------------------------------------------------------------------------- */
.transformation-section {
    padding: var(--space-xl) 0;
}

.transformation-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

@media (max-width: 768px) {
    .transformation-split {
        grid-template-columns: 1fr;
    }
}

.transformation-failure {
    background: var(--color-anthrazit);
    color: var(--color-sand);
    padding: var(--space-3xl) var(--space-xl);
}

.transformation-success {
    background: var(--color-sand);
    padding: var(--space-3xl) var(--space-xl);
}

.transformation-side-content {
    max-width: 400px;
    margin-left: auto;
}

.transformation-success .transformation-side-content {
    margin-left: 0;
    margin-right: auto;
}

.transformation-side-title {
    font-size: var(--text-h4);
    margin-bottom: var(--space-xl);
    opacity: 0.7;
}

.transformation-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
}

.transformation-list li {
    display: flex;
    flex-direction: column;
    gap: var(--space-xs);
}

.list-label {
    font-weight: var(--weight-semibold);
    font-size: var(--text-body-large);
}

.list-detail {
    opacity: 0.7;
    font-size: var(--text-body);
}

.transformation-statement {
    background: white;
    padding: var(--space-3xl) var(--space-lg);
    text-align: center;
}

.transformation-statement .transformation-label {
    font-size: var(--text-overline);
    font-weight: var(--weight-semibold);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--color-text-muted);
    margin-bottom: var(--space-md);
}

.transformation-statement .transformation-text {
    font-size: var(--text-h4);
    line-height: 1.5;
    max-width: var(--container-narrow);
    margin: 0 auto;
}

/* --------------------------------------------------------------------------
   Section: Team Strip
   -------------------------------------------------------------------------- */
.team-strip {
    background: var(--color-sand);
    padding: var(--space-3xl) 0;
    border-top: 1px solid rgba(26, 26, 26, 0.06);
}

.team-strip-label {
    text-align: center;
    font-size: var(--text-overline);
    font-weight: var(--weight-medium);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-text-muted);
    margin-bottom: var(--space-xl);
}

.team-strip-row {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: var(--space-2xl);
    flex-wrap: wrap;
}

.team-member {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-xs);
    width: 120px;
    text-align: center;
}

.team-member-photo {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    overflow: hidden;
    background: var(--color-sand-dark);
    box-shadow: 0 2px 8px rgba(26, 26, 26, 0.08);
    transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.team-member-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(20%);
    transition: filter var(--transition-base);
}

.team-member:hover .team-member-photo {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(26, 26, 26, 0.12);
}

.team-member:hover .team-member-photo img {
    filter: grayscale(0%);
}

.team-member-name {
    font-size: var(--text-body-small);
    font-weight: var(--weight-medium);
    color: var(--color-anthrazit);
}

.team-member-role {
    font-size: var(--text-caption);
    color: var(--color-text-muted);
    margin-top: -4px;
}

/* Mobile adjustments */
@media (max-width: 768px) {
    .team-strip {
        padding: var(--space-2xl) 0;
    }

    .team-strip-row {
        gap: var(--space-lg) var(--space-md);
    }

    .team-member {
        width: 100px;
    }

    .team-member-photo {
        width: 72px;
        height: 72px;
    }

    .team-member-name {
        font-size: var(--text-caption);
    }

    .team-member-role {
        font-size: 0.6875rem;
    }
}

@media (max-width: 480px) {
    .team-strip-row {
        gap: var(--space-md) var(--space-sm);
    }

    .team-member {
        width: 90px;
    }

    .team-member-photo {
        width: 64px;
        height: 64px;
    }

    .team-member-role {
        font-size: 0.625rem;
    }
}

/* --------------------------------------------------------------------------
   Section: Final CTA
   -------------------------------------------------------------------------- */
.final-cta {
    position: relative;
    background: var(--color-sand);
    text-align: center;
    overflow: hidden;
}

.cta-bg-effects {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.prismatic-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 400px;
    background: var(--gradient-prismatic-strong);
    filter: blur(100px);
    opacity: 0.4;
}

.final-cta .container {
    position: relative;
    z-index: 1;
}

.cta-headline {
    font-size: var(--text-h2);
    margin-bottom: var(--space-md);
}

.cta-subheadline {
    font-size: var(--text-body-large);
    color: var(--color-text-muted);
    margin-bottom: var(--space-xl);
}

.cta-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-md);
    margin-bottom: var(--space-xl);
}

.cta-secondary-link {
    font-size: var(--text-body);
    color: var(--color-text-muted);
    text-decoration: underline;
    text-underline-offset: 4px;
    transition: color var(--transition-fast);
}

.cta-secondary-link:hover {
    color: var(--color-anthrazit);
}

.cta-trust-elements {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: var(--space-lg);
    margin-bottom: var(--space-xl);
}

.trust-item {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    font-size: var(--text-body-small);
    color: var(--color-text-muted);
}

.trust-item svg {
    width: 20px;
    height: 20px;
    color: #6BF5B4;
    filter: drop-shadow(0 0 0 transparent);
    transition: all var(--transition-base);
}

/* Prismatic glow on trust checkmarks */
.trust-item:hover svg {
    color: #6BB5FF;
    filter: drop-shadow(0 0 6px rgba(107, 181, 255, 0.6))
            drop-shadow(0 0 12px rgba(107, 255, 180, 0.4));
    animation: checkmark-prismatic 2s ease-in-out infinite;
}

@keyframes checkmark-prismatic {
    0%, 100% { color: #6BF5B4; }
    33% { color: #6BB5FF; }
    66% { color: #B56BFF; }
}

.cta-empathy {
    font-style: italic;
    color: var(--color-text-muted);
    max-width: 500px;
    margin: 0 auto;
}

/* --------------------------------------------------------------------------
   Footer
   -------------------------------------------------------------------------- */
.footer {
    background: var(--color-anthrazit);
    color: var(--color-sand);
    padding: var(--space-3xl) 0 var(--space-xl);
}

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

@media (min-width: 768px) {
    .footer-content {
        grid-template-columns: 2fr 3fr;
    }
}

.footer-logo {
    height: 32px;
    width: auto;
    margin-bottom: var(--space-md);
    position: relative;
    transition: filter var(--transition-base);
}

/* Prismatic shimmer on footer logo hover */
.footer-brand:hover .footer-logo {
    filter: drop-shadow(0 0 8px rgba(255, 107, 107, 0.4))
            drop-shadow(0 0 16px rgba(107, 181, 255, 0.3))
            drop-shadow(0 0 24px rgba(181, 107, 255, 0.2));
    animation: footer-logo-shimmer 2s ease-in-out infinite;
}

@keyframes footer-logo-shimmer {
    0%, 100% {
        filter: drop-shadow(0 0 8px rgba(255, 107, 107, 0.4))
                drop-shadow(0 0 16px rgba(107, 181, 255, 0.3))
                drop-shadow(0 0 24px rgba(181, 107, 255, 0.2));
    }
    33% {
        filter: drop-shadow(0 0 8px rgba(107, 255, 180, 0.4))
                drop-shadow(0 0 16px rgba(255, 193, 107, 0.3))
                drop-shadow(0 0 24px rgba(107, 181, 255, 0.2));
    }
    66% {
        filter: drop-shadow(0 0 8px rgba(107, 181, 255, 0.4))
                drop-shadow(0 0 16px rgba(181, 107, 255, 0.3))
                drop-shadow(0 0 24px rgba(255, 107, 107, 0.2));
    }
}

.footer-tagline {
    color: rgba(245, 243, 239, 0.7);
    font-size: var(--text-body-small);
    max-width: 300px;
}

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

.footer-column h4 {
    font-size: var(--text-body-small);
    font-weight: var(--weight-semibold);
    margin-bottom: var(--space-md);
    color: rgba(245, 243, 239, 0.5);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.footer-column a {
    display: block;
    font-size: var(--text-body-small);
    color: rgba(245, 243, 239, 0.7);
    padding: var(--space-xs) 0;
    transition: color var(--transition-fast);
}

.footer-column a:hover {
    color: var(--color-sand);
}

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

.footer-bottom p {
    font-size: var(--text-caption);
    color: rgba(245, 243, 239, 0.5);
}

/* --------------------------------------------------------------------------
   Section: FAQ
   -------------------------------------------------------------------------- */
.faq {
    background: var(--color-sand);
}

.faq-headline {
    text-align: center;
    margin-bottom: var(--space-3xl);
}

.faq .overline {
    text-align: center;
}

.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.faq-item {
    background: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: box-shadow var(--transition-base);
}

.faq-item:hover {
    box-shadow: var(--shadow-md);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-md);
    padding: var(--space-lg);
    background: transparent;
    border: none;
    text-align: left;
    font-size: var(--text-body);
    font-weight: var(--weight-medium);
    color: var(--color-anthrazit);
    cursor: pointer;
    transition: background var(--transition-base);
}

.faq-question:hover {
    background: var(--color-sand);
}

.faq-question span {
    flex: 1;
}

.faq-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    color: var(--color-text-muted);
    transition: all var(--transition-base);
}

/* Rotate plus to minus when open */
.faq-item.active .faq-icon {
    transform: rotate(45deg);
    color: var(--color-anthrazit);
}

/* Prismatic accent on active item */
.faq-item.active {
    position: relative;
}

.faq-item.active::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(
        180deg,
        rgba(255, 107, 107, 0.8) 0%,
        rgba(255, 193, 107, 0.8) 25%,
        rgba(107, 255, 180, 0.7) 50%,
        rgba(107, 181, 255, 0.8) 75%,
        rgba(181, 107, 255, 0.8) 100%
    );
    border-radius: var(--radius-lg) 0 0 var(--radius-lg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-item.active .faq-answer {
    max-height: 300px;
}

.faq-answer p {
    padding: 0 var(--space-lg) var(--space-lg);
    color: var(--color-text-muted);
    line-height: 1.7;
}

/* --------------------------------------------------------------------------
   Toast Notifications
   -------------------------------------------------------------------------- */
.toast-container {
    position: fixed;
    bottom: var(--space-lg);
    left: var(--space-lg);
    z-index: 950;
    pointer-events: none;
}

.toast {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    padding: var(--space-md) var(--space-lg);
    background: white;
    border-radius: var(--radius-lg);
    box-shadow: 0 4px 20px rgba(26, 26, 26, 0.15),
                0 0 0 1px rgba(26, 26, 26, 0.05);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px) scale(0.95);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: auto;
    max-width: 340px;
}

.toast.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

/* Prismatic left border */
.toast::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(
        180deg,
        rgba(107, 255, 180, 0.8) 0%,
        rgba(107, 181, 255, 0.8) 50%,
        rgba(181, 107, 255, 0.8) 100%
    );
    border-radius: var(--radius-lg) 0 0 var(--radius-lg);
}

.toast-icon {
    width: 36px;
    height: 36px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(107, 255, 180, 0.15) 0%, rgba(107, 181, 255, 0.15) 100%);
    border-radius: 50%;
    color: #6BF5B4;
}

.toast-icon svg {
    width: 18px;
    height: 18px;
}

.toast-content {
    flex: 1;
    min-width: 0;
}

.toast-message {
    font-size: var(--text-body-small);
    font-weight: var(--weight-medium);
    color: var(--color-anthrazit);
    margin: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.toast-time {
    font-size: var(--text-caption);
    color: var(--color-text-muted);
    margin: 0;
}

.toast-close {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: none;
    color: var(--color-text-muted);
    cursor: pointer;
    border-radius: var(--radius-sm);
    transition: all var(--transition-fast);
}

.toast-close:hover {
    background: var(--color-sand);
    color: var(--color-anthrazit);
}

.toast-close svg {
    width: 14px;
    height: 14px;
}

/* Mobile positioning */
@media (max-width: 480px) {
    .toast-container {
        left: var(--space-md);
        right: var(--space-md);
        bottom: calc(var(--space-md) + 70px); /* Above sticky CTA */
    }

    .toast {
        max-width: 100%;
    }
}

/* --------------------------------------------------------------------------
   Sticky CTA
   -------------------------------------------------------------------------- */
.sticky-cta {
    position: fixed;
    bottom: var(--space-lg);
    right: var(--space-lg);
    z-index: 900;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px) scale(0.9);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.sticky-cta.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.sticky-cta-btn {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-md) var(--space-lg);
    background: var(--color-anthrazit);
    color: var(--color-sand);
    border-radius: var(--radius-full);
    font-weight: var(--weight-medium);
    font-size: var(--text-body);
    box-shadow: 0 4px 20px rgba(26, 26, 26, 0.3),
                0 0 0 0 rgba(107, 181, 255, 0);
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
}

/* Prismatic glow on hover */
.sticky-cta-btn::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(
        90deg,
        rgba(255, 107, 107, 0.5) 0%,
        rgba(255, 193, 107, 0.5) 25%,
        rgba(107, 255, 180, 0.5) 50%,
        rgba(107, 181, 255, 0.5) 75%,
        rgba(181, 107, 255, 0.5) 100%
    );
    background-size: 200% 100%;
    border-radius: var(--radius-full);
    opacity: 0;
    z-index: -1;
    filter: blur(8px);
    transition: opacity var(--transition-base);
}

.sticky-cta-btn:hover::before {
    opacity: 1;
    animation: sticky-cta-glow 2s linear infinite;
}

@keyframes sticky-cta-glow {
    0% { background-position: 0% 50%; }
    100% { background-position: 200% 50%; }
}

.sticky-cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(26, 26, 26, 0.4);
}

.sticky-cta-arrow {
    width: 18px;
    height: 18px;
    transition: transform var(--transition-base);
}

.sticky-cta-btn:hover .sticky-cta-arrow {
    transform: translateX(4px);
}

/* Hide on mobile - use full-width version instead */
@media (max-width: 480px) {
    .sticky-cta {
        left: var(--space-md);
        right: var(--space-md);
        bottom: var(--space-md);
    }

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

/* --------------------------------------------------------------------------
   Mobile Navigation
   -------------------------------------------------------------------------- */
.nav-hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 32px;
    height: 32px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 4px;
    z-index: 1001;
}

.hamburger-line {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--color-sand);
    border-radius: 2px;
    transition: all 0.3s ease;
    transform-origin: center;
}

/* Hamburger animation to X */
.nav-hamburger.active .hamburger-line:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.nav-hamburger.active .hamburger-line:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.nav-hamburger.active .hamburger-line:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* Overlay */
.nav-overlay {
    position: fixed;
    inset: 0;
    background: rgba(26, 26, 26, 0.8);
    backdrop-filter: blur(4px);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
}

.nav-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* --------------------------------------------------------------------------
   Responsive Adjustments
   -------------------------------------------------------------------------- */
@media (max-width: 768px) {
    section {
        padding: var(--space-3xl) 0;
    }

    .nav-hamburger {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: var(--color-anthrazit);
        flex-direction: column;
        align-items: flex-start;
        padding: calc(60px + var(--space-xl)) var(--space-xl) var(--space-xl);
        gap: 0;
        transition: right 0.3s ease;
        z-index: 1000;
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.3);
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links a {
        width: 100%;
        padding: var(--space-md) 0;
        font-size: var(--text-body);
        border-bottom: 1px solid rgba(245, 243, 239, 0.1);
    }

    .nav-links .nav-cta {
        margin-top: var(--space-md);
        text-align: center;
        border-bottom: none;
    }

    .hero-ctas {
        flex-direction: column;
    }

    .btn {
        width: 100%;
    }

    .comparison-visual {
        flex-direction: column;
    }

    .comparison-divider {
        width: 100%;
        height: 40px;
    }

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

/* --------------------------------------------------------------------------
   Scroll Animations (Progressive Enhancement)
   -------------------------------------------------------------------------- */
@media (prefers-reduced-motion: no-preference) {
    .pain-card,
    .feature-card,
    .step-card,
    .stat-card {
        opacity: 0;
        transform: translateY(20px);
        transition: opacity 0.6s ease, transform 0.6s ease;
    }

    .pain-card.visible,
    .feature-card.visible,
    .step-card.visible,
    .stat-card.visible {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ==========================================================================
   ABOUT PAGE STYLES
   ========================================================================== */

/* About Hero */
.about-hero {
    padding: 180px 0 100px;
    background: linear-gradient(180deg, var(--midnight) 0%, var(--charcoal) 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.about-hero-headline {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    color: var(--snow);
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.about-hero-subheadline {
    font-size: 1.25rem;
    color: var(--silver);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Founder Story Section */
.founder-story {
    padding: 100px 0;
    background: var(--snow);
}

.story-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 80px;
    align-items: start;
}

.story-main .section-headline {
    color: var(--midnight);
    margin-bottom: 2rem;
}

.story-text {
    color: var(--charcoal);
}

.story-lead {
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--midnight);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.story-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.25rem;
}

.values-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--midnight);
    margin-bottom: 1.5rem;
}

.values-grid {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.value-card {
    background: var(--pearl);
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid rgba(26, 26, 26, 0.08);
    transition: all 0.3s ease;
}

.value-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(26, 26, 26, 0.08);
}

.value-icon {
    width: 40px;
    height: 40px;
    margin-bottom: 1rem;
}

.value-icon svg {
    width: 100%;
    height: 100%;
    stroke: var(--coral);
}

.value-title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--midnight);
    margin-bottom: 0.5rem;
}

.value-description {
    font-size: 0.95rem;
    color: var(--graphite);
    line-height: 1.5;
}

/* Team Section */
.team-section {
    padding: 100px 0;
    background: linear-gradient(180deg, var(--pearl) 0%, var(--snow) 100%);
}

.team-section .section-headline {
    color: var(--midnight);
    text-align: center;
}

.team-section .overline {
    text-align: center;
}

.team-intro {
    font-size: 1.15rem;
    color: var(--graphite);
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3.5rem;
    line-height: 1.6;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.team-card {
    background: var(--snow);
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(26, 26, 26, 0.08);
    transition: all 0.4s ease;
    position: relative;
}

.team-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 16px;
    padding: 2px;
    background: linear-gradient(
        135deg,
        rgba(255, 107, 107, 0.3),
        rgba(78, 205, 196, 0.3),
        rgba(69, 183, 209, 0.3),
        rgba(255, 230, 109, 0.3)
    );
    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.4s ease;
}

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

.team-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(26, 26, 26, 0.12);
}

.team-card-image {
    aspect-ratio: 1 / 1;
    background: linear-gradient(135deg, var(--pearl) 0%, #e8e8e8 100%);
    position: relative;
    overflow: hidden;
}

.team-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.team-card:hover .team-card-image img {
    transform: scale(1.05);
}

.team-image-placeholder {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(
        135deg,
        rgba(255, 107, 107, 0.05),
        rgba(78, 205, 196, 0.05),
        rgba(69, 183, 209, 0.05)
    );
}

.team-image-placeholder svg {
    width: 60px;
    height: 60px;
    stroke: var(--silver);
    stroke-width: 1;
}

.team-card-content {
    padding: 1.5rem;
    text-align: center;
}

.team-name {
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--midnight);
    margin-bottom: 0.25rem;
}

.team-role {
    font-size: 0.9rem;
    color: var(--coral);
    font-weight: 500;
    margin-bottom: 0.75rem;
}

.team-fun-fact {
    font-size: 0.9rem;
    color: var(--graphite);
    font-style: italic;
    line-height: 1.5;
}

/* About CTA Section */
.about-cta {
    padding: 100px 0;
    background: linear-gradient(180deg, var(--midnight) 0%, var(--charcoal) 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.about-cta .cta-headline {
    margin-bottom: 1rem;
}

.about-cta .cta-subheadline {
    margin-bottom: 2.5rem;
}

.about-cta .cta-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

/* Active nav link styling */
.nav-links a.active {
    color: var(--coral);
}

/* About page responsive styles */
@media (max-width: 992px) {
    .story-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

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

@media (max-width: 576px) {
    .about-hero {
        padding: 140px 0 80px;
    }

    .about-hero-subheadline {
        font-size: 1.1rem;
    }

    .founder-story {
        padding: 60px 0;
    }

    .team-section {
        padding: 60px 0;
    }

    .team-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }

    .about-cta {
        padding: 60px 0;
    }

    .values-grid {
        gap: 1rem;
    }

    .value-card {
        padding: 1.25rem;
    }
}
