/* ============================================================
   Smart Computer Care — smartcomputercare.com
   Dark, tech-forward. No build step. Pure CSS.
   ============================================================ */

:root {
  --bg: #070b14;
  --bg-soft: #0a101e;
  --panel: #0c1322;
  --card: #0d1527;
  --line: rgba(148, 163, 184, 0.14);
  --line-strong: rgba(148, 163, 184, 0.25);
  --text: #e2e8f0;
  --muted: #94a3b8;
  --faint: #64748b;
  --accent: #38bdf8;
  --accent-2: #818cf8;
  --grad: linear-gradient(135deg, #38bdf8, #818cf8);
  --glow: rgba(56, 189, 248, 0.35);
  --radius: 16px;
  --font-head: "Space Grotesk", system-ui, sans-serif;
  --font-body: "Inter", system-ui, sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16.5px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: var(--font-head);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.015em;
}

h1 { font-size: clamp(2.3rem, 5vw, 3.6rem); font-weight: 700; }
h2 { font-size: clamp(1.7rem, 3.4vw, 2.4rem); }
h3 { font-size: 1.18rem; }

p { color: var(--muted); }

a { color: var(--accent); text-decoration: none; }
a:hover { text-decoration: none; }

img, svg { display: block; max-width: 100%; }

ul { list-style: none; }

::selection { background: rgba(56, 189, 248, 0.3); }

.container {
  width: min(1140px, 100% - 3rem);
  margin-inline: auto;
}

/* ---------- text helpers ---------- */

.grad {
  background: linear-gradient(110deg, #38bdf8, #818cf8, #38bdf8);
  background-size: 220% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: grad-sweep 7s ease-in-out infinite;
}

@keyframes grad-sweep {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

.eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.9rem;
}

.lede {
  font-size: 1.15rem;
  line-height: 1.7;
  color: var(--muted);
  max-width: 60ch;
}

/* ---------- buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 1.6rem;
  border-radius: 999px;
  background: var(--grad);
  color: #06090f;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.98rem;
  border: none;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, filter 0.18s ease;
  box-shadow: 0 0 0 rgba(56, 189, 248, 0);
  white-space: nowrap;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px var(--glow);
  filter: brightness(1.05);
}

.btn svg { width: 18px; height: 18px; }

.btn.ghost {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--line-strong);
}

.btn.ghost:hover {
  border-color: var(--accent);
  color: var(--accent);
  box-shadow: 0 8px 30px rgba(56, 189, 248, 0.12);
}

.btn.small {
  padding: 0.55rem 1.15rem;
  font-size: 0.88rem;
}

/* ---------- nav ---------- */

.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(7, 11, 20, 0.82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  height: 72px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.12rem;
  color: var(--text);
  letter-spacing: -0.01em;
  flex-shrink: 0;
}

.logo-img {
  height: 46px;
  width: auto;
  display: block;
  transition: filter 0.2s ease;
}

.brand:hover .logo-img { filter: brightness(1.12); }

.footer .logo-img { height: 52px; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.6rem;
}

.nav-links > li > a {
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.4rem 0;
  transition: color 0.15s ease;
}

.nav-links > li > a:hover { color: var(--text); }

.nav-links > li > a svg { width: 14px; height: 14px; transition: transform 0.2s ease; }

.nav-phone {
  font-family: var(--font-head);
  font-weight: 600;
  color: var(--text) !important;
}

.nav-phone:hover { color: var(--accent) !important; }

.nav-toggle {
  display: none;
  background: none;
  border: 1px solid var(--line-strong);
  border-radius: 10px;
  padding: 0.5rem;
  cursor: pointer;
  color: var(--text);
}

.nav-toggle svg { width: 22px; height: 22px; }
.nav-toggle .icon-close { display: none; }
.nav.open .nav-toggle .icon-menu { display: none; }
.nav.open .nav-toggle .icon-close { display: block; }

/* dropdown */

.has-dropdown { position: relative; }

.dropdown {
  position: absolute;
  top: calc(100% + 10px);
  left: -1rem;
  width: 560px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.25rem;
  padding: 0.75rem;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.55);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s;
}

.has-dropdown:hover .dropdown,
.has-dropdown:focus-within .dropdown,
.has-dropdown.open .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.has-dropdown:hover > a svg,
.has-dropdown.open > a svg { transform: rotate(180deg); }

.dropdown a {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  padding: 0.65rem 0.75rem;
  border-radius: 10px;
  transition: background 0.15s ease;
}

.dropdown a:hover { background: rgba(56, 189, 248, 0.08); }

.dropdown .d-icon {
  width: 18px;
  height: 18px;
  margin-top: 0.2rem;
  color: var(--accent);
  flex-shrink: 0;
}

.dropdown b {
  display: block;
  color: var(--text);
  font-size: 0.92rem;
  font-weight: 600;
}

.dropdown small {
  display: block;
  color: var(--faint);
  font-size: 0.8rem;
  line-height: 1.4;
}

/* ---------- hero ---------- */

.hero, .page-hero {
  position: relative;
  overflow: hidden;
}

.hero::before, .page-hero::before {
  content: "";
  position: absolute;
  inset: -12%;
  background:
    radial-gradient(ellipse 60% 50% at 75% -10%, rgba(129, 140, 248, 0.18), transparent 60%),
    radial-gradient(ellipse 55% 45% at 15% 0%, rgba(56, 189, 248, 0.16), transparent 60%);
  pointer-events: none;
  animation: glow-drift 16s ease-in-out infinite alternate;
}

@keyframes glow-drift {
  from { transform: translate3d(-2%, -1%, 0) scale(1); }
  to { transform: translate3d(2.5%, 2%, 0) scale(1.07); }
}

.hero::after, .page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(148, 163, 184, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(148, 163, 184, 0.05) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 80% 70% at 50% 0%, black, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse 80% 70% at 50% 0%, black, transparent 75%);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 1;
  padding: 6.5rem 0 4.5rem;
  max-width: 760px;
}

.page-hero .hero-inner { padding: 4.5rem 0 3.5rem; }

.hero-inner h1 { margin: 0.4rem 0 1.2rem; }

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 2rem;
}

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 2.5rem;
  margin-top: 3.2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--line);
}

.stat .num {
  font-family: var(--font-head);
  font-size: 1.9rem;
  font-weight: 700;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.stat .lbl {
  font-size: 0.85rem;
  color: var(--faint);
  margin-top: 0.15rem;
}

.crumbs {
  position: relative;
  z-index: 1;
  font-size: 0.85rem;
  color: var(--faint);
  padding-top: 1.6rem;
}

.crumbs a { color: var(--faint); }
.crumbs a:hover { color: var(--accent); }
.crumbs span { margin: 0 0.4rem; opacity: 0.6; }

/* ---------- sections ---------- */

.section { padding: 5rem 0; position: relative; }

.section.alt {
  background: var(--bg-soft);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.section-head { max-width: 640px; margin-bottom: 3rem; }

.section-head.center {
  margin-inline: auto;
  text-align: center;
}

.section-head h2 { margin-bottom: 0.8rem; }

/* ---------- grids & cards ---------- */

.grid { display: grid; gap: 1.25rem; }
.grid.cols-2 { grid-template-columns: repeat(2, 1fr); }
.grid.cols-3 { grid-template-columns: repeat(3, 1fr); }
.grid.cols-4 { grid-template-columns: repeat(4, 1fr); }

.card {
  position: relative;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.7rem;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
  overflow: hidden;
}

.card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 12%;
  right: 12%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(56, 189, 248, 0.7), rgba(129, 140, 248, 0.5), transparent);
  opacity: 0;
  transition: opacity 0.25s ease;
}

.card:hover::before { opacity: 1; }

.card h3 { margin-bottom: 0.55rem; color: var(--text); }

.card p { font-size: 0.95rem; }

.card .icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: rgba(56, 189, 248, 0.1);
  border: 1px solid rgba(56, 189, 248, 0.22);
  color: var(--accent);
  margin-bottom: 1.1rem;
}

.card .icon svg { width: 22px; height: 22px; }

a.card, .card-link { display: block; color: inherit; }

.card-link:hover, a.card:hover {
  transform: translateY(-4px);
  border-color: rgba(56, 189, 248, 0.45);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(56, 189, 248, 0.1);
}

.card-link .more {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-top: 0.9rem;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--accent);
}

.card-link .more svg { width: 15px; height: 15px; transition: transform 0.18s ease; }
.card-link:hover .more svg { transform: translateX(3px); }

.flag {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--grad);
  color: #06090f;
  font-family: var(--font-head);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.3rem 1rem;
  border-radius: 999px;
  white-space: nowrap;
}

.tag {
  display: inline-block;
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--accent-2);
  background: rgba(129, 140, 248, 0.12);
  border: 1px solid rgba(129, 140, 248, 0.3);
  padding: 0.2rem 0.7rem;
  border-radius: 999px;
  margin-bottom: 0.9rem;
}

/* ---------- check grid ---------- */

.check-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.check {
  display: flex;
  gap: 0.85rem;
  align-items: flex-start;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 1.15rem 1.3rem;
}

.check svg {
  width: 20px;
  height: 20px;
  color: var(--accent);
  flex-shrink: 0;
  margin-top: 0.2rem;
}

.check b {
  display: block;
  color: var(--text);
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 1rem;
  margin-bottom: 0.15rem;
}

.check p, .check small {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.55;
}

/* ---------- split ---------- */

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: center;
}

.split h2 { margin-bottom: 1rem; }

.feature-list { margin-top: 1.4rem; display: grid; gap: 0.8rem; }

.feature-list li {
  display: flex;
  gap: 0.7rem;
  align-items: flex-start;
  color: var(--muted);
  font-size: 0.98rem;
}

.feature-list li svg {
  width: 19px;
  height: 19px;
  color: var(--accent);
  flex-shrink: 0;
  margin-top: 0.25rem;
}

.feature-list li b { color: var(--text); font-weight: 600; }

.panel {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 2rem;
}

.panel.glow {
  position: relative;
  box-shadow: 0 0 80px rgba(56, 189, 248, 0.07), inset 0 0 0 1px rgba(56, 189, 248, 0.06);
}

.panel.glow::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: 21px;
  padding: 1px;
  background: linear-gradient(135deg, rgba(56, 189, 248, 0.5), rgba(129, 140, 248, 0.18), transparent 60%);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.panel h3 { margin-bottom: 0.6rem; }
.panel p { font-size: 0.95rem; }
.panel + .panel { margin-top: 1.1rem; }

/* ---------- steps ---------- */

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  counter-reset: step;
}

.step {
  position: relative;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.7rem;
  counter-increment: step;
}

.step::before {
  content: "0" counter(step);
  display: block;
  font-family: var(--font-head);
  font-size: 2rem;
  font-weight: 700;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 0.8rem;
}

.step h3 { font-size: 1.08rem; margin-bottom: 0.45rem; }
.step p { font-size: 0.92rem; }

/* ---------- tiers ---------- */

.tiers {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  align-items: stretch;
}

.tier {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 2.1rem 1.9rem;
}

.tier.featured {
  border-color: rgba(56, 189, 248, 0.5);
  background: linear-gradient(180deg, rgba(56, 189, 248, 0.07), var(--card) 45%);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.45), 0 0 50px rgba(56, 189, 248, 0.1);
}

.tier-name {
  font-family: var(--font-head);
  font-size: 1.45rem;
  font-weight: 700;
  margin-bottom: 0.3rem;
}

.tier-for {
  font-size: 0.92rem;
  color: var(--faint);
  margin-bottom: 1.4rem;
  min-height: 2.8em;
}

.tier .feature-list { margin: 0 0 1.8rem; flex: 1; }
.tier .feature-list li { font-size: 0.93rem; }
.tier .btn { justify-content: center; }

/* ---------- stats band ---------- */

.stats-band {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(ellipse 50% 100% at 50% 0%, rgba(56, 189, 248, 0.07), transparent),
    var(--bg-soft);
  padding: 3rem 0;
}

.stats-band .container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  gap: 2rem;
  text-align: center;
}

/* ---------- logo strip ---------- */

.logo-strip {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1rem 2.6rem;
  padding: 2rem 0;
}

.logo-strip .lp {
  width: 100%;
  text-align: center;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--faint);
  margin-bottom: 0.4rem;
}

.logo-strip span:not(.lp) {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--muted);
  opacity: 0.75;
  transition: opacity 0.2s ease, color 0.2s ease;
}

.logo-strip span:not(.lp):hover { opacity: 1; color: var(--text); }

/* ---------- FAQ ---------- */

.faq { max-width: 760px; margin-inline: auto; display: grid; gap: 0.8rem; }

.qa {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
}

.qa > button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: 100%;
  padding: 1.15rem 1.4rem;
  background: none;
  border: none;
  color: var(--text);
  font-family: var(--font-head);
  font-size: 1.02rem;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
}

.qa > button svg {
  width: 18px;
  height: 18px;
  color: var(--accent);
  flex-shrink: 0;
  transition: transform 0.25s ease;
}

.qa.open > button svg { transform: rotate(45deg); }

.qa-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.qa.open .qa-body { max-height: 400px; }

.qa-body p {
  padding: 0 1.4rem 1.25rem;
  font-size: 0.95rem;
}

/* ---------- CTA band ---------- */

.cta-band {
  position: relative;
  overflow: hidden;
  background: var(--panel);
  border: 1px solid rgba(56, 189, 248, 0.3);
  border-radius: 24px;
  padding: 3.5rem 2.5rem;
  text-align: center;
}

.cta-band {
  animation: cta-breathe 6s ease-in-out infinite alternate;
}

@keyframes cta-breathe {
  from { box-shadow: 0 0 30px rgba(56, 189, 248, 0.05); }
  to { box-shadow: 0 0 70px rgba(56, 189, 248, 0.18); }
}

.cta-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 90% at 50% -20%, rgba(56, 189, 248, 0.18), transparent 65%),
    radial-gradient(ellipse 40% 70% at 85% 110%, rgba(129, 140, 248, 0.14), transparent 65%);
  pointer-events: none;
}

.cta-band > * { position: relative; }

.cta-band h2 { margin-bottom: 0.8rem; }

.cta-band p { max-width: 56ch; margin-inline: auto; }

.cta-band .hero-actions { justify-content: center; }

/* ---------- contact ---------- */

.contact-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 2.5rem;
  align-items: start;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.1rem;
}

.field { display: flex; flex-direction: column; gap: 0.4rem; }
.field.full { grid-column: 1 / -1; }

.field label {
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--text);
}

.field input,
.field select,
.field textarea {
  background: var(--bg-soft);
  border: 1px solid var(--line-strong);
  border-radius: 10px;
  padding: 0.75rem 0.9rem;
  color: var(--text);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(56, 189, 248, 0.15);
}

.field textarea { resize: vertical; min-height: 130px; }

.form-note {
  grid-column: 1 / -1;
  font-size: 0.84rem;
  color: var(--faint);
}

.form-fallback {
  grid-column: 1 / -1;
  background: rgba(56, 189, 248, 0.07);
  border: 1px solid rgba(56, 189, 248, 0.3);
  border-radius: 12px;
  padding: 1rem 1.2rem;
  font-size: 0.92rem;
  color: var(--muted);
}

.form-fallback[hidden] { display: none; }

.contact-card {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.4rem 1.5rem;
}

.contact-card + .contact-card { margin-top: 1rem; }

.contact-card svg {
  width: 22px;
  height: 22px;
  color: var(--accent);
  flex-shrink: 0;
  margin-top: 0.2rem;
}

.contact-card b {
  display: block;
  font-family: var(--font-head);
  color: var(--text);
  margin-bottom: 0.2rem;
}

.contact-card p, .contact-card a { font-size: 0.94rem; color: var(--muted); }
.contact-card a:hover { color: var(--accent); }

/* ---------- photo card ---------- */

.photo-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.1rem;
  margin: 0 0 1.1rem;
  text-align: center;
}

.photo-card img {
  width: 100%;
  height: auto;
  margin-inline: auto;
  border-radius: 10px;
}

.photo-card figcaption {
  font-size: 0.82rem;
  color: var(--faint);
  margin-top: 0.7rem;
}

/* ---------- footer ---------- */

.footer {
  border-top: 1px solid var(--line);
  background: var(--bg-soft);
  padding: 4rem 0 2rem;
  margin-top: 5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 2.5rem;
  padding-bottom: 3rem;
}

.footer .brand { margin-bottom: 1rem; }

.footer-grid p { font-size: 0.9rem; }

.footer-grid h4 {
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--faint);
  margin-bottom: 1rem;
}

.footer-grid ul { display: grid; gap: 0.55rem; }

.footer-grid ul a {
  color: var(--muted);
  font-size: 0.92rem;
  transition: color 0.15s ease;
}

.footer-grid ul a:hover { color: var(--accent); }

.footer-contact li {
  display: flex;
  gap: 0.6rem;
  align-items: flex-start;
  color: var(--muted);
  font-size: 0.92rem;
}

.footer-contact svg {
  width: 17px;
  height: 17px;
  color: var(--accent);
  flex-shrink: 0;
  margin-top: 0.25rem;
}

.footer-contact a { color: var(--muted); }
.footer-contact a:hover { color: var(--accent); }

.footer-bottom {
  border-top: 1px solid var(--line);
  padding-top: 1.6rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.8rem;
  font-size: 0.84rem;
  color: var(--faint);
}

/* ---------- reveal animation ---------- */

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.in {
  opacity: 1;
  transform: none;
}

.reveal.d1 { transition-delay: 0.1s; }
.reveal.d2 { transition-delay: 0.2s; }
.reveal.d3 { transition-delay: 0.3s; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
  .grad, .hero::before, .page-hero::before, .cta-band {
    animation: none !important;
  }
}

/* ---------- responsive ---------- */

@media (max-width: 1020px) {
  .grid.cols-4 { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 960px) {
  .nav-toggle { display: inline-flex; }

  .nav-links {
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--bg-soft);
    border-bottom: 1px solid var(--line);
    padding: 0.75rem 1.5rem 1.5rem;
    display: none;
    max-height: calc(100vh - 72px);
    overflow-y: auto;
  }

  .nav.open .nav-links { display: flex; }

  .nav-links > li > a {
    padding: 0.85rem 0;
    font-size: 1.05rem;
    width: 100%;
    justify-content: space-between;
  }

  .nav-links > li > a.btn {
    justify-content: center;
    margin-top: 0.75rem;
    color: #06090f;
  }

  .dropdown {
    position: static;
    width: 100%;
    grid-template-columns: 1fr;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: none;
    background: transparent;
    padding: 0 0 0 0.5rem;
    display: none;
  }

  .has-dropdown.open .dropdown { display: grid; }
}

@media (max-width: 860px) {
  .grid.cols-3 { grid-template-columns: 1fr; }
  .grid.cols-2 { grid-template-columns: 1fr; }
  .split { grid-template-columns: 1fr; gap: 2.5rem; }
  .tiers { grid-template-columns: 1fr; }
  .tier.featured { order: -1; }
  .check-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .hero-inner { padding: 4.5rem 0 3.5rem; }
}

@media (max-width: 560px) {
  .steps { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-stats { gap: 1.5rem; }
  .cta-band { padding: 2.5rem 1.5rem; }
}
