:root {
  --black: #111111;
  --yellow: #f4c531;
  --gray-bg: #f7f7f5;
  --gray-line: #e3e2df;
  --text: #1c1c1c;
  --text-muted: #5c5c5c;
  --max-width: 1080px;
  --radius: 10px;
  --shadow: 0 18px 44px rgba(0, 0, 0, 0.14);
}

* { box-sizing: border-box; }

html, body { margin: 0; padding: 0; }

html { scroll-behavior: smooth; scroll-padding-top: 130px; }

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  color: var(--text);
  background: #fff;
  line-height: 1.55;
  -webkit-text-size-adjust: 100%;
}

body.drawer-open { overflow: hidden; }

.wrap {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

a { color: inherit; }
img, svg { max-width: 100%; }

:focus-visible {
  outline: 3px solid var(--black);
  outline-offset: 2px;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--black);
  color: #fff;
  padding: 10px 16px;
  z-index: 100;
}

.skip-link:focus { left: 12px; top: 12px; }

/* ==================================================================
   HEADER
   ================================================================== */

.site-header {
  position: sticky;
  top: 0;
  background: #fff;
  z-index: 40;
  border-bottom: 1px solid var(--gray-line);
}

.header-main { border-bottom: 1px solid var(--gray-line); }

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-top: 16px;
  padding-bottom: 16px;
}

.logo {
  font-weight: 800;
  font-size: 1.3rem;
  text-decoration: none;
  color: var(--black);
  white-space: nowrap;
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 24px;
}

.header-nav a {
  text-decoration: none;
  font-size: 0.95rem;
  color: var(--text);
  white-space: nowrap;
}

.cta {
  background: var(--black);
  color: #fff !important;
  padding: 10px 18px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  display: inline-block;
  border: none;
  cursor: pointer;
  transition: background 0.15s ease;
  font-family: inherit;
}

.cta:hover { background: #000; }

.ghost-cta {
  display: inline-block;
  font-weight: 700;
  font-size: 0.9rem;
  padding: 10px 18px;
  border-radius: 999px;
  border: 2px solid var(--black);
  text-decoration: none;
  color: var(--black);
  transition: background 0.15s ease, color 0.15s ease;
}

.ghost-cta:hover { background: var(--black); color: var(--yellow); }

/* Mobile menu button — hidden on desktop */
.drawer-toggle {
  display: none;
  align-items: center;
  gap: 9px;
  font-family: inherit;
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--text);
  background: #fff;
  border: 1.5px solid var(--gray-line);
  border-radius: 999px;
  padding: 8px 16px;
  cursor: pointer;
}

.bars, .bars::before, .bars::after {
  display: block;
  width: 16px;
  height: 2px;
  background: var(--black);
  border-radius: 2px;
}

.bars { position: relative; }
.bars::before, .bars::after { content: ""; position: absolute; left: 0; }
.bars::before { top: -5px; }
.bars::after { top: 5px; }

/* ==================================================================
   INDUSTRY MENU
   ================================================================== */

.industry-strip { background: #fff; }

/* NOTE: do not put overflow on this bar. It clips the dropdown
   panels, which are absolutely positioned children. When there are
   too many industries for one line they wrap onto a second. */
.industry-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 0 4px;
}

.industry { position: relative; flex: 0 0 auto; }

.industry-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: inherit;
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--text);
  background: none;
  border: none;
  border-bottom: 3px solid transparent;
  padding: 13px 14px;
  cursor: pointer;
  white-space: nowrap;
}

.industry-btn:hover { color: var(--black); border-bottom-color: var(--yellow); }

.chev { width: 14px; height: 14px; flex: 0 0 14px; }

.mega {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 50;
  min-width: 460px;
  max-width: 620px;
  background: #fff;
  border: 1px solid var(--gray-line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 20px;
}

.industry.open .mega { display: block; }

.mega.align-right { left: auto; right: 0; }

@media (hover: hover) and (min-width: 861px) {
  .industry:hover .mega,
  .industry:focus-within .mega { display: block; }
}

.mega-blurb {
  margin: 0 0 14px;
  font-size: 0.85rem;
  color: var(--text-muted);
  border-bottom: 1px solid var(--gray-line);
  padding-bottom: 12px;
}

.mega-groups {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 18px;
}

.mega-group h4 {
  margin: 0 0 8px;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.mega-link {
  display: flex;
  gap: 11px;
  align-items: flex-start;
  padding: 9px 10px;
  margin: 0 -10px;
  border-radius: 8px;
  text-decoration: none;
  color: var(--text);
}

.mega-link:hover { background: var(--gray-bg); }

.mega-icon {
  flex: 0 0 30px;
  width: 30px;
  height: 30px;
  border-radius: 8px;
  background: var(--yellow);
  color: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
}

.mega-icon .icon { width: 18px; height: 18px; display: block; }

.mega-text { display: block; min-width: 0; }
.mega-text strong { display: block; font-size: 0.92rem; }
.mega-text em {
  display: block;
  font-style: normal;
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.4;
}

.mega-all {
  display: inline-block;
  margin-top: 16px;
  padding-top: 13px;
  border-top: 1px solid var(--gray-line);
  width: 100%;
  font-size: 0.85rem;
  font-weight: 700;
  text-decoration: none;
  color: var(--black);
}

.mega-all:hover { text-decoration: underline; }

/* ==================================================================
   MOBILE DRAWER
   ================================================================== */

.drawer {
  position: fixed;
  inset: 0;
  z-index: 60;
  background: rgba(0, 0, 0, 0.45);
}

.drawer-panel {
  position: absolute;
  inset: 0 0 0 auto;
  width: min(410px, 88vw);
  background: #fff;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  padding: 18px;
}

.drawer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-weight: 800;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--gray-line);
  margin-bottom: 8px;
}

.drawer-top button {
  font-family: inherit;
  font-size: 1.6rem;
  line-height: 1;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0 6px;
}

.drawer-body { flex: 1; }

.drawer-section { border-bottom: 1px solid var(--gray-line); }

.drawer-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 700;
  text-align: left;
  background: none;
  border: none;
  padding: 15px 0;
  cursor: pointer;
}

.drawer-section.open .drawer-head .chev { transform: rotate(180deg); }

.drawer-list { display: none; padding: 0 0 12px; }
.drawer-section.open .drawer-list { display: block; }

.drawer-list a {
  display: block;
  padding: 9px 0 9px 12px;
  border-left: 2px solid var(--gray-line);
  text-decoration: none;
  color: var(--text);
}

.drawer-list a:hover { border-left-color: var(--yellow); }
.drawer-list strong { display: block; font-size: 0.93rem; }
.drawer-list em {
  display: block;
  font-style: normal;
  font-size: 0.8rem;
  color: var(--text-muted);
}

.drawer-cta { text-align: center; margin-top: 18px; }

/* ==================================================================
   HERO
   ================================================================== */

.hero {
  background: var(--yellow);
  padding: 64px 0 190px;
  position: relative;
  overflow: hidden;
}

.hero .wrap { position: relative; z-index: 2; }

.skyline {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 180px;
  display: block;
  z-index: 1;
}

.eyebrow {
  display: inline-block;
  background: var(--black);
  color: var(--yellow);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 999px;
  margin-bottom: 18px;
}

.hero h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.15;
  margin: 0 0 18px;
  max-width: 720px;
}

.lede {
  font-size: 1.1rem;
  max-width: 560px;
  margin: 0 0 28px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}

/* ==================================================================
   SECTION BASICS
   ================================================================== */

.services { padding: 76px 0; background: var(--gray-bg); }
.how { padding: 76px 0; }
.platform { padding: 76px 0; background: var(--gray-bg); border-top: 1px solid var(--gray-line); }
.suggest { padding: 76px 0; background: var(--black); color: #fff; }
.signup { padding: 76px 0; background: var(--gray-bg); }
.business { padding: 72px 0; background: var(--black); color: #fff; }

.services h2, .how h2, .platform h2, .business h2,
.signup h2, .contact h2, .suggest h2, .faq h2, .related h2, .detail h2 {
  font-size: 2rem;
  margin: 0 0 8px;
}

.count {
  display: inline-block;
  vertical-align: middle;
  background: var(--black);
  color: var(--yellow);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 4px 11px;
  border-radius: 999px;
  margin-left: 10px;
}

.section-sub {
  color: var(--text-muted);
  margin: 0 0 40px;
  max-width: 640px;
}

/* ==================================================================
   SERVICES, GROUPED BY INDUSTRY
   ================================================================== */

.industry-block { margin-bottom: 52px; }
.industry-block:last-child { margin-bottom: 0; }

.industry-head {
  border-top: 3px solid var(--black);
  padding-top: 14px;
  margin-bottom: 22px;
}

.industry-head h3 { margin: 0 0 4px; font-size: 1.35rem; }

.industry-head p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.92rem;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}

.card {
  background: #fff;
  border: 1px solid var(--gray-line);
  border-radius: var(--radius);
  padding: 24px;
  display: flex;
  flex-direction: column;
  transition: border-color 0.15s ease, transform 0.15s ease;
}

.card:hover { border-color: var(--black); transform: translateY(-2px); }

.card-top {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}

.icon-wrap {
  width: 46px;
  height: 46px;
  flex: 0 0 46px;
  border-radius: 12px;
  background: var(--yellow);
  color: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
}

.icon-wrap .icon { width: 26px; height: 26px; display: block; }

.icon-wrap.big {
  width: 64px;
  height: 64px;
  flex: 0 0 64px;
  border-radius: 16px;
  border: 2px solid var(--black);
}

.icon-wrap.big .icon { width: 36px; height: 36px; }

.badge {
  display: inline-block;
  background: var(--yellow);
  color: var(--black);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 999px;
  border: 1.5px solid var(--black);
}

.card h4 { margin: 0 0 6px; font-size: 1.15rem; }

.card-link { text-decoration: none; }
.card-link:hover { text-decoration: underline; }

.card .tag, .platform-card .tag {
  font-style: italic;
  color: var(--text-muted);
  font-size: 0.9rem;
  margin: 0 0 12px;
}

.card .what, .platform-card .what {
  margin: 0 0 14px;
  font-size: 0.94rem;
}

.card-meta {
  margin: 0 0 14px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.card-cta {
  margin-top: auto;
  align-self: flex-start;
  font-weight: 700;
  font-size: 0.88rem;
  text-decoration: none;
  border-bottom: 2px solid var(--yellow);
  padding-bottom: 2px;
}

.card-cta:hover { border-bottom-color: var(--black); }

/* ==================================================================
   HOW IT WORKS / PLATFORM / BUSINESS
   ================================================================== */

.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 32px;
  margin-top: 32px;
}

.step .num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  background: var(--yellow);
  color: var(--black);
  border-radius: 50%;
  font-weight: 800;
  margin-bottom: 14px;
}

.step h3 { margin: 0 0 8px; font-size: 1.05rem; }
.step p { margin: 0; color: var(--text-muted); font-size: 0.95rem; }

.platform-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.platform-card {
  background: #fff;
  border: 1px solid var(--gray-line);
  border-radius: var(--radius);
  padding: 24px;
}

.platform-card .icon-wrap { margin-bottom: 14px; }
.platform-card h3 { margin: 0 0 6px; font-size: 1.05rem; }
.platform-card .what { margin-bottom: 0; }

.business-inner { display: flex; align-items: center; gap: 48px; }
.business-copy { flex: 1; }
.business h2 { color: #fff; margin-bottom: 12px; }
.business p { color: #ccc; margin: 0 0 24px; max-width: 560px; }

.eyebrow-dark {
  display: inline-block;
  background: var(--yellow);
  color: var(--black);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 999px;
  margin-bottom: 16px;
}

.business .cta { background: var(--yellow); color: var(--black) !important; }
.business .cta:hover { background: #ffd54a; }

.business-icon { flex: 0 0 150px; color: var(--yellow); }
.business-icon .icon { width: 150px; height: 150px; display: block; }

/* ==================================================================
   SUGGESTION BOX
   ================================================================== */

.suggest-inner {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 48px;
  align-items: start;
}

.suggest h2 { color: #fff; }
.suggest-copy p { color: #ccc; margin: 0; }

.suggest-form {
  background: #fff;
  color: var(--text);
  border-radius: var(--radius);
  padding: 26px;
}

/* ==================================================================
   FORMS
   ================================================================== */

.tabs { display: flex; gap: 8px; margin-bottom: 24px; flex-wrap: wrap; }

.tab {
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text);
  background: #fff;
  border: 1.5px solid var(--gray-line);
  border-radius: 999px;
  padding: 10px 20px;
  cursor: pointer;
}

.tab:hover { border-color: var(--black); }
.tab.active { background: var(--black); border-color: var(--black); color: #fff; }

.panel[hidden] { display: none; }

.signup-sub { color: var(--text-muted); margin: 0 0 28px; max-width: 620px; }

.signup-form {
  background: #fff;
  border: 1px solid var(--gray-line);
  border-radius: var(--radius);
  padding: 28px;
  max-width: 720px;
}

.hp { position: absolute; left: -9999px; }

.field-row { display: flex; gap: 16px; }

.field { display: block; flex: 1; margin-bottom: 16px; min-width: 0; }

.field > span, .field legend {
  display: block;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 6px;
}

.field em { font-style: normal; font-weight: 600; text-transform: none; letter-spacing: 0; }

.field input[type="text"],
.field input[type="email"],
.field input[type="tel"],
.field select,
.field textarea {
  width: 100%;
  font-family: inherit;
  font-size: 1rem;
  color: var(--text);
  background: #fff;
  border: 1.5px solid var(--gray-line);
  border-radius: 8px;
  padding: 11px 12px;
  transition: border-color 0.12s ease;
}

.field textarea { resize: vertical; }

.field input:focus, .field select:focus, .field textarea:focus {
  border-color: var(--black);
  outline: none;
}

.boroughs-field { border: none; padding: 0; margin: 0 0 16px; }

.checkbox-row { display: flex; flex-wrap: wrap; gap: 10px 18px; }

.checkbox { display: inline-flex; align-items: center; gap: 7px; font-size: 0.92rem; cursor: pointer; }
.checkbox input { width: 17px; height: 17px; accent-color: var(--black); }

.submit { margin-top: 6px; padding: 12px 26px; font-size: 0.95rem; }
.submit:disabled { opacity: 0.6; cursor: default; }

.form-note { font-size: 0.82rem; color: var(--text-muted); margin: 12px 0 0; }

.form-status { margin: 12px 0 0; font-size: 0.92rem; font-weight: 600; }
.form-status:empty { display: none; }
.form-status.success { color: #1a7f37; }
.form-status.error { color: #b3261e; }

/* ==================================================================
   SERVICE DETAIL PAGE
   ================================================================== */

.crumbs {
  background: var(--gray-bg);
  border-bottom: 1px solid var(--gray-line);
  font-size: 0.85rem;
  color: var(--text-muted);
}

.crumbs .wrap { display: flex; gap: 8px; flex-wrap: wrap; padding-top: 12px; padding-bottom: 12px; }
.crumbs a { color: var(--text-muted); }
.crumbs [aria-current] { color: var(--black); font-weight: 700; }

.service-hero { background: var(--yellow); padding: 44px 0 52px; }

.service-hero-top {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.industry-pill {
  display: inline-block;
  background: var(--black);
  color: var(--yellow);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 999px;
}

.service-hero h1 {
  font-size: clamp(1.9rem, 3.4vw, 2.7rem);
  line-height: 1.15;
  margin: 0 0 10px;
  max-width: 820px;
}

.service-tag {
  font-style: italic;
  font-size: 1.05rem;
  margin: 0 0 16px;
  max-width: 700px;
}

.service-lede { font-size: 1.05rem; max-width: 720px; margin: 0 0 26px; }

.facts { background: var(--black); color: #fff; padding: 30px 0; }

.facts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 26px;
  margin: 0;
}

.fact dt {
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 6px;
}

.fact dd { margin: 0; font-size: 0.92rem; color: #e8e8e8; }

.detail { padding: 64px 0; }
.detail.alt { background: var(--gray-bg); border-top: 1px solid var(--gray-line); }

.detail-cols {
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  gap: 48px;
  align-items: start;
}

.detail-col h2 { font-size: 1.4rem; margin-bottom: 16px; }

.check-list, .cross-list, .plain-list { list-style: none; margin: 0; padding: 0; }

.check-list li, .cross-list li, .plain-list li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 11px;
  font-size: 0.97rem;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 3px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--yellow);
  border: 1.5px solid var(--black);
}

.check-list li::after {
  content: "";
  position: absolute;
  left: 5px;
  top: 8px;
  width: 8px;
  height: 4px;
  border-left: 2px solid var(--black);
  border-bottom: 2px solid var(--black);
  transform: rotate(-45deg);
}

.cross-list li::before {
  content: "\00d7";
  position: absolute;
  left: 2px;
  top: -1px;
  font-size: 1.15rem;
  font-weight: 800;
  color: #b3261e;
}

.plain-list li::before {
  content: "";
  position: absolute;
  left: 4px;
  top: 9px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--black);
}

.detail-note {
  margin: 18px 0 0;
  font-size: 0.87rem;
  color: var(--text-muted);
  border-left: 3px solid var(--yellow);
  padding-left: 12px;
}

.step-list { margin: 0; padding-left: 22px; }
.step-list li { margin-bottom: 11px; font-size: 0.97rem; }

.faq { padding: 64px 0; }

.faq-item {
  border-bottom: 1px solid var(--gray-line);
  padding: 4px 0;
}

.faq-item summary {
  cursor: pointer;
  font-weight: 700;
  font-size: 1rem;
  padding: 16px 0;
  list-style: none;
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary::after {
  content: "+";
  float: right;
  font-size: 1.3rem;
  line-height: 1;
  color: var(--text-muted);
}

.faq-item[open] summary::after { content: "\2013"; }

.faq-item p { margin: 0 0 18px; color: var(--text-muted); max-width: 760px; }

.related { padding: 64px 0; background: var(--gray-bg); border-top: 1px solid var(--gray-line); }

.related-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
  margin-top: 24px;
}

.related-card {
  display: block;
  background: #fff;
  border: 1px solid var(--gray-line);
  border-radius: var(--radius);
  padding: 20px;
  text-decoration: none;
  transition: border-color 0.15s ease;
}

.related-card:hover { border-color: var(--black); }
.related-card .icon-wrap { margin-bottom: 12px; }
.related-card strong { display: block; margin-bottom: 4px; }
.related-card em { font-style: normal; font-size: 0.85rem; color: var(--text-muted); }

/* ==================================================================
   CONTACT / FOOTER
   ================================================================== */

.contact { background: var(--black); color: #fff; padding: 64px 0; text-align: center; }
.contact h2 { color: #fff; }
.contact p { color: #ccc; margin: 0 0 24px; }
.contact .cta { background: var(--yellow); color: var(--black) !important; }
.contact .cta:hover { background: #ffd54a; }

.site-footer {
  padding: 24px 0;
  text-align: center;
  color: var(--text-muted);
  font-size: 0.85rem;
}

.site-footer a { color: var(--text-muted); }

/* ==================================================================
   RESPONSIVE
   ================================================================== */

@media (max-width: 980px) {
  .suggest-inner { grid-template-columns: 1fr; gap: 30px; }
  .detail-cols { grid-template-columns: 1fr; gap: 38px; }
}

@media (max-width: 900px) {
  .business-inner { flex-direction: column; align-items: flex-start; gap: 32px; }
  .business-icon { flex: 0 0 auto; }
  .business-icon .icon { width: 110px; height: 110px; }
}

/* Below this width the top industry bar is replaced by the drawer. */
@media (max-width: 860px) {
  .industry-strip { display: none; }
  .drawer-toggle { display: inline-flex; }
  .header-nav .nav-link { display: none; }
  html { scroll-padding-top: 80px; }
}

@media (max-width: 720px) {
  .services, .how, .platform, .suggest, .signup { padding: 56px 0; }
  .business, .contact { padding: 52px 0; }
  .detail, .faq, .related { padding: 48px 0; }

  .hero { padding: 44px 0 150px; }
  .skyline { height: 130px; }
  .service-hero { padding: 34px 0 40px; }

  .field-row { flex-direction: column; gap: 0; }
  .signup-form, .suggest-form { padding: 22px; }
}

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

  .header-inner { padding-top: 12px; padding-bottom: 12px; }
  .logo { font-size: 1.15rem; }

  .services h2, .how h2, .platform h2, .business h2,
  .signup h2, .contact h2, .suggest h2, .faq h2, .related h2 { font-size: 1.6rem; }

  .lede { font-size: 1rem; }

  .hero-actions .cta, .hero-actions .ghost-cta { flex: 1 1 auto; text-align: center; }

  .grid, .platform-grid, .related-grid { grid-template-columns: 1fr; }

  .steps { gap: 26px; }
  .card { padding: 20px; }

  .count { display: block; width: fit-content; margin: 8px 0 0; }
  .tabs .tab { flex: 1 1 auto; }
}

@media (max-width: 380px) {
  .hero h1 { font-size: 1.8rem; }
  .drawer-toggle { padding: 8px 12px; font-size: 0.85rem; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { transition: none !important; }
}
