/* ============================================
   VibeCodeDoktor - Dark Tech Medical Theme
   Full Dark Mode Redesign for Visual Cohesion
   ============================================ */

/* --- CSS Variables --- */
:root {
    /* Primary Colors - Cyan/Teal Tech */
    --color-primary: #0ea5e9;
    --color-primary-dark: #0c1929;
    --color-primary-light: #38bdf8;
    --color-primary-darker: #0369a1;

    /* Accent Colors - Magenta/Pink Pulse */
    --color-accent: #ec4899;
    --color-accent-light: #f472b6;
    --color-accent-dark: #be185d;

    /* Status Colors */
    --color-warning: #fbbf24;
    --color-error: #f43f5e;
    --color-success: #22c55e;

    /* Dark Theme Colors */
    --color-white: #ffffff;
    --color-bg: #0a0f1a;
    --color-bg-alt: #0f172a;
    --color-bg-elevated: #1e293b;
    --color-bg-card: #151d2e;
    --color-bg-dark: #0f172a;
    --color-bg-darker: #020617;
    --color-text: #f1f5f9;
    --color-text-secondary: #94a3b8;
    --color-text-light: #64748b;
    --color-text-muted: #475569;
    --color-border: #1e293b;
    --color-border-light: #334155;

    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #0ea5e9 0%, #06b6d4 50%, #0ea5e9 100%);
    --gradient-accent: linear-gradient(135deg, #ec4899 0%, #f472b6 50%, #ec4899 100%);
    --gradient-dark: linear-gradient(180deg, #0a0f1a 0%, #0f172a 100%);
    --gradient-surface: linear-gradient(180deg, #151d2e 0%, #0f172a 100%);
    --gradient-glow-cyan: 0 0 30px rgba(14, 165, 233, 0.4);
    --gradient-glow-magenta: 0 0 30px rgba(236, 72, 153, 0.4);

    /* Typography */
    --font-display: 'Instrument Serif', Georgia, serif;
    --font-body: 'IBM Plex Sans', -apple-system, BlinkMacSystemFont, sans-serif;

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

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

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

    /* Shadows - Dark Theme */
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.4), 0 2px 4px -1px rgba(0, 0, 0, 0.3);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.5), 0 4px 6px -2px rgba(0, 0, 0, 0.4);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.5), 0 10px 10px -5px rgba(0, 0, 0, 0.4);
    --shadow-glow-cyan: 0 0 40px rgba(14, 165, 233, 0.2), 0 0 80px rgba(14, 165, 233, 0.1);
    --shadow-glow-magenta: 0 0 40px rgba(236, 72, 153, 0.2), 0 0 80px rgba(236, 72, 153, 0.1);

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

/* --- Reset & Base --- */
*, *::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-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--color-text);
    background-color: var(--color-bg);
    background-image:
        radial-gradient(ellipse at 20% 0%, rgba(14, 165, 233, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 100%, rgba(236, 72, 153, 0.06) 0%, transparent 50%);
    min-height: 100vh;
}

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

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

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

input, textarea, select {
    font-family: inherit;
    font-size: inherit;
}

/* --- Typography --- */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 400;
    line-height: 1.2;
    color: var(--color-text);
}

h1 { font-size: clamp(2.5rem, 5vw, 4rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2rem); }
h4 { font-size: clamp(1.25rem, 2vw, 1.5rem); }

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

strong {
    font-weight: 600;
}

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

/* --- Section Header --- */
.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto var(--space-3xl);
}

.section-header--left {
    text-align: left;
    margin-left: 0;
}

.section-header--light {
    color: var(--color-white);
}

.section-header--light .section-header__subtitle {
    color: rgba(255, 255, 255, 0.8);
}

.section-header__label {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-primary-light);
    margin-bottom: var(--space-sm);
    text-shadow: 0 0 20px rgba(14, 165, 233, 0.5);
}

.section-header--light .section-header__label {
    color: var(--color-accent-light);
}

.section-header__title {
    margin-bottom: var(--space-md);
    color: var(--color-text);
}

.section-header__subtitle {
    color: var(--color-text-secondary);
    font-size: 1.125rem;
}

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    padding: var(--space-sm) var(--space-lg);
    font-size: 0.9375rem;
    font-weight: 500;
    border-radius: var(--radius-md);
    transition: all var(--transition-base);
    white-space: nowrap;
}

.btn--primary {
    background: var(--gradient-primary);
    color: var(--color-white);
    box-shadow: var(--shadow-glow-cyan);
}

.btn--primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 50px rgba(14, 165, 233, 0.4), 0 0 100px rgba(14, 165, 233, 0.2);
}

.btn--outline {
    border: 2px solid var(--color-border-light);
    color: var(--color-text);
    background: transparent;
}

.btn--outline:hover {
    border-color: var(--color-primary);
    color: var(--color-primary-light);
    box-shadow: var(--shadow-glow-cyan);
}

.btn--ghost {
    color: var(--color-text-secondary);
    background: transparent;
}

.btn--ghost:hover {
    background: var(--color-bg-elevated);
    color: var(--color-text);
}

.btn--github {
    background: #24292e;
    color: var(--color-white);
    border: 1px solid var(--color-border-light);
}

.btn--github:hover {
    background: #1b1f23;
    border-color: var(--color-border-light);
}

.btn--large {
    padding: var(--space-md) var(--space-xl);
    font-size: 1rem;
}

.btn__icon {
    width: 18px;
    height: 18px;
}

/* --- Navigation --- */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(10, 15, 26, 0.9);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(30, 41, 59, 0.8);
    transition: all var(--transition-base);
}

.nav--scrolled {
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

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

.nav__logo {
    display: flex;
    align-items: center;
}

.nav__logo-text {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--color-text);
    letter-spacing: -0.02em;
}

.nav__logo-code {
    color: var(--color-primary-light);
}

.nav__logo-doctor {
    color: var(--color-accent);
    font-style: italic;
    font-family: var(--font-display);
    margin-left: 0.1em;
}

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

.nav__link {
    font-size: 0.9375rem;
    color: var(--color-text-secondary);
    transition: all var(--transition-fast);
    position: relative;
}

.nav__link:hover,
.nav__link--active {
    color: var(--color-primary-light);
    text-shadow: 0 0 20px rgba(14, 165, 233, 0.5);
}

.nav__link--active {
    font-weight: 500;
}

.nav__lang {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--color-text-secondary);
    padding: var(--space-xs) var(--space-sm);
    border-radius: var(--radius-sm);
    transition: all var(--transition-fast);
}

.nav__lang:hover {
    background: var(--color-bg-elevated);
}

.nav__lang-current {
    color: var(--color-text);
}

.nav__lang-divider {
    opacity: 0.3;
}

.nav__cta {
    background: var(--gradient-accent);
    color: var(--color-white);
    padding: var(--space-sm) var(--space-md);
    border-radius: var(--radius-md);
    font-size: 0.875rem;
    font-weight: 500;
    transition: all var(--transition-base);
    box-shadow: var(--shadow-glow-magenta);
}

.nav__cta:hover {
    transform: translateY(-1px);
    box-shadow: 0 0 40px rgba(236, 72, 153, 0.4);
}

.nav__toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: var(--space-sm);
}

.nav__toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--color-text);
    transition: all var(--transition-fast);
}

/* Mobile Navigation */
@media (max-width: 900px) {
    .nav__toggle {
        display: flex;
    }

    .nav__menu {
        position: fixed;
        top: 60px;
        left: 0;
        right: 0;
        bottom: 0;
        background: var(--color-bg);
        flex-direction: column;
        justify-content: flex-start;
        padding: var(--space-xl);
        gap: var(--space-lg);
        transform: translateX(100%);
        transition: transform var(--transition-base);
    }

    .nav__menu.is-active {
        transform: translateX(0);
    }

    .nav__link {
        font-size: 1.125rem;
    }

    .nav__toggle.is-active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .nav__toggle.is-active span:nth-child(2) {
        opacity: 0;
    }

    .nav__toggle.is-active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }
}

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

.hero__bg {
    position: absolute;
    inset: 0;
    z-index: -1;
}

.hero__grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(14, 165, 233, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(14, 165, 233, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
}

/* Hide old pulse - replaced by hero__chat-line */
.hero__pulse {
    display: none;
}

.hero__container {
    max-width: var(--container-max);
    margin: 0 auto;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3xl);
    align-items: center;
}

.hero__badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-xs) var(--space-md);
    background: var(--color-bg-elevated);
    border: 1px solid var(--color-border-light);
    border-radius: var(--radius-full);
    font-size: 0.8125rem;
    color: var(--color-text-secondary);
    margin-bottom: var(--space-lg);
    animation: fadeInUp 0.6s ease;
}

.hero__badge-dot {
    width: 8px;
    height: 8px;
    background: var(--color-accent);
    border-radius: 50%;
    animation: dot-pulse 2s ease-in-out infinite;
    box-shadow: 0 0 10px var(--color-accent);
}

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

.hero__title {
    margin-bottom: var(--space-lg);
    animation: fadeInUp 0.6s ease 0.1s backwards;
}

.hero__title-line {
    display: block;
}

.hero__title-line--accent {
    color: var(--color-primary-light);
    font-style: italic;
    text-shadow: 0 0 40px rgba(14, 165, 233, 0.4);
}

.hero__subtitle {
    font-size: 1.125rem;
    color: var(--color-text-secondary);
    max-width: 540px;
    margin-bottom: var(--space-xl);
    animation: fadeInUp 0.6s ease 0.2s backwards;
}

.hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-md);
    margin-bottom: var(--space-3xl);
    animation: fadeInUp 0.6s ease 0.3s backwards;
}

.hero__stats {
    display: flex;
    gap: var(--space-2xl);
    animation: fadeInUp 0.6s ease 0.4s backwards;
}

.hero__stat {
    display: flex;
    flex-direction: column;
}

.hero__stat-value {
    font-family: var(--font-display);
    font-size: 2rem;
    color: var(--color-primary-light);
    text-shadow: 0 0 30px rgba(14, 165, 233, 0.4);
}

.hero__stat-label {
    font-size: 0.8125rem;
    color: var(--color-text-secondary);
}

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

/* Highlight marker effect */
.highlight {
    background: linear-gradient(180deg, transparent 50%, rgba(251, 191, 36, 0.3) 50%);
    color: inherit;
    padding: 0 0.1em;
}

/* Chat Window - Frustrating AI Loop */
.hero__chat {
    position: relative;
    animation: fadeInUp 0.6s ease 0.5s backwards;
    margin-top: var(--space-lg);
}

/* Connecting line from problem box to chat window */
.hero__chat-line {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 3px;
    height: 20px;
    background: linear-gradient(180deg,
        rgba(244, 63, 94, 0.8) 0%,
        rgba(239, 68, 68, 1) 50%,
        rgba(239, 68, 68, 0.8) 100%);
    box-shadow: 0 0 15px rgba(239, 68, 68, 0.6), 0 0 30px rgba(239, 68, 68, 0.3);
    animation: pulse-line 2s ease-in-out infinite;
    border-radius: 2px;
}

@keyframes pulse-line {
    0%, 100% { opacity: 0.7; box-shadow: 0 0 15px rgba(239, 68, 68, 0.4); }
    50% { opacity: 1; box-shadow: 0 0 25px rgba(239, 68, 68, 0.8), 0 0 50px rgba(239, 68, 68, 0.4); }
}

.chat-window {
    background: linear-gradient(180deg, #1a1a2e 0%, #16162a 100%);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl), 0 0 40px rgba(239, 68, 68, 0.15);
    overflow: hidden;
    width: 380px;
    margin-left: auto;
    border: 1px solid rgba(239, 68, 68, 0.3);
}

.chat-window__header {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-sm) var(--space-md);
    background: rgba(0, 0, 0, 0.4);
    border-bottom: 1px solid rgba(239, 68, 68, 0.2);
}

.chat-window__avatar {
    width: 28px;
    height: 28px;
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.chat-window__avatar svg {
    width: 16px;
    height: 16px;
    color: white;
}

.chat-window__title {
    font-size: 0.875rem;
    font-weight: 500;
    color: #e2e8f0;
}

.chat-window__body {
    padding: var(--space-md);
    height: 180px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    gap: var(--space-sm);
}

.chat-msg {
    max-width: 85%;
    animation: fadeIn 0.3s ease;
    transition: opacity 0.2s, transform 0.2s;
}

.chat-msg--ai {
    align-self: flex-start;
}

.chat-msg--user {
    align-self: flex-end;
}

.chat-msg__text {
    display: block;
    padding: var(--space-sm) var(--space-md);
    border-radius: var(--radius-md);
    font-size: 0.8125rem;
    line-height: 1.5;
}

.chat-msg--ai .chat-msg__text {
    background: rgba(99, 102, 241, 0.15);
    color: #c7d2fe;
    border: 1px solid rgba(99, 102, 241, 0.3);
}

.chat-msg--user .chat-msg__text {
    background: rgba(239, 68, 68, 0.15);
    color: #fca5a5;
    border: 1px solid rgba(239, 68, 68, 0.3);
}

.chat-msg--typing .chat-msg__dots {
    display: inline-flex;
    gap: 2px;
    margin-left: 4px;
}

.chat-msg--typing .chat-msg__dots span {
    animation: dotPulse 1.4s infinite;
}

.chat-msg--typing .chat-msg__dots span:nth-child(2) {
    animation-delay: 0.2s;
}

.chat-msg--typing .chat-msg__dots span:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes dotPulse {
    0%, 60%, 100% { opacity: 0.3; }
    30% { opacity: 1; }
}

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

/* Hero Mobile */
@media (max-width: 900px) {
    .hero {
        min-height: auto;
        padding-top: calc(100px + var(--space-2xl));
    }

    .hero__container {
        grid-template-columns: 1fr;
        gap: var(--space-2xl);
    }

    .hero__stats {
        gap: var(--space-lg);
    }

    .hero__stat-value {
        font-size: 1.5rem;
    }

    .chat-window {
        width: 100%;
        max-width: 100%;
    }
}

/* --- Services Section --- */
.services {
    padding: var(--space-4xl) var(--space-lg);
    background: var(--color-bg-alt);
    position: relative;
}

.services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(14, 165, 233, 0.3), transparent);
}

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

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

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

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

/* Service Card */
.service-card {
    position: relative;
    background: var(--color-bg-card);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    border: 1px solid var(--color-border);
    transition: all var(--transition-base);
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--color-border-light);
}

.service-card--featured {
    border-color: var(--color-accent);
    box-shadow: 0 0 40px rgba(236, 72, 153, 0.15);
}

.service-card--featured:hover {
    box-shadow: 0 0 60px rgba(236, 72, 153, 0.25);
}

.service-card--free {
    background: linear-gradient(135deg, rgba(14, 165, 233, 0.1) 0%, rgba(6, 182, 212, 0.05) 100%);
    border-color: var(--color-primary);
}

.service-card__badge {
    position: absolute;
    top: var(--space-md);
    right: var(--space-md);
    font-size: 0.625rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--color-accent-light);
    background: rgba(236, 72, 153, 0.15);
    padding: var(--space-xs) var(--space-sm);
    border-radius: var(--radius-sm);
}

.service-card__popular {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-accent);
    color: var(--color-white);
    font-size: 0.6875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: var(--space-xs) var(--space-md);
    border-radius: var(--radius-full);
    box-shadow: 0 2px 20px rgba(236, 72, 153, 0.4);
}

.service-card__icon {
    width: 48px;
    height: 48px;
    color: var(--color-primary-light);
    margin-bottom: var(--space-md);
}

.service-card__title {
    font-family: var(--font-body);
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: var(--space-sm);
    color: var(--color-text);
}

.service-card__price {
    display: flex;
    align-items: baseline;
    gap: var(--space-xs);
    margin-bottom: var(--space-md);
}

.service-card__price-currency {
    font-size: 0.875rem;
    color: var(--color-text-secondary);
}

.service-card__price-value {
    font-family: var(--font-display);
    font-size: 1.75rem;
    color: var(--color-primary-light);
    text-shadow: 0 0 20px rgba(14, 165, 233, 0.4);
}

.service-card__price-unit {
    font-size: 0.875rem;
    color: var(--color-text-secondary);
}

.service-card__desc {
    font-size: 0.9375rem;
    color: var(--color-text-secondary);
    margin-bottom: var(--space-lg);
    flex-grow: 1;
}

.service-card__features {
    list-style: none;
    margin-bottom: var(--space-lg);
}

.service-card__features li {
    position: relative;
    padding-left: var(--space-lg);
    font-size: 0.875rem;
    color: var(--color-text-secondary);
    margin-bottom: var(--space-sm);
}

.service-card__features li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 6px;
    width: 8px;
    height: 8px;
    border-radius: 2px;
    background: var(--color-accent);
    transform: rotate(45deg);
    box-shadow: 0 0 8px var(--color-accent);
}

.service-card__btn {
    width: 100%;
    margin-bottom: var(--space-sm);
}

.service-card__limit {
    font-size: 0.75rem;
    color: var(--color-text-light);
    text-align: center;
}

/* --- How It Works Section --- */
.how-it-works {
    position: relative;
    padding: var(--space-4xl) var(--space-lg);
    background: var(--color-bg);
    overflow: hidden;
}

.how-it-works::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(236, 72, 153, 0.3), transparent);
}

.how-it-works__container {
    max-width: var(--container-max);
    margin: 0 auto;
}

.how-it-works__pulse {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60px;
    opacity: 0.4;
}

.pulse-line {
    stroke: var(--color-accent);
    stroke-dasharray: 400;
    stroke-dashoffset: 400;
    animation: pulse-draw 3s ease-in-out infinite;
}

@keyframes pulse-draw {
    0% { stroke-dashoffset: 400; }
    50% { stroke-dashoffset: 0; }
    100% { stroke-dashoffset: -400; }
}

.steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-lg);
    position: relative;
}

.steps--four {
    grid-template-columns: repeat(4, 1fr);
}

@media (max-width: 900px) {
    .steps, .steps--four {
        grid-template-columns: 1fr;
        gap: var(--space-xl);
    }
}

.step {
    position: relative;
    text-align: center;
}

.step__number {
    font-family: var(--font-display);
    font-size: 3rem;
    color: rgba(14, 165, 233, 0.15);
    margin-bottom: var(--space-md);
    text-shadow: 0 0 40px rgba(14, 165, 233, 0.2);
}

.step__content {
    position: relative;
}

.step__icon {
    width: 64px;
    height: 64px;
    margin: 0 auto var(--space-md);
    padding: var(--space-md);
    background: var(--color-bg-elevated);
    border: 1px solid var(--color-border-light);
    border-radius: var(--radius-lg);
    color: var(--color-accent-light);
    transition: all var(--transition-base);
}

.step:hover .step__icon {
    border-color: var(--color-accent);
    box-shadow: 0 0 30px rgba(236, 72, 153, 0.2);
}

.step__title {
    font-family: var(--font-body);
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: var(--space-sm);
    color: var(--color-text);
}

.step__desc {
    font-size: 0.9375rem;
    color: var(--color-text-secondary);
    margin-bottom: 0;
}

.step__connector {
    display: none;
}

@media (min-width: 901px) {
    .step:not(:last-child) .step__connector {
        display: block;
        position: absolute;
        top: 5rem;
        right: -30%;
        width: 60%;
        height: 2px;
        background: linear-gradient(90deg, rgba(14, 165, 233, 0.3), transparent);
    }
}

/* --- About Section --- */
.about {
    padding: var(--space-4xl) var(--space-lg);
    background: var(--color-bg-alt);
    position: relative;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(14, 165, 233, 0.3), transparent);
}

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

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

.about__photo {
    position: relative;
}

.about__img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    border: 2px solid var(--color-border-light);
}

.about__photo::after {
    content: '';
    position: absolute;
    inset: var(--space-md);
    border: 2px solid var(--color-primary);
    border-radius: var(--radius-lg);
    z-index: -1;
    box-shadow: var(--shadow-glow-cyan);
}

.about__text {
    max-width: 640px;
}

.about__title {
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    color: var(--color-text);
    margin: var(--space-sm) 0 var(--space-lg);
    line-height: 1.2;
}

.about__title span {
    color: var(--color-text-secondary);
    font-weight: 400;
}

.about__intro {
    font-size: 1.125rem;
    line-height: 1.7;
    color: var(--color-text);
    margin-bottom: var(--space-md);
}

.about__story {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--color-text-secondary);
    margin-bottom: var(--space-md);
}

.about__ai {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--color-text-secondary);
    margin-bottom: var(--space-xl);
}

.about__stats {
    display: flex;
    gap: var(--space-xl);
}

.about__stat {
    text-align: center;
}

.about__stat-value {
    display: block;
    font-family: var(--font-display);
    font-size: 1.75rem;
    color: var(--color-primary-light);
    font-weight: 600;
    text-shadow: 0 0 20px rgba(14, 165, 233, 0.4);
}

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

@media (max-width: 768px) {
    .about__content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .about__photo {
        max-width: 200px;
        margin: 0 auto;
    }

    .about__text {
        max-width: 100%;
    }

    .about__stats {
        justify-content: center;
    }
}

/* --- Trust Section --- */
.trust {
    padding: var(--space-4xl) var(--space-lg);
    background: var(--color-bg);
    position: relative;
}

.trust::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(236, 72, 153, 0.3), transparent);
}

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

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

.trust__stat {
    text-align: center;
    padding: var(--space-xl);
    background: var(--color-bg-card);
    border-radius: var(--radius-lg);
    border: 1px solid var(--color-border);
    transition: all var(--transition-base);
}

.trust__stat:hover {
    border-color: var(--color-border-light);
    box-shadow: var(--shadow-md);
}

.trust__stat-value {
    display: block;
    font-family: var(--font-display);
    font-size: 2.5rem;
    color: var(--color-primary-light);
    margin-bottom: var(--space-xs);
    text-shadow: 0 0 30px rgba(14, 165, 233, 0.4);
}

.trust__stat-label {
    font-size: 0.9375rem;
    color: var(--color-text-secondary);
}

@media (max-width: 768px) {
    .trust__stats {
        grid-template-columns: 1fr;
        gap: var(--space-md);
    }

    .trust__stat {
        padding: var(--space-lg);
    }

    .trust__stat-value {
        font-size: 2rem;
    }
}

/* Trust Problems */
.trust__problems {
    margin-bottom: var(--space-3xl);
}

.trust__problems-title {
    font-family: var(--font-body);
    font-size: 1.25rem;
    font-weight: 600;
    text-align: center;
    margin-bottom: var(--space-xl);
    color: var(--color-text);
}

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

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

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

.trust__problem-card {
    background: var(--color-bg-card);
    padding: var(--space-lg);
    border-radius: var(--radius-lg);
    text-align: center;
    border: 1px solid var(--color-border);
    transition: all var(--transition-base);
}

.trust__problem-card:hover {
    transform: translateY(-4px);
    border-color: var(--color-border-light);
    box-shadow: var(--shadow-md);
}

.trust__problem-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto var(--space-md);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.trust__problem-icon--security {
    background: rgba(244, 63, 94, 0.15);
    color: var(--color-error);
}

.trust__problem-icon--performance {
    background: rgba(251, 191, 36, 0.15);
    color: var(--color-warning);
}

.trust__problem-icon--bugs {
    background: rgba(236, 72, 153, 0.15);
    color: var(--color-accent);
}

.trust__problem-icon--debt {
    background: rgba(124, 58, 237, 0.15);
    color: #a78bfa;
}

.trust__problem-card h4 {
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: var(--space-sm);
    color: var(--color-text);
}

.trust__problem-card p {
    font-size: 0.875rem;
    color: var(--color-text-secondary);
    margin: 0;
    line-height: 1.5;
}

/* --- What We Check Section --- */
.checks {
    padding: var(--space-4xl) var(--space-lg);
    background: var(--color-bg-alt);
    position: relative;
}

.checks::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(14, 165, 233, 0.3), transparent);
}

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

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

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

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

.checks__card {
    background: var(--color-bg-card);
    padding: var(--space-lg);
    border-radius: var(--radius-lg);
    border: 1px solid var(--color-border);
    transition: all var(--transition-base);
    position: relative;
}

.checks__card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--color-border-light);
}

.checks__icon {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--space-md);
}

.checks__icon svg {
    width: 24px;
    height: 24px;
}

.checks__icon--security {
    background: rgba(220, 38, 38, 0.15);
    color: #ef4444;
}

.checks__icon--tests {
    background: rgba(5, 150, 105, 0.15);
    color: #22c55e;
}

.checks__icon--complexity {
    background: rgba(217, 119, 6, 0.15);
    color: #fbbf24;
}

.checks__icon--deadcode {
    background: rgba(79, 70, 229, 0.15);
    color: #818cf8;
}

.checks__icon--guidelines {
    background: rgba(14, 165, 233, 0.15);
    color: #38bdf8;
}

.checks__icon--docs {
    background: rgba(124, 58, 237, 0.15);
    color: #a78bfa;
}

.checks__icon--versioning {
    background: rgba(236, 72, 153, 0.15);
    color: #f472b6;
}

.checks__icon--simplicity {
    background: rgba(13, 148, 136, 0.15);
    color: #2dd4bf;
}

.checks__card h4 {
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-text);
    margin-bottom: var(--space-xs);
}

.checks__card p {
    font-size: 0.875rem;
    color: var(--color-text-secondary);
    line-height: 1.5;
    margin-bottom: var(--space-md);
}

.checks__badge {
    display: inline-block;
    font-size: 0.6875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: var(--space-xs) var(--space-sm);
    border-radius: var(--radius-sm);
    background: var(--color-bg-elevated);
    color: var(--color-text-secondary);
    border: 1px solid var(--color-border);
}

.checks__badge--critical {
    background: rgba(220, 38, 38, 0.15);
    color: #ef4444;
    border-color: rgba(220, 38, 38, 0.3);
}

.checks__cta {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.checks__cta-text {
    font-size: 1.125rem;
    color: var(--color-text-secondary);
    margin-bottom: var(--space-lg);
    line-height: 1.6;
}

.checks__cta-highlight {
    display: block;
    margin-top: var(--space-sm);
    font-weight: 600;
    color: var(--color-primary-light);
    font-size: 1.25rem;
    text-shadow: 0 0 20px rgba(14, 165, 233, 0.4);
}

/* --- Expertise Section --- */
.expertise {
    padding: var(--space-4xl) var(--space-lg);
    background: var(--color-bg);
    position: relative;
}

.expertise::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(236, 72, 153, 0.3), transparent);
}

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

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

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

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

.expertise__card {
    text-align: center;
    padding: var(--space-lg);
    border-radius: var(--radius-lg);
    border: 1px solid var(--color-border);
    background: var(--color-bg-card);
    transition: all var(--transition-base);
}

.expertise__card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--color-border-light);
}

.expertise__icon {
    width: 56px;
    height: 56px;
    margin: 0 auto var(--space-md);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
}

.expertise__icon svg {
    width: 28px;
    height: 28px;
}

.expertise__icon--games {
    background: rgba(124, 58, 237, 0.15);
    color: #a78bfa;
}

.expertise__icon--mobile {
    background: rgba(14, 165, 233, 0.15);
    color: #38bdf8;
}

.expertise__icon--web {
    background: rgba(5, 150, 105, 0.15);
    color: #22c55e;
}

.expertise__icon--vr {
    background: rgba(236, 72, 153, 0.15);
    color: #f472b6;
}

.expertise__icon--enterprise {
    background: rgba(217, 119, 6, 0.15);
    color: #fbbf24;
}

.expertise__icon--ai {
    background: rgba(79, 70, 229, 0.15);
    color: #818cf8;
}

.expertise__icon--embedded {
    background: rgba(220, 38, 38, 0.15);
    color: #ef4444;
}

.expertise__icon--scripts {
    background: rgba(13, 148, 136, 0.15);
    color: #2dd4bf;
}

.expertise__card h4 {
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: var(--space-xs);
    color: var(--color-text);
}

.expertise__card p {
    font-size: 0.8125rem;
    color: var(--color-text-secondary);
    margin: 0;
    line-height: 1.4;
}

.expertise__cta {
    text-align: center;
    font-size: 1rem;
    color: var(--color-text-secondary);
    font-style: italic;
    margin: 0;
}

.expertise__cta a {
    color: var(--color-primary-light);
    text-decoration: underline;
}

/* --- Get Diagnosis Section --- */
.get-diagnosis {
    padding: var(--space-4xl) var(--space-lg);
    background: var(--color-bg-alt);
    position: relative;
}

.get-diagnosis::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(14, 165, 233, 0.3), transparent);
}

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

/* Check Form */
.check-form {
    background: var(--color-bg-card);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
    border: 1px solid var(--color-border);
}

/* Price Banner */
.check-form__price-banner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-md);
    padding: var(--space-md) var(--space-lg);
    background: var(--gradient-primary);
    color: var(--color-white);
    border-radius: var(--radius-xl) var(--radius-xl) 0 0;
}

.check-form__price {
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 500;
}

.check-form__price-text {
    font-size: 0.9375rem;
    opacity: 0.9;
}

.check-form__tabs {
    display: flex;
    border-bottom: 1px solid var(--color-border);
}

.check-form__tab {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    padding: var(--space-md);
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--color-text-secondary);
    background: var(--color-bg-elevated);
    border-bottom: 2px solid transparent;
    transition: all var(--transition-fast);
}

.check-form__tab svg {
    width: 20px;
    height: 20px;
}

.check-form__tab:hover {
    color: var(--color-text);
}

.check-form__tab--active {
    background: var(--color-bg-card);
    color: var(--color-primary-light);
    border-bottom-color: var(--color-primary);
}

.check-form__content {
    padding: var(--space-xl);
}

.check-form__panel {
    display: none;
    text-align: center;
}

.check-form__panel--active {
    display: block;
}

.check-form__desc {
    color: var(--color-text-secondary);
    margin-bottom: var(--space-lg);
}

/* Upload Zone */
.upload-zone {
    border: 2px dashed var(--color-border-light);
    border-radius: var(--radius-lg);
    padding: var(--space-3xl) var(--space-xl);
    text-align: center;
    transition: all var(--transition-fast);
    cursor: pointer;
    background: var(--color-bg-elevated);
}

.upload-zone:hover,
.upload-zone.is-dragover {
    border-color: var(--color-primary);
    background: rgba(14, 165, 233, 0.05);
}

.upload-zone__icon {
    width: 64px;
    height: 64px;
    margin: 0 auto var(--space-md);
    color: var(--color-text-light);
}

.upload-zone__text {
    color: var(--color-text-secondary);
    margin-bottom: var(--space-sm);
}

.upload-zone__link {
    color: var(--color-primary-light);
    font-weight: 500;
    cursor: pointer;
}

.upload-zone__link:hover {
    text-decoration: underline;
}

.upload-zone__hint {
    font-size: 0.8125rem;
    color: var(--color-text-light);
}

.check-form__email {
    padding: var(--space-lg) var(--space-xl);
    border-top: 1px solid var(--color-border);
    background: var(--color-bg-elevated);
}

.check-form__email label {
    display: block;
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: var(--space-sm);
    color: var(--color-text);
}

.check-form__email-input {
    display: flex;
    gap: var(--space-sm);
}

.check-form__email-input input {
    flex: 1;
    padding: var(--space-sm) var(--space-md);
    border: 1px solid var(--color-border-light);
    border-radius: var(--radius-md);
    font-size: 1rem;
    background: var(--color-bg-card);
    color: var(--color-text);
}

.check-form__email-input input:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(14, 165, 233, 0.2);
}

.check-form__email-input input::placeholder {
    color: var(--color-text-light);
}

/* Secure Note */
.check-form__secure {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    margin-top: var(--space-md);
    font-size: 0.8125rem;
    color: var(--color-text-light);
}

.check-form__secure svg {
    width: 16px;
    height: 16px;
    color: var(--color-accent);
}

/* --- Contact Section --- */
.contact {
    padding: var(--space-4xl) var(--space-lg);
    background: var(--color-bg);
    position: relative;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(236, 72, 153, 0.3), transparent);
}

.contact__container {
    max-width: var(--container-max);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: var(--space-3xl);
}

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

/* Contact Form */
.contact-form {
    background: var(--color-bg-card);
    padding: var(--space-xl);
    border-radius: var(--radius-lg);
    border: 1px solid var(--color-border);
}

.contact-form__row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-md);
}

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

.contact-form__field {
    margin-bottom: var(--space-md);
}

.contact-form__field label {
    display: block;
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: var(--space-xs);
    color: var(--color-text);
}

.contact-form__field input,
.contact-form__field select,
.contact-form__field textarea {
    width: 100%;
    padding: var(--space-sm) var(--space-md);
    border: 1px solid var(--color-border-light);
    border-radius: var(--radius-md);
    background: var(--color-bg-elevated);
    color: var(--color-text);
    transition: all var(--transition-fast);
}

.contact-form__field input:focus,
.contact-form__field select:focus,
.contact-form__field textarea:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(14, 165, 233, 0.2);
}

.contact-form__field input::placeholder,
.contact-form__field textarea::placeholder {
    color: var(--color-text-light);
}

.contact-form__field textarea {
    resize: vertical;
    min-height: 120px;
}

.contact-form__field select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%2394a3b8'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M19 9l-7 7-7-7'%3E%3C/path%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 16px;
    padding-right: 40px;
}

.contact-form__field select option {
    background: var(--color-bg-card);
    color: var(--color-text);
}

/* Contact Sidebar */
.contact__card {
    background: linear-gradient(135deg, var(--color-bg-card) 0%, var(--color-bg-elevated) 100%);
    border: 1px solid var(--color-border-light);
    color: var(--color-text);
    padding: var(--space-xl);
    border-radius: var(--radius-lg);
    margin-bottom: var(--space-lg);
}

.contact__card h4 {
    font-family: var(--font-body);
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: var(--space-sm);
    color: var(--color-text);
}

.contact__card p {
    font-size: 0.9375rem;
    color: var(--color-text-secondary);
    margin-bottom: var(--space-lg);
}

.btn--calendly {
    width: 100%;
    background: var(--color-bg-elevated);
    color: var(--color-text);
    border: 1px solid var(--color-border-light);
}

.btn--calendly:hover {
    background: var(--color-bg-card);
    border-color: var(--color-primary);
    color: var(--color-primary-light);
}

.btn--calendly svg {
    width: 18px;
    height: 18px;
}

.contact__info {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.contact__info-item {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    color: var(--color-text-secondary);
    font-size: 0.9375rem;
}

.contact__info-item svg {
    width: 20px;
    height: 20px;
    color: var(--color-primary-light);
}

.contact__info-item a:hover {
    color: var(--color-primary-light);
}

/* --- Footer --- */
.footer {
    background: var(--color-bg-darker);
    color: var(--color-text);
    padding-top: var(--space-3xl);
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(14, 165, 233, 0.3), transparent);
}

.footer__container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--space-lg);
    display: grid;
    grid-template-columns: 1fr auto;
    gap: var(--space-3xl);
}

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

.footer__logo {
    display: inline-flex;
    align-items: baseline;
    font-family: var(--font-body);
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: var(--space-md);
}

.footer__logo-bracket {
    color: rgba(255, 255, 255, 0.5);
    font-weight: 400;
}

.footer__logo-text {
    color: var(--color-white);
}

.footer__logo-doctor {
    color: var(--color-accent-light);
    font-style: italic;
    font-family: var(--font-display);
}

.footer__logo-img {
    height: 72px;
    width: auto;
    filter: drop-shadow(0 0 20px rgba(14, 165, 233, 0.3));
}

.footer__tagline {
    color: var(--color-text-secondary);
    font-size: 0.9375rem;
    margin-bottom: 0;
}

.footer__links {
    display: flex;
    gap: var(--space-3xl);
}

@media (max-width: 600px) {
    .footer__links {
        flex-direction: column;
        gap: var(--space-xl);
    }
}

.footer__col h5 {
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-text-muted);
    margin-bottom: var(--space-md);
}

.footer__col a {
    display: block;
    font-size: 0.9375rem;
    color: var(--color-text-secondary);
    margin-bottom: var(--space-sm);
    transition: color var(--transition-fast);
}

.footer__col a:hover {
    color: var(--color-primary-light);
}

.footer__bottom {
    margin-top: var(--space-3xl);
    padding: var(--space-lg) 0;
    border-top: 1px solid var(--color-border);
}

.footer__bottom .footer__container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: var(--space-lg);
}

@media (max-width: 600px) {
    .footer__bottom .footer__container {
        flex-direction: column;
        text-align: center;
    }
}

.footer__copy {
    font-size: 0.8125rem;
    color: var(--color-text-muted);
}

.footer__social {
    display: flex;
    gap: var(--space-md);
}

.footer__social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: var(--radius-md);
    background: var(--color-bg-elevated);
    color: var(--color-text-secondary);
    transition: all var(--transition-fast);
    border: 1px solid var(--color-border);
}

.footer__social a:hover {
    background: var(--color-bg-card);
    color: var(--color-primary-light);
    border-color: var(--color-primary);
}

.footer__social svg {
    width: 18px;
    height: 18px;
}

/* --- Utility Classes --- */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.hidden {
    display: none !important;
}

.legal-meta {
    margin-top: var(--space-3xl);
    font-size: 0.875rem;
    color: var(--color-text-light);
}

/* ============================================
   REDESIGNED SECTIONS - Story-Driven Hero
   ============================================ */

/* --- Story-Driven Hero --- */
.hero__container--story {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: var(--space-2xl);
    align-items: flex-start;
}

.hero__story {
    animation: fadeInUp 0.6s ease;
}

.hero__right {
    animation: fadeInUp 0.6s ease 0.2s backwards;
}

/* Solution Row - side by side */
.hero__solution-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-md);
    margin-top: var(--space-xl);
}

.hero__solution-row .hero__solution {
    padding-top: 0;
}

.hero__solution-row .hero__coaching {
    margin-top: 0;
}

/* Personal Introduction */
.hero__intro {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    margin-bottom: var(--space-lg);
}

.hero__avatar {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-light) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.hero__avatar svg {
    width: 36px;
    height: 36px;
    color: var(--color-white);
}

.hero__avatar--photo {
    background: none;
    border: 3px solid var(--color-primary);
    box-shadow: var(--shadow-glow-cyan);
    overflow: hidden;
}

.hero__avatar-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero__greeting {
    display: block;
    font-size: 0.875rem;
    color: var(--color-text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.hero__name {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--color-text);
    margin: 0;
    font-style: italic;
}

.hero__intro-desc {
    font-size: 1.0625rem;
    color: var(--color-text-secondary);
    margin-bottom: var(--space-xl);
    line-height: 1.6;
}

/* Scenario Section */
.hero__scenario {
    margin-bottom: var(--space-xl);
}

.hero__problem {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
    margin: var(--space-lg) 0;
}

.hero__problem-item {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    color: var(--color-text-secondary);
    font-size: 1rem;
}

.hero__problem-item svg {
    width: 20px;
    height: 20px;
    color: var(--color-accent);
    flex-shrink: 0;
}

/* The "But" moment */
.hero__but {
    background: linear-gradient(135deg, rgba(244, 63, 94, 0.1) 0%, rgba(244, 63, 94, 0.05) 100%);
    border-left: 4px solid var(--color-error);
    padding: var(--space-lg);
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
    margin: 0 0 var(--space-sm) 0;
}

.hero__right .hero__but {
    margin-top: 0;
}

.hero__but-label {
    display: block;
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-style: italic;
    color: var(--color-error);
    margin-bottom: var(--space-sm);
}

.hero__but-text {
    font-size: 0.9375rem;
    color: var(--color-text-secondary);
    margin: 0;
    line-height: 1.6;
}

/* Encouragement Section - Don't Give Up */
.hero__encouragement {
    background: linear-gradient(135deg, rgba(236, 72, 153, 0.1) 0%, rgba(236, 72, 153, 0.05) 100%);
    border-left: 4px solid var(--color-accent);
    padding: var(--space-lg);
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
    margin: var(--space-md) 0;
}

.hero__encouragement-label {
    display: block;
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-style: italic;
    color: var(--color-accent-light);
    margin-bottom: var(--space-sm);
}

.hero__encouragement-text {
    font-size: 0.9375rem;
    color: var(--color-text-secondary);
    margin: 0;
    line-height: 1.6;
}

/* Solution Section */
.hero__solution {
    padding-top: var(--space-lg);
}

.hero__solution-title {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--color-accent-light);
    margin-bottom: var(--space-sm);
    font-style: italic;
    text-shadow: 0 0 30px rgba(236, 72, 153, 0.4);
}

.hero__solution-text {
    font-size: 1.0625rem;
    color: var(--color-text-secondary);
    margin-bottom: var(--space-md);
}

.hero__versatility {
    font-size: 0.9375rem;
    color: var(--color-text-light);
    font-style: italic;
    margin-bottom: var(--space-lg);
    padding-left: var(--space-md);
    border-left: 2px solid var(--color-primary-light);
}

/* Coaching CTA Block - mirrors solution block on left */
.hero__coaching {
    margin-top: var(--space-lg);
    padding: var(--space-md);
    background: linear-gradient(135deg, rgba(14, 165, 233, 0.08) 0%, rgba(6, 182, 212, 0.05) 100%);
    border-radius: var(--radius-md);
    border: 1px solid rgba(14, 165, 233, 0.2);
}

.hero__coaching-title {
    font-family: var(--font-display);
    font-size: 1.25rem;
    color: var(--color-secondary-light);
    margin-bottom: var(--space-xs);
    font-style: italic;
    text-shadow: 0 0 30px rgba(14, 165, 233, 0.4);
}

.hero__coaching-text {
    font-size: 0.9375rem;
    color: var(--color-text-secondary);
    margin-bottom: var(--space-md);
    line-height: 1.6;
}

.btn--coaching {
    display: inline-flex;
    align-items: center;
    gap: var(--space-xs);
    font-size: 0.9375rem;
    border-color: var(--color-secondary);
    color: var(--color-secondary-light);
}

.btn--coaching:hover {
    background: var(--color-secondary);
    color: var(--color-bg);
    border-color: var(--color-secondary);
}

.btn--coaching svg {
    width: 18px;
    height: 18px;
}

/* Terminal Success State */
.terminal__line--success {
    color: var(--color-accent-light);
}

.terminal__status--success {
    color: #22c55e;
}

/* Responsive Story Hero */
@media (max-width: 1000px) {
    .hero__container--story {
        grid-template-columns: 1fr;
        gap: var(--space-xl);
    }

    .hero__solution-row {
        grid-template-columns: 1fr;
        gap: var(--space-md);
    }

    .hero__solution-row .hero__coaching {
        margin-top: var(--space-md);
    }

    .hero__right {
        order: -1;
    }

    .hero__chat-line {
        display: none;
    }
}

@media (max-width: 600px) {
    .hero__avatar {
        width: 80px;
        height: 80px;
    }

    .hero__avatar svg {
        width: 32px;
        height: 32px;
    }

    .hero__name {
        font-size: 1.25rem;
    }
}

/* --- Simplified Services Grid (2 columns) --- */
.services__grid--two {
    grid-template-columns: repeat(2, 1fr);
    max-width: 900px;
    margin: 0 auto;
}

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

.service-card__tagline {
    font-size: 1rem;
    font-weight: 500;
    color: var(--color-primary-light);
    margin-bottom: var(--space-lg);
}

.service-card__note {
    display: block;
    font-size: 0.8125rem;
    color: var(--color-text-light);
    text-align: center;
    font-style: italic;
    margin-top: var(--space-sm);
}

/* Pricing Tiers Display */
.service-card__pricing-tiers {
    background: var(--color-bg-elevated);
    border-radius: var(--radius-md);
    padding: var(--space-md);
    margin-bottom: var(--space-lg);
    border: 1px solid var(--color-border);
}

.pricing-tier {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--space-xs) 0;
    font-size: 0.875rem;
}

.pricing-tier:not(:last-child) {
    border-bottom: 1px solid var(--color-border);
}

.pricing-tier span:first-child {
    color: var(--color-text-secondary);
}

.pricing-tier span:last-child {
    font-weight: 600;
    color: var(--color-text);
}

/* Dual pricing tiers (Personal + Business) */
.service-card__pricing-tiers--dual .pricing-tier {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    text-align: center;
}

.service-card__pricing-tiers--dual .pricing-tier span:first-child {
    text-align: left;
}

.service-card__pricing-tiers--dual .pricing-tier--header {
    border-bottom: 1px solid var(--color-border);
    padding-bottom: var(--space-sm);
    margin-bottom: var(--space-xs);
}

.service-card__pricing-tiers--dual .pricing-tier--header span {
    font-weight: 600;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--color-text-secondary);
}

.service-card__pricing-tiers--dual .pricing-tier span:nth-child(2) {
    color: var(--color-accent-light);
    font-weight: 600;
}

.service-card__pricing-tiers--dual .pricing-tier span:nth-child(3) {
    color: var(--color-text);
    font-weight: 600;
}

.service-card__price-from {
    font-size: 0.75rem;
    margin-right: var(--space-xs);
}

/* ============================================
   Sample Report Preview Section
   ============================================ */

.sample-report {
    max-width: 900px;
    margin: var(--space-3xl) auto 0;
}

.sample-report__title {
    font-family: var(--font-display);
    font-size: 1.75rem;
    text-align: center;
    margin-bottom: var(--space-sm);
    color: var(--color-text);
}

.sample-report__subtitle {
    text-align: center;
    color: var(--color-text-secondary);
    font-size: 1rem;
    margin-bottom: var(--space-xl);
}

/* Document Container */
.sample-report__document {
    background: var(--color-bg-card);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl), var(--shadow-glow-cyan);
    overflow: hidden;
    position: relative;
    border: 1px solid var(--color-border);
}

/* Floating effect */
.sample-report__document::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: var(--radius-xl);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
    pointer-events: none;
}

/* Document Header */
.sample-report__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--space-md) var(--space-lg);
    background: linear-gradient(135deg, #0c1929 0%, #0f172a 100%);
    color: var(--color-white);
    flex-wrap: wrap;
    gap: var(--space-md);
    border-bottom: 1px solid rgba(14, 165, 233, 0.2);
}

.sample-report__header-left {
    display: flex;
    align-items: center;
    gap: var(--space-md);
}

.sample-report__header-left svg {
    width: 24px;
    height: 24px;
    color: var(--color-primary);
}

.sample-report__filename {
    display: block;
    font-weight: 600;
    font-size: 0.9375rem;
}

.sample-report__meta {
    display: block;
    font-size: 0.75rem;
    color: #94a3b8;
}

.sample-report__badges {
    display: flex;
    gap: var(--space-sm);
    flex-wrap: wrap;
}

.sample-report__badge {
    font-size: 0.6875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    padding: var(--space-xs) var(--space-sm);
    border-radius: var(--radius-sm);
}

.sample-report__badge--critical {
    background: rgba(239, 68, 68, 0.2);
    color: #fca5a5;
}

.sample-report__badge--major {
    background: rgba(245, 158, 11, 0.2);
    color: #fcd34d;
}

.sample-report__badge--minor {
    background: rgba(59, 130, 246, 0.2);
    color: #93c5fd;
}

/* Finding Cards */
.sample-report__finding {
    border-bottom: 1px solid var(--color-border);
}

.sample-report__finding:last-of-type {
    border-bottom: none;
}

.sample-report__finding-header {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    padding: var(--space-md) var(--space-lg);
    background: var(--color-bg-elevated);
    cursor: pointer;
    transition: background var(--transition-fast);
    flex-wrap: wrap;
}

.sample-report__finding-header:hover {
    background: var(--color-bg-card);
}

.sample-report__severity {
    font-size: 0.625rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: var(--space-xs) var(--space-sm);
    border-radius: var(--radius-sm);
    flex-shrink: 0;
}

.sample-report__severity--critical {
    background: rgba(220, 38, 38, 0.2);
    color: #fca5a5;
}

.sample-report__severity--major {
    background: rgba(217, 119, 6, 0.2);
    color: #fcd34d;
}

.sample-report__severity--minor {
    background: rgba(14, 165, 233, 0.2);
    color: #93c5fd;
}

.sample-report__finding-title {
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-text);
    margin: 0;
    flex: 1;
    min-width: 200px;
}

.sample-report__location {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 0.75rem;
    color: var(--color-text-secondary);
    background: var(--color-bg);
    padding: var(--space-xs) var(--space-sm);
    border-radius: var(--radius-sm);
    flex-shrink: 0;
}

/* Finding Body */
.sample-report__finding-body {
    padding: 0 var(--space-lg) var(--space-lg);
    display: none;
}

.sample-report__finding--expanded .sample-report__finding-body {
    display: block;
}

.sample-report__section {
    margin-top: var(--space-md);
}

.sample-report__section h5 {
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--color-text-secondary);
    margin-bottom: var(--space-sm);
}

.sample-report__section p {
    font-size: 0.9375rem;
    color: var(--color-text);
    line-height: 1.6;
    margin: 0;
}

/* Code Blocks */
.sample-report__code {
    background: linear-gradient(180deg, #0d1117 0%, #161b22 100%);
    border-radius: var(--radius-md);
    padding: var(--space-md) var(--space-lg);
    overflow-x: auto;
    font-family: 'JetBrains Mono', 'Fira Code', 'IBM Plex Mono', 'Consolas', monospace;
    font-size: 0.875rem;
    line-height: 1.7;
    margin: 0;
    border: 1px solid rgba(48, 54, 61, 0.8);
    white-space: pre;
    tab-size: 2;
}

.sample-report__code code {
    color: #c9d1d9;
    display: block;
    font-family: inherit;
}

.sample-report__code--success {
    border: 2px solid var(--color-primary);
    box-shadow: 0 0 20px rgba(14, 165, 233, 0.2);
}

/* Syntax highlighting - GitHub Dark theme inspired */
.code-keyword {
    color: #ff7b72;
    font-weight: 500;
}

.code-string {
    color: #a5d6ff;
}

.code-comment {
    color: #8b949e;
    font-style: italic;
}

.code-danger {
    color: #ffa198;
    background: rgba(248, 81, 73, 0.25);
    padding: 2px 6px;
    border-radius: 4px;
    font-weight: 500;
}

.code-success {
    color: #7ee787;
    background: rgba(63, 185, 80, 0.2);
    padding: 2px 6px;
    border-radius: 4px;
    font-weight: 500;
}

/* AI Prompt Section */
.sample-report__section--prompt {
    background: linear-gradient(135deg, rgba(14, 165, 233, 0.1) 0%, rgba(14, 165, 233, 0.05) 100%);
    padding: var(--space-md);
    border-radius: var(--radius-md);
    border: 1px solid rgba(14, 165, 233, 0.3);
}

.sample-report__prompt {
    display: flex;
    gap: var(--space-md);
    align-items: flex-start;
}

.sample-report__prompt svg {
    width: 20px;
    height: 20px;
    color: var(--color-primary-light);
    flex-shrink: 0;
    margin-top: 2px;
}

.sample-report__prompt p {
    font-size: 0.875rem;
    color: var(--color-text);
    font-style: italic;
    margin: 0;
    line-height: 1.6;
}

/* Document Footer */
.sample-report__footer {
    padding: var(--space-md) var(--space-lg);
    background: var(--color-bg-elevated);
    border-top: 1px solid var(--color-border);
    text-align: center;
    font-size: 0.8125rem;
    color: var(--color-text-secondary);
}

/* CTA Section */
.sample-report__cta {
    text-align: center;
    margin-top: var(--space-xl);
    padding: var(--space-xl);
    background: var(--gradient-primary);
    border-radius: var(--radius-lg);
    color: var(--color-white);
    box-shadow: var(--shadow-glow-cyan);
}

.sample-report__cta p {
    font-size: 1.25rem;
    font-weight: 500;
    margin-bottom: var(--space-lg);
}

.sample-report__cta .btn--primary {
    background: var(--color-white);
    color: var(--color-primary-dark);
    box-shadow: none;
}

.sample-report__cta .btn--primary:hover {
    background: var(--color-bg);
    transform: translateY(-2px);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .sample-report__header {
        flex-direction: column;
        align-items: flex-start;
    }

    .sample-report__finding-header {
        flex-direction: column;
        align-items: flex-start;
        gap: var(--space-sm);
    }

    .sample-report__finding-title {
        min-width: 100%;
    }

    .sample-report__code {
        font-size: 0.75rem;
        padding: var(--space-sm);
    }

    .sample-report__prompt {
        flex-direction: column;
        gap: var(--space-sm);
    }
}

@media (max-width: 500px) {
    .sample-report__document {
        border-radius: var(--radius-md);
    }

    .sample-report__header,
    .sample-report__finding-header,
    .sample-report__finding-body,
    .sample-report__footer {
        padding-left: var(--space-md);
        padding-right: var(--space-md);
    }

    .sample-report__badges {
        width: 100%;
        justify-content: flex-start;
    }
}

/* ============================================
   What You Get Section
   ============================================ */
.what-you-get {
    max-width: 800px;
    margin: 0 auto var(--space-2xl);
    padding: var(--space-xl);
    background: linear-gradient(135deg, rgba(236, 72, 153, 0.05), rgba(14, 165, 233, 0.05));
    border-radius: var(--radius-xl);
    border: 1px solid var(--color-border);
}

.what-you-get__title {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--color-text);
    margin-bottom: var(--space-lg);
    text-align: center;
}

.what-you-get__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-lg);
}

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

.what-you-get__item {
    display: flex;
    gap: var(--space-md);
    align-items: flex-start;
}

.what-you-get__item svg {
    width: 24px;
    height: 24px;
    color: var(--color-accent-light);
    flex-shrink: 0;
    margin-top: 2px;
}

.what-you-get__item div {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.what-you-get__item strong {
    font-weight: 600;
    color: var(--color-text);
}

.what-you-get__item span {
    font-size: 0.875rem;
    color: var(--color-text-secondary);
    line-height: 1.4;
}

/* --- Form Success State --- */
.contact-form--success {
    text-align: center;
    padding: var(--space-3xl);
}

.contact-form--success::before {
    content: '';
    display: block;
    width: 64px;
    height: 64px;
    margin: 0 auto var(--space-lg);
    background: var(--color-accent);
    border-radius: 50%;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 32px;
}

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

    html {
        scroll-behavior: auto;
    }
}

/* Small Button Modifier */
.btn--small {
    padding: var(--space-xs) var(--space-md);
    font-size: 0.875rem;
}

/* ============================================
   Data Handling Section
   ============================================ */
.data-handling {
    max-width: 800px;
    margin: 0 auto var(--space-2xl);
}

.data-handling__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-lg);
}

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

.data-handling__box {
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
}

.data-handling__box h4 {
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-text);
    margin-bottom: var(--space-md);
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.data-handling__list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.data-handling__list li {
    display: flex;
    align-items: flex-start;
    gap: var(--space-sm);
    font-size: 0.875rem;
    color: var(--color-text-secondary);
    margin-bottom: var(--space-sm);
    line-height: 1.4;
}

.data-handling__list li:last-child {
    margin-bottom: 0;
}

.data-handling__list svg {
    width: 18px;
    height: 18px;
    color: var(--color-accent-light);
    flex-shrink: 0;
    margin-top: 2px;
}

.data-handling__box--delivery {
    background: linear-gradient(135deg, rgba(14, 165, 233, 0.1) 0%, rgba(14, 165, 233, 0.05) 100%);
    border-color: rgba(14, 165, 233, 0.3);
}

.delivery-times {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.delivery-time {
    display: flex;
    align-items: center;
    gap: var(--space-md);
}

.delivery-time__badge {
    display: inline-block;
    font-size: 0.6875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: var(--space-xs) var(--space-sm);
    border-radius: var(--radius-sm);
    min-width: 70px;
    text-align: center;
}

.delivery-time__badge--personal {
    background: rgba(236, 72, 153, 0.2);
    color: var(--color-accent-light);
}

.delivery-time__badge--business {
    background: rgba(14, 165, 233, 0.2);
    color: var(--color-primary-light);
}

.delivery-time__text {
    font-size: 0.9375rem;
    color: var(--color-text);
}

/* ============================================
   Testimonials Section
   ============================================ */
.testimonials {
    padding: var(--space-4xl) var(--space-lg);
    background: var(--color-bg);
    position: relative;
}

.testimonials::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(236, 72, 153, 0.3), transparent);
}

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

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

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

.testimonial-card {
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    display: flex;
    flex-direction: column;
    transition: all var(--transition-base);
}

.testimonial-card:hover {
    border-color: var(--color-border-light);
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.testimonial-card__quote {
    margin-bottom: var(--space-md);
}

.testimonial-card__quote svg {
    width: 32px;
    height: 32px;
    color: var(--color-accent);
    opacity: 0.5;
}

.testimonial-card__text {
    font-size: 0.9375rem;
    color: var(--color-text-secondary);
    line-height: 1.7;
    margin-bottom: var(--space-lg);
    flex-grow: 1;
    font-style: italic;
}

.testimonial-card__author {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    margin-top: auto;
    padding-top: var(--space-md);
    border-top: 1px solid var(--color-border);
}

.testimonial-card__avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--gradient-accent);
    color: var(--color-white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.875rem;
    font-weight: 600;
    flex-shrink: 0;
}

.testimonial-card__info {
    display: flex;
    flex-direction: column;
    gap: 0.125rem;
}

.testimonial-card__info strong {
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--color-text);
}

.testimonial-card__info span {
    font-size: 0.8125rem;
    color: var(--color-text-secondary);
}
