/* ==========================================================================
   NorgeIPTV VIP — norgeiptv.vip
   Modular, lightweight CSS. No frameworks. Lighthouse-100 friendly.
   ========================================================================== */

/* ---------- Tokens ---------- */
:root {
  --bg: #0a0f1c;
  --bg-2: #0e1626;
  --card: #131c30;
  --card-2: #182338;
  --text: #e9eef7;
  --muted: #9aa7bd;
  --gold: #e8b64c;
  --gold-2: #f5d488;
  --green: #34d399;
  --red: #f87171;
  --border: rgba(255, 255, 255, 0.08);
  --radius: 14px;
  --container: 1140px;
  --font: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
/* Hard guarantee against sideways scrolling (clip does not break sticky). */
html, body { overflow-x: clip; }
body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  font-size: 16px;
}
img, svg { max-width: 100%; display: block; }
a { color: var(--gold-2); text-decoration: none; }
a:hover { text-decoration: underline; }
ul, ol { list-style-position: inside; }
button { font-family: inherit; cursor: pointer; }

/* ---------- Layout ---------- */
.container { max-width: var(--container); margin: 0 auto; padding: 0 20px; }
section { padding: 72px 0; }
section.alt { background: var(--bg-2); }

/* ---------- Typography ---------- */
h1, h2, h3, h4 { line-height: 1.25; font-weight: 800; letter-spacing: -0.01em; }
h1 { font-size: clamp(1.9rem, 4.5vw, 3.1rem); }
h2 { font-size: clamp(1.5rem, 3vw, 2.2rem); margin-bottom: 16px; }
h3 { font-size: 1.15rem; margin-bottom: 8px; }
p  { margin-bottom: 14px; }
.lead { font-size: 1.12rem; color: var(--muted); max-width: 720px; }
.center { text-align: center; }
.center .lead { margin: 0 auto 14px; }
.kicker {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.gold { color: var(--gold); }
.muted { color: var(--muted); }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(10, 15, 28, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 1.15rem;
  color: var(--text);
}
.logo:hover { text-decoration: none; }
.logo-mark {
  width: 34px;
  height: 34px;
  border-radius: 9px;
  background: linear-gradient(135deg, var(--gold), #b8860b);
  color: #0a0f1c;
  display: grid;
  place-items: center;
  font-weight: 900;
  font-size: 1.05rem;
}
.logo .vip { color: var(--gold); }
.main-nav { display: flex; align-items: center; gap: 26px; }
.main-nav a { color: var(--text); font-weight: 600; font-size: 0.95rem; }
.main-nav a:hover { color: var(--gold-2); text-decoration: none; }
.nav-toggle {
  display: none;
  background: none;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 8px 10px;
  color: var(--text);
  font-size: 1.1rem;
  line-height: 1;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 1rem;
  border: 0;
  text-align: center;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.btn:hover { text-decoration: none; transform: translateY(-2px); }
.btn-gold {
  background: linear-gradient(135deg, var(--gold-2), var(--gold));
  color: #100a02;
  box-shadow: 0 6px 24px rgba(232, 182, 76, 0.35);
}
.btn-ghost {
  background: transparent;
  color: var(--text);
  border: 1px solid rgba(255, 255, 255, 0.25);
}
.btn-ghost:hover { border-color: var(--gold); color: var(--gold-2); }
.btn-block { display: block; width: 100%; }
.btn-sm { padding: 10px 18px; font-size: 0.9rem; }

/* ---------- Hero ---------- */
.hero {
  padding: 88px 0 72px;
  background:
    radial-gradient(1000px 500px at 80% -10%, rgba(52, 211, 153, 0.12), transparent 60%),
    radial-gradient(900px 500px at 10% 0%, rgba(232, 182, 76, 0.12), transparent 55%),
    var(--bg);
}
.hero-grid { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 48px; align-items: center; }
.hero h1 { margin: 14px 0 18px; }
.hero .lead { margin-bottom: 26px; }
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 22px; }
.hero-trust { display: flex; gap: 18px; flex-wrap: wrap; font-size: 0.9rem; color: var(--muted); }
.hero-trust span { display: flex; align-items: center; gap: 6px; }
.stars { color: var(--gold); letter-spacing: 2px; }
.rating-line { margin-bottom: 10px; font-weight: 600; }

.hero-panel {
  background: linear-gradient(160deg, var(--card), #0d1424);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
}
.hero-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.hero-stats .stat {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 18px;
  text-align: center;
}
.stat b { display: block; font-size: 1.5rem; color: var(--gold-2); }
.stat span { font-size: 0.85rem; color: var(--muted); }

/* ---------- Chips ---------- */
.chip-row { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin-top: 24px; }
.chip {
  padding: 8px 18px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--card);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--muted);
}

/* ---------- Cards / grids ---------- */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 36px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; margin-top: 36px; }
.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 26px;
}
.card h3 { display: flex; align-items: center; gap: 10px; }
.card .icon {
  width: 40px;
  height: 40px;
  flex: none;
  border-radius: 10px;
  background: rgba(232, 182, 76, 0.12);
  color: var(--gold);
  display: grid;
  place-items: center;
  font-size: 1.15rem;
}
.card p { color: var(--muted); margin-bottom: 0; }
a.card { color: var(--text); display: block; transition: border-color 0.15s ease, transform 0.15s ease; }
a.card:hover { text-decoration: none; border-color: var(--gold); transform: translateY(-3px); }

/* ---------- Checklist ---------- */
.checklist { list-style: none; margin: 18px 0; }
.checklist li { padding: 7px 0 7px 30px; position: relative; color: var(--text); }
.checklist li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--green);
  font-weight: 800;
}

/* ---------- Pricing ---------- */
.toggle-wrap { display: flex; justify-content: center; flex-wrap: wrap; gap: 8px; margin: 26px 0 8px; }
.toggle-wrap button {
  padding: 10px 18px;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: var(--card);
  color: var(--muted);
  font-weight: 700;
  font-size: 0.95rem;
}
@media (max-width: 680px) {
  .toggle-wrap button { padding: 9px 12px; font-size: 0.88rem; }
}
.toggle-wrap button.active {
  background: linear-gradient(135deg, var(--gold-2), var(--gold));
  color: #100a02;
  border-color: var(--gold);
}
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 30px; align-items: stretch; }
.plan {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 30px 26px;
  position: relative;
  display: flex;
  flex-direction: column;
}
.plan.featured { border-color: var(--gold); box-shadow: 0 12px 40px rgba(232, 182, 76, 0.15); }
.plan-badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--gold-2), var(--gold));
  color: #100a02;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 999px;
  white-space: nowrap;
}
.plan h3 { font-size: 1.25rem; }
.plan .plan-sub { color: var(--muted); font-size: 0.92rem; margin-bottom: 18px; }
.price { display: flex; align-items: baseline; gap: 6px; margin-bottom: 4px; }
.price b { font-size: 2.6rem; color: var(--text); }
.price span { color: var(--muted); font-weight: 600; }
.price-note { font-size: 0.88rem; color: var(--green); font-weight: 700; margin-bottom: 18px; }
.plan .checklist { flex: 1; font-size: 0.94rem; }
.plan .checklist li { padding-top: 5px; padding-bottom: 5px; }
.plan .btn { margin-top: 18px; }
.plan .secure { text-align: center; font-size: 0.8rem; color: var(--muted); margin-top: 10px; }

/* ---------- Order recap ---------- */
.order-recap {
  max-width: 640px;
  margin: 34px auto 0;
  background: var(--bg-2);
  border: 1px solid var(--gold);
  border-radius: var(--radius);
  padding: 24px 28px;
  text-align: center;
}
.order-recap p { margin-bottom: 6px; color: var(--muted); font-size: 0.95rem; }
.order-recap .recap-line { font-size: 1.15rem; font-weight: 800; color: var(--text); margin-bottom: 14px; }

/* ---------- Comparison table ---------- */
.table-scroll { overflow-x: auto; margin-top: 30px; border: 1px solid var(--border); border-radius: var(--radius); }
table.compare { width: 100%; border-collapse: collapse; min-width: 640px; background: var(--card); }
table.compare th, table.compare td { padding: 14px 18px; text-align: left; border-bottom: 1px solid var(--border); font-size: 0.95rem; }
table.compare thead th { background: var(--bg-2); font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.05em; }
table.compare td:nth-child(2) { color: var(--gold-2); font-weight: 700; }
table.compare .yes { color: var(--green); font-weight: 800; }
table.compare .no { color: var(--red); font-weight: 800; }

/* ---------- Steps ---------- */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 36px; counter-reset: step; }
.step { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius); padding: 28px; }
.step-num {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-2), var(--gold));
  color: #100a02;
  font-weight: 900;
  font-size: 1.2rem;
  display: grid;
  place-items: center;
  margin-bottom: 16px;
}
.step p { color: var(--muted); margin-bottom: 0; }

/* ---------- Testimonials ---------- */
.review { display: flex; flex-direction: column; }
.review .stars { margin-bottom: 12px; }
.review blockquote { color: var(--text); font-style: normal; flex: 1; margin-bottom: 14px; }
.review .who { font-weight: 700; }
.review .where { color: var(--muted); font-size: 0.88rem; }

/* ---------- FAQ ---------- */
.faq { max-width: 820px; margin: 34px auto 0; }
.faq details {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 12px;
  margin-bottom: 12px;
  overflow: hidden;
}
.faq summary {
  padding: 18px 22px;
  font-weight: 700;
  cursor: pointer;
  list-style: none;
  position: relative;
  padding-right: 46px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--gold);
  font-size: 1.4rem;
  font-weight: 400;
}
.faq details[open] summary::after { content: "–"; }
.faq .faq-a { padding: 0 22px 18px; color: var(--muted); }

/* ---------- CTA band ---------- */
.cta-band {
  background:
    radial-gradient(700px 300px at 50% 0%, rgba(232, 182, 76, 0.15), transparent 60%),
    var(--bg-2);
  text-align: center;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.cta-band .hero-ctas { justify-content: center; margin-top: 26px; }
.cta-band .hero-trust { justify-content: center; margin-top: 20px; }

/* ---------- Article / guide pages ---------- */
.breadcrumbs { font-size: 0.85rem; color: var(--muted); padding: 18px 0 0; }
.breadcrumbs a { color: var(--muted); }
.breadcrumbs a:hover { color: var(--gold-2); }
.article { max-width: 820px; margin: 0 auto; }
.article h1 { margin: 12px 0 18px; }
.article h2 { margin-top: 44px; }
.article h3 { margin-top: 28px; }
.article ul, .article ol { margin: 0 0 16px 4px; }
.article li { margin-bottom: 6px; color: var(--text); }
.article .lead { margin-bottom: 26px; }
.article .card { margin: 26px 0; }
.article table.compare { min-width: 0; }

/* ---------- Forms ---------- */
.form-card { max-width: 560px; margin: 34px auto 0; background: var(--card); border: 1px solid var(--border); border-radius: var(--radius); padding: 32px; }
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-weight: 700; font-size: 0.9rem; margin-bottom: 6px; }
.form-group input, .form-group select, .form-group textarea {
  width: 100%;
  padding: 13px 15px;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: var(--bg-2);
  color: var(--text);
  font-family: inherit;
  font-size: 1rem;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  outline: 2px solid var(--gold);
  border-color: transparent;
}
/* Honeypot — invisible to humans, present for bots */
.hp-field { position: absolute; left: -9999px; top: -9999px; height: 0; width: 0; overflow: hidden; }
.form-msg { margin-top: 16px; font-weight: 700; display: none; }
.form-msg.ok { display: block; color: var(--green); }
.form-msg.err { display: block; color: var(--red); }

/* ---------- Illustrations ---------- */
.section-img {
  display: block;
  width: 100%;
  height: auto;
  max-width: 640px;
  margin: 28px auto 4px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
}
.section-img.wide { max-width: 760px; }
.article .section-img { max-width: 100%; margin: 22px 0 8px; }
.hero-tv {
  width: 100%;
  height: auto;
  border-radius: 10px;
  border: 1px solid var(--border);
  margin-bottom: 20px;
}

/* ---------- Blog ---------- */
.post-card { display: flex; flex-direction: column; }
.post-thumb {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 10px;
  border: 1px solid var(--border);
  margin-bottom: 14px;
}
.post-date {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 6px;
}
.post-hero {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  margin: 6px 0 26px;
}

/* ---------- Contact CTA buttons (WhatsApp / e-post) ---------- */
.cta-buttons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  width: 100%;
  margin: 36px auto 0;
}
.btn-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: 26px 30px;
  min-height: 96px;
  border-radius: 16px;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.btn-cta:hover { text-decoration: none; transform: translateY(-3px); }
.cta-icon { font-size: 2.1rem; flex: none; }
.cta-text { display: flex; flex-direction: column; text-align: left; line-height: 1.35; }
.cta-text b { font-size: 1.25rem; }
.cta-text small { font-weight: 600; opacity: 0.85; font-size: 0.92rem; }
.btn-wa {
  background: linear-gradient(135deg, #3ae374, #25d366);
  color: #06130a;
  box-shadow: 0 8px 28px rgba(37, 211, 102, 0.35);
}
.btn-wa:hover { box-shadow: 0 12px 34px rgba(37, 211, 102, 0.45); }
.btn-mail {
  background: linear-gradient(135deg, var(--gold-2), var(--gold));
  color: #100a02;
  box-shadow: 0 8px 28px rgba(232, 182, 76, 0.35);
}
.btn-mail:hover { box-shadow: 0 12px 34px rgba(232, 182, 76, 0.45); }
@media (max-width: 680px) {
  .cta-buttons { grid-template-columns: 1fr; gap: 14px; margin-top: 28px; }
  .btn-cta { padding: 20px 22px; min-height: 84px; justify-content: flex-start; }
  .cta-text b { font-size: 1.1rem; }
}

/* ---------- Checkout ---------- */
.checkout-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 26px;
  margin-top: 40px;
  align-items: start;
}
.checkout-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
}
.checkout-heading {
  font-size: 1.2rem;
  margin-bottom: 22px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--border);
}
.group-label { display: block; font-weight: 700; font-size: 0.9rem; margin-bottom: 10px; }
.req { color: var(--gold); }
.field-hint { font-size: 0.82rem; color: var(--muted); margin: 6px 0 0; }
.radio-pills { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.radio-pill input {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: 0;
  padding: 0;
  opacity: 0;
  pointer-events: none;
  clip: rect(0 0 0 0);
}
.radio-pill span {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 12px;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: var(--bg-2);
  font-weight: 700;
  font-size: 0.92rem;
  text-align: center;
  cursor: pointer;
  transition: border-color 0.15s ease, background 0.15s ease;
}
.radio-pill input:checked + span {
  border-color: var(--gold);
  background: rgba(232, 182, 76, 0.1);
  color: var(--gold-2);
}
.radio-pill input:focus-visible + span { outline: 2px solid var(--gold); }

.summary-card { position: sticky; top: 84px; }
.summary-price {
  background: var(--bg-2);
  border: 1px solid var(--gold);
  border-radius: 12px;
  padding: 20px 22px;
  margin: 6px 0 20px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.sum-label { font-size: 0.8rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--muted); }
.sum-amount { font-size: 2.3rem; font-weight: 800; color: var(--gold-2); line-height: 1.15; }
.sum-permonth { font-size: 0.95rem; font-weight: 700; color: var(--green); }
.summary-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
  font-size: 0.82rem;
  color: var(--muted);
  font-weight: 600;
}

.success-card { max-width: 720px; margin: 40px auto 0; }
.success-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: linear-gradient(135deg, #3ae374, #25d366);
  color: #06130a;
  font-size: 2.4rem;
  font-weight: 900;
  display: grid;
  place-items: center;
  margin: 0 auto 18px;
}
.success-steps {
  text-align: left;
  max-width: 480px;
  margin: 0 auto;
  color: var(--muted);
}
.success-steps li { margin-bottom: 10px; }
.success-steps b { color: var(--text); }

.thankyou-info { max-width: 640px; margin: 0 auto; }
.info-step {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 18px 20px;
  margin-bottom: 14px;
}
.info-icon { font-size: 1.7rem; flex: none; line-height: 1.2; }
.info-step b { display: block; margin-bottom: 4px; }
.info-step p { color: var(--muted); margin: 0; font-size: 0.95rem; }

@media (max-width: 960px) {
  .checkout-grid { grid-template-columns: 1fr; }
  .summary-card { position: static; order: -1; }
}
@media (max-width: 680px) {
  .checkout-card { padding: 24px 20px; }
  .radio-pills { grid-template-columns: 1fr; }
}

/* ---------- Admin ---------- */
.admin-login-wrap {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 20px;
}
.admin-login { width: 100%; max-width: 400px; margin: 0; }
.admin-login .logo-mark { display: grid; }
.admin-topbar { justify-content: space-between; }
.admin-actions { display: flex; gap: 10px; align-items: center; }
.inline-form { display: inline-flex; gap: 6px; align-items: center; margin: 0; }
.admin-main { padding: 30px 20px 40px; }
.admin-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 34px;
}
.admin-stats .stat {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 18px;
  text-align: center;
}
.admin-section { margin-bottom: 40px; }
.admin-section h2 { font-size: 1.3rem; margin-bottom: 14px; }
.admin-table th, .admin-table td { padding: 10px 12px; font-size: 0.87rem; white-space: nowrap; }
.admin-table td:nth-child(2) { color: var(--text); font-weight: 400; }
.admin-note { max-width: 220px; white-space: normal !important; font-size: 0.82rem; color: var(--muted); }
.status-select {
  padding: 7px 10px;
  border-radius: 8px;
  border: 1px solid var(--border);
  background: var(--bg-2);
  color: var(--text);
  font-family: inherit;
  font-size: 0.85rem;
  font-weight: 700;
}
.status-select.status-new { border-color: var(--gold); color: var(--gold-2); }
.status-select.status-betalt { border-color: var(--green); color: var(--green); }
.status-select.status-levert { border-color: var(--green); }
.status-select.status-kansellert { border-color: var(--red); color: var(--red); }
.btn-xs { padding: 7px 12px; font-size: 0.8rem; }
.btn-danger {
  background: rgba(248, 113, 113, 0.12);
  color: var(--red);
  border: 1px solid rgba(248, 113, 113, 0.4);
}
.btn-danger:hover { background: rgba(248, 113, 113, 0.22); border-color: var(--red); }
@media (max-width: 800px) {
  .admin-stats { grid-template-columns: 1fr 1fr; }
}

/* ---------- Footer ---------- */
.site-footer { background: #070b14; border-top: 1px solid var(--border); padding: 56px 0 28px; font-size: 0.92rem; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 32px; margin-bottom: 36px; }
.footer-grid h4 { font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--muted); margin-bottom: 14px; }
.footer-grid ul { list-style: none; }
.footer-grid li { margin-bottom: 9px; }
.footer-grid a { color: var(--text); }
.footer-grid a:hover { color: var(--gold-2); }
.footer-about p { color: var(--muted); }
.footer-bottom { border-top: 1px solid var(--border); padding-top: 22px; display: flex; justify-content: space-between; gap: 14px; flex-wrap: wrap; color: var(--muted); font-size: 0.85rem; }

/* ---------- Responsive ---------- */
@media (max-width: 960px) {
  .hero-grid { grid-template-columns: 1fr; }
  .grid-3, .pricing-grid, .steps { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 680px) {
  section { padding: 52px 0; }
  .grid-3, .grid-2, .pricing-grid, .steps { grid-template-columns: 1fr; }
  .plan.featured { order: -1; }
  .main-nav {
    display: none;
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--bg-2);
    border-bottom: 1px solid var(--border);
    padding: 10px 20px 16px;
  }
  .main-nav.open { display: flex; }
  .main-nav a { padding: 12px 0; border-bottom: 1px solid var(--border); }
  .main-nav a:last-child { border-bottom: 0; }
  .nav-toggle { display: block; }
  .hero { padding: 56px 0 48px; }
  .footer-grid { grid-template-columns: 1fr; }
}
