/* =========================================================
   DIANA · CONSULT — męski, surowy, nowoczesny landing
   ========================================================= */

:root {
    --bg: #070707;
    --bg-2: #0d0d0d;
    --bg-3: #131313;
    --line: #1f1f1f;
    --line-2: #2a2a2a;
    --text: #f2f2f2;
    --muted: #8a8a8a;
    --muted-2: #5a5a5a;

    --accent: #ff3b1f;      /* czerwony / pomarańcz – alarm, męski */
    --accent-2: #ff6a3d;
    --wa: #25d366;          /* WhatsApp */
    --wa-2: #128c7e;
    --tg: #229ed9;          /* Telegram */
    --tg-2: #1a86b8;

    --radius: 4px;
    --radius-lg: 8px;

    --container: 1180px;

    --font: "Inter", system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
    --font-display: "Space Grotesk", "Inter", system-ui, sans-serif;

    --shadow: 0 10px 40px -10px rgba(0,0,0,.6);
    --shadow-red: 0 20px 60px -20px rgba(255, 59, 31, .45);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

html, body {
    margin: 0;
    padding: 0;
    background: var(--bg);
    color: var(--text);
    font-family: var(--font);
    font-size: 16px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

img, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.container {
    width: 100%;
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 24px;
}

.accent { color: var(--accent); }
.muted { color: var(--muted); }
.strike {
    position: relative;
    color: var(--muted);
}
.strike::after {
    content: "";
    position: absolute;
    left: -4px; right: -4px;
    top: 55%;
    height: 3px;
    background: var(--accent);
    transform: rotate(-2deg);
}

.eyebrow {
    font-family: var(--font-display);
    font-size: 12px;
    letter-spacing: .25em;
    text-transform: uppercase;
    color: var(--accent);
    margin: 0 0 14px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}
.eyebrow::before {
    content: "";
    width: 22px;
    height: 1px;
    background: var(--accent);
    display: inline-block;
}

.section-title {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: clamp(28px, 4.2vw, 54px);
    line-height: 1.08;
    letter-spacing: -0.02em;
    margin: 0 0 24px;
    max-width: 900px;
}

.section-sub {
    color: var(--muted);
    font-size: clamp(15px, 1.6vw, 18px);
    max-width: 720px;
    margin: 0 0 40px;
}

/* =========== NAV ============ */
.nav {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(7,7,7,.75);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--line);
}
.nav__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    height: 64px;
}
.nav__logo {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 18px;
    letter-spacing: .02em;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}
.nav__logo em {
    color: var(--accent);
    font-style: normal;
    font-weight: 500;
}
.nav__dot {
    width: 10px;
    height: 10px;
    background: var(--accent);
    display: inline-block;
    border-radius: 2px;
    box-shadow: 0 0 0 0 rgba(255,59,31,.6);
    animation: pulse 2s infinite;
}

.nav__links {
    display: flex;
    gap: 28px;
    font-size: 14px;
    color: var(--muted);
}
.nav__links a:hover { color: var(--text); }

.nav__ctas {
    display: inline-flex;
    gap: 8px;
    align-items: center;
}
.nav__cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    padding: 9px 14px;
    border-radius: var(--radius);
    font-size: 13px;
    line-height: 1;
    transition: transform .15s ease, background .15s ease, filter .15s ease;
}
.nav__cta svg { width: 16px; height: 16px; }
.nav__cta:hover { transform: translateY(-1px); filter: brightness(1.08); }
.nav__cta--wa { background: var(--wa); color: #061b10; }
.nav__cta--tg { background: var(--tg); color: #06161f; }

@media (max-width: 860px) {
    .nav__links { display: none; }
    .nav__cta span { display: none; }
    .nav__cta { padding: 10px; }
    .nav__cta svg { width: 18px; height: 18px; }
}

/* =========== BUTTONS ============ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-family: var(--font-display);
    font-weight: 700;
    letter-spacing: .01em;
    padding: 16px 26px;
    border-radius: var(--radius);
    border: 1px solid transparent;
    font-size: 15px;
    cursor: pointer;
    transition: transform .15s ease, background .15s ease, border-color .15s ease, color .15s ease, box-shadow .2s ease;
    text-align: center;
    line-height: 1.1;
    will-change: transform;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn__ico,
.btn__wa {
    width: 22px;
    height: 22px;
    flex-shrink: 0;
}

.btn--primary,
.btn--wa {
    background: var(--wa);
    color: #061b10;
    box-shadow: 0 14px 40px -14px rgba(37, 211, 102, .5);
}
.btn--primary:hover,
.btn--wa:hover { background: #2ae874; }

.btn--tg {
    background: var(--tg);
    color: #06161f;
    box-shadow: 0 14px 40px -14px rgba(34, 158, 217, .5);
}
.btn--tg:hover { background: #3ab5ea; }

.btn--ghost {
    background: transparent;
    color: var(--text);
    border-color: var(--line-2);
}
.btn--ghost:hover { border-color: var(--text); }

.btn--block {
    width: 100%;
    display: flex;
}

.btn--xl {
    font-size: 17px;
    padding: 20px 32px;
}

.btn--xxl {
    font-size: 20px;
    padding: 26px 40px;
}

/* =========== HERO ============ */
.hero {
    position: relative;
    overflow: hidden;
    padding: 80px 0 120px;
    border-bottom: 1px solid var(--line);
    background:
        radial-gradient(ellipse 80% 60% at 20% -10%, rgba(255, 59, 31, .18), transparent 60%),
        radial-gradient(ellipse 60% 50% at 100% 0%, rgba(255, 106, 61, .08), transparent 60%),
        var(--bg);
}

.hero__grid {
    position: absolute; inset: 0;
    background-image:
        linear-gradient(to right, rgba(255,255,255,.035) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(255,255,255,.035) 1px, transparent 1px);
    background-size: 64px 64px;
    mask-image: radial-gradient(ellipse 70% 60% at 50% 30%, black, transparent 80%);
    -webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 30%, black, transparent 80%);
    pointer-events: none;
}
.hero__noise {
    position: absolute; inset: 0;
    opacity: .06;
    pointer-events: none;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='160' height='160'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2' stitchTiles='stitch'/></filter><rect width='100%' height='100%' filter='url(%23n)' opacity='.6'/></svg>");
}

.hero__inner {
    position: relative;
    z-index: 2;
    padding-top: 40px;
}

.hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-display);
    font-size: 12px;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: var(--text);
    padding: 8px 14px;
    border: 1px solid var(--line-2);
    border-radius: 999px;
    background: rgba(255,255,255,.02);
    margin-bottom: 28px;
}
.pulse {
    width: 8px; height: 8px; border-radius: 50%;
    background: var(--accent);
    box-shadow: 0 0 0 0 rgba(255,59,31,.8);
    animation: pulse 2s infinite;
}
@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(255,59,31,.7); }
    70% { box-shadow: 0 0 0 14px rgba(255,59,31,0); }
    100% { box-shadow: 0 0 0 0 rgba(255,59,31,0); }
}

.hero__title {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: clamp(34px, 6vw, 76px);
    line-height: 1.02;
    letter-spacing: -0.03em;
    margin: 0 0 28px;
    max-width: 1000px;
}

.hero__sub {
    font-size: clamp(16px, 1.8vw, 20px);
    color: var(--muted);
    max-width: 720px;
    margin: 0 0 36px;
    line-height: 1.55;
}
.hero__sub strong { color: var(--text); }

.hero__cta {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 36px;
}

.hero__proof {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 24px 32px;
    color: var(--muted);
    font-size: 14px;
}
.hero__proof li { display: inline-flex; gap: 8px; align-items: center; }
.hero__proof span {
    color: var(--wa);
    font-weight: 900;
}

.scroll-ind {
    position: absolute;
    bottom: 26px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--muted-2);
    font-family: var(--font-display);
    font-size: 11px;
    letter-spacing: .25em;
    text-transform: uppercase;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}
.scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, var(--muted-2), transparent);
    animation: scrollDown 2s ease-in-out infinite;
}
@keyframes scrollDown {
    0%, 100% { transform: scaleY(.3); transform-origin: top; }
    50% { transform: scaleY(1); }
}

/* =========== MIRROR ============ */
.mirror {
    padding: 120px 0;
    background: var(--bg-2);
    border-bottom: 1px solid var(--line);
}
.mirror__grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 1px;
    background: var(--line);
    border: 1px solid var(--line);
    margin: 44px 0;
}
.q {
    background: var(--bg-2);
    padding: 28px 26px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    min-height: 180px;
    transition: background .2s ease, transform .2s ease;
}
.q:hover {
    background: var(--bg-3);
}
.q__num {
    font-family: var(--font-display);
    font-size: 12px;
    color: var(--accent);
    letter-spacing: .15em;
}
.q p {
    font-family: var(--font-display);
    font-size: 18px;
    line-height: 1.35;
    color: var(--text);
    margin: 0;
    font-weight: 500;
}
.q p strong { color: var(--accent); }

.mirror__hit {
    text-align: center;
    font-family: var(--font-display);
    font-size: clamp(18px, 2.2vw, 26px);
    line-height: 1.4;
    color: var(--muted);
    max-width: 780px;
    margin: 40px auto 0;
}

/* =========== ABOUT ============ */
.about {
    padding: 120px 0;
    border-bottom: 1px solid var(--line);
}
.about__grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 60px;
    align-items: start;
}
.about__text .lead {
    font-size: 19px;
    line-height: 1.6;
    color: var(--text);
    margin: 0 0 16px;
}
.about__text p {
    color: var(--muted);
    margin: 0 0 16px;
}
.about__text strong { color: var(--text); }

.about__pills {
    list-style: none;
    margin: 24px 0 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
.about__pills li {
    border: 1px solid var(--line-2);
    padding: 8px 14px;
    border-radius: 999px;
    font-size: 13px;
    color: var(--text);
    background: rgba(255,255,255,.02);
}

.about__card {
    background: linear-gradient(180deg, var(--bg-2), var(--bg-3));
    border: 1px solid var(--line-2);
    padding: 28px;
    border-radius: var(--radius-lg);
    position: sticky;
    top: 84px;
}
.about__card-head {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 12px;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 20px;
    font-family: var(--font-display);
}
.live-dot {
    width: 8px; height: 8px; border-radius: 50%;
    background: var(--wa);
    box-shadow: 0 0 0 0 rgba(37, 211, 102, .7);
    animation: pulse 2s infinite;
}
.about__facts {
    list-style: none;
    margin: 0 0 24px;
    padding: 0;
    border-top: 1px solid var(--line);
}
.about__facts li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 0;
    border-bottom: 1px solid var(--line);
    font-size: 15px;
}
.about__facts span { color: var(--muted); }
.about__facts strong { color: var(--text); }

.about__cta {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
}
.about__small {
    display: block;
    margin-top: 12px;
    color: var(--muted);
    font-size: 13px;
    text-align: center;
}

@media (max-width: 880px) {
    .about__grid { grid-template-columns: 1fr; gap: 40px; }
    .about__card { position: static; }
}

/* =========== FOR WHO / CARDS ============ */
.forwho {
    padding: 120px 0;
    background: var(--bg-2);
    border-bottom: 1px solid var(--line);
}
.cards {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1px;
    background: var(--line);
    border: 1px solid var(--line);
    margin-top: 40px;
}
.card {
    background: var(--bg-2);
    padding: 32px 28px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    transition: background .2s ease, transform .2s ease;
    position: relative;
    min-height: 240px;
}
.card:hover {
    background: var(--bg-3);
}
.card__num {
    font-family: var(--font-display);
    font-size: 12px;
    color: var(--accent);
    letter-spacing: .2em;
}
.card h3 {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 20px;
    margin: 0;
    letter-spacing: -.01em;
}
.card p {
    color: var(--muted);
    font-size: 15px;
    line-height: 1.55;
    margin: 0;
}
.card em { color: var(--accent); font-style: normal; font-weight: 700; }

/* =========== HOW / STEPS ============ */
.how {
    padding: 120px 0;
    border-bottom: 1px solid var(--line);
}
.steps {
    display: grid;
    gap: 24px;
    grid-template-columns: 1fr 1fr;
    margin: 40px 0;
}
.step {
    background: var(--bg-2);
    border: 1px solid var(--line-2);
    padding: 36px 32px;
    border-radius: var(--radius-lg);
    position: relative;
    overflow: hidden;
    transition: transform .2s ease, border-color .2s ease;
}
.step::before {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent), var(--accent-2));
}
.step--alt::before {
    background: linear-gradient(90deg, var(--wa), #1ea85b);
}
.step:hover { border-color: var(--text); }

.step__head {
    display: flex;
    gap: 18px;
    align-items: flex-start;
    margin-bottom: 20px;
}
.step__num {
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 800;
    color: var(--accent);
    line-height: 1;
}
.step--alt .step__num { color: var(--wa); }
.step__title h3 {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 22px;
    margin: 0 0 6px;
    letter-spacing: -.01em;
}
.step__meta {
    color: var(--muted);
    font-size: 14px;
    margin: 0;
}
.step__meta strong { color: var(--text); }

.step__desc {
    color: var(--muted);
    margin: 0 0 20px;
    font-size: 15px;
    line-height: 1.65;
}
.step__desc strong { color: var(--text); }

.step__list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.step__list li {
    padding-left: 22px;
    position: relative;
    color: var(--text);
    font-size: 14.5px;
    line-height: 1.5;
}
.step__list li::before {
    content: "→";
    position: absolute;
    left: 0;
    top: 0;
    color: var(--accent);
    font-weight: 900;
}
.step__list--check li::before {
    content: "✓";
    color: var(--wa);
}

.how__cta {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin-top: 32px;
}

@media (max-width: 880px) {
    .steps { grid-template-columns: 1fr; }
}

/* =========== PRICING ============ */
.pricing {
    padding: 120px 0;
    background: var(--bg-2);
    border-bottom: 1px solid var(--line);
}
.plans {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin: 40px 0 28px;
}
.plan {
    background: var(--bg);
    border: 1px solid var(--line-2);
    border-radius: var(--radius-lg);
    padding: 36px 32px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    position: relative;
}
.plan--first {
    border-color: var(--accent);
    box-shadow: var(--shadow-red);
}
.plan--first::before {
    content: "★ NAJCZĘŚCIEJ WYBIERANA";
    position: absolute;
    top: -11px;
    left: 20px;
    background: var(--accent);
    color: #1a0500;
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 10px;
    letter-spacing: .2em;
    padding: 5px 10px;
    border-radius: 3px;
}
.plan__head { margin-bottom: 4px; }
.plan__tag {
    display: inline-block;
    font-family: var(--font-display);
    font-size: 11px;
    letter-spacing: .25em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 6px;
}
.plan h3 {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 22px;
    margin: 0;
    letter-spacing: -.01em;
}
.plan__price {
    display: flex;
    align-items: baseline;
    gap: 10px;
    padding: 10px 0 6px;
    border-bottom: 1px solid var(--line);
    margin-bottom: 6px;
}
.plan__amount {
    font-family: var(--font-display);
    font-size: 52px;
    font-weight: 800;
    line-height: 1;
    letter-spacing: -.02em;
}
.plan__per {
    color: var(--muted);
    font-size: 14px;
}
.plan__feats {
    list-style: none;
    padding: 0;
    margin: 0 0 8px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.plan__feats li {
    padding-left: 22px;
    position: relative;
    font-size: 14.5px;
    color: var(--text);
}
.plan__feats li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--wa);
    font-weight: 900;
}
.plan__ctas {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
}
.plan small {
    display: block;
    text-align: center;
    color: var(--muted);
    font-size: 13px;
    margin-top: 2px;
}

.pricing__note {
    text-align: center;
    color: var(--muted);
    font-size: 14px;
    max-width: 640px;
    margin: 24px auto 0;
}
.pricing__note strong { color: var(--text); }

@media (max-width: 860px) {
    .plans { grid-template-columns: 1fr; }
}

/* =========== PERKS ============ */
.perks {
    padding: 120px 0;
    border-bottom: 1px solid var(--line);
}
.perks__grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
    margin-top: 40px;
}
.perk {
    background: var(--bg-2);
    border: 1px solid var(--line-2);
    padding: 28px 26px;
    border-radius: var(--radius-lg);
    transition: transform .2s ease, border-color .2s ease;
}
.perk:hover { border-color: var(--text); transform: translateY(-3px); }
.perk__ico {
    display: inline-flex;
    width: 44px; height: 44px;
    align-items: center;
    justify-content: center;
    background: var(--bg-3);
    border: 1px solid var(--line-2);
    border-radius: var(--radius);
    font-size: 20px;
    margin-bottom: 14px;
}
.perk h4 {
    font-family: var(--font-display);
    font-size: 17px;
    margin: 0 0 6px;
    letter-spacing: -.01em;
}
.perk p {
    margin: 0;
    color: var(--muted);
    font-size: 14.5px;
    line-height: 1.55;
}

/* =========== CALLOUT ============ */
.callout {
    padding: 120px 0;
    background:
        radial-gradient(ellipse at 50% 50%, rgba(255,59,31,.15), transparent 70%),
        var(--bg);
    border-bottom: 1px solid var(--line);
    text-align: center;
}
.callout__inner {
    max-width: 800px;
}
.callout__line {
    font-family: var(--font-display);
    font-size: clamp(20px, 2.4vw, 30px);
    line-height: 1.35;
    color: var(--muted);
    margin: 0 0 16px;
    font-weight: 500;
}
.callout__line em { color: var(--text); font-style: normal; }
.callout__hit {
    font-family: var(--font-display);
    font-size: clamp(26px, 3.2vw, 40px);
    font-weight: 800;
    margin: 0 0 36px;
    letter-spacing: -.02em;
}
.callout__ctas {
    display: inline-flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
}

/* =========== FAQ ============ */
.faq {
    padding: 120px 0;
    background: var(--bg-2);
    border-bottom: 1px solid var(--line);
}
.faq__list {
    margin-top: 40px;
    border-top: 1px solid var(--line);
}
.faq__item {
    border-bottom: 1px solid var(--line);
    padding: 0;
}
.faq__item summary {
    padding: 22px 2px;
    cursor: pointer;
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    font-family: var(--font-display);
    font-weight: 600;
    font-size: clamp(16px, 1.8vw, 19px);
    color: var(--text);
    transition: color .15s ease;
}
.faq__item summary:hover { color: var(--accent); }
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after {
    content: "+";
    font-size: 28px;
    color: var(--accent);
    transition: transform .2s ease;
    font-weight: 300;
    line-height: 1;
    flex-shrink: 0;
}
.faq__item[open] summary::after { content: "−"; }
.faq__item p {
    margin: 0 0 22px;
    padding-right: 40px;
    color: var(--muted);
    font-size: 15.5px;
    line-height: 1.7;
}
.faq__item p strong { color: var(--text); }

/* =========== CTA ============ */
.cta {
    padding: 140px 0 160px;
    background:
        radial-gradient(ellipse at 20% 0%, rgba(37,211,102,.08), transparent 50%),
        radial-gradient(ellipse at 80% 100%, rgba(255,59,31,.12), transparent 50%),
        var(--bg);
    text-align: center;
}
.cta__inner {
    max-width: 820px;
}
.cta__title {
    font-family: var(--font-display);
    font-size: clamp(28px, 4.2vw, 54px);
    line-height: 1.08;
    letter-spacing: -.02em;
    margin: 0 0 40px;
    font-weight: 700;
}
.cta__ctas {
    display: inline-flex;
    flex-wrap: wrap;
    gap: 14px;
    justify-content: center;
}
.cta__meta {
    margin-top: 24px;
    display: inline-flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 14px;
    font-size: 13px;
    color: var(--muted);
    font-family: var(--font-display);
    letter-spacing: .15em;
    text-transform: uppercase;
    justify-content: center;
}
.cta__meta i {
    width: 4px; height: 4px;
    background: var(--muted-2);
    border-radius: 50%;
    display: inline-block;
}
.cta__fine {
    margin-top: 32px;
    color: var(--muted-2);
    font-size: 14px;
}

/* =========== FOOTER ============ */
.footer {
    background: var(--bg);
    border-top: 1px solid var(--line);
    padding: 60px 0 40px;
}
.footer__inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 18px;
    text-align: center;
}
.footer__brand {
    font-family: var(--font-display);
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}
.footer__brand em { color: var(--accent); font-style: normal; font-weight: 500; }
.footer__disc {
    color: var(--muted);
    font-size: 13px;
    max-width: 680px;
    line-height: 1.6;
    margin: 0;
}
.footer__disc strong { color: var(--text); }
.footer__copy {
    color: var(--muted-2);
    font-size: 12px;
    margin: 0;
}

/* =========== STICKY MOBILE CTA ============ */
.sticky-cta {
    position: fixed;
    bottom: 14px;
    left: 14px;
    right: 14px;
    display: none;
    gap: 8px;
    z-index: 40;
    animation: bounceIn .4s ease;
    transition: opacity .2s ease, transform .25s ease;
}
.sticky-cta__btn {
    flex: 1 1 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 15px;
    border-radius: 6px;
    padding: 13px 14px;
    line-height: 1;
    text-align: center;
    box-shadow: 0 10px 30px -8px rgba(0,0,0,.5);
    white-space: nowrap;
}
.sticky-cta__btn svg { width: 20px; height: 20px; flex-shrink: 0; }
.sticky-cta__btn--wa {
    background: var(--wa);
    color: #061b10;
    flex: 1.3 1 0;
}
.sticky-cta__btn--tg {
    background: var(--tg);
    color: #06161f;
}

@media (max-width: 860px) {
    .sticky-cta { display: flex; }
    .footer { padding-bottom: 96px; }
}
@media (max-width: 400px) {
    .sticky-cta__btn--wa { font-size: 14px; }
    .sticky-cta__btn--tg span { display: none; }
    .sticky-cta__btn--tg { flex: 0 0 52px; padding: 13px 0; }
}

@keyframes bounceIn {
    from { transform: translateY(120%); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

/* =========== REVEAL ============ */
.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity .7s ease, transform .7s ease;
}
.reveal.in {
    opacity: 1;
    transform: translateY(0);
}

/* =========== MEDIA ADJUSTMENTS ============ */
@media (max-width: 540px) {
    .hero { padding: 50px 0 90px; }
    .hero__inner { padding-top: 20px; }
    .hero__badge { font-size: 10px; padding: 6px 12px; }
    .hero__proof { gap: 10px 20px; font-size: 13px; }
    .btn--xl { font-size: 15px; padding: 16px 22px; }
    .btn--xxl { font-size: 16px; padding: 20px 24px; }
    .mirror, .about, .forwho, .how, .pricing, .perks, .callout, .faq { padding: 80px 0; }
    .cta { padding: 100px 0 120px; }
    .section-title { font-size: 28px; }
    .q { padding: 22px 20px; min-height: 0; }
    .q p { font-size: 16px; }
    .plan { padding: 28px 24px; }
    .plan__amount { font-size: 44px; }
    .step { padding: 28px 22px; }
    .scroll-ind { display: none; }
}

/* prefer-reduced-motion */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .01ms !important;
    }
    html { scroll-behavior: auto; }
}
