/* KAIRO — site public. Design system „warm cream" (consistent cu aplicatia). */
:root {
  --cream: #F3EEE6;
  --cream-2: #EDE6DA;
  --surface: #FFFFFF;
  --ink: #1B1B1D;
  --ink-soft: #3A3A3E;
  --muted: #8B8A90;
  --orange: #F2822E;
  --orange-ink: #C6641A;
  --border: #E7E0D5;
  --shadow: 0 18px 50px -24px rgba(27, 27, 29, 0.22);
  --shadow-sm: 0 6px 20px -12px rgba(27, 27, 29, 0.20);
  --radius: 22px;
  --radius-lg: 30px;
  --radius-sm: 14px;
  --maxw: 1120px;
  --font: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font);
  background: var(--cream);
  color: var(--ink);
  line-height: 1.6;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
::selection { background: var(--orange); color: #fff; }

.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.eyebrow {
  font-size: 13px; font-weight: 700; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--orange-ink);
}
h1, h2, h3 { line-height: 1.1; letter-spacing: -0.02em; font-weight: 800; }
h1 { font-size: clamp(2.4rem, 6vw, 4.2rem); }
h2 { font-size: clamp(1.9rem, 4vw, 3rem); }
h3 { font-size: 1.3rem; font-weight: 700; letter-spacing: -0.01em; }
p.lead { font-size: clamp(1.05rem, 2vw, 1.3rem); color: var(--ink-soft); }
.muted { color: var(--muted); }

/* Butoane */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font); font-weight: 700; font-size: 16px;
  padding: 15px 26px; border-radius: 999px; border: 0; cursor: pointer;
  transition: transform .15s ease, box-shadow .2s ease, background .2s ease;
  white-space: nowrap;
}
.btn-primary { background: var(--ink); color: #fff; }
.btn-primary:hover { transform: translateY(-2px); box-shadow: var(--shadow-sm); }
.btn-orange { background: var(--orange); color: #fff; box-shadow: 0 10px 24px -10px rgba(242,130,46,.7); }
.btn-orange:hover { transform: translateY(-2px); }
.btn-ghost { background: transparent; color: var(--ink); border: 1.5px solid var(--border); }
.btn-ghost:hover { border-color: var(--ink); }
.btn-lg { padding: 18px 32px; font-size: 17px; }

/* Nav */
.nav {
  position: sticky; top: 0; z-index: 50;
  backdrop-filter: saturate(1.4) blur(12px);
  background: rgba(243, 238, 230, 0.82);
  border-bottom: 1px solid transparent;
  transition: border-color .2s ease;
}
.nav.scrolled { border-color: var(--border); }
.nav .wrap { display: flex; align-items: center; justify-content: space-between; height: 72px; }
.brand { display: flex; align-items: center; gap: 10px; font-weight: 800; font-size: 20px; letter-spacing: -0.02em; }
.brand .spark {
  width: 30px; height: 30px; border-radius: 9px; background: var(--orange);
  display: grid; place-items: center; color: #fff; font-size: 17px;
  box-shadow: 0 6px 16px -6px rgba(242,130,46,.8);
}
.nav-links { display: flex; align-items: center; gap: 30px; }
.nav-links a.link { font-weight: 600; font-size: 15px; color: var(--ink-soft); }
.nav-links a.link:hover { color: var(--ink); }
.nav-cta { display: flex; align-items: center; gap: 12px; }
.nav-toggle { display: none; background: none; border: 0; cursor: pointer; padding: 8px; }
.nav-toggle span { display: block; width: 22px; height: 2px; background: var(--ink); margin: 5px 0; border-radius: 2px; transition: .2s; }

/* Hero */
.hero { padding: 72px 0 40px; }
.hero-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 56px; align-items: center; }
.hero h1 { margin: 18px 0 20px; }
.hero .cta-row { display: flex; gap: 14px; margin-top: 32px; flex-wrap: wrap; }
.hero .reassure { margin-top: 16px; font-size: 14px; color: var(--muted); display: flex; align-items: center; gap: 8px; }

/* Mockup telefon (semnatura — replica ecranului app-ului) */
.phone {
  width: 300px; margin: 0 auto; background: var(--cream);
  border-radius: 42px; padding: 14px; box-shadow: var(--shadow);
  border: 1px solid var(--border);
}
.phone-inner { background: var(--cream); border-radius: 30px; padding: 22px 18px; }
.phone .status { display:flex; justify-content: space-between; font-size: 12px; font-weight: 700; color: var(--muted); margin-bottom: 18px; }
.phone .greet { font-size: 22px; font-weight: 800; letter-spacing: -0.02em; }
.phone .greet small { display:block; font-size: 12px; font-weight: 600; color: var(--muted); margin-top: 2px; }
.mock-card { background: var(--surface); border-radius: 20px; padding: 16px; box-shadow: var(--shadow-sm); margin-top: 16px; }
.mock-card .label { font-weight: 700; font-size: 15px; }
.mock-card .sub { font-size: 12px; color: var(--muted); margin: 3px 0 12px; }
.mock-pill { background: var(--ink); color: #fff; border-radius: 13px; padding: 12px; text-align: center; font-weight: 700; font-size: 14px; display:flex; align-items:center; justify-content:center; gap:6px; }
.mock-task { display: flex; align-items: center; gap: 12px; }
.mock-task .circle { width: 22px; height: 22px; border-radius: 999px; border: 2px solid var(--border); flex: none; }
.mock-task .t-title { font-weight: 700; font-size: 14px; }
.mock-task .t-meta { font-size: 11px; color: var(--muted); }
.hero-orb { position: absolute; width: 46px; height: 46px; border-radius: 999px; background: var(--orange); display: grid; place-items: center; color:#fff; box-shadow: 0 12px 30px -8px rgba(242,130,46,.8); }

/* Sectiuni */
.section { padding: 88px 0; }
.section-head { max-width: 640px; margin-bottom: 48px; }
.section-head h2 { margin: 14px 0 14px; }
.center { text-align: center; margin-left: auto; margin-right: auto; }

/* Grid features */
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.card {
  background: var(--surface); border-radius: var(--radius); padding: 28px;
  box-shadow: var(--shadow-sm); border: 1px solid rgba(231,224,213,.6);
  transition: transform .2s ease, box-shadow .2s ease;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.card .ic {
  width: 48px; height: 48px; border-radius: 14px; background: var(--cream);
  display: grid; place-items: center; font-size: 22px; margin-bottom: 18px;
}
.card h3 { margin-bottom: 8px; }
.card p { font-size: 15px; color: var(--ink-soft); }

/* Band inchis (hero card la scara de sectiune) */
.band { background: var(--ink); color: #fff; border-radius: var(--radius-lg); padding: 64px 48px; }
.band h2 { color: #fff; }
.band p { color: rgba(255,255,255,.72); }
.band .orange { color: var(--orange); }

/* Pasi */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; counter-reset: step; }
.step { }
.step .n { font-size: 14px; font-weight: 800; color: var(--orange-ink); letter-spacing: .1em; }
.step h3 { margin: 10px 0 8px; }
.step p { font-size: 15px; color: var(--ink-soft); }

/* Pricing */
.price-grid { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 24px; max-width: 760px; margin: 0 auto; }
.price {
  background: var(--surface); border-radius: var(--radius-lg); padding: 36px;
  box-shadow: var(--shadow-sm); border: 1px solid var(--border);
}
.price.feature { background: var(--ink); color: #fff; border: 0; box-shadow: var(--shadow); position: relative; }
.price.feature .amount, .price.feature h3 { color: #fff; }
.price .tag { display:inline-block; font-size:12px; font-weight:700; letter-spacing:.08em; text-transform:uppercase; color: var(--orange-ink); background: var(--cream); padding: 5px 12px; border-radius: 999px; }
.price.feature .tag { color: #fff; background: var(--orange); }
.price .amount { font-size: 3rem; font-weight: 800; letter-spacing: -0.03em; margin: 18px 0 4px; }
.price .amount small { font-size: 1rem; font-weight: 600; color: var(--muted); }
.price.feature .amount small { color: rgba(255,255,255,.6); }
.price ul { list-style: none; margin: 24px 0; display: grid; gap: 12px; }
.price li { display: flex; gap: 10px; font-size: 15px; align-items:flex-start; }
.price li .ok { color: var(--orange); font-weight: 800; flex:none; }
.price.feature li { color: rgba(255,255,255,.85); }

/* Footer */
.footer { background: var(--ink); color: #fff; padding: 64px 0 40px; margin-top: 40px; }
.footer .grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 32px; }
.footer h4 { font-size: 13px; letter-spacing: .1em; text-transform: uppercase; color: rgba(255,255,255,.5); margin-bottom: 16px; font-weight: 700; }
.footer a { display: block; color: rgba(255,255,255,.78); font-size: 15px; padding: 5px 0; }
.footer a:hover { color: var(--orange); }
.footer .brand { color: #fff; margin-bottom: 14px; }
.footer .bottom { border-top: 1px solid rgba(255,255,255,.12); margin-top: 44px; padding-top: 24px; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; font-size: 13px; color: rgba(255,255,255,.5); }

/* Pagini legale */
.legal { padding: 56px 0 40px; }
.legal .wrap { max-width: 780px; }
.legal h1 { font-size: clamp(2rem, 4vw, 2.8rem); margin-bottom: 8px; }
.legal .updated { color: var(--muted); font-size: 14px; margin-bottom: 12px; }
.legal .note { background: #FFF6EC; border: 1px solid #F4D6B4; border-radius: var(--radius-sm); padding: 16px 18px; font-size: 14px; color: var(--ink-soft); margin: 24px 0; }
.legal h2 { font-size: 1.4rem; margin: 36px 0 12px; }
.legal h3 { margin: 24px 0 8px; }
.legal p, .legal li { color: var(--ink-soft); font-size: 16px; margin-bottom: 12px; }
.legal ul, .legal ol { padding-left: 22px; margin-bottom: 12px; }
.legal li { margin-bottom: 8px; }
.legal a { color: var(--orange-ink); font-weight: 600; text-decoration: underline; }

/* Cookie bar */
.cookie {
  position: fixed; left: 16px; right: 16px; bottom: 16px; z-index: 100;
  max-width: 560px; margin: 0 auto; background: var(--ink); color: #fff;
  border-radius: var(--radius); padding: 20px 22px; box-shadow: var(--shadow);
  display: none; align-items: center; gap: 18px; flex-wrap: wrap;
}
.cookie.show { display: flex; animation: slideUp .35s ease; }
.cookie p { font-size: 14px; color: rgba(255,255,255,.82); flex: 1 1 260px; }
.cookie a { color: var(--orange); text-decoration: underline; }
.cookie .actions { display: flex; gap: 10px; }
.cookie .btn { padding: 11px 18px; font-size: 14px; }
@keyframes slideUp { from { transform: translateY(20px); opacity: 0; } to { transform: none; opacity: 1; } }

/* Responsive */
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { order: -1; }
  .cards, .steps { grid-template-columns: 1fr; }
  .price-grid { grid-template-columns: 1fr; }
  .footer .grid { grid-template-columns: 1fr 1fr; }
  .nav-links { position: fixed; inset: 72px 0 auto 0; background: var(--cream); flex-direction: column; align-items: stretch; gap: 0; padding: 12px 24px 24px; border-bottom: 1px solid var(--border); display: none; }
  .nav-links.open { display: flex; }
  .nav-links a.link { padding: 14px 0; border-bottom: 1px solid var(--border); }
  .nav-links .nav-cta { flex-direction: column; align-items: stretch; margin-top: 12px; }
  .nav-links .nav-cta .btn { justify-content: center; }
  .nav-toggle { display: block; }
  .band { padding: 44px 26px; }
}
@media (max-width: 520px) {
  .footer .grid { grid-template-columns: 1fr; }
  .section { padding: 64px 0; }
}

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
}
:focus-visible { outline: 3px solid var(--orange); outline-offset: 2px; border-radius: 6px; }

/* ---- Landing long-form (structura sales letter) ---- */
.authority { border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); background: rgba(255,255,255,.4); }
.authority .wrap { display: flex; gap: 14px 36px; align-items: center; justify-content: center; flex-wrap: wrap; padding: 18px 24px; }
.authority .item { display: flex; align-items: center; gap: 9px; font-size: 14px; font-weight: 600; color: var(--ink-soft); }
.authority .item .d { color: var(--orange); font-size: 16px; }

/* Bloc de text lung, lizibil (cutit in rana, poveste, poveste finala) */
.prose { max-width: 720px; }
.prose.center { margin-left: auto; margin-right: auto; text-align: center; }
.prose p { font-size: clamp(1.05rem, 1.6vw, 1.22rem); color: var(--ink-soft); margin-bottom: 20px; line-height: 1.7; }
.prose p strong { color: var(--ink); font-weight: 700; }
.pull { font-size: clamp(1.4rem, 3vw, 2rem); font-weight: 800; letter-spacing: -0.02em; line-height: 1.25; color: var(--ink); max-width: 760px; }
.pull .orange { color: var(--orange); }

/* Despre autor / misiune */
.author { display: flex; gap: 24px; align-items: flex-start; flex-wrap: wrap; }
.author .ava { width: 66px; height: 66px; border-radius: 999px; background: var(--orange); color: #fff; display: grid; place-items: center; font-size: 28px; flex: none; box-shadow: 0 10px 24px -10px rgba(242,130,46,.8); }
.author .who { flex: 1 1 320px; }
.author .who .sig { font-weight: 800; margin-top: 14px; }

/* Beneficii — lista cu bife, 2 coloane */
.benefits { display: grid; grid-template-columns: 1fr 1fr; gap: 16px 32px; }
.benefit { display: flex; gap: 12px; align-items: flex-start; }
.benefit .ck { width: 26px; height: 26px; border-radius: 999px; background: var(--orange); color: #fff; display: grid; place-items: center; font-weight: 800; font-size: 14px; flex: none; }
.benefit b { display: block; font-size: 16px; }
.benefit span { font-size: 14px; color: var(--muted); }

/* Cuprins „ce primesti" */
.toc { display: grid; gap: 12px; }
.toc .row { display: flex; gap: 14px; align-items: center; padding: 14px 18px; background: var(--surface); border-radius: var(--radius-sm); box-shadow: var(--shadow-sm); font-weight: 600; }
.toc .row .k { color: var(--orange); font-weight: 800; }

/* Bonusuri */
.bonus { position: relative; }
.bonus .tag { position: absolute; top: 18px; right: 18px; background: var(--orange); color: #fff; font-size: 12px; font-weight: 700; padding: 5px 12px; border-radius: 999px; text-transform: uppercase; letter-spacing: .06em; }

/* Ce pierzi (fara rosu — principiu ADHD; ton cald, nu vinovatie) */
.loss { list-style: none; display: grid; gap: 14px; max-width: 680px; }
.loss li { display: flex; gap: 12px; font-size: 16px; color: var(--ink-soft); align-items: flex-start; }
.loss li .x { color: var(--orange-ink); font-weight: 800; flex: none; }

/* Testimoniale */
.tgrid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.tcard { background: var(--surface); border-radius: var(--radius); padding: 26px; box-shadow: var(--shadow-sm); }
.tcard .stars { color: var(--orange); font-size: 15px; letter-spacing: 2px; margin-bottom: 12px; }
.tcard p { font-size: 15px; color: var(--ink-soft); line-height: 1.6; }
.tcard .by { margin-top: 16px; font-weight: 700; font-size: 14px; }
.tcard .by span { color: var(--muted); font-weight: 500; }
.placeholder-note { text-align: center; font-size: 13px; color: var(--muted); margin-top: 18px; }

/* Scarcity + share */
.scarcity { font-size: clamp(1.1rem, 2vw, 1.35rem); font-weight: 700; color: #fff; max-width: 640px; margin: 0 auto 8px; }
.share { display: flex; gap: 10px; justify-content: center; margin-top: 22px; flex-wrap: wrap; }
.share a { width: 44px; height: 44px; border-radius: 999px; display: grid; place-items: center; background: rgba(255,255,255,.12); color: #fff; font-weight: 700; font-size: 14px; transition: background .2s ease, transform .15s ease; }
.share a:hover { background: var(--orange); transform: translateY(-2px); }

@media (max-width: 900px) {
  .benefits, .tgrid { grid-template-columns: 1fr; }
}

/* Icoane SVG (line) in loc de emoji */
.ic svg { width: 26px; height: 26px; fill: none; stroke: var(--ink); stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.card:hover .ic svg { stroke: var(--orange-ink); }
