:root {
  --bg: #0b1020;
  --panel: #121933;
  --panel-soft: #18213f;
  --text: #eef2ff;
  --muted: #b5bfdc;
  --accent: #6ea8fe;
  --accent-strong: #8dffb0;
  --border: rgba(255,255,255,0.12);
  --shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at top left, rgba(110, 168, 254, 0.12), transparent 28%),
    radial-gradient(circle at top right, rgba(141, 255, 176, 0.08), transparent 24%),
    linear-gradient(180deg, #09101f 0%, #0e1428 100%);
  color: var(--text);
  line-height: 1.6;
}

a { color: inherit; }
a:hover { color: #ffffff; }
.container {
  width: min(1120px, calc(100% - 2rem));
  margin: 0 auto;
}
.site-header, .section, .site-footer { padding: 4rem 0; }
.hero-shell {
  align-items: stretch;
}
.header-inner, .grid-two, .footer-inner, .cta-box {
  display: grid;
  gap: 2rem;
}
.header-inner, .grid-two { grid-template-columns: 1.2fr 0.8fr; }
.align-start { align-items: start; }
.topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
}
.brand-mark {
  text-decoration: none;
  font-weight: 800;
  letter-spacing: 0.04em;
}
.topnav {
  display: flex;
  gap: 1.25rem;
  flex-wrap: wrap;
}
.topnav a,
.footer-links a {
  text-decoration: none;
  color: var(--muted);
}
.compact-header {
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
}
.enquiry-wrap {
  width: min(860px, 100%);
}
.enquiry-panel,
.legal-card {
  background: rgba(18, 25, 51, 0.92);
  border: 1px solid var(--border);
  border-radius: 24px;
  box-shadow: var(--shadow);
  padding: 1.75rem;
}
.legal-wrap {
  width: min(860px, 100%);
}
.about-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}
.footer-stack {
  align-items: start;
}
.footer-links {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.hero-copy, .supporting-line, p { color: var(--muted); }
.trust-strip {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-top: 1.25rem;
}
.trust-strip span {
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.03);
  color: var(--text);
  border-radius: 999px;
  padding: 0.45rem 0.75rem;
  font-size: 0.9rem;
}
h1, h2, h3 { line-height: 1.1; margin-top: 0; }
h1 { font-size: clamp(2.2rem, 5vw, 4.3rem); max-width: 11ch; }
h2 { font-size: clamp(1.7rem, 3vw, 2.6rem); }
.eyebrow, .section-label {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--accent-strong);
  font-size: 0.78rem;
  margin-bottom: 0.9rem;
}
.hero-actions, .form-actions {
  display: flex;
  gap: 1rem;
  align-items: center;
  flex-wrap: wrap;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0.9rem 1.25rem;
  text-decoration: none;
  font-weight: 700;
  border: 1px solid transparent;
  cursor: pointer;
}
.button-primary {
  background: linear-gradient(135deg, var(--accent), #8b7dff);
  color: #09101f;
}
.button-secondary {
  border-color: var(--border);
  background: rgba(255,255,255,0.03);
}
.hero-card, .card, .bullet-panel, .result-card, .cta-box {
  background: rgba(18, 25, 51, 0.92);
  border: 1px solid var(--border);
  border-radius: 24px;
  box-shadow: var(--shadow);
}
.hero-card, .card, .bullet-panel, .cta-box { padding: 1.5rem; }
.hero-card-premium {
  position: relative;
  overflow: hidden;
}
.hero-card-premium::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--accent), var(--accent-strong));
}
.polished-card,
.polished-panel,
.trust-band,
.enquiry-panel,
.legal-card {
  backdrop-filter: blur(10px);
}
.feature-list {
  margin: 1rem 0 0;
  padding-left: 1.1rem;
}
.compact-list {
  margin: 0;
}
.price-box {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 1.5rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
}
.price-box strong { font-size: 2rem; }
.muted { background: rgba(255,255,255,0.02); }
.cards { display: grid; gap: 1rem; }
.cards-3 { grid-template-columns: repeat(3, 1fr); }
.cards-2 { grid-template-columns: repeat(2, 1fr); }
.steps { display: grid; gap: 1rem; }
.trust-band-section {
  padding-top: 2rem;
}
.trust-band {
  background: rgba(18, 25, 51, 0.78);
  border: 1px solid var(--border);
  border-radius: 24px;
  box-shadow: var(--shadow);
  padding: 1.75rem;
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 1.25rem;
}
.trust-grid strong {
  display: block;
  margin-bottom: 0.5rem;
}
.step {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  background: rgba(18, 25, 51, 0.6);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 1rem 1.25rem;
}
.step span {
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--accent);
  color: #09101f;
  font-weight: 800;
}
.lead-form {
  margin-top: 1rem;
  display: grid;
  gap: 1rem;
}
.form-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
label {
  display: grid;
  gap: 0.45rem;
  font-weight: 600;
}
input, select, textarea {
  width: 100%;
  padding: 0.9rem 1rem;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.04);
  color: var(--text);
  font: inherit;
}
select {
  background-color: #1a223d;
  color: var(--text);
}
select option {
  background-color: #1a223d;
  color: var(--text);
}
textarea { resize: vertical; }
.small-note, .form-error { font-size: 0.9rem; color: var(--muted); }
.form-error { color: #ff9f9f; }
.hidden { display: none; }
.result-card {
  margin-top: 1rem;
  padding: 1rem 1.25rem;
}
.footer-inner, .cta-box {
  grid-template-columns: 1fr auto;
  align-items: center;
}
.site-footer { border-top: 1px solid var(--border); }

@media (max-width: 900px) {
  .header-inner, .grid-two, .cards-3, .cards-2, .footer-inner, .cta-box, .form-grid, .about-grid, .trust-grid {
    grid-template-columns: 1fr;
  }
  .topbar,
  .footer-links {
    flex-direction: column;
    align-items: flex-start;
  }
  .site-header, .section, .site-footer { padding: 3rem 0; }
}
