/* =====================================================================
   PATRIMONIZA — Landing Page VSL
   Identidade visual conforme MANUAL-DA-MARCA.md
   ===================================================================== */

:root {
    /* Brand */
    --primary:        #002947;
    --primary-light:  #00699B;
    --primary-700:    #002139;
    --primary-800:    #00192b;
    --primary-900:    #00111d;
    --secondary:      #0066CC;
    --secondary-400:  #3397ff;
    --secondary-600:  #0052a3;
    --accent:         #10B981;
    --accent-400:     #34D399;

    /* Neutrals */
    --bg-dark:    #111827;
    --white:      #FFFFFF;
    --gray-100:   #F3F4F6;
    --gray-300:   #D1D5DB;
    --gray-400:   #9CA3AF;
    --gray-500:   #6B7280;

    /* Light text on dark bg */
    --text:       #E8EEF5;
    --text-muted: #9FB3C8;
    --text-dim:   #6F8299;

    /* Gradients */
    --grad-cta:  linear-gradient(to right, var(--primary), var(--secondary));
    --grad-text: linear-gradient(to right, var(--secondary-400), var(--accent-400));
    --grad-bg:   linear-gradient(to bottom right, var(--bg-dark), var(--primary), var(--bg-dark));

    /* Shapes */
    --radius:    14px;
    --radius-lg: 20px;
    --container: 1180px;

    /* Shadows */
    --sh-md:    0 4px 6px -1px rgba(0,0,0,.25);
    --sh-lg:    0 16px 32px -8px rgba(0,0,0,.45);
    --sh-brand: 0 14px 30px -6px rgba(0,102,204,.45);
}

/* ----------------------------- Reset ----------------------------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
    font-family: 'Inter', system-ui, sans-serif;
    font-weight: 400;
    line-height: 1.65;
    color: var(--text);
    background: var(--bg-dark);
    background-image: var(--grad-bg);
    background-attachment: fixed;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
    font-family: 'Poppins', system-ui, sans-serif;
    font-weight: 700;
    line-height: 1.18;
    letter-spacing: -.01em;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
strong { color: var(--white); font-weight: 700; }

/* --------------------------- Layout ----------------------------- */
.container {
    width: 100%;
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 20px;
}
@media (min-width: 1024px) { .container { padding: 0 32px; } }

.narrow { max-width: 760px; }
.center { text-align: center; margin-top: 36px; }

/* --------------------------- Helpers ---------------------------- */
.grad {
    background: var(--grad-text);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}
.hl {
    color: var(--white);
    position: relative;
    white-space: nowrap;
}
.hl::after {
    content: "";
    position: absolute;
    left: -4px; right: -4px; bottom: 4px;
    height: 38%;
    background: linear-gradient(to right, rgba(0,102,204,.35), rgba(16,185,129,.30));
    border-radius: 4px;
    z-index: -1;
}

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'Inter', sans-serif;
    font-size: .8rem;
    font-weight: 600;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--accent-400);
    padding: 6px 14px;
    border: 1px solid rgba(16,185,129,.3);
    border-radius: 999px;
    background: rgba(16,185,129,.06);
    margin-bottom: 22px;
}
.center-tag { display: inline-flex; }

.h2 {
    font-size: clamp(1.75rem, 4.2vw, 2.4rem);
    color: var(--white);
    text-align: center;
    margin-bottom: 28px;
}
.h2--left { text-align: left; }

.lead { font-size: 1.15rem; color: var(--text); margin-bottom: 18px; }
.body { font-size: 1.05rem; color: var(--text-muted); margin-bottom: 18px; }
.body strong { color: var(--white); }

/* --------------------------- Buttons ---------------------------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    line-height: 1;
    text-align: center;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: transform .2s ease, box-shadow .2s ease, background .2s ease, color .2s ease;
    padding: 16px 30px;
}
.btn--sm { padding: 11px 20px; font-size: .9rem; }
.btn--lg { padding: 20px 38px; font-size: 1.1rem; border-radius: 14px; }

.btn--primary {
    color: var(--white);
    background: var(--grad-cta);
    box-shadow: var(--sh-brand);
}
.btn--primary:hover {
    background: linear-gradient(to right, var(--primary-700), var(--secondary-600));
    box-shadow: 0 22px 40px -8px rgba(0,102,204,.55);
    transform: translateY(-2px);
}

.btn--outline {
    color: var(--white);
    background: transparent;
    border: 2px solid rgba(255,255,255,.25);
}
.btn--outline:hover { background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.45); }

.btn--ghost {
    color: var(--white);
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.18);
}
.btn--ghost:hover { background: rgba(255,255,255,.14); }

/* ----------------------------- Orbs ----------------------------- */
.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(70px);
    opacity: .22;
    pointer-events: none;
}
.orb--1 { width: 460px; height: 460px; background: var(--secondary); top: -120px; right: -100px; }
.orb--2 { width: 380px; height: 380px; background: var(--primary-light); bottom: -120px; left: -120px; }
.orb--3 { width: 520px; height: 520px; background: var(--secondary); top: 50%; left: 50%; transform: translate(-50%,-50%); opacity: .18; }

.grid-overlay {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
    background-size: 54px 54px;
    mask-image: radial-gradient(ellipse 80% 60% at 50% 30%, #000 40%, transparent 100%);
    -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 30%, #000 40%, transparent 100%);
}

/* ---------------------------- Topbar ---------------------------- */
.topbar {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(17,24,39,.72);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255,255,255,.07);
}
.topbar__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 68px;
}
.brand { display: inline-flex; align-items: center; gap: 11px; }
.brand__mark {
    display: grid;
    place-items: center;
    width: 38px; height: 38px;
    border-radius: 10px;
    font-family: 'Poppins', sans-serif;
    font-weight: 800;
    font-size: 1.25rem;
    color: var(--white);
    background: var(--grad-cta);
    box-shadow: var(--sh-brand);
}
.brand__name {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--white);
    letter-spacing: -.01em;
}
.brand__accent {
    background: var(--grad-text);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    font-weight: 800;
}
.brand picture { display: block; }
.brand__logo {
    height: 46px;
    width: auto;
    display: block;
}
@media (max-width: 640px) { .brand__logo { height: 40px; } }

/* ----------------------------- Hero ----------------------------- */
.hero {
    position: relative;
    padding: 90px 0 100px;
    overflow: hidden;
}
@media (min-width: 1024px) { .hero { padding: 130px 0 130px; } }
.hero__bg { position: absolute; inset: 0; z-index: 0; }
.hero__inner { position: relative; z-index: 1; max-width: 880px; margin: 0 auto; text-align: center; }

.pill {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    font-size: .85rem;
    font-weight: 600;
    color: var(--text);
    padding: 8px 16px;
    border-radius: 999px;
    background: rgba(255,255,255,.05);
    border: 1px solid rgba(255,255,255,.12);
    margin-bottom: 28px;
}
.pill__dot {
    width: 9px; height: 9px; border-radius: 50%;
    background: var(--accent-400);
    box-shadow: 0 0 0 0 rgba(52,211,153,.6);
    animation: pulse 2s infinite;
}
@keyframes pulse {
    0%   { box-shadow: 0 0 0 0 rgba(52,211,153,.55); }
    70%  { box-shadow: 0 0 0 10px rgba(52,211,153,0); }
    100% { box-shadow: 0 0 0 0 rgba(52,211,153,0); }
}

.hero__title {
    font-size: clamp(2.25rem, 7vw, 3.9rem);
    font-weight: 800;
    color: var(--white);
    margin-bottom: 24px;
}
.hero__sub {
    font-size: clamp(1.05rem, 2.3vw, 1.3rem);
    color: var(--text-muted);
    max-width: 680px;
    margin: 0 auto 36px;
}
.hero__sub strong { color: var(--white); }

.hero__actions { margin-bottom: 30px; }

.hero__trust {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px 26px;
    font-size: .95rem;
    color: var(--text-muted);
    font-weight: 500;
}
.hero__trust li { color: var(--accent-400); }

.scroll-cue {
    position: absolute;
    left: 50%;
    bottom: 26px;
    transform: translateX(-50%);
    width: 26px; height: 42px;
    border: 2px solid rgba(255,255,255,.25);
    border-radius: 14px;
    z-index: 1;
}
.scroll-cue span {
    position: absolute;
    left: 50%; top: 8px;
    width: 4px; height: 8px;
    margin-left: -2px;
    border-radius: 2px;
    background: var(--accent-400);
    animation: scrolldot 1.8s infinite;
}
@keyframes scrolldot { 0%{opacity:0;transform:translateY(0)} 40%{opacity:1} 100%{opacity:0;transform:translateY(14px)} }

/* ------------------------------ VSL ----------------------------- */
.vsl { padding: 70px 0; text-align: center; }
.vsl__heading {
    font-size: clamp(1.4rem, 3.4vw, 2.05rem);
    color: var(--white);
    max-width: 800px;
    margin: 0 auto 40px;
}

.video-frame {
    position: relative;
    max-width: 920px;
    margin: 0 auto;
    aspect-ratio: 16 / 9;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background:
        radial-gradient(circle at 50% 45%, rgba(0,102,204,.25), transparent 60%),
        linear-gradient(160deg, #0a1c30, #050d18);
    border: 1px solid rgba(255,255,255,.1);
    box-shadow: var(--sh-lg), 0 0 0 8px rgba(255,255,255,.02);
    display: grid;
    place-items: center;
}
.video-frame { text-decoration: none; cursor: pointer; }
.video-frame iframe,
.video-frame video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}
.video-frame__cover,
.video-frame__cover img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}
.video-frame__cover img { object-fit: cover; }
.video-frame::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background: radial-gradient(circle at 50% 46%, rgba(0,20,41,.15), rgba(0,17,29,.6));
    transition: background .3s ease;
}
.video-frame:hover::after { background: radial-gradient(circle at 50% 46%, rgba(0,20,41,.05), rgba(0,17,29,.45)); }
.video-frame:hover .video-frame__play { transform: scale(1.09); }
.video-frame__play {
    position: relative;
    z-index: 2;
    width: 84px; height: 84px;
    border-radius: 50%;
    border: none;
    cursor: pointer;
    color: var(--white);
    background: var(--grad-cta);
    box-shadow: var(--sh-brand);
    display: grid;
    place-items: center;
    padding-left: 4px;
    transition: transform .2s ease;
    animation: playpulse 2.4s infinite;
}
.video-frame__play:hover { transform: scale(1.08); }
@keyframes playpulse {
    0%   { box-shadow: 0 0 0 0 rgba(0,102,204,.5); }
    70%  { box-shadow: 0 0 0 22px rgba(0,102,204,0); }
    100% { box-shadow: 0 0 0 0 rgba(0,102,204,0); }
}
.video-frame__badge {
    position: absolute;
    top: 18px; left: 18px;
    z-index: 2;
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .1em;
    color: var(--white);
    padding: 6px 12px;
    border-radius: 8px;
    background: rgba(16,185,129,.85);
}
.video-frame__hint {
    position: absolute;
    bottom: 18px; left: 0; right: 0;
    z-index: 2;
    font-size: .8rem;
    color: var(--text-dim);
}

/* Presenter */
.presenter {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    margin-top: 34px;
    padding: 14px 22px 14px 14px;
    border-radius: 999px;
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(255,255,255,.1);
    text-align: left;
}
.presenter__avatar {
    width: 56px; height: 56px;
    flex-shrink: 0;
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    color: var(--white);
    background: var(--grad-cta);
}
.presenter__info { display: flex; flex-direction: column; }
.presenter__label { font-size: .72rem; text-transform: uppercase; letter-spacing: .1em; color: var(--text-dim); }
.presenter__name { font-family: 'Poppins', sans-serif; color: var(--white); font-size: 1.05rem; }
.presenter__role { font-size: .82rem; color: var(--text-muted); max-width: 360px; }

/* ----------------------- Revelação Section ---------------------- */
.reveal-section { padding: 80px 0; }
.myths { display: flex; flex-direction: column; gap: 14px; margin: 26px 0; }
.myth {
    position: relative;
    padding: 16px 20px 16px 52px;
    border-radius: var(--radius);
    background: rgba(255,255,255,.03);
    border-left: 3px solid rgba(255,255,255,.15);
    color: var(--text-muted);
    font-style: italic;
}
.myth::before {
    content: "✕";
    position: absolute;
    left: 18px; top: 50%;
    transform: translateY(-50%);
    color: #EF4444;
    font-style: normal;
    font-weight: 700;
}
.reveal-section__turn {
    font-family: 'Poppins', sans-serif;
    font-size: 1.4rem;
    color: var(--white);
    text-align: center;
    margin: 32px 0;
}
.negatives {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
    margin: 26px 0;
}
.negatives span {
    font-weight: 600;
    color: var(--white);
    padding: 8px 18px;
    border-radius: 999px;
    background: rgba(239,68,68,.1);
    border: 1px solid rgba(239,68,68,.3);
}

/* --------------------------- Autoridade ------------------------- */
.authority { padding: 80px 0; }
.authority__inner {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 50px;
    align-items: center;
}
.authority__photo {
    position: relative;
    aspect-ratio: 1;
    border-radius: var(--radius-lg);
    background: linear-gradient(160deg, var(--primary-light), var(--primary));
    border: 1px solid rgba(255,255,255,.12);
    box-shadow: var(--sh-lg);
}
.authority__photo picture {
    display: block;
    width: 100%;
    height: 100%;
    border-radius: var(--radius-lg);
    overflow: hidden;
}
.authority__photo img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}
.authority__badge {
    position: absolute;
    bottom: -14px; right: -10px;
    font-size: .8rem;
    font-weight: 700;
    color: var(--white);
    padding: 8px 16px;
    border-radius: 999px;
    background: var(--grad-cta);
    box-shadow: var(--sh-brand);
}
.authority__punch {
    font-family: 'Poppins', sans-serif;
    font-size: 1.2rem;
    color: var(--white);
    border-left: 3px solid var(--accent);
    padding-left: 18px;
    margin-top: 24px;
}

/* --------------------------- Discover --------------------------- */
.discover { padding: 80px 0; text-align: center; }
.discover__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
    margin-top: 44px;
    text-align: left;
}
.card {
    position: relative;
    padding: 30px 26px 26px;
    border-radius: var(--radius);
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(255,255,255,.09);
    transition: transform .3s ease, border-color .3s ease, background .3s ease;
    overflow: hidden;
}
.card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0,102,204,.12), transparent 60%);
    opacity: 0;
    transition: opacity .3s ease;
}
.card:hover { transform: translateY(-4px); border-color: rgba(0,102,204,.45); }
.card:hover::before { opacity: 1; }
.card__num {
    display: block;
    font-family: 'Poppins', sans-serif;
    font-weight: 800;
    font-size: 1.6rem;
    margin-bottom: 12px;
    background: var(--grad-text);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}
.card p { position: relative; color: var(--text-muted); font-size: 1.02rem; }
.card--wide { grid-column: 1 / -1; }

.discover__foot {
    margin-top: 38px;
    font-family: 'Poppins', sans-serif;
    font-size: 1.15rem;
    color: var(--white);
}

/* ------------------------------ CTA ----------------------------- */
.cta {
    position: relative;
    padding: 90px 0;
    overflow: hidden;
}
.cta__bg { position: absolute; inset: 0; z-index: 0; }
.cta__inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}
.cta__list {
    list-style: none;
    margin-top: 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.cta__list li { color: var(--text); font-weight: 500; }

/* Form card */
.form-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 38px 34px;
    box-shadow: var(--sh-lg);
    border: 1px solid rgba(255,255,255,.1);
}
.form-card__title {
    font-family: 'Poppins', sans-serif;
    font-size: 1.5rem;
    color: var(--primary);
    text-align: center;
    margin-bottom: 6px;
}
.form-card__sub {
    text-align: center;
    color: var(--gray-500);
    font-size: .95rem;
    margin-bottom: 26px;
}
.form-card__note {
    text-align: center;
    color: var(--gray-400);
    font-size: .78rem;
    margin-top: 16px;
    line-height: 1.5;
}

/* ----- Form Cademi (estilizado, names/ids/hidden preservados) ----- */
#FormCadastro {
    width: 100%;
    font-family: 'Inter', sans-serif;
}
#FormCadastro > * {
    box-sizing: border-box;
    display: block;
    width: 100%;
    border-radius: 10px;
}
#FormCadastro input[type="text"] {
    padding: 0 16px;
    margin-bottom: 14px;
    line-height: 52px;
    font-size: 1rem;
    color: var(--bg-dark);
    background: var(--gray-100);
    border: 1px solid var(--gray-300);
    transition: border-color .2s, box-shadow .2s, background .2s;
}
#FormCadastro input[type="text"]::placeholder { color: var(--gray-400); }
#FormCadastro input[type="text"]:focus {
    outline: none;
    background: var(--white);
    border-color: var(--primary-light);
    box-shadow: 0 0 0 3px rgba(0,105,155,.18);
}
#FormCadastro input._error { border-color: #EF4444 !important; }
#FormCadastro div._error {
    text-align: left;
    font-size: .72rem;
    text-transform: uppercase;
    letter-spacing: .03em;
    margin: -10px 0 12px;
    color: #EF4444;
}
#FormCadastro button {
    border: none;
    margin-top: 6px;
    line-height: 56px;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 1.02rem;
    letter-spacing: .02em;
    color: var(--white);
    background: var(--grad-cta);
    box-shadow: var(--sh-brand);
    transition: transform .2s, box-shadow .2s, background .2s;
}
#FormCadastro button:hover {
    background: linear-gradient(to right, var(--primary-700), var(--secondary-600));
    transform: translateY(-2px);
    box-shadow: 0 22px 40px -8px rgba(0,102,204,.55);
}

/* ----------------------------- Footer --------------------------- */
.footer {
    border-top: 1px solid rgba(255,255,255,.08);
    padding: 60px 0 36px;
    background: rgba(0,17,29,.5);
}
.footer__inner { text-align: center; max-width: 760px; margin: 0 auto; }
.authority__creds {
    color: var(--text-muted);
    font-family: 'Inter', sans-serif;
    font-size: .9rem;
    font-weight: 500;
    line-height: 1.5;
    margin: -8px 0 18px;
}

.google-reviews {
    width: 100%;
    max-width: 920px;
    margin: 8px auto 28px;
    text-align: center;
}
.google-reviews__title {
    font-family: 'Poppins', sans-serif;
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 0;
}
.google-reviews [data-featurable-async] { margin-top: -18px; }
.footer__disclaimer {
    color: var(--text-dim);
    font-size: .85rem;
    padding: 16px 20px;
    border-radius: var(--radius);
    background: rgba(255,255,255,.03);
    border: 1px solid rgba(255,255,255,.07);
    margin-bottom: 22px;
}
.footer__copy { color: var(--text-dim); font-size: .82rem; }

/* --------------------------- Sticky CTA ------------------------- */
.sticky-cta {
    display: none;
    position: fixed;
    left: 16px; right: 16px; bottom: 16px;
    z-index: 60;
    text-align: center;
    padding: 16px;
    border-radius: 14px;
    font-weight: 700;
    color: var(--white);
    background: var(--grad-cta);
    box-shadow: 0 12px 30px -6px rgba(0,0,0,.5), var(--sh-brand);
}

/* ----------------------- Reveal animation ----------------------- */
.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity .7s ease, transform .7s ease;
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }

/* ------------------------------ Modal --------------------------- */
.modal {
    position: fixed;
    inset: 0;
    z-index: 100;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}
.modal.is-open { display: flex; }
.modal__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,17,29,.8);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    animation: fadeIn .25s ease;
}
.modal__dialog {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 440px;
    max-height: 92vh;
    overflow-y: auto;
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 34px 30px 26px;
    box-shadow: var(--sh-lg);
    animation: modalIn .3s ease;
}
.modal__close {
    position: absolute;
    top: 12px; right: 14px;
    width: 38px; height: 38px;
    border: none;
    background: transparent;
    font-size: 1.9rem;
    line-height: 1;
    color: var(--gray-400);
    cursor: pointer;
    border-radius: 8px;
    transition: background .2s, color .2s;
}
.modal__close:hover { background: var(--gray-100); color: var(--primary); }
.modal__head { text-align: center; margin-bottom: 22px; }
.modal__badge {
    display: inline-block;
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: var(--secondary);
    padding: 5px 13px;
    border-radius: 999px;
    background: var(--secondary-50, #E6F2FF);
}
.modal__title {
    font-family: 'Poppins', sans-serif;
    font-size: 1.4rem;
    color: var(--primary);
    margin: 12px 0 6px;
}
.modal__sub { color: var(--gray-500); font-size: .95rem; }
.modal__note {
    text-align: center;
    color: var(--gray-400);
    font-size: .78rem;
    margin-top: 14px;
    line-height: 1.5;
}
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes modalIn {
    from { opacity: 0; transform: translateY(18px) scale(.97); }
    to   { opacity: 1; transform: none; }
}

/* =============================================================== */
/* RESPONSIVE                                                      */
/* =============================================================== */
@media (max-width: 980px) {
    .authority__inner { grid-template-columns: 1fr; gap: 36px; text-align: center; }
    .authority__photo { max-width: 240px; margin: 0 auto; }
    .h2--left { text-align: center; }
    .authority__punch { border-left: none; padding-left: 0; }
    .cta__inner { grid-template-columns: 1fr; gap: 36px; }
    .cta__copy { text-align: center; }
    .cta__list { align-items: center; }
}

@media (max-width: 640px) {
    .topbar__cta { display: none; }
    .hero { padding: 64px 0 80px; }
    .discover__grid { grid-template-columns: 1fr; }
    .presenter { flex-direction: column; text-align: center; border-radius: var(--radius-lg); padding: 20px; }
    .presenter__info { align-items: center; }
    .presenter__role { text-align: center; }
    .reveal-section, .authority, .discover, .cta, .vsl { padding: 56px 0; }
    .form-card { padding: 30px 22px; }
    .sticky-cta { display: block; }
    body { padding-bottom: 78px; }
    .scroll-cue { display: none; }
}

@media (prefers-reduced-motion: reduce) {
    * { animation: none !important; scroll-behavior: auto !important; }
    .reveal { opacity: 1; transform: none; }
}
