/* SKG Technologies, LLC — Brand-aligned stylesheet
   Colors:  Green Vogue #002d57 (primary), #15abf6 (accent), #fefefe (white)
   Fonts:   Montserrat Alternates (headings), Open Sans (body)
   Slogan:  Connecting Communities, Powering Progress
*/

:root {
  --navy: #002d57;
  --navy-dark: #001a33;
  --navy-deep: #00132a;
  --blue: #15abf6;
  --blue-light: #5dc5fa;
  --blue-soft: #e8f5fe;
  --white: #fefefe;
  --gray-50: #f7f9fc;
  --gray-100: #eef2f7;
  --gray-200: #dde3ec;
  --gray-400: #9aa5b4;
  --gray-500: #6b7785;
  --gray-700: #364152;
  --gray-900: #0f1c2c;
  --shadow-sm: 0 1px 2px rgba(0, 45, 87, 0.06), 0 1px 3px rgba(0, 45, 87, 0.05);
  --shadow-md: 0 4px 12px rgba(0, 45, 87, 0.08), 0 2px 4px rgba(0, 45, 87, 0.04);
  --shadow-lg: 0 16px 40px rgba(0, 45, 87, 0.12), 0 4px 12px rgba(0, 45, 87, 0.06);
  --radius-sm: 6px;
  --radius: 10px;
  --radius-lg: 18px;
  --container: 1200px;
  --header-h: 80px;
  --font-heading: 'Montserrat Alternates', 'Montserrat', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  --font-body: 'Open Sans', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
}

/* Reset */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--gray-700);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; display: block; }
a { color: var(--blue); text-decoration: none; transition: color .2s ease; }
a:hover { color: var(--navy); }

h1, h2, h3, h4, h5 {
  font-family: var(--font-heading);
  color: var(--navy);
  margin: 0 0 .6em;
  letter-spacing: -0.01em;
  line-height: 1.15;
}
h1 { font-size: clamp(2.2rem, 4.5vw, 3.6rem); font-weight: 800; }
h2 { font-size: clamp(1.8rem, 3vw, 2.5rem); font-weight: 700; }
h3 { font-size: 1.35rem; font-weight: 700; }
h4 { font-size: 1.05rem; font-weight: 700; }
p  { margin: 0 0 1rem; }
.lead { font-size: 1.15rem; color: var(--gray-500); }

.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.section { padding: 96px 0; }
.section-tight { padding: 64px 0; }
.section-dark { background: var(--navy); color: #cfd9e6; }
.section-dark h2, .section-dark h3, .section-dark h4 { color: #fff; }
.section-soft { background: var(--gray-50); }

.eyebrow {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 14px;
}
.section-dark .eyebrow { color: var(--blue-light); }

/* Header */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(254,254,254,.92);
  backdrop-filter: saturate(180%) blur(10px);
  -webkit-backdrop-filter: saturate(180%) blur(10px);
  border-bottom: 1px solid var(--gray-100);
}
.nav {
  display: flex; align-items: center; justify-content: space-between;
  height: var(--header-h);
}
.brand { display: inline-flex; align-items: center; color: var(--navy); font-family: var(--font-heading); font-weight: 800; line-height: 0; }
.brand:hover { color: var(--navy); opacity: .85; }
.brand-logo { height: 44px; width: auto; display: block; }
.footer .brand-logo { height: 50px; }
@media (max-width: 720px) {
  .brand-logo { height: 38px; }
}

.nav-links { display: flex; align-items: center; gap: 6px; list-style: none; margin: 0; padding: 0; }
.nav-links a {
  color: var(--gray-700);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: .95rem;
  padding: 10px 14px;
  border-radius: var(--radius-sm);
}
.nav-links a:hover { color: var(--navy); background: var(--gray-50); }
.nav-links a.active { color: var(--navy); }
.nav-links a.active::after {
  content: ""; display: block; height: 2px; background: var(--blue);
  margin: 6px 14px 0; border-radius: 2px;
}

.nav-cta { margin-left: 10px; }
.menu-toggle { display: none; background: none; border: 0; padding: 10px; cursor: pointer; }
.menu-toggle span {
  display: block; width: 24px; height: 2px; background: var(--navy);
  margin: 5px 0; transition: .25s;
}

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: var(--font-heading);
  font-weight: 700; font-size: .95rem;
  padding: 14px 26px;
  border-radius: var(--radius);
  border: 2px solid transparent;
  cursor: pointer; transition: .2s ease;
  text-align: center; line-height: 1;
}
.btn-primary { background: var(--blue); color: #fff; }
.btn-primary:hover { background: #0098e0; color: #fff; transform: translateY(-1px); box-shadow: var(--shadow-md); }
.btn-secondary { background: var(--navy); color: #fff; }
.btn-secondary:hover { background: var(--navy-dark); color: #fff; transform: translateY(-1px); }
.btn-outline { background: transparent; color: var(--navy); border-color: var(--navy); }
.btn-outline:hover { background: var(--navy); color: #fff; }
.btn-ghost { background: transparent; color: var(--blue); padding: 10px 4px; }
.btn-ghost:hover { color: var(--navy); }
.btn-ghost::after { content: "→"; margin-left: 4px; transition: transform .2s; }
.btn-ghost:hover::after { transform: translateX(4px); }
.btn-light { background: #fff; color: var(--navy); }
.btn-light:hover { background: var(--blue-soft); color: var(--navy); }
.btn-on-dark { background: transparent; color: #fff; border-color: rgba(255,255,255,.4); }
.btn-on-dark:hover { background: #fff; color: var(--navy); border-color: #fff; }

/* HERO */
.hero {
  position: relative; overflow: hidden;
  background: linear-gradient(135deg, var(--navy-deep) 0%, var(--navy) 55%, #003e76 100%);
  color: #cfd9e6;
  padding: 120px 0 140px;
}
.hero::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(circle at 80% 20%, rgba(21,171,246,.22), transparent 45%),
    radial-gradient(circle at 15% 85%, rgba(21,171,246,.12), transparent 50%);
  pointer-events: none;
}
.hero-grid {
  position: relative;
  display: grid; grid-template-columns: 1.15fr .85fr; gap: 64px; align-items: center;
}
.hero h1 { color: #fff; margin-bottom: 22px; }
.hero h1 .accent { color: var(--blue-light); }
.hero p { color: #cfd9e6; font-size: 1.15rem; max-width: 560px; margin-bottom: 32px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* Hero visual — image slider/carousel */
.hero-visual {
  position: relative;
  width: 100%;
}
.hero-slider {
  position: relative;
  width: 100%;
  aspect-ratio: 3 / 2;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0, 0, 0, .35), 0 0 0 1px rgba(255,255,255,.05);
  background: var(--navy-dark);
}
.hero-slide {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  opacity: 0; transition: opacity 1.1s ease-in-out;
  display: flex; align-items: flex-end;
}
.hero-slide.is-active { opacity: 1; z-index: 1; }
.hero-slide::before {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0, 19, 42, 0) 35%, rgba(0, 19, 42, .85) 100%);
}
.hero-slide-caption {
  position: relative;
  padding: 32px 36px;
  color: #fff;
}
.hero-slide-eyebrow {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: .72rem; font-weight: 700;
  letter-spacing: .18em; text-transform: uppercase;
  color: var(--blue-light);
  margin-bottom: 8px;
}
.hero-slide-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.35rem;
  color: #fff;
  margin: 0;
  line-height: 1.25;
  text-shadow: 0 2px 16px rgba(0,0,0,.4);
}

/* Pagination dots */
.hero-dots {
  position: absolute; left: 0; right: 0; bottom: 16px;
  display: flex; justify-content: center; gap: 10px;
  z-index: 3;
}
.hero-dots button {
  width: 28px; height: 4px; border-radius: 2px;
  background: rgba(255,255,255,.35); border: 0; padding: 0; cursor: pointer;
  transition: background .25s ease, width .25s ease;
}
.hero-dots button:hover { background: rgba(255,255,255,.6); }
.hero-dots button.is-active { background: var(--blue-light); width: 40px; }

/* Prev/next arrows */
.hero-arrow {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 40px; height: 40px; border-radius: 50%;
  background: rgba(0, 19, 42, .55);
  border: 1px solid rgba(255,255,255,.18);
  color: #fff; cursor: pointer; z-index: 3;
  display: grid; place-items: center;
  transition: background .2s ease;
  backdrop-filter: blur(4px);
}
.hero-arrow:hover { background: var(--blue); }
.hero-arrow.prev { left: 14px; }
.hero-arrow.next { right: 14px; }
.hero-arrow svg { width: 18px; height: 18px; }

/* Stats / trust strip */
.trust-strip { background: #fff; border-top: 4px solid var(--blue); padding: 28px 0; box-shadow: var(--shadow-sm); }
.trust-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; text-align: center;
}
.trust-item .num { font-family: var(--font-heading); color: var(--navy); font-weight: 800; font-size: 2rem; line-height: 1; }
.trust-item .lbl { font-size: .82rem; letter-spacing: .12em; text-transform: uppercase; color: var(--gray-500); margin-top: 6px; }

/* Section header */
.section-head { max-width: 760px; margin: 0 auto 56px; text-align: center; }
.section-head.left { text-align: left; margin-left: 0; }
.section-head p { color: var(--gray-500); font-size: 1.1rem; }

/* Cards grid */
.cards {
  display: grid; gap: 28px;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}
.card {
  background: #fff; border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg); padding: 32px;
  transition: .25s ease; position: relative; overflow: hidden;
}
.card::before {
  content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 4px;
  background: var(--blue); transform: scaleY(0); transform-origin: top; transition: transform .3s ease;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: transparent; }
.card:hover::before { transform: scaleY(1); }
.card-icon {
  width: 56px; height: 56px; border-radius: var(--radius);
  display: grid; place-items: center; margin-bottom: 20px;
  background: linear-gradient(135deg, var(--blue-soft) 0%, #d6ecfb 100%);
  color: var(--navy);
}
.card-icon svg { width: 28px; height: 28px; }
.card h3 { margin-bottom: 10px; }
.card p { color: var(--gray-500); margin: 0; }
.card .card-cta { margin-top: 18px; display: inline-block; }

/* Two-col block */
.split {
  display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center;
}
.split.reverse > :first-child { order: 2; }
.split-visual {
  background: linear-gradient(135deg, var(--navy) 0%, #003e76 100%);
  border-radius: var(--radius-lg);
  aspect-ratio: 4 / 3;
  position: relative; overflow: hidden;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 14px;
  box-shadow: var(--shadow-lg);
}
.split-visual .mark-caption {
  position: relative; z-index: 1;
  color: #fff;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: .04em;
  text-align: center;
  text-shadow: 0 2px 12px rgba(0,0,0,.35);
}
.split-visual .mark-caption .role {
  display: block;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--blue-light);
  margin-top: 4px;
}
/* Dual-portrait layout for Leadership section */
.split-visual.duo {
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 0;
  padding: 24px;
}
.split-visual.duo .portrait {
  display: flex; flex-direction: column; align-items: center;
  gap: 12px;
  flex: 0 1 38%;
}
.split-visual.duo .mark {
  width: 100%;
  max-width: 200px;
}
.split-visual.duo .plus {
  position: relative; z-index: 1;
  font-family: var(--font-heading);
  font-weight: 800; font-size: 2.4rem;
  color: var(--blue-light);
  margin: 0 18px;
  align-self: center;
  line-height: 1;
  text-shadow: 0 2px 12px rgba(0,0,0,.4);
  flex: 0 0 auto;
}
@media (max-width: 720px) {
  .split-visual.duo .mark { max-width: 140px; }
  .split-visual.duo .plus { font-size: 1.8rem; margin: 0 10px; }
}
.split-visual::after {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(circle at 70% 30%, rgba(21,171,246,.35), transparent 50%),
    radial-gradient(circle at 20% 80%, rgba(21,171,246,.15), transparent 55%);
}
.split-visual .mark {
  position: relative; z-index: 1; width: 58%;
  aspect-ratio: 1 / 1;
  background: #fff;
  display: grid; place-items: center;
  color: var(--navy); font-family: var(--font-heading); font-weight: 800; font-size: 3rem;
  box-shadow: 0 30px 60px rgba(0,0,0,.35);
  overflow: hidden;
  border-radius: var(--radius);
}
.split-visual .mark img {
  width: 100%; height: 100%; object-fit: cover; object-position: center top; display: block;
}

/* Bulleted list */
.checklist { list-style: none; padding: 0; margin: 18px 0 0; }
.checklist li {
  position: relative; padding: 10px 0 10px 36px;
  border-bottom: 1px solid var(--gray-100);
  color: var(--gray-700);
}
.checklist li:last-child { border-bottom: 0; }
.checklist li::before {
  content: ""; position: absolute; left: 0; top: 14px;
  width: 22px; height: 22px; border-radius: 50%;
  background: var(--blue-soft);
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2315abf6' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 9 17 4 12'/></svg>");
  background-repeat: no-repeat; background-position: center; background-size: 12px;
}

/* CTA banner */
.cta-banner {
  background: linear-gradient(135deg, var(--navy) 0%, #003e76 100%);
  border-radius: var(--radius-lg);
  padding: 56px 64px;
  display: grid; grid-template-columns: 1.4fr auto; gap: 32px; align-items: center;
  color: #fff; position: relative; overflow: hidden;
}
.cta-banner::before {
  content: ""; position: absolute; right: -80px; top: -80px;
  width: 320px; height: 320px;
  clip-path: polygon(50% 0, 100% 25%, 100% 75%, 50% 100%, 0 75%, 0 25%);
  background: linear-gradient(135deg, rgba(21,171,246,.35), rgba(21,171,246,.05));
}
.cta-banner h2 { color: #fff; margin: 0 0 8px; }
.cta-banner p { color: #cfd9e6; margin: 0; }
.cta-banner .btns { display: flex; gap: 12px; flex-wrap: wrap; position: relative; }

/* Values */
.value-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.value {
  background: #fff; padding: 36px; border-radius: var(--radius-lg);
  border: 1px solid var(--gray-100); text-align: left;
}
.value .v-num {
  font-family: var(--font-heading); color: var(--blue);
  font-weight: 800; font-size: .9rem; letter-spacing: .2em; text-transform: uppercase;
}
.value h3 { margin-top: 4px; }

/* Contact */
.contact-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 56px; }
.contact-info-card {
  background: var(--navy); color: #cfd9e6;
  border-radius: var(--radius-lg); padding: 40px; position: relative; overflow: hidden;
}
.contact-info-card::after {
  content: ""; position: absolute; right: -60px; bottom: -60px;
  width: 240px; height: 240px;
  clip-path: polygon(50% 0, 100% 25%, 100% 75%, 50% 100%, 0 75%, 0 25%);
  background: linear-gradient(135deg, rgba(21,171,246,.25), transparent);
}
.contact-info-card h3 { color: #fff; }
.contact-info-card .ci-item { display: flex; gap: 14px; padding: 16px 0; border-bottom: 1px solid rgba(255,255,255,.1); }
.contact-info-card .ci-item:last-of-type { border-bottom: 0; }
.contact-info-card .ci-item svg { flex-shrink: 0; color: var(--blue-light); }
.contact-info-card .ci-label { font-size: .75rem; letter-spacing: .14em; text-transform: uppercase; color: var(--blue-light); }
.contact-info-card .ci-value { color: #fff; font-weight: 600; }
.contact-info-card a { color: #fff; }
.contact-info-card a:hover { color: var(--blue-light); }

.form-card {
  background: #fff; border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg); padding: 40px;
  box-shadow: var(--shadow-md);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { margin-bottom: 16px; }
.field label {
  display: block; font-family: var(--font-heading);
  font-weight: 600; font-size: .85rem; color: var(--navy);
  margin-bottom: 6px;
}
.field input, .field select, .field textarea {
  width: 100%; font-family: var(--font-body); font-size: 1rem;
  padding: 12px 14px; border: 1px solid var(--gray-200);
  border-radius: var(--radius-sm); background: #fff; color: var(--gray-700);
  transition: border-color .15s, box-shadow .15s;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(21,171,246,.15);
}
.field textarea { min-height: 130px; resize: vertical; }

/* Industries */
.industries { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 18px; }
.industry {
  background: #fff; border: 1px solid var(--gray-100); border-radius: var(--radius);
  padding: 24px; display: flex; align-items: center; gap: 14px; transition: .2s;
}
.industry:hover { border-color: var(--blue); transform: translateY(-2px); }
.industry .ico {
  width: 44px; height: 44px; border-radius: var(--radius-sm);
  display: grid; place-items: center; background: var(--blue-soft); color: var(--navy);
}
.industry h4 { margin: 0; font-size: 1rem; color: var(--navy); }
.industry p { margin: 2px 0 0; font-size: .85rem; color: var(--gray-500); }

/* Process steps */
.process { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; counter-reset: step; }
.step {
  background: #fff; border: 1px solid var(--gray-100); border-radius: var(--radius-lg);
  padding: 32px 28px; position: relative;
}
.step::before {
  counter-increment: step; content: "0" counter(step);
  font-family: var(--font-heading); font-weight: 800; font-size: 2.2rem;
  color: var(--blue-soft); position: absolute; right: 22px; top: 14px; line-height: 1;
}
.step h4 { margin: 0 0 8px; }
.step p { color: var(--gray-500); margin: 0; font-size: .95rem; }

/* Page hero (sub-pages) */
.page-hero {
  background: linear-gradient(135deg, var(--navy-deep) 0%, var(--navy) 60%, #003e76 100%);
  color: #cfd9e6; padding: 90px 0 90px; position: relative; overflow: hidden;
}
.page-hero::before {
  content: ""; position: absolute; right: -120px; top: -120px;
  width: 460px; height: 460px;
  clip-path: polygon(50% 0, 100% 25%, 100% 75%, 50% 100%, 0 75%, 0 25%);
  background: linear-gradient(135deg, rgba(21,171,246,.22), rgba(21,171,246,.02));
}
.page-hero .eyebrow { color: var(--blue-light); }
.page-hero h1 { color: #fff; margin-bottom: 16px; max-width: 760px; }
.page-hero p { color: #cfd9e6; max-width: 680px; font-size: 1.15rem; margin: 0; }
.crumbs { font-size: .82rem; color: var(--blue-light); letter-spacing: .08em; margin-bottom: 18px; }
.crumbs a { color: var(--blue-light); }
.crumbs a:hover { color: #fff; }

/* Footer */
.footer { background: var(--navy-deep); color: #9fb2c6; padding: 64px 0 28px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; }
.footer h4 { color: #fff; font-size: 1rem; margin-bottom: 16px; font-family: var(--font-heading); }
.footer p, .footer li { font-size: .92rem; }
.footer ul { list-style: none; padding: 0; margin: 0; }
.footer ul li { margin-bottom: 8px; }
.footer ul li a { color: #9fb2c6; }
.footer ul li a:hover { color: var(--blue-light); }
.footer .brand { color: #fff; margin-bottom: 14px; }
.footer .brand .brand-name { color: #fff; }
.footer-bottom {
  margin-top: 48px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.08);
  display: flex; justify-content: space-between; align-items: center; gap: 20px; flex-wrap: wrap;
  font-size: .85rem; color: #7d92a8;
}
.footer-bottom .badges { display: flex; gap: 14px; flex-wrap: wrap; }
.badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 12px; border-radius: 999px;
  background: rgba(21,171,246,.12); color: var(--blue-light);
  font-size: .78rem; font-weight: 700; letter-spacing: .04em;
  border: 1px solid rgba(21,171,246,.2);
}

/* Responsive */
@media (max-width: 960px) {
  .hero { padding: 80px 0 96px; }
  .hero-grid, .split, .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .split.reverse > :first-child { order: 0; }
  .hero-visual { max-width: 560px; margin: 0 auto; }
  .hero-slide-title { font-size: 1.15rem; }
  .hero-slide-caption { padding: 24px 24px; }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .value-grid { grid-template-columns: 1fr; }
  .process { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .cta-banner { grid-template-columns: 1fr; padding: 40px 28px; text-align: left; }
}
@media (max-width: 900px) {
  .menu-toggle { display: block; order: 3; margin-left: 8px; }
  .nav-links {
    position: absolute; left: 0; right: 0; top: var(--header-h);
    background: #fff; border-top: 1px solid var(--gray-100);
    flex-direction: column; gap: 0; padding: 10px 16px 16px;
    transform: translateY(-110%); transition: transform .25s ease;
    box-shadow: var(--shadow-md);
    visibility: hidden;
  }
  .nav-links.open { transform: translateY(0); visibility: visible; }
  .nav-links li { width: 100%; }
  .nav-links a { display: block; width: 100%; padding: 14px 12px; }
  .nav-links a.active::after { display: none; }
  /* Pull Get Started out of the collapsing dropdown — keep it visible beside the hamburger.
     Use fixed positioning so the parent menu's translateY doesn't carry it off-screen. */
  .nav-links .nav-cta {
    position: fixed;
    top: 20px;
    right: 72px;
    width: auto; margin: 0;
    visibility: visible;
    z-index: 60;
    list-style: none;
  }
  .nav-links .nav-cta .btn { width: auto; padding: 10px 18px; font-size: .85rem; }
}
@media (max-width: 720px) {
  .section { padding: 64px 0; }
  .form-row { grid-template-columns: 1fr; }
  .process { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .cta-banner { padding: 32px 24px; }
}
@media (max-width: 480px) {
  /* Very small screens — drop the Get Started chip; hamburger still has it */
  .nav-links .nav-cta { display: none; }
  .nav-links.open .nav-cta {
    display: block; position: static;
    margin-top: 8px; width: 100%;
  }
  .nav-links.open .nav-cta .btn { width: 100%; }
}
