/* ===== Orora AI palette ===== */
:root{
  --oro:#D4AF37;      /* Oro Gold */
  --graph:#121212;    /* Deep Tech Graphite */
  --azure:#2E8FFF;    /* Tech Azure Blue */
  --teal:#00BFA6;     /* Neo Teal */
  --champ:#F5F3ED;    /* Champagne White */
  --cloud:#E1E1E1;    /* Cloud Gray */
  --navy:#0B1D2B;     /* Midnight Navy */

  --primary:var(--oro);
  --primary-dark:#B9922C;
  --bg:var(--graph);
  --text:var(--champ);
  --muted:#B9BEC6;
  --danger:#EF4444;
  --success:var(--teal);
}

*{box-sizing:border-box;margin:0;padding:0}
html,body{height:100%}
body{
  font-family: system-ui,-apple-system,Segoe UI,Roboto,Helvetica,Arial,sans-serif;
  color:var(--text);
  background:var(--bg);
  line-height:1.6;
}
img{max-width:100%;display:block}
a{color:var(--azure);text-decoration:none}
a:hover{text-decoration:underline}
.container{max-width:1200px;margin:0 auto;padding:0 20px}

/* Nav */
.nav{
  position:sticky;top:0;z-index:1000;
  background:rgba(18,18,18,0.95);
  backdrop-filter:saturate(140%) blur(6px);
  border-bottom:1px solid #1f2937;
}
.nav__row{display:flex;align-items:center;justify-content:space-between;padding:14px 0}
.logo__img{height:40px;width:auto;object-fit:contain}
.nav__links a{margin:0 10px;color:#e5e7eb}
.nav__links .btn{margin-left:8px}

/* Buttons */
.btn{
  display:inline-flex;align-items:center;justify-content:center;
  padding:12px 20px;border-radius:10px;border:0;cursor:pointer;
  font-weight:700
}
.btn--gold{background:var(--primary);color:#121212}
.btn--gold:hover{filter:brightness(1.05)}
.btn--teal{background:var(--teal);color:#121212}
.btn--teal:hover{filter:brightness(1.05)}

/* Hero */
.hero{
  background:linear-gradient(135deg,var(--graph),var(--navy));
  padding:120px 0 80px;
  text-align:center;
}
.hero h1{font-size:clamp(28px,4vw,52px);font-weight:900;margin-bottom:14px}
.subtitle{font-size:clamp(16px,2.3vw,20px);color:#d7dbe1;max-width:820px;margin:0 auto 24px}
.trust{display:flex;gap:18px;justify-content:center;flex-wrap:wrap;margin-top:18px}
.trust span{opacity:.9}

/* Sections */
.section{padding:80px 0}
.section--light{background:var(--champ);color:#111}
.section h2{text-align:center;font-size:clamp(24px,3vw,36px);margin-bottom:6px}
.lead{text-align:center;color:var(--muted);max-width:720px;margin:8px auto 28px}

/* Grids/cards */
.grid{display:grid;gap:24px}
.pain{grid-template-columns:repeat(auto-fit,minmax(260px,1fr))}
.card{background:#fff;border-radius:14px;padding:22px;box-shadow:0 6px 20px rgba(0,0,0,.08)}
.card--danger{border-left:4px solid var(--danger)}
.card h3{color:#111;margin-bottom:6px}
.card .stat{color:#b91c1c;font-weight:800;margin:4px 0}

/* Steps/benefits */
.steps{grid-template-columns:repeat(auto-fit,minmax(240px,1fr));margin-top:22px}
.step{text-align:center;background:#0B1D2B0F;border:1px solid #E1E1E11A;border-radius:14px;padding:22px}
.step__num{width:52px;height:52px;border-radius:50%;margin:0 auto 10px;
  background:linear-gradient(135deg,var(--primary),var(--azure));color:#121212;
  display:flex;align-items:center;justify-content:center;font-weight:900}
.benefits{grid-template-columns:repeat(auto-fit,minmax(220px,1fr));margin-top:14px}
.benefit{background:#0B1D2B0F;border:1px solid #E1E1E11A;border-radius:14px;padding:18px;text-align:center}

/* Stats */
.stats{grid-template-columns:repeat(auto-fit,minmax(220px,1fr));margin-top:18px}
.stat-card{background:linear-gradient(135deg,var(--primary),var(--azure));color:#111;border-radius:14px;padding:26px;text-align:center}
.stat-number{font-size:32px;font-weight:900}

/* Compare (sleek + readable on dark) */
.compare{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:26px;
  margin-top:22px;
}
.panel{
  background:#16181d;                 /* deep neutral */
  border:1px solid #272b33;           /* subtle edge */
  border-radius:16px;
  padding:22px 22px 18px;
  box-shadow:0 10px 30px rgba(0,0,0,.25);
}
.panel__header{
  display:flex;align-items:center;gap:10px;margin-bottom:10px;
}
.panel__header h3{
  margin:0;font-weight:800;color:#fff;letter-spacing:.2px;
}
.badge{
  font-size:12px;font-weight:800;
  padding:4px 8px;border-radius:999px;
  border:1px solid transparent;background:transparent;
  letter-spacing:.4px;
}
.badge--danger{ color:#ef4444; border-color:#ef4444; }
.badge--success{ color:var(--teal); border-color:var(--teal); }

.list{list-style:none;margin:8px 0 0 0;padding:0}
.list li{
  color:#d7dbe1;
  padding-left:28px;position:relative;margin:10px 0;
}
.list--bad li::before,
.list--good li::before{
  position:absolute;left:0;top:0.1rem;font-weight:900;font-size:16px
}
.list--bad li::before{content:"✕"; color:#ef4444;}
.list--good li::before{content:"✓"; color:var(--teal);}

/* Optional subtle top accents */
.panel--before2{ box-shadow:inset 0 3px 0 rgba(239,68,68,.6), 0 10px 30px rgba(0,0,0,.25); }
.panel--after2{  box-shadow:inset 0 3px 0 rgba(0,191,166,.7), 0 10px 30px rgba(0,0,0,.25); }

/* Mobile */
@media (max-width:900px){
  .compare{ grid-template-columns:1fr; }
}

/* CTA */
.cta{background:linear-gradient(135deg,var(--primary),var(--azure));color:#111;text-align:center;padding:80px 0}
.center{text-align:center}
.m-32{margin:32px 0}
.lead-form{display:flex;gap:12px;justify-content:center;flex-wrap:wrap;margin:16px 0 10px}
.lead-form input{padding:12px 14px;border-radius:10px;border:1px solid #e5e7eb;min-width:260px}
.cta__points{display:flex;gap:16px;justify-content:center;flex-wrap:wrap;margin:12px 0;list-style:none}
.small{font-size:12px;color:#333}

/* FAQ */
.faq{max-width:800px;margin:18px auto 0}
.faq__item{background:#fff;border-radius:12px;margin-bottom:10px;padding:14px 18px}
.faq__item summary{cursor:pointer;font-weight:700}

/* Footer */
.footer{background:#0f1115;color:#e5e7eb;padding:50px 0}
.footer__grid{display:grid;gap:24px;grid-template-columns:repeat(auto-fit,minmax(220px,1fr))}
.footer__logo{height:34px;margin-bottom:10px}
.muted{color:#9aa3af}

/* Animations */
.fade-in{opacity:0;transform:translateY(16px);transition:all .6s ease}
.fade-in.visible{opacity:1;transform:translateY(0)}
@media (max-width:900px){.compare{grid-template-columns:1fr}}
