/* AKORE.shop — landing page. Self-contained, brand-consistent with the analyzer. */
* { margin: 0; padding: 0; box-sizing: border-box; }
:root {
  --bg: #0e0f13;
  --surface: #161821;
  --surface-2: #1d2030;
  --border: #262a3a;
  --text: #e8eaed;
  --muted: #9aa0ad;
  --primary: #5b8cff;
  --primary-2: #7aa2ff;
  --ok: #34d399;
}
html { scroll-behavior: smooth; }
body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  background: var(--bg); color: var(--text); -webkit-font-smoothing: antialiased; line-height: 1.55;
}
a { color: var(--primary); text-decoration: none; }
a:hover { text-decoration: underline; }
b { color: var(--text); }
.muted { color: var(--muted); }
.accent { color: var(--primary); }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 6px;
  font-weight: 700; font-size: 15px; padding: 12px 22px; border-radius: 10px;
  border: 1px solid transparent; cursor: pointer; transition: filter .15s, background .15s, border-color .15s;
  text-decoration: none;
}
.btn:hover { text-decoration: none; }
.btn-primary { background: var(--primary); color: #fff; }
.btn-primary:hover { filter: brightness(1.08); }
.btn-ghost { background: transparent; color: var(--text); border-color: var(--border); }
.btn-ghost:hover { border-color: var(--primary); }
.btn-sm { padding: 8px 15px; font-size: 14px; }
.btn-block { width: 100%; }

/* Nav */
.nav {
  position: sticky; top: 0; z-index: 20;
  display: flex; align-items: center; gap: 22px;
  padding: 13px 28px; background: rgba(14,15,19,.82); backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}
.brand { display: inline-flex; align-items: center; line-height: 0; }
.brand-logo { height: 26px; width: auto; filter: brightness(0) invert(1); }
.nav-links { display: flex; gap: 22px; margin-left: auto; }
.nav-links a { color: var(--muted); font-size: 14.5px; font-weight: 500; }
.nav-links a:hover { color: var(--text); text-decoration: none; }
@media (max-width: 720px) { .nav-links { display: none; } .nav { gap: 12px; } }

/* Layout */
section { max-width: 1080px; margin: 0 auto; }
.section { padding: 72px 24px; }
.section-title { font-size: 30px; font-weight: 800; letter-spacing: -.5px; text-align: center; }
.section-sub { text-align: center; color: var(--muted); margin-top: 12px; max-width: 620px; margin-left: auto; margin-right: auto; }

/* Hero */
.hero { text-align: center; padding: 76px 24px 60px; max-width: 860px; }
.eyebrow {
  display: inline-block; font-size: 12.5px; font-weight: 700; letter-spacing: 1.5px;
  text-transform: uppercase; color: var(--primary);
  border: 1px solid rgba(91,140,255,.35); padding: 5px 12px; border-radius: 999px; margin-bottom: 22px;
}
.hero h1 { font-size: clamp(34px, 6vw, 56px); font-weight: 850; line-height: 1.08; letter-spacing: -1.5px; }
.lead { font-size: 18px; color: var(--muted); margin: 22px auto 0; max-width: 640px; }
.hero-cta { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; margin-top: 30px; }
.hero-trust { margin-top: 22px; font-size: 13.5px; color: var(--muted); }

/* Bands */
.band { background: var(--surface); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); max-width: none; }
.band > * , .band-grid { max-width: 1080px; margin: 0 auto; }
.band-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; padding: 60px 24px; }
.band-grid h2 { font-size: 23px; font-weight: 800; margin-bottom: 10px; }
@media (max-width: 720px) { .band-grid { grid-template-columns: 1fr; gap: 28px; } }
.demo { text-align: center; padding: 64px 24px; }
.demo h2 { font-size: 26px; font-weight: 800; }
.demo p { max-width: 600px; margin: 12px auto 26px; }
.demo .hero-cta { margin-top: 0; }

/* Features */
.feature-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-top: 44px; }
@media (max-width: 900px) { .feature-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .feature-grid { grid-template-columns: 1fr; } }
.feature { background: var(--surface); border: 1px solid var(--border); border-radius: 14px; padding: 20px; }
.f-ico { font-size: 24px; }
.feature h3 { font-size: 15.5px; font-weight: 700; margin: 12px 0 6px; }
.feature p { font-size: 13.5px; color: var(--muted); }

/* Steps */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 44px; }
@media (max-width: 720px) { .steps { grid-template-columns: 1fr; } }
.step { background: var(--surface); border: 1px solid var(--border); border-radius: 14px; padding: 24px; }
.step-n {
  display: inline-flex; align-items: center; justify-content: center;
  width: 34px; height: 34px; border-radius: 50%; background: rgba(91,140,255,.15);
  color: var(--primary); font-weight: 800; font-size: 16px; margin-bottom: 14px;
}
.step h3 { font-size: 16.5px; font-weight: 700; margin-bottom: 7px; }
.step p { font-size: 14px; color: var(--muted); }

/* Pricing */
.tier-label { text-align: center; font-size: 18px; font-weight: 800; margin: 46px 0 18px; }
.tier-label span { color: var(--muted); font-weight: 500; font-size: 14px; }
.price-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.price-grid-2 { grid-template-columns: repeat(2, 1fr); max-width: 720px; margin: 0 auto; }
@media (max-width: 820px) { .price-grid, .price-grid-2 { grid-template-columns: 1fr; } }
.price-card {
  position: relative; background: var(--surface); border: 1px solid var(--border);
  border-radius: 16px; padding: 26px 22px; display: flex; flex-direction: column;
}
.price-card.featured { border-color: var(--primary); box-shadow: 0 0 0 1px var(--primary), 0 18px 50px rgba(91,140,255,.12); }
.pc-tag {
  position: absolute; top: -11px; left: 50%; transform: translateX(-50%);
  background: var(--primary); color: #fff; font-size: 11.5px; font-weight: 700;
  padding: 4px 12px; border-radius: 999px; letter-spacing: .3px;
}
.pc-name { font-size: 15px; font-weight: 700; color: var(--muted); text-transform: uppercase; letter-spacing: 1px; }
.pc-price { font-size: 34px; font-weight: 850; margin: 8px 0 16px; letter-spacing: -1px; }
.pc-per { font-size: 16px; font-weight: 600; color: var(--muted); }
.price-card ul { list-style: none; display: flex; flex-direction: column; gap: 9px; flex: 1 1 auto; margin-bottom: 20px; }
.price-card li { position: relative; padding-left: 24px; font-size: 14px; color: var(--text); }
.price-card li small { color: var(--muted); }
.price-card li::before { content: "✓"; position: absolute; left: 0; color: var(--ok); font-weight: 800; }
.price-note { text-align: center; color: var(--muted); font-size: 14px; margin-top: 26px; }
.pc-tagline { font-size: 13px; color: var(--muted); margin: -8px 0 14px; min-height: 32px; }

/* Why-us comparison (you work vs we work) */
.vs { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-top: 42px; }
@media (max-width: 720px) { .vs { grid-template-columns: 1fr; } }
.vs-col { border-radius: 16px; padding: 26px 24px; border: 1px solid var(--border); background: var(--surface); }
.vs-us { border-color: var(--primary); box-shadow: 0 0 0 1px var(--primary), 0 18px 50px rgba(91,140,255,.12); }
.vs-head { font-size: 16px; font-weight: 800; margin-bottom: 18px; }
.vs-them .vs-head { color: var(--muted); }
.vs-us .vs-head { color: var(--primary); }
.vs-col ul { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.vs-col li { position: relative; padding-left: 28px; font-size: 14.5px; }
.vs-them li { color: var(--muted); }
.vs-them li::before { content: "✗"; position: absolute; left: 0; color: #f87171; font-weight: 800; }
.vs-us li::before { content: "✓"; position: absolute; left: 0; color: var(--ok); font-weight: 800; }
.vs-kicker { text-align: center; font-size: 17px; font-weight: 700; margin-top: 30px; max-width: 640px; margin-left: auto; margin-right: auto; line-height: 1.5; }

/* FAQ */
.faq { max-width: 760px; margin: 38px auto 0; display: flex; flex-direction: column; gap: 10px; }
.faq details { background: var(--surface); border: 1px solid var(--border); border-radius: 12px; padding: 4px 18px; }
.faq summary { cursor: pointer; font-weight: 650; font-size: 15.5px; padding: 14px 0; list-style: none; display: flex; justify-content: space-between; align-items: center; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; color: var(--primary); font-size: 22px; font-weight: 400; line-height: 1; }
.faq details[open] summary::after { content: "−"; }
.faq details p { color: var(--muted); font-size: 14.5px; padding: 0 0 16px; }

/* Contact form */
.contact { max-width: 620px; }
.lead-form { margin-top: 32px; display: flex; flex-direction: column; gap: 12px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
@media (max-width: 520px) { .form-row { grid-template-columns: 1fr; } }
.lead-form input, .lead-form textarea {
  width: 100%; background: var(--surface); border: 1px solid var(--border); border-radius: 10px;
  padding: 13px 15px; color: var(--text); font: inherit; font-size: 15px;
}
.lead-form input:focus, .lead-form textarea:focus { outline: none; border-color: var(--primary); }
.lead-form textarea { resize: vertical; }
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; opacity: 0; }
.contact-alt { text-align: center; color: var(--muted); margin-top: 18px; font-size: 14.5px; }

/* Footer */
.foot { border-top: 1px solid var(--border); text-align: center; padding: 44px 24px; color: var(--muted); }
.foot-logo { height: 24px; filter: brightness(0) invert(1); opacity: .9; }
.foot p { font-size: 13.5px; margin-top: 12px; }
.foot-links a { color: var(--muted); }
.foot-links a:hover { color: var(--text); }
.foot-fine { font-size: 12px; opacity: .7; }

/* Success / sent banner (shown by contact.php redirect ?sent=1) */
.sent-banner {
  max-width: 620px; margin: 20px auto 0; padding: 14px 18px; border-radius: 12px;
  background: rgba(52,211,153,.1); border: 1px solid rgba(52,211,153,.5); color: var(--ok);
  text-align: center; font-weight: 600;
}
