/* =========================================================
   Digital Moments — stylesheet
   Design modern, dark, animat. Vanilla CSS, fără framework.
   ========================================================= */

:root {
  --bg: #0b1020;
  --bg-2: #0e1428;
  --surface: rgba(255, 255, 255, 0.04);
  --surface-2: rgba(255, 255, 255, 0.06);
  --border: rgba(255, 255, 255, 0.10);
  --border-strong: rgba(255, 255, 255, 0.18);
  --text: #eef2ff;
  --muted: #9aa6c7;
  --muted-2: #6b779c;

  --brand: #4f7cff;
  --brand-2: #22d3ee;
  --accent: #a855f7;
  --grad: linear-gradient(120deg, #4f7cff 0%, #22d3ee 50%, #a855f7 100%);
  --grad-soft: linear-gradient(120deg, rgba(79,124,255,.16), rgba(34,211,238,.16));

  --radius: 18px;
  --radius-sm: 12px;
  --shadow: 0 20px 60px -20px rgba(0, 0, 0, 0.6);
  --shadow-glow: 0 0 0 1px rgba(79,124,255,.35), 0 20px 60px -15px rgba(79,124,255,.35);
  --container: 1180px;
  --ease: cubic-bezier(.22, 1, .36, 1);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 { font-family: 'Sora', 'Inter', sans-serif; line-height: 1.15; margin: 0; font-weight: 700; }
p { margin: 0 0 1rem; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul, ol { margin: 0; padding: 0; list-style: none; }

.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.narrow { max-width: 860px; }
.center { text-align: center; }

/* ---------- Fundal animat (aurora) ---------- */
.bg-aurora {
  position: fixed; inset: 0; z-index: -2; overflow: hidden;
  background:
    radial-gradient(1200px 600px at 80% -10%, rgba(79,124,255,.18), transparent 60%),
    radial-gradient(900px 500px at 0% 20%, rgba(168,85,247,.14), transparent 55%),
    var(--bg);
}
.blob { position: absolute; border-radius: 50%; filter: blur(70px); opacity: .55; will-change: transform; }
.blob-1 { width: 480px; height: 480px; background: #2b4bff; top: -120px; left: -80px; animation: drift1 22s var(--ease) infinite alternate; }
.blob-2 { width: 420px; height: 420px; background: #12b3d6; bottom: -140px; right: -60px; animation: drift2 26s var(--ease) infinite alternate; }
.blob-3 { width: 360px; height: 360px; background: #8b3df0; top: 40%; left: 55%; animation: drift3 30s var(--ease) infinite alternate; }
@keyframes drift1 { to { transform: translate(120px, 80px) scale(1.15); } }
@keyframes drift2 { to { transform: translate(-100px, -60px) scale(1.1); } }
@keyframes drift3 { to { transform: translate(-140px, 40px) scale(.9); } }

/* ---------- Butoane ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 22px; border-radius: 999px; font-weight: 600;
  font-family: 'Sora', sans-serif; font-size: .95rem; cursor: pointer;
  border: 1px solid transparent; transition: transform .3s var(--ease), box-shadow .3s var(--ease), background .3s; white-space: nowrap;
}
.btn .icon { width: 18px; height: 18px; }
.btn-lg { padding: 15px 28px; font-size: 1rem; }
.btn-block { width: 100%; justify-content: center; }
.btn-primary { background: var(--grad); color: #fff; box-shadow: 0 10px 30px -10px rgba(79,124,255,.7); background-size: 160% 160%; }
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 18px 40px -12px rgba(79,124,255,.85); background-position: 100% 50%; }
.btn-ghost { background: var(--surface); color: var(--text); border-color: var(--border); }
.btn-ghost:hover { transform: translateY(-3px); border-color: var(--border-strong); background: var(--surface-2); }
.btn:active { transform: translateY(-1px) scale(.99); }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  padding: 16px 0; transition: padding .3s var(--ease), background .3s, border-color .3s;
  border-bottom: 1px solid transparent;
}
.site-header.scrolled {
  padding: 10px 0;
  background: rgba(11, 16, 32, 0.72);
  backdrop-filter: blur(14px);
  border-bottom-color: var(--border);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.brand { display: flex; align-items: center; gap: 10px; font-family: 'Sora', sans-serif; font-weight: 800; font-size: 1.15rem; letter-spacing: -.02em; }
.brand-logo { height: 36px; width: auto; object-fit: contain; display: block; transition: transform .3s var(--ease); }
.brand:hover .brand-logo { animation: pop .5s var(--ease); }
@keyframes pop { 50% { transform: scale(1.06); } }

.main-nav { display: flex; align-items: center; gap: 6px; }
.nav-link { padding: 8px 14px; border-radius: 999px; color: var(--muted); font-weight: 500; font-size: .95rem; transition: color .25s, background .25s; position: relative; }
.nav-link:hover { color: var(--text); }
.nav-link.is-active { color: var(--text); background: var(--surface); }
.nav-cta { margin-left: 8px; }

.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer; padding: 8px; }
.nav-toggle span { width: 24px; height: 2px; background: var(--text); border-radius: 2px; transition: transform .3s var(--ease), opacity .3s; }
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Utilitare text ---------- */
.grad-text { background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; }
.eyebrow { display: inline-flex; align-items: center; gap: 8px; font-size: .82rem; font-weight: 600; letter-spacing: .04em; text-transform: uppercase; color: var(--muted); }
.eyebrow .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--brand-2); box-shadow: 0 0 12px var(--brand-2); animation: blink 2s infinite; }
@keyframes blink { 50% { opacity: .35; } }

.section { padding: 84px 0; position: relative; }
.section-head { max-width: 680px; margin: 0 auto 52px; text-align: center; }
.section-title { font-size: clamp(1.7rem, 4vw, 2.6rem); margin: 14px 0 12px; letter-spacing: -.02em; }
.section-sub { color: var(--muted); font-size: 1.05rem; }

/* ---------- Hero ---------- */
.hero { padding: 60px 0 40px; }
.hero-inner { display: grid; grid-template-columns: 1.05fr .95fr; gap: 48px; align-items: center; }
.hero-title { font-size: clamp(2.3rem, 5.4vw, 4rem); letter-spacing: -.03em; margin: 18px 0 20px; }
.hero-lead { font-size: 1.15rem; color: var(--muted); max-width: 540px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin: 28px 0 30px; }
.hero-trust { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; color: var(--muted-2); font-size: .85rem; }
.trust-logos { display: flex; align-items: center; gap: 22px; }
.trust-logos img { height: 22px; width: auto; opacity: .75; filter: grayscale(1) brightness(1.6); transition: opacity .3s, filter .3s; }
.trust-logos img:hover { opacity: 1; filter: none; }

/* Vizual hero */
.hero-visual { position: relative; }
.orbit-card { position: relative; }
.glass-panel {
  background: var(--surface); border: 1px solid var(--border); border-radius: 22px;
  padding: 26px; box-shadow: var(--shadow); backdrop-filter: blur(10px);
  animation: floaty 6s ease-in-out infinite;
}
@keyframes floaty { 50% { transform: translateY(-14px); } }
.panel-row { display: flex; align-items: center; gap: 10px; color: var(--muted); font-size: .9rem; font-weight: 600; }
.pulse-dot { width: 9px; height: 9px; border-radius: 50%; background: #34d399; box-shadow: 0 0 0 0 rgba(52,211,153,.6); animation: pulse 1.8s infinite; }
@keyframes pulse { 70% { box-shadow: 0 0 0 12px rgba(52,211,153,0); } 100% { box-shadow: 0 0 0 0 rgba(52,211,153,0); } }
.panel-bars { display: flex; align-items: flex-end; gap: 10px; height: 130px; margin: 22px 0; }
.panel-bars span { flex: 1; height: var(--h); border-radius: 8px 8px 4px 4px; background: var(--grad); opacity: .85; transform-origin: bottom; animation: grow 1.2s var(--ease) both; }
.panel-bars span:nth-child(2){ animation-delay: .1s } .panel-bars span:nth-child(3){ animation-delay: .2s }
.panel-bars span:nth-child(4){ animation-delay: .3s } .panel-bars span:nth-child(5){ animation-delay: .4s }
.panel-bars span:nth-child(6){ animation-delay: .5s }
@keyframes grow { from { transform: scaleY(0); } }
.panel-foot { display: flex; justify-content: space-between; border-top: 1px solid var(--border); padding-top: 16px; }
.panel-foot div { text-align: center; } .panel-foot strong { display: block; font-family: 'Sora'; font-size: 1.2rem; }
.panel-foot small { color: var(--muted-2); font-size: .78rem; }
.float-chip {
  position: absolute; display: inline-flex; align-items: center; gap: 7px;
  padding: 9px 14px; border-radius: 999px; font-size: .82rem; font-weight: 600;
  background: rgba(11,16,32,.8); border: 1px solid var(--border-strong); backdrop-filter: blur(8px); box-shadow: var(--shadow);
}
.float-chip .icon { width: 15px; height: 15px; color: var(--brand-2); }
.chip-1 { top: 8%; left: -26px; animation: floaty 5s ease-in-out infinite; }
.chip-2 { bottom: 12%; right: -20px; animation: floaty 5.5s ease-in-out .6s infinite; }

/* ---------- Stats ---------- */
.stats-band { padding: 20px 0 10px; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.stat { text-align: center; padding: 26px 16px; background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); transition: transform .3s var(--ease), border-color .3s; }
.stat:hover { transform: translateY(-5px); border-color: var(--border-strong); }
.stat-num { font-family: 'Sora'; font-weight: 800; font-size: clamp(1.8rem, 4vw, 2.6rem); background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; }
.stat-label { color: var(--muted); font-size: .92rem; margin-top: 4px; }

/* ---------- Carduri ---------- */
.cards-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.cards-grid.two { grid-template-columns: repeat(2, 1fr); }
.cards-grid.three { grid-template-columns: repeat(3, 1fr); }
.card {
  position: relative; background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 28px; transition: transform .35s var(--ease), border-color .35s, background .35s;
  overflow: hidden;
}
.card::before {
  content: ''; position: absolute; inset: 0; border-radius: inherit; padding: 1px;
  background: var(--grad); opacity: 0; transition: opacity .35s;
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude; pointer-events: none;
}
.card:hover { transform: translateY(-6px); background: var(--surface-2); }
.card:hover::before { opacity: 1; }
.card h3 { font-size: 1.25rem; margin-bottom: 10px; }
.card p { color: var(--muted); margin: 0; }
.card-icon {
  display: grid; place-items: center; width: 52px; height: 52px; border-radius: 14px;
  background: var(--grad-soft); border: 1px solid var(--border); color: var(--brand-2); margin-bottom: 18px;
  transition: transform .35s var(--ease);
}
.card-icon .icon { width: 26px; height: 26px; }
.card:hover .card-icon { transform: scale(1.1) rotate(-4deg); }
.service-card { display: flex; flex-direction: column; }
.card-link { margin-top: 16px; display: inline-flex; align-items: center; gap: 6px; color: var(--brand-2); font-weight: 600; font-size: .92rem; }
.card-link .icon { width: 16px; height: 16px; transition: transform .3s var(--ease); }
.card:hover .card-link .icon { transform: translateX(5px); }

/* ---------- Featured ---------- */
.featured-inner { display: grid; grid-template-columns: .9fr 1.1fr; gap: 48px; align-items: center; }
.featured-media { display: grid; place-items: center; padding: 30px; background: var(--grad-soft); border: 1px solid var(--border); border-radius: 26px; }
.featured-media img { max-height: 300px; width: auto; filter: drop-shadow(0 30px 40px rgba(0,0,0,.5)); animation: floaty 7s ease-in-out infinite; }
.badge-hot { display: inline-block; padding: 6px 14px; border-radius: 999px; font-size: .78rem; font-weight: 700; text-transform: uppercase; letter-spacing: .05em; background: var(--grad); color: #fff; margin-bottom: 16px; }
.featured-cta { display: flex; align-items: center; gap: 22px; flex-wrap: wrap; margin-top: 24px; }
.price { font-family: 'Sora'; font-weight: 800; font-size: 1.5rem; }
.price small { display: block; font-size: .8rem; font-weight: 400; color: var(--muted-2); }

/* ---------- Check list ---------- */
.check-list li { display: flex; gap: 10px; align-items: flex-start; margin-bottom: 12px; color: var(--muted); }
.check-list .icon { width: 20px; height: 20px; flex: none; color: var(--brand-2); margin-top: 2px; }
.check-list.two-col { columns: 2; column-gap: 30px; }
.check-list.two-col li { break-inside: avoid; }

/* ---------- Marquee parteneri ---------- */
.partner-marquee { overflow: hidden; -webkit-mask: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); mask: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); }
.marquee-track { display: flex; gap: 60px; width: max-content; animation: marquee 32s linear infinite; align-items: center; }
.partner-marquee:hover .marquee-track { animation-play-state: paused; }
.partner-logo img { height: 34px; width: auto; opacity: .6; filter: grayscale(1) brightness(1.7); transition: opacity .3s, filter .3s, transform .3s; }
.partner-logo img:hover { opacity: 1; filter: none; transform: scale(1.08); }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ---------- CTA ---------- */
.cta-band { position: relative; overflow: hidden; display: flex; align-items: center; justify-content: space-between; gap: 30px; flex-wrap: wrap; padding: 44px 48px; border-radius: 26px; background: var(--bg-2); border: 1px solid var(--border); }
.cta-glow { position: absolute; inset: -50% -20% auto auto; width: 600px; height: 400px; background: radial-gradient(circle, rgba(79,124,255,.35), transparent 60%); filter: blur(20px); }
.cta-content { position: relative; }
.cta-content h2 { font-size: clamp(1.5rem, 3vw, 2.1rem); margin-bottom: 8px; }
.cta-content p { color: var(--muted); margin: 0; }
.cta-actions { position: relative; display: flex; gap: 14px; flex-wrap: wrap; }

/* ---------- Page hero ---------- */
.page-hero { padding: 60px 0 20px; }
.crumbs { color: var(--muted-2); font-size: .9rem; margin-bottom: 16px; }
.crumbs a:hover { color: var(--text); }
.crumbs span { margin: 0 8px; opacity: .5; }
.crumbs b { color: var(--muted); font-weight: 600; }
.page-title { font-size: clamp(2rem, 5vw, 3.2rem); letter-spacing: -.03em; }
.page-sub { color: var(--muted); font-size: 1.1rem; max-width: 640px; margin-top: 14px; }

/* ---------- Prose ---------- */
.prose p { color: var(--muted-2); font-size: 1.06rem; margin-bottom: 1.1rem; }

/* ---------- Value / info ---------- */
.value-card .card-icon { color: var(--accent); }
.info-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 34px; }
.info-card h3 { margin-bottom: 22px; }
.info-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px 30px; }
.info-grid span { display: block; color: var(--muted-2); font-size: .82rem; text-transform: uppercase; letter-spacing: .04em; margin-bottom: 2px; }
.info-grid strong { font-weight: 600; }
.info-grid a:hover { color: var(--brand-2); }

/* ---------- Steps ---------- */
.steps { display: flex; flex-direction: column; gap: 18px; }
.step { display: flex; gap: 22px; background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 26px 28px; transition: border-color .3s, transform .3s var(--ease); }
.step:hover { border-color: var(--border-strong); transform: translateX(6px); }
.step-num { font-family: 'Sora'; font-weight: 800; font-size: 1.6rem; background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; flex: none; }
.step-body h3 { font-size: 1.2rem; margin-bottom: 8px; }
.step-body p { color: var(--muted); margin: 0; }
.panel-block { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 30px; margin-bottom: 24px; }
.panel-block h3 { margin-bottom: 18px; }

/* ---------- Partner cards ---------- */
.partner-card { text-align: center; }
.partner-card-logo { height: 60px; display: grid; place-items: center; margin-bottom: 18px; }
.partner-card-logo img { max-height: 46px; width: auto; filter: grayscale(1) brightness(1.6); opacity: .8; transition: filter .3s, opacity .3s; }
.partner-card:hover .partner-card-logo img { filter: none; opacity: 1; }
.biz-card h3 { font-size: 1.5rem; }
.biz-card .btn { margin-top: 8px; }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 40px; align-items: start; }
.contact-info h3 { margin-bottom: 22px; }
.contact-list li { display: flex; gap: 16px; margin-bottom: 22px; }
.ci-icon { display: grid; place-items: center; width: 44px; height: 44px; flex: none; border-radius: 12px; background: var(--grad-soft); border: 1px solid var(--border); color: var(--brand-2); }
.ci-icon .icon { width: 20px; height: 20px; }
.contact-list a:hover { color: var(--brand-2); }
.map-link { display: inline-flex; align-items: center; gap: 6px; color: var(--brand-2); font-weight: 600; }
.map-link .icon { width: 16px; height: 16px; }

.contact-form-wrap { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 32px; }
.contact-form { display: grid; gap: 18px; }
.field { display: grid; gap: 7px; }
.field label { font-size: .88rem; font-weight: 600; color: var(--muted); }
.field input, .field select, .field textarea {
  width: 100%; padding: 13px 15px; border-radius: var(--radius-sm);
  background: rgba(0,0,0,.25); border: 1px solid var(--border); color: var(--text);
  font-family: inherit; font-size: .98rem; transition: border-color .25s, box-shadow .25s, background .25s;
}
.field textarea { resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--brand); box-shadow: 0 0 0 3px rgba(79,124,255,.2); background: rgba(0,0,0,.35); }
.field select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='none' stroke='%239aa6c7' stroke-width='2' viewBox='0 0 24 24'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 40px; }
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

.alert { display: flex; gap: 12px; align-items: center; padding: 15px 18px; border-radius: var(--radius-sm); margin-bottom: 20px; font-size: .95rem; }
.alert .icon { width: 22px; height: 22px; flex: none; }
.alert-success { background: rgba(52,211,153,.12); border: 1px solid rgba(52,211,153,.35); color: #6ee7b7; }
.alert-error { background: rgba(248,113,113,.12); border: 1px solid rgba(248,113,113,.35); color: #fca5a5; }

/* ---------- 404 ---------- */
.error-section { padding: 120px 0; }
.error-code { font-family: 'Sora'; font-weight: 800; font-size: clamp(5rem, 18vw, 11rem); line-height: 1; }
.error-section .btn { margin-top: 24px; }

/* ---------- Footer ---------- */
.site-footer { border-top: 1px solid var(--border); margin-top: 40px; background: rgba(0,0,0,.2); }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 30px; padding: 60px 24px 40px; }
.brand-footer { margin-bottom: 16px; }
.brand-logo-footer { height: 28px; }
.footer-tag { color: var(--muted); margin-bottom: 6px; }
.footer-since { color: var(--muted-2); font-size: .88rem; }
.footer-col h4 { font-size: .82rem; text-transform: uppercase; letter-spacing: .05em; color: var(--muted-2); margin-bottom: 14px; }
.footer-col a { display: block; color: var(--muted); padding: 5px 0; transition: color .2s; }
.footer-col a:hover { color: var(--text); }
.footer-addr { color: var(--muted-2); font-size: .88rem; margin-top: 8px; }
.footer-partners { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 40px; padding: 30px 24px; border-top: 1px solid var(--border); }
.footer-partners img { height: 26px; width: auto; opacity: .5; filter: grayscale(1) brightness(1.7); transition: opacity .3s, filter .3s; }
.footer-partners img:hover { opacity: 1; filter: none; }
.footer-bottom { border-top: 1px solid var(--border); }
.footer-bottom .container { display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; padding: 20px 24px; color: var(--muted-2); font-size: .84rem; }

/* ---------- Reveal la scroll ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: .12s; }
.reveal[data-delay="2"] { transition-delay: .24s; }

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; }
  .reveal { opacity: 1; transform: none; }
}

/* ---------- Responsive ---------- */
@media (max-width: 960px) {
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { max-width: 440px; }
  .featured-inner { grid-template-columns: 1fr; gap: 32px; }
  .contact-grid { grid-template-columns: 1fr; }
  .cards-grid, .cards-grid.two, .cards-grid.three { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 720px) {
  .main-nav {
    position: fixed; inset: 0 0 0 auto; width: min(80vw, 320px);
    flex-direction: column; align-items: stretch; justify-content: flex-start; gap: 6px;
    padding: 90px 24px 30px; background: var(--bg-2); border-left: 1px solid var(--border);
    transform: translateX(100%); transition: transform .35s var(--ease); z-index: 40;
  }
  .main-nav.open { transform: none; }
  .nav-link { padding: 12px 14px; font-size: 1.05rem; }
  .nav-cta { margin: 10px 0 0; text-align: center; justify-content: center; }
  .nav-toggle { display: flex; z-index: 45; }
  body.nav-open { overflow: hidden; }

  .section { padding: 60px 0; }
  .cards-grid, .cards-grid.two, .cards-grid.three { grid-template-columns: 1fr; }
  .check-list.two-col { columns: 1; }
  .info-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .cta-band { padding: 32px 26px; }
  .step { flex-direction: column; gap: 10px; }
  .float-chip { display: none; }
}

/* ---------- GDPR: pagini legale (confidențialitate / cookie-uri) ---------- */
.legal-updated { color: var(--muted-2); font-size: .88rem; margin-bottom: 24px; }
.legal-prose h3 { font-size: 1.25rem; margin: 34px 0 12px; letter-spacing: -.01em; }
.legal-prose h3:first-child { margin-top: 0; }
.legal-prose a { color: var(--brand-2); text-decoration: underline; text-underline-offset: 2px; }
.legal-list { display: grid; gap: 10px; margin: 0 0 1.1rem; padding-left: 1.3rem; }
.legal-list li { color: var(--muted-2); font-size: 1.02rem; line-height: 1.6; }
.legal-actions { margin-top: 32px; }

/* ---------- Formular contact: consimțământ GDPR ---------- */
.field-consent { margin-top: 4px; }
.consent-check { display: flex; align-items: flex-start; gap: 10px; cursor: pointer; font-size: .92rem; color: var(--muted); }
.consent-check input[type="checkbox"] { margin-top: 3px; width: 16px; height: 16px; flex: none; accent-color: var(--brand); }
.consent-check a { color: var(--brand-2); }
.field-consent.field-error .consent-check { color: #fca5a5; }
.field-consent.field-error .consent-check input { outline: 2px solid rgba(248,113,113,.6); outline-offset: 2px; }

/* ---------- Butoane mici (folosite în bannerul de cookie-uri) ---------- */
.btn-sm { padding: 9px 16px; font-size: .85rem; }

/* ---------- Cookie consent banner ---------- */
.cookie-banner {
  position: fixed;
  left: 50%;
  bottom: 20px;
  transform: translate(-50%, 24px);
  width: min(920px, calc(100% - 32px));
  z-index: 100;
  background: var(--surface-2);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  opacity: 0;
  transition: opacity .35s var(--ease), transform .35s var(--ease);
  pointer-events: none;
}
.cookie-banner.is-visible { opacity: 1; transform: translate(-50%, 0); pointer-events: auto; }
.cookie-banner[hidden] { display: none; }

.cookie-banner-inner { display: flex; align-items: center; gap: 18px; padding: 20px 24px; flex-wrap: wrap; }
.cookie-banner-icon { flex: none; width: 40px; height: 40px; display: grid; place-items: center; border-radius: 12px; background: var(--grad-soft); color: var(--brand-2); }
.cookie-banner-icon .icon { width: 22px; height: 22px; }
.cookie-banner-text { flex: 1 1 320px; min-width: 220px; }
.cookie-banner-text strong { display: block; margin-bottom: 4px; font-size: 1rem; }
.cookie-banner-text p { color: var(--muted); font-size: .9rem; line-height: 1.5; margin: 0; }
.cookie-banner-text a { color: var(--brand-2); text-decoration: underline; text-underline-offset: 2px; }
.cookie-banner-actions { display: flex; gap: 10px; flex-wrap: wrap; flex: none; }

.cookie-prefs { border-top: 1px solid var(--border); padding: 18px 24px 22px; display: grid; gap: 14px; }
.cookie-prefs[hidden] { display: none; }
.cookie-pref-row { display: flex; align-items: flex-start; justify-content: space-between; gap: 18px; }
.cookie-pref-row strong { display: block; font-size: .92rem; margin-bottom: 2px; }
.cookie-pref-row p { color: var(--muted-2); font-size: .85rem; margin: 0; line-height: 1.5; }
.cookie-prefs-actions { display: flex; justify-content: flex-end; }

/* Switch (toggle) folosit pentru preferințele de cookie-uri */
.switch { position: relative; display: inline-flex; align-items: center; flex: none; cursor: pointer; }
.switch input { position: absolute; opacity: 0; width: 0; height: 0; }
.switch-track { width: 42px; height: 24px; border-radius: 999px; background: var(--border-strong); border: 1px solid var(--border); transition: background .2s var(--ease); display: inline-block; position: relative; }
.switch-thumb { position: absolute; top: 2px; left: 2px; width: 18px; height: 18px; border-radius: 50%; background: #fff; transition: transform .2s var(--ease); box-shadow: 0 2px 6px rgba(0,0,0,.3); }
.switch input:checked + .switch-track { background: var(--grad); }
.switch input:checked + .switch-track .switch-thumb { transform: translateX(18px); }
.switch input:focus-visible + .switch-track { box-shadow: 0 0 0 3px rgba(79,124,255,.3); }
.switch-disabled { cursor: default; opacity: .75; }

/* ---------- Footer: linkuri legale + buton preferințe cookie-uri ---------- */
.footer-legal-links { display: inline-flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.footer-legal-links a { color: var(--muted-2); }
.footer-legal-links a:hover { color: var(--text); }
.footer-cookie-btn {
  background: none; border: none; padding: 0; margin: 0; font: inherit;
  color: var(--muted-2); cursor: pointer; text-decoration: underline; text-underline-offset: 2px;
  transition: color .2s;
}
.footer-cookie-btn:hover { color: var(--text); }

@media (max-width: 720px) {
  /* CAUZA REALĂ a dispariției bannerului la scroll pe mobil: header-ul primește
     clasa .scrolled, care îi activează `backdrop-filter: blur(14px)`. Pe Chrome
     Android, activarea unui backdrop-filter în timpul scroll-ului face ca alte
     elemente `position: fixed` (bannerul de cookie-uri) să dispară din randare.
     Scoatem backdrop-filter de pe header-ul scrollat pe mobil și îl înlocuim cu
     un fundal aproape opac — arată la fel, dar elimină complet declanșatorul. */
  .site-header.scrolled {
    background: rgba(11, 16, 32, 0.96);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }

  /* Pe mobil NU centrăm prin left:50% + translateX(-50%): la scroll, când
     bara de adrese a browserului mobil se ascunde/arată, Chrome recalculează
     greșit poziția elementelor `fixed` centrate prin transform (mai ales cu
     backdrop-filter), iar bannerul „sare" și pare tăiat. În loc de asta îl
     fixăm de ambele margini cu left/right — fără calcul de lățime, fără
     translateX — și folosim doar translateY pentru animația de intrare. */
  .cookie-banner {
    left: 10px;
    right: 10px;
    width: auto;
    transform: translateY(24px);
    bottom: max(10px, env(safe-area-inset-bottom));
    max-height: calc(100vh - 20px);
    max-height: calc(100dvh - 20px);
    overflow-y: auto;
    /* Fundal opac + fără backdrop-filter pe mobil: când header-ul primește
       clasa .scrolled (care activează propriul backdrop-filter) în timpul
       scroll-ului, Chrome pe Android face să „clipească"/dispară elementele
       cu backdrop-filter. Un fundal solid elimină complet acest conflict. */
    background: #10162e;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }
  .cookie-banner.is-visible { transform: translateY(0); }
  .cookie-banner-inner { padding: 16px 18px; }
  .cookie-banner-actions { width: 100%; flex-direction: column; flex-wrap: nowrap; }
  .cookie-banner-actions .btn { width: 100%; }
  .footer-bottom .container { flex-direction: column; align-items: flex-start; gap: 8px; }
}
