/* ═══════════════════════════════════════════════════════════════════════════
   Agenția Online — Tema V13 „Violet Magic" · main.css
   Paleta: Violet #8b5cf6 pe fundal #0b0a1e + secțiuni albe cu text gri.
   Aprobat de Elena 3-4 iunie 2026 (mockup SITE_FINAL_V13.html).
   Aceleași nume de clase ca tema veche — zero schimbări de markup necesare.
   ═══════════════════════════════════════════════════════════════════════════ */

:root {
  /* compat: variabilele vechi rămân definite, mapate pe noua paletă */
  --navy: #0b0a1e;
  --navy-light: #14122e;
  --navy-dark: #08071a;
  --gold: #8b5cf6;
  --gold-light: #a78bfa;
  --gold-dark: #6d4bd8;
  /* noua paletă */
  --vio: #8b5cf6;
  --vio-dark: #6d4bd8;
  --vio-deep: #0b0a1e;
  --vio-deep2: #14122e;
  --white: #ffffff;
  --gray: #f7f6fb;
  --gray-2: #e8e6f2;
  --text: #46465a;
  --text-head: #3a3a4c;
  --text-light: #74748a;
  --text-muted: #a3a3b8;
  --text-inv: #f1effc;
  --text-inv2: #b9b4d6;
  --success: #38a169;
  --danger: #e53e3e;
  --warning: #d69e2e;
  --radius-sm: 10px;
  --radius: 14px;
  --radius-lg: 18px;
  --shadow-sm: 0 2px 6px rgba(54, 42, 120, 0.07);
  --shadow: 0 8px 28px rgba(54, 42, 120, 0.11);
  --shadow-lg: 0 18px 50px rgba(54, 42, 120, 0.16);
  --max-width: 1180px;
  --transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

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

h1, h2, h3, h4 { font-family: 'Inter', sans-serif; color: var(--text-head); letter-spacing: -0.02em; line-height: 1.18; }
h1 { font-size: clamp(2rem, 4.4vw, 3.3rem); font-weight: 800; }
h2 { font-size: clamp(1.6rem, 3.4vw, 2.4rem); font-weight: 800; }
h3 { font-size: clamp(1.15rem, 2vw, 1.4rem); font-weight: 700; }

a { color: var(--vio-dark); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--vio); }

::selection { background: var(--vio); color: #fff; }

.container { max-width: var(--max-width); margin: 0 auto; padding: 0 28px; }

/* ── Cursor baghetă + praf (injectate de site-effects.js) ── */
@media (pointer: fine) {
  body.fx-cursor, body.fx-cursor a, body.fx-cursor button, body.fx-cursor input,
  body.fx-cursor textarea, body.fx-cursor select, body.fx-cursor summary { cursor: none; }
}
#fxWand { position: fixed; top: 0; left: 0; width: 34px; height: 34px; pointer-events: none; z-index: 999;
  transform: translate(-27px, -7px); filter: drop-shadow(0 2px 6px rgba(139,92,246,.5)); display: none; }
#fxWand .wandstar { transform-origin: 27px 7px; animation: fx-starspin 3.2s linear infinite; }
@keyframes fx-starspin { to { transform: rotate(360deg); } }
#fxRing { position: fixed; top: 0; left: 0; width: 34px; height: 34px; pointer-events: none; z-index: 999;
  border-radius: 50%; border: 1.5px solid rgba(139,92,246,.45); transform: translate(-50%,-50%);
  transition: width .25s, height .25s, border-color .25s; display: none; }
#fxRing.hov { width: 56px; height: 56px; border-color: var(--vio-dark); }
#fxDust { position: fixed; inset: 0; width: 100vw; height: 100vh; pointer-events: none; z-index: 998; display: none; }
@media (pointer: fine) { #fxWand, #fxRing, #fxDust { display: block; } }
#fxScrollbar { position: fixed; top: 0; left: 0; height: 2.5px; width: 0; z-index: 300; background: var(--vio); }

/* reveal la scroll */
.fx-reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s ease, transform .7s ease; }
.fx-reveal.fx-vis { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .fx-reveal { opacity: 1 !important; transform: none !important; }
  #fxWand, #fxRing, #fxDust { display: none !important; }
  body.fx-cursor, body.fx-cursor a, body.fx-cursor button, body.fx-cursor input { cursor: auto; }
}

/* ── Nav PREMIUM LIGHT (logo stânga, meniu, CTA violet) ── */
nav.site-nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--gray-2);
  padding: 11px 0;
}
nav.site-nav .container { display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.nav-brand { font-family: 'Inter', sans-serif; color: var(--text-head); font-size: 1.3rem; font-weight: 800; letter-spacing: -0.01em; }
.nav-brand .accent { color: var(--vio); }
.nav-links { display: flex; gap: 6px; align-items: center; }
.nav-links a { color: var(--text-light); font-weight: 500; font-size: 0.95rem; padding: 8px 13px; border-radius: 999px; }
.nav-links a:hover { color: var(--text-head); background: var(--gray); }
.nav-links a.active { color: var(--vio-dark); background: transparent; font-weight: 600; }
.nav-cta { background: var(--vio); color: #fff !important; padding: 10px 22px !important; border-radius: 999px !important; font-weight: 600; font-family: 'Inter', sans-serif; }
.nav-cta:hover { background: var(--vio-dark) !important; color: #fff !important; box-shadow: 0 8px 26px rgba(139,92,246,.4); }
.nav-toggle { display: none; background: transparent; border: 0; color: var(--text-head); font-size: 1.6rem; cursor: pointer; }
@media (max-width: 1060px) and (min-width: 701px) {
  .nav-links { gap: 0; }
  .nav-links a { font-size: 0.78rem; padding: 6px 8px; }
  .nav-cta { padding: 8px 14px !important; font-size: 0.78rem; }
  .nav-brand { font-size: 1.05rem; }
}
@media (max-width: 700px) {
  .nav-toggle { display: block; }
  .nav-links { display: none; position: absolute; top: 64px; right: 16px; flex-direction: column; background: var(--white); padding: 16px; border-radius: var(--radius); border: 1px solid var(--gray-2); min-width: 210px; box-shadow: var(--shadow-lg); }
  .nav-links.open { display: flex; }
}

/* ── Buttons ── */
.btn { display: inline-flex; align-items: center; gap: 8px; padding: 14px 28px; border-radius: 999px; font-weight: 600; font-size: 0.98rem; cursor: pointer; border: 0; transition: var(--transition); text-decoration: none; font-family: 'Inter', sans-serif; will-change: transform; }
.btn-primary { background: var(--vio); color: #fff; box-shadow: 0 6px 20px rgba(139, 92, 246, 0.35); }
.btn-primary:hover { background: var(--vio-dark); transform: translateY(-1px); box-shadow: 0 10px 30px rgba(139, 92, 246, 0.5); color: #fff; }
.btn-outline { background: transparent; color: var(--white); border: 1.5px solid rgba(255,255,255,0.35); }
.btn-outline:hover { border-color: var(--vio); color: #cdbcfc; box-shadow: 0 0 24px rgba(139,92,246,.25); }
.btn-outline-dark { background: transparent; color: var(--text-head); border: 1.5px solid var(--gray-2); }
.btn-outline-dark:hover { border-color: var(--vio); color: var(--vio-dark); }
.btn-block { display: flex; width: 100%; justify-content: center; }
.btn[disabled] { opacity: 0.6; cursor: not-allowed; }

/* ── Hero PREMIUM LIGHT (stil Notion/Linear/Stripe) + aurore violet difuze ── */
.hero { background: linear-gradient(180deg, #faf9ff 0%, #f3f0fc 100%); color: var(--text); padding: 110px 0 120px; position: relative; overflow: hidden; border-bottom: 1px solid var(--gray-2); }
.hero::before { content: ''; position: absolute; top: -200px; left: -140px; width: 560px; height: 560px;
  background: radial-gradient(circle, rgba(139,92,246,.16) 0%, transparent 65%); border-radius: 50%; filter: blur(40px);
  animation: fx-drift 24s ease-in-out infinite; }
.hero::after { content: ''; position: absolute; bottom: -180px; right: -140px; width: 480px; height: 480px;
  background: radial-gradient(circle, rgba(139,92,246,.13) 0%, transparent 65%); border-radius: 50%; filter: blur(40px);
  animation: fx-drift 24s ease-in-out infinite -9s; }
@keyframes fx-drift { 0%,100% { transform: translate(0,0) scale(1); } 50% { transform: translate(40px,-30px) scale(1.1); } }
.hero-content { position: relative; z-index: 2; max-width: 820px; }
.hero h1 { color: var(--text-head); margin-bottom: 24px; }
.hero h1 .gold { color: var(--vio-dark); }
.hero p.subtitle { font-size: 1.15rem; color: var(--text-light); margin-bottom: 38px; max-width: 600px; line-height: 1.7; }
.hero-cta-row { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 26px; }
.hero-trust { color: var(--text-muted); font-size: 0.9rem; }
/* butonul outline din hero light are nevoie de contur închis */
.hero .btn-outline { color: var(--text-head); border-color: #d4cfeb; }
.hero .btn-outline:hover { border-color: var(--vio); color: var(--vio-dark); box-shadow: none; }

/* zâna micuță (doar pe home, injectată în hero) */
.fx-fairy { position: absolute; top: 90px; right: 7%; width: 64px; z-index: 2; pointer-events: none;
  filter: drop-shadow(0 0 20px rgba(139,92,246,.4)); animation: fx-fairyfloat 5.5s ease-in-out infinite; }
.fx-fairy svg { width: 100%; overflow: visible; }
@keyframes fx-fairyfloat { 0%,100% { transform: translateY(0) rotate(-2deg);} 50% { transform: translateY(-14px) rotate(2deg);} }
.fx-fairy .wingL { transform-origin: 38px 46px; animation: fx-flutterL .45s ease-in-out infinite alternate; }
.fx-fairy .wingR { transform-origin: 62px 46px; animation: fx-flutterR .45s ease-in-out infinite alternate; }
@keyframes fx-flutterL { from { transform: rotate(6deg);} to { transform: rotate(-22deg);} }
@keyframes fx-flutterR { from { transform: rotate(-6deg);} to { transform: rotate(22deg);} }
.fx-fairy .fairyArm { transform-origin: 58px 58px; animation: fx-sprinkle 1.6s ease-in-out infinite; }
@keyframes fx-sprinkle { 0%,100% { transform: rotate(0deg);} 50% { transform: rotate(-14deg);} }
@media (max-width: 880px) { .fx-fairy { width: 46px; right: 5%; top: 76px; } }

/* ── Sections ── */
section { padding: 90px 0; }
section.alt { background: var(--gray); }
.section-head { text-align: center; max-width: 720px; margin: 0 auto 52px; }
.section-head h2 { margin-bottom: 14px; }
.section-head p { color: var(--text-light); font-size: 1.05rem; }

/* ── Cards grid ── */
.cards-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(290px, 1fr)); gap: 24px; }
.card { background: var(--white); border: 1px solid var(--gray-2); border-radius: var(--radius-lg); padding: 32px 28px; transition: var(--transition); }
.card:hover { transform: translateY(-5px); border-color: #d8ccf7; box-shadow: var(--shadow); }
.card-icon { width: 50px; height: 50px; background: #f4f1fd; border: 1px solid #e0d8f8; color: var(--vio-dark); border-radius: 13px; display: flex; align-items: center; justify-content: center; font-size: 1.4rem; font-weight: 700; margin-bottom: 18px; }
.card h3 { margin-bottom: 10px; }
.card p { color: var(--text-light); font-size: 0.95rem; }

/* ── How it works ── */
.steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 32px; counter-reset: step; }
.step { text-align: center; padding: 26px; }
.step-num { font-family: 'Inter', sans-serif; font-size: 3rem; color: transparent; -webkit-text-stroke: 2px #d6d3f2; font-weight: 800; line-height: 1; margin-bottom: 16px; position: relative; transition: color .3s; }
.step:hover .step-num { color: var(--vio); -webkit-text-stroke: 0; }
.step h3 { margin-bottom: 9px; }
.step p { color: var(--text-light); font-size: 0.95rem; }

/* ── Pricing ── */
.pricing-card { background: var(--white); border: 2px solid var(--vio); border-radius: 22px; padding: 42px; max-width: 480px; margin: 0 auto; box-shadow: 0 20px 55px rgba(139,92,246,0.16); position: relative; }
.pricing-badge { position: absolute; top: -14px; left: 50%; transform: translateX(-50%); background: var(--vio); color: #fff; padding: 6px 18px; border-radius: 999px; font-size: 0.8rem; font-weight: 700; letter-spacing: 0.05em; font-family: 'Inter', sans-serif; }
.pricing-plan { color: var(--text-light); font-size: 0.85rem; font-weight: 700; letter-spacing: 0.14em; font-family: 'Inter', sans-serif; }
.pricing-price { display: flex; align-items: baseline; gap: 6px; margin: 14px 0 6px; }
.pricing-price .amount { font-family: 'Inter', sans-serif; font-size: 3.2rem; font-weight: 800; color: var(--text-head); letter-spacing: -0.02em; }
.pricing-price .period { color: var(--text-light); font-size: 1.05rem; }
.pricing-yearly { color: var(--vio-dark); font-size: 0.92rem; margin-bottom: 26px; font-weight: 600; }
.pricing-features { list-style: none; margin: 24px 0; }
.pricing-features li { padding: 9px 0; padding-left: 28px; position: relative; color: var(--text); }
.pricing-features li::before { content: '✓'; position: absolute; left: 0; color: var(--vio); font-weight: 700; }
.pricing-future { text-align: center; color: var(--text-light); font-size: 0.9rem; margin-top: 16px; }

/* ── Collaborators ── */
.logos-row { display: flex; gap: 40px; justify-content: center; align-items: center; flex-wrap: wrap; margin-top: 32px; }
.logo-placeholder { width: 150px; height: 62px; display: flex; align-items: center; justify-content: center; background: var(--white); border: 1px solid var(--gray-2); border-radius: var(--radius); font-family: 'Inter', sans-serif; color: var(--text-head); font-weight: 700; font-size: 0.82rem; letter-spacing: 0.08em; transition: var(--transition); }
.logo-placeholder:hover { transform: translateY(-3px); box-shadow: var(--shadow-sm); border-color: #d8ccf7; }

/* ── FAQ ── */
.faq-list { max-width: 760px; margin: 0 auto; }
.faq-item { background: var(--white); border: 1px solid var(--gray-2); border-radius: var(--radius); padding: 4px 24px; margin-bottom: 12px; }
.faq-item summary { cursor: pointer; font-weight: 700; color: var(--text-head); list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 16px; font-family: 'Inter', sans-serif; font-size: 0.98rem; padding: 17px 0; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: '+'; color: var(--vio); font-size: 1.5rem; font-weight: 300; transition: transform 0.25s; flex-shrink: 0; }
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item p { margin: 0 0 18px; color: var(--text-light); font-size: 0.95rem; line-height: 1.7; }

/* ── CTA strip ── */
.cta-strip { background: linear-gradient(120deg, var(--vio-deep2) 0%, #241d52 100%); color: var(--white); padding: 80px 0; text-align: center; position: relative; overflow: hidden; }
.cta-strip::after { content:''; position: absolute; width: 320px; height: 320px; border-radius: 50%;
  background: radial-gradient(circle, rgba(139,92,246,.5), transparent 70%); filter: blur(60px); right: -90px; top: -90px; }
.cta-strip h2 { color: var(--white); margin-bottom: 16px; position: relative; z-index: 2; }
.cta-strip p { color: var(--text-inv2); margin-bottom: 30px; font-size: 1.05rem; position: relative; z-index: 2; }
.cta-strip .btn { position: relative; z-index: 2; }

/* ── Forms ── */
.form-wrap { max-width: 520px; margin: 0 auto; background: var(--white); padding: 38px; border-radius: 20px; box-shadow: var(--shadow); border: 1px solid var(--gray-2); }
.form-wrap.highlight { border: 2.5px solid var(--vio); box-shadow: 0 0 0 6px rgba(139,92,246,.1), 0 18px 50px rgba(109,75,216,.16); }
.form-wrap.dark { background: var(--vio-deep2); color: var(--text-inv); border-color: rgba(255,255,255,.1); }
.form-wrap.dark label, .form-wrap.dark h1, .form-wrap.dark h2 { color: var(--white); }
.field { margin-bottom: 20px; }
.field label { display: block; margin-bottom: 7px; font-weight: 600; font-size: 0.93rem; color: var(--text-head); font-family: 'Inter', sans-serif; }
.field input, .field textarea, .field select { width: 100%; padding: 13px 17px; border: 1px solid var(--gray-2); border-radius: var(--radius-sm); font-size: 0.98rem; font-family: inherit; background: var(--gray); color: var(--text-head); transition: var(--transition); }
.field input:focus, .field textarea:focus, .field select:focus { outline: 0; border-color: var(--vio); box-shadow: 0 0 0 3px rgba(139,92,246,0.14); background: var(--white); }
.field textarea { min-height: 120px; resize: vertical; }
.form-hint { font-size: 0.85rem; color: var(--text-light); margin-top: 12px; text-align: center; }
.form-alert { padding: 14px 18px; border-radius: var(--radius-sm); margin-bottom: 20px; font-size: 0.95rem; }
.form-alert.success { background: #e6f4ea; color: var(--success); border-left: 3px solid var(--success); }
.form-alert.error { background: #fde8e8; color: var(--danger); border-left: 3px solid var(--danger); }
.form-alert.info { background: #f1effc; color: var(--vio-dark); border-left: 3px solid var(--vio); }

/* ── Footer ── */
footer.site-footer { background: var(--vio-deep); color: var(--text-inv2); padding: 64px 0 26px; }
footer.site-footer h4 { color: rgba(255,255,255,.55); font-family: 'Inter', sans-serif; font-size: 0.8rem; margin-bottom: 16px; letter-spacing: 0.12em; text-transform: uppercase; font-weight: 700; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 32px; margin-bottom: 32px; }
@media (max-width: 760px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
.footer-brand p { margin-top: 12px; font-size: 0.92rem; }
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 8px; }
.footer-links a { color: var(--text-inv2); font-size: 0.92rem; }
.footer-links a:hover { color: #cdbcfc; }
.footer-copy { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 24px; text-align: center; color: #8a85ad; font-size: 0.85rem; }

/* ── Demo KPI table ── */
.kpi-table-wrap { background: var(--white); border-radius: var(--radius-lg); padding: 32px; box-shadow: var(--shadow); overflow-x: auto; border: 1px solid var(--gray-2); }
.kpi-table { width: 100%; border-collapse: collapse; }
.kpi-table th, .kpi-table td { padding: 14px 12px; text-align: left; border-bottom: 1px solid var(--gray-2); }
.kpi-table th { background: var(--vio-deep2); color: var(--white); font-weight: 600; font-size: 0.9rem; letter-spacing: 0.03em; font-family: 'Inter', sans-serif; }
.kpi-table th:first-child { border-radius: var(--radius-sm) 0 0 0; }
.kpi-table th:last-child { border-radius: 0 var(--radius-sm) 0 0; }
.kpi-table td.num { font-variant-numeric: tabular-nums; font-weight: 700; color: var(--text-head); }
.kpi-table .up { color: var(--success); font-weight: 600; }
.kpi-table .down { color: var(--danger); font-weight: 600; }
.kpi-table .neutral { color: var(--text-light); }

/* ── Mini-tool result ── */
.mini-tool-result { background: var(--white); border-radius: var(--radius-lg); padding: 32px; box-shadow: var(--shadow); margin-top: 24px; border: 1px solid var(--gray-2); }
.score-row { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 24px; margin-bottom: 24px; }
.score-card { text-align: center; padding: 26px; background: var(--gray); border-radius: var(--radius); border: 1px solid var(--gray-2); }
.score-value { font-family: 'Inter', sans-serif; font-size: 3.2rem; font-weight: 800; line-height: 1; color: var(--vio-dark); letter-spacing: -0.02em; }
.score-value.green { color: var(--success); }
.score-value.red { color: var(--danger); }
.score-label { color: var(--text-light); font-size: 0.95rem; margin-top: 10px; }

/* ── Portal layout (logged-in) ── */
.portal-layout { display: grid; grid-template-columns: 240px 1fr; min-height: 100vh; }
.portal-side { background: var(--vio-deep); color: var(--white); padding: 24px 0; }
.portal-side .brand { padding: 0 24px 24px; font-family: 'Inter', sans-serif; font-size: 1.3rem; font-weight: 800; color: var(--white); }
.portal-side .brand .accent { color: var(--vio); }
.portal-nav a { display: block; padding: 12px 24px; color: var(--text-inv2); font-weight: 500; border-left: 3px solid transparent; }
.portal-nav a:hover, .portal-nav a.active { color: #cdbcfc; background: rgba(255,255,255,0.04); border-left-color: var(--vio); }
.portal-main { padding: 32px; background: var(--gray); }
.portal-card { background: var(--white); border-radius: var(--radius); padding: 24px; box-shadow: var(--shadow-sm); margin-bottom: 24px; border: 1px solid var(--gray-2); }
.portal-impl-head { display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.portal-impl-metrics { display: grid; grid-template-columns: repeat(auto-fit, minmax(140px, 1fr)); gap: 12px; }
.portal-impl-metric { padding: 14px; border: 1px solid var(--gray-2); border-radius: var(--radius-sm); background: var(--gray); }
.portal-impl-metric span { display: block; color: var(--text-light); font-size: .78rem; font-weight: 700; text-transform: uppercase; letter-spacing: .04em; }
.portal-impl-metric strong { display: block; color: var(--text-head); font-size: 1.45rem; line-height: 1.1; margin-top: 4px; }
.portal-impl-group-head { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-bottom: 12px; }
.portal-impl-action { padding: 18px 0; border-top: 1px solid var(--gray-2); }
.portal-impl-action:first-of-type { border-top: 0; }
.portal-impl-action-top { display: flex; justify-content: space-between; gap: 12px; align-items: center; flex-wrap: wrap; margin-bottom: 8px; }
.portal-impl-meta { font-size: .82rem; margin-left: 8px; }
.portal-impl-upload { display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: 14px; align-items: center; padding: 14px; border: 1px dashed #d8ccf7; border-radius: var(--radius-sm); background: #fbfaff; margin: 12px 0; }
.portal-impl-upload a { display: inline-block; margin-right: 10px; font-size: .9rem; font-weight: 600; }
.portal-impl-upload-controls { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; justify-content: flex-end; }
.portal-impl-upload-controls input[type="file"] { max-width: 240px; font-size: .85rem; color: var(--text-light); }
.portal-impl-asset-preview { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 10px; }
.portal-impl-asset-preview img { width: 92px; height: 92px; object-fit: cover; border-radius: var(--radius-sm); border: 1px solid var(--gray-2); box-shadow: var(--shadow-sm); }
.portal-impl-actions { display: flex; gap: 10px; flex-wrap: wrap; justify-content: flex-end; }
.portal-impl-actions .btn, .portal-impl-upload-controls .btn { padding: 10px 16px; font-size: .88rem; }
.portal-impl-bulk { display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: 18px; align-items: center; border-color: #d8ccf7; background: #fbfaff; }
.portal-impl-bulk-controls { display: flex; align-items: center; justify-content: flex-end; gap: 10px; flex-wrap: wrap; }
.portal-impl-bulk-controls input[type="file"] { max-width: 300px; font-size: .88rem; color: var(--text-light); }
.portal-impl-dashboard { border-color: #dbeafe; background: #fbfdff; }
.portal-impl-dashboard-head { display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.portal-impl-dashboard-head > strong { font-size: 2rem; color: var(--text-head); line-height: 1; }
.portal-impl-progress-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 10px; }
.portal-impl-progress-grid div { border: 1px solid var(--gray-2); background: var(--white); border-radius: var(--radius-sm); padding: 12px; }
.portal-impl-progress-grid span { display: block; color: var(--text-light); font-size: .78rem; font-weight: 700; text-transform: uppercase; }
.portal-impl-progress-grid strong { display: block; margin-top: 4px; font-size: 1.25rem; color: var(--text-head); }
.portal-impl-next-actions { display: grid; gap: 8px; margin-top: 14px; }
.portal-impl-next-action { display: grid; grid-template-columns: auto minmax(0, 1fr); gap: 10px; align-items: center; }
.portal-impl-next-action p { margin: 0; color: var(--text-head); font-weight: 600; }
.portal-impl-daily { border-color: #fde68a; background: #fffdf5; }
.portal-impl-report { border-color: #e5e7eb; background: #fff; }
.portal-impl-report-head { display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.portal-impl-report-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 10px; }
.portal-impl-report-grid div { border: 1px solid var(--gray-2); border-radius: var(--radius-sm); padding: 12px; background: var(--gray); }
.portal-impl-report-grid span { display: block; color: var(--text-light); font-size: .78rem; font-weight: 700; text-transform: uppercase; }
.portal-impl-report-grid strong { display: block; margin-top: 4px; font-size: 1.25rem; color: var(--text-head); }
.portal-impl-report-sections { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 12px; margin-top: 16px; }
.portal-impl-report-sections div { border-top: 1px solid var(--gray-2); padding-top: 12px; }
.portal-impl-report-sections h4 { margin: 0 0 8px; font-size: .95rem; color: var(--text-head); }
.portal-impl-report-sections p { margin: 0 0 6px; color: var(--text-light); font-size: .9rem; }
.portal-impl-schedule { border-color: #cfe8dd; background: #fbfffd; }
.portal-impl-schedule-head { display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.portal-impl-schedule-buttons { display: flex; align-items: center; justify-content: flex-end; gap: 10px; flex-wrap: wrap; }
.portal-impl-schedule-list { display: grid; gap: 10px; margin-top: 16px; }
.portal-impl-schedule-item { display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: 10px; align-items: center; padding: 12px; border: 1px solid var(--gray-2); border-radius: var(--radius-sm); background: var(--white); }
.portal-impl-schedule-item strong, .portal-impl-schedule-item span { display: block; }
.portal-impl-schedule-item p { grid-column: 1 / -1; margin: 0; color: var(--text-head); font-weight: 600; }
.portal-impl-bot { border-color: #ddd6fe; background: #fbfaff; }
.portal-impl-bot-recent { display: grid; gap: 10px; margin-top: 14px; }
.portal-impl-bot-recent div { border: 1px solid var(--gray-2); border-radius: var(--radius-sm); padding: 12px; background: var(--white); }
.portal-impl-bot-recent strong { display: block; color: var(--text-head); font-size: .9rem; margin-bottom: 4px; }
.portal-impl-bot-recent p { margin: 0; color: var(--text-light); font-size: .9rem; }
@media (max-width: 760px) {
  .portal-layout { grid-template-columns: 1fr; }
  .portal-side { display: none; }
  .portal-main { padding: 18px; }
  .portal-impl-head, .portal-impl-upload, .portal-impl-bulk, .portal-impl-dashboard-head, .portal-impl-report-head, .portal-impl-schedule-head, .portal-impl-schedule-item { grid-template-columns: 1fr; display: grid; }
  .portal-impl-progress-grid { grid-template-columns: 1fr; }
  .portal-impl-next-action { grid-template-columns: 1fr; }
  .portal-impl-actions, .portal-impl-upload-controls, .portal-impl-bulk-controls, .portal-impl-schedule-buttons { justify-content: stretch; }
  .portal-impl-actions .btn, .portal-impl-upload-controls .btn, .portal-impl-bulk-controls .btn, .portal-impl-schedule-buttons .btn { width: 100%; justify-content: center; }
  .portal-impl-bulk-controls input[type="file"] { max-width: 100%; width: 100%; }
}

/* ── Wizard ── */
.wizard-steps { display: flex; gap: 8px; margin-bottom: 32px; }
.wizard-step { flex: 1; height: 6px; background: var(--gray-2); border-radius: 3px; }
.wizard-step.active { background: var(--vio); }
.wizard-step.done { background: var(--success); }

/* ── Utility ── */
.text-center { text-align: center; }
.mt-1 { margin-top: 8px; } .mt-2 { margin-top: 16px; } .mt-3 { margin-top: 24px; } .mt-4 { margin-top: 32px; }
.mb-1 { margin-bottom: 8px; } .mb-2 { margin-bottom: 16px; } .mb-3 { margin-bottom: 24px; } .mb-4 { margin-bottom: 32px; }
.muted { color: var(--text-light); }
.badge { display: inline-block; padding: 4px 12px; border-radius: 999px; font-size: 0.8rem; font-weight: 600; background: #efe9fc; color: var(--vio-dark); }
.badge.success { background: #e6f4ea; color: var(--success); }
.badge.warning { background: #fef3c7; color: var(--warning); }
.badge.danger { background: #fde8e8; color: var(--danger); }
.badge.info { background: #f1effc; color: var(--vio-dark); }
.lang-switch { color: var(--text-light) !important; font-size: 0.85rem; padding: 4px 12px !important; border: 1px solid var(--gray-2); border-radius: 999px; }
.lang-switch:hover { color: var(--vio-dark) !important; border-color: var(--vio); background: transparent !important; }

/* ═══ Layout HOME v2 (imaginea aleasă de Elena, 4 iunie) ═══ */

/* hero cu 2 coloane */
.h2-grid { position: relative; z-index: 2; display: grid; grid-template-columns: 1.02fr .98fr; gap: 54px; align-items: center; }
.h2-kicker { font-family: 'Inter', sans-serif; font-size: 0.75rem; font-weight: 700; letter-spacing: .16em; color: var(--vio-dark); margin-bottom: 16px; }
.h2-title { font-size: clamp(2rem, 3.6vw, 2.9rem); margin-bottom: 18px; max-width: 17ch; }
.h2-title .hl { color: var(--vio); }
.h2-sub { color: var(--text-light); font-size: 1.02rem; line-height: 1.7; max-width: 48ch; margin-bottom: 22px; }
.h2-bullets { display: flex; flex-wrap: wrap; gap: 10px 18px; margin-bottom: 24px; }
.h2-bullet { font-size: .88rem; color: var(--text); font-weight: 600; }
.h2-bullet::first-letter { color: var(--vio); }
.h2-form { display: flex; gap: 10px; max-width: 480px; margin-bottom: 14px; }
.h2-form input[type="url"] { flex: 1; padding: 13px 17px; border: 1px solid var(--gray-2); border-radius: 999px; font-size: .95rem; font-family: inherit; background: var(--white); color: var(--text-head); outline: 0; transition: var(--transition); }
.h2-form input[type="url"]:focus { border-color: var(--vio); box-shadow: 0 0 0 3px rgba(139,92,246,.14); }
.h2-form .btn { white-space: nowrap; padding: 13px 22px; font-size: .9rem; }
.h2-trust { color: var(--text-muted); font-size: .82rem; }

/* dashboard mock (DEMO) */
.dash { position: relative; display: grid; grid-template-columns: 130px 1fr; background: var(--white); border: 1px solid var(--gray-2); border-radius: 16px; box-shadow: var(--shadow-lg); overflow: hidden; font-size: .78rem; }
.dash-demo { position: absolute; top: 10px; right: 10px; z-index: 2; background: #f1effc; color: var(--vio-dark); border: 1px solid #e0d8f8; font-family: 'Inter', sans-serif; font-size: .62rem; font-weight: 700; letter-spacing: .1em; padding: 3px 10px; border-radius: 999px; }
.dash-side { background: var(--gray); border-right: 1px solid var(--gray-2); padding: 14px 0; }
.dash-logo { font-family: 'Inter', sans-serif; font-weight: 800; font-size: .8rem; color: var(--text-head); padding: 0 14px 12px; }
.dash-logo span { color: var(--vio); }
.dash-item { padding: 8px 14px; color: var(--text-light); }
.dash-item.active { background: #ece7fb; color: var(--vio-dark); font-weight: 600; border-radius: 8px; margin: 0 6px; padding: 8px; }
.dash-main { padding: 16px; }
.dash-h { font-family: 'Inter', sans-serif; font-weight: 700; color: var(--text-head); font-size: .85rem; margin-bottom: 12px; }
.dash-kpis { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; margin-bottom: 12px; }
.dash-kpi { background: var(--white); border: 1px solid var(--gray-2); border-radius: 10px; padding: 9px 10px; display: flex; flex-direction: column; gap: 2px; }
.dash-kpi .l { color: var(--text-light); font-size: .68rem; }
.dash-kpi .v { font-family: 'Inter', sans-serif; font-weight: 800; font-size: 1.05rem; color: var(--text-head); }
.dash-kpi .v small { font-size: .65rem; color: var(--text-muted); font-weight: 400; }
.dash-kpi .d, .dash-ch-h .d { color: var(--success); font-size: .66rem; font-weight: 700; }
.dash-chart { border: 1px solid var(--gray-2); border-radius: 10px; padding: 10px; margin-bottom: 10px; }
.dash-ch-h { display: flex; justify-content: space-between; color: var(--text-head); font-weight: 600; font-size: .74rem; margin-bottom: 6px; }
.dash-chart svg { width: 100%; height: 72px; display: block; }
.dash-kw { border: 1px solid var(--gray-2); border-radius: 10px; padding: 10px; }
.dash-kw-row { display: flex; justify-content: space-between; padding: 5px 0; border-bottom: 1px dashed var(--gray-2); color: var(--text); }
.dash-kw-row:last-child { border-bottom: 0; }
.dash-kw-row i { color: var(--success); font-style: normal; font-weight: 700; }

/* trust strip */
.trust-strip { padding: 44px 0; border-bottom: 1px solid var(--gray-2); }
.trust-h { text-align: center; font-family: 'Inter', sans-serif; font-weight: 700; font-size: .85rem; color: var(--text-light); }

/* 6 probleme */
.probs6 { display: grid; grid-template-columns: repeat(auto-fit, minmax(170px, 1fr)); gap: 26px 18px; max-width: 1100px; margin: 0 auto; text-align: center; }
.prob6-ic { width: 52px; height: 52px; margin: 0 auto 14px; display: flex; align-items: center; justify-content: center; font-size: 1.35rem; background: var(--white); border: 1.5px solid #d8ccf7; border-radius: 50%; }
.prob6 h3 { font-size: .92rem; margin-bottom: 7px; }
.prob6 p { color: var(--text-light); font-size: .82rem; line-height: 1.55; }

/* 5 pași */
.steps5 { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 22px; max-width: 1100px; margin: 0 auto; text-align: center; position: relative; }
.step5 { position: relative; padding: 8px; }
.step5-num { position: absolute; top: 0; left: calc(50% - 44px); width: 22px; height: 22px; background: var(--vio); color: #fff; border-radius: 50%; font-family: 'Inter', sans-serif; font-size: .7rem; font-weight: 700; display: flex; align-items: center; justify-content: center; }
.step5-ic { width: 64px; height: 64px; margin: 0 auto 14px; display: flex; align-items: center; justify-content: center; font-size: 1.5rem; background: var(--white); border: 1.5px solid var(--gray-2); border-radius: 50%; box-shadow: var(--shadow-sm); }
.step5 h3 { font-size: .92rem; margin-bottom: 7px; }
.step5 p { color: var(--text-light); font-size: .82rem; line-height: 1.55; }

/* banda ATENA */
.atena { background: linear-gradient(120deg, #15102e 0%, #241d52 100%); color: var(--text-inv); padding: 70px 0; }
.atena-grid { display: grid; grid-template-columns: auto 1fr auto; gap: 44px; align-items: center; }
.atena-wand svg { width: 150px; filter: drop-shadow(0 0 34px rgba(139,92,246,.55)); }
.atena-tag { font-family: 'Inter', sans-serif; font-size: .75rem; font-weight: 700; letter-spacing: .14em; color: #cdbcfc; margin-bottom: 12px; display: flex; align-items: center; gap: 10px; }
.atena-badge { background: rgba(139,92,246,.25); border: 1px solid rgba(139,92,246,.5); color: #cdbcfc; font-size: .62rem; padding: 3px 10px; border-radius: 999px; letter-spacing: .08em; }
.atena h2 { color: #fff; font-size: clamp(1.4rem, 2.4vw, 1.9rem); margin-bottom: 12px; }
.atena-copy > p { color: var(--text-inv2); font-size: .95rem; line-height: 1.7; max-width: 56ch; margin-bottom: 16px; }
.atena-points { display: flex; flex-wrap: wrap; gap: 8px 20px; }
.atena-points span { font-size: .82rem; color: #cdbcfc; font-weight: 600; }
.atena-card { background: rgba(255,255,255,.06); border: 1px solid rgba(139,92,246,.4); border-radius: 16px; padding: 22px; max-width: 280px; backdrop-filter: blur(8px); }
.atena-card-h { font-family: 'Inter', sans-serif; font-weight: 700; color: #fff; font-size: .9rem; margin-bottom: 12px; display: flex; align-items: center; gap: 8px; }
.atena-card-t { color: #cdbcfc; font-weight: 700; font-size: .8rem; margin-bottom: 6px; }
.atena-card p { color: var(--text-inv2); font-size: .85rem; line-height: 1.6; }

/* clienți reali */
.clients2 { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 24px; max-width: 880px; margin: 0 auto; }
.client2 { background: var(--white); border: 1px solid var(--gray-2); border-radius: 16px; padding: 28px; }
.client2 h3 { font-size: 1.05rem; margin-bottom: 10px; }
.client2 p { color: var(--text-light); font-size: .92rem; line-height: 1.65; }
.clients2-note { text-align: center; color: var(--text-muted); font-size: .85rem; margin-top: 22px; }

/* preț cu coloane laterale */
.price2 { display: grid; grid-template-columns: 1fr auto 1fr; gap: 36px; align-items: center; max-width: 1060px; margin: 0 auto; }
.price2-side { display: flex; flex-direction: column; gap: 14px; font-size: .92rem; color: var(--text); font-weight: 600; }
@media (max-width: 980px) { .price2 { grid-template-columns: 1fr; } .price2-side { align-items: center; text-align: center; } }

/* CTA final — banda întunecată cu formular */
.ctaband { background: linear-gradient(120deg, #15102e 0%, #241d52 100%); border-radius: 20px; padding: 38px 42px; display: grid; grid-template-columns: auto 1fr auto; gap: 28px; align-items: center; }
.ctaband-ic { width: 56px; height: 56px; background: rgba(139,92,246,.25); border: 1px solid rgba(139,92,246,.5); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.4rem; }
.ctaband-copy h2 { color: #fff; font-size: clamp(1.2rem, 2vw, 1.5rem); margin-bottom: 5px; }
.ctaband-copy p { color: var(--text-inv2); font-size: .9rem; }
.ctaband-form { display: flex; gap: 10px; min-width: 380px; }
.ctaband-form input[type="url"] { flex: 1; padding: 13px 17px; border: 1px solid rgba(255,255,255,.2); border-radius: 999px; font-size: .92rem; font-family: inherit; background: rgba(255,255,255,.08); color: #fff; outline: 0; }
.ctaband-form input[type="url"]::placeholder { color: rgba(255,255,255,.5); }
.ctaband-form input[type="url"]:focus { border-color: var(--vio); }
.ctaband-form .btn { white-space: nowrap; padding: 13px 22px; font-size: .88rem; }

@media (max-width: 980px) {
  .h2-grid { grid-template-columns: 1fr; gap: 44px; }
  .dash { max-width: 520px; margin: 0 auto; }
  .atena-grid { grid-template-columns: 1fr; text-align: center; }
  .atena-wand { margin: 0 auto; }
  .atena-points { justify-content: center; }
  .atena-card { margin: 0 auto; max-width: 360px; }
  .ctaband { grid-template-columns: 1fr; text-align: center; }
  .ctaband-ic { margin: 0 auto; }
  .ctaband-form { min-width: 0; flex-direction: column; }
}

/* ═══ HOME 1:1 cu referința aprobată (hv-*) — design-first, 4 iunie ═══ */
.hv-hero { background: #f6f4fc; padding: 22px 0 22px; position: relative; overflow: hidden; }
.hv-grid { display: grid; grid-template-columns: .82fr 1.18fr; gap: 38px; align-items: center; position: relative; z-index: 2; }
.hv-kicker { font-size: .68rem; font-weight: 700; letter-spacing: .12em; color: #7c5ce0; margin-bottom: 14px; }
.hv-title { font-size: clamp(1.9rem, 3.2vw, 2.6rem); font-weight: 780; line-height: 1.12; letter-spacing: -0.03em; color: #221c3a; margin-bottom: 13px; max-width: 15.5ch; }
.hv-title .hl { color: #7c4ff0; }
.hv-sub { color: #6b6685; font-size: .92rem; line-height: 1.65; max-width: 47ch; margin-bottom: 14px; }
.hv-bullets { display: flex; flex-wrap: wrap; gap: 8px 16px; margin-bottom: 16px; }
.hv-bullet { display: inline-flex; align-items: center; gap: 6px; font-size: .76rem; font-weight: 600; color: #3d3759; }
.hv-bullet svg { width: 15px; height: 15px; flex-shrink: 0; }
.hv-form { display: flex; gap: 9px; max-width: 420px; margin-bottom: 11px; }
.hv-form input[type="url"] { flex: 1; padding: 12px 15px; border: 1px solid #e4dff3; border-radius: 9px; font-size: .82rem; font-family: inherit; background: #fff; color: #221c3a; outline: 0; transition: var(--transition); }
.hv-form input[type="url"]:focus { border-color: #7c4ff0; box-shadow: 0 0 0 3px rgba(124,79,240,.12); }
.hv-form .btn { white-space: nowrap; padding: 12px 18px; font-size: .8rem; border-radius: 9px; background: #6d3ff0; box-shadow: none; }
.hv-trustline { color: #8d88a8; font-size: .72rem; }

/* zâna translucidă din fundal + praf (ca în referință) */
.hv-hero > .container { position: relative; }
.hv-dash-wrap { position: relative; }
.hv-fairy { position: absolute; left: -128px; top: 6px; width: 118px; z-index: 3; pointer-events: none; }
.hv-fairy img { width: 100%; display: block; opacity: .92; }
.hv-fairy svg { width: 100%; }
.hv-sparkles { position: absolute; pointer-events: none; opacity: .38; }
.hv-sparkles.s-hero { right: -10px; bottom: -30px; width: 220px; }
.hv-sparkles.s-page { right: 0; bottom: 40px; width: 260px; opacity: .65; }

/* dashboard demo */
.hv-dash { position: relative; display: grid; grid-template-columns: 122px 1fr; background: #fff; border: 1px solid #e9e5f6; border-radius: 14px; box-shadow: 0 26px 68px rgba(64,48,150,.15); overflow: hidden; font-size: .72rem; z-index: 2; }
.hv-dash-side { background: #fbfaff; border-right: 1px solid #f0edf9; padding: 12px 0; }
.hv-dash-logo { font-weight: 800; font-size: .74rem; color: #221c3a; padding: 0 12px 10px; }
.hv-dash-logo span { color: #7c4ff0; }
.hv-dash-item { display: flex; align-items: center; gap: 8px; padding: 7px 12px; color: #6f6990; }
.hv-dash-item svg { width: 15px; height: 15px; fill: none; stroke: currentColor; stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; flex-shrink: 0; }
.hv-dash-item.active { background: #ebe4fc; color: #6d3ff0; font-weight: 600; border-radius: 7px; margin: 0 6px; padding: 6.5px; }
.hv-dash-main { padding: 16px 16px 18px; }
.hv-dash-h { font-weight: 700; color: #221c3a; font-size: .78rem; margin-bottom: 9px; }
.hv-kpis { display: grid; grid-template-columns: repeat(3, 1fr); gap: 7px; margin-bottom: 9px; }
.hv-kpi { background: #fff; border: 1px solid #f0edf9; border-radius: 10px; padding: 10px 11px; display: flex; flex-direction: column; gap: 2px; box-shadow: 0 5px 18px rgba(64,48,150,.06); }
.hv-kpi .l { color: #9b96b3; font-size: .58rem; }
.hv-kpi .v { font-weight: 800; font-size: .98rem; color: #221c3a; }
.hv-kpi .v small { font-size: .56rem; color: #beb9d4; font-weight: 500; }
.hv-kpi .d { color: #27a567; font-size: .52rem; font-weight: 600; }
.hv-dash-row { display: grid; grid-template-columns: 1.25fr 1fr; gap: 7px; }
.hv-chart, .hv-kws { border: 1px solid #f0edf9; border-radius: 9px; padding: 9px; }
.hv-card-t { font-weight: 700; color: #221c3a; font-size: .64rem; margin-bottom: 6px; }
.hv-chart-wrap { position: relative; }
.hv-pill { position: absolute; top: 0; right: 2px; background: #e7f7ef; color: #27a567; font-size: .54rem; font-weight: 700; padding: 2px 6px; border-radius: 999px; }
.hv-chart svg { width: 100%; height: 64px; display: block; }
.hv-months { display: flex; justify-content: space-between; color: #beb9d4; font-size: .52rem; margin-top: 4px; }
.hv-kw { display: flex; justify-content: space-between; gap: 6px; padding: 4.5px 0; border-bottom: 1px solid #f5f3fb; color: #5a5575; }
.hv-kw:last-child { border-bottom: 0; }
.hv-kw span:last-child { color: #9b96b3; white-space: nowrap; }
.hv-kw i { color: #27a567; font-style: normal; font-weight: 700; }

/* trust pe același fundal cu hero */
section.hv-trust { padding: 0 0 24px; background: #f6f4fc; }
.hv-trust-h { text-align: center; font-weight: 700; font-size: .76rem; color: #6b6685; margin-bottom: 14px; }
.hv-logos { display: flex; justify-content: center; align-items: center; gap: 52px; flex-wrap: wrap; }
.hv-logo { display: inline-flex; align-items: center; gap: 7px; font-weight: 700; font-size: .9rem; color: #8f89aa; opacity: .9; }
.hv-logo svg { width: 17px; height: 17px; fill: none; stroke: currentColor; stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }

/* titluri de secțiune */
.hv-h2 { text-align: center; font-size: clamp(1.2rem, 2vw, 1.5rem); font-weight: 800; color: #221c3a; letter-spacing: -0.015em; margin-bottom: 38px; }

/* probleme — banda lavandă */
.hv-probs { background: #efeaf9; padding: 48px 0 54px; }
.hv-probs-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px 20px; }
.hv-prob { text-align: center; padding: 0 4px; }
.hv-prob-ic { height: 44px; margin: 0 auto 12px; display: flex; align-items: center; justify-content: center; color: #7c4ff0; }
.hv-prob-ic svg { width: 33px; height: 33px; fill: none; stroke: currentColor; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }
.hv-prob h3 { font-size: .86rem; font-weight: 700; color: #221c3a; margin-bottom: 5px; }
.hv-prob p { color: #8d88a8; font-size: .74rem; line-height: 1.55; }
@media (max-width: 720px) { .hv-probs-grid { grid-template-columns: repeat(3, 1fr); gap: 26px 16px; } }
@media (max-width: 640px) { .hv-probs-grid { grid-template-columns: repeat(2, 1fr); } }

/* cum funcționează */
.hv-how { background: #fbfaff; padding: 52px 0 58px; }
.hv-steps { display: grid; grid-template-columns: repeat(5, 1fr); gap: 12px; }
.hv-step { text-align: center; position: relative; padding-top: 5px; }
.hv-step:not(:last-child)::after { content: ''; position: absolute; top: 36px; left: calc(50% + 40px); width: calc(100% - 80px); border-top: 2px dashed #ddd6f2; }
.hv-step-num { position: absolute; top: 0; left: calc(50% - 40px); width: 20px; height: 20px; background: #6d3ff0; color: #fff; border-radius: 50%; font-size: .62rem; font-weight: 700; display: flex; align-items: center; justify-content: center; z-index: 2; }
.hv-step-ic { width: 62px; height: 62px; margin: 0 auto 13px; display: flex; align-items: center; justify-content: center; background: #fff; border: 1px solid #f0edf9; border-radius: 50%; box-shadow: 0 4px 12px rgba(64,48,150,.08); color: #7c4ff0; position: relative; z-index: 1; }
.hv-step-ic svg { width: 26px; height: 26px; fill: none; stroke: currentColor; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }
.hv-step h3 { font-size: .76rem; font-weight: 700; color: #221c3a; margin-bottom: 5px; }
.hv-step p { color: #8d88a8; font-size: .68rem; line-height: 1.55; max-width: 20ch; margin: 0 auto; }
@media (max-width: 720px) { .hv-steps { grid-template-columns: repeat(2, 1fr); gap: 26px; } .hv-step::after { display: none !important; } }

/* ATENA */
.hv-atena { background: linear-gradient(100deg, #0d0a26 0%, #160e3a 45%, #251456 100%); color: #fff; padding: 46px 0; position: relative; overflow: hidden; }
.hv-atena::after { content: ''; position: absolute; right: -60px; top: -70px; width: 320px; height: 320px; border-radius: 50%; background: radial-gradient(circle, rgba(124,79,240,.4), transparent 70%); filter: blur(50px); pointer-events: none; }
.hv-atena .container { position: relative; z-index: 2; }
.hv-atena-grid { display: grid; grid-template-columns: auto 1fr auto; gap: 44px; align-items: center; }
.hv-wand svg { width: 172px; filter: drop-shadow(0 0 36px rgba(139,92,246,.65)); display: block; }
.hv-atena-tag { font-size: .62rem; font-weight: 700; letter-spacing: .16em; color: #b9a8f5; margin-bottom: 9px; }
.hv-atena-copy h2 { color: #fff; font-size: clamp(1.15rem, 1.8vw, 1.4rem); font-weight: 800; letter-spacing: -0.015em; margin-bottom: 9px; }
.hv-atena-copy > p { color: #b9b4d6; font-size: .78rem; line-height: 1.6; max-width: 56ch; margin-bottom: 14px; }
.hv-atena-points { display: flex; flex-wrap: wrap; gap: 7px 16px; }
.hv-atena-points span { display: inline-flex; align-items: center; gap: 6px; font-size: .68rem; color: #d6cdf7; font-weight: 600; }
.hv-atena-points svg { width: 13px; height: 13px; flex-shrink: 0; }
.hv-atena-card { background: rgba(255,255,255,.07); border: 1px solid rgba(139,92,246,.4); border-radius: 13px; padding: 16px 18px; max-width: 256px; backdrop-filter: blur(8px); }
.hv-atena-card-h { display: flex; align-items: center; gap: 7px; font-weight: 700; color: #fff; font-size: .76rem; margin-bottom: 9px; }
.hv-atena-card-h .ic { width: 20px; height: 20px; background: #6d3ff0; border-radius: 6px; display: inline-flex; align-items: center; justify-content: center; font-size: .62rem; font-weight: 800; flex-shrink: 0; }
.hv-atena-badge { margin-left: auto; background: rgba(60,200,130,.2); border: 1px solid rgba(80,220,150,.5); color: #6fe0a8; font-size: .5rem; font-weight: 700; letter-spacing: .06em; padding: 2px 8px; border-radius: 999px; }
.hv-atena-card-t { color: #fff; font-weight: 700; font-size: .72rem; margin-bottom: 4px; }
.hv-atena-card p { color: #b9b4d6; font-size: .68rem; line-height: 1.6; margin-bottom: 9px; }
.hv-atena-link { color: #fff; font-size: .68rem; font-weight: 600; }
@media (max-width: 720px) { .hv-atena-grid { grid-template-columns: 1fr; text-align: center; } .hv-wand { margin: 0 auto; } .hv-atena-points { justify-content: center; } .hv-atena-card { margin: 0 auto; max-width: 340px; } .hv-atena-copy > p { margin-left: auto; margin-right: auto; } }
@media (max-width: 1020px) and (min-width: 721px) { .hv-wand svg { width: 120px; } .hv-atena-grid { gap: 26px; } .hv-atena-card { max-width: 220px; } }

/* rezultate */
.hv-results { background: #fff; padding: 58px 0; }
.hv-res-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 20px; max-width: 880px; margin: 0 auto; }
.hv-res { background: #fff; border: 1px solid #e9e5f6; border-radius: 12px; padding: 22px 26px; }
.hv-res-h { display: flex; align-items: center; gap: 7px; font-size: .86rem; color: #221c3a; margin-bottom: 16px; font-weight: 700; }
.hv-res-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-bottom: 13px; }
.hv-res-stats .n { display: block; font-size: 1.35rem; font-weight: 800; color: #7c4ff0; letter-spacing: -0.02em; }
.hv-res-stats .n.dark { color: #221c3a; }
.hv-res-stats .l { display: block; color: #8d88a8; font-size: .64rem; margin-top: 1px; }
.hv-res-q { color: #8d88a8; font-size: .7rem; font-style: italic; }

/* planuri */
.hv-price { background: #f6f4fc; padding: 54px 0 64px; position: relative; overflow: hidden; }
.hv-price-grid { display: grid; grid-template-columns: 1fr auto 1fr; gap: 34px; align-items: center; max-width: 1000px; margin: 0 auto; position: relative; z-index: 2; }
.hv-price-side { display: flex; flex-direction: column; gap: 13px; }
.hv-price-side span { display: inline-flex; align-items: center; gap: 8px; font-size: .78rem; font-weight: 600; color: #6d3ff0; }
.hv-price-side svg { width: 14px; height: 14px; flex-shrink: 0; }
.hv-plan { background: #fff; border: 1px solid #e9e5f6; border-radius: 14px; padding: 26px 30px; min-width: 310px; box-shadow: 0 16px 44px rgba(64,48,150,.12); }
.hv-plan-name { font-weight: 700; color: #221c3a; font-size: .8rem; margin-bottom: 7px; }
.hv-plan-price { display: flex; align-items: baseline; gap: 7px; margin-bottom: 13px; }
.hv-plan-price .a { font-size: 2.2rem; font-weight: 800; color: #6d3ff0; letter-spacing: -0.03em; }
.hv-plan-price .p { color: #8d88a8; font-size: .8rem; }
.hv-plan-price .old { color: #beb9d4; font-size: .92rem; text-decoration: line-through; font-weight: 600; }
.hv-plan-list { list-style: none; margin-bottom: 16px; }
.hv-plan-list li { display: flex; align-items: flex-start; gap: 7px; padding: 4px 0; font-size: .74rem; color: #5a5575; }
.hv-plan-list svg { width: 13px; height: 13px; flex-shrink: 0; margin-top: 2px; }
.hv-plan .btn { border-radius: 9px; font-size: .8rem; background: #6d3ff0; box-shadow: none; }
.hv-value { background: #efebfa; border: 1px solid #e4ddf6; border-radius: 13px; padding: 22px 24px; min-width: 240px; }
.hv-value-t { font-weight: 700; color: #221c3a; font-size: .78rem; margin-bottom: 12px; }
.hv-value-row { display: flex; justify-content: space-between; gap: 14px; padding: 6px 0; font-size: .74rem; color: #5a5575; }
.hv-value-row span:last-child { color: #221c3a; font-weight: 600; }
.hv-value-total { display: flex; justify-content: space-between; gap: 14px; padding: 9px 0 4px; margin-top: 4px; border-top: 1px solid #ddd5f1; font-size: .76rem; font-weight: 700; color: #221c3a; }
.hv-value-pay { display: flex; justify-content: space-between; align-items: baseline; gap: 14px; padding-top: 12px; font-size: .76rem; font-weight: 600; color: #5a5575; }
.hv-value-pay .tp { color: #6d3ff0; font-size: 1.2rem; font-weight: 800; }
@media (max-width: 720px) { .hv-price-grid { grid-template-columns: 1fr; justify-items: center; } .hv-price-side { flex-direction: row; flex-wrap: wrap; justify-content: center; } }
@media (max-width: 1020px) and (min-width: 721px) { .hv-plan { min-width: 270px; padding: 22px 24px; } .hv-value { min-width: 200px; padding: 18px; } .hv-price-grid { gap: 20px; } }

/* FAQ + CTA */
.hv-faq { background: #f0ecf9; padding: 50px 0 60px; position: relative; overflow: hidden; }
.hv-faq-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 11px; margin-bottom: 30px; position: relative; z-index: 2; }
.hv-faq-item { background: #fff; border: 1px solid #e9e5f6; border-radius: 10px; padding: 0 15px; align-self: start; }
.hv-faq-item summary { cursor: pointer; list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 10px; font-size: .7rem; font-weight: 600; color: #3d3759; padding: 13px 0; }
.hv-faq-item summary::-webkit-details-marker { display: none; }
.hv-faq-item summary span { color: #7c4ff0; font-size: 1rem; font-weight: 400; transition: transform .25s; flex-shrink: 0; }
.hv-faq-item[open] summary span { transform: rotate(45deg); }
.hv-faq-item p { color: #8d88a8; font-size: .7rem; line-height: 1.6; padding-bottom: 13px; }
@media (max-width: 720px) { .hv-faq-row { grid-template-columns: 1fr 1fr; } }
@media (max-width: 640px) { .hv-faq-row { grid-template-columns: 1fr; } }
.hv-ctaband { background: linear-gradient(105deg, #181030 0%, #251752 100%); border-radius: 14px; padding: 22px 26px; display: grid; grid-template-columns: auto 1fr auto; gap: 22px; align-items: center; position: relative; z-index: 2; }
.hv-ctaband-ic { width: 46px; height: 46px; background: rgba(139,92,246,.22); border: 1px solid rgba(139,92,246,.5); border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.hv-ctaband-ic svg { width: 24px; height: 24px; }
.hv-ctaband-copy h2 { color: #fff; font-size: .95rem; font-weight: 800; letter-spacing: -0.01em; margin-bottom: 2px; }
.hv-ctaband-copy p { color: #b9b4d6; font-size: .7rem; }
.hv-ctaband-form { display: flex; gap: 8px; min-width: 380px; }
.hv-ctaband-form input[type="url"] { flex: 1; padding: 11px 15px; border: 1px solid rgba(255,255,255,.16); border-radius: 9px; font-size: .76rem; font-family: inherit; background: rgba(255,255,255,.08); color: #fff; outline: 0; }
.hv-ctaband-form input[type="url"]::placeholder { color: rgba(255,255,255,.42); }
.hv-ctaband-form input[type="url"]:focus { border-color: #8b5cf6; }
.hv-ctaband-form .btn { white-space: nowrap; padding: 11px 16px; font-size: .74rem; border-radius: 9px; background: #6d3ff0; box-shadow: none; }
@media (max-width: 720px) { .hv-ctaband { grid-template-columns: 1fr; text-align: center; } .hv-ctaband-ic { margin: 0 auto; } .hv-ctaband-form { min-width: 0; flex-direction: column; } }
@media (max-width: 1020px) and (min-width: 721px) { .hv-ctaband-form { min-width: 280px; } }
@media (max-width: 720px) {
  .hv-grid { grid-template-columns: 1fr; }
  .hv-dash { max-width: 560px; margin: 0 auto; transform: none; }
  /* zâna pe mobil: mică, cocoțată pe colțul din dreapta-sus al tabelului */
  .hv-dash-wrap { max-width: 560px; margin: 0 auto; width: 100%; }
  .hv-fairy { display: block; width: 80px !important; left: auto !important; right: 4px !important; top: -44px !important; }
}
@media (max-width: 1020px) and (min-width: 721px) { .hv-title { font-size: clamp(1.5rem, 3vw, 2rem); } .hv-grid { gap: 24px; } .hv-dash { transform: none; font-size: .62rem; grid-template-columns: 96px 1fr; } .hv-kpi .v { font-size: .82rem; } .hv-fairy { width: 92px; left: -100px; } .hv-bullets { gap: 6px 10px; } .hv-bullet { font-size: .7rem; } }

/* Ajustări ChatGPT: hero compact, dashboard mărit, zână discretă, logo-uri mai vizibile. */


/* ═══ Primul ecran COMPACT: hero + logo-uri + chenarele cu iconițe, toate vizibile ═══ */
.hv-first { display: block; }
.hv-hero { padding: 16px 0 14px !important; }
.hv-title { font-size: clamp(1.6rem, 2.7vw, 2.15rem) !important; margin-bottom: 10px !important; }
.hv-sub { font-size: .85rem !important; margin-bottom: 11px !important; }
.hv-bullets { margin-bottom: 12px !important; }
.hv-form { margin-bottom: 8px !important; }
.hv-dash { font-size: .66rem !important; }
.hv-dash-main { padding: 11px 11px 12px !important; }
.hv-chart svg { height: 48px !important; }
.hv-dash-item { padding: 5px 10px !important; }
.hv-kpi { padding: 7px 8px !important; }
section.hv-trust { padding-bottom: 12px !important; }
.hv-trust-h { margin-bottom: 10px !important; font-size: .7rem !important; }
.hv-logo { font-size: .78rem !important; }
.hv-logos { gap: 38px !important; }
.hv-probs { padding: 20px 0 22px !important; }
.hv-probs .hv-h2 { margin-bottom: 16px !important; font-size: 1.02rem !important; }
.hv-prob-ic { height: 30px !important; margin-bottom: 6px !important; }
.hv-prob-ic svg { width: 24px !important; height: 24px !important; }
@media (min-width: 721px) { .hv-fairy { width: 118px !important; left: -128px !important; top: 6px !important; } }
/* siguranță pe ferestre foarte scunde */
@media (max-height: 700px) { .hv-hero .container, section.hv-trust .container, .hv-probs .container { zoom: 0.85; } }
@media (max-height: 600px) { .hv-hero .container, section.hv-trust .container, .hv-probs .container { zoom: 0.72; } }


/* al doilea rând de iconițe (Cum funcționează) — compact, imediat sub primul */
.hv-how { padding: 20px 0 34px !important; }
.hv-how .hv-h2 { margin-bottom: 18px !important; font-size: 1.02rem !important; }
.hv-step-ic { width: 50px !important; height: 50px !important; margin-bottom: 9px !important; }
.hv-step-ic svg { width: 22px !important; height: 22px !important; }
.hv-step:not(:last-child)::after { top: 30px !important; }
.hv-step-num { width: 17px !important; height: 17px !important; font-size: .56rem !important; left: calc(50% - 34px) !important; }
.hv-step h3 { font-size: .72rem !important; }
.hv-step p { font-size: .64rem !important; }
.hv-prob h3 { font-size: .72rem !important; }
.hv-prob p { font-size: .64rem !important; }


/* ── Pagina Prețuri: conformare accesibilitate + chenar Lighthouse ── */
.a11y-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 24px; max-width: 1050px; margin: 0 auto; align-items: start; }
@media (max-width: 860px) { .a11y-grid { grid-template-columns: 1fr; } }
.lh-box { background: #fbfaff; }
.lh-scores { display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; }
.lh-score { text-align: center; }
.lh-ring { width: 56px; height: 56px; margin: 0 auto 6px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: .95rem; }
.lh-good { border: 4px solid #21a55e; color: #1a7a47; background: #eafaf1; }
.lh-mid { border: 4px solid #d69e2e; color: #9c7416; background: #fdf6e7; }
.lh-label { font-size: .64rem; color: var(--text-light); line-height: 1.3; }
@media (max-width: 480px) { .lh-scores { grid-template-columns: repeat(2, 1fr); gap: 14px 8px; } }

/* ── Pagina Demo: banner ── */
.demo-banner { display: flex; gap: 12px; align-items: center; max-width: 860px; margin: 0 auto 30px; background: #f3effd; border: 1px solid #ded2f8; border-radius: var(--radius); padding: 12px 18px; font-size: .88rem; color: var(--text); }


/* ── Pagina Servicii ── */
.svc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; max-width: 1120px; margin: 0 auto; }
@media (max-width: 1000px) { .svc-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .svc-grid { grid-template-columns: 1fr; } }
.svc-card { display: flex; flex-direction: column; }
.svc-top { display: flex; align-items: flex-start; justify-content: space-between; margin-bottom: 12px; }
.svc-ic { width: 46px; height: 46px; border-radius: 12px; background: #f3effd; display: flex; align-items: center; justify-content: center; color: var(--vio-dark); }
.svc-ic svg { width: 24px; height: 24px; fill: none; stroke: currentColor; stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }
.svc-badge { font-size: .62rem; letter-spacing: .08em; }
.svc-card h3 { font-size: 1.05rem; margin-bottom: 6px; }
.svc-price { margin-bottom: 10px; }
.svc-price .p { font-size: 1.45rem; font-weight: 800; color: var(--text-head); }
.svc-price .u { font-size: .8rem; color: var(--text-light); }
.svc-desc { font-size: .88rem; color: var(--text-light); margin-bottom: 12px; }
.svc-feats { list-style: none; padding: 0; margin: 0 0 16px; flex: 1; }
.svc-feats li { padding: 3px 0; font-size: .84rem; color: var(--text); }
.svc-soon { background: #fbfaff; border: 1px dashed #cfc2f2; }


/* logo-urile partenerilor — clickabile */
a.hv-logo { cursor: pointer; }
a.hv-logo:hover { color: var(--vio-dark); transform: translateY(-1px); }


/* ── Pagina Cum funcționează ── */
.how-chapters { display: grid; gap: 26px; max-width: 880px; margin: 0 auto; }
.how-head { display: flex; align-items: center; gap: 16px; margin-bottom: 20px; }
.how-title { font-size: 1.25rem; margin-bottom: 4px; }
.how-steps { list-style: none; padding: 0; margin: 0; }
.how-step { display: flex; gap: 16px; padding: 13px 0; border-top: 1px solid var(--gray-2); }
.how-num { flex: 0 0 auto; width: 30px; height: 30px; border-radius: 50%; background: var(--vio); color: #fff; font-weight: 700; font-size: .85rem; display: flex; align-items: center; justify-content: center; margin-top: 2px; }
.how-step h3 { font-size: .98rem; margin-bottom: 3px; }
.how-step p { font-size: .88rem; color: var(--text-light); margin: 0; }
.how-note { max-width: 880px; margin: 26px auto 0; font-size: .82rem; color: var(--text-light); background: #fbfaff; border: 1px solid var(--gray-2); border-radius: var(--radius); padding: 14px 18px; }


/* ── /onboarding/google — Google Onboarding Center ── */
.og-hero { background: linear-gradient(180deg, #faf9ff 0%, #f3f0fc 100%); border-bottom: 1px solid var(--gray-2); padding: 56px 0 50px; }
.og-hero-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 40px; align-items: center; }
.og-title { font-size: clamp(1.8rem, 3.6vw, 2.6rem); font-weight: 800; color: var(--text-head); margin-bottom: 12px; }
.og-title .hl { color: var(--vio); }
.og-sub { color: var(--text-light); max-width: 50ch; margin-bottom: 16px; }
.og-checks { display: flex; gap: 14px; flex-wrap: wrap; font-size: .88rem; font-weight: 600; color: #1a7a47; margin-bottom: 14px; }
.og-badges { display: flex; gap: 10px; margin-bottom: 20px; }
.og-ctas { display: flex; gap: 12px; flex-wrap: wrap; }
.og-hero-mock { position: relative; }
.og-mock-card { background: #fff; border: 1px solid #e9e5f6; border-radius: 16px; box-shadow: 0 26px 68px rgba(64,48,150,.15); padding: 18px; }
.og-mock-h { font-weight: 800; color: var(--text-head); font-size: .9rem; margin-bottom: 12px; }
.og-mock-row { display: flex; gap: 10px; margin-bottom: 10px; }
.og-w { flex: 1; background: #fbfaff; border: 1px solid var(--gray-2); border-radius: 12px; padding: 12px; font-size: .74rem; color: var(--text-light); }
.og-w b { color: var(--vio-dark); font-size: .95rem; }
.og-float { position: absolute; background: #fff; border: 1px solid var(--gray-2); border-radius: 999px; padding: 6px 14px; font-size: .72rem; font-weight: 700; color: var(--vio-dark); box-shadow: var(--shadow); }
.og-float.f1 { top: -14px; left: -10px; } .og-float.f2 { bottom: 18px; left: -26px; } .og-float.f3 { top: 38%; right: -16px; }
.og-benefits { padding: 52px 0 40px; }
.og-bgrid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 14px; }
.og-b { border: 1.5px solid var(--gray-2); border-radius: 14px; padding: 16px 14px; }
.og-b b { display: block; color: var(--text-head); font-size: .92rem; margin-bottom: 5px; }
.og-b p { font-size: .8rem; color: var(--text-light); margin: 0; }
@media (max-width: 1000px) { .og-bgrid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .og-bgrid { grid-template-columns: 1fr; } }
.og-timeline { padding: 30px 0 50px; background: #fbfaff; }
.og-step { display: grid; grid-template-columns: 56px 1.2fr .9fr; gap: 18px; padding: 26px 0; border-bottom: 1px dashed var(--gray-2); align-items: start; }
.og-line { position: relative; display: flex; justify-content: center; }
.og-line::before { content: ''; position: absolute; top: 40px; bottom: -30px; width: 2px; background: #ded2f8; }
.og-step:last-child .og-line::before { display: none; }
.og-dot { width: 38px; height: 38px; border-radius: 50%; background: var(--vio); color: #fff; font-weight: 800; display: flex; align-items: center; justify-content: center; z-index: 1; box-shadow: 0 6px 18px rgba(139,92,246,.4); }
.og-body h3 { font-size: 1.15rem; margin-bottom: 6px; }
.og-body p { font-size: .92rem; color: var(--text); }
.og-mini { font-size: .78rem; color: #1a7a47; font-weight: 600; margin: 8px 0; }
.og-btn { margin-top: 6px; font-size: .85rem; padding: 10px 20px; }
.og-trust { list-style: none; padding: 0; margin: 8px 0; }
.og-trust li { font-size: .86rem; padding: 3px 0; }
.og-plat { display: flex; gap: 8px; flex-wrap: wrap; margin: 12px 0; }
.og-pbtn { border: 1.5px solid var(--gray-2); background: #fff; border-radius: 999px; padding: 9px 18px; font-size: .85rem; font-weight: 600; color: var(--text); cursor: pointer; font-family: inherit; }
.og-pbtn.active { background: var(--vio); border-color: var(--vio); color: #fff; }
.og-pp { background: #f3effd; border: 1px solid #ded2f8; border-radius: 12px; padding: 13px 16px; font-size: .88rem; margin-top: 8px; }
.og-faq { padding: 50px 0 30px; }
.og-support { background: var(--vio-deep); color: #fff; text-align: center; padding: 44px 0; }
.og-support h2 { color: #fff; margin-bottom: 8px; }
.og-support a { color: #cdbcfc; font-weight: 600; }
.og-prog { color: var(--text-inv2); font-size: .85rem; margin-top: 6px; }
@media (max-width: 860px) {
  .og-hero-grid { grid-template-columns: 1fr; }
  .og-step { grid-template-columns: 44px 1fr; }
  .og-ill { grid-column: 2; max-width: 360px; }
}


/* ── Banner Google + grila PDF (how + onboarding) ── */
.how-google-banner { display: flex; justify-content: space-between; align-items: center; gap: 18px; flex-wrap: wrap; max-width: 880px; margin: 0 auto 26px; background: linear-gradient(135deg, #f3effd, #faf9ff); border: 1.5px solid #ded2f8; border-radius: 16px; padding: 20px 24px; }
.how-google-banner h3 { font-size: 1.05rem; color: var(--text-head); margin-bottom: 4px; }
.how-google-banner p { font-size: .88rem; color: var(--text-light); margin: 0; }
.how-gb-actions { display: flex; gap: 10px; flex-wrap: wrap; }
.how-gb-actions .btn { font-size: .85rem; padding: 10px 18px; }
.how-pdfs { max-width: 880px; margin: 0 auto; }
.how-pdf-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
@media (max-width: 640px) { .how-pdf-grid { grid-template-columns: 1fr; } }
.how-pdf { display: flex; align-items: center; gap: 14px; border: 1.5px solid var(--gray-2); border-radius: 14px; padding: 14px 16px; color: var(--text); transition: var(--transition); flex-wrap: wrap; }
.how-pdf:hover { border-color: var(--vio); box-shadow: var(--shadow); color: var(--text); }
.how-pdf .n { width: 30px; height: 30px; border-radius: 50%; background: var(--vio); color: #fff; font-weight: 800; display: inline-flex; align-items: center; justify-content: center; flex: 0 0 auto; }
.how-pdf b { color: var(--text-head); font-size: .92rem; flex: 1 1 100%; max-width: calc(100% - 46px); margin-left: 0; }
.how-pdf .n + b { flex: 1; }
.how-pdf .d { font-size: .76rem; color: var(--text-light); flex-basis: 100%; padding-left: 44px; }
.og-pdfs { padding: 44px 0 10px; }

.footer-lang a { color: #cdbcfc; font-weight: 600; }
.footer-lang a:hover { color: #fff; }


/* comutator limba in nav */
.nav-lang { border: 1.5px solid var(--gray-2); border-radius: 999px; padding: 7px 13px !important; font-size: .8rem !important; font-weight: 700; color: var(--text-light) !important; }
.nav-lang:hover { border-color: var(--vio); color: var(--vio-dark) !important; background: #f3effd !important; }
@media (max-width: 1060px) and (min-width: 701px) { .nav-lang { padding: 5px 9px !important; font-size: .7rem !important; } }

/* ─── Site Builder (task #29 MVP) ─────────────────────────────────────────── */
.sb-wrap { display: grid; grid-template-columns: 1fr 1.1fr; gap: 22px; margin-top: 30px; align-items: start; }
.sb-form { padding: 24px; }
.sb-steps { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 20px; }
.sb-step { font-size: .78rem; font-weight: 700; color: #9b96b0; padding: 5px 12px; border-radius: 99px; background: #f3f1fb; }
.sb-step.on { color: #fff; background: var(--violet, #8b5cf6); }
.sb-panel label { display: block; font-weight: 700; font-size: .88rem; margin: 14px 0 6px; color: #2b2640; }
.sb-panel input, .sb-panel textarea { width: 100%; padding: 10px 13px; border: 1.5px solid #e4e0f2; border-radius: 10px; font: inherit; font-size: .92rem; }
.sb-panel input:focus, .sb-panel textarea:focus { outline: none; border-color: var(--violet, #8b5cf6); }
.sb-panel input.err { border-color: #ef4444; }
.sb-types { display: grid; gap: 10px; }
.sb-type { text-align: left; padding: 12px 14px; border: 1.5px solid #e4e0f2; border-radius: 12px; background: #fff; cursor: pointer; font: inherit; font-weight: 700; font-size: .92rem; }
.sb-type small { display: block; font-weight: 400; color: #8a86a0; font-size: .78rem; margin-top: 2px; }
.sb-type.on { border-color: var(--violet, #8b5cf6); background: #f6f4fd; }
.sb-2col { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.sb-svc-row { display: grid; grid-template-columns: 1fr 110px 34px; gap: 8px; margin-bottom: 8px; align-items: center; }
.s-del { border: none; background: #f3f1fb; color: #8a86a0; border-radius: 8px; height: 34px; cursor: pointer; }
.s-del:hover { background: #fde8e8; color: #ef4444; }
.sb-add { margin-top: 6px; font-size: .85rem; padding: 8px 16px; }
.sb-colors { display: flex; gap: 10px; align-items: center; flex-wrap: wrap; }
.sb-color { width: 34px; height: 34px; border-radius: 50%; border: 3px solid transparent; cursor: pointer; }
.sb-color.on { border-color: #2b2640; }
#sb-color-custom { width: 38px; height: 38px; border: 1.5px dashed #c9c3e2; border-radius: 50%; padding: 2px; background: #fff; cursor: pointer; }
.sb-hint { font-size: .82rem; color: #8a86a0; margin-top: 8px; }
.sb-nav { display: flex; gap: 10px; justify-content: space-between; margin-top: 22px; }
.sb-preview { padding: 0; overflow: hidden; position: sticky; top: 84px; }
.sb-preview-bar { display: flex; align-items: center; gap: 6px; padding: 10px 14px; background: #f3f1fb; border-bottom: 1px solid #e4e0f2; }
.sb-preview-bar .dot { width: 10px; height: 10px; border-radius: 50%; background: #d9d4ec; }
.sb-url { margin-left: 10px; font-size: .78rem; color: #8a86a0; background: #fff; border-radius: 6px; padding: 3px 12px; flex: 1; }
#sb-frame { width: 100%; height: 540px; border: none; background: #fff; }
.sb-after { margin-top: 44px; }
.sb-after-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 14px; margin-top: 18px; }
.sb-after-grid .card { padding: 16px; }
.sb-after-grid b { color: #6d28d9; font-size: .9rem; }
.sb-after-grid p { font-size: .82rem; color: #74748a; margin-top: 5px; }
@media (max-width: 880px) {
  .sb-wrap { grid-template-columns: 1fr; }
  .sb-preview { position: static; }
  #sb-frame { height: 420px; }
  .sb-2col { grid-template-columns: 1fr; }
}
