/* ============================================
   Asigurări Contactless — Site clone (Omnis-style)
   Layout & components. Tokens in tokens.css.
   ============================================ */

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--brand-text);
  background: var(--brand-bg);
  line-height: 1.6;
  font-size: var(--fs-16);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

h1, h2, h3, h4 { font-family: var(--font-display); line-height: 1.15; color: var(--brand-primary); }

.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 var(--sp-6); }
.section { padding: var(--sp-24) 0; }
.section-alt { background: var(--brand-bg-alt); }
.section-title { font-size: var(--fs-40); font-weight: 800; text-align: center; margin-bottom: var(--sp-4); }
.section-sub { text-align: center; color: var(--brand-text-muted); font-size: var(--fs-20); max-width: 640px; margin: 0 auto var(--sp-12); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: var(--sp-2);
  padding: 14px 28px; font-family: var(--font-body); font-weight: 600;
  font-size: var(--fs-16); border-radius: var(--r-md); cursor: pointer;
  border: none; transition: var(--t-base); text-align: center; line-height: 1;
}
.btn-primary {
  background: var(--gradient-signature); color: #fff;
  box-shadow: 0 4px 16px rgba(14,91,148,.25);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 32px rgba(14,91,148,.4); background: var(--gradient-button-hover); }
.btn-secondary { background: transparent; color: var(--brand-primary); border: 1.5px solid var(--brand-primary); }
.btn-secondary:hover { background: var(--brand-primary); color: #fff; transform: translateY(-2px); }
.btn-ghost { background: #fff; color: var(--brand-primary); box-shadow: var(--shadow-sm); }
.btn-ghost:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.btn-lg { padding: 18px 36px; font-size: var(--fs-20); }
.btn-block { width: 100%; justify-content: center; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100; background: rgba(255,255,255,.92);
  backdrop-filter: blur(10px); border-bottom: 1px solid var(--brand-border);
}
.nav { display: flex; align-items: center; justify-content: space-between; height: 72px; }
.nav-logo img { height: 40px; }
.nav-menu { display: flex; align-items: center; gap: var(--sp-6); list-style: none; }
.nav-menu a { font-weight: 500; font-size: var(--fs-16); color: var(--brand-text); transition: var(--t-fast); }
.nav-menu a:hover, .nav-menu a.active { color: var(--brand-primary); }
.nav-actions { display: flex; align-items: center; gap: var(--sp-3); }
.nav-toggle { display: none; background: none; border: none; cursor: pointer; flex-direction: column; gap: 5px; padding: 8px; }
.nav-toggle span { width: 24px; height: 2px; background: var(--brand-primary); border-radius: 2px; transition: var(--t-fast); }

/* dropdown */
.nav-dropdown { position: relative; }
.nav-dropdown-menu {
  position: absolute; top: calc(100% + 8px); left: 50%; transform: translateX(-50%) translateY(8px);
  background: #fff; border: 1px solid var(--brand-border); border-radius: var(--r-lg);
  box-shadow: var(--shadow-lg); padding: var(--sp-3); min-width: 460px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 4px;
  opacity: 0; visibility: hidden; transition: var(--t-fast);
}
.nav-dropdown:hover .nav-dropdown-menu { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
.nav-dropdown-menu a { display: flex; align-items: center; gap: var(--sp-3); padding: 10px 12px; border-radius: var(--r-sm); font-weight: 500; }
.nav-dropdown-menu a:hover { background: var(--brand-bg-alt); }
.nav-dropdown-menu .ico { font-size: 20px; width: 28px; text-align: center; }

/* ---------- Hero ---------- */
.hero { background: linear-gradient(180deg, #F5F7FA 0%, #fff 100%); padding: var(--sp-24) 0; overflow: hidden; }
.hero-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: var(--sp-16); align-items: center; }
.hero-badge {
  display: inline-flex; align-items: center; gap: var(--sp-2); padding: 8px 16px;
  background: var(--brand-accent-light); color: var(--brand-primary-dark);
  border-radius: var(--r-pill); font-weight: 600; font-size: var(--fs-14); margin-bottom: var(--sp-6);
}
.hero-title { font-size: var(--fs-56); font-weight: 800; margin-bottom: var(--sp-6); }
.hero-title .grad { background: var(--gradient-signature); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.hero-sub { font-size: var(--fs-20); color: var(--brand-text-muted); margin-bottom: var(--sp-8); max-width: 520px; }
.hero-cta { display: flex; gap: var(--sp-3); flex-wrap: wrap; margin-bottom: var(--sp-8); }
.hero-trust { display: flex; gap: var(--sp-8); flex-wrap: wrap; }
.hero-trust-item { display: flex; flex-direction: column; }
.hero-trust-item b { font-family: var(--font-mono); font-size: var(--fs-32); color: var(--brand-primary); font-weight: 700; }
.hero-trust-item span { font-size: var(--fs-14); color: var(--brand-text-muted); }

/* hero card / quick quote */
.hero-card { background: #fff; border-radius: var(--r-xl); box-shadow: var(--shadow-lg); padding: var(--sp-8); }
.hero-card h3 { font-size: var(--fs-24); margin-bottom: var(--sp-2); }
.hero-card p { color: var(--brand-text-muted); font-size: var(--fs-14); margin-bottom: var(--sp-6); }

/* ---------- Forms ---------- */
.field { margin-bottom: var(--sp-4); }
.field label { display: block; font-weight: 600; font-size: var(--fs-14); margin-bottom: 6px; }
.field input, .field select {
  width: 100%; padding: 13px 16px; border: 1.5px solid var(--brand-border);
  border-radius: var(--r-md); font-family: var(--font-body); font-size: var(--fs-16);
  color: var(--brand-text); transition: var(--t-fast); background: #fff;
}
.field input:focus, .field select:focus { outline: none; border-color: var(--brand-secondary); box-shadow: 0 0 0 3px rgba(59,140,184,.15); }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: var(--sp-4); }
.checkbox { display: flex; align-items: flex-start; gap: var(--sp-2); font-size: var(--fs-14); color: var(--brand-text-muted); margin-bottom: var(--sp-4); }
.checkbox input { width: auto; margin-top: 3px; }
.form-note { font-size: var(--fs-12); color: var(--brand-text-muted); text-align: center; margin-top: var(--sp-3); }
.form-success {
  display: none; background: #E8F5E9; border: 1.5px solid #66BB6A; color: #1B5E20;
  padding: var(--sp-6); border-radius: var(--r-md); text-align: center; font-weight: 500;
}
.form-success.show { display: block; }

/* ---------- Reviews strip ---------- */
.reviews-strip { background: var(--brand-primary); color: #fff; padding: var(--sp-8) 0; }
.reviews-strip .container { display: flex; align-items: center; justify-content: center; gap: var(--sp-12); flex-wrap: wrap; text-align: center; }
.review-stat b { display: block; font-family: var(--font-mono); font-size: var(--fs-32); font-weight: 700; }
.review-stat span { font-size: var(--fs-14); opacity: .85; }
.stars { color: #FFD166; font-size: var(--fs-20); }

/* ---------- Card grid (products / features) ---------- */
.grid { display: grid; gap: var(--sp-6); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

.card {
  background: #fff; border: 1px solid var(--brand-border); border-radius: var(--r-lg);
  padding: var(--sp-8); transition: var(--t-base); height: 100%;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--brand-accent-light); }
.card-ico {
  width: 56px; height: 56px; border-radius: var(--r-md); display: flex; align-items: center; justify-content: center;
  font-size: 28px; background: var(--brand-accent-light); margin-bottom: var(--sp-4);
}
.card h3 { font-size: var(--fs-20); margin-bottom: var(--sp-2); color: var(--brand-text); }
.card p { color: var(--brand-text-muted); font-size: var(--fs-14); }

/* ---------- Product card (Omnis "Alegeți cel mai bun" style) ----------
   Title on top (centered), big line-art illustration below on a soft
   tinted stage, soft shadow instead of border, generous rounding. */
.product-card {
  display: flex; flex-direction: column; align-items: center; text-align: center;
  background: #fff; border: 1px solid transparent;
  border-radius: var(--r-xl); padding: var(--sp-6) var(--sp-6) var(--sp-8);
  box-shadow: var(--shadow-sm); position: relative; overflow: hidden;
}
.product-card::before {
  /* faint top sheen that warms up on hover */
  content: ""; position: absolute; inset: 0 0 auto 0; height: 4px;
  background: var(--gradient-signature); opacity: 0; transition: var(--t-base);
}
.product-card:hover {
  transform: translateY(-6px); box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.product-card:hover::before { opacity: 1; }

.product-card h3 {
  order: 1; font-size: var(--fs-20); font-weight: 700; color: var(--brand-primary);
  margin: var(--sp-2) 0 0; line-height: 1.25; min-height: 2.5em;
  display: flex; align-items: center; justify-content: center;
}
/* illustration stage */
.product-card .pico-stage {
  order: 2; width: 100%; margin-top: var(--sp-4);
  display: flex; align-items: center; justify-content: center;
  aspect-ratio: 1 / 0.72; border-radius: var(--r-lg);
  background:
    radial-gradient(120% 90% at 50% 18%, #EAF4FC 0%, #F5FAFE 55%, #fff 100%);
  transition: var(--t-base);
}
.product-card:hover .pico-stage {
  background:
    radial-gradient(120% 95% at 50% 16%, #DCEEFB 0%, #EAF4FC 55%, #F5FAFE 100%);
}
.product-card .pico {
  width: 76px; height: 76px; transition: transform var(--t-base);
}
.product-card:hover .pico { transform: scale(1.08); }

/* hide the legacy description + emoji square on product cards (kept in markup
   for graceful no-CSS fallback, but visually the Omnis layout drops them) */
.product-card > p { display: none; }
.product-card .card-link {
  order: 3; margin-top: var(--sp-6); color: var(--brand-secondary);
  font-weight: 600; font-size: var(--fs-14);
  display: inline-flex; align-items: center; gap: 6px; transition: var(--t-fast);
}
.product-card:hover .card-link { gap: 10px; color: var(--brand-primary); }

/* ---------- Partners carousel (Omnis: clean grayscale strip) ---------- */
.partners { overflow: hidden; }
.partners-track { display: flex; gap: var(--sp-16); align-items: center; animation: scroll-x 30s linear infinite; width: max-content; }
.partners:hover .partners-track { animation-play-state: paused; }
.partner-logo {
  font-family: var(--font-display); font-weight: 700; font-size: var(--fs-24);
  color: #9AA7B4; white-space: nowrap; letter-spacing: .01em;
  transition: var(--t-fast); filter: grayscale(1);
}
.partner-logo:hover { color: var(--brand-primary); filter: none; }
@keyframes scroll-x { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ============================================
   Omnis-style signature elements
   ============================================ */

/* Hand-drawn scribble underline under key words */
.u-scribble { position: relative; display: inline-block; color: var(--brand-secondary); white-space: nowrap; }
.u-scribble > .scribble {
  position: absolute; left: 0; right: 0; bottom: -.18em; width: 100%; height: .42em;
  overflow: visible; pointer-events: none;
}
.u-scribble > .scribble path { stroke: var(--brand-secondary); stroke-width: 5; fill: none; stroke-linecap: round; }

/* Highlighted word inside a paragraph (light-blue rounded box) */
.hl { background: var(--brand-accent-light); color: var(--brand-primary-dark); padding: 1px 8px; border-radius: 6px; font-weight: 600; white-space: nowrap; }

/* Soft blue blob background decoration */
.blob {
  position: absolute; border-radius: 50%; filter: blur(2px); z-index: 0; pointer-events: none;
  background: radial-gradient(circle at 30% 30%, #DCEEFB 0%, #EAF4FC 55%, rgba(234,244,252,0) 72%);
}

/* ---------- Hero (Omnis app-first variant) ---------- */
.hero-omnis { position: relative; background: #fff; padding: var(--sp-16) 0 var(--sp-24); overflow: hidden; }
.hero-omnis .blob-1 { width: 620px; height: 620px; top: -240px; left: -200px; }
.hero-omnis .container { position: relative; z-index: 1; }
.hero-omnis .hero-title { font-size: var(--fs-72); line-height: 1.05; }
.hero-store { display: flex; gap: var(--sp-3); flex-wrap: wrap; margin-top: var(--sp-8); }
.store-badge {
  display: flex; align-items: center; gap: var(--sp-3); background: var(--brand-text); color: #fff;
  padding: 10px 18px; border-radius: var(--r-md); transition: var(--t-fast);
}
.store-badge:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.store-badge .ico { font-size: 26px; }
.store-badge small { display: block; font-size: 10px; opacity: .8; line-height: 1.2; }
.store-badge b { font-size: var(--fs-16); line-height: 1.2; }
.store-badge .rate { font-family: var(--font-mono); font-size: 11px; color: #FFD166; }

/* ---------- Hero illustration (animated SVG) ---------- */
.hero-illo {
  width: 100%; max-width: 560px; border-radius: var(--r-xl); overflow: hidden;
  box-shadow: var(--shadow-lg); background: #fff; display: block; margin-left: auto;
}
.drive-band { overflow: hidden; }
.drive-band .container { display: grid; grid-template-columns: 1fr 1.1fr; gap: var(--sp-12); align-items: center; }
.drive-band .car-illo { width: 100%; }
@media (max-width: 900px) { .drive-band .container { grid-template-columns: 1fr; } }

/* ---------- Phone mockup ---------- */
.phone-stage { display: flex; justify-content: center; align-items: center; gap: var(--sp-4); position: relative; }
.phone {
  width: 270px; flex-shrink: 0; background: #1A2B3C; border-radius: 40px; padding: 10px;
  box-shadow: var(--shadow-lg); position: relative;
}
.phone.phone-back { transform: scale(.82) translateX(40px) rotate(4deg); opacity: .92; z-index: 0; }
.phone.phone-front { z-index: 2; }
.phone-screen { background: var(--brand-bg-alt); border-radius: 30px; overflow: hidden; aspect-ratio: 9/19.3; position: relative; }
.phone-notch { position: absolute; top: 8px; left: 50%; transform: translateX(-50%); width: 90px; height: 20px; background: #1A2B3C; border-radius: 12px; z-index: 3; }
.phone-app { padding: 34px 14px 14px; height: 100%; overflow: hidden; }
.phone-app h4 { font-size: 17px; color: var(--brand-text); margin-bottom: 12px; font-weight: 800; }
.phone-app-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.phone-tile {
  background: #fff; border-radius: 14px; padding: 12px 10px 10px; min-height: 92px;
  display: flex; flex-direction: column; justify-content: space-between; box-shadow: 0 2px 6px rgba(14,91,148,.06);
}
.phone-tile span { font-size: 12px; font-weight: 600; color: var(--brand-text); }
.phone-tile .emoji { font-size: 26px; align-self: flex-end; }
.phone-app-label { font-size: 13px; color: var(--brand-text-muted); margin: 14px 0 8px; font-weight: 600; }
.phone-tabbar {
  position: absolute; bottom: 0; left: 0; right: 0; height: 46px; background: #fff;
  border-top: 1px solid var(--brand-border); display: flex; justify-content: space-around; align-items: center;
  font-size: 16px; color: var(--brand-text-muted);
}
.phone-tabbar .on { color: var(--brand-primary); }

/* ---------- App install (QR + steps) ---------- */
.install-grid { display: grid; grid-template-columns: 1fr 1fr; gap: var(--sp-16); align-items: center; }
.install-steps { list-style: none; display: grid; gap: var(--sp-4); margin: var(--sp-8) 0; }
.install-steps li { display: flex; align-items: center; gap: var(--sp-4); font-size: var(--fs-20); font-weight: 500; }
.install-steps .n {
  width: 36px; height: 36px; border-radius: var(--r-full); background: var(--brand-accent-light);
  color: var(--brand-primary-dark); display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-weight: 700; flex-shrink: 0;
}
.qr-box { width: 150px; height: 150px; border: 2px solid var(--brand-border); border-radius: var(--r-md); display: flex; align-items: center; justify-content: center; font-size: 80px; color: var(--brand-primary); background: #fff; }

/* ---------- Blog cards ---------- */
.blog-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--sp-6); }
.blog-card { background: #fff; border: 1px solid var(--brand-border); border-radius: var(--r-lg); overflow: hidden; transition: var(--t-base); }
.blog-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.blog-thumb { height: 150px; background: var(--gradient-signature); display: flex; align-items: center; justify-content: center; font-size: 44px; }
.blog-body { padding: var(--sp-4); }
.blog-body .date { font-size: var(--fs-12); color: var(--brand-text-muted); }
.blog-body h3 { font-size: var(--fs-16); color: var(--brand-text); margin-top: 6px; line-height: 1.3; }

/* (legacy .product-card .card-ico overrides removed — product cards now use
   .pico-stage line-art illustrations instead of an emoji square) */

/* ============================================
   Omnis-style PRODUCT page elements
   ============================================ */

/* Photo-style hero with dark overlay (gradient stand-in for a real photo) */
.phero {
  position: relative; color: #fff; padding: var(--sp-16) 0 var(--sp-16); overflow: hidden;
  background: linear-gradient(115deg, #0a3f68 0%, #0E5B94 45%, #3B8CB8 100%);
}
.phero::after {
  content: ""; position: absolute; right: -120px; top: -120px; width: 520px; height: 520px;
  background: radial-gradient(circle, rgba(168,216,240,.35) 0%, rgba(168,216,240,0) 70%); pointer-events: none;
}
.phero .container { position: relative; z-index: 1; }
.phero .breadcrumb { color: rgba(255,255,255,.7); font-size: var(--fs-14); margin-bottom: var(--sp-4); }
.phero .breadcrumb a:hover { color: #fff; }
.phero h1 { color: #fff; font-size: var(--fs-56); font-weight: 800; margin-bottom: var(--sp-4); }
.phero h1 .u-scribble { color: #A8D8F0; }
.phero h1 .u-scribble path { stroke: #A8D8F0; }
.phero .lead { color: rgba(255,255,255,.92); font-size: var(--fs-24); max-width: 560px; margin-bottom: var(--sp-6); }
.phero .benefits-list li { color: #fff; }
.phero .benefits-list .check { color: #8FE3B0; }
.phero-card { background: #fff; border-radius: var(--r-xl); box-shadow: var(--shadow-lg); padding: var(--sp-8); color: var(--brand-text); }
.phero-card h3 { font-size: var(--fs-24); margin-bottom: var(--sp-2); }
.phero-card p { color: var(--brand-text-muted); font-size: var(--fs-14); margin-bottom: var(--sp-6); }

/* Black stats bar under hero */
.stats-bar { background: var(--brand-text); color: #fff; }
.stats-bar .container { display: flex; justify-content: center; gap: var(--sp-16); flex-wrap: wrap; padding: var(--sp-6) var(--sp-6); text-align: center; }
.stats-bar .stat b { display: block; font-family: var(--font-mono); font-size: var(--fs-24); font-weight: 700; }
.stats-bar .stat span { font-size: var(--fs-14); color: rgba(255,255,255,.7); }

/* Light-blue "disponibil în aplicație" promo band */
.app-promo { background: #EAF4FC; }
.app-promo .promo-head { text-align: center; margin-bottom: var(--sp-12); }
.app-promo .promo-head .small { color: var(--brand-secondary); font-weight: 600; text-transform: uppercase; letter-spacing: .08em; font-size: var(--fs-14); }
.app-promo .promo-head h2 { font-size: var(--fs-40); margin-top: var(--sp-2); }
.app-promo .promo-grid { display: grid; grid-template-columns: 1fr 1fr; gap: var(--sp-16); align-items: center; }
.buy-steps { list-style: none; display: grid; gap: var(--sp-6); }
.buy-steps li { display: flex; gap: var(--sp-4); }
.buy-steps .n {
  width: 36px; height: 36px; border-radius: var(--r-full); background: #fff; color: var(--brand-primary);
  display: flex; align-items: center; justify-content: center; font-family: var(--font-display); font-weight: 700; flex-shrink: 0;
  box-shadow: var(--shadow-sm);
}
.buy-steps b { display: block; font-family: var(--font-display); font-size: var(--fs-20); color: var(--brand-text); }
.buy-steps p { color: var(--brand-text-muted); font-size: var(--fs-14); margin-top: 2px; }

/* Blue square icon (Omnis coverage cards) */
.card-ico.sq { background: var(--brand-primary); color: #fff; border-radius: var(--r-md); font-size: 24px; }
.card:hover .card-ico.sq { background: var(--brand-primary-dark); }

/* Digital policy card inside phone (Omnis green/orange → AC brand blue) + faux QR */
.policy-card {
  border-radius: 18px; padding: 16px 14px; color: #fff; min-height: 290px;
  background: linear-gradient(155deg, #3B8CB8 0%, #0E5B94 55%, #0a3f68 100%);
  display: flex; flex-direction: column; box-shadow: 0 8px 20px rgba(10,63,104,.35);
}
.policy-card .pc-top { display: flex; justify-content: space-between; align-items: center; font-family: var(--font-display); font-weight: 700; }
.policy-card .pc-brand { font-size: 14px; letter-spacing: .02em; }
.policy-card .pc-type { font-size: 11px; background: rgba(255,255,255,.2); padding: 3px 8px; border-radius: 6px; }
.policy-card .pc-label { font-size: 9px; letter-spacing: .1em; opacity: .7; margin-top: 12px; }
.policy-card .pc-val { font-family: var(--font-mono); font-size: 15px; font-weight: 700; }
.policy-card .pc-row { display: flex; justify-content: space-between; gap: 8px; }
.policy-card .pc-qr { margin: 12px auto 0; width: 88px; height: 88px; background: #fff; border-radius: 8px; padding: 7px; }
.policy-card .pc-qr i {
  display: block; width: 100%; height: 100%;
  background-image: conic-gradient(#0a3f68 90deg, #fff 90deg 180deg, #0a3f68 180deg 270deg, #fff 270deg);
  background-size: 12px 12px; border-radius: 2px;
}

/* Omnis-style numbered steps (01/02/03 + accent line) */
.steps-omnis { list-style: none; display: grid; gap: var(--sp-8); }
.steps-omnis li { padding-left: var(--sp-6); border-left: 3px solid var(--brand-border); }
.steps-omnis li.active { border-left-color: var(--brand-secondary); }
.steps-omnis .head { display: flex; align-items: baseline; gap: var(--sp-3); }
.steps-omnis .num { font-family: var(--font-display); font-weight: 800; font-size: var(--fs-20); color: var(--brand-secondary); }
.steps-omnis h3 { font-size: var(--fs-24); color: var(--brand-text); }
.steps-omnis p { color: var(--brand-text-muted); font-size: var(--fs-16); margin-top: var(--sp-3); max-width: 460px; }

@media (max-width: 900px) {
  .phero h1 { font-size: var(--fs-40); }
  .app-promo .promo-grid { grid-template-columns: 1fr; }
  .stats-bar .container { gap: var(--sp-8); }
}

/* ---------- Steps ---------- */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--sp-8); counter-reset: step; }
.step { position: relative; padding-top: var(--sp-8); }
.step-num {
  width: 48px; height: 48px; border-radius: var(--r-full); background: var(--gradient-signature);
  color: #fff; display: flex; align-items: center; justify-content: center; font-family: var(--font-display);
  font-weight: 700; font-size: var(--fs-24); margin-bottom: var(--sp-4);
}
.step h3 { font-size: var(--fs-20); margin-bottom: var(--sp-2); color: var(--brand-text); }
.step p { color: var(--brand-text-muted); font-size: var(--fs-14); }

/* ---------- Testimonials ---------- */
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--sp-6); }
.testimonial { background: #fff; border: 1px solid var(--brand-border); border-radius: var(--r-lg); padding: var(--sp-6); }
.testimonial .stars { font-size: var(--fs-16); margin-bottom: var(--sp-3); }
.testimonial p { font-size: var(--fs-14); margin-bottom: var(--sp-4); }
.testimonial-author { display: flex; align-items: center; gap: var(--sp-3); }
.testimonial-avatar {
  width: 40px; height: 40px; border-radius: var(--r-full); background: var(--brand-accent-light);
  color: var(--brand-primary-dark); display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-weight: 700;
}
.testimonial-author b { font-size: var(--fs-14); }
.testimonial-author span { font-size: var(--fs-12); color: var(--brand-text-muted); display: block; }

/* ---------- FAQ ---------- */
.faq { max-width: 760px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--brand-border); }
.faq-q {
  width: 100%; background: none; border: none; cursor: pointer; text-align: left;
  padding: var(--sp-6) 0; display: flex; justify-content: space-between; align-items: center; gap: var(--sp-4);
  font-family: var(--font-display); font-weight: 600; font-size: var(--fs-20); color: var(--brand-text);
}
.faq-q .chev { transition: var(--t-fast); color: var(--brand-secondary); flex-shrink: 0; font-size: var(--fs-24); }
.faq-item.open .faq-q .chev { transform: rotate(180deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .3s ease; }
.faq-a p { padding-bottom: var(--sp-6); color: var(--brand-text-muted); }

/* ---------- App band ---------- */
.app-band { background: var(--gradient-signature); color: #fff; border-radius: var(--r-xl); padding: var(--sp-16); margin: var(--sp-24) 0; }
.app-band-grid { display: grid; grid-template-columns: 1fr auto; gap: var(--sp-12); align-items: center; }
.app-band h2 { color: #fff; font-size: var(--fs-40); margin-bottom: var(--sp-4); }
.app-band p { font-size: var(--fs-20); opacity: .92; margin-bottom: var(--sp-6); max-width: 480px; }
.app-stores { display: flex; gap: var(--sp-3); flex-wrap: wrap; }
.store-btn {
  display: flex; align-items: center; gap: var(--sp-3); background: rgba(255,255,255,.15);
  border: 1px solid rgba(255,255,255,.3); padding: 12px 20px; border-radius: var(--r-md); transition: var(--t-fast);
}
.store-btn:hover { background: rgba(255,255,255,.25); }
.store-btn .ico { font-size: 28px; }
.store-btn small { display: block; font-size: var(--fs-12); opacity: .8; }
.store-btn b { font-size: var(--fs-16); }
.qr { width: 140px; height: 140px; background: #fff; border-radius: var(--r-md); display: flex; align-items: center; justify-content: center; color: var(--brand-primary); font-size: 64px; }

/* ---------- Product hero (sub-page) ---------- */
.product-hero { background: linear-gradient(180deg, #F5F7FA 0%, #fff 100%); padding: var(--sp-16) 0 var(--sp-12); }
.product-hero .breadcrumb { font-size: var(--fs-14); color: var(--brand-text-muted); margin-bottom: var(--sp-4); }
.product-hero .breadcrumb a:hover { color: var(--brand-primary); }
.product-hero h1 { font-size: var(--fs-56); font-weight: 800; margin-bottom: var(--sp-4); }
.product-hero .lead { font-size: var(--fs-24); color: var(--brand-text-muted); max-width: 640px; }

/* ---------- CTA band ---------- */
.cta-band { text-align: center; }
.cta-band h2 { font-size: var(--fs-40); margin-bottom: var(--sp-4); }
.cta-band p { color: var(--brand-text-muted); font-size: var(--fs-20); margin-bottom: var(--sp-8); }

/* ---------- Footer ---------- */
/* footer "insulă" — unificat cu index.html */
.site-footer {
  max-width: 1320px;
  margin: var(--sp-6) auto;
  border-radius: var(--r-xl);
  background: var(--brand-primary-dark);
  color: rgba(255,255,255,0.85);
  padding: var(--sp-16) 0 var(--sp-8);
}
.footer-grid { display: grid; grid-template-columns: 1.8fr 1fr 1fr 1fr; gap: var(--sp-8); margin-bottom: var(--sp-12); }
.footer-brand img { height: 40px; margin-bottom: var(--sp-4); filter: brightness(0) invert(1); }
.footer-brand p { color: rgba(255,255,255,.7); font-size: var(--fs-14); max-width: 280px; }
.footer-col h4 { color: #fff; font-size: var(--fs-16); margin-bottom: var(--sp-4); }
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: var(--sp-3); }
.footer-col a { color: rgba(255,255,255,.7); font-size: var(--fs-14); transition: var(--t-fast); }
.footer-col a:hover { color: #fff; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.15); padding-top: var(--sp-6);
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: var(--sp-4);
  font-size: var(--fs-12); color: rgba(255,255,255,.6);
}
.footer-social { display: flex; gap: var(--sp-3); }
.footer-social a {
  width: 36px; height: 36px; border-radius: var(--r-full); background: rgba(255,255,255,.1);
  display: flex; align-items: center; justify-content: center; font-size: 18px; transition: var(--t-fast);
}
.footer-social a:hover { background: var(--brand-secondary); }
.footer-compliance { display: flex; gap: var(--sp-4); align-items: center; flex-wrap: wrap; margin-top: var(--sp-4); }
.footer-compliance span { font-size: var(--fs-12); color: rgba(255,255,255,.6); padding: 6px 12px; border: 1px solid rgba(255,255,255,.2); border-radius: var(--r-sm); }

/* ---------- FAQ help center ---------- */
.help-hero { background: linear-gradient(180deg, #EAF4FC 0%, #fff 100%); padding: var(--sp-16) 0 var(--sp-12); text-align: center; }
.help-hero .eyebrow { color: var(--brand-secondary); font-weight: 700; text-transform: uppercase; letter-spacing: .1em; font-size: var(--fs-14); }
.help-hero h1 { font-size: var(--fs-56); font-weight: 800; margin: var(--sp-3) 0 var(--sp-4); }
.help-hero p { color: var(--brand-text-muted); font-size: var(--fs-20); margin-bottom: var(--sp-8); }
.faq-search { position: relative; max-width: 640px; margin: 0 auto; }
.faq-search input {
  width: 100%; padding: 16px 20px 16px 52px; border: 1.5px solid var(--brand-border); border-radius: var(--r-pill);
  font-family: var(--font-body); font-size: var(--fs-16); background: #fff; box-shadow: var(--shadow-sm); transition: var(--t-fast);
}
.faq-search input:focus { outline: none; border-color: var(--brand-secondary); box-shadow: 0 0 0 3px rgba(59,140,184,.15); }
.faq-search .ico { position: absolute; left: 20px; top: 50%; transform: translateY(-50%); font-size: 18px; color: var(--brand-text-muted); }
.faq-count { color: var(--brand-text-muted); font-size: var(--fs-14); margin-top: var(--sp-3); }
.faq-cats { display: flex; gap: var(--sp-2); flex-wrap: wrap; justify-content: center; margin: var(--sp-8) 0; }
.faq-cat {
  display: inline-flex; align-items: center; gap: 6px; padding: 8px 16px; border-radius: var(--r-pill);
  border: 1.5px solid var(--brand-border); background: #fff; color: var(--brand-text); font-weight: 500; font-size: var(--fs-14);
  cursor: pointer; transition: var(--t-fast);
}
.faq-cat:hover { border-color: var(--brand-secondary); }
.faq-cat.active { background: var(--brand-primary); color: #fff; border-color: var(--brand-primary); }
.faq-tag {
  display: inline-block; margin-top: var(--sp-3); font-size: var(--fs-12); color: var(--brand-secondary);
  background: var(--brand-accent-light); padding: 3px 10px; border-radius: var(--r-pill); font-weight: 600;
}
.faq-item.hidden { display: none; }
.faq-empty { text-align: center; color: var(--brand-text-muted); padding: var(--sp-12); display: none; }
.faq-empty.show { display: block; }

/* ---------- WhatsApp float ---------- */
.wa-float {
  position: fixed; bottom: 24px; right: 24px; z-index: 90; width: 60px; height: 60px;
  background: #25D366; border-radius: var(--r-full); display: flex; align-items: center; justify-content: center;
  font-size: 32px; color: #fff; box-shadow: 0 8px 24px rgba(37,211,102,.4); transition: var(--t-base);
}
.wa-float:hover { transform: scale(1.08); }
.wa-float svg { width: 32px; height: 32px; display: block; }

/* ---------- Utilities ---------- */
.text-center { text-align: center; }
.mt-8 { margin-top: var(--sp-8); }
.benefits-list { list-style: none; display: grid; gap: var(--sp-3); }
.benefits-list li { display: flex; align-items: flex-start; gap: var(--sp-3); font-size: var(--fs-16); }
.benefits-list .check { color: #2E9E5B; font-weight: 700; flex-shrink: 0; }
.split { display: grid; grid-template-columns: 1fr 1fr; gap: var(--sp-16); align-items: center; }

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .nav-menu { display: none; position: absolute; top: 72px; left: 0; right: 0; flex-direction: column;
    background: #fff; border-bottom: 1px solid var(--brand-border); padding: var(--sp-4); gap: var(--sp-2); align-items: stretch; }
  .nav-menu.open { display: flex; }
  .nav-menu a { padding: 12px; border-radius: var(--r-sm); }
  .nav-dropdown-menu { position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none;
    border: none; grid-template-columns: 1fr; min-width: 0; padding: 0 0 0 var(--sp-4); display: none; }
  .nav-dropdown.open .nav-dropdown-menu { display: grid; }
  .nav-toggle { display: flex; }
  .nav-actions .btn-secondary { display: none; }
  .hero-grid, .split, .app-band-grid, .app-band-grid { grid-template-columns: 1fr; }
  .hero-title, .product-hero h1 { font-size: var(--fs-40); }
  .grid-3, .grid-4, .steps, .testimonials-grid { grid-template-columns: 1fr; }
  .grid-2, .field-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .section { padding: var(--sp-16) 0; }
  .reviews-strip .container { gap: var(--sp-6); }
  .install-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr 1fr; }
  .hero-omnis .hero-title { font-size: var(--fs-40); }
  .phone.phone-back { display: none; }
  .phone-stage { margin-top: var(--sp-8); }
}
@media (max-width: 560px) {
  .footer-grid { grid-template-columns: 1fr; }
  .section-title { font-size: var(--fs-32); }
  .hero-trust { gap: var(--sp-6); }
}

/* ============================================
   ARTICOLE RELEVANTE (footer articol blog)
   ============================================ */
.related-posts { max-width: 1100px; margin: var(--sp-16) auto 0; padding: 0 var(--sp-6); }
.related-posts h2 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: var(--fs-24);
  color: var(--brand-text);
  margin: 0 0 var(--sp-8);
}
.related-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--sp-6); }
.related-card {
  display: flex; flex-direction: column;
  background: #fff;
  border: 1px solid var(--brand-border);
  border-radius: var(--r-lg);
  overflow: hidden;
  text-decoration: none;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.related-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--brand-accent-light); }
.related-card .rc-img { height: 140px; overflow: hidden; background: var(--brand-bg-alt); }
.related-card .rc-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.related-card:hover .rc-img img { transform: scale(1.05); }
.related-card .rc-body { padding: var(--sp-6); display: flex; flex-direction: column; flex: 1; }
.related-card .rc-cat {
  font-size: var(--fs-12);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--brand-secondary);
  margin-bottom: var(--sp-2);
}
.related-card h3 { font-family: var(--font-display); font-size: var(--fs-16); font-weight: 700; color: var(--brand-text); line-height: 1.35; margin: 0 0 var(--sp-3); }
.related-card .rc-more { margin-top: auto; font-size: var(--fs-14); font-weight: 700; color: var(--brand-primary); }
@media (max-width: 860px) { .related-grid { grid-template-columns: 1fr; } }

/* ============================================
   RECENZII (sectiune statica inainte de footer)
   ============================================ */
.reviews-block { padding: var(--sp-16) 0; background: var(--brand-bg-alt); }
.rv-top { display: flex; align-items: center; justify-content: space-between; gap: var(--sp-6); flex-wrap: wrap; margin-bottom: var(--sp-12); }
.rv-label { display: inline-block; font-size: var(--fs-12); font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--brand-secondary); margin-bottom: var(--sp-2); }
.rv-top h2 { font-family: var(--font-display); font-weight: 800; font-size: var(--fs-32); color: var(--brand-text); margin: 0; }
.rv-score { display: inline-flex; align-items: center; gap: var(--sp-3); background: #fff; border: 1px solid var(--brand-border); border-radius: var(--r-pill); padding: 10px 20px; }
.rv-num { font-family: var(--font-mono); font-size: var(--fs-24); font-weight: 700; color: var(--brand-primary); }
.rv-stars { color: #F5A623; font-size: var(--fs-16); letter-spacing: 2px; }
.rv-count { font-size: var(--fs-14); color: var(--brand-text-muted); }
.rv-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--sp-6); }
.rv-card { background: #fff; border: 1px solid var(--brand-border); border-radius: var(--r-lg); padding: var(--sp-6); transition: transform .25s ease, box-shadow .25s ease; }
.rv-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.rv-head { display: flex; align-items: center; gap: var(--sp-3); margin-bottom: var(--sp-3); }
.rv-av { width: 38px; height: 38px; border-radius: var(--r-full); background: var(--gradient-signature); color: #fff; display: flex; align-items: center; justify-content: center; font-size: var(--fs-14); font-weight: 700; flex-shrink: 0; }
.rv-nm { font-size: var(--fs-14); font-weight: 700; color: var(--brand-text); line-height: 1.2; }
.rv-nm small { display: block; color: #F5A623; font-size: var(--fs-12); letter-spacing: 1px; margin-top: 2px; }
.rv-body { font-size: var(--fs-14); line-height: 1.6; color: var(--brand-text-muted); margin: 0 0 var(--sp-3); }
.rv-src { font-size: var(--fs-12); font-weight: 700; letter-spacing: 0.06em; color: var(--brand-secondary); }
@media (max-width: 1024px) { .rv-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .rv-grid { grid-template-columns: 1fr; } }

/* ============================================
   BARĂ ANUNȚ (unificată — deasupra header)
   ============================================ */
.announce-bar { background: linear-gradient(90deg, var(--brand-primary) 0%, var(--brand-secondary) 100%); color: #fff; font-size: var(--fs-14); }
.announce-bar .container { display: flex; align-items: center; justify-content: center; gap: var(--sp-6); padding: 10px var(--sp-6); position: relative; }
.ab-msg { display: inline-flex; align-items: center; gap: var(--sp-2); text-align: center; }
.ab-tag { font-size: var(--fs-12); font-weight: 800; letter-spacing: 0.06em; text-transform: uppercase; background: var(--brand-accent-light); color: var(--brand-primary-dark); padding: 2px 9px; border-radius: var(--r-sm); }
.ab-msg strong { font-weight: 700; }
.ab-cta { position: absolute; right: var(--sp-6); display: inline-flex; align-items: center; gap: 6px; padding: 6px 14px; border-radius: var(--r-pill); background: #fff; color: var(--brand-primary-dark); font-size: var(--fs-12); font-weight: 700; white-space: nowrap; transition: var(--t-fast); }
.ab-cta:hover { transform: translateY(-1px); box-shadow: 0 6px 16px rgba(0,0,0,.2); }
@media (max-width: 768px) { .ab-cta { display: none; } .announce-bar .container { padding: 9px var(--sp-6); } .announce-bar { font-size: var(--fs-12); } }

/* ============================================
   FOOTER BADGES (App Store / Google Play / ANPC / SAL)
   ============================================ */
.footer-badges { display: flex; flex-wrap: wrap; align-items: center; gap: var(--sp-4); padding: var(--sp-6) 0; border-top: 1px solid rgba(168,216,240,.2); margin-bottom: var(--sp-4); }
.footer-badges img { height: 42px; width: auto; border-radius: var(--r-sm); transition: var(--t-fast); }
.footer-badges a:hover img { transform: translateY(-2px); opacity: .9; }
.footer-badges a:nth-child(n+3) img { height: 38px; background: #fff; padding: 3px 6px; }
@media (max-width: 560px) { .footer-badges { justify-content: center; gap: var(--sp-3); } .footer-badges img { height: 36px; } }
