/* ==================================================================
   CoachOS — site de prezentare
   ------------------------------------------------------------------
   Paletă proprie, deliberat diferită de portocaliul aplicației: acolo
   culoarea aparține antrenorului, aici platformei. Obsidian + lime
   electric + jad — energie de sală, execuție de software.

   Fără framework, fără dependențe externe. Tot ce mișcă e CSS;
   JavaScript doar declanșează clase.
   ================================================================== */

:root {
    --ink:        #06070a;
    --ink-2:      #0a0c11;
    --surface:    #10131a;
    --surface-2:  #171b24;
    --surface-3:  #1e2431;
    --line:       #232937;
    --line-soft:  #191e28;

    --text:       #edf1f5;
    --text-soft:  #a8b2c1;
    --text-mute:  #6b7688;

    --lime:       #c8f53c;
    --lime-2:     #e4ff8a;
    --jade:       #1fd8a4;
    --cyan:       #38d6ff;
    --violet:     #7c6bff;

    --brand: linear-gradient(100deg, #c8f53c 0%, #1fd8a4 55%, #38d6ff 100%);

    --r:    18px;
    --r-sm: 12px;
    --r-lg: 28px;

    --font: -apple-system, BlinkMacSystemFont, "SF Pro Display", "Segoe UI",
            Inter, Roboto, "Helvetica Neue", Arial, sans-serif;
    --mono: ui-monospace, "SF Mono", "JetBrains Mono", Menlo, monospace;

    --maxw: 1180px;
    --ease: cubic-bezier(.22, 1, .36, 1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

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

body {
    font-family: var(--font);
    background: var(--ink);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

img, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
::selection { background: var(--lime); color: #06070a; }

::-webkit-scrollbar { width: 11px; }
::-webkit-scrollbar-track { background: var(--ink); }
::-webkit-scrollbar-thumb { background: var(--surface-3); border-radius: 20px; border: 3px solid var(--ink); }

.wrap { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: 24px; }

/* -------------------------------------------------- tipografie */
h1, h2, h3, h4 { line-height: 1.08; letter-spacing: -.035em; font-weight: 800; }
h1 { font-size: clamp(2.6rem, 7vw, 5.2rem); }
h2 { font-size: clamp(2rem, 4.6vw, 3.4rem); letter-spacing: -.03em; }
h3 { font-size: 1.22rem; letter-spacing: -.02em; }

.grad {
    background: var(--brand);
    -webkit-background-clip: text; background-clip: text;
    color: transparent;
}

.eyebrow {
    display: inline-flex; align-items: center; gap: 9px;
    font-size: .72rem; font-weight: 700; text-transform: uppercase;
    letter-spacing: .16em; color: var(--text-mute);
    padding: 7px 14px; border-radius: 999px;
    border: 1px solid var(--line); background: rgba(255, 255, 255, .02);
}
.eyebrow::before {
    content: ""; width: 6px; height: 6px; border-radius: 50%;
    background: var(--lime); box-shadow: 0 0 10px var(--lime);
}

.lead { font-size: clamp(1.02rem, 1.7vw, 1.22rem); color: var(--text-soft); max-width: 62ch; }

/* -------------------------------------------------- butoane */
.btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 9px;
    padding: 14px 26px; border-radius: 999px; border: 1px solid transparent;
    font: inherit; font-size: .95rem; font-weight: 700; cursor: pointer;
    transition: transform .2s var(--ease), box-shadow .25s var(--ease), background .2s, border-color .2s;
    white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn--primary {
    background: var(--brand); color: #06070a;
    box-shadow: 0 8px 30px rgba(31, 216, 164, .22);
}
.btn--primary:hover { box-shadow: 0 14px 44px rgba(31, 216, 164, .38); }

.btn--ghost { border-color: var(--line); color: var(--text-soft); background: rgba(255,255,255,.02); }
.btn--ghost:hover { color: #fff; border-color: var(--surface-3); background: var(--surface); }

.btn--lg { padding: 17px 34px; font-size: 1.02rem; }

/* -------------------------------------------------- aurora de fundal */
.aurora { position: absolute; inset: 0; overflow: hidden; pointer-events: none; z-index: 0; }
.aurora i {
    position: absolute; display: block; border-radius: 50%;
    filter: blur(90px); opacity: .5; will-change: transform;
}
.aurora i:nth-child(1) {
    width: 620px; height: 620px; left: -12%; top: -22%;
    background: radial-gradient(circle, rgba(200,245,60,.42), transparent 68%);
    animation: drift1 22s ease-in-out infinite;
}
.aurora i:nth-child(2) {
    width: 560px; height: 560px; right: -10%; top: -8%;
    background: radial-gradient(circle, rgba(31,216,164,.40), transparent 68%);
    animation: drift2 26s ease-in-out infinite;
}
.aurora i:nth-child(3) {
    width: 640px; height: 640px; left: 34%; bottom: -38%;
    background: radial-gradient(circle, rgba(124,107,255,.32), transparent 68%);
    animation: drift3 30s ease-in-out infinite;
}
@keyframes drift1 { 50% { transform: translate3d(90px, 70px, 0) scale(1.14); } }
@keyframes drift2 { 50% { transform: translate3d(-110px, 60px, 0) scale(1.1); } }
@keyframes drift3 { 50% { transform: translate3d(70px, -80px, 0) scale(1.16); } }

/* Grilă fină peste aurora — dă senzația de „instrument", nu de poster. */
.gridlines {
    position: absolute; inset: 0; z-index: 0; pointer-events: none;
    background-image:
        linear-gradient(rgba(255,255,255,.028) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.028) 1px, transparent 1px);
    background-size: 68px 68px;
    mask-image: radial-gradient(ellipse 85% 60% at 50% 32%, #000 30%, transparent 78%);
}

/* ==================================================================
   NAVIGAȚIE
   ================================================================== */
.nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    transition: background .3s, border-color .3s, backdrop-filter .3s;
    border-bottom: 1px solid transparent;
}
.nav.is-stuck {
    background: rgba(6, 7, 10, .78);
    backdrop-filter: saturate(180%) blur(18px);
    border-bottom-color: var(--line-soft);
}
.nav__in { display: flex; align-items: center; gap: 30px; padding-block: 17px; }

.brand { display: flex; align-items: center; gap: 11px; flex: none; }
.brand svg, .brand img { width: 30px; height: 30px; }
.brand b { font-size: 1.12rem; font-weight: 800; letter-spacing: -.03em; }
.brand b span { font-weight: 500; color: var(--text-mute); }

.nav__links { display: flex; gap: 4px; margin-left: auto; }
.nav__links a {
    padding: 9px 15px; border-radius: 999px; font-size: .9rem;
    font-weight: 600; color: var(--text-soft); transition: color .18s, background .18s;
}
.nav__links a:hover { color: #fff; background: rgba(255,255,255,.05); }

.nav__cta { display: flex; gap: 10px; align-items: center; }
.nav__burger { display: none; background: none; border: 0; color: var(--text); cursor: pointer; padding: 6px; }

@media (max-width: 900px) {
    .nav__links {
        position: fixed; inset: 62px 0 auto; flex-direction: column; gap: 0;
        background: rgba(6,7,10,.97); backdrop-filter: blur(20px);
        border-bottom: 1px solid var(--line); padding: 12px 24px 22px;
        transform: translateY(-130%); transition: transform .34s var(--ease);
    }
    .nav__links.is-open { transform: none; }
    .nav__links a { padding: 14px 4px; font-size: 1.05rem; border-radius: 0; }
    /* Pe telefon încap doar trei lucruri: semnul, un buton, meniul. */
    .nav__in { gap: 12px; }
    .nav__burger { display: block; order: 3; flex: none; }
    .nav__cta { margin-left: auto; order: 2; }
    .nav__cta .btn--ghost { display: none; }
    .nav__cta .btn { padding: 11px 18px; font-size: .86rem; }
    .brand b { font-size: 1.02rem; }
}

/* ==================================================================
   HERO
   ================================================================== */
.hero { position: relative; padding: clamp(130px, 17vw, 190px) 0 clamp(70px, 9vw, 110px); overflow: hidden; }
.hero__in { position: relative; z-index: 2; text-align: center; }
.hero h1 { margin: 26px auto 0; max-width: 15ch; }
.hero .lead { margin: 26px auto 0; text-align: center; }
.hero__cta { display: flex; gap: 13px; justify-content: center; flex-wrap: wrap; margin-top: 38px; }
.hero__fine { margin-top: 18px; font-size: .84rem; color: var(--text-mute); }

/* cifrele de sub titlu */
.hero__stats {
    display: flex; justify-content: center; flex-wrap: wrap;
    gap: clamp(24px, 6vw, 64px); margin-top: 58px;
}
.hstat b {
    display: block; font-size: clamp(1.8rem, 3.6vw, 2.6rem); font-weight: 800;
    letter-spacing: -.04em; font-variant-numeric: tabular-nums;
    background: var(--brand); -webkit-background-clip: text; background-clip: text; color: transparent;
}
.hstat span { font-size: .8rem; color: var(--text-mute); }

/* ==================================================================
   PANOU DE PRODUS (fereastra falsă folosită în mai multe secțiuni)
   ================================================================== */
.win {
    border: 1px solid var(--line); border-radius: var(--r);
    background: linear-gradient(180deg, var(--surface), var(--ink-2));
    overflow: hidden; box-shadow: 0 40px 90px rgba(0,0,0,.6);
}
.win__bar {
    display: flex; align-items: center; gap: 8px; padding: 11px 15px;
    border-bottom: 1px solid var(--line-soft); background: rgba(255,255,255,.015);
}
.win__dots { display: flex; gap: 6px; }
.win__dots i { width: 10px; height: 10px; border-radius: 50%; background: var(--surface-3); display: block; }
.win__url {
    margin-left: 8px; font-family: var(--mono); font-size: .72rem; color: var(--text-mute);
    background: var(--ink); border: 1px solid var(--line-soft);
    padding: 4px 12px; border-radius: 999px; white-space: nowrap;
    overflow: hidden; text-overflow: ellipsis;
}
.win__body { padding: 22px; }

/* Fereastra din hero: se înclină ușor, ca un obiect real pe un birou. */
.hero__win {
    position: relative; z-index: 2; margin: 66px auto 0; max-width: 940px;
    perspective: 1600px;
}
.hero__win .win {
    transform: rotateX(9deg) translateY(0);
    transition: transform 1.1s var(--ease);
}
.hero__win.is-in .win { transform: rotateX(0deg); }

/* fâșia de lumină de sub fereastră */
.hero__glow {
    position: absolute; left: 50%; bottom: -30px; transform: translateX(-50%);
    width: 70%; height: 90px; border-radius: 50%;
    background: radial-gradient(ellipse, rgba(31,216,164,.30), transparent 70%);
    filter: blur(34px); z-index: 1;
}

/* ==================================================================
   PANGLICA CU CONȚINUT ROMÂNESC
   ================================================================== */
.ribbon {
    border-block: 1px solid var(--line-soft);
    background: var(--ink-2); padding: 15px 0; overflow: hidden;
    mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
}
.ribbon__track { display: flex; gap: 0; width: max-content; animation: slide 46s linear infinite; }
.ribbon:hover .ribbon__track { animation-play-state: paused; }
.ribbon span {
    display: inline-flex; align-items: center; gap: 12px; padding-inline: 22px;
    font-size: .88rem; color: var(--text-mute); white-space: nowrap;
}
.ribbon span::after { content: ""; width: 4px; height: 4px; border-radius: 50%; background: var(--jade); opacity: .5; }
@keyframes slide { to { transform: translateX(-50%); } }

/* ==================================================================
   SECȚIUNI
   ================================================================== */
/* Antetul e fix: fără marja asta, o ancoră ar ateriza sub el. */
section[id] { scroll-margin-top: 86px; }

.sec { position: relative; padding: clamp(76px, 11vw, 130px) 0; }
.sec--tint { background: linear-gradient(180deg, transparent, var(--ink-2) 22%, var(--ink-2) 78%, transparent); }

.sec__head { max-width: 700px; margin-bottom: clamp(38px, 5vw, 62px); }
.sec__head.is-center { margin-inline: auto; text-align: center; }
.sec__head h2 { margin-top: 20px; }
.sec__head .lead { margin-top: 18px; }
.sec__head.is-center .lead { margin-inline: auto; }

/* ==================================================================
   CARDURI CU REFLECTOR (lumina urmărește cursorul)
   ================================================================== */
.spot { position: relative; overflow: hidden; }
.spot::before {
    content: ""; position: absolute; inset: 0; z-index: 0; opacity: 0;
    transition: opacity .35s;
    background: radial-gradient(340px circle at var(--mx, 50%) var(--my, 50%),
                rgba(200,245,60,.10), transparent 60%);
}
.spot:hover::before { opacity: 1; }
.spot > * { position: relative; z-index: 1; }

/* ==================================================================
   FLUXUL ÎN 4 PAȘI
   ================================================================== */
.flow { display: grid; grid-template-columns: minmax(0, .82fr) minmax(0, 1.18fr); gap: clamp(26px, 4vw, 54px); align-items: start; }

.steps { display: flex; flex-direction: column; gap: 8px; }
.step {
    display: flex; gap: 16px; padding: 18px 20px; border-radius: var(--r);
    border: 1px solid transparent; cursor: pointer; text-align: left;
    background: none; font: inherit; color: inherit; width: 100%;
    transition: background .28s, border-color .28s;
}
.step:hover { background: rgba(255,255,255,.025); }
.step.is-on { background: var(--surface); border-color: var(--line); }

.step__n {
    flex: none; width: 34px; height: 34px; border-radius: 11px;
    display: grid; place-items: center; font-weight: 800; font-size: .88rem;
    background: var(--surface-2); color: var(--text-mute);
    border: 1px solid var(--line-soft); transition: all .28s;
}
.step.is-on .step__n { background: var(--brand); color: #06070a; border-color: transparent; }

.step h3 { font-size: 1.04rem; }
.step p { font-size: .9rem; color: var(--text-mute); margin-top: 5px; }

/* bara de progres a pasului activ */
.step__bar { height: 2px; background: var(--line); border-radius: 2px; margin-top: 12px; overflow: hidden; display: none; }
.step.is-on .step__bar { display: block; }
.step__bar i { display: block; height: 100%; width: 0; background: var(--brand); }
.step.is-on .step__bar i { animation: fill 6s linear forwards; }
.flow.is-paused .step.is-on .step__bar i { animation-play-state: paused; }
@keyframes fill { to { width: 100%; } }

.flow__stage { position: relative; min-height: 380px; }
.stage {
    position: absolute; inset: 0; opacity: 0; transform: translateY(14px) scale(.985);
    transition: opacity .5s var(--ease), transform .5s var(--ease);
    pointer-events: none;
}
.stage.is-on { opacity: 1; transform: none; pointer-events: auto; }

/* ==================================================================
   MOCK-URI DE INTERFAȚĂ (construite din HTML, nu capturi de ecran —
   rămân clare pe orice ecran și se actualizează odată cu produsul)
   ================================================================== */
.m-row { display: flex; align-items: center; gap: 12px; padding: 11px 0; border-top: 1px solid var(--line-soft); }
.m-row:first-child { border-top: 0; }
.m-ava {
    width: 34px; height: 34px; border-radius: 10px; flex: none; display: grid; place-items: center;
    background: var(--surface-2); color: var(--text-mute); font-weight: 800; font-size: .82rem;
}
.m-grow { flex: 1; min-width: 0; }
.m-t  { font-size: .88rem; font-weight: 600; }
.m-s  { font-size: .75rem; color: var(--text-mute); }
.m-pill {
    font-size: .7rem; font-weight: 700; padding: 3px 9px; border-radius: 999px;
    background: var(--surface-2); color: var(--text-soft); white-space: nowrap;
}
.m-pill--ok   { background: rgba(31,216,164,.14);  color: var(--jade); }
.m-pill--warn { background: rgba(255,190,60,.14);  color: #ffbe3c; }
.m-pill--lime { background: rgba(200,245,60,.14);  color: var(--lime); }

.m-bars { display: flex; flex-direction: column; gap: 11px; }
.m-bar__top { display: flex; justify-content: space-between; font-size: .78rem; color: var(--text-soft); margin-bottom: 5px; }
.m-bar__track { height: 7px; border-radius: 999px; background: var(--surface-2); overflow: hidden; }
.m-bar__fill { height: 100%; border-radius: 999px; background: var(--brand); width: 0; transition: width 1.1s var(--ease); }
.stage.is-on .m-bar__fill { width: var(--w); }

.m-chips { display: flex; flex-wrap: wrap; gap: 7px; }
.m-chip {
    font-size: .76rem; padding: 6px 11px; border-radius: 999px;
    background: var(--surface-2); border: 1px solid var(--line-soft); color: var(--text-soft);
}
.m-chip--on { background: rgba(200,245,60,.12); border-color: rgba(200,245,60,.3); color: var(--lime); }

.m-kpis { display: grid; grid-template-columns: repeat(auto-fit, minmax(96px, 1fr)); gap: 10px; }
.m-kpi { background: var(--surface-2); border: 1px solid var(--line-soft); border-radius: var(--r-sm); padding: 12px 13px; }
.m-kpi b { display: block; font-size: 1.28rem; font-weight: 800; letter-spacing: -.03em; }
.m-kpi span { font-size: .68rem; color: var(--text-mute); text-transform: uppercase; letter-spacing: .05em; }

.m-delta { font-size: .74rem; font-weight: 800; padding: 2px 7px; border-radius: 999px; }
.m-delta--good { background: rgba(31,216,164,.15); color: var(--jade); }
.m-delta--bad  { background: rgba(255,90,90,.14);  color: #ff6a6a; }

.m-photos { display: grid; grid-template-columns: repeat(4, 1fr); gap: 7px; }
.m-photo {
    aspect-ratio: 3/4; border-radius: 9px; border: 1px solid var(--line-soft);
    background: linear-gradient(160deg, var(--surface-3), var(--surface-2));
    display: grid; place-items: center; font-size: .64rem; color: var(--text-mute);
}

/* graficul mic din mock-uri */
.m-chart { width: 100%; height: auto; }
.m-chart .ln {
    stroke: url(#siteGrad); stroke-width: 2.5; fill: none;
    stroke-linecap: round; stroke-linejoin: round;
    stroke-dasharray: 600; stroke-dashoffset: 600;
}
.stage.is-on .m-chart .ln,
.is-in .m-chart .ln { animation: draw 1.6s var(--ease) forwards; }
@keyframes draw { to { stroke-dashoffset: 0; } }

/* ==================================================================
   MODULE
   ================================================================== */
.mods { display: grid; grid-template-columns: repeat(auto-fit, minmax(276px, 1fr)); gap: 16px; }

.mod {
    /* `relative` pentru eticheta „Nou", care stă în colț. */
    position: relative;
    padding: 26px; border-radius: var(--r); border: 1px solid var(--line);
    background: var(--surface); transition: border-color .3s, transform .3s var(--ease);
}
.mod:hover { border-color: var(--surface-3); transform: translateY(-3px); }
.mod__ico {
    width: 46px; height: 46px; border-radius: 13px; display: grid; place-items: center;
    background: rgba(31,216,164,.10); color: var(--jade); margin-bottom: 18px;
}
.mod h3 { margin-bottom: 9px; }
.mod p { font-size: .92rem; color: var(--text-mute); }
.mod ul { list-style: none; margin-top: 15px; display: flex; flex-direction: column; gap: 7px; }
.mod li { font-size: .84rem; color: var(--text-soft); display: flex; gap: 9px; align-items: flex-start; }
.mod li::before {
    content: ""; flex: none; width: 15px; height: 15px; margin-top: 3px; border-radius: 50%;
    background: rgba(31,216,164,.16);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%231fd8a4' stroke-width='3.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
    background-size: 10px; background-repeat: no-repeat; background-position: center;
}

.tag-live {
    display: inline-flex; align-items: center; gap: 7px; font-size: .68rem; font-weight: 800;
    text-transform: uppercase; letter-spacing: .1em; color: var(--jade);
    padding: 4px 10px; border-radius: 999px; background: rgba(31,216,164,.11);
}
.tag-live i { width: 6px; height: 6px; border-radius: 50%; background: var(--jade); animation: blip 2.2s infinite; }
@keyframes blip { 0%, 100% { opacity: 1; } 50% { opacity: .25; } }

/* în curând */
.soon { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 13px; }
.soonc {
    padding: 20px 22px; border-radius: var(--r); border: 1px dashed var(--line);
    background: rgba(255,255,255,.014); transition: border-color .3s, background .3s;
}
.soonc:hover { border-color: var(--surface-3); background: rgba(255,255,255,.03); }
.soonc__top { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-bottom: 9px; }
.soonc h4 { font-size: .98rem; font-weight: 700; letter-spacing: -.02em; }
.soonc p { font-size: .84rem; color: var(--text-mute); }
.soonc__when {
    font-size: .64rem; font-weight: 800; text-transform: uppercase; letter-spacing: .1em;
    color: var(--text-mute); padding: 3px 9px; border-radius: 999px;
    border: 1px solid var(--line); white-space: nowrap;
}
.soonc__when.is-next { color: var(--lime); border-color: rgba(200,245,60,.32); background: rgba(200,245,60,.07); }

/* ==================================================================
   CALCULATOR
   ================================================================== */
.calc { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, .82fr); gap: clamp(24px, 4vw, 46px); align-items: center; }
.calc__panel { padding: clamp(24px, 3.4vw, 36px); border-radius: var(--r-lg); border: 1px solid var(--line); background: var(--surface); }

.slider { margin-bottom: 26px; }
.slider__top { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 11px; }
.slider__top label { font-size: .9rem; color: var(--text-soft); }
.slider__val { font-size: 1.35rem; font-weight: 800; letter-spacing: -.03em; font-variant-numeric: tabular-nums; }
.slider__val em { font-style: normal; font-size: .8rem; font-weight: 600; color: var(--text-mute); }

input[type=range].rng {
    --fill: 30%;
    -webkit-appearance: none; appearance: none; width: 100%; height: 28px;
    background: transparent; cursor: pointer; display: block;
}
input[type=range].rng::-webkit-slider-runnable-track {
    height: 6px; border-radius: 999px;
    background: linear-gradient(90deg, var(--lime) 0 var(--fill), var(--surface-3) var(--fill) 100%);
}
input[type=range].rng::-webkit-slider-thumb {
    -webkit-appearance: none; appearance: none; width: 22px; height: 22px;
    margin-top: -8px; border-radius: 50%; background: #fff;
    border: 3px solid var(--lime); box-shadow: 0 3px 12px rgba(0,0,0,.5);
    transition: transform .14s;
}
input[type=range].rng:active::-webkit-slider-thumb { transform: scale(1.14); }
input[type=range].rng::-moz-range-track { height: 6px; border-radius: 999px; background: var(--surface-3); }
input[type=range].rng::-moz-range-progress { height: 6px; border-radius: 999px; background: var(--lime); }
input[type=range].rng::-moz-range-thumb {
    width: 22px; height: 22px; border-radius: 50%; background: #fff; border: 3px solid var(--lime);
}

.calc__out { text-align: center; }
.calc__big {
    font-size: clamp(2.6rem, 6.5vw, 4.2rem); font-weight: 800; letter-spacing: -.045em;
    font-variant-numeric: tabular-nums; line-height: 1;
    background: var(--brand); -webkit-background-clip: text; background-clip: text; color: transparent;
}
.calc__cap { font-size: .86rem; color: var(--text-mute); margin-top: 10px; }
.calc__note {
    margin-top: 22px; padding: 15px 18px; border-radius: var(--r-sm);
    background: rgba(31,216,164,.07); border: 1px solid rgba(31,216,164,.18);
    font-size: .88rem; color: var(--text-soft); text-align: left;
}
.calc__note b { color: var(--jade); }

/* ==================================================================
   PREȚ
   ================================================================== */
.plans { display: grid; grid-template-columns: repeat(auto-fit, minmax(272px, 1fr)); gap: 18px; align-items: start; }

.plan {
    padding: 32px 30px; border-radius: var(--r-lg);
    border: 1px solid var(--line); background: var(--surface);
}
.plan--hero {
    border-color: rgba(200,245,60,.34);
    background:
        radial-gradient(700px 260px at 50% -12%, rgba(200,245,60,.12), transparent 66%),
        var(--surface);
    box-shadow: 0 30px 80px rgba(0,0,0,.5);
}
.plan--soon { opacity: .78; border-style: dashed; }

.plan__name { font-size: .74rem; font-weight: 800; text-transform: uppercase; letter-spacing: .16em; color: var(--text-mute); }
.plan__price { display: flex; align-items: baseline; gap: 9px; margin-top: 16px; flex-wrap: wrap; }
.plan__price b { font-size: 3.1rem; font-weight: 800; letter-spacing: -.045em; line-height: 1; }
.plan__price span { color: var(--text-mute); font-size: .92rem; }
.plan__was { font-size: .95rem; color: var(--text-mute); text-decoration: line-through; }
.plan__soonprice { font-size: 1.6rem; font-weight: 800; letter-spacing: -.03em; color: var(--text-mute); margin-top: 16px; }
.plan__desc { font-size: .9rem; color: var(--text-mute); margin-top: 13px; }
.plan ul { list-style: none; margin: 24px 0; display: flex; flex-direction: column; gap: 10px; }
.plan li { font-size: .9rem; color: var(--text-soft); display: flex; gap: 10px; align-items: flex-start; }
.plan li::before {
    content: ""; flex: none; width: 17px; height: 17px; margin-top: 3px; border-radius: 50%;
    background: rgba(200,245,60,.14);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23c8f53c' stroke-width='3.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
    background-size: 11px; background-repeat: no-repeat; background-position: center;
}
/* Fără bifă la ce nu există încă: un „✓" ar promite ceva livrat. */
.plan--soon li::before { background-image: none; background-color: var(--surface-3); transform: scale(.42); }

.ribbon-tag {
    display: inline-block; font-size: .68rem; font-weight: 800; text-transform: uppercase;
    letter-spacing: .11em; padding: 5px 12px; border-radius: 999px;
    background: var(--brand); color: #06070a; margin-bottom: 16px;
}

/* ==================================================================
   ÎNTREBĂRI
   ================================================================== */
.faq { max-width: 780px; margin-inline: auto; }
.q { border-bottom: 1px solid var(--line-soft); }
.q__b {
    width: 100%; display: flex; align-items: center; gap: 16px; padding: 22px 4px;
    background: none; border: 0; color: inherit; font: inherit; font-size: 1.02rem;
    font-weight: 650; text-align: left; cursor: pointer; letter-spacing: -.015em;
}
.q__b:hover { color: var(--lime); }
.q__ico { flex: none; margin-left: auto; transition: transform .3s var(--ease); color: var(--text-mute); }
.q.is-open .q__ico { transform: rotate(45deg); color: var(--lime); }
.q__a { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .38s var(--ease); }
.q.is-open .q__a { grid-template-rows: 1fr; }
.q__a > div { overflow: hidden; }
.q__a p { padding: 0 4px 22px; color: var(--text-mute); font-size: .95rem; max-width: 68ch; }

/* ==================================================================
   FINAL + SUBSOL
   ================================================================== */
.final { position: relative; text-align: center; padding: clamp(90px, 13vw, 150px) 0; overflow: hidden; }
.final h2 { max-width: 17ch; margin-inline: auto; }
.final .lead { margin: 22px auto 0; text-align: center; }

.foot { border-top: 1px solid var(--line-soft); padding: 46px 0 40px; background: var(--ink-2); }
.foot__in { display: flex; justify-content: space-between; gap: 26px; flex-wrap: wrap; align-items: flex-start; }
.foot__links { display: flex; gap: 26px; flex-wrap: wrap; }
.foot__links a { font-size: .88rem; color: var(--text-mute); }
.foot__links a:hover { color: var(--text); }
.foot__legal { width: 100%; margin-top: 30px; padding-top: 24px; border-top: 1px solid var(--line-soft);
               font-size: .8rem; color: var(--text-mute); display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; }

/* ==================================================================
   APARIȚIE LA DERULARE
   ================================================================== */
.rise { opacity: 0; transform: translateY(26px); transition: opacity .75s var(--ease), transform .75s var(--ease); }
.rise.is-in { opacity: 1; transform: none; }
.rise[data-d="1"] { transition-delay: .08s; }
.rise[data-d="2"] { transition-delay: .16s; }
.rise[data-d="3"] { transition-delay: .24s; }
.rise[data-d="4"] { transition-delay: .32s; }
.rise[data-d="5"] { transition-delay: .4s; }

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after { animation: none !important; transition-duration: .01ms !important; }
    .rise { opacity: 1; transform: none; }
    .hero__win .win { transform: none; }
}

/* ==================================================================
   ECRANE MICI
   ================================================================== */
@media (max-width: 880px) {
    .flow { grid-template-columns: 1fr; }
    .flow__stage { min-height: 340px; }
    .calc { grid-template-columns: 1fr; }
    .m-photos { grid-template-columns: repeat(4, 1fr); }
}
@media (max-width: 560px) {
    .hero__stats { gap: 26px 34px; }
    .win__body { padding: 16px; }
    .plan { padding: 26px 22px; }
}

/* ── Modul livrat de curând ──────────────────────────────────────────
   Eticheta stă pe colț, nu peste titlu: se vede din prima privire pe
   secțiune, fără să concureze cu ce scrie pe card. */
.mod.is-new { border-color: rgba(200,245,60,.28) }

.mod__new {
    position: absolute;
    top: 14px;
    right: 14px;
    padding: 3px 10px;
    font-size: .66rem;
    font-weight: 800;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: #06070a;
    background: linear-gradient(100deg, #C8F53C, #1FD8A4);
    border-radius: 999px;
}

.mod__done {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 14px;
    font-size: .76rem;
    font-weight: 700;
    font-style: italic;
    color: #C8F53C;
}
.mod__done svg { flex: none }

/* ── Banda de progres ────────────────────────────────────────────────
   Un singur rând sub titlu. Spune ce s-a livrat ultima dată și de cât
   timp — dovada că lista de mai jos nu e o poză veche. */
.prog {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px 12px;
    margin-top: 22px;
    padding: 11px 16px;
    font-size: .84rem;
    border: 1px solid rgba(200,245,60,.22);
    border-radius: 999px;
    background: linear-gradient(100deg, rgba(200,245,60,.06), rgba(31,216,164,.04));
}
.prog__tick {
    display: grid;
    place-items: center;
    width: 20px;
    height: 20px;
    flex: none;
    color: #06070a;
    background: linear-gradient(100deg, #C8F53C, #1FD8A4);
    border-radius: 50%;
}
.prog b        { color: var(--text) }
.prog__when    { color: var(--text-mute) }
.prog em       { font-style: italic; color: var(--text-mute) }

@media (max-width: 560px) {
    .prog { border-radius: 16px }
}
