:root {
    --bg: #0a1628;              /* Navy background */
    --text: #ffffff;             /* White text */
    --muted: #94a3b8;           /* Light gray for muted text */
    --primary: #3b82f6;          /* Electric blue */
    --primary-soft: #1e3a8a;     /* Dark blue for backgrounds */
    --border: #1e293b;           /* Dark border */
    --accent-dark: #e2e8f0;      /* Light accent for dark bg */
    --card-bg: #0f172a;          /* Slightly lighter navy for cards */
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
}

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

a:hover {
    text-decoration: underline;
}

/* Header / nav */

header {
    position: sticky;
    top: 0;
    z-index: 20;
    background: rgba(10, 22, 40, 0.95);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid var(--border);
}

.nav {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0.75rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-left {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo-mark {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    background: transparent;
}

.logo-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* fallback dog head if no logo image */
.logo-head {
    width: 18px;
    height: 14px;
    border-radius: 10px 12px 8px 8px;
    border: 2px solid var(--primary);
    border-right: none;
    transform: translateX(2px);
    position: relative;
}

.logo-head::before {
    content: "";
    position: absolute;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    border: 2px solid var(--primary);
    border-left: none;
    border-bottom: none;
    top: -5px;
    right: -4px;
}

.logo-dot {
    position: absolute;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--primary);
    bottom: 6px;
    right: 6px;
}

.brand-title {
    font-weight: 600;
    font-size: 1.1rem;
    letter-spacing: 0.03em;
    color: var(--text);
}

.brand-subtitle {
    font-size: 0.75rem;
    color: var(--muted);
    text-transform: uppercase;
}

.nav-links {
    display: flex;
    gap: 1.25rem;
    font-size: 0.95rem;
}

.nav-link {
    cursor: pointer;
    position: relative;
    padding-bottom: 0.15rem;
    color: var(--text);
}

.nav-link.active::after,
.nav-link:hover::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 2px;
    background: var(--primary);
}

/* Layout */

main {
    max-width: 1100px;
    margin: 0 auto;
    padding: 2.5rem 1.5rem 3.5rem;
}

section {
    margin-bottom: 3.5rem;
}

/* Hero */

.hero {
    display: grid;
    grid-template-columns: minmax(0, 2fr) minmax(0, 1.5fr);
    gap: 2.5rem;
    align-items: center;
    padding-top: 1.5rem;
    padding-bottom: 3rem;
}

.hero-eyebrow {
    text-transform: uppercase;
    font-size: 0.8rem;
    color: var(--primary);
    letter-spacing: 0.12em;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.hero-title {
    font-size: clamp(2rem, 3vw + 1rem, 2.8rem);
    font-weight: 700;
    letter-spacing: -0.03em;
    margin-bottom: 0.75rem;
    color: var(--text);
}

.hero-highlight {
    color: var(--primary);
}

.hero-subtitle {
    color: var(--muted);
    font-size: 1.0rem;
    max-width: 540px;
    margin-bottom: 1.5rem;
}

.hero-bullets {
    display: grid;
    gap: 0.4rem;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
    color: var(--accent-dark);
}

.hero-bullets span {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}

.hero-bullets span::before {
    content: "*";
    color: var(--primary);
    font-size: 1.1rem;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    align-items: center;
}

/* Buttons */

.btn-primary {
    background: var(--primary);
    color: #fff;
    border-radius: 999px;
    padding: 0.7rem 1.4rem;
    border: none;
    cursor: pointer;
    font-size: 0.95rem;
    font-weight: 500;
}

.btn-primary:hover {
    filter: brightness(1.2);
}

.btn-ghost {
    background: transparent;
    color: var(--accent-dark);
    border-radius: 999px;
    padding: 0.7rem 1.3rem;
    border: 1px solid var(--border);
    cursor: pointer;
    font-size: 0.9rem;
}

.btn-ghost:hover {
    background: rgba(59, 130, 246, 0.1);
    border-color: var(--primary);
}

.btn-small {
    font-size: 0.8rem;
    padding: 0.45rem 0.9rem;
    border-radius: 999px;
    border: 1px solid transparent;
    cursor: pointer;
}

.btn-small-primary {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
}

.btn-small-outline {
    background: transparent;
    color: var(--accent-dark);
    border-color: var(--border);
}

.btn-small-primary:hover {
    filter: brightness(1.2);
}

.btn-small-outline:hover {
    background: rgba(59, 130, 246, 0.1);
    border-color: var(--primary);
}

/* Hero visual block */

.hero-visual-card {
    padding: 1.25rem;
    border-radius: 1.25rem;
    background: var(--card-bg);
    border: 1px solid var(--border);
    color: var(--text);
}

.hero-visual-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.hero-flow-image-wrap {
    border-radius: 0.85rem;
    overflow: hidden;
    background: var(--bg);
    border: 1px solid var(--border);
    margin-bottom: 0.75rem;
}

.hero-flow-image {
    display: block;
    width: 100%;
    height: auto;
}

.hero-visual-text {
    font-size: 0.85rem;
    color: var(--accent-dark);
    margin-bottom: 0.75rem;
}

.hero-visual-meta {
    font-size: 0.78rem;
    color: var(--muted);
    margin-bottom: 0.75rem;
}

/* Sections */

.section-title {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text);
}

.section-subtitle {
    color: var(--muted);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
}

/* Flows */

.flows-grid {
    display: grid;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .flows-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

.flow-card {
    border-radius: 1.25rem;
    border: 1px solid var(--border);
    padding: 1.25rem;
    background: var(--card-bg);
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    height: 100%;
    transition: all 0.3s ease;
}

.flow-card:hover {
    border-color: var(--primary);
    box-shadow: 0 0 20px rgba(59, 130, 246, 0.3);
    transform: translateY(-2px);
}

.flow-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--primary);
}

.flow-title {
    font-size: 1.0rem;
    font-weight: 600;
    color: var(--text);
}

.flow-body {
    font-size: 0.9rem;
    color: var(--muted);
}

.flow-steps {
    font-size: 0.85rem;
    color: var(--accent-dark);
    padding-left: 1.1rem;
    margin: 0;
}

.flow-steps li {
    margin-bottom: 0.3rem;
}

.flow-meta {
    font-size: 0.8rem;
    color: var(--muted);
}

.flow-ctas {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 0.5rem;
}

/* About */

.about-grid {
    display: grid;
    gap: 1.75rem;
}

@media (min-width: 768px) {
    .about-grid {
        grid-template-columns: minmax(0, 1.5fr) minmax(0, 1.3fr);
    }
}

.about-text p {
    margin-top: 0;
    margin-bottom: 0.8rem;
    font-size: 0.95rem;
    color: var(--accent-dark);
}

.about-highlight {
    padding: 1rem 1.1rem;
    border-radius: 1rem;
    border: 1px dashed var(--primary);
    background: var(--primary-soft);
    font-size: 0.9rem;
    color: var(--accent-dark);
}

/* Avatars */

.about-avatars {
    margin-top: 1rem;
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.avatar-card {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.avatar-image {
    width: 65px;
    height: 65px;
    border-radius: 999px;
    object-fit: cover;
    border: 2px solid var(--primary);
    background: var(--card-bg);
}

.avatar-label {
    font-size: 0.85rem;
    color: var(--text);
}

/* Contact */

.contact-card {
    max-width: 620px;
    border-radius: 1.5rem;
    border: 1px solid var(--border);
    padding: 1.5rem;
    background: var(--card-bg);
}

form {
    display: grid;
    gap: 1rem;
}

.form-row {
    display: grid;
    gap: 0.75rem;
}

@media (min-width: 600px) {
    .form-row.two-col {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

label {
    font-size: 0.85rem;
    font-weight: 500;
    display: block;
    margin-bottom: 0.25rem;
    color: var(--text);
}

input[type="text"],
input[type="email"],
textarea {
    width: 100%;
    padding: 0.6rem 0.7rem;
    border-radius: 0.6rem;
    border: 1px solid var(--border);
    font-size: 0.9rem;
    font-family: inherit;
    background: var(--bg);
    color: var(--text);
}

input[type="text"]:focus,
input[type="email"]:focus,
textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

textarea {
    min-height: 120px;
    resize: vertical;
}

.form-footnote {
    font-size: 0.8rem;
    color: var(--muted);
}

.checkbox-row {
    display: flex;
    gap: 0.4rem;
    font-size: 0.85rem;
    align-items: flex-start;
    color: var(--text);
}

.checkbox-row input[type="checkbox"] {
    margin-top: 0.2rem;
}

/* Alerts */

.alert {
    padding: 0.7rem 0.9rem;
    border-radius: 0.6rem;
    font-size: 0.85rem;
    margin-bottom: 0.75rem;
}

.alert-success {
    background: rgba(16, 185, 129, 0.1);
    color: #10b981;
    border: 1px solid rgba(16, 185, 129, 0.3);
}

.alert-error {
    background: rgba(239, 68, 68, 0.1);
    color: #ef4444;
    border: 1px solid rgba(239, 68, 68, 0.3);
}

/* Footer */

footer {
    border-top: 1px solid var(--border);
    padding: 1.5rem;
    font-size: 0.85rem;
    color: var(--muted);
    background: var(--card-bg);
}

.footer-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    gap: 0.75rem;
}

@media (min-width: 768px) {
    .footer-inner {
        grid-template-columns: minmax(0, 2fr) minmax(0, 1.5fr);
        align-items: center;
    }
}

.footer-social {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    align-items: center;
}

.footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.3rem 0.7rem;
    border-radius: 999px;
    border: 1px solid var(--border);
    font-size: 0.8rem;
    color: var(--accent-dark);
    gap: 0.35rem;
    transition: all 0.2s ease;
}

.footer-social a:hover {
    border-color: var(--primary);
    background: rgba(59, 130, 246, 0.1);
    text-decoration: none;
}

.social-icon {
    width: 16px;
    height: 16px;
    border-radius: 3px;
    object-fit: cover;
}

.footer-note {
    font-size: 0.8rem;
}

/* Misc */

html {
    scroll-behavior: smooth;
}

@media (max-width: 720px) {
    .hero {
        grid-template-columns: minmax(0, 1fr);
    }
}


/* =========================================
   LEAD ENGINE FREE WEBINAR THEME (DARK)
   Scoped to body.lead-webinar
========================================= */

body.lead-webinar {
    margin: 0;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
}

body.lead-webinar .page {
    min-height: 100vh;
}

body.lead-webinar .max-w {
    max-width: 1140px;
    margin: 0 auto;
    padding: 32px 20px 60px;
}

/* Announcement bar */
body.lead-webinar .announcement {
    background: var(--primary-soft);
    padding: 10px 20px;
    text-align: center;
    font-size: 13px;
    font-weight: 500;
    color: var(--text);
    border-bottom: 1px solid var(--border);
    box-shadow: 0 1px 3px rgba(59, 130, 246, 0.2);
}

body.lead-webinar .announcement-pulse {
    display: inline-block;
    width: 8px;
    height: 8px;
    background: var(--primary);
    border-radius: 50%;
    margin-right: 8px;
}

/* Hero layout */
body.lead-webinar .hero {
    display: grid;
    grid-template-columns: minmax(0, 3fr) minmax(0, 2.2fr);
    gap: 40px;
    align-items: flex-start;
    margin-top: 24px;
}

body.lead-webinar .eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    border-radius: 999px;
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.3);
    font-size: 13px;
    font-weight: 600;
    color: #10b981;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

body.lead-webinar .eyebrow-icon {
    width: 14px;
    height: 14px;
    border-radius: 999px;
    background: #10b981;
}

body.lead-webinar .hero-title {
    font-size: clamp(34px, 4vw + 16px, 48px);
    font-weight: 800;
    letter-spacing: -0.04em;
    line-height: 1.1;
    margin: 0 0 18px;
    color: var(--text);
}

body.lead-webinar .hero-title .highlight {
    color: var(--primary);
}

body.lead-webinar .hero-subtitle {
    font-size: 16px;
    color: var(--muted);
    max-width: 600px;
    margin-bottom: 24px;
    line-height: 1.7;
}

/* Stats */
body.lead-webinar .proof-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 24px;
    padding: 16px 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

body.lead-webinar .stat {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

body.lead-webinar .stat-number {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary);
    line-height: 1;
}

body.lead-webinar .stat-label {
    font-size: 12px;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Bullets */
body.lead-webinar .benefit-bullets {
    display: grid;
    gap: 10px;
    margin-bottom: 20px;
}

body.lead-webinar .bullet {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 15px;
    color: var(--accent-dark);
}

body.lead-webinar .bullet-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #10b981;
    color: #ffffff;
    font-size: 12px;
    font-weight: 700;
    flex-shrink: 0;
    margin-top: 2px;
}

body.lead-webinar .cta-note {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--muted);
    margin-top: 12px;
}

body.lead-webinar .cta-note-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 2px solid #10b981;
    box-shadow: 0 0 4px rgba(16, 185, 129, 0.7);
}

/* Form card */
body.lead-webinar .form-card {
    position: relative;
    background: var(--card-bg);
    border-radius: 20px;
    padding: 24px 20px 20px;
    border: 1px solid var(--border);
    box-shadow: 0 10px 25px rgba(59, 130, 246, 0.2);
    max-width: 480px;
    margin-left: auto;
    overflow: hidden;
}

body.lead-webinar .form-glow {
    display: none;
}

/* Sections */
body.lead-webinar .section {
    margin-top: 40px;
    padding: 28px 24px;
    border-radius: 20px;
    background: var(--card-bg);
    border: 1px solid var(--border);
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.1);
}

body.lead-webinar .section-header {
    text-align: center;
    margin-bottom: 24px;
}

body.lead-webinar .section-kicker {
    font-size: 12px;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 700;
    margin-bottom: 6px;
}

body.lead-webinar .section-title {
    font-size: clamp(22px, 3vw, 28px);
    font-weight: 700;
    margin: 0 0 10px;
    color: var(--text);
}

body.lead-webinar .section-subtitle {
    font-size: 15px;
    color: var(--muted);
    max-width: 700px;
    margin: 0 auto;
}

/* Grids */
body.lead-webinar .grid-3 {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    margin-top: 20px;
}

@media (max-width: 900px) {
    body.lead-webinar .hero {
        grid-template-columns: minmax(0, 1fr);
        gap: 24px;
    }

    body.lead-webinar .form-card {
        max-width: 100%;
        margin-left: 0;
    }

    body.lead-webinar .grid-3 {
        grid-template-columns: minmax(0, 1fr);
    }
}

body.lead-webinar .learn-card {
    padding: 18px 16px;
    border-radius: 14px;
    background: var(--bg);
    border: 1px solid var(--border);
    transition: all 0.2s ease;
}

body.lead-webinar .learn-card:hover {
    transform: translateY(-2px);
    border-color: var(--primary);
    box-shadow: 0 8px 18px rgba(59, 130, 246, 0.2);
}

body.lead-webinar .learn-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border-radius: 10px;
    background: var(--primary);
    color: #ffffff;
    font-weight: 700;
    font-size: 15px;
    margin-bottom: 10px;
}

/* Two column grid */
body.lead-webinar .grid-2 {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
    margin-top: 20px;
}

@media (max-width: 800px) {
    body.lead-webinar .grid-2 {
        grid-template-columns: minmax(0, 1fr);
    }
}

body.lead-webinar .fit-card {
    padding: 20px 18px;
    border-radius: 16px;
    border: 1px solid var(--border);
}

body.lead-webinar .fit-perfect {
    background: rgba(16, 185, 129, 0.05);
    border-color: rgba(16, 185, 129, 0.3);
}

body.lead-webinar .fit-not {
    background: var(--bg);
    border-color: var(--border);
}

body.lead-webinar .fit-card h3 {
    font-size: 17px;
    margin: 0 0 12px;
    color: var(--text);
}

body.lead-webinar .fit-card ul {
    margin: 0;
    padding-left: 0;
    list-style: none;
}

body.lead-webinar .fit-card li {
    padding: 8px 0;
    border-bottom: 1px solid var(--border);
    font-size: 14px;
    line-height: 1.5;
    display: flex;
    gap: 8px;
    color: var(--accent-dark);
}

body.lead-webinar .fit-card li:last-child {
    border-bottom: none;
}

body.lead-webinar .fit-check {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 2px solid #10b981;
    margin-top: 5px;
    flex-shrink: 0;
}

body.lead-webinar .fit-dash {
    width: 6px;
    height: 2px;
    border-radius: 1px;
    background: var(--muted);
    margin-top: 9px;
    flex-shrink: 0;
}

/* CTA section */
body.lead-webinar .cta-section {
    text-align: center;
    padding: 32px 24px;
    background: var(--primary-soft);
    border: 1px solid var(--primary);
}

body.lead-webinar .cta-section h2 {
    font-size: clamp(24px, 3vw, 30px);
    margin: 0 0 12px;
    color: var(--text);
}

body.lead-webinar .cta-section p {
    font-size: 15px;
    color: var(--muted);
    margin: 0 0 20px;
    max-width: 620px;
    margin-left: auto;
    margin-right: auto;
}

/* CTA button */
body.lead-webinar .cta-btn-large {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 32px;
    border-radius: 999px;
    border: none;
    cursor: pointer;
    background: #10b981;
    color: #ffffff;
    font-weight: 600;
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    box-shadow: 0 12px 30px rgba(16, 185, 129, 0.35);
    transition: all 0.2s ease;
    text-decoration: none;
}

body.lead-webinar .cta-btn-large:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 40px rgba(16, 185, 129, 0.45);
}

/* FAQ */
body.lead-webinar .faq-list {
    max-width: 800px;
    margin: 20px auto 0;
}

body.lead-webinar .faq-item {
    margin-bottom: 12px;
    padding: 14px 16px;
    border-radius: 12px;
    background: var(--bg);
    border: 1px solid var(--border);
    transition: all 0.2s ease;
}

body.lead-webinar .faq-item:hover {
    border-color: var(--primary);
}

body.lead-webinar .faq-q {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 4px;
    color: var(--text);
}

body.lead-webinar .faq-a {
    font-size: 13px;
    color: var(--muted);
    line-height: 1.6;
}

/* Footer */
body.lead-webinar .footer {
    margin-top: 40px;
    padding-top: 16px;
    border-top: 1px solid var(--border);
    font-size: 12px;
    color: var(--muted);
    text-align: center;
}

/* =============================================
   WORKSHOP SESSION TABLE STYLES
   ============================================= */

.hero-stacked {
    max-width: 900px;
    margin: 0 auto;
    padding: 3rem 1.5rem;
    text-align: center;
}

.hero-stacked .eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    border-radius: 999px;
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.3);
    font-size: 13px;
    font-weight: 600;
    color: #10b981;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.hero-stacked .eyebrow-icon {
    width: 14px;
    height: 14px;
    border-radius: 999px;
    background: #10b981;
}

.hero-stacked .hero-title {
    font-size: clamp(34px, 4vw + 16px, 48px);
    font-weight: 800;
    letter-spacing: -0.04em;
    line-height: 1.1;
    margin: 0 0 18px;
    color: var(--text);
}

.hero-stacked .hero-title .highlight {
    color: var(--primary);
}

.hero-stacked .hero-subtitle {
    font-size: 18px;
    color: var(--muted);
    max-width: 700px;
    margin: 0 auto 2rem;
    line-height: 1.7;
}

/* Price display */
.price-display {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    margin: 2rem auto;
    padding: 1.5rem;
    background: var(--card-bg);
    border: 2px solid var(--primary);
    border-radius: 16px;
    max-width: 300px;
}

.price-amount {
    font-size: 48px;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
}

.price-label {
    font-size: 14px;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Sessions section */
.sessions-section {
    margin-top: 3rem;
    padding: 2rem 1.5rem;
    background: var(--card-bg);
    border-radius: 20px;
    border: 1px solid var(--border);
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.1);
}

.sessions-table-wrapper {
    overflow-x: auto;
    margin: 2rem 0;
    border-radius: 12px;
    border: 1px solid var(--border);
}

.sessions-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 15px;
}

.sessions-table thead {
    background: var(--bg);
    border-bottom: 2px solid var(--border);
}

.sessions-table th {
    padding: 16px 20px;
    text-align: left;
    font-weight: 600;
    color: var(--text);
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 0.05em;
}

.sessions-table tbody tr {
    border-bottom: 1px solid var(--border);
    transition: background 0.2s ease;
}

.sessions-table tbody tr:hover {
    background: var(--bg);
}

.sessions-table tbody tr:last-child {
    border-bottom: none;
}

.sessions-table td {
    padding: 18px 20px;
    color: var(--accent-dark);
}

.session-date {
    font-weight: 600;
    color: var(--text);
}

.session-time {
    color: var(--muted);
    font-size: 14px;
}

.session-seats {
    font-weight: 500;
}

.seats-available {
    color: #10b981;
}

.seats-full {
    color: #ef4444;
    font-weight: 600;
}

/* Status badges */
.badge {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.badge-available {
    background: rgba(16, 185, 129, 0.1);
    color: #10b981;
    border: 1px solid rgba(16, 185, 129, 0.3);
}

.badge-full {
    background: rgba(239, 68, 68, 0.1);
    color: #ef4444;
    border: 1px solid rgba(239, 68, 68, 0.3);
}

/* Book buttons */
.btn-book {
    display: inline-block;
    padding: 10px 24px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.2s ease;
    text-align: center;
}

.btn-book:not(.btn-disabled) {
    background: var(--primary);
    color: #ffffff;
}

.btn-book:not(.btn-disabled):hover {
    filter: brightness(1.2);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

.btn-disabled {
    background: var(--border);
    color: var(--muted);
    cursor: not-allowed;
}

/* Sessions note */
.sessions-note {
    margin-top: 2rem;
    padding: 1rem 1.5rem;
    background: var(--primary-soft);
    border-left: 4px solid var(--primary);
    border-radius: 8px;
}

.sessions-note p {
    margin: 0;
    font-size: 14px;
    color: var(--text);
    line-height: 1.6;
}

.sessions-note strong {
    color: var(--primary);
}

/* Responsive table */
@media (max-width: 900px) {
    .sessions-table {
        font-size: 14px;
    }
    
    .sessions-table th,
    .sessions-table td {
        padding: 12px 10px;
    }
    
    .sessions-table th {
        font-size: 11px;
    }
}

@media (max-width: 768px) {
    .sessions-table thead {
        display: none;
    }
    
    .sessions-table,
    .sessions-table tbody,
    .sessions-table tr,
    .sessions-table td {
        display: block;
        width: 100%;
    }
    
    .sessions-table tr {
        margin-bottom: 1.5rem;
        border: 1px solid var(--border);
        border-radius: 12px;
        padding: 1rem;
        background: var(--bg);
    }
    
    .sessions-table td {
        padding: 8px 0;
        border-bottom: 1px solid var(--border);
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    
    .sessions-table td:last-child {
        border-bottom: none;
        padding-top: 16px;
    }
    
    .sessions-table td::before {
        content: attr(data-label);
        font-weight: 600;
        color: var(--muted);
        font-size: 12px;
        text-transform: uppercase;
        letter-spacing: 0.05em;
    }
    
    .session-action {
        justify-content: center;
    }
    
    .btn-book {
        width: 100%;
    }
}

.session-available {
    background: transparent;
}

.session-full {
    background: var(--bg);
    opacity: 0.7;
}

/* Hero stats - centered */
.hero-stacked .proof-stats {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin: 2rem auto;
    padding: 1.5rem 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    max-width: 700px;
}

.hero-stacked .stat {
    display: flex;
    flex-direction: column;
    gap: 4px;
    text-align: center;
}

.hero-stacked .stat-number {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary);
    line-height: 1;
}

.hero-stacked .stat-label {
    font-size: 12px;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Hero bullets - centered */
.hero-stacked .benefit-bullets {
    display: grid;
    gap: 1rem;
    margin: 2rem auto;
    max-width: 700px;
    text-align: left;
}

.hero-stacked .bullet {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 15px;
    color: var(--accent-dark);
}

.hero-stacked .bullet-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: #10b981;
    color: #ffffff;
    font-size: 13px;
    font-weight: 700;
    flex-shrink: 0;
    margin-top: 2px;
}

/* Portal styles */
.page-wrap {
    max-width: 1100px;
    margin: 0 auto;
    padding: 2.5rem 1.5rem 3.5rem;
}

.portal-hero {
    margin-bottom: 2.5rem;
}

.portal-eyebrow {
    text-transform: uppercase;
    font-size: 0.8rem;
    color: var(--primary);
    letter-spacing: 0.12em;
    font-weight: 600;
    margin-bottom: 0.4rem;
}

.portal-title {
    font-size: clamp(2rem, 3vw + 1rem, 2.4rem);
    font-weight: 700;
    letter-spacing: -0.03em;
    margin-bottom: 0.5rem;
    color: var(--text);
}

.portal-subtitle {
    color: var(--muted);
    font-size: 0.95rem;
    max-width: 640px;
}

.portal-main {
    display: grid;
    gap: 2rem;
}

.portal-login-card {
    max-width: 480px;
}

.portal-login-card h2 {
    margin-top: 0;
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
    color: var(--text);
}

.portal-login-card p {
    margin-top: 0;
    margin-bottom: 1.25rem;
    font-size: 0.9rem;
    color: var(--muted);
}

/* Webinar grid */
.webinar-section {
    margin-top: 1rem;
}

.webinar-section-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: var(--text);
}

.webinar-grid {
    display: grid;
    gap: 1.25rem;
}

@media (min-width: 768px) {
    .webinar-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

.webinar-card {
    border-radius: 1.25rem;
    border: 1px solid var(--border);
    padding: 1.25rem 1.4rem;
    background: var(--card-bg);
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
}

.webinar-title {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
    color: var(--text);
}

.webinar-meta-row {
    font-size: 0.85rem;
    color: var(--muted);
    display: flex;
    gap: 0.35rem;
    align-items: center;
}

.webinar-meta-label {
    font-weight: 500;
    color: var(--accent-dark);
}

.webinar-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 0.75rem;
}

.webinar-actions a {
    flex: 1;
    text-align: center;
}

.btn-calendar {
    display: inline-block;
    padding: 0.6rem 1.1rem;
    border-radius: 999px;
    border: 1px solid var(--border);
    font-size: 0.85rem;
    font-weight: 500;
    text-decoration: none;
    color: var(--accent-dark);
    transition: all 0.2s ease;
}

.btn-calendar:hover {
    background: rgba(59, 130, 246, 0.1);
    border-color: var(--primary);
    text-decoration: none;
}

.portal-alert {
    max-width: 620px;
    margin: 0 auto 1.5rem;
}

@media (max-width: 720px) {
    .page-wrap {
        padding: 2rem 1.25rem 2.75rem;
    }
}

/* Carousel thumbnail styles */
.flow-thumb {
    width: 100%;
    height: 180px;
    border-radius: 0.85rem 0.85rem 0 0;
    overflow: hidden;
    background: var(--bg);
}

.flow-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.flow-card:hover .flow-thumb img {
    transform: scale(1.05);
}

.flow-card {
    padding: 0;
    overflow: hidden;
}

.flow-card-content {
    padding: 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.flow-ctas {
    margin-top: auto;
    padding-top: 0.75rem;
}

@media (max-width: 768px) {
    .flow-thumb {
        height: 160px;
    }
}

@media (max-width: 480px) {
    .flow-thumb {
        height: 140px;
    }
}

.flows-grid { 
    position: relative; 
    overflow: hidden; 
}

.carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: var(--card-bg);
    border: 2px solid var(--border);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    font-size: 32px;
    cursor: pointer;
    z-index: 10;
    color: var(--text);
    transition: all 0.2s ease;
}

.carousel-nav:hover {
    border-color: var(--primary);
    background: rgba(59, 130, 246, 0.1);
}

.carousel-nav-prev { 
    left: 20px; 
}

.carousel-nav-next { 
    right: 20px; 
}

.carousel-dots {
    display: flex;
    gap: 0.75rem;
    justify-content: center;
    margin-top: 2rem;
}

.carousel-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--border);
    border: none;
    cursor: pointer;
    transition: all 0.3s;
}

.carousel-dot.active {
    background: var(--primary);
    width: 32px;
    border-radius: 6px;
}