/* ============================================================
   cascoonline.ro — Design complet nou 2026
   Inspirat de: licenteprograme.ro
   Ton: Luminos, curat, modern, animații interactive
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&family=Bricolage+Grotesque:opsz,wght@12..96,500;12..96,600;12..96,700;12..96,800&display=swap');

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root { color-scheme: light only; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: 'Manrope', sans-serif; background: #fff; color: #111827; overflow-x: hidden; line-height: 1.6; }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { font-family: inherit; }

/* ---- Variables ---- */
:root {
  --g1: #16a34a;
  --g2: #15803d;
  --g3: #14532d;
  --g-light: #f0fdf4;
  --g-pale:  #dcfce7;
  --g-mid:   #22c55e;
  --g-border:#bbf7d0;
  --text:    #111827;
  --muted:   #6b7280;
  --light:   #f9fafb;
  --border:  #e5e7eb;
  --white:   #ffffff;
  --r: 14px;
  --r-sm: 10px;
  --r-pill: 100px;
  --sh: 0 4px 24px rgba(0,0,0,0.08);
  --sh-md: 0 8px 40px rgba(0,0,0,0.12);
  --sh-lg: 0 20px 60px rgba(0,0,0,0.15);
  --sh-green: 0 8px 32px rgba(22,163,74,0.25);
}

/* ---- Utilities ---- */
.container { max-width: 1160px; margin: 0 auto; padding: 0 24px; }
.text-center { text-align: center; }
.accent { color: var(--g1); }
.tag {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--g-pale); color: var(--g2);
  border: 1.5px solid var(--g-border);
  padding: 5px 14px; border-radius: var(--r-pill);
  font-size: 12px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase;
  margin-bottom: 16px;
}

/* ---- Buttons ---- */
.btn {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 14px 28px; border-radius: var(--r-pill);
  font-weight: 700; font-size: 15px; border: none; cursor: pointer;
  transition: transform .2s, box-shadow .2s, background .2s;
  text-decoration: none; white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn-green  { background: var(--g1); color: #fff; box-shadow: var(--sh-green); }
.btn-green:hover  { background: var(--g2); box-shadow: 0 12px 40px rgba(22,163,74,.35); }
.btn-outline { background: #fff; color: var(--g1); border: 2px solid var(--g1); }
.btn-outline:hover { background: var(--g-pale); }
.btn-white  { background: #fff; color: var(--g3); box-shadow: var(--sh); }
.btn-white:hover  { background: var(--g-pale); color: var(--g1); }
.btn-sm { padding: 10px 20px; font-size: 13px; }

/* ---- Header ---- */
.header {
  position: sticky; top: 0; z-index: 200;
  background: rgba(255,255,255,.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 1px 12px rgba(0,0,0,.06);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 70px; gap: 16px;
}
.logo { display: flex; align-items: center; gap: 12px; }
.logo-mark {
  width: 42px; height: 42px; border-radius: 12px;
  background: var(--g1); color: #fff;
  display: grid; place-items: center;
  box-shadow: 0 3px 12px rgba(22,163,74,.3);
  flex-shrink: 0;
}
.logo-mark svg { width: 20px; height: 20px; }
.logo-text { font-family:'Bricolage Grotesque',sans-serif; font-size: 19px; font-weight: 800; color: var(--text); line-height: 1.1; }
.logo-text span { color: var(--g1); }
.logo-sub { font-size: 11px; color: var(--muted); font-weight: 500; }
.nav { display: flex; align-items: center; gap: 2px; }
.nav a { padding: 8px 14px; border-radius: var(--r-pill); font-size: 14px; font-weight: 600; color: var(--muted); transition: all .2s; }
.nav a:hover, .nav a.active { color: var(--g1); background: var(--g-pale); }
.header-cta { background: var(--g1); color: #fff !important; padding: 10px 22px; border-radius: var(--r-pill); font-size: 14px; font-weight: 700; box-shadow: var(--sh-green); transition: all .2s; }
.header-cta:hover { background: var(--g2); transform: translateY(-1px); }
.mobile-toggle { display: none; background: none; border: none; cursor: pointer; color: var(--text); padding: 6px; }
@media(max-width:800px){
  .nav { display: none; position: fixed; top: 70px; left: 0; right: 0; background: #fff; flex-direction: column; padding: 20px; border-bottom: 1px solid var(--border); box-shadow: var(--sh-md); z-index: 199; }
  .nav.open { display: flex; }
  .mobile-toggle { display: block; }
  .header-cta-desktop { display: none; }
}

/* ---- HERO ---- */
.hero {
  position: relative;
  min-height: 88vh;
  display: flex; align-items: center;
  overflow: hidden;
  background: #fff;
}
.hero-img {
  position: absolute; inset: 0; z-index: 0;
  background: url('https://images.unsplash.com/photo-1492144534655-ae79c964c9d7?w=1920&q=90&auto=format&fit=crop') center/cover no-repeat;
  transform: scale(1.05);
  animation: hero-zoom 10s ease forwards;
}
@keyframes hero-zoom { to { transform: scale(1); } }
.hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(
    110deg,
    rgba(255,255,255,.98) 0%,
    rgba(255,255,255,.93) 38%,
    rgba(240,253,244,.75) 60%,
    rgba(22,163,74,.1) 100%
  );
}
.hero-inner {
  position: relative; z-index: 2;
  max-width: 640px;
  padding: 80px 0 100px;
  animation: fade-up .8s cubic-bezier(.16,1,.3,1) both;
}
@keyframes fade-up {
  from { opacity:0; transform:translateY(28px); }
  to   { opacity:1; transform:translateY(0); }
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--g-pale); color: var(--g2);
  border: 1.5px solid var(--g-border);
  padding: 6px 16px; border-radius: var(--r-pill);
  font-size: 12px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase;
  margin-bottom: 24px;
  animation: fade-up .6s .2s cubic-bezier(.16,1,.3,1) both;
}
.hero h1 {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: clamp(42px, 6vw, 72px);
  font-weight: 800;
  line-height: 1.06;
  letter-spacing: -.03em;
  color: var(--text);
  margin-bottom: 20px;
}
.hero h1 em { font-style: normal; color: var(--g1); }
.hero-desc {
  font-size: 18px; color: var(--muted); line-height: 1.65;
  max-width: 520px; margin-bottom: 36px;
  animation: fade-up .6s .35s cubic-bezier(.16,1,.3,1) both;
}
.hero-btns {
  display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 40px;
  animation: fade-up .6s .45s cubic-bezier(.16,1,.3,1) both;
}
.hero-trust {
  display: flex; flex-wrap: wrap; gap: 24px; align-items: center;
  animation: fade-up .6s .55s cubic-bezier(.16,1,.3,1) both;
}
.hero-trust-item { display: flex; align-items: center; gap: 8px; font-size: 13px; font-weight: 600; color: var(--muted); }
.hero-trust-item .dot { width: 8px; height: 8px; background: var(--g1); border-radius: 50%; }
.stars-row { color: #f59e0b; font-size: 15px; }
/* floating badge */
.hero-badge-float {
  position: absolute; right: 6%; bottom: 14%; z-index: 3;
  background: #fff; border-radius: 20px; padding: 20px 26px;
  box-shadow: var(--sh-lg); border: 1px solid var(--border);
  text-align: center;
  animation: float-y 4s ease-in-out infinite, fade-up .8s .6s both;
  display: none;
}
@media(min-width:1100px){ .hero-badge-float { display: block; } }
@keyframes float-y {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(-12px); }
}
.hero-badge-float .big { font-family:'Bricolage Grotesque',sans-serif; font-size: 44px; font-weight: 800; color: var(--g1); line-height: 1; }
.hero-badge-float .lbl { font-size: 12px; color: var(--muted); font-weight: 600; margin-top: 4px; }
.hero-badge-float .sub { font-size: 11px; color: var(--g-border); margin-top: 2px; }

/* ---- PARTNERS ---- */
.partners {
  padding: 36px 0;
  background: var(--light);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.partners-title { text-align: center; font-size: 12px; font-weight: 700; color: var(--muted); text-transform: uppercase; letter-spacing: .08em; margin-bottom: 20px; }
.carousel-wrap { overflow: hidden; }
.carousel-row { overflow: hidden; margin-bottom: 10px; }
.carousel-track { display: flex; gap: 12px; width: max-content; }
.carousel-track-l { animation: slide-l 30s linear infinite; }
.carousel-track-r { animation: slide-r 30s linear infinite; }
@keyframes slide-l { from{transform:translateX(0)}     to{transform:translateX(-50%)} }
@keyframes slide-r { from{transform:translateX(-50%)} to{transform:translateX(0)} }
.ins-card { background:#fff; border:1.5px solid #e5e7eb; border-radius:10px; padding:10px 18px; width:320px !important; min-width:320px !important; max-width:320px !important; height:130px !important; min-height:130px !important; max-height:130px !important; display:flex !important; align-items:center !important; justify-content:center !important; flex-shrink:0 !important; overflow:hidden !important; box-sizing:border-box !important; }
.ins-card img { width:240px !important; max-width:240px !important; height:90px !important; max-height:90px !important; min-height:unset !important; object-fit:contain !important; display:block !important; flex-shrink:0 !important; }

/* ---- STATS ---- */
.stats { padding: 80px 0; background: #fff; }
.stats-grid { display: grid; gap: 2px; grid-template-columns: repeat(2,1fr); }
@media(min-width:640px){ .stats-grid { grid-template-columns: repeat(4,1fr); } }
.stat-box {
  padding: 40px 24px; text-align: center;
  background: var(--light); border: 1px solid var(--border);
  transition: background .25s, transform .25s;
}
.stat-box:first-child { border-radius: var(--r) 0 0 var(--r); }
.stat-box:last-child  { border-radius: 0 var(--r) var(--r) 0; }
.stat-box:hover { background: var(--g-pale); transform: translateY(-4px); z-index: 1; position: relative; border-color: var(--g-border); }
.stat-num { font-family:'Bricolage Grotesque',sans-serif; font-size: 48px; font-weight: 800; color: var(--g1); line-height: 1; }
.stat-lbl { font-size: 13px; color: var(--muted); font-weight: 600; margin-top: 8px; }

/* ---- SECTION GENERIC ---- */
.section { padding: 96px 0; }
.section-sm { padding: 64px 0; }
.section-heading {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 800; letter-spacing: -.02em;
  color: var(--text); margin-bottom: 16px;
}
.section-sub { font-size: 17px; color: var(--muted); max-width: 580px; line-height: 1.65; }

/* ---- COVERS / WHAT IS COVERED ---- */
.covers-grid { display: grid; gap: 20px; margin-top: 52px; }
@media(min-width:560px) { .covers-grid { grid-template-columns: repeat(2,1fr); } }
@media(min-width:900px) { .covers-grid { grid-template-columns: repeat(4,1fr); } }
.cover-card {
  background: #fff; border: 1.5px solid var(--border);
  border-radius: var(--r); padding: 32px 24px;
  box-shadow: var(--sh);
  transition: transform .3s, box-shadow .3s, border-color .3s;
  cursor: default;
}
.cover-card:hover { transform: translateY(-6px); box-shadow: var(--sh-md); border-color: var(--g-border); }
.cover-icon {
  width: 56px; height: 56px; border-radius: 16px;
  background: var(--g-pale); color: var(--g1);
  display: grid; place-items: center; margin-bottom: 18px;
  font-size: 26px;
  transition: background .25s, transform .25s;
}
.cover-card:hover .cover-icon { background: var(--g1); color: #fff; transform: scale(1.1) rotate(-5deg); }
.cover-card h3 { font-size: 16px; font-weight: 800; color: var(--text); margin-bottom: 8px; }
.cover-card p  { font-size: 14px; color: var(--muted); line-height: 1.6; }

/* ---- FORM SECTION ---- */
.form-section { padding: 96px 0; background: #f0fdf4 !important; }
.form-grid { display: grid; gap: 60px; align-items: start; }
@media(min-width:960px){ .form-grid { grid-template-columns: 1fr 480px; } }
.form-left h2 { font-family:'Bricolage Grotesque',sans-serif; font-size:clamp(30px,3.5vw,44px); font-weight:800; letter-spacing:-.02em; color:var(--text); margin-bottom:18px; }
.form-left p { font-size:17px; color:var(--muted); line-height:1.65; margin-bottom:28px; }
.check-list { display:flex; flex-direction:column; gap:12px; }
.check-list li { display:flex; align-items:center; gap:12px; font-size:15px; font-weight:600; color:var(--text); }
.check-list li::before { content:'✓'; flex-shrink:0; width:26px; height:26px; background:var(--g1); color:#fff; border-radius:50%; display:grid; place-items:center; font-size:13px; }

/* Form card */
.form-card {
  background: #ffffff !important; color: #111827 !important; border-radius: 24px; padding: 36px;
  box-shadow: 0 24px 80px rgba(0,0,0,.12);
  border: 1px solid var(--border);
}
.form-card-header { display:flex; align-items:center; gap:12px; margin-bottom:28px; padding-bottom:20px; border-bottom:1px solid var(--border); }
.form-card-header .ico { width:44px; height:44px; background:var(--g-pale); border-radius:12px; display:grid; place-items:center; color:var(--g1); flex-shrink:0; }
.form-card-header h3 { font-size:18px; font-weight:800; color:var(--text); }
.form-card-header p  { font-size:13px; color:var(--muted); }
.field { margin-bottom:16px; }
.field label { display:block; font-size:13px; font-weight:700; color:var(--text); margin-bottom:6px; }
.input {
  width:100%; padding:13px 16px; border:1.5px solid var(--border); border-radius:var(--r-sm);
  font-family:'Manrope',sans-serif; font-size:14px; color:#111827 !important; background:#ffffff !important;
  outline:none; transition:border-color .2s, box-shadow .2s; -webkit-appearance:none; appearance:none;
}
.input:focus { border-color:var(--g1); box-shadow:0 0 0 3px rgba(22,163,74,.12); }
.input::placeholder { color:#9ca3af; }
.row-2 { display:grid; grid-template-columns:1fr 1fr; gap:12px; }
@media(max-width:480px){ .row-2{grid-template-columns:1fr;} }

/* Upload */
.upload-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:8px; margin-bottom:8px; }
@media(max-width:400px){ .upload-grid{grid-template-columns:1fr 1fr;} }
.upload-slot {
  border:2px dashed var(--g-border); border-radius:var(--r-sm);
  background:#f0fdf4 !important; color:#111827 !important; text-align:center; cursor:pointer;
  height:110px; display:flex; flex-direction:column; align-items:center; justify-content:center; overflow:hidden;
  transition:all .2s; position:relative; padding:8px;
}
.upload-slot:hover { border-color:var(--g1); background:var(--g-pale); }
.upload-slot.filled { border-style:solid; border-color:var(--g1); background:rgba(22,163,74,.04); }
.upload-slot input[type="file"] { display:none; }
.upload-slot .ico { width:34px; height:34px; border-radius:10px; background:var(--g-pale); display:grid; place-items:center; color:var(--g1); margin-bottom:5px; }
.upload-slot.filled .ico { background:var(--g1); color:#fff; }
.upload-slot .ico svg { width:18px; height:18px; }
.upload-slot p.t { font-size:11px; font-weight:700; color:#111827 !important; }
.upload-slot p.s { font-size:10px; color:#6b7280 !important; margin-top:2px; }
.upload-slot .fname { font-size:10px; color:var(--g1); margin-top:3px; max-width:100%; overflow:hidden; text-overflow:ellipsis; white-space:nowrap; }
.upload-slot .x { position:absolute; top:4px; right:4px; width:18px; height:18px; border-radius:50%; background:#fee2e2; color:#dc2626; display:none; align-items:center; justify-content:center; font-size:12px; }
.upload-slot.filled .x { display:inline-flex; }

/* Radio */
.radio-row { display:flex; gap:8px; flex-wrap:wrap; }
.radio-card { display:flex; align-items:center; gap:8px; padding:10px 16px; border:1.5px solid var(--border); border-radius:var(--r-pill); font-size:13px; font-weight:600; color:#6b7280 !important; cursor:pointer; transition:all .2s; background:#ffffff !important; }
.radio-card input { display:none; }
.radio-card.active, .radio-card:has(input:checked) { border-color:#16a34a !important; background:#dcfce7 !important; color:#16a34a !important; box-shadow:0 0 0 3px rgba(22,163,74,0.2) !important; }
.radio-card.active .radio-dot, .radio-card:has(input:checked) .radio-dot { background:#16a34a !important; border-color:#16a34a !important; box-shadow:inset 0 0 0 2px #fff !important; }
.radio-dot { width:11px; height:11px; border-radius:50%; border:2px solid currentColor; }

/* Signature */
.sig-wrap { border:1.5px solid var(--border); border-radius:var(--r-sm); overflow:hidden; }
.sig-canvas { display:block; width:100%; height:90px; background:#fafafa !important; cursor:crosshair; touch-action:none; }
.sig-actions { display:flex; justify-content:space-between; align-items:center; padding:6px 12px; background:var(--light); font-size:11px; color:var(--muted); }
.sig-actions button { background:none; border:none; font-size:11px; color:#dc2626; cursor:pointer; font-weight:600; }

/* Consent */
.consent { display:flex; gap:10px; align-items:flex-start; font-size:12px; color:var(--muted); margin-top:10px; line-height:1.55; cursor:pointer; }
.consent input { margin-top:3px; accent-color:var(--g1); width:16px; height:16px; flex-shrink:0; }
.consent strong { color:var(--text); }
.consent a,
label.consent span a,
.form-card .consent a {
  color: #16a34a !important;
  text-decoration: underline !important;
  font-weight: 800 !important;
  background: #dcfce7 !important;
  padding: 1px 5px !important;
  border-radius: 4px !important;
}
.consent a:hover { color:#14532d !important; background:#bbf7d0 !important; }
.consent-note { font-size:11px; color:var(--muted); background:var(--light); border:1px solid var(--border); border-radius:var(--r-sm); padding:10px 14px; margin-top:12px; line-height:1.6; }
.consent-note a { color:var(--g1); text-decoration:underline; font-weight:600; }
.error-msg { color:#dc2626; font-size:13px; margin-top:10px; font-weight:600; }
.submit-btn {
  width:100%; margin-top:20px; padding:17px;
  background:var(--g1); color:#fff; border:none; border-radius:var(--r-pill);
  font-family:'Bricolage Grotesque',sans-serif; font-size:17px; font-weight:800;
  cursor:pointer; display:flex; align-items:center; justify-content:center; gap:10px;
  box-shadow:var(--sh-green); transition:all .25s;
}
.submit-btn:hover { background:var(--g2); transform:translateY(-2px); box-shadow:0 12px 40px rgba(22,163,74,.4); }

/* product-tab (hidden but functional) */
.product-tabs { display:none !important; }

/* ---- WHY US cards ---- */
.why-grid { display:grid; gap:20px; margin-top:52px; }
@media(min-width:640px){ .why-grid{grid-template-columns:repeat(2,1fr);} }
@media(min-width:900px){ .why-grid{grid-template-columns:repeat(3,1fr);} }
.why-card {
  background:#fff; border:1.5px solid var(--border);
  border-radius:var(--r); padding:30px 26px;
  box-shadow:var(--sh); transition:transform .3s, box-shadow .3s;
}
.why-card:hover { transform:translateY(-5px); box-shadow:var(--sh-md); }
.why-icon { width:50px; height:50px; border-radius:14px; background:var(--g-pale); color:var(--g1); display:grid; place-items:center; margin-bottom:16px; transition:all .25s; }
.why-card:hover .why-icon { background:var(--g1); color:#fff; }
.why-card h3 { font-size:16px; font-weight:800; color:var(--text); margin-bottom:8px; }
.why-card p  { font-size:14px; color:var(--muted); line-height:1.65; }

/* ---- STEPS ---- */
.steps-section { padding:96px 0; background:var(--g3); color:#fff; position:relative; overflow:hidden; }
.steps-section::before { content:''; position:absolute; inset:0; background:radial-gradient(ellipse at 20% 50%, rgba(34,197,94,.15), transparent 60%); pointer-events:none; }
.steps-section .section-heading { color:#fff; }
.steps-section .section-sub { color:#86efac; }
.steps-grid { display:grid; gap:24px; margin-top:52px; }
@media(min-width:640px){ .steps-grid{grid-template-columns:repeat(2,1fr);} }
@media(min-width:960px){ .steps-grid{grid-template-columns:repeat(4,1fr);} }
.step-card {
  background:rgba(255,255,255,.07); border:1px solid rgba(255,255,255,.12);
  border-radius:var(--r); padding:32px 24px;
  transition:background .3s, transform .3s;
}
.step-card:hover { background:rgba(255,255,255,.12); transform:translateY(-4px); }
.step-num { font-family:'Bricolage Grotesque',sans-serif; font-size:13px; font-weight:800; color:var(--g-mid); background:rgba(34,197,94,.15); display:inline-block; padding:4px 12px; border-radius:var(--r-pill); margin-bottom:14px; }
.step-card h3 { font-size:17px; font-weight:800; color:#fff; margin-bottom:10px; }
.step-card p  { font-size:14px; color:#86efac; line-height:1.65; }

/* ---- BLOG ---- */
.blog-grid { display:grid; gap:24px; margin-top:48px; }
@media(min-width:640px){ .blog-grid{grid-template-columns:repeat(2,1fr);} }
@media(min-width:960px){ .blog-grid{grid-template-columns:repeat(3,1fr);} }
.blog-card {
  display:flex; flex-direction:column; background:#fff;
  border:1.5px solid var(--border); border-radius:var(--r); overflow:hidden;
  box-shadow:var(--sh); transition:transform .3s, box-shadow .3s;
  text-decoration:none; color:inherit;
}
.blog-card:hover { transform:translateY(-5px); box-shadow:var(--sh-md); }
.blog-card .cover { height:190px; overflow:hidden; }
.blog-card .cover img { width:100%; height:100%; object-fit:cover; transition:transform .5s; }
.blog-card:hover .cover img { transform:scale(1.06); }
.blog-card .body { padding:22px; flex:1; display:flex; flex-direction:column; }
.blog-card .meta { display:flex; align-items:center; gap:8px; margin-bottom:10px; font-size:11px; }
.blog-card .cat { background:var(--g-pale); color:var(--g1); padding:3px 10px; border-radius:var(--r-pill); font-weight:700; }
.blog-card .dot { color:var(--border); }
.blog-card .read { color:var(--muted); font-weight:600; }
.blog-card h2 { font-size:15px; font-weight:800; color:var(--text); margin-bottom:8px; line-height:1.4; }
.blog-card p.excerpt { font-size:13px; color:var(--muted); line-height:1.65; flex:1; }
.blog-card .more { margin-top:14px; font-size:13px; font-weight:700; color:var(--g1); display:inline-block; }

/* ---- FAQ ---- */
.faq-list { display:flex; flex-direction:column; gap:10px; max-width:760px; }
.faq-item { background:#fff; border:1.5px solid var(--border); border-radius:var(--r-sm); overflow:hidden; box-shadow:var(--sh); }
.faq-q { width:100%; padding:18px 22px; text-align:left; background:none; border:none; cursor:pointer; display:flex; align-items:center; justify-content:space-between; gap:12px; font-family:'Manrope',sans-serif; font-size:15px; font-weight:700; color:var(--text); transition:background .2s; }
.faq-q:hover { background:var(--g-light); }
.faq-item.open .faq-q { background:var(--g-pale); color:var(--g1); }
.faq-q .chev { flex-shrink:0; color:var(--g1); transition:transform .3s; }
.faq-item.open .chev { transform:rotate(180deg); }
.faq-a { display:none; padding:0 22px 18px; }
.faq-item.open .faq-a { display:block; }
.faq-a p { font-size:14px; color:var(--muted); line-height:1.75; }

/* ---- CTA BANNER ---- */
.cta-band {
  padding:96px 0; text-align:center;
  background:linear-gradient(135deg, var(--g1) 0%, #0f7a38 50%, var(--g3) 100%);
  position:relative; overflow:hidden;
}
.cta-band::before { content:''; position:absolute; inset:0; background:radial-gradient(ellipse at 50% -20%, rgba(255,255,255,.15), transparent 60%); }
.cta-band h2 { font-family:'Bricolage Grotesque',sans-serif; font-size:clamp(32px,4.5vw,54px); font-weight:800; color:#fff; letter-spacing:-.02em; position:relative; }
.cta-band p { font-size:18px; color:rgba(255,255,255,.8); margin:16px auto 36px; max-width:520px; position:relative; line-height:1.6; }

/* ---- FOOTER ---- */
footer { background:#0d1f0d; color:#fff; padding:64px 0 0; }
.footer-grid { display:grid; gap:48px; }
@media(min-width:768px){ .footer-grid{grid-template-columns:2fr 1fr 1fr;} }
footer h4 { font-size:12px; font-weight:800; text-transform:uppercase; letter-spacing:.08em; color:#4ade80; margin-bottom:18px; }
footer ul { display:flex; flex-direction:column; gap:10px; }
footer ul a { font-size:14px; color:#6ee7b0; transition:color .2s; }
footer ul a:hover { color:#fff; }
footer p { color:#6ee7b0; font-size:14px; line-height:1.65; }
.foot-brand { display:flex; align-items:center; gap:12px; margin-bottom:18px; }
.foot-logo-mark { width:42px; height:42px; border-radius:12px; background:var(--g1); display:grid; place-items:center; color:#fff; flex-shrink:0; }
.foot-logo-text { font-family:'Bricolage Grotesque',sans-serif; font-size:19px; font-weight:800; color:#fff; line-height:1.1; }
.foot-logo-text span { color:#4ade80; }
.foot-logo-sub { font-size:11px; color:#6ee7b0; }
.footer-badge { display:inline-flex; align-items:center; gap:8px; background:rgba(74,222,128,.1); color:#4ade80; border:1px solid rgba(74,222,128,.2); padding:6px 14px; border-radius:var(--r-pill); font-size:11px; font-weight:700; margin-top:16px; }
.footer-contact-row { display:flex; gap:10px; align-items:flex-start; margin-bottom:12px; font-size:14px; color:#6ee7b0; }
.footer-contact-row svg { width:16px; height:16px; flex-shrink:0; margin-top:2px; color:#4ade80; }
.footer-contact-row a { color:#6ee7b0; transition:color .2s; }
.footer-contact-row a:hover { color:#fff; }
.footer-legal { display:flex; flex-wrap:wrap; justify-content:space-between; align-items:center; gap:12px; border-top:1px solid rgba(255,255,255,.08); margin-top:40px; padding:20px 0; font-size:12px; color:rgba(110,231,176,.5); }
.footer-legal a { color:rgba(110,231,176,.6); text-decoration:underline; }
.footer-legal a:hover { color:#fff; }

/* ---- INNER PAGES (blog, FAQ, contact etc) ---- */
.page-hero { padding:64px 0 48px; background:linear-gradient(135deg,var(--g-light),#fff); border-bottom:1px solid var(--border); text-align:center; }
.page-hero .tag-lg { display:inline-block; background:var(--g-pale); color:var(--g2); border:1.5px solid var(--g-border); padding:5px 16px; border-radius:var(--r-pill); font-size:12px; font-weight:700; text-transform:uppercase; letter-spacing:.06em; margin-bottom:16px; }
.page-hero h1 { font-family:'Bricolage Grotesque',sans-serif; font-size:clamp(30px,5vw,52px); font-weight:800; color:var(--text); margin-bottom:14px; }
.page-hero p { font-size:17px; color:var(--muted); max-width:560px; margin:0 auto; }

/* Blog article */
.article-hero { padding:56px 0 40px; background:linear-gradient(135deg,var(--g-light),#fff); border-bottom:1px solid var(--border); }
.crumbs { font-size:13px; color:var(--muted); margin-bottom:16px; }
.crumbs a { color:var(--g1); font-weight:600; }
.article-cat { display:inline-block; background:var(--g-pale); color:var(--g1); border:1.5px solid var(--g-border); padding:4px 14px; border-radius:var(--r-pill); font-size:12px; font-weight:700; margin-bottom:16px; }
.article-hero h1 { font-family:'Bricolage Grotesque',sans-serif; font-size:clamp(26px,4vw,44px); font-weight:800; color:var(--text); margin-bottom:14px; max-width:760px; }
.article-hero .lead { font-size:17px; color:var(--muted); max-width:680px; line-height:1.65; }
.article-meta { display:flex; gap:20px; align-items:center; margin-top:20px; font-size:13px; color:var(--muted); font-weight:600; flex-wrap:wrap; }
.article-cover { max-height:480px; overflow:hidden; }
.article-cover img { width:100%; height:100%; object-fit:cover; }
.prose { max-width:760px; margin:48px auto 0; padding:0 24px 80px; }
.prose h2 { font-family:'Bricolage Grotesque',sans-serif; font-size:26px; font-weight:800; color:var(--text); margin:36px 0 14px; }
.prose h3 { font-family:'Bricolage Grotesque',sans-serif; font-size:18px; font-weight:800; color:var(--text); margin:24px 0 10px; }
.prose p  { font-size:16px; color:var(--muted); line-height:1.8; margin-bottom:16px; }
.prose ul, .prose ol { margin:16px 0 16px 20px; }
.prose li { font-size:15px; color:var(--muted); line-height:1.7; margin-bottom:8px; }
.prose ul li { list-style:disc; }
.prose ol li { list-style:decimal; }
.prose strong { color:var(--text); font-weight:700; }

/* ---- SCROLL REVEAL ---- */
.reveal { opacity:0; transform:translateY(36px); transition:opacity .65s cubic-bezier(.16,1,.3,1), transform .65s cubic-bezier(.16,1,.3,1); }
.reveal.visible { opacity:1; transform:translateY(0); }
.d1{transition-delay:.08s} .d2{transition-delay:.16s} .d3{transition-delay:.24s} .d4{transition-delay:.32s}

/* ---- Misc ---- */
.open-modal { color:var(--g1); text-decoration:underline; cursor:pointer; font-weight:600; }

/* ===== HORN / CLAXON ===== */
.horn-float {
  display: flex !important;
  flex-direction: row !important;
  align-items: center !important;
  gap: 20px;
  margin-top: 40px;
  opacity: 1 !important;
  visibility: visible !important;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(10px);
  border: 2px solid #fecaca;
  border-radius: 80px;
  padding: 14px 32px 14px 14px;
  box-shadow: 0 8px 32px rgba(239,68,68,.2);
  cursor: pointer;
  transition: box-shadow .2s, transform .2s;
}
.horn-float:hover { box-shadow: 0 12px 44px rgba(239,68,68,.35); transform: translateY(-2px); }
@media(max-width:600px){
  .horn-float { padding: 12px 24px 12px 12px; gap: 14px; }
}
.horn-text { display: flex; flex-direction: column; gap: 2px; }
.horn-label {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 22px;
  font-weight: 800;
  color: #dc2626;
  letter-spacing: -.01em;
  line-height: 1.1;
  background: none;
  padding: 0;
  border: none;
  border-radius: 0;
}
.horn-sub {
  font-size: 16px;
  font-weight: 800;
  color: #991b1b;
  background: none;
  padding: 0;
  border-radius: 0;
  text-transform: uppercase;
  letter-spacing: .03em;
}
.horn-btn {
  position: relative;
  width: 80px;
  height: 80px;
  flex-shrink: 0;
  border-radius: 50%;
  border: none;
  background: linear-gradient(135deg, #ef4444, #b91c1c);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 28px rgba(239,68,68,.45);
  transition: transform .15s, box-shadow .15s;
  animation: horn-wiggle 4s ease-in-out infinite;
}
.horn-btn:hover {
  transform: scale(1.08) !important;
  box-shadow: 0 10px 40px rgba(239,68,68,.55);
}
.horn-btn:active {
  transform: scale(.9) !important;
}
.horn-emoji {
  font-size: 38px;
  filter: drop-shadow(0 2px 6px rgba(0,0,0,.3));
  transition: transform .15s;
  z-index: 1;
}
.horn-btn:active .horn-emoji {
  transform: scale(1.25) rotate(-15deg);
}
.horn-btn.horn-called {
  background: linear-gradient(135deg, #16a34a, #14532d) !important;
  animation: none !important;
  box-shadow: 0 6px 28px rgba(22,163,74,.45) !important;
}

/* Pulsing rings */
.horn-pulse {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 3px solid rgba(239,68,68,.5);
  animation: horn-ring 2.5s ease-out infinite;
  pointer-events: none;
}
.horn-pulse-2 { animation-delay: 1.25s; }
@keyframes horn-ring {
  0%   { transform: scale(1);   opacity: .6; }
  100% { transform: scale(1.7); opacity: 0; }
}

/* Wiggle animation */
@keyframes horn-wiggle {
  0%,88%,100% { transform: rotate(0); }
  90% { transform: rotate(-6deg); }
  92% { transform: rotate(6deg); }
  94% { transform: rotate(-4deg); }
  96% { transform: rotate(3deg); }
}

/* ===== SUCCESS PAGE ===== */
.success-wrap {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
  background: linear-gradient(135deg, #f0fdf4, #dcfce7);
}
.success-card {
  background: #fff;
  border-radius: 24px;
  padding: 48px 40px;
  max-width: 520px;
  width: 100%;
  text-align: center;
  box-shadow: 0 20px 60px rgba(0,0,0,.1);
  border: 1.5px solid #bbf7d0;
}
.success-check {
  width: 64px;
  height: 64px;
  background: #16a34a;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  font-weight: 700;
  margin: 0 auto 24px;
  box-shadow: 0 8px 24px rgba(22,163,74,.3);
}
.success-card h1 {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 26px;
  font-weight: 800;
  color: #111827;
  margin-bottom: 16px;
  line-height: 1.2;
}
.req {
  display: inline-block;
  background: #14532d;
  color: #fff;
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 28px;
  letter-spacing: .02em;
}
.info-block {
  text-align: left;
  background: #fff;
  border: 1.5px solid #e5e7eb;
  border-left: 4px solid #16a34a;
  border-radius: 12px;
  padding: 24px;
  margin-bottom: 24px;
}
.info-block h3 {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 18px;
  font-weight: 800;
  color: #16a34a;
  margin-bottom: 10px;
}
.info-block p {
  font-size: 14px;
  color: #4b5563;
  line-height: 1.65;
  margin-bottom: 4px;
}
.warn-block {
  background: #fef9c3;
  border: 1px solid #fde68a;
  border-radius: 10px;
  padding: 14px 18px;
  margin-top: 14px;
}
.warn-block p {
  font-size: 13px;
  color: #92400e;
  line-height: 1.6;
  margin: 0;
}
.btn-back {
  display: inline-block;
  background: #14532d;
  color: #fff !important;
  padding: 14px 32px;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  margin-top: 8px;
  box-shadow: 0 4px 16px rgba(20,83,45,.3);
  transition: background .2s, transform .2s;
}
.btn-back:hover {
  background: #16a34a;
  transform: translateY(-2px);
}
@media(max-width:480px){
  .success-card { padding: 36px 24px; }
  .success-card h1 { font-size: 22px; }
}
