/* ============================================================
   Daniela Sirb — Consultant Financiar OVB Allfinanz
   Stiluri pentru pagina de prezentare (o singură pagină)
   ============================================================ */

:root {
  /* Culori */
  --navy-900: #071e45;
  --navy-800: #0a2a5e;
  --navy-700: #103a7d;
  --navy-600: #1b4fa0;
  --accent:   #17a34a;
  --accent-d: #12813a;
  --gold:     #f0a500;

  --ink:      #16233a;
  --ink-soft: #4d5c74;
  --line:     #e3e8f0;
  --bg:       #ffffff;
  --bg-alt:   #f5f8fc;
  --bg-tint:  #eef4fd;

  --wa:       #25d366;
  --wa-d:     #1eae55;

  /* Formă */
  --r-sm: 8px;
  --r-md: 14px;
  --r-lg: 22px;
  --shadow-sm: 0 2px 8px rgba(10, 42, 94, .06);
  --shadow-md: 0 10px 30px rgba(10, 42, 94, .09);
  --shadow-lg: 0 24px 60px rgba(10, 42, 94, .14);

  --maxw: 1160px;
  --header-h: 74px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 12px);
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: "Plus Jakarta Sans", -apple-system, BlinkMacSystemFont, "Segoe UI",
               Roboto, "Helvetica Neue", Arial, sans-serif;
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--bg);
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }

/* Atributul `hidden` trebuie să învingă regulile de display ale componentelor. */
[hidden] { display: none !important; }

h1, h2, h3, h4 {
  line-height: 1.2;
  margin: 0 0 .5em;
  color: var(--navy-900);
  letter-spacing: -.02em;
}

h1 { font-size: clamp(2.1rem, 5vw, 3.4rem); font-weight: 800; }
h2 { font-size: clamp(1.6rem, 3.4vw, 2.4rem); font-weight: 800; }
h3 { font-size: 1.18rem; font-weight: 700; }
p  { margin: 0 0 1rem; }

a { color: var(--navy-600); text-decoration: none; }
a:hover { text-decoration: underline; }

:focus-visible {
  outline: 3px solid var(--navy-600);
  outline-offset: 2px;
  border-radius: 4px;
}

.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 200;
  background: var(--navy-800); color: #fff; padding: .8rem 1.2rem;
  border-radius: 0 0 var(--r-sm) 0;
}
.skip-link:focus { left: 0; }

/* ---------- Layout ---------- */
.wrap { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: 22px; }
.wrap-narrow { max-width: 820px; }

.section { padding: clamp(56px, 8vw, 96px) 0; }
.section-alt { background: var(--bg-alt); }

.section-head { max-width: 720px; margin: 0 auto clamp(32px, 5vw, 54px); text-align: center; }
.section-sub { color: var(--ink-soft); font-size: 1.05rem; margin: 0; }

.eyebrow {
  font-size: .8rem; font-weight: 700; letter-spacing: .12em;
  text-transform: uppercase; color: var(--navy-600); margin: 0 0 .6rem;
}

/* ---------- Butoane ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .55rem;
  padding: .85rem 1.5rem;
  border: 2px solid transparent;
  border-radius: 999px;
  font: inherit; font-weight: 700; font-size: .98rem;
  cursor: pointer; text-decoration: none;
  transition: transform .15s ease, box-shadow .2s ease, background-color .2s ease, color .2s ease;
  white-space: nowrap;
}
.btn:hover { text-decoration: none; transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn svg { width: 20px; height: 20px; fill: currentColor; flex: none; }

.btn-primary { background: var(--navy-800); color: #fff; box-shadow: var(--shadow-sm); }
.btn-primary:hover { background: var(--navy-700); box-shadow: var(--shadow-md); }

.btn-whatsapp { background: var(--wa); color: #06371c; box-shadow: var(--shadow-sm); }
.btn-whatsapp:hover { background: var(--wa-d); color: #04240f; box-shadow: var(--shadow-md); }

.btn-ghost { background: transparent; color: var(--navy-800); border-color: rgba(10, 42, 94, .22); }
.btn-ghost:hover { background: var(--bg-tint); border-color: var(--navy-600); }

.btn-sm { padding: .6rem 1.1rem; font-size: .9rem; }
/* Butoanele pe toată lățimea pot avea text lung — le lăsăm să se rupă pe rânduri. */
.btn-block { display: flex; width: 100%; white-space: normal; text-align: center; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255, 255, 255, .92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  min-height: var(--header-h);
  display: flex; align-items: center; gap: 1.2rem;
}

.brand { display: flex; align-items: center; gap: .7rem; margin-right: auto; }
.brand:hover { text-decoration: none; }
.brand-mark {
  width: 42px; height: 42px; flex: none;
  display: grid; place-items: center;
  border-radius: 12px;
  background: linear-gradient(140deg, var(--navy-700), var(--navy-900));
  color: #fff; font-weight: 800; font-size: .95rem; letter-spacing: .02em;
}
.brand-text { display: flex; flex-direction: column; line-height: 1.15; }
.brand-text strong { color: var(--navy-900); font-size: 1.02rem; }
.brand-text small { color: var(--ink-soft); font-size: .74rem; font-weight: 500; }

.nav { display: flex; gap: 1.35rem; }
.nav a {
  color: var(--ink); font-size: .93rem; font-weight: 600;
  padding: .35rem 0; position: relative;
}
.nav a:hover { color: var(--navy-700); text-decoration: none; }
.nav a::after {
  content: ""; position: absolute; left: 0; right: 100%; bottom: 0; height: 2px;
  background: var(--navy-600); transition: right .2s ease;
}
.nav a:hover::after, .nav a.active::after { right: 0; }
.nav a.active { color: var(--navy-700); }

.nav-toggle {
  display: none;
  width: 44px; height: 44px; padding: 10px;
  background: none; border: 1px solid var(--line); border-radius: var(--r-sm);
  cursor: pointer;
}
.nav-toggle span {
  display: block; height: 2px; background: var(--navy-800); border-radius: 2px;
  transition: transform .22s ease, opacity .22s ease;
}
.nav-toggle span + span { margin-top: 5px; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding: clamp(48px, 7vw, 88px) 0 clamp(56px, 8vw, 96px);
  background:
    radial-gradient(1100px 460px at 12% -10%, var(--bg-tint), transparent 62%),
    radial-gradient(900px 420px at 96% 6%, #eafaf0, transparent 60%),
    var(--bg);
}
.hero-grid {
  display: grid; grid-template-columns: 1.15fr .85fr;
  gap: clamp(28px, 4vw, 56px); align-items: center;
}
.hero h1 { margin-bottom: .6rem; }
.hero h1 .hl {
  background: linear-gradient(180deg, transparent 62%, rgba(23, 163, 74, .26) 62%);
  padding-inline: .08em;
}
.lead { font-size: 1.1rem; color: var(--ink-soft); max-width: 56ch; }

.hero-checks { list-style: none; margin: 1.4rem 0 1.8rem; padding: 0; display: grid; gap: .6rem; }
.hero-checks li { position: relative; padding-left: 2rem; font-size: 1rem; }
.hero-checks li::before {
  content: "✓";
  position: absolute; left: 0; top: 1px;
  width: 22px; height: 22px; border-radius: 50%;
  display: grid; place-items: center;
  background: rgba(23, 163, 74, .13); color: var(--accent-d);
  font-size: .78rem; font-weight: 800;
}

.hero-actions { display: flex; flex-wrap: wrap; gap: .8rem; }
.hero-note { margin-top: 1rem; font-size: .88rem; color: var(--ink-soft); }

.hero-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: 1.6rem; box-shadow: var(--shadow-lg);
}
.hero-card-head { margin-bottom: 1.1rem; }
.pill {
  display: inline-block; padding: .3rem .8rem; border-radius: 999px;
  background: var(--bg-tint); color: var(--navy-700);
  font-size: .76rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase;
}

.benefit-list { list-style: none; margin: 0 0 1.3rem; padding: 0; display: grid; gap: 1rem; }
.benefit-list li { display: flex; gap: .85rem; align-items: flex-start; }
.benefit-icon {
  width: 38px; height: 38px; flex: none; border-radius: 11px;
  display: grid; place-items: center;
  background: linear-gradient(140deg, var(--bg-tint), #dfeafb);
  color: var(--navy-700); font-size: 1.05rem; font-weight: 700;
}
.benefit-list div { display: flex; flex-direction: column; }
.benefit-list strong { font-size: .99rem; color: var(--navy-900); }
.benefit-list span { font-size: .87rem; color: var(--ink-soft); line-height: 1.45; }

.hero-card-foot { border-top: 1px solid var(--line); padding-top: 1.2rem; }
.hero-card-foot p { font-size: .9rem; color: var(--ink-soft); }

/* ---------- Strip ---------- */
.strip { background: var(--navy-900); color: #fff; padding: 1.6rem 0; }
.strip-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.2rem; text-align: center;
}
.strip-grid div { display: flex; flex-direction: column; gap: .15rem; }
.strip-grid strong { font-size: 1.3rem; font-weight: 800; letter-spacing: -.01em; }
.strip-grid span { font-size: .84rem; color: rgba(255, 255, 255, .72); }

/* ---------- Carduri ---------- */
.cards-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.3rem; }

.card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: 1.7rem 1.5rem;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: #cfdcef; }
.card p { margin: 0; color: var(--ink-soft); font-size: .96rem; }
.card-num {
  display: inline-block; margin-bottom: .8rem;
  font-size: .8rem; font-weight: 800; letter-spacing: .1em; color: var(--navy-600);
}
.svc-icon {
  display: grid; place-items: center;
  width: 50px; height: 50px; margin-bottom: 1rem;
  border-radius: 14px; background: var(--bg-tint); font-size: 1.4rem;
}

.callout {
  margin-top: 2.2rem;
  display: flex; align-items: center; justify-content: space-between; gap: 1.6rem;
  flex-wrap: wrap;
  background: linear-gradient(120deg, var(--navy-800), var(--navy-600));
  color: #fff; border-radius: var(--r-lg); padding: 1.7rem 1.9rem;
  box-shadow: var(--shadow-md);
}
.callout p { margin: 0; max-width: 62ch; color: rgba(255, 255, 255, .9); }
.callout strong { color: #fff; }
.callout .btn-primary { background: #fff; color: var(--navy-800); }
.callout .btn-primary:hover { background: #eaf1fb; }

/* ---------- Calculator ---------- */
.calc {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1.6rem;
  align-items: start;
}
/* Fără asta, conținutul lat al coloanelor lărgește grila peste ecran. */
.calc > *, .cards-3 > *, .steps > *, .contact-grid > *, .hero-grid > * { min-width: 0; }
.calc-form {
  background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: 1.6rem; display: grid; gap: 1rem; box-shadow: var(--shadow-sm);
}

.field { display: flex; flex-direction: column; gap: .4rem; }
.field label { font-size: .9rem; font-weight: 600; color: var(--navy-900); }
.field input, .field select, .field textarea {
  font: inherit; font-size: 1rem;
  padding: .8rem .9rem;
  border: 1px solid var(--line); border-radius: var(--r-md);
  background: #fff; color: var(--ink);
  transition: border-color .18s ease, box-shadow .18s ease;
  width: 100%;
}
.field textarea { resize: vertical; min-height: 96px; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--navy-600);
  box-shadow: 0 0 0 4px rgba(27, 79, 160, .13);
}
.field input.invalid, .field select.invalid { border-color: #d92d20; }

.calc-error, .form-error {
  margin: 0; font-size: .88rem; color: #b42318; font-weight: 600;
}

.calc-result {
  background: linear-gradient(150deg, var(--navy-800), var(--navy-900));
  color: #fff; border-radius: var(--r-lg); padding: 1.7rem;
  box-shadow: var(--shadow-md);
}
.result-label { font-size: .84rem; text-transform: uppercase; letter-spacing: .1em;
  color: rgba(255, 255, 255, .68); margin: 0 0 .2rem; font-weight: 700; }
.result-big {
  margin: 0 0 1.3rem; font-size: clamp(2rem, 5vw, 2.9rem); font-weight: 800;
  letter-spacing: -.02em; line-height: 1.1; color: #6ee7a0;
}
.result-big .cur { font-size: .95rem; font-weight: 600; color: rgba(255, 255, 255, .72); letter-spacing: 0; }

.result-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: .9rem 1.2rem;
  margin: 0 0 1.2rem; padding: 1.2rem 0;
  border-top: 1px solid rgba(255, 255, 255, .16);
  border-bottom: 1px solid rgba(255, 255, 255, .16);
}
.result-grid div { display: flex; flex-direction: column; gap: .1rem; }
.result-grid dt { font-size: .8rem; color: rgba(255, 255, 255, .66); }
.result-grid dd { margin: 0; font-size: 1.06rem; font-weight: 700; }

.result-total { font-size: .95rem; color: rgba(255, 255, 255, .84); margin-bottom: 1.2rem; }
.result-total strong { display: block; font-size: 1.45rem; color: #6ee7a0; margin-top: .1rem; }
.calc-result .btn-primary { background: #fff; color: var(--navy-800); }
.calc-result .btn-primary:hover { background: #eaf1fb; }

.disclaimer {
  margin: 1.6rem auto 0; max-width: 860px; text-align: center;
  font-size: .84rem; line-height: 1.6; color: var(--ink-soft);
}

/* ---------- Pași ---------- */
.steps {
  list-style: none; margin: 0; padding: 0;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.3rem;
  counter-reset: step;
}
.steps li {
  background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: 1.6rem 1.4rem; position: relative;
}
.step-num {
  display: grid; place-items: center;
  width: 40px; height: 40px; margin-bottom: .9rem;
  border-radius: 50%; background: var(--navy-800); color: #fff;
  font-weight: 800; font-size: 1rem;
}
.steps h3 { margin-bottom: .35rem; }
.steps p { margin: 0; color: var(--ink-soft); font-size: .94rem; }

/* ---------- Despre ---------- */
.despre-grid {
  display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(28px, 4vw, 56px);
  align-items: center;
}
.despre-photo {
  position: relative; border-radius: var(--r-lg); overflow: hidden;
  box-shadow: var(--shadow-lg); background: var(--bg-tint);
  aspect-ratio: 5 / 6;
}
/* Placeholder-ul stă permanent sub imagine. Dacă assets/daniela.jpg lipsește
   sau nu se încarcă, rămâne vizibil — fără iconiță de imagine ruptă și
   fără să depindă de JavaScript. */
.photo-fallback {
  position: absolute; inset: 0; z-index: 0;
  display: grid; place-items: center;
  background: linear-gradient(140deg, var(--navy-700), var(--navy-900));
}
.photo-fallback span {
  font-size: 4rem; font-weight: 800; color: rgba(255, 255, 255, .9); letter-spacing: .04em;
}
.despre-photo img {
  position: relative; z-index: 1;
  width: 100%; height: 100%; object-fit: cover;
}
.despre-copy h2 { margin-bottom: .1rem; }
.despre-role { color: var(--navy-600); font-weight: 700; margin-bottom: 1.1rem; }
.despre-copy p { color: var(--ink-soft); }
.despre-points { list-style: none; margin: 1.3rem 0 1.7rem; padding: 0; display: grid; gap: .55rem; }
.despre-points li { position: relative; padding-left: 1.7rem; font-size: .96rem; color: var(--ink); }
.despre-points li::before {
  content: "•"; position: absolute; left: .35rem; color: var(--accent);
  font-size: 1.4rem; line-height: 1; top: .1rem;
}

/* ---------- Share ---------- */
.share-row {
  display: flex; flex-wrap: wrap; gap: .8rem; align-items: center; justify-content: center;
}
.share-msg { font-size: .9rem; color: var(--accent-d); font-weight: 600; }

/* ---------- FAQ ---------- */
.faq { display: grid; gap: .7rem; }
.faq details {
  background: #fff; border: 1px solid var(--line); border-radius: var(--r-md);
  padding: 0 1.2rem; transition: border-color .2s ease, box-shadow .2s ease;
}
.faq details[open] { border-color: #cfdcef; box-shadow: var(--shadow-sm); }
.faq summary {
  list-style: none; cursor: pointer;
  padding: 1.05rem 2rem 1.05rem 0; position: relative;
  font-weight: 700; color: var(--navy-900); font-size: 1rem;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+"; position: absolute; right: .1rem; top: 50%; transform: translateY(-50%);
  font-size: 1.5rem; font-weight: 400; color: var(--navy-600); transition: transform .2s ease;
}
.faq details[open] summary::after { content: "−"; }
.faq details p { margin: 0; padding: 0 0 1.15rem; color: var(--ink-soft); font-size: .96rem; }

/* ---------- Contact ---------- */
.section-contact {
  background:
    radial-gradient(900px 400px at 85% 0%, #eafaf0, transparent 60%),
    var(--bg-alt);
}
.contact-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px, 4vw, 56px);
  align-items: start;
}
.contact-list { list-style: none; margin: 1.6rem 0 1.2rem; padding: 0; display: grid; gap: .9rem; }
.contact-list li { display: flex; align-items: center; gap: .8rem; font-size: 1.05rem; font-weight: 600; }
.ci {
  width: 42px; height: 42px; flex: none; border-radius: 12px;
  display: grid; place-items: center; background: #fff;
  box-shadow: var(--shadow-sm); font-size: 1.1rem;
}
.contact-note { font-size: .88rem; color: var(--ink-soft); }

.contact-form {
  background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: 1.8rem; display: grid; gap: 1rem; box-shadow: var(--shadow-md);
}
.contact-form h3 { margin-bottom: .2rem; }
.req { color: #d92d20; }

.check { display: flex; gap: .65rem; align-items: flex-start; font-size: .9rem; color: var(--ink-soft); }
.check input { margin-top: .25rem; width: 18px; height: 18px; flex: none; accent-color: var(--navy-700); }
.check.invalid span { color: #b42318; }

.form-note { margin: .2rem 0 0; font-size: .82rem; color: var(--ink-soft); line-height: 1.5; }

/* ---------- Footer ---------- */
.site-footer { background: var(--navy-900); color: rgba(255, 255, 255, .78); padding: 3.2rem 0 1.8rem; }
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 2rem;
  padding-bottom: 2.2rem; border-bottom: 1px solid rgba(255, 255, 255, .14);
}
.brand-footer .brand-text strong { color: #fff; }
.brand-footer .brand-text small { color: rgba(255, 255, 255, .6); }
.brand-footer .brand-mark { background: rgba(255, 255, 255, .12); }
.footer-about { margin-top: 1rem; font-size: .92rem; max-width: 40ch; }
.site-footer h4 { color: #fff; font-size: .95rem; margin-bottom: .9rem; }
.site-footer nav, .footer-grid > div:last-child { display: flex; flex-direction: column; gap: .5rem; align-items: flex-start; }
.site-footer a { color: rgba(255, 255, 255, .78); font-size: .93rem; }
.site-footer a:hover { color: #fff; }

.footer-legal { padding-top: 1.6rem; }
.footer-legal p { font-size: .8rem; line-height: 1.6; color: rgba(255, 255, 255, .55); }
.copy { margin: 0; }

/* ---------- Pagina 404 ---------- */
.err-page {
  min-height: 68vh;
  display: grid; align-items: center;
  text-align: center;
  padding: clamp(48px, 8vw, 96px) 0;
  background:
    radial-gradient(900px 420px at 50% -10%, var(--bg-tint), transparent 65%),
    var(--bg);
}
.err-code {
  font-size: clamp(4rem, 14vw, 8rem); font-weight: 800; line-height: 1;
  margin: 0 0 .4rem; letter-spacing: -.04em;
  background: linear-gradient(140deg, var(--navy-600), var(--navy-900));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.err-page .lead { margin-inline: auto; }
.err-actions {
  display: flex; flex-wrap: wrap; gap: .8rem; justify-content: center;
  margin: 2rem 0 1.6rem;
}
.err-links { font-size: .92rem; color: var(--ink-soft); }
.err-links a { margin-inline: .15rem; }

@media (max-width: 640px) {
  .err-actions { flex-direction: column; align-items: stretch; }
  .err-actions .btn { width: 100%; }
}

/* ---------- FAB WhatsApp ---------- */
.fab-whatsapp {
  position: fixed; right: 20px; bottom: 20px; z-index: 90;
  width: 56px; height: 56px; border-radius: 50%;
  display: grid; place-items: center;
  background: var(--wa); color: #06371c;
  box-shadow: 0 8px 24px rgba(37, 211, 102, .45);
  transition: transform .18s ease, box-shadow .18s ease;
}
.fab-whatsapp svg { width: 30px; height: 30px; fill: currentColor; }
.fab-whatsapp:hover { transform: scale(1.07); box-shadow: 0 12px 30px rgba(37, 211, 102, .55); }

/* ============================================================
   Responsive
   ============================================================ */

@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-card { order: 2; }
  .cards-3 { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .calc { grid-template-columns: 1fr; }
  .despre-grid { grid-template-columns: 1fr; }
  .despre-photo { max-width: 380px; margin-inline: auto; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 860px) {
  .header-cta { display: none; }
  .nav-toggle { display: block; }
  .nav {
    position: absolute; top: 100%; left: 0; right: 0;
    flex-direction: column; gap: 0;
    background: #fff; border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow-md);
    padding: .5rem 22px 1.1rem;
    display: none;
  }
  .nav.open { display: flex; }
  .nav a { padding: .85rem 0; border-bottom: 1px solid var(--line); font-size: 1rem; }
  .nav a:last-child { border-bottom: none; }
  .nav a::after { display: none; }
}

@media (max-width: 640px) {
  body { font-size: 16px; }
  .cards-3 { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .strip-grid { grid-template-columns: 1fr 1fr; gap: 1.4rem; text-align: left; }
  .result-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .callout { padding: 1.4rem; }
  .hero-actions .btn { flex: 1 1 100%; }
  .share-row { flex-direction: column; align-items: stretch; }
  .share-row .btn { width: 100%; }
  .fab-whatsapp { right: 14px; bottom: 14px; width: 52px; height: 52px; }
}

/* ---------- Preferințe utilizator ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .01ms !important;
    transition-duration: .01ms !important;
  }
  .btn:hover, .card:hover, .fab-whatsapp:hover { transform: none; }
}

@media print {
  .site-header, .fab-whatsapp, .nav-toggle, .hero-actions, .share-row { display: none !important; }
  body { font-size: 12px; }
  .section { padding: 18px 0; }
}
