/* ============================================
   AI AGENT ARCHITEKT — LANDING PAGE v3
   Premium LIGHT design with conversion focus
   ============================================ */

/* ─── RESET & BASE ─────────────────────── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    color: #1a1a2e;
    background: #fff;
    line-height: 1.6;
}
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
.container { width: 100%; max-width: 1140px; margin: 0 auto; padding: 0 24px; }

/* ─── SCROLL REVEAL ────────────────────── */
.reveal {
    opacity: 0; transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(0.16,1,0.3,1), transform 0.8s cubic-bezier(0.16,1,0.3,1);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* ─── HEADER ───────────────────────────── */
.site-header {
    background: rgba(255,255,255,0.92);
    backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
    height: 70px; display: flex; align-items: center;
    border-bottom: 1px solid #eee;
    position: sticky; top: 0; z-index: 100;
}
.header-inner {
    width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 32px;
    display: flex; justify-content: space-between; align-items: center;
}
.logo img { height: 64px; display: block; }
.main-nav { display: flex; align-items: center; gap: 28px; }
.main-nav a {
    color: #555; font-size: 14px; font-weight: 500;
    display: flex; align-items: center; gap: 8px; transition: color 0.2s;
}
.main-nav a:hover { color: #0a0a0a; }
.nav-icon { width: 16px; height: 16px; }
.nav-separator { width: 1px; height: 18px; background: #ddd; margin: 0 -4px; }

/* ─── STICKY CTA BAR ──────────────────── */
.sticky-cta {
    position: fixed; top: -70px; left: 0; right: 0; height: 56px;
    background: linear-gradient(135deg, #e8461e, #c73a18);
    display: flex; align-items: center; justify-content: center; gap: 24px;
    z-index: 99; transition: top 0.4s cubic-bezier(0.16,1,0.3,1);
    box-shadow: 0 4px 20px rgba(232,70,30,0.25);
}
.sticky-cta.visible { top: 70px; }
.sticky-cta-text { color: #fff; font-weight: 600; font-size: 0.9rem; }
.sticky-cta-text strong { font-weight: 800; }
.sticky-cta .btn--sticky {
    display: inline-block; width: auto; padding: 8px 22px;
    background: #fff; color: #c73a18; border-radius: 8px;
    font-size: 0.8rem; font-weight: 800; text-transform: uppercase;
    letter-spacing: 0.04em; transition: all 0.2s; border: none; cursor: pointer;
}
.sticky-cta .btn--sticky:hover { background: #fff6f3; transform: translateY(-1px); }

/* ─── HERO (LIGHT with accent gradient) ── */
.hero {
    background: linear-gradient(170deg, #fff 0%, #f8f6ff 40%, #fff5f0 70%, #fff 100%);
    padding: 72px 0 88px;
    position: relative; overflow: hidden;
}
.hero::before {
    content: ''; position: absolute; top: -160px; right: -160px; width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(168,85,247,0.06) 0%, transparent 70%);
    pointer-events: none;
}
.hero::after {
    content: ''; position: absolute; bottom: -80px; left: -80px; width: 350px; height: 350px;
    background: radial-gradient(circle, rgba(232,70,30,0.04) 0%, transparent 70%);
    pointer-events: none;
}
.hero-grid {
    display: grid; grid-template-columns: 1fr 1fr; gap: 56px;
    align-items: center; position: relative; z-index: 1;
}
.hero-heading {
    font-size: clamp(2.2rem, 5vw, 3.2rem); font-weight: 900;
    line-height: 1.1; color: #0a0a0a; margin: 0 0 20px 0; letter-spacing: -0.03em;
}
.hero-heading span {
    background: linear-gradient(135deg, #e8461e, #a855f7);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.hero-sub {
    font-size: clamp(1rem, 2.5vw, 1.12rem); color: #666;
    max-width: 520px; margin: 0 0 28px 0; line-height: 1.7;
}

/* Webinar preview link — PROMINENT CTA */
.webinar-preview-link {
    display: inline-flex; align-items: center; gap: 14px;
    padding: 18px 36px; margin-bottom: 28px;
    background: linear-gradient(135deg, #7c3aed, #a855f7, #6d28d9);
    background-size: 200% 200%;
    animation: gradient-shift 4s ease infinite;
    border: 2px solid rgba(168,85,247,0.5); border-radius: 16px;
    color: #fff; font-size: 1.08rem; font-weight: 800;
    text-decoration: none; transition: all 0.3s ease;
    cursor: pointer;
    box-shadow: 0 6px 28px rgba(124,58,237,0.35), 0 0 0 0 rgba(168,85,247,0.2);
    letter-spacing: 0.01em;
}
.webinar-preview-link:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 12px 40px rgba(124,58,237,0.45), 0 0 24px rgba(168,85,247,0.2);
    border-color: rgba(168,85,247,0.7);
    color: #fff;
}
.webinar-preview-icon {
    display: flex; align-items: center; justify-content: center;
    width: 36px; height: 36px; border-radius: 50%;
    background: rgba(255,255,255,0.2);
    backdrop-filter: blur(4px);
    color: #fff; font-size: 0.85rem; flex-shrink: 0;
    animation: pulse-play 2s ease-in-out infinite;
    border: 1.5px solid rgba(255,255,255,0.3);
}
.webinar-preview-arrow {
    font-size: 1.2rem; opacity: 0.8;
    animation: bounce-arrow 1.5s ease-in-out infinite;
}
@keyframes pulse-play {
    0%, 100% { box-shadow: 0 0 0 0 rgba(255,255,255,0.35); }
    50% { box-shadow: 0 0 0 10px rgba(255,255,255,0); }
}
@keyframes bounce-arrow {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(4px); }
}
@keyframes gradient-shift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Hero CTA */
.hero-cta-group { display: flex; align-items: center; gap: 20px; margin-bottom: 36px; }
.btn--hero {
    display: inline-block; padding: 16px 36px;
    background: linear-gradient(135deg, #e8461e, #c73a18); color: #fff;
    border-radius: 12px; font-size: 1.02rem; font-weight: 800;
    letter-spacing: 0.04em; text-transform: uppercase;
    transition: all 0.3s; border: none; cursor: pointer;
    box-shadow: 0 6px 28px rgba(232,70,30,0.3);
}
.btn--hero:hover { transform: translateY(-3px); box-shadow: 0 10px 36px rgba(232,70,30,0.45); }
.hero-cta-note { font-size: 0.85rem; color: #999; line-height: 1.4; }

/* Hero Status Box */
.hero-status {
    display: flex; align-items: center; gap: 14px; margin-bottom: 36px;
    background: linear-gradient(135deg, rgba(16,185,129,0.08), rgba(16,185,129,0.04));
    border: 1px solid rgba(16,185,129,0.25); border-radius: 14px;
    padding: 16px 24px;
}
.status-badge {
    display: inline-block; padding: 6px 14px;
    background: linear-gradient(135deg, #10b981, #059669); color: #fff;
    border-radius: 8px; font-size: 0.78rem; font-weight: 900;
    letter-spacing: 0.06em; white-space: nowrap;
}
.status-text {
    font-size: 0.92rem; color: #555; font-weight: 500;
}
.status-details { display: flex; flex-direction: column; gap: 8px; }
.status-perks {
    list-style: none; padding: 0; margin: 0;
    display: flex; flex-direction: column; gap: 4px;
}
.status-perks li {
    font-size: 0.85rem; color: #666; line-height: 1.5;
}

/* Info box */
.info-box {
    background: #fff; border: 1px solid #eaeaea; border-radius: 16px;
    padding: 28px 32px; max-width: 500px;
    box-shadow: 0 2px 16px rgba(0,0,0,0.04);
}
.info-title { font-size: 1.1rem; font-weight: 800; margin-bottom: 14px; color: #0a0a0a; }
.info-list li {
    padding: 9px 0; border-bottom: 1px solid #f0f0f2; color: #666; font-size: 0.92rem;
}
.info-list li:last-child { border-bottom: none; padding-bottom: 0; }
.info-list li strong { color: #1a1a2e; }
.info-icon { display: inline-block; width: 24px; }

/* Hero image */
.hero-image img {
    width: 100%; max-width: 480px; aspect-ratio: 9 / 16; object-fit: contain;
    border-radius: 20px; display: block; margin: 0 auto;
    filter: drop-shadow(0 16px 48px rgba(0,0,0,0.08));
}

/* ─── SOCIAL PROOF ─────────────────────── */
.social-proof {
    padding: 40px 0; background: #fafafa;
    border-top: 1px solid #eee; border-bottom: 1px solid #eee;
}
.social-proof-inner {
    display: flex; align-items: center; justify-content: center; gap: 48px; flex-wrap: wrap;
}
.proof-item { text-align: center; }
.proof-num {
    font-size: 2rem; font-weight: 900; line-height: 1;
    background: linear-gradient(135deg, #e8461e, #a855f7);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.proof-label { font-size: 0.82rem; color: #999; margin-top: 5px; font-weight: 500; }
.proof-separator { width: 1px; height: 36px; background: #e0e0e0; }

/* ─── SECTION TITLES ──────────────────── */
.section-title {
    font-size: 2.1rem; font-weight: 900; color: #0a0a0a;
    text-align: center; margin-bottom: 10px; letter-spacing: -0.02em;
}
.section-desc {
    text-align: center; color: #888; margin-bottom: 48px;
    font-size: 1.02rem; max-width: 560px; margin-left: auto; margin-right: auto;
}

/* ─── LEARN SECTION ────────────────────── */
.learn-section { padding: 96px 0; background: #fff; }
.learn-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 52px; }
.learn-card {
    background: #fafafa; border: 1px solid #eee; border-radius: 18px; padding: 32px 26px;
    transition: all 0.35s cubic-bezier(0.16,1,0.3,1);
}
.learn-card:hover {
    transform: translateY(-5px); background: #fff;
    border-color: #ddd; box-shadow: 0 16px 48px rgba(0,0,0,0.06);
}
.learn-card--bonus {
    background: linear-gradient(145deg, #fff9f5, #fff5ee); border-color: #f0d9b5;
}
.learn-card--bonus:hover { border-color: #e8c89a; }
.learn-icon-wrap {
    width: 50px; height: 50px; border-radius: 14px;
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 18px; font-size: 1.4rem;
}
.learn-icon-wrap--agents { background: linear-gradient(135deg, #dbeafe, #eff6ff); }
.learn-icon-wrap--vibe { background: linear-gradient(135deg, #ede9fe, #f5f3ff); }
.learn-icon-wrap--data { background: linear-gradient(135deg, #d1fae5, #ecfdf5); }
.learn-icon-wrap--future { background: linear-gradient(135deg, #ffedd5, #fff7ed); }
.learn-icon-wrap--security { background: linear-gradient(135deg, #fef3c7, #fffbeb); }
.learn-icon-wrap--bonus { background: linear-gradient(135deg, #fee2e2, #fef2f2); }
.learn-card h3 { font-size: 1.1rem; font-weight: 800; color: #0a0a0a; margin-bottom: 10px; line-height: 1.3; }
.learn-card p { font-size: 0.9rem; color: #777; line-height: 1.65; }

/* ─── AUDIENCE ─────────────────────────── */
.audience-section { padding: 96px 0; background: #fafafa; }
.audience-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 48px; }
.audience-card {
    background: #fff; border: 1px solid #eee; border-radius: 18px;
    padding: 32px 26px; text-align: center;
    transition: all 0.35s cubic-bezier(0.16,1,0.3,1);
}
.audience-card:hover {
    transform: translateY(-4px); box-shadow: 0 12px 36px rgba(0,0,0,0.05);
}
.audience-icon { font-size: 2rem; margin-bottom: 14px; }
.audience-card p { font-size: 0.96rem; color: #666; line-height: 1.7; }
.audience-card strong { color: #1a1a2e; }

/* ─── PRICING ──────────────────────────── */
.pricing { padding: 96px 0; background: #fff; }
.pricing-grid {
    display: grid; grid-template-columns: 1fr 1fr; gap: 28px;
    max-width: 900px; margin: 0 auto; align-items: stretch;
}
.pricing-grid--3 { grid-template-columns: repeat(3, 1fr); max-width: 1140px; gap: 22px; }

.card {
    border-radius: 18px; display: flex; flex-direction: column;
    overflow: hidden; position: relative;
    transition: all 0.35s cubic-bezier(0.16,1,0.3,1);
}
.card:hover { transform: translateY(-5px); }
.card-body { padding: 36px 28px 22px; flex: 1; }
.card-footer { padding: 0 28px 28px; }

/* Light card */
.card--light {
    background: #fafafa; border: 1px solid #eee;
    box-shadow: 0 2px 12px rgba(0,0,0,0.03);
}
.card--light:hover { box-shadow: 0 12px 40px rgba(0,0,0,0.06); border-color: #ddd; }
.card--light .card-title { color: #0a0a0a; font-size: 1.4rem; font-weight: 800; }
.card--light .card-subtitle { color: #888; font-size: 0.92rem; margin-top: 8px; line-height: 1.5; }
.card--light .card-price { font-size: 2.4rem; font-weight: 900; color: #0a0a0a; margin: 22px 0 18px; letter-spacing: -0.02em; }
.card--light .feature-icon { color: #10b981; }

/* Hackathon card */
.card--hackathon {
    background: linear-gradient(160deg, #1a103a 0%, #231650 50%, #160d30 100%);
    color: #fff; border: 1px solid rgba(168,85,247,0.2);
    box-shadow: 0 8px 32px rgba(168,85,247,0.1);
}
.card--hackathon:hover {
    box-shadow: 0 16px 48px rgba(168,85,247,0.18); border-color: rgba(168,85,247,0.35);
}
.card--hackathon .card-title {
    font-size: 1.35rem; font-weight: 800;
    background: linear-gradient(135deg, #fff 30%, #a855f7);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.card--hackathon .card-subtitle { color: rgba(255,255,255,0.55); font-size: 0.92rem; margin-top: 8px; }
.card--hackathon .card-price {
    font-size: 2.4rem; font-weight: 900; margin: 22px 0 18px;
    background: linear-gradient(135deg, #fff, #a855f7);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.card--hackathon .card-features li { color: rgba(255,255,255,0.7); }
.card--hackathon .feature-icon { color: #a855f7; }
.highlight-prop--hack {
    background: rgba(168,85,247,0.12) !important; padding: 14px 18px;
    border-radius: 10px; margin-bottom: 14px;
    display: flex; align-items: flex-start; gap: 12px;
}

/* Combo card — RECOMMENDED */
.card--combo {
    background: linear-gradient(160deg, #052e16, #064e3b, #022c22);
    color: #fff; border: 2px solid rgba(16,185,129,0.3);
    box-shadow: 0 8px 32px rgba(16,185,129,0.1);
    transform: scale(1.04);
}
.card--combo:hover {
    box-shadow: 0 16px 48px rgba(16,185,129,0.2);
    border-color: rgba(16,185,129,0.45);
    transform: scale(1.04) translateY(-5px);
}
.card--combo .card-title {
    font-size: 1.35rem; font-weight: 800;
    background: linear-gradient(135deg, #fff 30%, #10b981);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.card--combo .card-subtitle { color: rgba(255,255,255,0.55); font-size: 0.92rem; margin-top: 8px; }
.card--combo .card-subtitle strong { color: #10b981; -webkit-text-fill-color: #10b981; }
.card--combo .card-price {
    font-size: 2.4rem; font-weight: 900; margin: 22px 0 18px;
    background: linear-gradient(135deg, #fff, #10b981);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.card--combo .card-features li { color: rgba(255,255,255,0.7); }
.card--combo .feature-icon { color: #10b981; }
.price-original-combo {
    font-size: 1.2rem; font-weight: 600; text-decoration: line-through; opacity: 0.6;
    display: block; margin-bottom: 4px; -webkit-text-fill-color: rgba(255,255,255,0.55);
    text-decoration-thickness: 2px;
}

/* Badges */
.card-badge {
    position: absolute; top: 0; right: 0;
    font-size: 0.7rem; font-weight: 800; padding: 9px 16px;
    border-radius: 0 18px 0 12px; letter-spacing: 0.04em; text-transform: uppercase;
}
.card-badge--combo { background: linear-gradient(135deg, #10b981, #059669); color: #fff; }

/* Features */
.card-features li {
    display: flex; align-items: flex-start; gap: 10px;
    padding: 7px 0; font-size: 0.9rem; line-height: 1.5;
}
.feature-icon { flex-shrink: 0; font-weight: bold; }

/* Buttons */
.btn {
    display: block; width: 100%; text-align: center;
    padding: 15px 24px; border-radius: 12px;
    font-size: 0.95rem; font-weight: 800; letter-spacing: 0.04em;
    text-transform: uppercase; transition: all 0.3s; cursor: pointer; border: none;
}
.btn:hover { transform: translateY(-2px); }
.btn--dark { background: #0a0a0a; color: #fff; }
.btn--dark:hover { background: #222; box-shadow: 0 6px 20px rgba(0,0,0,0.12); }
.btn--hack { background: linear-gradient(135deg, #a855f7, #7c3aed); color: #fff; }
.btn--hack:hover { box-shadow: 0 6px 20px rgba(168,85,247,0.35); }
.btn--gradient { background: linear-gradient(135deg, #10b981, #059669); color: #fff; }
.btn--gradient:hover { box-shadow: 0 6px 20px rgba(16,185,129,0.35); }

/* Webinars — split layout: single vs bundle */
.webinars-section {
    margin-top: 48px; padding: 36px 32px;
    background: linear-gradient(145deg, #fefce8, #fff7ed);
    border: 1px solid #fde68a; border-radius: 18px;
    max-width: 1140px;
}
.webinars-title {
    font-size: 1.2rem; font-weight: 800; color: #0a0a0a; margin-bottom: 8px; text-align: center;
}
.webinars-desc {
    font-size: 0.88rem; color: #888; text-align: center; margin-bottom: 28px; line-height: 1.5;
}

/* Two-column split */
.webinars-split {
    display: grid; grid-template-columns: 1fr auto 1.4fr; gap: 0; align-items: stretch;
}

/* Left — single webinar */
.webinars-single {
    display: flex; flex-direction: column; padding: 0 24px 0 0;
}
.webinars-single-badge {
    font-size: 0.72rem; font-weight: 800; color: #b45309;
    text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 14px;
}
.webinar-card--featured {
    background: #fff; border: 2px solid #f59e0b; border-radius: 16px; padding: 24px 22px;
    flex: 1; display: flex; flex-direction: column;
    box-shadow: 0 4px 20px rgba(245,158,11,0.1);
}
.webinar-date--accent {
    background: linear-gradient(135deg, #f59e0b, #d97706) !important;
    color: #fff !important; border-color: transparent !important;
}
.webinar-name--large {
    font-size: 1.15rem !important; font-weight: 800 !important; margin-bottom: 10px !important;
}
.webinar-desc {
    font-size: 0.85rem; color: #777; line-height: 1.6; margin-bottom: 16px; flex: 1;
}
.webinar-price-tag {
    font-size: 1.8rem; font-weight: 900; color: #b45309; letter-spacing: -0.02em; margin-top: 8px;
}
.webinars-single .btn {
    margin-top: 16px;
}

/* Divider */
.webinars-divider {
    display: flex; align-items: center; justify-content: center;
    padding: 0 20px; position: relative;
}
.webinars-divider::before {
    content: ''; position: absolute; top: 0; bottom: 0; left: 50%;
    width: 1px; background: linear-gradient(to bottom, transparent, #e5e5e5 20%, #e5e5e5 80%, transparent);
}
.webinars-divider-text {
    position: relative; z-index: 1;
    background: linear-gradient(145deg, #fefce8, #fff7ed);
    padding: 8px 0; font-size: 0.78rem; font-weight: 700; color: #bbb;
    text-transform: uppercase; letter-spacing: 0.1em;
}

/* Right — bundle column */
.webinars-bundle-col {
    display: flex; flex-direction: column; padding: 0 0 0 24px;
}
.webinars-bundle-badge {
    font-size: 0.72rem; font-weight: 800; color: #059669;
    text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 14px;
}
.webinars-grid-compact {
    display: flex; flex-direction: column; gap: 10px; margin-bottom: 16px; flex: 1;
}
.webinar-card {
    background: #fff; border: 1px solid #eee; border-radius: 14px; padding: 16px 16px;
    transition: all 0.3s cubic-bezier(0.16,1,0.3,1);
}
.webinar-card:hover {
    transform: translateY(-2px); box-shadow: 0 6px 20px rgba(0,0,0,0.05); border-color: #fbbf24;
}
.webinar-date {
    display: inline-block; font-size: 0.72rem; font-weight: 800; color: #b45309;
    background: #fef3c7; border: 1px solid #fde68a; border-radius: 6px;
    padding: 3px 10px; margin-bottom: 8px; letter-spacing: 0.03em;
}
.webinar-name {
    font-size: 0.88rem; font-weight: 700; color: #1a1a2e; line-height: 1.35; margin-bottom: 6px;
}
.webinar-meta {
    display: flex; gap: 14px; font-size: 0.76rem; color: #999;
}
.webinars-bundle {
    display: flex; align-items: center; justify-content: space-between;
    background: #fff; border: 2px solid #059669; border-radius: 14px; padding: 14px 18px;
}
.webinars-bundle-info { display: flex; flex-direction: column; }
.webinars-bundle-label {
    font-size: 0.85rem; font-weight: 700; color: #1a1a2e;
}
.webinars-bundle-price {
    font-size: 1.4rem; font-weight: 900; color: #059669; letter-spacing: -0.02em;
}
.btn--sm {
    width: auto; padding: 11px 24px; font-size: 0.82rem;
}

/* Community */
.community-section {
    margin-top: 48px; padding: 44px 36px;
    background: #fafafa; border: 1px solid #eee; border-radius: 18px;
    text-align: center; max-width: 800px;
}
.community-title { font-size: 1.35rem; font-weight: 800; color: #0a0a0a; margin-bottom: 14px; }
.community-desc {
    font-size: 0.92rem; color: #888; margin-bottom: 26px; line-height: 1.6;
    max-width: 560px; margin-left: auto; margin-right: auto;
}
.btn--outline {
    display: inline-block; width: auto; padding: 13px 30px;
    background: transparent; color: #0a0a0a; border: 2px solid #ccc; margin: 0 auto;
}
.btn--outline:hover { background: #0a0a0a; color: #fff; border-color: #0a0a0a; }

/* Free Webinar — Email Gate */
.free-webinar-section {
    margin-top: 48px; max-width: 800px;
    scroll-margin-top: 160px;
}
.free-webinar-card {
    background: linear-gradient(160deg, #1a103a 0%, #231650 50%, #160d30 100%);
    border: 1px solid rgba(168,85,247,0.25); border-radius: 20px;
    padding: 44px 40px; text-align: center; position: relative;
    box-shadow: 0 8px 40px rgba(168,85,247,0.1);
}
.free-webinar-badge {
    display: inline-block; padding: 6px 18px; border-radius: 100px;
    background: linear-gradient(135deg, rgba(168,85,247,0.2), rgba(232,70,30,0.15));
    border: 1px solid rgba(168,85,247,0.3);
    color: #a855f7; font-size: 0.78rem; font-weight: 800;
    letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 20px;
}
.free-webinar-title {
    font-size: 1.5rem; font-weight: 900; margin-bottom: 12px;
    background: linear-gradient(135deg, #fff 30%, #a855f7);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.free-webinar-desc {
    font-size: 0.95rem; color: rgba(255,255,255,0.55); line-height: 1.7;
    max-width: 520px; margin: 0 auto 28px;
}
.free-webinar-desc strong { color: rgba(255,255,255,0.8); -webkit-text-fill-color: rgba(255,255,255,0.8); }
.free-webinar-form {
    display: flex; flex-direction: column; align-items: center; gap: 14px;
    max-width: 420px; margin: 0 auto;
}
.free-webinar-inputs {
    display: grid; grid-template-columns: 1fr 1fr; gap: 12px; width: 100%;
}
.free-webinar-inputs input {
    width: 100%; padding: 14px 16px; border: 1px solid rgba(255,255,255,0.15);
    border-radius: 10px; background: rgba(255,255,255,0.06); color: #fff;
    font-family: inherit; font-size: 0.95rem; transition: border-color 0.2s;
}
.free-webinar-inputs input:focus {
    outline: none; border-color: #a855f7; background: rgba(255,255,255,0.1);
}
.free-webinar-inputs input::placeholder { color: rgba(255,255,255,0.35); }
.free-webinar-btn {
    width: 100%; padding: 16px 32px !important;
    font-size: 1rem !important;
}
.free-webinar-note {
    font-size: 0.8rem; color: rgba(255,255,255,0.3); margin-top: 10px;
}
.free-webinar-success {
    display: flex; align-items: center; justify-content: center; gap: 10px;
    padding: 16px 24px; margin-bottom: 24px;
    background: rgba(16,185,129,0.12); border: 1px solid rgba(16,185,129,0.3);
    border-radius: 12px; color: #10b981; font-weight: 600; font-size: 0.95rem;
}
.free-webinar-success-icon { font-size: 1.3rem; }
.free-webinar-embed {
    border-radius: 14px; overflow: hidden; margin-bottom: 24px;
    border: 1px solid rgba(255,255,255,0.1);
}
.free-webinar-embed iframe {
    display: block; width: 100%; min-height: 380px;
}
.free-webinar-upsell {
    padding: 24px; background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1); border-radius: 14px;
}
.free-webinar-upsell p {
    color: rgba(255,255,255,0.6); font-size: 0.95rem; margin-bottom: 16px; line-height: 1.6;
}
.free-webinar-upsell strong { color: #10b981; -webkit-text-fill-color: #10b981; }
.free-webinar-upsell .btn { width: auto; display: inline-block; }

/* ─── FAQ ──────────────────────────────── */
.faq-section { padding: 96px 0; background: #fafafa; }
.faq-list { max-width: 700px; margin: 48px auto 0; }
.faq-item { border-bottom: 1px solid #e8e8e8; }
.faq-question {
    width: 100%; background: none; border: none; color: #1a1a2e;
    font-family: inherit; font-size: 1.02rem; font-weight: 700; text-align: left;
    padding: 22px 0; cursor: pointer;
    display: flex; justify-content: space-between; align-items: center; gap: 16px;
    transition: color 0.2s;
}
.faq-question:hover { color: #e8461e; }
.faq-arrow { font-size: 1.1rem; transition: transform 0.3s; flex-shrink: 0; color: #ccc; }
.faq-item.open .faq-arrow { transform: rotate(180deg); color: #e8461e; }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
.faq-answer-inner { padding: 0 0 22px 0; color: #888; font-size: 0.92rem; line-height: 1.7; }

/* ─── FORM ─────────────────────────────── */
.order-section { padding: 80px 0; background: #fff; border-top: 1px solid #eee; }
.form-container { max-width: 600px; }
.order-form {
    background: #fafafa; border: 1px solid #eee; border-radius: 18px; padding: 36px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.03);
}
.form-group { margin-bottom: 22px; }
.form-group label { display: block; font-size: 0.92rem; font-weight: 600; color: #1a1a2e; margin-bottom: 7px; }
.form-group input, .form-group select, .form-group textarea {
    width: 100%; padding: 13px 15px; border: 1px solid #ddd; border-radius: 10px;
    font-family: inherit; font-size: 0.96rem; color: #1a1a2e;
    transition: border-color 0.2s; background: #fff;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
    outline: none; border-color: #e8461e;
}
.form-group input::placeholder, .form-group textarea::placeholder { color: #ccc; }
.w-full { width: 100%; }
.success-message { text-align: center; padding: 40px 0; }
.success-message h3 { color: #10b981; font-size: 1.3rem; margin-bottom: 12px; }
.success-message p { color: #888; }

/* ─── TESTIMONIALS ─────────────────────── */
.testimonials-section { padding: 96px 0; background: #fff; }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 48px; }
.testimonials-grid--6 { grid-template-columns: repeat(3, 1fr); }
.testimonial-card {
    background: #fafafa; border: 1px solid #eee; border-radius: 18px; padding: 28px 24px;
    transition: all 0.35s cubic-bezier(0.16,1,0.3,1); position: relative;
    display: flex; flex-direction: column;
}
.testimonial-card:hover {
    transform: translateY(-5px); background: #fff;
    border-color: #ddd; box-shadow: 0 16px 48px rgba(0,0,0,0.06);
}
.testimonial-stars {
    font-size: 1.2rem; letter-spacing: 2px; margin-bottom: 14px;
    background: linear-gradient(135deg, #f59e0b, #eab308);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.testimonial-text {
    font-size: 0.9rem; color: #555; line-height: 1.7; margin-bottom: 18px;
    font-style: italic; flex: 1;
}
.testimonial-author {
    border-top: 1px solid #eee; padding-top: 14px;
    display: flex; align-items: center; gap: 12px;
}
.testimonial-avatar {
    width: 38px; height: 38px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: #fff; font-size: 0.72rem; font-weight: 800; letter-spacing: 0.03em;
    flex-shrink: 0;
}
.testimonial-name { display: block; font-size: 0.88rem; font-weight: 700; color: #0a0a0a; }
.testimonial-role { display: block; font-size: 0.75rem; color: #aaa; margin-top: 1px; }

/* ─── FOOTER ───────────────────────────── */
.site-footer { padding: 56px 0 36px; background: #fafafa; border-top: 1px solid #eee; }
.footer-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 48px; }
.footer-col h3 { font-size: 0.95rem; font-weight: 800; color: #0a0a0a; margin-bottom: 18px; }
.footer-col a, .footer-col p {
    display: block; color: #999; font-size: 0.88rem; padding: 3px 0; transition: color 0.2s;
}
.footer-col a:hover { color: #e8461e; }
.footer-contact { display: flex !important; align-items: center; gap: 10px; }
.footer-contact svg { width: 15px; height: 15px; fill: #e8461e; flex-shrink: 0; }

/* ─── RESPONSIVE ───────────────────────── */
@media (max-width: 960px) {
    .hero-grid { grid-template-columns: 1fr; gap: 36px; }
    .hero-image img { max-width: 300px; }
    .hero-cta-group { flex-direction: column; align-items: center; }
    .hero-heading, .hero-sub, .hero-cta-note { text-align: center; }
    .hero-sub { margin-left: auto; margin-right: auto; }
    .webinar-preview-link { margin-left: auto; margin-right: auto; font-size: 0.88rem; }
    .learn-grid { grid-template-columns: 1fr 1fr; }
    .audience-grid { grid-template-columns: 1fr; }
    .testimonials-grid { grid-template-columns: 1fr; }
    .pricing-grid--3 { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
    .webinars-split { grid-template-columns: 1fr; gap: 24px; }
    .webinars-single { padding: 0; }
    .webinars-bundle-col { padding: 0; }
    .webinars-divider { padding: 0; }
    .webinars-divider::before { display: none; }
    .webinars-divider-text {
        display: block; text-align: center; width: 100%;
        border-top: 1px solid #e5e5e5; border-bottom: 1px solid #e5e5e5;
        padding: 10px 0; margin: 0;
    }
    .card--combo { transform: scale(1); }
    .card--combo:hover { transform: translateY(-5px); }
    .footer-grid { grid-template-columns: 1fr; gap: 28px; }
    .social-proof-inner { gap: 28px; }
    .sticky-cta { display: none; }
}
@media (max-width: 640px) {
    .learn-grid { grid-template-columns: 1fr; }
    .main-nav { display: none; }

    /* Status box mobile */
    .hero-status { flex-direction: column; text-align: center; gap: 10px; }

    /* Free webinar mobile */
    .free-webinar-card { padding: 28px 20px; }
    .free-webinar-inputs { grid-template-columns: 1fr; }
    .free-webinar-embed iframe { min-height: 220px; }
}

@media (min-width: 961px) {
    a.footer-contact[href^="tel:"] {
        pointer-events: none;
        cursor: default;
    }
}

