/* ============================================
   DESIGN TOKENS — from Pencil V4 Light Blue
   ============================================ */
:root {
    --font-heading: 'Cormorant Garamond', Georgia, serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

    --text-dark: #0F172A;
    --text-secondary: #64748B;
    --text-muted: #94A3B8;
    --primary: #2563EB;
    --primary-hover: #1D4ED8;
    --primary-light: #60A5FA;
    --primary-bg: #60A5FA12;
    --border: #E2E8F0;
    --bg-light: #F1F5F9;
    --bg-lighter: #F8FAFC;
    --white: #FFFFFF;

    --radius-card: 20px;
    --radius-pill: 100px;
    --radius-icon: 14px;
    --radius-sm: 12px;

    --max-width: 1440px;
    --section-padding: 100px 80px;

    --shadow-sm: 0 1px 3px rgba(15, 23, 42, 0.06);
    --shadow-md: 0 4px 20px rgba(15, 23, 42, 0.08);
    --shadow-lg: 0 32px 80px rgba(96, 165, 250, 0.12), 0 2px 8px rgba(0, 0, 0, 0.07);
    --shadow-header: 0 1px 3px rgba(15, 23, 42, 0.08);
    --shadow-btn: 0 8px 32px rgba(37, 99, 235, 0.21);
    --shadow-screenshot: 0 24px 60px rgba(59, 130, 246, 0.08);

    --transition: 0.2s ease;
}

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

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(--text-dark);
    background: var(--white);
    overflow-x: hidden;
}

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

ul { list-style: none; }
img { max-width: 100%; display: block; }

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

/* ============================================
   UTILITIES
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 14px;
    border-radius: var(--radius-pill);
    transition: all var(--transition);
    white-space: nowrap;
    cursor: pointer;
    text-decoration: none;
}

.btn--primary {
    background: var(--primary);
    color: var(--white);
    padding: 16px 36px;
    border: none;
    box-shadow: var(--shadow-btn);
}
.btn--primary:hover {
    background: var(--primary-hover);
    box-shadow: 0 12px 40px rgba(37, 99, 235, 0.3);
}

.btn--outline {
    background: transparent;
    color: var(--text-dark);
    padding: 12px 24px;
    border: 1px solid #CBD5E1;
}
.btn--outline:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.btn--sm { padding: 8px 20px; font-size: 13px; }
.btn--lg { padding: 18px 44px; font-size: 14px; }
.btn--full { width: 100%; }

.badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    border-radius: var(--radius-pill);
    background: var(--primary-bg);
    border: 1px solid rgba(37, 99, 235, 0.25);
    color: var(--primary);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.badge--center { margin: 0 auto; }

.badge__dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--primary);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
}

.placeholder-img {
    background: var(--bg-light);
    border: 2px dashed var(--border);
    border-radius: var(--radius-card);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    font-size: 14px;
    font-weight: 500;
}

.placeholder-img--lg {
    width: 100%;
    max-width: 816px;
    aspect-ratio: 816 / 560;
    box-shadow: var(--shadow-screenshot);
}

/* ============================================
   1. HEADER
   ============================================ */
.header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
    transition: box-shadow var(--transition);
}

.header--scrolled {
    box-shadow: var(--shadow-header);
}

.header__inner {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 80px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header__logo {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 600;
    color: var(--text-dark);
    letter-spacing: 1px;
    flex-shrink: 0;
}

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

.header__nav-link {
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.5px;
    color: var(--text-secondary);
}
.header__nav-link:hover { color: var(--text-dark); }

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

.header__login {
    font-size: 13px;
    font-weight: 500;
    color: var(--text-dark);
    padding: 8px 4px;
}
.header__login:hover { color: var(--primary); }

/* Language Switcher */
.lang-switcher { position: relative; }

.lang-switcher__btn {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 6px 10px;
    border-radius: 8px;
    color: var(--text-secondary);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: background var(--transition);
}
.lang-switcher__btn:hover { background: var(--bg-light); }

.lang-switcher__current { color: var(--text-dark); }

.lang-switcher__icon { flex-shrink: 0; }
.lang-switcher__chevron {
    flex-shrink: 0;
    color: var(--text-muted);
    transition: transform var(--transition);
}
.lang-switcher.open .lang-switcher__chevron { transform: rotate(180deg); }

.lang-switcher__dropdown {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-md);
    min-width: 160px;
    padding: 6px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: all var(--transition);
    z-index: 10;
}
.lang-switcher.open .lang-switcher__dropdown {
    opacity: 1; visibility: visible; transform: translateY(0);
}

.lang-switcher__option {
    display: block; width: 100%; padding: 8px 12px; text-align: left;
    font-size: 14px; border-radius: 8px; color: var(--text-secondary);
    transition: all var(--transition);
}
.lang-switcher__option:hover { background: var(--bg-light); color: var(--text-dark); }
.lang-switcher__option.active { color: var(--primary); font-weight: 600; }

/* Burger */
.header__burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    width: 24px;
    padding: 2px 0;
}
.header__burger span {
    display: block; width: 100%; height: 2px;
    background: var(--text-dark); border-radius: 2px;
    transition: all var(--transition);
}
.header__burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.header__burger.open span:nth-child(2) { opacity: 0; }
.header__burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================
   2. HERO — mesh gradient bg
   ============================================ */
.hero {
    position: relative;
    overflow: hidden;
}

.hero__bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 60% 60% at 50% 10%, rgba(232, 121, 249, 0.09) 0%, transparent 70%),
        radial-gradient(ellipse 55% 55% at 90% 15%, rgba(192, 132, 252, 0.05) 0%, transparent 70%),
        radial-gradient(ellipse 55% 55% at 10% 50%, rgba(244, 114, 182, 0.09) 0%, transparent 70%),
        radial-gradient(ellipse 50% 50% at 45% 45%, rgba(217, 70, 239, 0.11) 0%, transparent 70%),
        radial-gradient(ellipse 55% 55% at 90% 50%, rgba(139, 92, 246, 0.09) 0%, transparent 70%),
        radial-gradient(ellipse 55% 55% at 50% 90%, rgba(167, 139, 250, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.hero__inner {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 100px 80px;
    display: flex;
    align-items: center;
    gap: 80px;
    position: relative;
}

.hero__content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 32px;
    flex: 1;
}

.hero__title {
    font-family: var(--font-heading);
    font-size: 72px;
    font-weight: normal;
    line-height: 1.05;
    color: var(--text-dark);
    letter-spacing: -1px;
    max-width: 520px;
}

.hero__subtitle {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-secondary);
    font-weight: normal;
}

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

.hero__link {
    font-size: 14px;
    font-weight: 500;
    color: var(--primary);
}
.hero__link:hover { color: var(--primary-hover); }

.hero__trust {
    display: flex;
    gap: 24px;
}

.hero__trust-item {
    font-size: 12px;
    font-weight: 500;
    color: var(--text-muted);
}

/* Chat Mockup — per Pencil design */
.hero__visual {
    display: flex;
    justify-content: center;
    flex-shrink: 0;
}

.chat-mockup__glow {
    padding: 12px;
    border-radius: 30px;
    background: linear-gradient(135deg, rgba(147, 197, 253, 0.31), rgba(96, 165, 250, 0.19), rgba(129, 140, 248, 0.19), rgba(147, 197, 253, 0.31));
}

.chat-mockup {
    width: 480px;
    background: var(--white);
    border-radius: var(--radius-card);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
    border: 1px solid var(--border);
    display: flex;
    flex-direction: column;
}

.chat-mockup__header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 0 20px;
    height: 56px;
    background: linear-gradient(180deg, #3B82F6, #2563EB);
    border-radius: 20px 20px 0 0;
}

.chat-mockup__avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(15, 23, 42, 0.03);
    flex-shrink: 0;
}

.chat-mockup__name {
    font-weight: 600;
    font-size: 13px;
    color: var(--white);
}

.chat-mockup__status {
    font-size: 10px;
    color: rgba(255, 255, 255, 0.8);
}

.chat-mockup__body {
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex: 1;
}

.chat-mockup__msg {
    max-width: 85%;
    padding: 10px 14px;
    font-size: 13px;
    line-height: 1.5;
}

.chat-mockup__msg--bot {
    background: var(--border);
    border: 1px solid var(--border);
    border-radius: 14px 14px 14px 4px;
    align-self: flex-start;
    color: var(--text-dark);
}

.chat-mockup__msg--user {
    background: linear-gradient(135deg, #3B82F6, #2563EB);
    color: var(--white);
    border-radius: 14px 14px 4px 14px;
    align-self: flex-end;
}

.chat-mockup__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 16px;
    height: 48px;
    background: var(--bg-lighter);
    border-top: 1px solid var(--border);
    border-radius: 0 0 20px 20px;
}

.chat-mockup__footer span {
    font-size: 12px;
    color: var(--text-muted);
}

.chat-mockup__footer svg {
    color: var(--primary);
}

/* ============================================
   3. LOGO STRIP
   ============================================ */
.logo-strip {
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.logo-strip__inner {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 40px 80px;
    text-align: center;
}

.logo-strip__label {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 3px;
    color: var(--text-muted);
    text-transform: uppercase;
    margin-bottom: 24px;
}

.logo-strip__grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}

.logo-strip__item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-muted);
    font-size: 13px;
    font-weight: 500;
}

.logo-strip__svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    opacity: 0.45;
}

/* ============================================
   4. PAIN POINTS
   ============================================ */
.pain-points { background: var(--bg-light); }

.pain-points__inner {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: var(--section-padding);
    text-align: center;
}

.pain-points__title {
    font-family: var(--font-heading);
    font-size: 44px;
    font-weight: normal;
    line-height: 1.15;
    letter-spacing: -0.5px;
    color: var(--text-dark);
    max-width: 720px;
    margin: 0 auto 56px;
}

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

.pain-card {
    background: var(--white);
    border-radius: var(--radius-card);
    padding: 28px;
    text-align: left;
    border: 1px solid var(--border);
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.pain-card__icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.pain-card__icon--blue { background: rgba(96, 165, 250, 0.08); color: #2563EB; }
.pain-card__icon--light-blue { background: rgba(96, 165, 250, 0.07); color: #60A5FA; }
.pain-card__icon--purple { background: rgba(129, 140, 248, 0.06); color: #818CF8; }
.pain-card__icon--cyan { background: rgba(56, 189, 248, 0.06); color: #38BDF8; }

.pain-card__title {
    font-size: 17px;
    font-weight: 600;
}

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

/* ============================================
   5. SOLUTION
   ============================================ */
.solution__inner {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: var(--section-padding);
    text-align: center;
}

.solution__title {
    font-family: var(--font-heading);
    font-size: 48px;
    font-weight: normal;
    line-height: 1.1;
    letter-spacing: -0.5px;
    color: var(--text-dark);
    max-width: 680px;
    margin: 20px auto 56px;
}

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

.solution-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-card);
    padding: 32px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.solution-card__icon {
    width: 52px;
    height: 52px;
    border-radius: var(--radius-icon);
    display: flex;
    align-items: center;
    justify-content: center;
}
.solution-card__icon--1 { background: linear-gradient(135deg, rgba(59, 130, 246, 0.13), rgba(59, 130, 246, 0.03)); color: #2563EB; }
.solution-card__icon--2 { background: linear-gradient(135deg, rgba(96, 165, 250, 0.13), rgba(96, 165, 250, 0.03)); color: #60A5FA; }
.solution-card__icon--3 { background: linear-gradient(135deg, rgba(129, 140, 248, 0.13), rgba(129, 140, 248, 0.03)); color: #818CF8; }

.solution-card__title {
    font-size: 17px;
    font-weight: 600;
}

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

/* ============================================
   6. HOW IT WORKS
   ============================================ */
.how-it-works { background: var(--bg-light); }

.how-it-works__inner {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: var(--section-padding);
    text-align: center;
}

.how-it-works__title {
    font-family: var(--font-heading);
    font-size: 48px;
    font-weight: normal;
    line-height: 1.1;
    letter-spacing: -0.5px;
    margin-bottom: 64px;
}

.how-it-works__steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 64px;
}

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

.step__number {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--primary);
    color: var(--white);
    font-weight: 700;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: -16px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.step__image {
    height: 240px;
    margin-bottom: 24px;
    border-radius: var(--radius-card);
}

.step__title {
    font-size: 17px;
    font-weight: 600;
    margin-bottom: 8px;
}

.step__desc {
    font-size: 13px;
    line-height: 1.6;
    color: var(--text-secondary);
    max-width: 320px;
    margin: 0 auto;
}

.how-it-works__cta { margin-top: 0; }

.how-it-works__cta .btn--outline {
    border-color: rgba(37, 99, 235, 0.25);
    color: var(--text-dark);
}
.how-it-works__cta .btn--outline:hover {
    border-color: var(--primary);
    color: var(--primary);
}

/* ============================================
   7–10. FEATURE SECTIONS
   ============================================ */
.feature { overflow: hidden; }
.feature--alt { background: var(--bg-light); }

.feature__inner {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: var(--section-padding);
    display: flex;
    align-items: center;
    gap: 64px;
}

.feature--img-left .feature__inner { flex-direction: row-reverse; }

.feature__content {
    display: flex;
    flex-direction: column;
    gap: 24px;
    width: 400px;
    flex-shrink: 0;
}

.feature__label {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 2px;
    color: var(--primary);
    text-transform: uppercase;
}

.feature__title {
    font-family: var(--font-heading);
    font-size: 36px;
    font-weight: normal;
    line-height: 1.15;
    letter-spacing: -0.5px;
}

.feature__desc {
    font-size: 14px;
    line-height: 1.7;
    color: var(--text-secondary);
}

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

.feature__list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 13px;
    line-height: 1.5;
    color: var(--text-secondary);
}

.feature__list svg {
    color: var(--primary);
    flex-shrink: 0;
    margin-top: 1px;
}

.feature__image { flex: 1; display: flex; justify-content: center; }

/* ============================================
   11. FEATURE GRID
   ============================================ */
.feature-grid { background: var(--bg-lighter); }

.feature-grid__inner {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: var(--section-padding);
    text-align: center;
}

.feature-grid__title {
    font-family: var(--font-heading);
    font-size: 44px;
    font-weight: normal;
    letter-spacing: -0.5px;
    margin-bottom: 56px;
}

.feature-grid__cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.grid-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-card);
    padding: 28px;
    text-align: left;
}

.grid-card__icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: var(--primary-bg);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.grid-card__title {
    font-size: 17px;
    font-weight: 600;
    margin-bottom: 8px;
}

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

/* ============================================
   12. SOCIAL PROOF
   ============================================ */
.social-proof { background: var(--bg-light); }

.social-proof__inner {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: var(--section-padding);
    text-align: center;
}

.social-proof__title {
    font-family: var(--font-heading);
    font-size: 44px;
    font-weight: normal;
    letter-spacing: -0.5px;
    line-height: 1.15;
    margin-bottom: 64px;
}

.social-proof__metrics {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 64px;
}

.metric { padding: 24px; }

.metric__value {
    font-family: var(--font-heading);
    font-size: 52px;
    font-weight: 300;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 8px;
}

.metric__label {
    font-size: 13px;
    color: var(--text-secondary);
}

.social-proof__reviews {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.review-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-card);
    padding: 28px;
    text-align: left;
}

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

.review-card__quote {
    font-size: 13px;
    line-height: 1.6;
    color: var(--text-secondary);
    font-style: italic;
    margin-bottom: 20px;
}

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

.review-card__avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--border), var(--bg-light));
    flex-shrink: 0;
}

.review-card__name { font-weight: 600; font-size: 13px; }
.review-card__role { font-size: 12px; color: var(--text-muted); }

/* ============================================
   13. PRICING
   ============================================ */
.pricing__inner {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: var(--section-padding);
    text-align: center;
}

.pricing__title {
    font-family: var(--font-heading);
    font-size: 44px;
    font-weight: normal;
    letter-spacing: -0.5px;
    margin-bottom: 56px;
}

.pricing__subtitle { display: none; }

/* Pill toggle */
.pricing__toggle {
    display: inline-flex;
    align-items: center;
    border-radius: var(--radius-pill);
    background: var(--bg-lighter);
    border: 1px solid var(--border);
    padding: 4px;
    margin-bottom: 56px;
    gap: 0;
}

.pricing__toggle-label {
    padding: 8px 20px;
    font-size: 13px;
    font-weight: 500;
    color: var(--text-secondary);
    border-radius: var(--radius-pill);
    cursor: pointer;
    transition: all var(--transition);
    user-select: none;
}

.pricing__toggle-label--active {
    background: var(--primary);
    color: var(--white);
    font-weight: 600;
}

.pricing__toggle-switch { display: none; }
.pricing__toggle-save { display: none; }

.pricing__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-bottom: 48px;
}

.pricing-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-card);
    padding: 28px;
    text-align: left;
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.pricing-card--featured {
    background: linear-gradient(160deg, #3B82F6, #2563EB);
    border: none;
    box-shadow: 0 16px 48px rgba(59, 130, 246, 0.25);
    color: var(--white);
}

.pricing-card__badge {
    display: inline-flex;
    align-self: flex-start;
    background: var(--white);
    color: var(--primary);
    font-size: 10px;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: var(--radius-pill);
    position: static;
    transform: none;
    left: auto;
}

.pricing-card__header {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 0;
}

.pricing-card__name {
    font-size: 17px;
    font-weight: 600;
}

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

.pricing-card__amount {
    font-family: var(--font-heading);
    font-size: 40px;
    font-weight: 300;
    line-height: 0.85;
}

.pricing-card__amount--custom { font-size: 40px; }

.pricing-card__period {
    font-size: 13px;
    color: var(--text-secondary);
}

.pricing-card--featured .pricing-card__period {
    color: rgba(15, 23, 42, 0.6);
}

.pricing-card__desc {
    font-size: 13px;
    color: var(--text-secondary);
}

.pricing-card--featured .pricing-card__desc {
    color: rgba(15, 23, 42, 0.6);
}

.pricing-card__features {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 0;
}

.pricing-card__features li {
    font-size: 12px;
    color: var(--text-dark);
    padding: 0;
    position: relative;
}
.pricing-card__features li::before { display: none; }

.pricing-card--featured .pricing-card__features li {
    color: var(--white);
}

.pricing-card .btn--outline {
    padding: 12px 24px;
    border-color: #CBD5E1;
    font-size: 13px;
}

.pricing-card--featured .btn--primary {
    background: var(--white);
    color: var(--primary);
    box-shadow: none;
    padding: 12px 24px;
    font-size: 13px;
}

.pricing__managed {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: rgba(96, 165, 250, 0.06);
    border: 1px solid rgba(37, 99, 235, 0.15);
    border-radius: 16px;
    padding: 20px 32px;
}

.pricing__managed p {
    font-size: 13px;
    color: var(--text-secondary);
    display: inline;
}

.pricing__managed strong {
    color: var(--text-secondary);
    font-weight: normal;
}

.pricing__managed .btn {
    display: inline;
    padding: 0;
    font-size: 13px;
    font-weight: 600;
    color: var(--primary);
    border: none;
    background: none;
    box-shadow: none;
    border-radius: 0;
}

/* ============================================
   14. FAQ — all answers visible, border-only
   ============================================ */
.faq { background: var(--bg-light); }

.faq__inner {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 100px 240px;
}

.faq__title {
    font-family: var(--font-heading);
    font-size: 44px;
    font-weight: normal;
    letter-spacing: -0.5px;
    text-align: center;
    margin-bottom: 40px;
}

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

.faq-item {
    background: transparent;
    border: none;
    border-bottom: 1px solid var(--border);
    border-radius: 0;
    overflow: visible;
    padding: 20px 0;
}

.faq-item:last-child { border-bottom: none; }

.faq-item__question {
    width: 100%;
    padding: 0;
    text-align: left;
    font-size: 15px;
    font-weight: 600;
    display: block;
    color: var(--text-dark);
    cursor: default;
    margin-bottom: 12px;
}

.faq-item__question::after { display: none; }

.faq-item__answer {
    max-height: none;
    overflow: visible;
}

.faq-item__answer p {
    padding: 0;
    font-size: 13px;
    line-height: 1.6;
    color: var(--text-secondary);
}

/* ============================================
   15. FINAL CTA — mesh gradient
   ============================================ */
.final-cta {
    position: relative;
    overflow: hidden;
}

.final-cta__bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 55% 55% at 50% 10%, rgba(192, 132, 252, 0.09) 0%, transparent 70%),
        radial-gradient(ellipse 50% 50% at 15% 50%, rgba(167, 139, 250, 0.08) 0%, transparent 70%),
        radial-gradient(ellipse 45% 45% at 55% 55%, rgba(217, 70, 239, 0.12) 0%, transparent 70%),
        radial-gradient(ellipse 50% 50% at 90% 50%, rgba(244, 114, 182, 0.08) 0%, transparent 70%),
        radial-gradient(ellipse 55% 55% at 50% 90%, rgba(232, 121, 249, 0.09) 0%, transparent 70%);
    pointer-events: none;
}

.final-cta__inner {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 120px 80px;
    text-align: center;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 28px;
}

.final-cta__title {
    font-family: var(--font-heading);
    font-size: 56px;
    font-weight: normal;
    line-height: 1.1;
    letter-spacing: -1px;
    max-width: 700px;
}

.final-cta__subtitle {
    font-size: 16px;
    color: var(--text-secondary);
    max-width: 560px;
}

.final-cta .btn--primary {
    box-shadow: 0 12px 40px rgba(37, 99, 235, 0.25);
}

.final-cta__note {
    font-size: 12px;
    color: var(--text-muted);
}

/* ============================================
   16. FOOTER
   ============================================ */
.footer {
    background: var(--bg-light);
    border-top: 1px solid var(--border);
}

.footer__inner {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 56px 80px 32px;
}

.footer__grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 64px;
    margin-bottom: 40px;
}

.footer__logo {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 600;
    color: var(--text-dark);
    letter-spacing: 1px;
    display: inline-block;
    margin-bottom: 12px;
}

.footer__tagline {
    font-size: 13px;
    line-height: 1.6;
    color: var(--text-secondary);
    max-width: 280px;
}

.footer__heading {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--text-dark);
    margin-bottom: 20px;
}

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

.footer__links a {
    font-size: 13px;
    color: var(--text-secondary);
}
.footer__links a:hover { color: var(--primary); }

.footer__divider {
    height: 1px;
    background: var(--border);
    margin-bottom: 24px;
}

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

.footer__copy { font-size: 12px; color: var(--text-muted); }

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

.footer__lang-btn {
    font-size: 12px; font-weight: 500; color: var(--text-muted);
    padding: 4px 8px; border-radius: 6px; transition: all var(--transition);
}
.footer__lang-btn:hover { color: var(--text-dark); background: var(--white); }
.footer__lang-btn.active { color: var(--primary); font-weight: 600; }

/* ============================================
   RESPONSIVE — TABLET (< 1024px)
   ============================================ */
@media (max-width: 1024px) {
    :root { --section-padding: 80px 40px; }

    .header__inner { padding: 0 40px; }

    .hero__inner {
        padding: 60px 40px 80px;
        flex-direction: column;
        gap: 48px;
        text-align: center;
    }
    .hero__content { align-items: center; }
    .hero__title { font-size: 56px; }

    .chat-mockup { width: 380px; }
    .chat-mockup__glow { padding: 8px; }

    .solution__grid { grid-template-columns: 1fr 1fr; gap: 20px; }
    .solution__grid .solution-card:last-child {
        grid-column: 1 / -1; max-width: 480px; margin: 0 auto;
    }

    .how-it-works__steps {
        grid-template-columns: 1fr; gap: 48px;
        max-width: 480px; margin: 0 auto 48px;
    }

    .feature__inner {
        flex-direction: column !important; gap: 48px; text-align: center;
    }
    .feature__content { width: 100%; align-items: center; }
    .feature__list { align-items: center; }

    .feature-grid__cards { grid-template-columns: 1fr 1fr; }

    .social-proof__metrics { grid-template-columns: repeat(2, 1fr); }
    .social-proof__reviews { grid-template-columns: 1fr; max-width: 560px; margin: 0 auto; }

    .pricing__grid { grid-template-columns: 1fr 1fr; gap: 16px; }
    .pricing__managed { flex-direction: column; text-align: center; }

    .faq__inner { padding: 80px 40px; }

    .footer__grid { grid-template-columns: 1fr 1fr; gap: 40px; }
    .footer__brand { grid-column: 1 / -1; }

    .final-cta__title { font-size: 44px; }
    .final-cta__inner { padding: 80px 40px; }
}

/* ============================================
   RESPONSIVE — MOBILE (< 768px)
   ============================================ */
@media (max-width: 768px) {
    :root { --section-padding: 60px 20px; }

    .header__inner { padding: 0 20px; }
    .header__nav {
        display: none; position: fixed; top: 72px; left: 0; right: 0;
        background: var(--white); flex-direction: column; padding: 24px 20px;
        border-bottom: 1px solid var(--border); box-shadow: var(--shadow-md); gap: 8px;
    }
    .header__nav.open { display: flex; }
    .header__nav-link { padding: 12px 0; font-size: 16px; width: 100%; }
    .header__actions { display: none; }
    .header__burger { display: flex; margin-left: auto; }

    .hero__inner { padding: 40px 20px 60px; }
    .hero__title { font-size: 40px; }
    .hero__cta { flex-direction: column; width: 100%; }
    .hero__cta .btn { width: 100%; }
    .hero__trust { flex-direction: column; gap: 8px; align-items: center; }
    .chat-mockup { width: 100%; max-width: 340px; }
    .chat-mockup__glow { padding: 8px; }

    .logo-strip__inner { padding: 32px 20px; }
    .logo-strip__grid { gap: 20px; }

    .pain-points__title { font-size: 32px; }
    .pain-points__grid { grid-template-columns: 1fr; }

    .solution__title { font-size: 36px; }
    .solution__grid { grid-template-columns: 1fr; }

    .how-it-works__title { font-size: 36px; }
    .feature__title { font-size: 28px; }

    .feature-grid__title { font-size: 32px; }
    .feature-grid__cards { grid-template-columns: 1fr; }

    .social-proof__title { font-size: 32px; }
    .metric__value { font-size: 40px; }

    .pricing__title { font-size: 32px; }
    .pricing__grid {
        grid-template-columns: 1fr; max-width: 400px;
        margin-left: auto; margin-right: auto; margin-bottom: 48px;
    }

    .faq__inner { padding: 60px 20px; }
    .faq__title { font-size: 32px; }

    .final-cta__title { font-size: 36px; }
    .final-cta__inner { padding: 60px 20px; }

    .footer__inner { padding: 48px 20px 32px; }
    .footer__grid { grid-template-columns: 1fr; gap: 32px; }
    .footer__bottom { flex-direction: column; gap: 16px; text-align: center; }
}