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

:root {
    /* Brand Colors */
    --color-primary: #2563EB;
    --color-primary-hover: #1D4ED8;
    --color-primary-light: #DBEAFE;
    --color-primary-50: #EFF6FF;
    --color-accent: #7C3AED;
    --color-accent-hover: #6D28D9;
    --color-accent-light: #EDE9FE;

    /* Semantic */
    --color-success: #059669;
    --color-success-light: #D1FAE5;
    --color-warning: #D97706;
    --color-warning-light: #FEF3C7;
    --color-danger: #DC2626;
    --color-danger-light: #FEE2E2;

    /* Neutrals */
    --color-text: #0F172A;
    --color-text-secondary: #475569;
    --color-text-tertiary: #94A3B8;
    --color-border: #E2E8F0;
    --color-border-light: #F1F5F9;
    --color-bg: #FFFFFF;
    --color-bg-secondary: #F8FAFC;
    --color-bg-tertiary: #F1F5F9;

    /* Gradients */
    --gradient-brand: linear-gradient(135deg, #2563EB 0%, #7C3AED 100%);
    --gradient-brand-light: linear-gradient(135deg, #EFF6FF 0%, #EDE9FE 100%);
    --gradient-cta: linear-gradient(135deg, #1E40AF 0%, #6D28D9 100%);

    /* Shadows */
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.07), 0 2px 4px -2px rgba(0, 0, 0, 0.05);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.08), 0 4px 6px -4px rgba(0, 0, 0, 0.04);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.08), 0 8px 10px -6px rgba(0, 0, 0, 0.04);
    --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
    --shadow-brand: 0 10px 40px -10px rgba(37, 99, 235, 0.3);
    --shadow-card-hover: 0 20px 40px -12px rgba(0, 0, 0, 0.12);

    /* Spacing */
    --section-padding: 100px;
    --container-max: 1200px;
    --container-padding: 20px;

    /* Radius */
    --radius-sm: 6px;
    --radius-md: 10px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 9999px;

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

    /* Typography */
    --font-sans: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-mono: 'JetBrains Mono', monospace;
}

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

body {
    font-family: var(--font-sans);
    font-size: 16px;
    line-height: 1.6;
    color: var(--color-text);
    background: var(--color-bg);
    overflow-x: hidden;
}

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

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

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

ul, ol {
    list-style: none;
}

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

/* ============================================== */
/* SECTION HEADERS                                */
/* ============================================== */
.section-label {
    display: inline-block;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--color-primary);
    background: var(--color-primary-light);
    padding: 6px 16px;
    border-radius: var(--radius-full);
    margin-bottom: 16px;
}

.section-title {
    font-size: 40px;
    font-weight: 800;
    line-height: 1.2;
    color: var(--color-text);
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.section-subtitle {
    font-size: 18px;
    line-height: 1.6;
    color: var(--color-text-secondary);
    max-width: 840px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 64px;
}

/* ============================================== */
/* BUTTONS                                        */
/* ============================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-family: var(--font-sans);
    font-weight: 600;
    border-radius: var(--radius-md);
    transition: all var(--transition-base);
    cursor: pointer;
    white-space: nowrap;
    border: 2px solid transparent;
    text-decoration: none;
}

.btn--sm {
    padding: 8px 20px;
    font-size: 14px;
}

.btn--lg {
    padding: 14px 28px;
    font-size: 15px;
}

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

.btn--primary {
    background: var(--gradient-brand);
    color: #fff;
    box-shadow: var(--shadow-brand);
}

.btn--primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 44px -10px rgba(37, 99, 235, 0.4);
}

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

.btn--outline:hover {
    border-color: var(--color-primary);
    color: var(--color-primary);
    background: var(--color-primary-50);
}

.btn--white {
    background: #fff;
    color: var(--color-text);
    box-shadow: var(--shadow-lg);
}

.btn--white:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-xl);
}

.btn--ghost {
    background: rgba(255,255,255, 0.15);
    color: #fff;
    border-color: rgba(255,255,255, 0.3);
}

.btn--ghost:hover {
    background: rgba(255,255,255, 0.25);
}

/* ============================================== */
/* HEADER                                         */
/* ============================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: var(--gradient-brand);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: all var(--transition-base);
}

.header--scrolled {
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.2);
}

.header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 56px;
}

.header__logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.header__date {
    font-size: 13px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.7);
    letter-spacing: 0.02em;
}

.header__logo-text {
    font-size: 20px;
    font-weight: 700;
    letter-spacing: -0.01em;
    color: #fff;
}

.header__nav {
    display: flex;
    align-items: center;
    gap: 32px;
}

.header__nav-link {
    font-size: 14px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.85);
    transition: color var(--transition-fast);
    position: relative;
}

.header__nav-link:hover {
    color: #fff;
}

.header__nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: #fff;
    border-radius: 1px;
    transition: width var(--transition-base);
}

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

.header__actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.header__social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.2s;
}

.header__social-link:hover {
    opacity: 0.75;
}

.header__social-link img {
    width: 24px;
    height: 24px;
}

.header__contact-email {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    transition: color 0.2s;
}

.header__contact-email:hover {
    color: #fff;
}

.header__contact-email img {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

.header__burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    width: 44px;
    height: 44px;
    padding: 0;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    z-index: 1001;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.header__burger:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: scale(1.05);
}

.header__burger:active {
    transform: scale(0.95);
}

.header__burger span {
    display: block;
    width: 20px;
    height: 2px;
    background: #fff;
    border-radius: 2px;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    transform-origin: center;
    position: absolute;
}

.header__burger span:nth-child(1) {
    transform: translateY(-6px);
}

.header__burger span:nth-child(2) {
    transform: translateY(0);
}

.header__burger span:nth-child(3) {
    transform: translateY(6px);
}

.header__burger.active {
    background: rgba(255, 255, 255, 0.25);
}

.header__burger.active span:nth-child(1) {
    transform: rotate(45deg) translateY(0);
}

.header__burger.active span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.header__burger.active span:nth-child(3) {
    transform: rotate(-45deg) translateY(0);
}

/* Mobile Nav */
.mobile-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background: linear-gradient(160deg, #0F172A 0%, #1e1b4b 100%);
    z-index: 999;
    transition: right var(--transition-slow);
}

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

.mobile-nav__inner {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    padding: 96px 28px 40px;
    gap: 0;
}

.mobile-nav__list {
    display: flex;
    flex-direction: column;
}

.mobile-nav__link {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 16px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.85);
    padding: 14px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
    transition: color 0.2s;
}

.mobile-nav__link:last-child {
    border-bottom: none;
}

.mobile-nav__link:hover,
.mobile-nav__link:active {
    color: #fff;
}

.mobile-nav__icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.mobile-nav__icon svg {
    stroke: rgba(255, 255, 255, 0.7);
}

.mobile-nav__link:hover .mobile-nav__icon,
.mobile-nav__link:active .mobile-nav__icon {
    background: rgba(99, 102, 241, 0.25);
    border-color: rgba(99, 102, 241, 0.4);
}

.mobile-nav__link:hover .mobile-nav__icon svg,
.mobile-nav__link:active .mobile-nav__icon svg {
    stroke: #a5b4fc;
}

.mobile-nav__divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
    margin: 28px 0;
}

.mobile-nav__cta {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.mobile-nav__btn {
    display: block;
    text-align: center;
    padding: 14px 20px;
    border-radius: var(--radius-lg);
    font-size: 15px;
    font-weight: 600;
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: rgba(255, 255, 255, 0.9);
    transition: background 0.2s, border-color 0.2s;
}

.mobile-nav__btn:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.4);
    color: #fff;
}

/* ============================================== */
/* HERO                                           */
/* ============================================== */
.hero {
    position: relative;
    padding: 112px 0 56px;
    overflow: hidden;
    background: var(--color-bg);
}

.hero__bg-decor {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.hero__gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
}

.hero__gradient-orb--1 {
    width: 600px;
    height: 600px;
    background: var(--color-primary);
    top: -300px;
    right: -200px;
    opacity: 0.15;
}

.hero__gradient-orb--2 {
    width: 400px;
    height: 400px;
    background: var(--color-accent);
    bottom: -200px;
    left: -200px;
    opacity: 0.15;
}

.hero__grid-pattern {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(37, 99, 235, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(37, 99, 235, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
}

.hero__inner {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 48px;
    align-items: center;
    position: relative;
}

.hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.08) 0%, rgba(124, 58, 237, 0.08) 100%);
    border: 1px solid rgba(37, 99, 235, 0.15);
    color: var(--color-primary);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.03em;
    padding: 7px 16px 7px 12px;
    border-radius: var(--radius-full);
    margin-bottom: 18px;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    transition: all var(--transition-base);
}

.hero__badge:hover {
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.12) 0%, rgba(124, 58, 237, 0.12) 100%);
    border-color: rgba(37, 99, 235, 0.25);
}

.hero__badge-dot {
    width: 7px;
    height: 7px;
    background: var(--color-success);
    border-radius: 50%;
    animation: pulse-dot 2s infinite;
    box-shadow: 0 0 0 3px rgba(5, 150, 105, 0.15);
}

.hero__title {
    font-size: 44px;
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.025em;
    margin-bottom: 18px;
}

.hero__title-gradient {
    background: var(--gradient-brand);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero__subtitle {
    font-size: 16px;
    line-height: 1.7;
    color: var(--color-text-secondary);
    margin-bottom: 28px;
    max-width: 520px;
}

.hero__actions {
    display: flex;
    gap: 16px;
    margin-bottom: 24px;
    flex-wrap: wrap;
}

.hero__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.hero__meta-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--color-text-tertiary);
}

.hero__meta-item svg {
    color: var(--color-success);
    flex-shrink: 0;
}

/* Hero visual */
.hero__screenshot-wrapper {
    position: relative;
}

.hero__screenshot-placeholder {
    background: var(--color-bg-secondary);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-2xl);
}

.hero__screenshot-toolbar {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 16px;
    background: var(--gradient-brand-light);
    border-bottom: 1px solid var(--color-border);
}

.dot {
    width: 12px;
    height: 12px;
    min-width: 12px;
    min-height: 12px;
    flex-shrink: 0;
    border-radius: 50%;
}

.dot--red { background: #EF4444; }
.dot--yellow { background: #F59E0B; }
.dot--green { background: #22C55E; }

.hero__screenshot-title {
    font-size: 12px;
    font-weight: 500;
    color: var(--color-text-tertiary);
    margin-left: 8px;
}

.hero__screenshot-body {
    padding: 0;
}

.hero__screenshot-body img {
    width: 100%;
    height: auto;
    display: block;
}

.hero__screenshot-hint {
    font-size: 14px;
    color: var(--color-text-tertiary);
}

.hero__screenshot-body code {
    font-family: var(--font-mono);
    font-size: 12px;
    background: var(--color-bg-tertiary);
    padding: 6px 12px;
    border-radius: var(--radius-sm);
    color: var(--color-text-secondary);
}

/* Floating cards */
.hero__floating-card {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 12px;
    background: #fff;
    padding: 14px 18px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--color-border-light);
    z-index: 2;
}

.hero__floating-card--1 {
    bottom: -20px;
    left: -30px;
}

.hero__floating-card--2 {
    top: 50%;
    right: -20px;
    margin-top: -28px;
}

.hero__floating-icon {
    width: 40px;
    height: 40px;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.hero__floating-icon--green {
    background: var(--color-success-light);
    color: var(--color-success);
}

.hero__floating-icon--blue {
    background: var(--color-primary-light);
    color: var(--color-primary);
}

.hero__floating-title {
    font-size: 13px;
    font-weight: 600;
    color: var(--color-text);
}

.hero__floating-sub {
    font-size: 12px;
    color: var(--color-text-tertiary);
}

/* ============================================== */
/* TRUST BAR                                      */
/* ============================================== */
.ticker-bar {
    background: #0F172A;
    padding: 18px 0;
    overflow: hidden;
    position: relative;
}

.ticker-bar__track {
    display: flex;
    width: max-content;
    animation: ticker-scroll 30s linear infinite;
}

.ticker-bar__content {
    display: flex;
    align-items: center;
    gap: 0;
    flex-shrink: 0;
}

.ticker-bar__item {
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    white-space: nowrap;
    padding: 0 20px;
}

.ticker-bar__diamond {
    color: #2563EB;
    font-size: 10px;
    flex-shrink: 0;
}

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

/* ============================================== */
/* PAIN POINTS                                    */
/* ============================================== */
.pain-points {
    padding: var(--section-padding) 0;
    background: linear-gradient(180deg, #F8FAFC 0%, #EFF3F8 100%);
}

.pain-points__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.pain-card {
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: var(--radius-lg);
    padding: 32px;
    transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04), 0 4px 12px rgba(0, 0, 0, 0.03);
}

.pain-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--card-accent, #DC2626);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.pain-card:hover {
    border-color: transparent;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05), 0 16px 40px rgba(0, 0, 0, 0.08);
    transform: translateY(-6px);
}

.pain-card:hover::before {
    transform: scaleX(1);
}

/* Unique accent colors per card */
.pain-card:nth-child(1) { --card-accent: #DC2626; }
.pain-card:nth-child(2) { --card-accent: #D97706; }
.pain-card:nth-child(3) { --card-accent: #7C3AED; }
.pain-card:nth-child(4) { --card-accent: #E11D48; }
.pain-card:nth-child(5) { --card-accent: #2563EB; }
.pain-card:nth-child(6) { --card-accent: #0891B2; }

.pain-card__icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    margin-bottom: 20px;
    transition: transform 0.3s ease;
}

.pain-card:hover .pain-card__icon {
    transform: scale(1.08);
}

/* Unique icon colors per card */
.pain-card:nth-child(1) .pain-card__icon { background: #FEE2E2; color: #DC2626; }
.pain-card:nth-child(2) .pain-card__icon { background: #FEF3C7; color: #D97706; }
.pain-card:nth-child(3) .pain-card__icon { background: #EDE9FE; color: #7C3AED; }
.pain-card:nth-child(4) .pain-card__icon { background: #FCE7F3; color: #E11D48; }
.pain-card:nth-child(5) .pain-card__icon { background: #DBEAFE; color: #2563EB; }
.pain-card:nth-child(6) .pain-card__icon { background: #CFFAFE; color: #0891B2; }

.pain-card__title {
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--color-text);
}

.pain-card__text {
    font-size: 14px;
    line-height: 1.7;
    color: var(--color-text-secondary);
    margin-bottom: 20px;
}

.pain-card__solution {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 600;
    color: var(--color-success);
    background: rgba(5, 150, 105, 0.06);
    padding: 10px 14px;
    border-radius: 8px;
    letter-spacing: 0.01em;
}

.pain-card__solution svg {
    flex-shrink: 0;
}

/* ============================================== */
/* FEATURES                                       */
/* ============================================== */
.features {
    padding: var(--section-padding) 0;
    background: var(--color-bg-secondary);
}

/* Feature Row — large alternating blocks */
.feature-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
    margin-bottom: 80px;
}

.feature-row--reverse {
    direction: rtl;
}

.feature-row--reverse > * {
    direction: ltr;
}

.feature-row__badge {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 5px 12px;
    border-radius: var(--radius-full);
    margin-bottom: 16px;
}

.feature-row__badge--blue {
    background: var(--color-primary-light);
    color: var(--color-primary);
}

.feature-row__badge--purple {
    background: var(--color-accent-light);
    color: var(--color-accent);
}

.feature-row__badge--green {
    background: var(--color-success-light);
    color: var(--color-success);
}

.feature-row__title {
    font-size: 32px;
    font-weight: 800;
    letter-spacing: -0.02em;
    margin-bottom: 16px;
}

.feature-row__text {
    font-size: 16px;
    line-height: 1.7;
    color: var(--color-text-secondary);
    margin-bottom: 24px;
}

.feature-row__list {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.feature-row__list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 15px;
    line-height: 1.5;
    color: var(--color-text);
}

.feature-row__list li svg {
    flex-shrink: 0;
    margin-top: 2px;
}

/* Feature screenshot placeholders */
.feature-screenshot {
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.feature-screenshot img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.feature-screenshot__hint {
    font-size: 14px;
    color: var(--color-text-tertiary);
    margin-bottom: 8px;
}

.feature-screenshot code {
    font-family: var(--font-mono);
    font-size: 12px;
    background: var(--color-bg-tertiary);
    padding: 4px 10px;
    border-radius: var(--radius-sm);
    color: var(--color-text-secondary);
}

/* Features Grid — mini cards */
.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 20px;
}

.feature-card {
    background: var(--color-bg);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: 28px;
    transition: all var(--transition-base);
}

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

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

.feature-card__icon--blue { background: var(--color-primary-light); color: var(--color-primary); }
.feature-card__icon--purple { background: var(--color-accent-light); color: var(--color-accent); }
.feature-card__icon--amber { background: #FEF3C7; color: #D97706; }
.feature-card__icon--red { background: var(--color-danger-light); color: var(--color-danger); }
.feature-card__icon--teal { background: #CCFBF1; color: #0D9488; }
.feature-card__icon--indigo { background: #E0E7FF; color: #4338CA; }
.feature-card__icon--rose { background: #FFE4E6; color: #E11D48; }
.feature-card__icon--orange { background: #FFEDD5; color: #EA580C; }

.feature-card__title {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 8px;
}

.feature-card__text {
    font-size: 14px;
    line-height: 1.6;
    color: var(--color-text-secondary);
}

/* ============================================== */
/* HOW IT WORKS — Premium Horizontal              */
/* ============================================== */
.how-it-works {
    padding: var(--section-padding) 0;
    background: linear-gradient(to bottom right, #111827, #111827, #1e3a8a);
    position: relative;
    overflow: hidden;
    color: #fff;
}

.how-it-works .section-label {
    background: rgba(255, 255, 255, 0.10);
    color: #93C5FD;
}

.how-it-works .section-title {
    color: #FFFFFF;
}

.how-it-works .section-subtitle {
    color: #9CA3AF;
}

.how-it-works__bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.how-it-works__gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
}

.how-it-works__gradient-orb--1 {
    width: 500px;
    height: 500px;
    background: #3B82F6;
    top: -200px;
    left: -150px;
    opacity: 0.10;
}

.how-it-works__gradient-orb--2 {
    width: 400px;
    height: 400px;
    background: #8B5CF6;
    bottom: -200px;
    right: -150px;
    opacity: 0.10;
}

.how-it-works__grid-pattern {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 48px 48px;
}

/* Horizontal steps container */
.steps-horizontal {
    display: flex;
    align-items: stretch;
    justify-content: center;
    gap: 0;
    position: relative;
}

/* Step card */
.step-card {
    flex: 1;
    max-width: 340px;
    position: relative;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.10);
    border-radius: var(--radius-lg);
    padding: 40px 32px 36px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    overflow: hidden;
    z-index: 1;
    box-shadow: none;
}

.step-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-brand);
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.step-card:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 255, 255, 0.18);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2), 0 20px 48px rgba(37, 99, 235, 0.15);
}

/* Watermark number */
.step-card__number-bg {
    position: absolute;
    top: -10px;
    right: -5px;
    font-size: 140px;
    font-weight: 900;
    line-height: 1;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.06) 0%, rgba(255, 255, 255, 0.02) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    pointer-events: none;
    user-select: none;
    z-index: 0;
}

/* Header row */
.step-card__header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 24px;
    position: relative;
    z-index: 1;
}

.step-card__number {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-brand);
    color: #fff;
    font-size: 20px;
    font-weight: 800;
    border-radius: 14px;
    flex-shrink: 0;
    box-shadow: 0 4px 16px rgba(37, 99, 235, 0.3), 0 0 0 4px rgba(37, 99, 235, 0.08);
    position: relative;
}

.step-card__badge {
    display: inline-flex;
    align-items: center;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 5px 14px;
    border-radius: var(--radius-full);
    background: rgba(255, 255, 255, 0.10);
    color: #9CA3AF;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.step-card__badge--accent {
    background: rgba(37, 99, 235, 0.15);
    color: #60A5FA;
    border-color: rgba(37, 99, 235, 0.25);
}

.step-card__badge--muted {
    background: rgba(255, 255, 255, 0.05);
    color: #6B7280;
}

/* Icon */
.step-card__icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 18px;
    background: rgba(37, 99, 235, 0.10);
    color: #60A5FA;
    position: relative;
    z-index: 1;
    transition: transform 0.3s ease;
    border: 1px solid rgba(37, 99, 235, 0.15);
}

.step-card:hover .step-card__icon {
    transform: scale(1.08);
}

/* Title & text */
.step-card__title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #FFFFFF;
    position: relative;
    z-index: 1;
}

.step-card__text {
    font-size: 14px;
    line-height: 1.7;
    color: #9CA3AF;
    position: relative;
    z-index: 1;
}

/* Card variant: highlight (step 2) */
.step-card--highlight {
    border-color: rgba(37, 99, 235, 0.30);
    background: rgba(37, 99, 235, 0.12);
    box-shadow: 0 0 0 1px rgba(37, 99, 235, 0.20), 0 8px 32px rgba(37, 99, 235, 0.10);
}

.step-card--highlight .step-card__text {
    color: #D1D5DB;
}

.step-card--highlight .step-card__icon {
    background: var(--gradient-brand);
    color: #fff;
    box-shadow: 0 8px 24px rgba(37, 99, 235, 0.3);
}

/* Card variant: optional (step 3) */
.step-card--optional {
    border-style: dashed;
    border-color: rgba(255, 255, 255, 0.15);
}

.step-card--optional::before {
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.4) 0%, rgba(124, 58, 237, 0.2) 100%);
}

.step-card--optional .step-card__number {
    background: #4B5563;
    color: #D1D5DB;
    box-shadow: none;
}

.step-card--optional .step-card__icon {
    background: rgba(255, 255, 255, 0.05);
    color: #9CA3AF;
    border-color: rgba(255, 255, 255, 0.08);
}

.step-card__optional-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #FCD34D;
    background: rgba(245, 158, 11, 0.15);
    padding: 3px 10px;
    border-radius: var(--radius-full);
    z-index: 2;
}

/* Connectors */
.step-connector {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 56px;
    align-self: center;
}

.step-connector__arrow {
    width: 40px;
    height: 24px;
    opacity: 0.7;
}

/* ============================================== */
/* SUBSYSTEMS                                     */
/* ============================================== */
.subsystems {
    padding: var(--section-padding) 0;
    background: var(--color-bg-secondary);
}

.subsystems__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.subsystem-card {
    background: var(--color-bg);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: 36px 32px;
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
}

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

.subsystem-card--dpo:hover { border-color: var(--color-primary); }
.subsystem-card--po:hover { border-color: var(--color-accent); }
.subsystem-card--crm {
    opacity: 0.55;
    border-style: dashed;
    border-color: var(--color-border);
}

.subsystem-card--crm:hover {
    border-color: var(--color-border);
    opacity: 0.7;
    transform: none;
    box-shadow: none;
}

.subsystem-card__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}

.subsystem-card__icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-md);
}

.subsystem-card--dpo .subsystem-card__icon { background: var(--color-primary-light); color: var(--color-primary); }
.subsystem-card--po .subsystem-card__icon { background: var(--color-accent-light); color: var(--color-accent); }
.subsystem-card--crm .subsystem-card__icon { background: #CCFBF1; color: #0D9488; }

.subsystem-card__badge {
    font-size: 12px;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: var(--radius-full);
    letter-spacing: 0.05em;
}

.subsystem-card__badge--blue { background: var(--color-primary-light); color: var(--color-primary); }
.subsystem-card__badge--purple { background: var(--color-accent-light); color: var(--color-accent); }
.subsystem-card__badge--teal { background: #CCFBF1; color: #0D9488; }

.subsystem-card__title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
}

.subsystem-card__text {
    font-size: 14px;
    line-height: 1.6;
    color: var(--color-text-secondary);
    margin-bottom: 20px;
}

.subsystem-card__features {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.subsystem-card__features li {
    font-size: 14px;
    color: var(--color-text);
    padding-left: 20px;
    position: relative;
}

.subsystem-card__features li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--color-primary);
}

.subsystem-card--po .subsystem-card__features li::before { background: var(--color-accent); }
.subsystem-card--crm .subsystem-card__features li::before { background: #0D9488; }

.subsystem-card__coming-soon {
    position: absolute;
    top: 20px;
    right: -32px;
    background: var(--gradient-brand);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    padding: 4px 40px;
    transform: rotate(45deg);
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

/* ============================================== */
/* FEEDBACK CHANNELS                              */
/* ============================================== */
.feedback-channels {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 48px;
}

.feedback-channels .review-card {
    flex: none;
    text-align: center;
    padding: 32px 24px;
    text-decoration: none;
    cursor: pointer;
}

.reviews__honest {
    max-width: 680px;
    margin: 0 auto 48px;
    text-align: center;
}

.reviews__honest p {
    font-size: 17px;
    line-height: 1.8;
    color: var(--color-text-secondary);
}

.reviews__cta {
    text-align: center;
}

.feedback-icon {
    width: 52px;
    height: 52px;
    margin: 0 auto 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-md);
    background: var(--color-primary-50);
}

.feedback-channels .review-card__name {
    margin-bottom: 8px;
}

.feedback-channels .review-card__text {
    margin-bottom: 0;
    font-style: normal;
    font-size: 14px;
}

.feedback-email {
    font-size: 13px;
    color: var(--color-primary);
    font-weight: 500;
}

/* ============================================== */
/* COMPARISON TABLE                               */
/* ============================================== */
.comparison {
    padding: var(--section-padding) 0;
    background: var(--color-bg);
}

.comparison-table-wrapper {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    background: var(--color-bg);
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: var(--radius-xl);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04), 0 8px 32px rgba(0, 0, 0, 0.06);
}

.comparison-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    font-size: 13px;
    border: none;
    border-radius: var(--radius-xl);
    overflow: hidden;
}

.comparison-table th,
.comparison-table td {
    padding: 14px 18px;
    text-align: center;
    border-bottom: 1px solid var(--color-border-light);
    transition: background var(--transition-fast);
}

.comparison-table th {
    font-weight: 600;
    font-size: 12px;
    color: var(--color-text-secondary);
    padding: 14px 18px;
    vertical-align: bottom;
    background: var(--color-bg-secondary);
    border-bottom: 2px solid var(--color-border);
    text-transform: none;
    letter-spacing: 0;
}

.comparison-table__feature-col {
    text-align: left !important;
    font-weight: 700 !important;
    color: var(--color-text) !important;
    min-width: 200px;
    font-size: 13px !important;
    text-transform: none !important;
    letter-spacing: 0 !important;
}

.comparison-table td:first-child {
    text-align: left;
    font-weight: 500;
    color: var(--color-text);
}

.comparison-table tbody tr:nth-child(even) {
    background: var(--color-bg-secondary);
}

.comparison-table tbody tr:hover {
    background: var(--color-bg-tertiary);
}

.comparison-table tbody tr:hover .comparison-table__highlight {
    background: var(--color-primary-50);
}

.comparison-table__highlight {
    background: var(--color-primary-50);
    position: relative;
}

.comparison-table thead .comparison-table__highlight {
    background: var(--color-primary-50);
}

.comparison-table__product {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
}

.comparison-table__logo {
    font-size: 16px;
    font-weight: 800;
    background: var(--gradient-brand);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.01em;
}

.comparison-table__rec {
    font-size: 10px;
    font-weight: 600;
    background: var(--gradient-brand);
    color: #fff;
    padding: 3px 10px;
    border-radius: var(--radius-full);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    box-shadow: 0 2px 8px rgba(37, 99, 235, 0.3);
}

.comparison-yes {
    display: inline-block;
    color: var(--color-success);
    font-weight: 600;
    font-size: 11px;
    background: var(--color-success-light);
    padding: 3px 10px;
    border-radius: var(--radius-full);
}

.comparison-no {
    display: inline-block;
    color: var(--color-danger);
    font-weight: 500;
    font-size: 11px;
    background: var(--color-danger-light);
    padding: 3px 10px;
    border-radius: var(--radius-full);
}

.comparison-partial {
    display: inline-block;
    color: var(--color-warning);
    font-weight: 500;
    font-size: 11px;
    background: var(--color-warning-light);
    padding: 3px 10px;
    border-radius: var(--radius-full);
}

.comparison-table tbody tr:last-child td {
    border-top: 2px solid var(--color-border);
    border-bottom: none;
    font-weight: 600;
    font-size: 14px;
    color: var(--color-text);
    padding-top: 16px;
    padding-bottom: 16px;
}

.comparison-table tbody tr:last-child {
    background: transparent !important;
}

.comparison__footnote {
    margin-top: 16px;
    font-size: 13px;
    color: var(--color-text-tertiary);
    text-align: center;
    font-style: italic;
    padding: 0;
    line-height: 1.6;
}

/* ============================================== */
/* CALCULATOR                                     */
/* ============================================== */
.calculator {
    padding: var(--section-padding) 0;
    background: linear-gradient(180deg, var(--color-bg-secondary) 0%, #EEF2F7 100%);
}

.calculator__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 36px;
    align-items: start;
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: var(--radius-xl);
    padding: 36px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04), 0 8px 32px rgba(0, 0, 0, 0.06);
}

.calc-field {
    margin-bottom: 22px;
}

.calc-field:last-child {
    margin-bottom: 0;
}

.calc-field__label {
    display: block;
    font-size: 13px;
    font-weight: 500;
    color: var(--color-text-secondary);
    margin-bottom: 10px;
    letter-spacing: 0.01em;
}

.calc-field__range {
    width: 100%;
    height: 4px;
    -webkit-appearance: none;
    appearance: none;
    background: var(--color-border);
    border-radius: 2px;
    outline: none;
    cursor: pointer;
}

.calc-field__range::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 18px;
    height: 18px;
    background: #fff;
    border: 2px solid var(--color-primary);
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 1px 4px rgba(37, 99, 235, 0.2);
    transition: all var(--transition-fast);
}

.calc-field__range::-webkit-slider-thumb:hover {
    transform: scale(1.2);
    box-shadow: 0 2px 8px rgba(37, 99, 235, 0.3);
}

.calc-field__range::-moz-range-thumb {
    width: 18px;
    height: 18px;
    background: #fff;
    border: 2px solid var(--color-primary);
    border-radius: 50%;
    border: none;
    cursor: pointer;
    box-shadow: 0 1px 4px rgba(37, 99, 235, 0.2);
}

.calc-field__value {
    margin-top: 10px;
    font-size: 13px;
    color: var(--color-text-tertiary);
}

.calc-field__value span {
    font-weight: 600;
    color: var(--color-primary);
    font-size: 15px;
}

.calculator__results {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.calc-result {
    display: flex;
    align-items: center;
    gap: 12px;
    background: var(--color-bg);
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 12px;
    padding: 14px 16px;
    transition: all 0.25s ease;
}

.calc-result:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
    transform: translateY(-2px);
}

.calc-result__icon {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    flex-shrink: 0;
}

.calc-result__icon svg {
    width: 18px;
    height: 18px;
}

.calc-result__icon--time { background: rgba(37, 99, 235, 0.08); color: var(--color-primary); }
.calc-result__icon--money { background: rgba(5, 150, 105, 0.08); color: var(--color-success); }
.calc-result__icon--year { background: rgba(124, 58, 237, 0.08); color: var(--color-accent); }

.calc-result__value {
    font-size: 19px;
    font-weight: 700;
    color: var(--color-text);
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.calc-result__label {
    font-size: 12px;
    color: var(--color-text-tertiary);
    letter-spacing: 0.01em;
}

.calc-result--highlight {
    background: var(--gradient-brand);
    border: none;
    padding: 16px 20px;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    text-align: left;
    margin-top: 4px;
    box-shadow: 0 4px 20px rgba(37, 99, 235, 0.2);
}

.calc-result--highlight:hover {
    box-shadow: 0 8px 32px rgba(37, 99, 235, 0.3);
    transform: translateY(-2px);
}

.calc-result__roi {
    display: flex;
    align-items: center;
    gap: 12px;
}

.calc-result__roi-label {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.75);
    font-weight: 500;
}

.calc-result__roi-value {
    font-size: 24px;
    font-weight: 700;
    color: #fff;
    letter-spacing: -0.02em;
}

.calc-result__roi-desc {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
}

.calc-result__roi-desc strong {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
}

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

.pricing__cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    align-items: start;
    margin-bottom: 48px;
}

.pricing-card {
    background: var(--color-bg);
    border: 2px solid rgba(0, 0, 0, 0.06);
    border-radius: var(--radius-xl);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06), 0 12px 40px rgba(0, 0, 0, 0.04);
    transition: box-shadow 0.4s ease, transform 0.4s ease;
}

.pricing-card--active {
    border-color: var(--color-primary);
    box-shadow: 0 4px 16px rgba(37, 99, 235, 0.08), 0 12px 48px rgba(0, 0, 0, 0.06);
}

.pricing-card--active:hover {
    box-shadow: 0 4px 16px rgba(37, 99, 235, 0.12), 0 20px 60px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

/* Trial card — coming soon */
.pricing-card--soon {
    opacity: 0.80;
    pointer-events: none;
    position: relative;
}

.pricing-card__header--muted {
    background: none;
}

.pricing-card__header--muted .pricing-card__name {
    color: var(--color-text-tertiary);
}

.pricing-card__header--muted .pricing-card__amount {
    color: var(--color-text-tertiary);
}

.pricing-card__header--muted .pricing-card__currency {
    color: var(--color-border);
}

.pricing-card__header--muted .pricing-card__per-month {
    color: var(--color-text-tertiary);
}

.pricing-card__badge--soon {
    background: var(--color-bg-tertiary);
    color: var(--color-text-secondary);
}

.pricing-card__features--muted li {
    color: var(--color-text-tertiary);
}

.pricing-card__features--muted li svg {
    stroke: #94A3B8;
}

.pricing-card__coming {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 20px;
    background: var(--color-bg-secondary);
    border: 1px dashed rgba(0, 0, 0, 0.12);
    border-radius: var(--radius-md);
    font-size: 14px;
    font-weight: 500;
    color: var(--color-text-tertiary);
}

.pricing-card__header {
    padding: 36px 40px 32px;
    text-align: center;
    position: relative;
    border-radius: var(--radius-xl) var(--radius-xl) 0 0;
}

.pricing-card__badge {
    display: inline-flex;
    align-items: center;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.03em;
    padding: 5px 14px;
    border-radius: var(--radius-full);
    background: var(--color-primary-50);
    color: var(--color-primary);
    margin-bottom: 12px;
}

.pricing-card__name {
    font-size: 22px;
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: 16px;
}

.pricing-card__price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 4px;
}

.pricing-card__amount {
    font-size: 52px;
    font-weight: 800;
    letter-spacing: -0.03em;
    color: var(--color-text);
}

.pricing-card__currency {
    font-size: 18px;
    font-weight: 500;
    color: var(--color-text-tertiary);
}

.pricing-card__per-month {
    margin-top: 8px;
    font-size: 14px;
    color: var(--color-text-tertiary);
}

.pricing-card__body {
    padding: 32px 36px 36px;
}

.pricing-card__features {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 28px;
}

.pricing-card__features li {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 14px;
    color: var(--color-text-secondary);
    line-height: 1.5;
}

.pricing-card__features li svg {
    flex-shrink: 0;
    margin-top: 2px;
}

.pricing-card__btn {
    margin-bottom: 0;
}

/* Pricing benefits */
.pricing__benefits {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.pricing-benefit {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: flex-start;
    padding: 24px;
    background: var(--color-bg);
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: var(--radius-lg);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04), 0 4px 12px rgba(0, 0, 0, 0.03);
    transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
}

.pricing-benefit::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--benefit-accent, var(--color-primary));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.pricing-benefit:hover {
    transform: translateY(-4px);
    border-color: transparent;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05), 0 16px 40px rgba(0, 0, 0, 0.08);
}

.pricing-benefit:hover::before {
    transform: scaleX(1);
}

.pricing-benefit:nth-child(1) { --benefit-accent: #059669; }
.pricing-benefit:nth-child(2) { --benefit-accent: #2563EB; }
.pricing-benefit:nth-child(3) { --benefit-accent: #7C3AED; }
.pricing-benefit:nth-child(4) { --benefit-accent: #D97706; }

.pricing-benefit__icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.pricing-benefit:hover .pricing-benefit__icon {
    transform: scale(1.08);
}

.pricing-benefit:nth-child(1) .pricing-benefit__icon { background: #D1FAE5; color: #059669; }
.pricing-benefit:nth-child(2) .pricing-benefit__icon { background: #DBEAFE; color: #2563EB; }
.pricing-benefit:nth-child(3) .pricing-benefit__icon { background: #EDE9FE; color: #7C3AED; }
.pricing-benefit:nth-child(4) .pricing-benefit__icon { background: #FEF3C7; color: #D97706; }

.pricing-benefit__title {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 2px;
    color: var(--color-text);
}

.pricing-benefit__text {
    font-size: 13px;
    line-height: 1.6;
    color: var(--color-text-secondary);
}

/* ============================================== */
/* REVIEWS                                        */
/* ============================================== */
.reviews {
    padding: var(--section-padding) 0;
    background: var(--color-bg-secondary);
    overflow: hidden;
}

.reviews__carousel {
    position: relative;
    overflow: hidden;
}

.reviews__track {
    display: flex;
    gap: 24px;
    transition: transform var(--transition-slow);
}

.review-card {
    flex: 0 0 calc(50% - 12px);
    background: var(--color-bg);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: 32px;
    transition: all var(--transition-base);
}

.review-card:hover {
    box-shadow: var(--shadow-lg);
}

.review-card__stars {
    color: #F59E0B;
    font-size: 18px;
    letter-spacing: 2px;
    margin-bottom: 16px;
}

.review-card__text {
    font-size: 15px;
    line-height: 1.7;
    color: var(--color-text);
    margin-bottom: 24px;
    font-style: italic;
}

.review-card__author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.review-card__avatar {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-brand);
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    border-radius: 50%;
    flex-shrink: 0;
}

.review-card__name {
    font-size: 14px;
    font-weight: 600;
}

.review-card__role {
    font-size: 13px;
    color: var(--color-text-tertiary);
}

.reviews__controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-top: 32px;
}

.reviews__btn {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--color-border);
    border-radius: 50%;
    color: var(--color-text-secondary);
    transition: all var(--transition-fast);
    background: var(--color-bg);
}

.reviews__btn:hover {
    border-color: var(--color-primary);
    color: var(--color-primary);
    background: var(--color-primary-50);
}

.reviews__dots {
    display: flex;
    gap: 8px;
}

.reviews__dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--color-border);
    cursor: pointer;
    transition: all var(--transition-fast);
}

.reviews__dot.active {
    background: var(--color-primary);
    width: 24px;
    border-radius: 4px;
}

/* ============================================== */
/* FAQ                                            */
/* ============================================== */
.faq {
    padding: var(--section-padding) 0;
    background: var(--color-bg);
}

.faq__list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.faq-item {
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--color-bg);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.03);
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-item:hover {
    border-color: rgba(37, 99, 235, 0.15);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.faq-item.active {
    border-color: rgba(37, 99, 235, 0.2);
    box-shadow: 0 4px 16px rgba(37, 99, 235, 0.08);
}

.faq-item__question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 20px 24px;
    font-size: 15px;
    font-weight: 600;
    color: var(--color-text);
    text-align: left;
    cursor: pointer;
    transition: color 0.2s ease;
    background: transparent;
}

.faq-item__question:hover {
    color: var(--color-primary);
}

.faq-item__icon {
    position: relative;
    width: 28px;
    height: 28px;
    flex-shrink: 0;
    border-radius: 50%;
    background: var(--color-bg-secondary);
    border: 1px solid rgba(0, 0, 0, 0.06);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-item__icon::before,
.faq-item__icon::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    background: var(--color-text-tertiary);
    border-radius: 1px;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Horizontal line (always visible) */
.faq-item__icon::before {
    width: 12px;
    height: 1.5px;
    transform: translate(-50%, -50%);
}

/* Vertical line (hides on active) */
.faq-item__icon::after {
    width: 1.5px;
    height: 12px;
    transform: translate(-50%, -50%);
}

.faq-item:hover .faq-item__icon {
    border-color: rgba(37, 99, 235, 0.2);
    background: rgba(37, 99, 235, 0.04);
}

.faq-item:hover .faq-item__icon::before,
.faq-item:hover .faq-item__icon::after {
    background: var(--color-primary);
}

.faq-item.active .faq-item__icon {
    background: var(--color-primary);
    border-color: var(--color-primary);
}

.faq-item.active .faq-item__icon::before {
    background: #fff;
}

.faq-item.active .faq-item__icon::after {
    height: 0;
    opacity: 0;
    background: #fff;
}

.faq-item__answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-item__answer p {
    padding: 0 24px 20px;
    font-size: 14px;
    line-height: 1.7;
    color: var(--color-text-secondary);
}

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

/* ============================================== */
/* FINAL CTA                                      */
/* ============================================== */
.final-cta {
    padding: var(--section-padding) 0;
    background: var(--color-bg-secondary);
}

.final-cta__inner {
    background: var(--gradient-cta);
    border-radius: var(--radius-xl);
    padding: 80px 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.final-cta__inner::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 500px;
    height: 500px;
    background: rgba(255,255,255,0.05);
    border-radius: 50%;
}

.final-cta__inner::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: rgba(255,255,255,0.03);
    border-radius: 50%;
}

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

.final-cta__title {
    font-size: 36px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.final-cta__text {
    font-size: 18px;
    color: rgba(255,255,255,0.8);
    margin-bottom: 36px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.final-cta__actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

/* ============================================== */
/* FOOTER                                         */
/* ============================================== */
.footer {
    padding: 64px 0 0;
    background: #0F172A;
    color: #CBD5E1;
}

.footer__inner {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 64px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer__logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
}

.footer__logo .header__logo-text {
    -webkit-text-fill-color: #fff;
}

.footer__desc {
    font-size: 14px;
    line-height: 1.7;
    color: #94A3B8;
}

.footer__links {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}

.footer__col-title {
    font-size: 13px;
    font-weight: 600;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 16px;
}

.footer__link {
    display: block;
    font-size: 14px;
    color: #94A3B8;
    padding: 4px 0;
    transition: color var(--transition-fast);
}

.footer__link:hover {
    color: #fff;
}

.footer__link--contact {
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer__address {
    font-size: 13px;
    line-height: 1.5;
    color: #64748B;
    margin-top: 8px;
}

.footer__address svg {
    vertical-align: middle;
    margin-right: 6px;
}

.footer__work-hours {
    font-size: 13px;
    color: #64748B;
    margin-top: 8px;
}

.footer__bottom {
    padding: 24px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer__mission {
    font-size: 13px;
    line-height: 1.7;
    color: #94A3B8;
    text-align: center;
    margin: 0 0 16px;
    font-style: italic;
}

.footer__copyright {
    font-size: 13px;
    color: #64748B;
    text-align: center;
}

/* ============================================== */
/* BACK TO TOP                                    */
/* ============================================== */
.back-to-top {
    position: fixed;
    bottom: 32px;
    right: 32px;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-primary);
    color: #fff;
    border-radius: 50%;
    box-shadow: var(--shadow-brand);
    z-index: 100;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all var(--transition-base);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 44px -10px rgba(37, 99, 235, 0.5);
}/* ============================================== */
/* SCROLL REVEAL ANIMATIONS                       */
/* ============================================== */

/* Base reveal class — initially hidden */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Delay variants */
.reveal--delay-1 {
    transition-delay: 0.1s;
}

.reveal--delay-2 {
    transition-delay: 0.2s;
}

.reveal--delay-3 {
    transition-delay: 0.3s;
}

.reveal--delay-4 {
    transition-delay: 0.4s;
}

/* Fade from left */
.reveal--left {
    opacity: 0;
    transform: translateX(-40px);
}

.reveal--left.visible {
    opacity: 1;
    transform: translateX(0);
}

/* Fade from right */
.reveal--right {
    opacity: 0;
    transform: translateX(40px);
}

.reveal--right.visible {
    opacity: 1;
    transform: translateX(0);
}

/* Scale up */
.reveal--scale {
    opacity: 0;
    transform: scale(0.92);
}

.reveal--scale.visible {
    opacity: 1;
    transform: scale(1);
}

/* ============================================== */
/* KEYFRAME ANIMATIONS                            */
/* ============================================== */

/* Floating cards in hero */
@keyframes float-card {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-12px);
    }
}

/* Pulse dot (hero badge) */
@keyframes pulse-dot {
    0% {
        box-shadow: 0 0 0 0 rgba(5, 150, 105, 0.5);
    }
    70% {
        box-shadow: 0 0 0 8px rgba(5, 150, 105, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(5, 150, 105, 0);
    }
}

/* Gradient shimmer — for price cards or CTAs */
@keyframes shimmer {
    0% {
        background-position: -200% 0;
    }
    100% {
        background-position: 200% 0;
    }
}

/* Subtle bounce for CTA buttons */
@keyframes subtle-bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-4px);
    }
}

/* Spin for loading states */
@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* ============================================== */
/* HOVER MICRO-INTERACTIONS                       */
/* ============================================== */

/* Card hover lift — generic */
.hover-lift {
    transition: transform var(--transition-base), box-shadow var(--transition-base);
}

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

/* Icon pulse on hover */
.hover-icon-pulse:hover .feature-card__icon,
.hover-icon-pulse:hover .pain-card__icon {
    animation: subtle-bounce 0.6s ease;
}

/* Link underline slide */
.hover-underline {
    position: relative;
}

.hover-underline::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-brand);
    transition: width var(--transition-base);
}

.hover-underline:hover::after {
    width: 100%;
}

/* ============================================== */
/* STAGGER ANIMATIONS FOR GRIDS                   */
/* ============================================== */

/* Pain cards — GSAP handles stagger, keep for fallback only */

/* Feature mini cards — GSAP handles animation */

/* ============================================== */
/* SMOOTH SCROLL INDICATOR                        */
/* ============================================== */

/* Progress bar at top of page */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    background: var(--gradient-brand);
    z-index: 1001;
    transition: width 50ms linear;
    border-radius: 0 2px 2px 0;
}

/* ============================================== */
/* PAGE LOAD ANIMATION                            */
/* ============================================== */

/* Hero GSAP — initial hidden state (GSAP controls reveal) */
.hero__badge,
.hero__subtitle,
.hero__actions,
.hero__meta,
.hero__visual,
.hero__floating-card {
    visibility: hidden;
}

.hero-word {
    display: inline-block;
    visibility: hidden;
}

.hero-word-gradient {
    display: inline;
    visibility: hidden;
}

/* After GSAP finishes, floating cards get CSS float animation */
.hero__floating-card.gsap-done {
    visibility: visible;
}

.hero__floating-card--1.gsap-done {
    animation: float-card 6s ease-in-out infinite;
}

.hero__floating-card--2.gsap-done {
    animation: float-card 6s ease-in-out infinite 3s;
}

/* ============================================== */
/* PRICING CARD                                   */
/* ============================================== */
.pricing-card {
    position: relative;
}

/* Pricing benefits stagger */
.pricing__benefits .pricing-benefit:nth-child(1) { transition-delay: 0s; }
.pricing__benefits .pricing-benefit:nth-child(2) { transition-delay: 0.08s; }
.pricing__benefits .pricing-benefit:nth-child(3) { transition-delay: 0.16s; }
.pricing__benefits .pricing-benefit:nth-child(4) { transition-delay: 0.24s; }

/* ============================================== */
/* COMPARISON TABLE ROW HIGHLIGHT                 */
/* ============================================== */
.comparison-table tbody tr {
    transition: background var(--transition-fast);
}

.comparison-table tbody tr:hover {
    background: var(--color-bg-secondary);
}

/* ============================================== */
/* STEP CARD ANIMATIONS                           */
/* Step cards & connectors — GSAP handles animation */

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

    .reveal {
        opacity: 1;
        transform: none;
    }

    html {
        scroll-behavior: auto;
    }
}/* ============================================== */
/* RESPONSIVE — TABLET (max-width: 1024px)        */
/* ============================================== */
@media (max-width: 1024px) {
    :root {
        --section-padding: 80px;
    }

    .section-title {
        font-size: 32px;
    }

    .section-subtitle {
        font-size: 16px;
    }

    /* Header */
    .header__nav {
        display: none;
    }

    .header__burger {
        display: flex;
    }

    .header__actions .btn {
        display: none;
    }

    .header__contact-email {
        display: none;
    }

    .header__social-link {
        display: none;
    }

    .header__date {
        display: none;
    }

    /* Hero */
    .hero {
        padding: 100px 0 48px;
    }

    .hero__inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero__title {
        font-size: 36px;
    }

    .hero__subtitle {
        max-width: 100%;
    }

    .hero__floating-card--1 {
        left: 0;
        bottom: -10px;
    }

    .hero__floating-card--2 {
        right: 0;
        top: 20px;
    }


    /* Pain Points */
    .pain-points__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Features */
    .feature-row {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .feature-row--reverse {
        direction: ltr;
    }

    .feature-row__title {
        font-size: 26px;
    }

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

    /* How It Works — tablet */
    .steps-horizontal {
        flex-wrap: wrap;
        gap: 24px;
        justify-content: center;
    }

    .step-card {
        flex: 0 0 calc(50% - 12px);
        max-width: none;
    }

    .step-connector {
        display: none;
    }

    .step-card__number-bg {
        font-size: 100px;
    }

    /* Subsystems */
    .subsystems__grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }

    /* Comparison */
    .comparison-table {
        font-size: 13px;
    }

    .comparison-table th,
    .comparison-table td {
        padding: 12px 14px;
    }

    /* Calculator */
    .calculator__inner {
        grid-template-columns: 1fr;
        padding: 36px;
    }

    /* Pricing */
    .pricing__cards {
        grid-template-columns: 1fr;
        max-width: 520px;
        margin: 0 auto 40px;
    }

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

    /* Reviews */
    .review-card {
        flex: 0 0 calc(100% - 0px);
        padding: 28px;
    }

    /* Footer */
    .footer__inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }

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

/* ============================================== */
/* RESPONSIVE — MOBILE (max-width: 640px)         */
/* ============================================== */
@media (max-width: 640px) {
    :root {
        --section-padding: 60px;
        --container-padding: 16px;
    }

    .section-title {
        font-size: 26px;
    }

    .section-subtitle {
        font-size: 15px;
    }

    .section-header {
        margin-bottom: 40px;
    }

    /* Buttons */
    .btn--lg {
        padding: 12px 22px;
        font-size: 14px;
    }

    /* Hero */
    .hero {
        padding: 88px 0 40px;
    }

    .hero__title {
        font-size: 28px;
    }

    .hero__subtitle {
        font-size: 15px;
    }

    .hero__actions {
        flex-direction: column;
    }

    .hero__actions .btn {
        width: 100%;
    }

    .hero__meta {
        flex-direction: column;
        gap: 12px;
    }

    .hero__floating-card {
        display: none;
    }

    .hero__screenshot-body {
        padding: 0;
    }

    /* Trust Bar */
    /* Pain Points */
    .pain-points__grid {
        grid-template-columns: 1fr;
    }

    .pain-card {
        padding: 24px;
    }

    /* Features */
    .features-grid {
        grid-template-columns: 1fr;
    }

    .feature-card {
        padding: 24px;
    }

    .feature-row__title {
        font-size: 22px;
    }

    .feature-screenshot {
        padding: 0;
        border-radius: 8px;
    }

    .feature-screenshot img {
        border-radius: 8px;
    }

    /* How It Works */
    .steps-horizontal {
        flex-direction: column;
        gap: 20px;
    }

    .step-card {
        max-width: none;
        padding: 32px 24px 28px;
    }

    .step-connector {
        display: none;
    }

    .step-card__number-bg {
        font-size: 80px;
        top: -5px;
    }

    .step-card__optional-badge {
        display: none;
    }

    /* Comparison */
    .comparison-table-wrapper,
    .comparison-table {
        border-radius: var(--radius-lg);
    }

    .comparison-table th,
    .comparison-table td {
        padding: 12px 10px;
        font-size: 12px;
    }

    .comparison-table__feature-col {
        min-width: 140px;
    }

    .comparison-yes,
    .comparison-no,
    .comparison-partial {
        font-size: 11px;
        padding: 3px 8px;
    }

    /* Feedback channels */
    .feedback-channels {
        grid-template-columns: 1fr;
        gap: 16px;
        margin-bottom: 36px;
    }

    /* Calculator */
    .calculator__inner {
        padding: 20px;
        gap: 24px;
    }

    .calc-field {
        margin-bottom: 16px;
    }

    .calc-field__label {
        margin-bottom: 8px;
        font-size: 12px;
    }

    .calc-field__value {
        margin-top: 6px;
    }

    .calculator__results {
        gap: 8px;
    }

    .calc-result {
        padding: 10px 14px;
        gap: 10px;
    }

    .calc-result__icon {
        width: 32px;
        height: 32px;
    }

    .calc-result__icon svg {
        width: 16px;
        height: 16px;
    }

    .calc-result__value {
        font-size: 16px;
    }

    .calc-result--highlight {
        padding: 14px 16px;
    }

    .calc-result__roi-value {
        font-size: 20px;
    }

    /* Pricing */
    .pricing__cards {
        margin-bottom: 32px;
    }

    .pricing-card__amount {
        font-size: 44px;
    }

    .pricing-card__header {
        padding: 28px 24px 24px;
    }

    .pricing-card__body {
        padding: 24px 20px 28px;
    }

    .pricing-card__features {
        gap: 10px;
    }

    .pricing__benefits {
        grid-template-columns: 1fr;
    }

    .pricing-benefit {
        padding: 20px;
    }

    /* Reviews */
    .review-card {
        padding: 24px;
    }

    /* FAQ */
    .faq-item__question {
        padding: 16px 20px;
        font-size: 14px;
    }

    .faq-item__answer p {
        padding: 0 20px 16px;
        font-size: 13px;
    }

    .faq-item__icon {
        width: 24px;
        height: 24px;
    }

    .faq-item__icon::before {
        width: 10px;
    }

    .faq-item__icon::after {
        height: 10px;
    }

    /* Final CTA */
    .final-cta__inner {
        padding: 48px 24px;
    }

    .final-cta__title {
        font-size: 26px;
    }

    .final-cta__text {
        font-size: 15px;
    }

    .final-cta__actions {
        flex-direction: column;
    }

    .final-cta__actions .btn {
        width: 100%;
    }

    /* Footer */
    .footer {
        padding: 48px 0 0;
    }

    .footer__links {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .footer__mission {
        font-size: 12px;
        text-align: left;
    }

    .footer__copyright {
        font-size: 12px;
        text-align: left;
    }

    .footer__address {
        font-size: 12px;
    }

    /* Back to top */
    .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 42px;
        height: 42px;
    }
}

/* ============================================== */
/* RESPONSIVE — SMALL MOBILE (max-width: 380px)   */
/* ============================================== */
@media (max-width: 380px) {
    .hero__title {
        font-size: 24px;
    }

    .section-title {
        font-size: 22px;
    }

    .pricing-card__amount {
        font-size: 36px;
    }

    .step-card {
        padding: 28px 20px 24px;
    }

    .step-card__number-bg {
        font-size: 60px;
    }

    .final-cta__inner {
        padding: 36px 20px;
    }

    .pain-card {
        padding: 20px;
    }

    .calc-result--highlight {
        flex-direction: column;
        text-align: center;
    }
}

/* ============================================== */
/* RESPONSIVE — LARGE DESKTOP (min-width: 1400px) */
/* ============================================== */
@media (min-width: 1400px) {
    :root {
        --container-max: 1280px;
    }

    .hero__title {
        font-size: 52px;
    }

    .section-title {
        font-size: 44px;
    }
}