/* BoostKlient Landing Page — Stitch AutoPilot Pro design system */
/* Primary: #7c3aed | Bg: #f9f9ff | Fonts: Hanken Grotesk + Inter */

@import url('https://fonts.googleapis.com/css2?family=Hanken+Grotesk:wght@400;600;700&family=Inter:wght@400;500;600&display=swap');

/* ===== FORCE LIGHT MODE — landing always light regardless of data-theme ===== */
/* Stitch colors: background=#f9f9ff, surface=#ffffff, on-background=#111c2d */

/* :has() selector — no JS, no FOUC, works in all modern browsers */
body:has(.landing-root),
body.bk-landing {
    background: #f9f9ff !important;
    color: #111c2d !important;
}

.landing-root {
    /* CSS custom property overrides — cascade to all children */
    --bg-page:        #f9f9ff;
    --bg-section:     #ffffff;
    --bg-section-alt: #f0f3ff;
    --bg-card:        #ffffff;
    --bg-card-hover:  #f8fafc;
    --text-primary:   #111c2d;
    --text-secondary: #4a4455;
    --text-muted:     #7b7487;
    --primary:        #7c3aed;
    --primary-hover:  #6d28d9;
    --primary-dim:    rgba(124,58,237,0.10);
    --primary-border: rgba(124,58,237,0.25);
    --border:         rgba(0,0,0,0.08);
    --border-strong:  rgba(0,0,0,0.13);
    --shadow-sm:      0 1px 3px rgba(0,0,0,0.06);
    --shadow-md:      0 4px 16px rgba(30,41,59,0.07);
    --shadow-hover:   0 8px 28px rgba(124,58,237,0.15);
    --shadow-lg:      0 12px 32px rgba(0,0,0,0.12);

    background: #f9f9ff;
    color: #111c2d;
}

/* ===== BASE ===== */
.landing-root { font-family: 'Inter', sans-serif; }

/* Override site.css global gold gradient on h1-h6 */
.landing-root h1,
.landing-root h2,
.landing-root h3,
.landing-root h4,
.landing-root h5,
.landing-root h6 {
    font-family: 'Hanken Grotesk', sans-serif !important;
    font-weight: 700 !important;
    color: #111c2d !important;
    background: none !important;
    -webkit-background-clip: unset !important;
    background-clip: unset !important;
    -webkit-text-fill-color: #111c2d !important;
}

/* Force exact Stitch section backgrounds */
.landing-root .hero-section     { background: #ffffff !important; }
.landing-root .section-white    { background: #ffffff !important; }
.landing-root .section-alt      { background: #f0f3ff !important; }
.landing-root .stats-bar        { background: #ffffff !important; border-color: rgba(0,0,0,0.07) !important; }
.landing-root .pin-image        { background: #ffffff !important; }
.landing-root .pin-mockup       { background: #ffffff !important; }

/* ===== PIN BORDER WRAP ===== */
/* Reuses @property --gradient-angle and @keyframes quiz-border-rotate from Quiz section */
.pin-border-wrap {
    padding: 2px;
    border-radius: 12px; /* 10px (.pin-mockup border-radius) + 2px */
    background: conic-gradient(
        from var(--gradient-angle, 0deg),
        var(--pin-border-from)  0%,
        var(--pin-border-to)   35%,
        var(--pin-border-from) 40%,
        var(--pin-border-from) 55%,
        var(--pin-border-to)   88%,
        var(--pin-border-from) 93%
    );
    animation: quiz-border-rotate 4s linear infinite;
    transition: transform 0.2s ease;
    display: block;
}
.pin-border-wrap:hover { transform: translateY(-6px); }
/* Disable pin-mockup's own hover lift when inside wrapper */
.pin-border-wrap .pin-mockup:hover { transform: none; }
/* Problem cards inside wrapper: remove own border, match inner radius to wrapper-2px */
.pin-border-wrap .problem-card { border: none; border-radius: 10px; }
/* Stitch cards: border-radius 16px → wrapper needs 18px */
.pin-border-wrap:has(.stitch-card) { border-radius: 18px; }
.pin-border-wrap .stitch-card { border: none; height: 100%; box-sizing: border-box; }
.pin-border-wrap .stitch-card:hover { transform: none; }
/* Testimonial wrap: border-radius 16px → wrapper needs 18px */
.pin-border-wrap:has(.tst-wrap) { border-radius: 18px; }
.pin-border-wrap .tst-wrap { border: none; }
/* Telegram card: border-radius 20px → wrapper needs 22px */
.pin-border-wrap:has(.tg-card) { border-radius: 22px; }
.pin-border-wrap .tg-card { border: none; box-shadow: none; }
.pin-border-wrap:has(.cta-banner) { border-radius: 22px; }
.pin-border-wrap .cta-banner { border: none; border-radius: 20px; }
.pin-border-wrap:has(.cta-banner):hover { transform: none; }
.pin-border-wrap:has(.faq-item) { border-radius: 14px; }
.pin-border-wrap .faq-item { border: none; border-radius: 12px; }
.pin-border-wrap:has(.faq-item):hover { transform: none; }

/* ===== HERO ===== */
.hero-section {
    background: var(--bg-section, #ffffff);
    padding: 5rem 0 4rem;
}
.hero-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}
@media (min-width: 768px) {
    .hero-grid { grid-template-columns: 1fr 1fr; }
}
.hero-title {
    font-family: 'Hanken Grotesk', sans-serif;
    font-size: clamp(2.25rem, 5vw, 3.5rem);
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.02em;
    color: var(--text-primary, #111c2d);
    margin-bottom: 1.25rem;
}
.hero-title .accent {
    color: #7c3aed !important;
    -webkit-text-fill-color: #7c3aed !important;
    background: none !important;
}
.hero-subtitle {
    font-size: 1.125rem;
    line-height: 1.75;
    color: var(--text-secondary, #4a4455);
    max-width: 520px;
    margin-bottom: 2rem;
}
.hero-cta-row { display: flex; flex-wrap: wrap; gap: 1rem; margin-bottom: 2rem; }
.hero-checks  { display: flex; flex-wrap: wrap; gap: 0.75rem 1.5rem; margin-bottom: 2rem; }
.hero-check   { display: flex; align-items: center; gap: 6px; font-size: 0.875rem; font-weight: 500; color: var(--text-secondary, #4a4455); }
.hero-check-icon { color: var(--primary, #7c3aed); flex-shrink: 0; }
.hero-robot-wrap { position: relative; display: flex; justify-content: center; }
.hero-robot-glow {
    position: absolute; inset: 0;
    background: radial-gradient(ellipse at center, rgba(124,58,237,0.18) 0%, transparent 70%);
    border-radius: 50%; pointer-events: none;
}
.hero-robot-img {
    position: relative; z-index: 1;
    width: 100%; max-width: 480px; height: auto;
    filter: drop-shadow(0 20px 60px rgba(124,58,237,0.2));
}

/* ===== PILLS ===== */
.pill {
    display: inline-flex; align-items: center; gap: 6px;
    border-radius: 100px; padding: 5px 16px;
    font-size: 0.8125rem; font-weight: 500; margin-bottom: 0.75rem;
}
.pill-violet { background: rgba(124,58,237,0.1); border: 1px solid rgba(124,58,237,0.22); color: var(--primary, #7c3aed); }
.pill-red    { background: rgba(220,38,38,0.1);  border: 1px solid rgba(220,38,38,0.22);  color: #b91c1c; }
.pill-green  { background: rgba(22,163,74,0.1);  border: 1px solid rgba(22,163,74,0.22);  color: #15803d; }

/* ===== AVATARS ===== */
.avatar-group { display: flex; align-items: center; }
.avatar-ring {
    width: 52px; height: 52px; border-radius: 50%;
    border: 3px solid rgba(124,58,237,0.5); object-fit: cover; object-position: top;
    box-shadow: 0 0 0 2px var(--bg-section, #fff); flex-shrink: 0;
}
.avatar-ring + .avatar-ring { margin-left: -16px; }
.avatar-plus {
    width: 52px; height: 52px; border-radius: 50%;
    border: 3px solid rgba(124,58,237,0.5); background: rgba(124,58,237,0.12);
    display: flex; align-items: center; justify-content: center;
    margin-left: -16px; font-size: 18px; font-weight: 700;
    color: var(--primary, #7c3aed); box-shadow: 0 0 0 2px var(--bg-section, #fff);
}
.social-proof-count {
    font-family: 'Hanken Grotesk', sans-serif; font-size: 2rem; font-weight: 700;
    color: var(--primary, #7c3aed); line-height: 1;
}
.social-proof-label { color: var(--text-secondary, #4a4455); font-size: 0.9rem; margin-top: 2px; }

/* ===== CHECK PILLS ===== */
.check-pill {
    display: inline-flex; align-items: center; gap: 8px;
    background: var(--bg-section-alt, #f8fafc); border: 1px solid var(--border, rgba(0,0,0,0.08));
    border-radius: 100px; padding: 8px 18px; font-size: 0.875rem; color: var(--text-secondary, #4a4455);
}
.check-pill svg { color: #16a34a; flex-shrink: 0; }

/* ===== STATS BAR ===== */
.stats-bar { background: var(--bg-section-alt, #f8fafc); border-top: 1px solid var(--border, rgba(0,0,0,0.07)); border-bottom: 1px solid var(--border, rgba(0,0,0,0.07)); padding: 2.5rem 0; }
.stats-divider { width: 1px; background: var(--border, rgba(0,0,0,0.1)); align-self: stretch; }
.stat-num { font-family: 'Hanken Grotesk', sans-serif; font-size: 2.25rem; font-weight: 800; color: var(--primary, #7c3aed); line-height: 1; }
.stat-lbl { font-size: 0.8125rem; color: var(--text-muted, #94a3b8); margin-top: 4px; }

/* ===== SECTION HEADINGS ===== */
.section-heading {
    font-family: 'Hanken Grotesk', sans-serif;
    font-size: clamp(1.75rem, 4vw, 2.5rem); font-weight: 700;
    letter-spacing: -0.015em; color: var(--text-primary, #111c2d); margin-bottom: 1rem;
}
.section-sub { font-size: 1.0625rem; color: var(--text-secondary, #4a4455); max-width: 600px; margin: 0 auto; }

/* ===== STITCH FEATURE CARDS (robots) ===== */
.stitch-card {
    background: var(--bg-card, #ffffff);
    border: 1px solid var(--border-strong, rgba(0,0,0,0.1));
    border-radius: 16px; padding: 2rem;
    box-shadow: var(--shadow-sm); transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.stitch-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
    border-color: var(--primary-border);
}
.stitch-card-img-wrap {
    height: 200px; border-radius: 12px; margin-bottom: 1.5rem;
    background: #ffffff;
    display: flex; align-items: center; justify-content: center; overflow: hidden;
}
.stitch-card-img { height: 100%; width: auto; object-fit: contain; }
.stitch-card-title { font-family: 'Hanken Grotesk', sans-serif; font-size: 1.25rem; font-weight: 700; color: var(--text-primary, #111c2d); margin-bottom: 0.5rem; }
.stitch-card-desc  { font-size: 0.9375rem; color: var(--text-secondary, #4a4455); line-height: 1.65; }

/* ===== PIN BACKGROUNDS ===== */
.pin-bg-pink      { background: linear-gradient(160deg, #fce7f3 0%, #fbcfe8 40%, #f9a8d4 100%); }
.pin-bg-purple-img{ background: linear-gradient(160deg, #ede9fe 0%, #ddd6fe 40%, #c4b5fd 100%); }
.pin-bg-blue      { background: linear-gradient(160deg, #dbeafe 0%, #bfdbfe 40%, #93c5fd 100%); }
.pin-bg-green     { background: linear-gradient(160deg, #d1fae5 0%, #a7f3d0 40%, #6ee7b7 100%); }
.pin-bg-orange    { background: linear-gradient(160deg, #ffedd5 0%, #fed7aa 40%, #fdba74 100%); }
.pin-bg-teal      { background: linear-gradient(160deg, #ccfbf1 0%, #99f6e4 40%, #5eead4 100%); }
.pin-bg-violet    { background: linear-gradient(160deg, #ede9fe 0%, #c4b5fd 50%, #a78bfa 100%); }
.pin-bg-rose      { background: linear-gradient(160deg, #ffe4e6 0%, #fecdd3 40%, #fda4af 100%); }
.pin-bg-emerald   { background: linear-gradient(160deg, #d1fae5 0%, #6ee7b7 50%, #34d399 100%); }
.pin-bg-navy      { background: linear-gradient(160deg, #1e3a5f 0%, #1e40af 50%, #1d4ed8 100%); }
.pin-bg-purple    { background: linear-gradient(160deg, #4c1d95 0%, #6d28d9 50%, #7c3aed 100%); }
.pin-bg-cyan      { background: linear-gradient(160deg, #0e7490 0%, #0891b2 50%, #06b6d4 100%); }
.pin-bg-amber     { background: linear-gradient(160deg, #78350f 0%, #b45309 50%, #d97706 100%); }
.pin-bg-cta       { background: linear-gradient(135deg, #ede0ff 0%, #ddd6fe 55%, #ede0ff 100%); }
.pin-bg-violet-t  { background: linear-gradient(135deg, rgba(109,40,217,0.08) 0%, rgba(124,58,237,0.12) 100%); border: 1px solid rgba(124,58,237,0.12); }
.pin-bg-blue-t    { background: linear-gradient(135deg, rgba(29,78,216,0.08) 0%, rgba(37,99,235,0.12) 100%); border: 1px solid rgba(37,99,235,0.12); }
.pin-img-abs      { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.pin-img-pos-1    { object-position: center 115px; }
.pin-img-pos-2    { object-position: center 50px; }
.pin-img-pos-bottom { object-position: bottom; transform: translateY(40px); }

/* ===== STEP BADGES ===== */
.step-badge   { display: inline-block; font-size: 11px; font-weight: 700; padding: 3px 12px; border-radius: 100px; color: #fff; margin-bottom: 8px; text-transform: uppercase; letter-spacing: 0.04em; }
.step-badge-1 { background: linear-gradient(to right, #7c3aed, #2563eb); }
.step-badge-2 { background: linear-gradient(to right, #db2777, #e11d48); }
.step-badge-3 { background: linear-gradient(to right, #16a34a, #059669); }

/* ===== PROBLEM CARDS ===== */
.problem-card {
    background: var(--bg-card, #fff); border: 1px solid var(--border, rgba(0,0,0,0.08));
    border-radius: 14px; padding: 1.5rem;
    box-shadow: var(--shadow-sm); transition: all 0.18s ease;
}
.problem-card:hover { box-shadow: var(--shadow-md); }
.problem-title { font-family: 'Hanken Grotesk', sans-serif; font-size: 1rem; font-weight: 700; color: var(--text-primary, #111c2d); margin-bottom: 0.5rem; }
.problem-desc  { font-size: 0.875rem; color: var(--text-secondary, #4a4455); line-height: 1.7; }

/* ===== QUIZ ===== */

/* Rotating border: registers --gradient-angle as animatable so conic-gradient can transition smoothly */
@property --gradient-angle {
    syntax: '<angle>';
    inherits: false;
    initial-value: 0deg;
}

@keyframes quiz-border-rotate {
    to { --gradient-angle: 360deg; }
}

/* Gradient scoping via data-role — add new card: [data-role="X"] + CSS vars in theme.css */
[data-role="shop"]    { --g-from: var(--quiz-shop-from);    --g-to: var(--quiz-shop-to);    }
[data-role="smm"]     { --g-from: var(--quiz-smm-from);     --g-to: var(--quiz-smm-to);     }
[data-role="blogger"] { --g-from: var(--quiz-blogger-from); --g-to: var(--quiz-blogger-to); }

.quiz-card {
    position: relative;
    height: 220px;
    cursor: pointer;
    border: none;
    background: transparent;
    padding: 0;
    overflow: visible;
    display: block;
    width: 100%;
    transition: all 0.5s ease;
}
.quiz-card:hover { z-index: 1; transform: translateX(-20px); }

/* Skewed gradient panels */
.quiz-card-glow {
    position: absolute;
    top: 0; left: 50px;
    width: 50%; height: 100%;
    border-radius: 14px;
    transform: skewX(15deg);
    transition: all 0.5s ease;
    background: linear-gradient(315deg, var(--g-from), var(--g-to));
    pointer-events: none;
    opacity: 0;
}
.quiz-card-glow--blur { filter: blur(30px); }
.quiz-card:hover .quiz-card-glow {
    opacity: 1;
    transform: skewX(0deg);
    left: 20px;
    width: calc(100% - 90px);
}

/* Animated blobs */
.quiz-card-blobs {
    pointer-events: none;
    position: absolute;
    inset: 0;
    z-index: 10;
}
.quiz-card-blob {
    position: absolute;
    width: 0; height: 0;
    border-radius: 14px;
    opacity: 0;
    background: rgba(255,255,255,0.12);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    animation: quiz-blob 2s ease-in-out infinite;
}
.quiz-card-blob--tl {
    top: 0; left: 0;
    transition: top 0.1s ease, left 0.5s ease, width 0.5s ease, height 0.5s ease, opacity 0.5s ease;
}
.quiz-card-blob--br {
    bottom: 0; right: 0;
    transition: bottom 0.5s ease, right 0.5s ease, width 0.5s ease, height 0.5s ease, opacity 0.5s ease;
    animation-delay: -1s;
}
.quiz-card:hover .quiz-card-blob--tl {
    top: -40px; left: 40px;
    width: 80px; height: 80px;
    opacity: 1;
}
.quiz-card:hover .quiz-card-blob--br {
    bottom: -40px; right: 40px;
    width: 80px; height: 80px;
    opacity: 1;
}

/* Rotating border wrapper: padding creates the visible 2px border ring */
.quiz-card-border-wrap {
    position: relative;
    z-index: 20;
    height: 100%;
    padding: 2px;
    border-radius: 16px;
    background: conic-gradient(
        from var(--gradient-angle, 0deg),
        var(--g-from)  0%,
        var(--g-to)   35%,
        var(--g-from) 40%,
        var(--g-from) 55%,
        var(--g-to)   88%,
        var(--g-from) 93%
    );
    animation: quiz-border-rotate 4s linear infinite;
    transition: transform 0.5s ease;
}
.quiz-card:hover .quiz-card-border-wrap {
    transform: none;
}
.quiz-card.active .quiz-card-border-wrap {
    animation-duration: 2s;
}

/* Card content panel — solid bg covers the border-wrap interior, only the 2px ring stays visible */
.quiz-card-inner {
    position: relative;
    padding: 24px 20px;
    height: 100%;
    background: var(--bg-card, #ffffff);
    border-radius: 14px;
    transition: padding-top 0.5s ease, padding-bottom 0.5s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}
.quiz-card:hover .quiz-card-inner {
    padding-top: 40px;
    padding-bottom: 40px;
}
.quiz-card.active .quiz-card-inner {
    background: #f0eeff;
}

.quiz-robot-img    { width: 90px; height: 90px; object-fit: contain; margin: 0 auto 0.75rem; display: block; }
.problem-robot-img { width: 90px; height: 90px; object-fit: contain; margin-bottom: 0.75rem; display: block; }
.quiz-card-title   { font-weight: 700; font-size: 0.9375rem; color: var(--text-primary, #111c2d); margin-bottom: 0.25rem; }
.quiz-card-sub     { font-size: 0.8125rem; color: var(--text-muted, #94a3b8); }

@keyframes quiz-blob {
    0%, 100% { transform: translateY(10px); }
    50%       { transform: translateX(-10px); }
}
.quiz-result {
    background: var(--bg-card, #fff);
    border: 1px solid var(--primary-border, rgba(124,58,237,0.22));
    border-radius: 14px; padding: 1.75rem; margin-top: 1rem;
}
.quiz-result-title { font-family: 'Hanken Grotesk', sans-serif; font-size: 1.25rem; font-weight: 700; color: var(--text-primary, #111c2d); margin-bottom: 0.75rem; }
.quiz-result-desc  { font-size: 0.9375rem; color: var(--text-secondary, #4a4455); line-height: 1.65; margin-bottom: 1.25rem; }

/* ===== TESTIMONIALS ===== */
.tst-wrap {
    border-radius: 16px; overflow: hidden;
    border: 1px solid var(--border, rgba(0,0,0,0.07));
    box-shadow: var(--shadow-md); background: #ffffff;
    display: flex;
}
.tst-overlay { display: none; }
.tst-inner { display: contents; }
.tst-left { padding: 1.5rem 1.75rem; width: 340px; flex-shrink: 0; }
.tst-card { background: transparent; padding: 0; box-shadow: none; border: none; }
.tst-right {
    flex: 1; min-width: 0;
    display: grid;
    gap: 0.5rem;
    padding: 0.875rem 0.875rem 0.875rem 0;
    overflow: hidden;
}
.tst-right-3 {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 220px 220px;
}
.tst-right-3 .tst-img:nth-child(3) { grid-column: 1 / 3; }
.tst-right-2 {
    grid-template-columns: 1fr;
    grid-template-rows: 220px 220px;
}
.tst-quote { font-size: 1rem; line-height: 1.75; color: var(--text-secondary, #4a4455); margin-bottom: 1.25rem; font-style: italic; }
.tst-author { display: flex; align-items: center; gap: 12px; margin-top: 1rem; }
.tst-author-img { width: 44px; height: 44px; border-radius: 50%; object-fit: cover; border: 2px solid var(--primary-border); }
.tst-author-violet { border-color: rgba(124,58,237,0.5); }
.tst-author-blue   { border-color: rgba(37,99,235,0.5); }
.tst-author-name { font-weight: 700; font-size: 0.9375rem; color: var(--text-primary, #111c2d); }
.tst-author-role { font-size: 0.8125rem; color: var(--text-muted, #94a3b8); margin-top: 1px; }
.tst-stat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.75rem; margin-top: 1.25rem; padding-top: 1.25rem; border-top: 1px solid var(--border); }
.tst-stat { text-align: center; }
.tst-stat-num { font-family: 'Hanken Grotesk', sans-serif; font-size: 1.375rem; font-weight: 800; color: var(--primary, #7c3aed); line-height: 1; }
.tst-stat-lbl { font-size: 0.6875rem; color: var(--text-muted, #94a3b8); margin-top: 3px; }
.tst-badges { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 1.25rem; }
.tst-badge-pt { display: inline-flex; align-items: center; gap: 5px; background: #e9002a; color: #fff; font-size: 0.75rem; font-weight: 600; padding: 5px 12px; border-radius: 100px; text-decoration: none; }
.tst-badge-tg { display: inline-flex; align-items: center; gap: 5px; background: #0088cc; color: #fff; font-size: 0.75rem; font-weight: 600; padding: 5px 12px; border-radius: 100px; text-decoration: none; }
.tst-badge-qr { display: inline-flex; align-items: center; gap: 5px; background: #0088cc; color: #fff; font-size: 0.75rem; font-weight: 600; padding: 5px 12px; border-radius: 100px; border: none; cursor: pointer; }
.tst-badge-max { display: inline-flex; align-items: center; gap: 5px; background: #8c1aff; color: #fff; font-size: 0.75rem; font-weight: 600; padding: 5px 12px; border-radius: 100px; text-decoration: none; }
.tst-badge-verified { display: inline-flex; align-items: center; gap: 5px; background: rgba(124,58,237,0.1); border: 1px solid rgba(124,58,237,0.25); color: var(--primary); font-size: 0.75rem; font-weight: 600; padding: 5px 12px; border-radius: 100px; margin-bottom: 0.75rem; }
.tst-img {
    width: 100%; height: 220px;
    object-fit: cover; object-position: top left;
    border-radius: 10px; display: block;
    cursor: pointer; transition: transform 0.2s ease;
}
.tst-img:hover { transform: scale(1.02); }

/* ===== TELEGRAM CTA ===== */
.tg-card {
    background: #ffffff;
    border: 1.5px solid rgba(124,58,237,0.18); border-radius: 20px;
    padding: 2.5rem 2rem;
    box-shadow: 0 4px 24px rgba(124,58,237,0.08);
}
.tg-robot-img   { width: 110px; height: 110px; object-fit: contain; margin: 0 auto 1rem; display: block; filter: drop-shadow(0 4px 12px rgba(124,58,237,0.25)); }
.tg-card-heading { font-family: 'Hanken Grotesk', sans-serif; font-size: 1.75rem; font-weight: 700; color: var(--text-primary, #111c2d); margin-bottom: 0.5rem; }
.tg-card-sub { color: var(--text-secondary, #4a4455); line-height: 1.65; margin-bottom: 1.5rem; }
.tg-btn {
    display: inline-flex; align-items: center; gap: 8px;
    background: linear-gradient(to bottom, #2481cc, #1a6fb5);
    color: #fff; border: none; border-radius: 12px;
    padding: 14px 28px; font-size: 1rem; font-weight: 600; text-decoration: none;
    transition: transform 0.18s ease, box-shadow 0.18s ease;
    box-shadow: 0 4px 16px rgba(0,100,200,0.25);
}
.tg-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,100,200,0.35); }

/* ===== PRICING ===== */
.pricing-urgency { display: inline-flex; align-items: center; gap: 8px; background: rgba(220,38,38,0.1); border: 1px solid rgba(220,38,38,0.25); border-radius: 100px; padding: 8px 20px; margin-bottom: 1rem; }
.pricing-urgency-dot { width: 8px; height: 8px; background: #ef4444; border-radius: 50%; display: inline-block; animation: pulseDot 1.5s infinite; }
@keyframes pulseDot { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:0.5;transform:scale(1.35)} }

.pricing-card-inner {
    background: var(--bg-card, #fff); border: 1px solid var(--border, rgba(0,0,0,0.09));
    border-radius: 20px; padding: 1.75rem; box-shadow: var(--shadow-md);
    transition: all 0.2s ease; height: 100%; display: flex; flex-direction: column;
}
.pricing-card-inner:hover { box-shadow: var(--shadow-hover); border-color: var(--primary-border); transform: translateY(-3px); }
.pricing-card-inner.popular { border-color: var(--primary); box-shadow: 0 0 0 2px rgba(124,58,237,0.15), var(--shadow-lg); }

.pricing-tier-label { display: inline-block; font-size: 15px; font-weight: 800; letter-spacing: 0.06em; text-transform: uppercase; padding: 7px 22px; border-radius: 100px; margin-bottom: 0.75rem; }
.pricing-tier-start  { background: rgba(100,116,139,0.15); color: #475569; }
.pricing-tier-basic  { background: rgba(124,58,237,0.15);  color: #7c3aed; }
.pricing-tier-pro    { background: rgba(6,182,212,0.15);   color: #0891b2; }
.pricing-popular-badge { background: var(--primary); color: #fff; font-size: 11px; font-weight: 700; padding: 3px 10px; border-radius: 100px; }
.pricing-amount { font-family: 'Hanken Grotesk', sans-serif; font-size: 2.5rem; font-weight: 800; color: var(--text-primary); line-height: 1; margin-bottom: 0.25rem; }
.pricing-amount span { font-size: 1.125rem; font-weight: 500; color: var(--text-muted); }
.pricing-period { font-size: 0.875rem; color: var(--text-muted); margin-bottom: 1.5rem; }
.pricing-features-list { display: flex; flex-direction: column; gap: 0.625rem; flex: 1; margin-bottom: 1.5rem; }
.pricing-feat { display: flex; align-items: center; gap: 8px; font-size: 0.9rem; color: var(--text-secondary); }
.pricing-feat-icon { color: var(--success, #16a34a); flex-shrink: 0; }
.pricing-sbp { display: inline-flex; align-items: center; gap: 6px; margin-top: 0.75rem; font-size: 0.8125rem; color: var(--text-muted); text-decoration: none; padding: 6px 14px; border: 1px solid var(--border); border-radius: 8px; transition: border-color 0.15s; }
.pricing-sbp:hover { border-color: var(--primary-border); }

/* ===== ENTERPRISE ===== */
.ent-card { border-radius: 16px; overflow: hidden; position: relative; display: flex; flex-direction: column; }
@media (min-width: 768px) { .ent-card { flex-direction: row; } }
.ent-overlay { position: absolute; inset: 0; background: rgba(0,0,0,0.4); pointer-events: none; }
.ent-left, .ent-right { position: relative; z-index: 1; padding: 2rem; }
.ent-left { flex: 1; }
.ent-right { flex: 0 0 300px; background: rgba(0,0,0,0.2); border-left: 1px solid rgba(255,255,255,0.1); }
.ent-badge-biz { background: rgba(255,255,255,0.2); border: 1px solid rgba(255,255,255,0.3); color: #fff; font-size: 11px; font-weight: 700; padding: 3px 12px; border-radius: 100px; }
.ent-price-box { background: rgba(255,255,255,0.12); border-radius: 12px; padding: 1rem 1.25rem; margin-bottom: 1rem; border: 1px solid rgba(255,255,255,0.15); }
.ent-price-label { font-size: 0.75rem; color: rgba(255,255,255,0.6); margin-bottom: 4px; }
.ent-price-num { font-family: 'Hanken Grotesk', sans-serif; font-size: 2rem; font-weight: 800; color: #fff; }
.ent-price-unit { font-size: 1.125rem; font-weight: 500; }
.ent-price-note { font-size: 0.75rem; color: rgba(255,255,255,0.5); margin-top: 2px; }
.ent-slider-label { display: flex; justify-content: space-between; font-size: 0.8125rem; color: rgba(255,255,255,0.7); margin-bottom: 6px; }
.ent-slider-val { font-weight: 700; color: #fff; }
.ent-slider-range { display: flex; justify-content: space-between; font-size: 0.6875rem; color: rgba(255,255,255,0.4); margin-top: 4px; }
.ent-features { margin-bottom: 1.25rem; }
.ent-feature { font-size: 0.875rem; color: rgba(255,255,255,0.8); padding: 3px 0; }

/* ===== PRICING CARD TWO ===== */
.pc2-frame { padding: 3px; border-radius: 24px; display: flex; flex-direction: column; }
.pc2-frame-zinc    { background: linear-gradient(to bottom, #d4d4d8, #71717a); }
.pc2-frame-violet  { background: linear-gradient(to bottom, #a78bfa, #7c3aed); }
.pc2-frame-emerald { background: linear-gradient(to bottom, #34d399, #0d9488); }
.pc2-frame-amber   { background: linear-gradient(to bottom, #fbbf24, #f97316); }

.pc2-card {
    flex: 1; background: #fafafa; border-radius: 22px;
    padding: 2.5rem 2rem 2rem;
    box-shadow: 0 1px 3px rgba(0,0,0,0.06); outline: 1px solid #e4e4e7;
    display: flex; flex-direction: column;
}

.pc2-accent-zinc    { color: #18181b; }
.pc2-accent-violet  { color: #7c3aed; }
.pc2-accent-emerald { color: #059669; }
.pc2-accent-amber   { color: #d97706; }

.pc2-btn {
    margin-top: 2rem; display: flex; width: 100%;
    align-items: center; justify-content: center;
    border-radius: 9999px; padding: 12px 20px;
    font-size: 0.875rem; font-weight: 600; transition: background-color 0.2s; text-decoration: none;
}
.pc2-btn-zinc    { background: #18181b; color: #fff; }
.pc2-btn-zinc:hover    { background: rgba(0,0,0,0.75); color: #fff; }
.pc2-btn-violet  { background: #7c3aed; color: #fff; }
.pc2-btn-violet:hover  { background: #6d28d9; color: #fff; }
.pc2-btn-emerald { background: #059669; color: #fff; }
.pc2-btn-emerald:hover { background: #047857; color: #fff; }
.pc2-btn-amber   { background: #d97706; color: #fff; }
.pc2-btn-amber:hover   { background: #b45309; color: #fff; }

.pc2-feat-list { list-style: none; padding: 0; margin: 2rem 0 0; display: flex; flex-direction: column; gap: 1rem; flex: 1; }
.pc2-feat { display: flex; align-items: flex-start; gap: 12px; font-size: 0.875rem; color: #3f3f46; }
.pc2-feat-badge {
    flex-shrink: 0; margin-top: 2px; width: 24px; height: 24px; border-radius: 50%;
    display: inline-grid; place-items: center; outline-width: 1px; outline-style: solid;
}
.pc2-feat-badge svg { width: 14px; height: 14px; }
.pc2-badge-ok-zinc    { background: #f4f4f5; outline-color: #e4e4e7; color: #52525b; }
.pc2-badge-ok-violet  { background: #ede9fe; outline-color: #c4b5fd; color: #7c3aed; }
.pc2-badge-ok-emerald { background: #ecfdf5; outline-color: #a7f3d0; color: #059669; }
.pc2-badge-ok-amber   { background: #fffbeb; outline-color: #fde68a; color: #d97706; }

.pc2-frame:has(.ent-card) { border-radius: 20px; }
.pc2-frame .ent-card { border-radius: 18px; }

/* ===== GLASS BUTTONS ===== */
.glass-btn {
    display: inline-flex; align-items: center; gap: 8px;
    background: var(--primary, #7c3aed); color: #fff; border: none; border-radius: 12px;
    padding: 13px 26px; font-size: 0.9375rem; font-weight: 600; text-decoration: none; cursor: pointer;
    transition: all 0.18s ease; box-shadow: 0 4px 16px rgba(124,58,237,0.3);
}
.glass-btn:hover { background: #6d28d9; transform: translateY(-1px); box-shadow: 0 8px 24px rgba(124,58,237,0.4); }
.glass-btn-lg {
    display: inline-flex; align-items: center; gap: 8px;
    background: var(--primary, #7c3aed); color: #fff; border: none; border-radius: 14px;
    padding: 16px 36px; font-size: 1.0625rem; font-weight: 700; text-decoration: none; cursor: pointer;
    transition: all 0.18s ease; box-shadow: 0 4px 20px rgba(124,58,237,0.35);
}
.glass-btn-lg:hover { background: #6d28d9; transform: translateY(-2px); box-shadow: 0 8px 28px rgba(124,58,237,0.45); }
.glass-btn-purple { background: linear-gradient(135deg, #7c3aed, #5b21b6); }
.glass-btn-purple:hover { background: linear-gradient(135deg, #6d28d9, #4c1d95); }
.glass-btn-mb { margin-bottom: 0.5rem; }
.glass-btn-outline {
    display: inline-flex; align-items: center; gap: 8px;
    background: transparent; color: var(--primary, #7c3aed);
    border: 2px solid rgba(124,58,237,0.35); border-radius: 14px;
    padding: 14px 32px; font-size: 1.0625rem; font-weight: 600; text-decoration: none; cursor: pointer;
    transition: all 0.18s ease;
}
.glass-btn-outline:hover { background: rgba(124,58,237,0.07); border-color: var(--primary); color: var(--primary, #7c3aed) !important; -webkit-text-fill-color: var(--primary, #7c3aed) !important; }
.glass-btn-inline { display: inline-flex; align-items: center; gap: 8px; border-radius: 10px; padding: 11px 22px; font-size: 0.875rem; font-weight: 600; text-decoration: none; cursor: pointer; border: none; transition: all 0.18s ease; width: 100%; justify-content: center; margin-bottom: 0.625rem; }
.glass-btn-inline-blue { background: linear-gradient(to bottom, rgba(39,119,202,0.9), rgba(25,85,150,0.9)); color: #fff; border: 1px solid rgba(255,255,255,0.15); }
.glass-btn-inline-blue:hover { transform: translateY(-1px); }
.glass-btn-inline-dim { background: rgba(255,255,255,0.12); color: rgba(255,255,255,0.75); border: 1px solid rgba(255,255,255,0.15); }
.glass-btn-inline-dim:hover { background: rgba(255,255,255,0.18); color: #fff; }

/* ===== CTA BANNER ===== */
.cta-banner { border-radius: 20px; overflow: hidden; position: relative; padding: 3.5rem 2rem; text-align: center; color: var(--text-primary, #111c2d); border: 1.5px solid rgba(124,58,237,0.2); }
.cta-depth { position: absolute; inset: 0; background: radial-gradient(ellipse at 30% 50%, rgba(167,139,250,0.15) 0%, transparent 60%), radial-gradient(ellipse at 70% 50%, rgba(109,40,217,0.1) 0%, transparent 60%); pointer-events: none; }
.cta-orb { position: absolute; border-radius: 50%; pointer-events: none; }
.cta-orb-1 { width: 300px; height: 300px; background: rgba(167,139,250,0.2); top: -100px; left: -100px; filter: blur(60px); }
.cta-orb-2 { width: 200px; height: 200px; background: rgba(196,181,253,0.15); bottom: -60px; right: -60px; filter: blur(40px); }
.cta-orb-3 { width: 150px; height: 150px; background: rgba(221,214,254,0.2); top: 50%; right: 20%; filter: blur(30px); }
.cta-inner { position: relative; z-index: 1; }
.cta-pill { display: inline-flex; align-items: center; gap: 6px; background: rgba(124,58,237,0.1); border: 1px solid rgba(124,58,237,0.25); border-radius: 100px; padding: 6px 16px; font-size: 0.8125rem; font-weight: 600; color: #7c3aed; margin-bottom: 1.25rem; }
.cta-title { font-family: 'Hanken Grotesk', sans-serif; font-size: clamp(1.75rem, 4vw, 2.75rem); font-weight: 800; color: var(--text-primary, #111c2d); margin-bottom: 1rem; line-height: 1.2; }
.cta-sub { font-size: 1.0625rem; color: var(--text-secondary, #4a4455); margin-bottom: 1.5rem; }
.cta-checks { display: flex; flex-wrap: wrap; justify-content: center; gap: 1rem; margin-bottom: 2rem; }
.cta-check { display: inline-flex; align-items: center; gap: 6px; font-size: 0.875rem; color: var(--text-primary, #111c2d); font-weight: 500; }

/* ===== FAQ ===== */
.faq-item { background: var(--bg-card, #fff); border: 1px solid var(--border, rgba(0,0,0,0.08)); border-radius: 12px; overflow: hidden; transition: border-color 0.18s ease; }
.faq-item:hover { border-color: var(--primary-border, rgba(124,58,237,0.22)); }
.faq-question { width: 100%; text-align: left; padding: 1.125rem 1.25rem; background: none; border: none; cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 12px; }
.faq-q-text { font-family: 'Hanken Grotesk', sans-serif; color: var(--text-primary, #111c2d); font-weight: 600; font-size: 0.9375rem; }
.faq-answer { display: none; padding: 0 1.25rem 1.125rem; color: var(--text-secondary, #4a4455); font-size: 0.9rem; line-height: 1.75; }
.faq-arrow { width: 18px; height: 18px; color: var(--text-muted, #94a3b8); flex-shrink: 0; transition: transform 0.2s ease; }

/* ===== SOCIAL PROOF BAR ===== */
.brand-logo { font-family: 'Hanken Grotesk', sans-serif; font-size: 1.25rem; font-weight: 700; color: var(--text-muted, #94a3b8); opacity: 0.5; }
