/* ===================================================================
   AIBooster – Marketing CSS
   Version: 2.0.0 (Professional Marketing Edition)
   Covers: Landing, Pricing, Auth pages, Contact, FAQ, Public pages
   =================================================================== */

/* ── RESET for marketing pages ─────────────────────────────────── */
.mkt *, .auth-page * { box-sizing: border-box; }

/* ===================================================================
   TYPOGRAPHY HELPERS
   =================================================================== */
.mkt-display {
    font-family: var(--font-family-display, 'Plus Jakarta Sans', sans-serif);
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.1;
}
.mkt-heading {
    font-family: var(--font-family-display, 'Plus Jakarta Sans', sans-serif);
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.2;
}
.mkt-overline {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--brand-cta, #e94560);
}
.mkt-lead {
    font-size: clamp(1.05rem, 2.2vw, 1.2rem);
    line-height: 1.65;
    color: rgba(255,255,255,0.72);
}
.mkt-lead--dark {
    color: var(--color-text-secondary, #6b7280);
}

/* ===================================================================
   LANDING PAGE
   =================================================================== */
.landing-page {
    font-family: var(--font-family-sans);
    color: var(--color-text);
    background: #ffffff;
    overflow-x: hidden;
}

/* ── Public Nav ─────────────────────────────────────────────────── */
.pub-nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 clamp(1.25rem, 5vw, 3rem);
    height: 4rem;
    background: rgba(15,15,26,0.85);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(255,255,255,0.06);
}
.pub-nav__brand {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    text-decoration: none;
}
.pub-nav__mark {
    width: 2.125rem; height: 2.125rem;
    border-radius: 0.5rem;
    background: var(--gradient-brand, linear-gradient(135deg, #6366f1, #e94560));
    display: flex; align-items: center; justify-content: center;
    font-weight: 800; font-size: 0.9rem; color: #fff;
}
.pub-nav__name {
    font-family: var(--font-family-display, sans-serif);
    font-weight: 700; font-size: 1.125rem;
    color: #fff; letter-spacing: -0.01em;
}
.pub-nav__links {
    display: flex; gap: 2rem; align-items: center;
    list-style: none; margin: 0; padding: 0;
}
.pub-nav__links a {
    color: rgba(255,255,255,0.7);
    font-size: 0.9rem; font-weight: 500;
    text-decoration: none;
    transition: color 150ms;
}
.pub-nav__links a:hover { color: #fff; }
.pub-nav__cta {
    display: flex; gap: 0.75rem; align-items: center;
}
.pub-nav__btn {
    font-family: var(--font-family-sans);
    font-size: 0.875rem; font-weight: 600;
    padding: 0.5rem 1.25rem;
    border-radius: 0.5rem;
    cursor: pointer;
    text-decoration: none;
    transition: all 150ms;
    border: none;
}
.pub-nav__btn--ghost {
    background: transparent;
    color: rgba(255,255,255,0.75);
    border: 1px solid rgba(255,255,255,0.18);
}
.pub-nav__btn--ghost:hover { background: rgba(255,255,255,0.07); color: #fff; }
.pub-nav__btn--primary {
    background: var(--brand-cta, #e94560);
    color: #fff;
    box-shadow: 0 4px 14px rgba(233,69,96,0.35);
}
.pub-nav__btn--primary:hover { background: var(--brand-cta-dark, #c73652); transform: translateY(-1px); }

/* ── Hero Section ───────────────────────────────────────────────── */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: clamp(6rem, 12vw, 8rem) clamp(1.25rem, 5vw, 3rem) clamp(4rem, 8vw, 6rem);
    background: var(--mkt-dark-bg, #0f0f1a);
    overflow: hidden;
}
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 80% 50% at 50% -10%, rgba(99,102,241,0.28) 0%, transparent 70%),
                radial-gradient(ellipse 60% 40% at 80% 80%, rgba(233,69,96,0.12) 0%, transparent 60%);
    pointer-events: none;
}
.hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.375rem 1rem;
    border-radius: 999px;
    background: rgba(99,102,241,0.12);
    border: 1px solid rgba(99,102,241,0.3);
    font-size: 0.8rem; font-weight: 600;
    color: #a5b4fc;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}
.hero__headline {
    font-family: var(--font-family-display, 'Plus Jakarta Sans', sans-serif);
    font-size: clamp(2.25rem, 6.5vw, 4.5rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.05;
    color: #ffffff;
    margin: 0 0 1.25rem;
    max-width: 820px;
}
.hero__headline em {
    font-style: normal;
    background: linear-gradient(90deg, var(--brand-cta, #e94560), #f97316 60%, #fbbf24);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.hero__sub {
    font-size: clamp(1rem, 2vw, 1.2rem);
    line-height: 1.65;
    color: rgba(255,255,255,0.62);
    max-width: 600px;
    margin: 0 auto 2.5rem;
}
.hero__actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}
.hero__trust {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}
.hero__trust-item {
    font-size: 0.875rem;
    color: rgba(255,255,255,0.45);
    display: flex;
    align-items: center;
    gap: 0.375rem;
}
.hero__trust-item::before { content: '✓'; color: #34d399; font-weight: 700; }

/* ── CTA Buttons (marketing) ──────────────────────────────────── */
.btn-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-family-sans);
    font-size: 1rem; font-weight: 600;
    padding: 0.875rem 2rem;
    border-radius: 0.625rem;
    cursor: pointer;
    text-decoration: none;
    transition: all 180ms cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    line-height: 1;
}
.btn-cta--primary {
    background: var(--brand-cta, #e94560);
    color: #fff;
    box-shadow: 0 6px 20px rgba(233,69,96,0.4);
}
.btn-cta--primary:hover {
    background: var(--brand-cta-dark, #c73652);
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(233,69,96,0.45);
    color: #fff;
    text-decoration: none;
}
.btn-cta--outline {
    background: transparent;
    color: rgba(255,255,255,0.85);
    border: 1.5px solid rgba(255,255,255,0.22);
}
.btn-cta--outline:hover {
    background: rgba(255,255,255,0.06);
    border-color: rgba(255,255,255,0.4);
    color: #fff;
    text-decoration: none;
}
.btn-cta--light {
    background: #ffffff;
    color: var(--color-primary, #6366f1);
    box-shadow: 0 4px 14px rgba(0,0,0,0.1);
}
.btn-cta--light:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.14);
    color: var(--color-primary-dark, #4f46e5);
    text-decoration: none;
}

/* ── Social Proof Bar ───────────────────────────────────────────── */
.social-proof {
    background: #f9fafb;
    padding: 3rem clamp(1.25rem, 5vw, 3rem);
    text-align: center;
    border-top: 1px solid #e5e7eb;
    border-bottom: 1px solid #e5e7eb;
}
.social-proof__overline {
    font-size: 0.75rem; font-weight: 600;
    letter-spacing: 0.12em; text-transform: uppercase;
    color: #9ca3af; margin-bottom: 1.25rem;
}
.social-proof__logos {
    display: flex;
    gap: clamp(1.5rem, 4vw, 3.5rem);
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 2.5rem;
}
.social-proof__logo {
    font-size: 1.05rem; font-weight: 700;
    color: #d1d5db; letter-spacing: 0.04em;
    text-transform: uppercase;
}
.social-proof__stats {
    display: flex;
    gap: clamp(2rem, 6vw, 5rem);
    justify-content: center;
    flex-wrap: wrap;
}
.social-proof__stat-num {
    font-family: var(--font-family-display, sans-serif);
    font-size: clamp(2rem, 5vw, 2.75rem);
    font-weight: 800; letter-spacing: -0.03em;
    color: var(--brand-cta, #e94560);
    display: block;
}
.social-proof__stat-label {
    font-size: 0.875rem; color: #6b7280; margin-top: 0.25rem;
}

/* ── Feature Cards ──────────────────────────────────────────────── */
.features-section {
    padding: clamp(4rem, 8vw, 7rem) clamp(1.25rem, 5vw, 3rem);
    max-width: 1100px;
    margin: 0 auto;
}
.features-section__header { text-align: center; margin-bottom: 3.5rem; }
.features-section__title {
    font-family: var(--font-family-display, sans-serif);
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 800; letter-spacing: -0.03em;
    color: #111827; margin-bottom: 0.75rem;
}
.features-section__sub {
    font-size: 1.05rem; color: #6b7280;
    max-width: 560px; margin: 0 auto;
    line-height: 1.65;
}
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}
.feature-card {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 1rem;
    padding: 1.75rem;
    transition: all 200ms;
    position: relative;
    overflow: hidden;
}
.feature-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(99,102,241,0.03), transparent);
    opacity: 0;
    transition: opacity 200ms;
}
.feature-card:hover {
    border-color: #c7d2fe;
    box-shadow: 0 8px 30px rgba(99,102,241,0.1);
    transform: translateY(-3px);
}
.feature-card:hover::before { opacity: 1; }
.feature-card__icon {
    width: 2.75rem; height: 2.75rem;
    border-radius: 0.75rem;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.375rem;
    margin-bottom: 1.125rem;
    background: linear-gradient(135deg, rgba(99,102,241,0.1), rgba(99,102,241,0.05));
}
.feature-card__title {
    font-family: var(--font-family-display, sans-serif);
    font-size: 1.05rem; font-weight: 700;
    color: #111827; margin-bottom: 0.5rem;
}
.feature-card__body { font-size: 0.9rem; line-height: 1.65; color: #6b7280; }

/* ── Dark CTA Section ───────────────────────────────────────────── */
.cta-dark {
    background: var(--mkt-dark-bg, #0f0f1a);
    padding: clamp(4rem, 8vw, 6rem) clamp(1.25rem, 5vw, 3rem);
    text-align: center;
    position: relative;
    overflow: hidden;
}
.cta-dark::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 70% 60% at 50% 50%, rgba(99,102,241,0.18) 0%, transparent 70%);
}
.cta-dark__eyebrow {
    font-size: 0.78rem; font-weight: 600; letter-spacing: 0.1em;
    text-transform: uppercase; color: #818cf8;
    margin-bottom: 1rem; position: relative;
}
.cta-dark__title {
    font-family: var(--font-family-display, sans-serif);
    font-size: clamp(1.75rem, 4vw, 2.75rem);
    font-weight: 800; letter-spacing: -0.03em;
    color: #ffffff; margin-bottom: 0.875rem;
    position: relative;
}
.cta-dark__sub {
    font-size: 1rem; color: rgba(255,255,255,0.55);
    margin-bottom: 2.5rem; position: relative;
}

/* ── Testimonial ─────────────────────────────────────────────────── */
.testimonial-section {
    padding: clamp(4rem, 8vw, 6rem) clamp(1.25rem, 5vw, 3rem);
    max-width: 860px;
    margin: 0 auto;
    text-align: center;
}
.testimonial-quote {
    font-size: clamp(1.1rem, 2.5vw, 1.4rem);
    font-style: italic;
    color: #374151;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    position: relative;
}
.testimonial-quote::before {
    content: '"';
    font-size: 5rem; line-height: 0; vertical-align: -0.4em;
    color: #e5e7eb;
    font-family: Georgia, serif; font-style: normal;
    margin-right: 0.25rem;
}
.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.875rem;
}
.testimonial-avatar {
    width: 2.5rem; height: 2.5rem;
    border-radius: 50%;
    background: var(--gradient-brand);
    display: flex; align-items: center; justify-content: center;
    font-weight: 700; color: #fff; font-size: 0.875rem;
}
.testimonial-name { font-weight: 600; color: #111827; font-size: 0.95rem; }
.testimonial-role { font-size: 0.8rem; color: #9ca3af; }

/* ── Lead Capture ────────────────────────────────────────────────── */
.lead-capture {
    background: #f9fafb;
    border-top: 1px solid #e5e7eb;
    padding: clamp(4rem, 8vw, 6rem) clamp(1.25rem, 5vw, 3rem);
    text-align: center;
}
.lead-capture__title {
    font-family: var(--font-family-display, sans-serif);
    font-size: clamp(1.5rem, 3.5vw, 2.25rem);
    font-weight: 800; letter-spacing: -0.03em;
    color: #111827; margin-bottom: 0.75rem;
}
.lead-capture__sub { font-size: 1rem; color: #6b7280; margin-bottom: 2rem; }
.lead-capture__form {
    display: flex;
    gap: 0.75rem;
    justify-content: center;
    flex-wrap: wrap;
    max-width: 480px;
    margin: 0 auto;
}
.lead-input {
    flex: 1; min-width: 220px;
    padding: 0.75rem 1rem;
    border: 1.5px solid #d1d5db;
    border-radius: 0.625rem;
    font-family: var(--font-family-sans);
    font-size: 0.95rem;
    outline: none;
    transition: border-color 150ms;
}
.lead-input:focus { border-color: var(--color-primary, #6366f1); }

/* ── Public Footer ──────────────────────────────────────────────── */
.pub-footer {
    background: var(--mkt-dark-bg, #0f0f1a);
    padding: clamp(2.5rem, 5vw, 4rem) clamp(1.25rem, 5vw, 3rem) 1.5rem;
    color: rgba(255,255,255,0.5);
    font-size: 0.875rem;
}
.pub-footer__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 2.5rem;
    margin-bottom: 3rem;
}
.pub-footer__brand-col { max-width: 260px; }
.pub-footer__tagline { font-size: 0.875rem; line-height: 1.65; color: rgba(255,255,255,0.42); margin-top: 0.75rem; }
.pub-footer__col-title {
    font-size: 0.8rem; font-weight: 600;
    letter-spacing: 0.08em; text-transform: uppercase;
    color: rgba(255,255,255,0.6); margin-bottom: 1rem;
}
.pub-footer__links { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 0.5rem; }
.pub-footer__links a { color: rgba(255,255,255,0.45); text-decoration: none; transition: color 150ms; }
.pub-footer__links a:hover { color: rgba(255,255,255,0.8); }
.pub-footer__bottom {
    border-top: 1px solid rgba(255,255,255,0.07);
    padding-top: 1.5rem;
    display: flex; justify-content: space-between; align-items: center;
    flex-wrap: wrap; gap: 0.75rem;
}

/* ===================================================================
   PRICING PAGE
   =================================================================== */
.pricing-page {
    font-family: var(--font-family-sans);
    background: #ffffff;
    min-height: 100vh;
}
.pricing-hero {
    background: var(--gradient-hero, linear-gradient(135deg, #0f0f1a, #1a1a2e));
    padding: clamp(4rem, 8vw, 6rem) clamp(1.25rem, 5vw, 3rem) clamp(3rem, 6vw, 5rem);
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}
.pricing-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 60% 50% at 50% 0%, rgba(99,102,241,0.25), transparent 70%);
}
.pricing-hero__title {
    font-family: var(--font-family-display, sans-serif);
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800; letter-spacing: -0.03em;
    color: #fff; position: relative;
}
.pricing-hero__sub { font-size: 1.1rem; color: rgba(255,255,255,0.65); margin-top: 0.75rem; position: relative; }
.pricing-toggle {
    display: flex;
    gap: 0.875rem;
    justify-content: center;
    align-items: center;
    margin-top: 1.75rem;
    position: relative;
    font-size: 0.9rem; color: rgba(255,255,255,0.8);
}
.pricing-badge-yearly {
    background: var(--brand-cta, #e94560);
    color: #fff;
    padding: 0.15rem 0.55rem;
    border-radius: 999px;
    font-size: 0.75rem; font-weight: 700;
    margin-left: 0.35rem;
}
.plans-section {
    padding: clamp(2.5rem, 5vw, 4rem) clamp(1.25rem, 5vw, 3rem);
    max-width: 1200px;
    margin: 0 auto;
}
.plan-card {
    background: #ffffff;
    border: 1.5px solid #e5e7eb;
    border-radius: 1.25rem;
    padding: 2rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: all 200ms;
    position: relative;
}
.plan-card:hover { box-shadow: 0 12px 40px rgba(0,0,0,0.1); transform: translateY(-3px); }
.plan-card--popular {
    border-color: var(--brand-cta, #e94560);
    box-shadow: 0 0 0 4px rgba(233,69,96,0.08), 0 12px 40px rgba(233,69,96,0.12);
}
.plan-card__popular-badge {
    position: absolute;
    top: -1px; left: 50%;
    transform: translateX(-50%);
    background: var(--brand-cta, #e94560);
    color: #fff;
    font-size: 0.7rem; font-weight: 700;
    letter-spacing: 0.06em; text-transform: uppercase;
    padding: 0.3rem 1rem;
    border-radius: 0 0 0.625rem 0.625rem;
}
.plan-card__name {
    font-size: 0.75rem; font-weight: 700;
    letter-spacing: 0.1em; text-transform: uppercase;
    color: var(--brand-cta, #e94560); margin-bottom: 0.5rem;
}
.plan-card__price {
    font-family: var(--font-family-display, sans-serif);
    font-size: 2.75rem; font-weight: 800;
    letter-spacing: -0.03em; color: #111827;
    line-height: 1;
}
.plan-card__price-period { font-size: 1rem; font-weight: 400; color: #9ca3af; }
.plan-card__yearly-note { font-size: 0.8rem; color: var(--brand-cta, #e94560); margin-top: 0.25rem; }
.plan-card__divider { border: none; border-top: 1px solid #f3f4f6; margin: 1.25rem 0; }
.plan-card__features {
    list-style: none; padding: 0; margin: 0 0 1.5rem;
    display: flex; flex-direction: column; gap: 0.625rem;
    flex-grow: 1;
}
.plan-card__feature {
    display: flex; gap: 0.625rem; align-items: flex-start;
    font-size: 0.9rem; color: #374151;
}
.plan-card__feature::before {
    content: '✓';
    color: var(--color-success, #10b981);
    font-weight: 700; flex-shrink: 0;
    margin-top: 0.05rem;
}
.plan-card__cta { margin-top: auto; }

/* ===================================================================
   AUTH PAGES — SPLIT SCREEN
   =================================================================== */
.auth-page {
    display: flex;
    min-height: 100vh;
    font-family: var(--font-family-sans);
}

/* Left brand panel */
.auth-brand {
    flex: 0 0 44%;
    background: var(--mkt-dark-bg, #0f0f1a);
    position: relative;
    display: flex;
    flex-direction: column;
    padding: 2.5rem 3rem;
    overflow: hidden;
}
.auth-brand::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 80% 60% at 20% 20%, rgba(99,102,241,0.25) 0%, transparent 65%),
                radial-gradient(ellipse 50% 40% at 80% 80%, rgba(233,69,96,0.15) 0%, transparent 55%);
    pointer-events: none;
}
.auth-brand__logo {
    display: flex; align-items: center; gap: 0.625rem;
    text-decoration: none; position: relative; flex-shrink: 0;
}
.auth-brand__mark {
    width: 2.25rem; height: 2.25rem; border-radius: 0.6rem;
    background: var(--gradient-brand, linear-gradient(135deg, #6366f1, #e94560));
    display: flex; align-items: center; justify-content: center;
    font-weight: 800; font-size: 0.95rem; color: #fff;
    box-shadow: 0 6px 20px rgba(99,102,241,0.35);
}
.auth-brand__name {
    font-family: var(--font-family-display, sans-serif);
    font-weight: 700; font-size: 1.1rem;
    color: #fff; letter-spacing: -0.01em;
}
.auth-brand__content {
    flex: 1; display: flex; flex-direction: column;
    justify-content: center; position: relative;
    padding-top: 3rem;
}
.auth-brand__headline {
    font-family: var(--font-family-display, sans-serif);
    font-size: clamp(1.75rem, 3.5vw, 2.5rem);
    font-weight: 800; letter-spacing: -0.03em;
    color: #fff; line-height: 1.15;
    margin-bottom: 1rem;
}
.auth-brand__headline em {
    font-style: normal;
    background: linear-gradient(90deg, var(--brand-cta, #e94560), #f97316 60%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.auth-brand__sub {
    font-size: 1rem; line-height: 1.65;
    color: rgba(255,255,255,0.58);
    margin-bottom: 2.5rem;
    max-width: 340px;
}
.auth-brand__features {
    display: flex; flex-direction: column; gap: 0.875rem;
    margin-bottom: 2.5rem;
}
.auth-brand__feature {
    display: flex; gap: 0.75rem; align-items: flex-start;
}
.auth-brand__feature-icon {
    width: 2rem; height: 2rem; border-radius: 0.5rem;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    display: flex; align-items: center; justify-content: center;
    font-size: 0.9rem; flex-shrink: 0; margin-top: 0.05rem;
}
.auth-brand__feature-text strong {
    display: block; font-size: 0.875rem; font-weight: 600;
    color: rgba(255,255,255,0.9); margin-bottom: 0.125rem;
}
.auth-brand__feature-text span {
    font-size: 0.8rem; color: rgba(255,255,255,0.45);
}
.auth-brand__testimonial {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 0.875rem;
    padding: 1.125rem 1.25rem;
    position: relative;
}
.auth-brand__testimonial-quote {
    font-size: 0.875rem; line-height: 1.65;
    color: rgba(255,255,255,0.65);
    font-style: italic;
    margin-bottom: 0.75rem;
}
.auth-brand__testimonial-author {
    display: flex; align-items: center; gap: 0.625rem;
}
.auth-brand__testimonial-avatar {
    width: 1.875rem; height: 1.875rem;
    border-radius: 50%;
    background: var(--gradient-brand);
    display: flex; align-items: center; justify-content: center;
    font-weight: 700; color: #fff; font-size: 0.7rem;
}
.auth-brand__testimonial-name {
    font-size: 0.8rem; font-weight: 600;
    color: rgba(255,255,255,0.75);
}
.auth-brand__testimonial-role {
    font-size: 0.75rem; color: rgba(255,255,255,0.38);
}
.auth-brand__stats {
    display: flex; gap: 2rem; margin-top: 2rem;
}
.auth-brand__stat-num {
    font-family: var(--font-family-display, sans-serif);
    font-size: 1.625rem; font-weight: 800;
    letter-spacing: -0.03em;
    background: var(--gradient-brand);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
}
.auth-brand__stat-label { font-size: 0.75rem; color: rgba(255,255,255,0.4); }

/* Right form panel */
.auth-form-panel {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 3rem clamp(1.5rem, 5vw, 3.5rem);
    background: #ffffff;
    overflow-y: auto;
}
.auth-form-inner {
    width: 100%;
    max-width: 420px;
}
.auth-form-header { text-align: center; margin-bottom: 2rem; }
.auth-form-title {
    font-family: var(--font-family-display, sans-serif);
    font-size: 1.625rem; font-weight: 800;
    letter-spacing: -0.02em; color: #111827;
    margin-bottom: 0.375rem;
}
.auth-form-subtitle { font-size: 0.9rem; color: #6b7280; }
.auth-form-footer {
    text-align: center;
    margin-top: 1.5rem;
    font-size: 0.875rem; color: #6b7280;
}
.auth-form-footer a { color: var(--color-primary, #6366f1); font-weight: 500; }
.auth-form-footer a:hover { text-decoration: underline; }

/* Mobile: stack vertically */
@media (max-width: 768px) {
    .auth-page { flex-direction: column; }
    .auth-brand { flex: none; min-height: 220px; padding: 1.75rem 1.5rem; }
    .auth-brand__content { display: none; }
    .auth-brand__logo { display: flex; }
    .auth-form-panel { padding: 2rem 1.25rem; }
    .pub-nav__links { display: none; }
}

/* ===================================================================
   CONTACT / FAQ / LEGAL – generic public page shell
   =================================================================== */
.pub-page {
    font-family: var(--font-family-sans);
    background: #ffffff;
    min-height: 100vh;
}
.pub-page-hero {
    background: var(--gradient-hero);
    padding: clamp(4rem, 8vw, 5.5rem) clamp(1.25rem, 5vw, 3rem) clamp(2.5rem, 5vw, 4rem);
    text-align: center; color: #fff; position: relative; overflow: hidden;
}
.pub-page-hero::before {
    content: ''; position: absolute; inset: 0;
    background: radial-gradient(ellipse 60% 50% at 50% 0%, rgba(99,102,241,0.2), transparent 70%);
}
.pub-page-hero__title {
    font-family: var(--font-family-display, sans-serif);
    font-size: clamp(1.75rem, 4vw, 2.75rem);
    font-weight: 800; letter-spacing: -0.03em;
    color: #fff; position: relative;
}
.pub-page-hero__sub {
    font-size: 1rem; color: rgba(255,255,255,0.6);
    margin-top: 0.625rem; position: relative;
}
.pub-page-content {
    max-width: 860px; margin: 0 auto;
    padding: clamp(3rem, 6vw, 5rem) clamp(1.25rem, 5vw, 2rem);
}

/* ===================================================================
   MARKETING ONE-PAGE EXTENSIONS
   =================================================================== */
.lang-toggle {
    display: inline-flex;
    align-items: center;
    padding: 0.2rem;
    border-radius: 999px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.12);
}

.lang-toggle__btn {
    border: none;
    background: transparent;
    color: rgba(255,255,255,0.7);
    border-radius: 999px;
    padding: 0.35rem 0.7rem;
    font-size: 0.75rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 150ms ease;
}

.lang-toggle__btn--active {
    background: rgba(255,255,255,0.16);
    color: #fff;
}

.hero-metrics {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
    width: min(100%, 64rem);
    margin-top: 3rem;
}

.hero-metric-card {
    padding: 1.25rem;
    text-align: left;
    border-radius: 1rem;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
    box-shadow: 0 16px 40px rgba(0,0,0,0.22);
}

.hero-metric-card__value {
    font-size: 1.65rem;
    font-weight: 800;
    color: #fff;
    letter-spacing: -0.03em;
}

.hero-metric-card__label {
    margin-top: 0.45rem;
    font-size: 0.95rem;
    line-height: 1.5;
    color: rgba(255,255,255,0.68);
}

.section-shell {
    padding: clamp(4rem, 8vw, 6rem) clamp(1.25rem, 5vw, 3rem);
}

.section-shell--light {
    background: #ffffff;
}

.section-shell--dark {
    background:
        radial-gradient(circle at top left, rgba(99,102,241,0.18), transparent 35%),
        radial-gradient(circle at bottom right, rgba(233,69,96,0.14), transparent 30%),
        #0f0f1a;
}

.section-shell__header {
    max-width: 52rem;
    margin: 0 auto 2.75rem;
    text-align: center;
}

.section-shell__header--dark {
    color: #fff;
}

.section-shell__title {
    margin: 0.6rem 0 1rem;
    font-family: var(--font-family-display, 'Plus Jakarta Sans', sans-serif);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.03em;
    color: #111827;
}

.section-shell__title--light {
    color: #fff;
}

.section-shell__sub {
    margin: 0;
    font-size: 1rem;
    line-height: 1.75;
    color: #6b7280;
}

.section-shell__sub--light {
    color: rgba(255,255,255,0.68);
}

.feature-grid--marketing {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.25rem;
    max-width: 76rem;
    margin: 0 auto;
}

.feature-card--left {
    text-align: left;
}

.journey-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
    max-width: 76rem;
    margin: 0 auto;
}

.journey-card {
    padding: 1.5rem;
    border-radius: 1.25rem;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
    color: #fff;
}

.journey-card__step {
    display: inline-flex;
    min-width: 3rem;
    padding: 0.35rem 0.7rem;
    border-radius: 999px;
    margin-bottom: 1rem;
    background: rgba(99,102,241,0.18);
    color: #c7d2fe;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.08em;
}

.journey-card__title {
    margin: 0 0 0.75rem;
    font-size: 1.15rem;
    font-weight: 700;
    line-height: 1.3;
}

.journey-card__body {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.7;
    color: rgba(255,255,255,0.7);
}

.use-case-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.25rem;
    max-width: 76rem;
    margin: 0 auto;
}

.use-case-card {
    padding: 1.5rem;
    border-radius: 1.25rem;
    background: #fff;
    border: 1px solid #e5e7eb;
    box-shadow: 0 20px 40px rgba(15,23,42,0.06);
}

.use-case-card__eyebrow {
    color: var(--brand-cta, #e94560);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 0.75rem;
    font-weight: 700;
}

.use-case-card__title {
    margin: 0.75rem 0 0.8rem;
    font-size: 1.2rem;
    font-weight: 700;
    color: #111827;
}

.use-case-card__body {
    margin: 0 0 1rem;
    font-size: 0.96rem;
    line-height: 1.7;
    color: #6b7280;
}

.use-case-card__list {
    margin: 0;
    padding-left: 1.1rem;
    color: #374151;
    display: grid;
    gap: 0.5rem;
}

.cta-dark__actions {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.lead-capture__panel {
    max-width: 52rem;
    margin: 0 auto;
    text-align: center;
}

.lead-consent {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    text-align: left;
    font-size: 0.9rem;
    line-height: 1.65;
    color: #6b7280;
}

.lead-capture__submit {
    width: 100%;
    justify-content: center;
}

.faq-grid {
    display: grid;
    gap: 1rem;
    max-width: 56rem;
    margin: 0 auto;
}

.faq-item {
    border: 1px solid #e5e7eb;
    border-radius: 1rem;
    background: #fff;
    padding: 1rem 1.25rem;
    box-shadow: 0 16px 32px rgba(15,23,42,0.04);
}

.faq-item summary {
    cursor: pointer;
    font-weight: 700;
    color: #111827;
    list-style: none;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item p {
    margin: 0.9rem 0 0;
    color: #6b7280;
    line-height: 1.7;
}

.pub-footer__brandline {
    display: flex;
    align-items: center;
    gap: 0.625rem;
}

.pub-footer__brandmark {
    width: 2rem;
    height: 2rem;
    border-radius: 0.5rem;
    background: linear-gradient(135deg, #6366f1, #e94560);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 800;
}

.pub-footer__brandname {
    color: rgba(255,255,255,0.92);
    font-weight: 700;
    font-size: 1rem;
}

.landing-redirect {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    background:
        radial-gradient(circle at top, rgba(99,102,241,0.18), transparent 32%),
        radial-gradient(circle at bottom, rgba(233,69,96,0.14), transparent 24%),
        #0f0f1a;
}

.landing-redirect__panel {
    width: min(100%, 24rem);
    padding: 2rem;
    text-align: center;
    border-radius: 1.5rem;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
}

.landing-redirect__logo {
    width: 3.25rem;
    height: 3.25rem;
    margin: 0 auto 1rem;
    border-radius: 1rem;
    background: linear-gradient(135deg, #6366f1, #e94560);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: 800;
    color: #fff;
}

.landing-redirect__title {
    margin: 0;
    color: #fff;
    font-size: 1.5rem;
    letter-spacing: -0.03em;
}

.landing-redirect__copy {
    margin: 0.75rem 0 0;
    color: rgba(255,255,255,0.7);
}

@media (max-width: 1100px) {
    .feature-grid--marketing,
    .use-case-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .journey-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 860px) {
    .pub-nav {
        height: auto;
        padding-top: 1rem;
        padding-bottom: 1rem;
        gap: 1rem;
        flex-wrap: wrap;
    }

    .pub-nav__links {
        order: 3;
        width: 100%;
        justify-content: center;
        gap: 1rem;
        flex-wrap: wrap;
    }

    .hero {
        padding-top: 9rem;
    }

    .hero-metrics,
    .feature-grid--marketing,
    .journey-grid,
    .use-case-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .pub-nav__cta {
        width: 100%;
        justify-content: space-between;
        flex-wrap: wrap;
    }

    .pub-footer__grid,
    .pub-footer__bottom {
        flex-direction: column;
        text-align: left;
    }

    .cta-dark__actions,
    .hero__actions {
        flex-direction: column;
    }

    .btn-cta,
    .pub-nav__btn {
        width: 100%;
        justify-content: center;
    }
}
