/* ============================================
   Help Me Gator — helpmegator.com
   ============================================ */

:root {
  --navy: #14213d;
  --navy-deep: #0c1526;
  --navy-ink: #1b2a4a;
  --green: #2f9e44;
  --green-bright: #40c057;
  --green-dark: #237a34;
  --cream: #f7f9f4;
  --white: #ffffff;
  --text: #2b3445;
  --text-soft: #5a6578;
  --text-on-dark: #c9d3e3;
  --border: #e3e8ef;
  --shadow-sm: 0 1px 3px rgba(12, 21, 38, 0.08);
  --shadow-md: 0 6px 24px rgba(12, 21, 38, 0.10);
  --shadow-lg: 0 18px 50px rgba(12, 21, 38, 0.18);
  --radius: 14px;
  --radius-lg: 22px;
  --font: 'Plus Jakarta Sans', system-ui, -apple-system, 'Segoe UI', sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  color: var(--text);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

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

.container {
  width: min(1160px, 92%);
  margin: 0 auto;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 30px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, color .18s ease;
  font-family: var(--font);
}
.btn:hover { transform: translateY(-2px); }
.btn-green {
  background: var(--green);
  color: #fff;
  box-shadow: 0 6px 18px rgba(47, 158, 68, 0.35);
}
.btn-green:hover { background: var(--green-bright); box-shadow: 0 10px 26px rgba(47, 158, 68, 0.45); }
.btn-outline {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}
.btn-outline:hover { background: var(--navy); color: #fff; }
.btn-outline-light {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.55);
}
.btn-outline-light:hover { background: #fff; color: var(--navy); }
.btn-lg { padding: 18px 38px; font-size: 1.08rem; }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
}
.brand img { height: 96px; width: auto; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 34px;
  list-style: none;
}
.nav-links a {
  text-decoration: none;
  color: var(--navy);
  font-weight: 600;
  font-size: .98rem;
  transition: color .15s ease;
}
.nav-links a:hover { color: var(--green); }
.nav-links .btn { padding: 11px 24px; font-size: .95rem; }
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.nav-toggle span {
  display: block;
  width: 26px; height: 3px;
  background: var(--navy);
  margin: 5px 0;
  border-radius: 2px;
  transition: transform .2s ease, opacity .2s ease;
}

/* ---------- Hero ---------- */
.hero {
  background:
    radial-gradient(900px 500px at 85% -10%, rgba(47,158,68,0.16), transparent 60%),
    radial-gradient(700px 420px at -5% 110%, rgba(47,158,68,0.10), transparent 55%),
    linear-gradient(180deg, var(--cream) 0%, #ffffff 100%);
  padding: 96px 0 110px;
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 60px;
  align-items: center;
}
.eyebrow {
  display: inline-block;
  background: rgba(47,158,68,0.12);
  color: var(--green-dark);
  font-weight: 700;
  font-size: .85rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 8px 18px;
  border-radius: 999px;
  margin-bottom: 22px;
}
.hero h1 {
  font-size: clamp(2.4rem, 5vw, 3.7rem);
  line-height: 1.12;
  color: var(--navy);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 22px;
}
.hero h1 .accent { color: var(--green); }
.hero .lede {
  font-size: 1.18rem;
  color: var(--text-soft);
  max-width: 54ch;
  margin-bottom: 34px;
}
.hero-ctas { display: flex; gap: 16px; flex-wrap: wrap; align-items: center; margin-bottom: 26px; }
.hero-phone {
  color: var(--text-soft);
  font-size: 1rem;
}
.hero-phone a { color: var(--navy); font-weight: 800; text-decoration: none; }
.hero-phone a:hover { color: var(--green); }
.hero-art { position: relative; text-align: center; }
.hero-art img {
  max-height: 420px;
  margin: 0 auto;
  filter: drop-shadow(0 24px 40px rgba(12,21,38,0.18));
  animation: floaty 5s ease-in-out infinite;
}
@keyframes floaty {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-14px); }
}

/* ---------- Stat bar ---------- */
.stat-bar {
  background: var(--navy);
  color: #fff;
  padding: 34px 0;
}
.stat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}
.stat .num {
  font-size: 1.9rem;
  font-weight: 800;
  color: var(--green-bright);
}
.stat .label { color: var(--text-on-dark); font-size: .95rem; }

/* ---------- Sections ---------- */
.section { padding: 96px 0; }
.section-head { max-width: 720px; margin-bottom: 56px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head h2 {
  font-size: clamp(1.9rem, 3.6vw, 2.6rem);
  color: var(--navy);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.18;
  margin: 14px 0 16px;
}
.section-head p { color: var(--text-soft); font-size: 1.1rem; }

/* ---------- Portfolio ---------- */
.work { background: var(--cream); }
.work-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 34px;
}
.work-card {
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  transition: transform .22s ease, box-shadow .22s ease;
}
.work-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.work-preview {
  position: relative;
  padding: 20px 20px 0;
}
.browser-frame {
  border-radius: 12px 12px 0 0;
  overflow: hidden;
  border: 1px solid var(--border);
  border-bottom: none;
  box-shadow: 0 -2px 20px rgba(12,21,38,0.06);
}
.browser-bar {
  background: #eef1f6;
  padding: 9px 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.browser-bar .dot { width: 10px; height: 10px; border-radius: 50%; }
.dot-r { background: #ff5f57; } .dot-y { background: #febc2e; } .dot-g { background: #28c840; }
.browser-bar .url {
  margin-left: 10px;
  background: #fff;
  border-radius: 6px;
  font-size: .78rem;
  color: var(--text-soft);
  padding: 3px 12px;
  flex: 1;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.shot-area { position: relative; }
.site-shot {
  position: absolute;
  inset: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
  background: #fff;
}
.site-mock {
  height: 210px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: #fff;
  text-align: center;
  padding: 0 24px;
}
.site-mock .mock-title {
  font-size: 1.55rem;
  font-weight: 800;
  letter-spacing: -0.01em;
}
.site-mock .mock-sub {
  font-size: .92rem;
  opacity: .85;
  font-weight: 500;
}
.mock-patriot { background: linear-gradient(135deg, #1b2a4a 0%, #b22234 130%); }
.mock-shiny { background: linear-gradient(135deg, #3b2f80 0%, #d4a017 140%); }
.mock-labncloud { background: linear-gradient(135deg, #0e4c92 0%, #33b5a5 130%); }
.mock-vedder { background: linear-gradient(135deg, #232323 0%, #6b3fa0 140%); }
.work-body { padding: 26px 30px 30px; display: flex; flex-direction: column; flex: 1; }
.work-tag {
  font-size: .78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .07em;
  color: var(--green-dark);
  margin-bottom: 8px;
}
.work-body h3 { color: var(--navy); font-size: 1.35rem; margin-bottom: 10px; }
.work-body p { color: var(--text-soft); font-size: .99rem; flex: 1; }
.work-link {
  margin-top: 18px;
  font-weight: 700;
  color: var(--green);
  text-decoration: none;
  font-size: .98rem;
}
.work-link:hover { color: var(--green-dark); }

/* ---------- Straight Talk (pitch) ---------- */
.pitch {
  background: var(--navy);
  color: #fff;
  overflow: hidden;
}
.pitch-grid {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 64px;
  align-items: center;
}
.pitch-art { text-align: center; }
.pitch-art img {
  max-height: 440px;
  margin: 0 auto;
  filter: drop-shadow(0 20px 40px rgba(0,0,0,0.4));
}
.pitch .eyebrow {
  background: rgba(64,192,87,0.18);
  color: var(--green-bright);
}
.pitch h2 {
  font-size: clamp(1.9rem, 3.6vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin-bottom: 20px;
}
.pitch h2 .accent { color: var(--green-bright); }
.pitch p.big {
  color: var(--text-on-dark);
  font-size: 1.12rem;
  margin-bottom: 18px;
}
.pitch-points { list-style: none; margin-top: 28px; display: grid; gap: 18px; }
.pitch-points li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  color: var(--text-on-dark);
  font-size: 1.02rem;
}
.pitch-points .check {
  flex: none;
  width: 26px; height: 26px;
  border-radius: 50%;
  background: var(--green);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .8rem;
  font-weight: 800;
  margin-top: 2px;
}
.pitch-points strong { color: #fff; }

/* ---------- Services ---------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.service-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 34px 30px;
  box-shadow: var(--shadow-sm);
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}
.service-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: rgba(47,158,68,0.45);
}
.service-icon {
  width: 54px; height: 54px;
  border-radius: 14px;
  background: rgba(47,158,68,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 20px;
}
.service-card h3 { color: var(--navy); font-size: 1.18rem; margin-bottom: 10px; }
.service-card p { color: var(--text-soft); font-size: .97rem; }

/* ---------- Hosting callout ---------- */
.hosting-callout {
  margin-top: 44px;
  background: linear-gradient(120deg, var(--navy) 0%, #1d3253 100%);
  border-radius: var(--radius-lg);
  padding: 40px 44px;
  box-shadow: var(--shadow-md);
}
.callout-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
  margin-bottom: 30px;
}
.hosting-callout h3 {
  color: #fff;
  font-size: 1.35rem;
  letter-spacing: -0.01em;
  margin-bottom: 10px;
}
.callout-head p {
  color: var(--text-on-dark);
  font-size: 1rem;
  max-width: 68ch;
}
.callout-head .btn { flex: none; }
.callout-items {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.callout-item {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: var(--radius);
  padding: 22px 22px;
}
.callout-item .ci-icon {
  width: 42px; height: 42px;
  border-radius: 11px;
  background: rgba(47,158,68,0.2);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
  margin-bottom: 14px;
}
.callout-item h4 {
  color: #fff;
  font-size: 1.05rem;
  margin-bottom: 8px;
}
.callout-item p {
  color: var(--text-on-dark);
  font-size: .93rem;
}

/* ---------- Process ---------- */
.process { background: var(--cream); }
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px;
}
.step {
  background: #fff;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  padding: 32px 26px;
  position: relative;
}
.step .step-num {
  font-size: 2.6rem;
  font-weight: 800;
  color: rgba(47,158,68,0.25);
  line-height: 1;
  margin-bottom: 14px;
}
.step h3 { color: var(--navy); font-size: 1.12rem; margin-bottom: 8px; }
.step p { color: var(--text-soft); font-size: .95rem; }

/* ---------- CTA band ---------- */
.cta-band {
  background:
    radial-gradient(800px 460px at 50% -10%, rgba(47,158,68,0.18), transparent 60%),
    linear-gradient(180deg, #ffffff 0%, var(--cream) 100%);
  color: var(--navy);
  text-align: center;
  padding: 100px 0;
}
.cta-band .wordmark-wrap {
  display: inline-block;
  margin-bottom: 38px;
}
.cta-band .wordmark-wrap img {
  max-width: 440px;
  margin: 0 auto;
  filter: drop-shadow(0 14px 30px rgba(12,21,38,0.18));
}
.cta-band h2 {
  font-size: clamp(1.8rem, 3.4vw, 2.4rem);
  font-weight: 800;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
  color: var(--navy);
}
.cta-band p { color: var(--text-soft); font-size: 1.12rem; max-width: 56ch; margin: 0 auto 36px; }
.cta-band .hero-ctas { justify-content: center; }
.cta-band .hero-phone { color: var(--text-soft); width: 100%; margin-top: 10px; }
.cta-band .hero-phone a { color: var(--navy); }
.cta-band .hero-phone a:hover { color: var(--green); }

/* ---------- Contact page ---------- */
.contact-hero {
  background:
    radial-gradient(800px 440px at 80% -10%, rgba(47,158,68,0.15), transparent 60%),
    linear-gradient(180deg, var(--cream) 0%, #fff 100%);
  padding: 80px 0 60px;
  text-align: center;
}
.contact-hero h1 {
  font-size: clamp(2.1rem, 4.4vw, 3rem);
  color: var(--navy);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin: 14px 0 14px;
}
.contact-hero p { color: var(--text-soft); font-size: 1.12rem; max-width: 58ch; margin: 0 auto; }
.contact-wrap {
  display: grid;
  grid-template-columns: 1fr 1.35fr;
  gap: 44px;
  padding: 60px 0 100px;
  align-items: start;
}
.contact-info {
  background: var(--navy);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  position: sticky;
  top: 110px;
}
.contact-info h2 { font-size: 1.4rem; margin-bottom: 10px; }
.contact-info > p { color: var(--text-on-dark); margin-bottom: 28px; font-size: .99rem; }
.contact-line {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 16px 0;
  border-top: 1px solid rgba(255,255,255,0.12);
}
.contact-line .ico {
  flex: none;
  width: 42px; height: 42px;
  border-radius: 12px;
  background: rgba(47,158,68,0.2);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.15rem;
}
.contact-line .lbl { font-size: .82rem; text-transform: uppercase; letter-spacing: .06em; color: var(--text-on-dark); }
.contact-line a, .contact-line .val { color: #fff; font-weight: 700; text-decoration: none; font-size: 1.05rem; }
.contact-line a:hover { color: var(--green-bright); }
.contact-info .mascot-sm { max-height: 190px; margin: 26px auto 0; }

.contact-form {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 44px 42px;
  box-shadow: var(--shadow-md);
}
.contact-form h2 { color: var(--navy); font-size: 1.5rem; margin-bottom: 6px; }
.contact-form .form-sub { color: var(--text-soft); margin-bottom: 30px; font-size: .98rem; }
.form-error {
  background: #fdecea;
  border: 1.5px solid #e5533d;
  color: #a8321f;
  border-radius: 10px;
  padding: 14px 18px;
  font-size: .95rem;
  font-weight: 600;
  margin-bottom: 22px;
}
.form-error a { color: #a8321f; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { margin-bottom: 20px; }
.field label {
  display: block;
  font-weight: 700;
  color: var(--navy);
  font-size: .92rem;
  margin-bottom: 8px;
}
.field label .req { color: var(--green); }
.field input, .field select, .field textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  font-family: var(--font);
  font-size: 1rem;
  color: var(--text);
  background: #fbfcfd;
  transition: border-color .15s ease, box-shadow .15s ease;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--green);
  box-shadow: 0 0 0 4px rgba(47,158,68,0.13);
  background: #fff;
}
.field textarea { resize: vertical; min-height: 130px; }
.contact-form .btn { width: 100%; justify-content: center; margin-top: 6px; }
.form-note { text-align: center; color: var(--text-soft); font-size: .86rem; margin-top: 16px; }

/* ---------- Success page ---------- */
.success-hero {
  background:
    radial-gradient(800px 440px at 50% -10%, rgba(47,158,68,0.16), transparent 60%),
    linear-gradient(180deg, var(--cream) 0%, #fff 100%);
  padding: 90px 0 50px;
  text-align: center;
}
.success-check { width: 96px; height: 96px; margin: 0 auto 30px; }
.success-check svg { width: 100%; height: 100%; }
.check-circle {
  stroke: var(--green);
  stroke-width: 3;
  stroke-dasharray: 151;
  stroke-dashoffset: 151;
  animation: draw-circle .7s ease-out forwards;
}
.check-mark {
  stroke: var(--green);
  stroke-width: 4;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 36;
  stroke-dashoffset: 36;
  animation: draw-check .4s ease-out .55s forwards;
}
@keyframes draw-circle { to { stroke-dashoffset: 0; } }
@keyframes draw-check { to { stroke-dashoffset: 0; } }
.success-hero h1 {
  font-size: clamp(2rem, 4.2vw, 2.9rem);
  color: var(--navy);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin: 14px 0 16px;
}
.success-sub { color: var(--text-soft); font-size: 1.15rem; max-width: 56ch; margin: 0 auto; }
.success-next { padding: 40px 0 100px; }
.next-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  max-width: 980px;
  margin: 0 auto 54px;
}
.next-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 30px 28px;
  box-shadow: var(--shadow-sm);
  text-align: center;
}
.next-card .next-num {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(47,158,68,0.12);
  color: var(--green-dark);
  font-weight: 800;
  font-size: 1.1rem;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px;
}
.next-card h3 { color: var(--navy); font-size: 1.12rem; margin-bottom: 8px; }
.next-card p { color: var(--text-soft); font-size: .95rem; }
.success-actions { text-align: center; }
.success-phone { color: var(--text-soft); font-size: 1.05rem; margin-bottom: 26px; }
.success-phone a { color: var(--navy); font-weight: 800; text-decoration: none; }
.success-phone a:hover { color: var(--green); }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--navy-deep);
  color: var(--text-on-dark);
  padding: 64px 0 30px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 44px;
  padding-bottom: 44px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-brand img {
  height: 64px;
  width: auto;
  margin-bottom: 18px;
  background: #fff;
  border-radius: 12px;
  padding: 6px 14px;
}
.footer-brand p { font-size: .96rem; max-width: 40ch; }
.site-footer h4 {
  color: #fff;
  font-size: .95rem;
  text-transform: uppercase;
  letter-spacing: .07em;
  margin-bottom: 18px;
}
.footer-links { list-style: none; display: grid; gap: 12px; }
.footer-links a { color: var(--text-on-dark); text-decoration: none; font-size: .97rem; }
.footer-links a:hover { color: var(--green-bright); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  padding-top: 26px;
  font-size: .88rem;
}
.footer-bottom .tagline { color: var(--green-bright); font-weight: 700; }

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .6s ease, transform .6s ease; }
.reveal.visible { opacity: 1; transform: none; }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .hero-grid, .pitch-grid { grid-template-columns: 1fr; gap: 44px; }
  .hero { padding: 64px 0 72px; }
  .hero-art img { max-height: 300px; }
  .pitch-art { order: -1; }
  .pitch-art img { max-height: 300px; }
  .work-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .process-grid { grid-template-columns: 1fr 1fr; }
  .stat-grid { grid-template-columns: 1fr 1fr; gap: 30px; }
  .contact-wrap { grid-template-columns: 1fr; }
  .contact-info { position: static; }
  .footer-grid { grid-template-columns: 1fr; gap: 34px; }
}

@media (max-width: 720px) {
  .nav-links {
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    background: #fff;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 10px 4vw 20px;
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-md);
    display: none;
  }
  .nav-links.open { display: flex; }
  .nav-links li { width: 100%; }
  .nav-links a { display: block; padding: 13px 0; font-size: 1.05rem; }
  .nav-links .btn { margin-top: 8px; justify-content: center; width: 100%; }
  .nav-toggle { display: block; }
  .services-grid, .process-grid { grid-template-columns: 1fr; }
  .next-grid { grid-template-columns: 1fr; }
  .hosting-callout { padding: 32px 26px; }
  .callout-head { flex-direction: column; align-items: flex-start; gap: 20px; }
  .callout-items { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .section { padding: 68px 0; }
  .cta-band .wordmark-wrap { padding: 18px 22px; }
  .cta-band .wordmark-wrap img { max-width: 260px; }
}
