/* ============================================================
   OPPORTUNITY CIRCLE — styles.css
   Aesthetic: Private banking · Executive search · Modern network
   Dark navy/black · White · Silver · Subtle gold
   Fonts: Cormorant Garamond (display) + Outfit (body)
   ============================================================ */

/* ── RESET & BASE ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --black:      #060810;
  --navy:       #090c16;
  --navy-2:     #0c1020;
  --navy-3:     #101527;
  --navy-4:     #141b30;
  --navy-5:     #1a2340;

  --gold:       #b8965a;
  --gold-light: #d4ae78;
  --gold-dim:   rgba(184,150,90,0.15);
  --gold-border:rgba(184,150,90,0.28);

  --white:      #ffffff;
  --silver:     #c8d0dc;
  --off-white:  #e2e8f0;
  --muted:      #6b7a94;
  --subtle:     #3a4560;

  --border:     rgba(255,255,255,0.06);
  --border-gold:rgba(184,150,90,0.2);

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'Outfit', sans-serif;

  --radius:    10px;
  --radius-lg: 18px;
  --ease:      cubic-bezier(0.4, 0, 0.2, 1);
  --transition: 0.3s var(--ease);
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  background: var(--black);
  color: var(--silver);
  font-family: var(--font-body);
  font-weight: 300;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 36px;
}

/* ── TYPOGRAPHY ── */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.1;
  color: var(--white);
  letter-spacing: -0.01em;
}

.section-label {
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.section-label.centered { text-align: center; }

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: 6px;
  padding: 14px 30px;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  white-space: nowrap;
}

.btn-gold {
  background: var(--gold);
  color: var(--black);
}
.btn-gold:hover {
  background: var(--gold-light);
  box-shadow: 0 4px 24px rgba(184,150,90,0.35);
  transform: translateY(-1px);
}

.btn-ghost {
  background: transparent;
  color: var(--silver);
  border: 1px solid var(--border);
}
.btn-ghost:hover {
  border-color: rgba(255,255,255,0.2);
  color: var(--white);
  background: rgba(255,255,255,0.03);
}

.btn-outline {
  background: transparent;
  color: var(--gold);
  border: 1px solid var(--gold-border);
}
.btn-outline:hover {
  background: var(--gold-dim);
  border-color: var(--gold);
}

.btn-lg { padding: 17px 40px; font-size: 0.88rem; }
.btn-sm { padding: 11px 22px; font-size: 0.75rem; }

/* ── NAV ── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(6,8,16,0.8);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  transition: background 0.4s, border-color 0.4s;
}
.nav.scrolled {
  background: rgba(6,8,16,0.97);
  border-bottom-color: var(--border-gold);
}

.nav-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 36px;
  height: 66px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* Logo ring emblem */
.logo-ring {
  width: 30px; height: 30px;
  border-radius: 50%;
  border: 1.5px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.logo-ring-inner {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--gold);
  opacity: 0.8;
}

.logo-text {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--white);
  letter-spacing: 0.02em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav-links a {
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--off-white); }
.nav-links .nav-cta {
  color: var(--gold);
  border: 1px solid var(--gold-border);
  padding: 9px 20px;
  border-radius: 5px;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  transition: var(--transition);
}
.nav-links .nav-cta:hover {
  background: var(--gold-dim);
  border-color: var(--gold);
  color: var(--gold-light);
}

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-hamburger span {
  display: block;
  width: 22px; height: 1.5px;
  background: var(--silver);
  transition: var(--transition);
}

.nav-mobile {
  display: none;
  flex-direction: column;
  padding: 16px 36px 24px;
  border-top: 1px solid var(--border);
  gap: 18px;
}
.nav-mobile a {
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
}
.nav-cta-mobile {
  display: inline-block;
  width: fit-content;
  font-family: var(--font-body);
  font-size: 0.75rem !important;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: var(--gold) !important;
  border: 1px solid var(--gold-border);
  padding: 10px 20px;
  border-radius: 5px;
}

/* ── HERO ── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 130px 36px 80px;
  overflow: hidden;
  text-align: center;
}

/* Subtle noise texture overlay */
.hero-noise {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
  background-size: 200px 200px;
  opacity: 0.4;
  pointer-events: none;
}

.hero-glow {
  position: absolute;
  width: 700px; height: 500px;
  top: -100px; left: 50%;
  transform: translateX(-50%);
  background: radial-gradient(ellipse, rgba(184,150,90,0.07) 0%, transparent 65%);
  pointer-events: none;
  filter: blur(40px);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 780px;
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 32px;
  opacity: 0;
  animation: fadeUp 0.9s 0.1s forwards;
}

.eyebrow-line {
  display: block;
  width: 40px; height: 1px;
  background: var(--gold-border);
}

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(4rem, 9vw, 7.5rem);
  font-weight: 400;
  letter-spacing: -0.03em;
  line-height: 0.92;
  color: var(--white);
  margin-bottom: 28px;
  opacity: 0;
  animation: fadeUp 0.9s 0.2s forwards;
}

.hero-headline em {
  font-style: italic;
  color: var(--gold);
}

.hero-sub {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2.5vw, 1.7rem);
  font-weight: 400;
  font-style: italic;
  color: var(--silver);
  margin-bottom: 20px;
  opacity: 0;
  animation: fadeUp 0.9s 0.3s forwards;
}

.hero-copy {
  font-size: 0.97rem;
  color: var(--muted);
  max-width: 600px;
  margin: 0 auto 40px;
  line-height: 1.8;
  opacity: 0;
  animation: fadeUp 0.9s 0.4s forwards;
}

.hero-ctas {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 52px;
  opacity: 0;
  animation: fadeUp 0.9s 0.5s forwards;
}

.hero-domains {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(107,122,148,0.55);
  opacity: 0;
  animation: fadeUp 0.9s 0.6s forwards;
}
.sep { color: var(--subtle); }

/* Hero emblem */
.hero-emblem {
  position: absolute;
  right: 6%;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0;
  animation: fadeIn 1.4s 0.8s forwards;
}

.emblem-outer {
  width: 180px; height: 180px;
  border-radius: 50%;
  border: 1px solid rgba(184,150,90,0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: rotateSlow 30s linear infinite;
}

.emblem-mid {
  width: 130px; height: 130px;
  border-radius: 50%;
  border: 1px solid rgba(184,150,90,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: rotateSlow 30s linear infinite reverse;
}

.emblem-inner {
  width: 80px; height: 80px;
  border-radius: 50%;
  border: 1px solid rgba(184,150,90,0.22);
  background: rgba(184,150,90,0.04);
  display: flex;
  align-items: center;
  justify-content: center;
}

.emblem-glyph {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--gold);
  opacity: 0.6;
  line-height: 1;
}

@keyframes rotateSlow {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* ── WHY SECTION ── */
.why {
  padding: 110px 0;
  background: var(--navy);
  border-top: 1px solid var(--border);
}

.why-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.why-text h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 20px;
}

.why-text p {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.8;
}

.why-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  padding-top: 8px;
}

.why-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.9rem;
  color: var(--silver);
  transition: color 0.2s;
}
.why-item:first-child { border-top: 1px solid var(--border); }
.why-item:hover { color: var(--white); }

.why-bullet {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--gold);
  margin-top: 7px;
  flex-shrink: 0;
  opacity: 0.7;
}

/* ── BANDS ── */
.band {
  padding: 110px 0;
  border-top: 1px solid var(--border);
}

.band-pro  { background: var(--navy-2); }
.band-emp  { background: var(--navy); }

.band-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.band-inner-rev .band-visual { order: 1; }
.band-inner-rev .band-text   { order: 2; }

.band-text .section-label { margin-bottom: 16px; }
.band-text h2 {
  font-size: clamp(1.9rem, 3.5vw, 2.6rem);
  margin-bottom: 18px;
}
.band-text p {
  color: var(--muted);
  font-size: 0.93rem;
  line-height: 1.8;
  margin-bottom: 32px;
}

/* Status card */
.status-card {
  background: var(--navy-3);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 30px;
  box-shadow: 0 24px 60px rgba(0,0,0,0.5);
}

.sc-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}

.sc-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 8px rgba(184,150,90,0.5);
}

.sc-label {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}

.sc-divider {
  height: 1px;
  background: var(--border);
  margin: 12px 0;
}

.sc-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 9px 0;
  font-size: 0.82rem;
}

.sc-row span:first-child { color: var(--muted); }

.sc-val {
  font-family: var(--font-body);
  font-weight: 500;
  color: var(--silver);
}
.sc-val.gold  { color: var(--gold); }
.sc-val.muted { color: var(--subtle); }

/* Stat pair */
.stat-pair {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.stat-block {
  background: var(--navy-3);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: var(--transition);
}
.stat-block:hover {
  border-color: var(--border-gold);
  transform: translateX(4px);
}

.stat-block-alt {
  background: linear-gradient(135deg, rgba(184,150,90,0.06), transparent);
  border-color: var(--border-gold);
}

.stat-n {
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 400;
  color: var(--gold);
  letter-spacing: -0.03em;
  margin-bottom: 6px;
  line-height: 1;
}

.stat-l {
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.5;
}

/* ── HOW IT WORKS ── */
.how {
  padding: 110px 0;
  background: var(--navy-2);
  border-top: 1px solid var(--border);
}

.how-grid {
  display: grid;
  grid-template-columns: 1fr 1px 1fr;
  gap: 0 64px;
  margin-top: 16px;
  align-items: start;
}

.how-divider {
  background: var(--border);
  align-self: stretch;
  min-height: 360px;
}

.how-col-label {
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 32px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border-gold);
}

.how-steps {
  list-style: none;
  margin-bottom: 36px;
}

.how-steps li {
  display: flex;
  gap: 20px;
  padding: 18px 0;
  border-bottom: 1px solid var(--border);
}
.how-steps li:first-child { padding-top: 0; }
.how-steps li:last-child  { border-bottom: none; }

.step-n {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 400;
  color: rgba(184,150,90,0.3);
  flex-shrink: 0;
  line-height: 1.2;
  min-width: 24px;
}

.how-steps li:hover .step-n { color: var(--gold); transition: color 0.2s; }

.how-steps strong {
  display: block;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.88rem;
  color: var(--off-white);
  margin-bottom: 4px;
}

.how-steps p {
  font-size: 0.83rem;
  color: var(--muted);
  line-height: 1.65;
}

/* ── FORMS ── */
.form-section {
  padding: 110px 0;
  background: var(--navy);
  border-top: 1px solid var(--border);
}

.form-alt { background: var(--navy-2); }

.form-header {
  max-width: 580px;
  margin: 0 auto 56px;
  text-align: center;
}

.form-header h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 14px;
}

.form-header p {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.8;
}

.oc-form {
  max-width: 840px;
  margin: 0 auto;
  background: var(--navy-3);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 52px 48px;
}

.honey-pot { display: none; }

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-group-full { grid-column: 1 / -1; }

label {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--silver);
}

.req { color: var(--gold); }

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="url"],
select,
textarea {
  background: var(--navy-4);
  border: 1px solid var(--border);
  border-radius: 7px;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 300;
  padding: 12px 15px;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  width: 100%;
}

input::placeholder,
textarea::placeholder {
  color: rgba(107,122,148,0.4);
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--gold-border);
  box-shadow: 0 0 0 3px rgba(184,150,90,0.1);
}

select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%236b7a94' stroke-width='1.5'%3E%3Cpath d='M19 9l-7 7-7-7'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 13px center;
  background-size: 15px;
  cursor: pointer;
}

select option {
  background: var(--navy-4);
  color: var(--white);
}

textarea { resize: vertical; min-height: 120px; }

/* File upload */
.file-wrap {
  position: relative;
  border: 1px dashed var(--border-gold);
  border-radius: 7px;
  overflow: hidden;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
}
.file-wrap:hover {
  border-color: var(--gold);
  background: rgba(184,150,90,0.04);
}

.file-wrap input[type="file"] {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
  width: 100%;
  height: 100%;
  z-index: 2;
}

.file-ui {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 20px 16px;
  color: var(--muted);
  font-size: 0.85rem;
}

.file-ui svg {
  width: 18px; height: 18px;
  flex-shrink: 0;
  color: var(--gold);
  opacity: 0.7;
}

/* Checkbox */
.check-label {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
  text-transform: none;
  letter-spacing: 0;
  font-size: 0.85rem;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.65;
}

.check-label input[type="checkbox"] {
  width: 16px;
  height: 16px;
  min-width: 16px;
  accent-color: var(--gold);
  cursor: pointer;
  margin-top: 3px;
}

.form-foot {
  margin-top: 36px;
  display: flex;
  justify-content: center;
}

/* ── FAQ ── */
.faq {
  padding: 110px 0;
  background: var(--navy);
  border-top: 1px solid var(--border);
}

.faq-title {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 52px;
  max-width: 500px;
}

.faq-list { max-width: 740px; }

.faq-item { border-bottom: 1px solid var(--border); }

.faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 24px 0;
  background: none;
  border: none;
  color: var(--off-white);
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 500;
  cursor: pointer;
  gap: 24px;
  text-align: left;
  transition: color 0.2s;
}
.faq-q:hover { color: var(--gold); }

.faq-chevron {
  width: 18px; height: 18px;
  flex-shrink: 0;
  color: var(--muted);
  transition: transform 0.3s, color 0.2s;
}
.faq-q[aria-expanded="true"] .faq-chevron {
  transform: rotate(180deg);
  color: var(--gold);
}

.faq-a {
  display: none;
  padding: 0 0 24px;
}
.faq-a.open { display: block; }
.faq-a p {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.8;
}

/* ── FOOTER ── */
.footer {
  background: var(--black);
  border-top: 1px solid var(--border);
  padding: 80px 0 44px;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 80px;
  padding-bottom: 60px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 40px;
}

.footer-logo { margin-bottom: 14px; }

.footer-tag {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 0.95rem;
  color: var(--muted);
  margin-bottom: 14px;
}

.footer-email {
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--gold);
  transition: color 0.2s;
}
.footer-email:hover { color: var(--gold-light); }

.footer-cols {
  display: flex;
  gap: 48px;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col h5 {
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--silver);
  margin-bottom: 4px;
}

.footer-col a {
  font-size: 0.82rem;
  color: var(--muted);
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--silver); }

.footer-bottom { text-align: center; }

.footer-owned {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--silver);
  margin-bottom: 16px;
  letter-spacing: 0.04em;
}

.footer-compliance {
  font-size: 0.75rem;
  color: rgba(107,122,148,0.45);
  line-height: 1.8;
  max-width: 780px;
  margin: 0 auto 20px;
}

.footer-copy {
  font-size: 0.73rem;
  color: rgba(107,122,148,0.3);
  letter-spacing: 0.04em;
}

/* ── SCROLL REVEAL ── */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}
.reveal.visible {
  opacity: 1;
  transform: none;
}

/* ── RESPONSIVE ── */
@media (max-width: 960px) {
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }

  .hero-emblem { display: none; }

  .why-inner,
  .band-inner {
    grid-template-columns: 1fr;
    gap: 52px;
  }

  .band-inner-rev .band-visual,
  .band-inner-rev .band-text {
    order: unset;
  }

  .how-grid {
    grid-template-columns: 1fr;
    gap: 60px;
  }
  .how-divider { display: none; }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .footer-cols { gap: 32px; flex-wrap: wrap; }
}

@media (max-width: 640px) {
  .container { padding: 0 20px; }

  .hero { padding: 108px 20px 64px; }
  .hero-ctas { flex-direction: column; align-items: center; }
  .hero-ctas .btn { width: 100%; justify-content: center; }

  .oc-form { padding: 32px 20px; }
  .form-grid { grid-template-columns: 1fr; }
  .form-group-full { grid-column: 1; }

  .why, .band, .how, .form-section, .faq, .footer { padding: 72px 0; }

  .hero-domains { gap: 6px; font-size: 0.65rem; }
}

@media (max-width: 420px) {
  .footer-cols { flex-direction: column; }
}
