/* NET1Plus LLC — site styles
   Tokens and measurements transcribed from design/*.dc.html */

:root {
  --accent: #0077C0;
  --magenta: #b92c92;
  --ink: #0a0a0a;
  --body: #4a4e5c;
  --muted: #7a7d89;
  --muted-2: #6b6f7c;
  --on-dark: #b8bcc6;
  --on-dark-2: #d7dae0;
  --page: #f9fafb;
  --card: #ffffff;
  --border: #dfe3e8;
  --subtle: #eef2f6;
  --dark-card: #16161a;
  --dark-border: #2c2c33;
  --warn: #e8a13c;

  --serif: 'Bitter', Georgia, 'Times New Roman', serif;
  --sans: 'Public Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --mono: 'IBM Plex Mono', ui-monospace, SFMono-Regular, Menlo, monospace;

  --wrap: 1180px;
  --wrap-legal: 860px;
  --pad-x: 36px;
}

*, *::before, *::after { box-sizing: border-box; }

html, body { margin: 0; padding: 0; background: var(--page); }

body {
  font-family: var(--sans);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
}

a { color: var(--accent); }
a:hover { color: var(--magenta); }

img { max-width: 100%; }

/* Long compound service names must never force horizontal scroll on narrow phones */
h1, h2, h3, p, .menu-name, .era-detail, .service-body { overflow-wrap: break-word; }

/* Visible focus for keyboard users — accessibility statement commits to this */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--ink);
  color: var(--page);
  padding: 12px 20px;
  border-radius: 0 0 8px 0;
  font-size: 14px;
  font-weight: 600;
  z-index: 100;
}
.skip-link:focus { left: 0; color: var(--page); }

/* ---------- layout ---------- */

.wrap { max-width: var(--wrap); margin: 0 auto; padding-left: var(--pad-x); padding-right: var(--pad-x); }
.page { background: var(--page); }

/* ---------- header ---------- */

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 22px var(--pad-x);
}
.logo { display: block; }
.logo img { width: 240px; height: 66px; object-fit: contain; display: block; }

.site-nav {
  display: flex;
  align-items: center;
  gap: 30px;
  font-size: 15px;
  font-weight: 600;
}
.nav-links { display: flex; align-items: center; gap: 30px; }
.site-nav a { text-decoration: none; }

.btn-dark {
  background: var(--ink);
  color: var(--page);
  padding: 11px 22px;
  border-radius: 100px;
  text-decoration: none;
}
.btn-dark:hover { background: var(--accent); color: #ffffff; }

/* ---------- buttons ---------- */

.btn-primary {
  display: inline-block;
  text-decoration: none;
  background: var(--accent);
  color: #ffffff;
  padding: 16px 34px;
  border-radius: 100px;
  font-weight: 700;
  font-size: 17px;
}
.btn-primary:hover { background: var(--ink); color: #ffffff; }

.btn-primary-on-dark { padding: 16px 36px; margin-top: 10px; }
.btn-primary-on-dark:hover { background: var(--page); color: var(--ink); }

/* ---------- type ---------- */

.eyebrow {
  font-family: var(--mono);
  font-size: 14px;
  color: var(--accent);
  margin-bottom: 22px;
}
.eyebrow-cap {
  font-family: var(--mono);
  font-size: 13px;
  color: var(--accent);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.eyebrow-cap-muted {
  font-family: var(--mono);
  font-size: 13px;
  color: var(--muted);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

h1, h2, h3 { font-family: var(--serif); color: var(--ink); }

.h1 {
  font-size: 72px;
  line-height: 1.18;
  font-weight: 800;
  margin: 0;
  max-width: 1020px;
  text-wrap: pretty;
}
.h1-sub { font-size: 64px; line-height: 1.16; }
.h1 em, .h1-sub em { color: var(--accent); font-weight: 700; }

.h2 { font-size: 40px; font-weight: 800; margin: 0; }

.lede {
  font-size: 19px;
  line-height: 1.65;
  color: var(--body);
  margin: 0;
  text-wrap: pretty;
}

/* ---------- hero ---------- */

.hero { max-width: var(--wrap); margin: 0 auto; padding: 44px var(--pad-x) 0; }
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: end;
  margin-top: 40px;
}
.hero-grid-sub { margin-top: 36px; }
.hero-cta {
  display: flex;
  gap: 16px;
  justify-content: flex-end;
  align-items: center;
  flex-wrap: wrap;
}
.hero-cta a:not(.btn-primary) { font-weight: 600; font-size: 16px; text-decoration: none; }

/* ---------- collage ---------- */

.collage-section { max-width: var(--wrap); margin: 40px auto 0; padding: 0 var(--pad-x); }
.collage-rel { position: relative; }
.collage {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr) minmax(0, 0.85fr);
  gap: 14px;
  height: 380px;
}
.collage img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 16px;
  display: block;
}
.collage-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--ink);
  color: var(--page);
  border-radius: 12px;
  padding: 14px 20px;
  font-family: var(--mono);
  font-size: 14px;
  pointer-events: none;
}

/* ---------- services ---------- */

.services { max-width: var(--wrap); margin: 0 auto; padding: 64px var(--pad-x) 28px; }
.services-grid {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 64px;
  align-items: start;
}
.services-aside {
  position: sticky;
  top: 32px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.services-aside p { font-size: 16px; line-height: 1.65; color: var(--body); margin: 0; }
.services-aside a { font-weight: 600; font-size: 15px; }
.services-list { display: flex; flex-direction: column; }

.service-row {
  display: grid;
  grid-template-columns: 64px 1fr 1.2fr;
  gap: 24px;
  align-items: baseline;
  padding: 26px 0;
  border-top: 1px solid var(--border);
}
.service-row:hover { background: var(--subtle); }
.service-num { font-family: var(--mono); font-size: 14px; color: var(--accent); }
.service-row h3 { font-size: 22px; font-weight: 700; margin: 0; }
.service-body { display: flex; flex-direction: column; gap: 12px; }
.service-body p { font-size: 15px; line-height: 1.6; color: var(--body); margin: 0; }
.service-body a { font-weight: 600; font-size: 14px; }
.services-end { border-top: 1px solid var(--border); }

.tags { display: flex; flex-wrap: wrap; gap: 6px; }
.tag {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--body);
  background: var(--subtle);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 4px 10px;
}

/* ---------- why ---------- */

.why {
  background: var(--card);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  margin-top: 40px;
}
.why-inner { max-width: var(--wrap); margin: 0 auto; padding: 64px var(--pad-x); }
.why-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 64px;
  align-items: start;
}
.why-col { display: flex; flex-direction: column; gap: 20px; }
.why-col h2 { font-size: 42px; line-height: 1.12; font-weight: 800; margin: 0; text-wrap: pretty; }
.why-col p { font-size: 17px; line-height: 1.7; color: var(--body); margin: 0; }
.why-note { font-size: 15px !important; line-height: 1.65 !important; color: var(--muted) !important; font-style: italic; }

.idea-card {
  background: var(--ink);
  border-radius: 16px;
  padding: 30px 32px;
  margin-top: 8px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.idea-card h3 {
  font-size: 26px;
  line-height: 1.25;
  font-weight: 800;
  margin: 0;
  color: var(--page);
  text-wrap: pretty;
}
.idea-card p { font-size: 15.5px; line-height: 1.7; color: var(--on-dark); margin: 0; }
.idea-card a {
  color: var(--page);
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  border-bottom: 2px solid var(--accent);
  align-self: flex-start;
  padding-bottom: 2px;
}
.idea-card a:hover { color: #ffffff; border-bottom-color: var(--magenta); }

/* timeline */
.timeline-card {
  background: var(--page);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px 32px;
}
.timeline-card > .eyebrow-cap-muted { margin-bottom: 18px; display: block; }
.timeline { display: flex; flex-direction: column; }
.era { display: grid; grid-template-columns: 92px 14px 1fr; gap: 12px; align-items: stretch; }
.era-year {
  font-family: var(--mono);
  font-size: 13px;
  color: var(--ink);
  font-weight: 500;
  padding: 6px 0 14px;
  text-align: right;
}
.era-rail { display: flex; flex-direction: column; align-items: center; }
.era-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--accent);
  margin-top: 9px;
  flex: none;
}
.era-dot.today { background: var(--magenta); }
.era-line { width: 2px; flex: 1; background: var(--border); }
.era-body { padding: 5px 0 16px; }
.era-head { font-size: 15px; line-height: 1.45; font-weight: 600; color: var(--ink); }
.era-detail { font-size: 13.5px; line-height: 1.55; color: var(--muted-2); margin-top: 3px; }

/* values */
.values {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  border-top: 1px solid var(--border);
  margin-top: 48px;
  padding-top: 32px;
}
.value { display: flex; flex-direction: column; gap: 6px; }
.value-title { font-family: var(--serif); font-size: 18px; font-weight: 700; color: var(--accent); }
.value-desc { font-size: 14px; line-height: 1.55; color: var(--body); }

/* ---------- steps ---------- */

.steps-section { max-width: var(--wrap); margin: 0 auto; padding: 64px var(--pad-x); }
.steps-section h2 { margin: 0 0 48px; }
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; }
.step {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-right: 32px;
  border-right: 1px solid var(--border);
}
.step-num { font-family: var(--serif); font-size: 52px; font-weight: 800; color: var(--accent); line-height: 1; }
.step-title { font-family: var(--serif); font-size: 20px; font-weight: 700; color: var(--ink); }
.step-desc { font-size: 15px; line-height: 1.6; color: var(--body); }

/* ---------- pricing band ---------- */

.pricing-section { max-width: var(--wrap); margin: 0 auto; padding: 0 var(--pad-x) 64px; }
.pricing-box {
  background: var(--subtle);
  border-radius: 20px;
  padding: 64px;
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 56px;
  align-items: center;
}
.pricing-box h2 { font-size: 38px; line-height: 1.15; }
.pricing-box p { font-size: 18px; line-height: 1.7; color: var(--body); margin: 0; text-wrap: pretty; }

/* ---------- contact ---------- */

.contact { background: var(--ink); }
.contact-grid {
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 64px var(--pad-x);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 64px;
  align-items: start;
}
.contact-intro { display: flex; flex-direction: column; gap: 18px; }
.contact-intro h2 {
  font-size: 46px;
  line-height: 1.12;
  font-weight: 800;
  margin: 0;
  color: #ffffff;
  text-wrap: pretty;
}
.contact-intro p { font-size: 17px; line-height: 1.7; color: #b9b9b9; margin: 0; max-width: 480px; }
.contact-confidence { font-size: 14px !important; line-height: 1.6 !important; color: var(--muted) !important; font-style: italic; }

.contact-card {
  background: var(--dark-card);
  border: 1px solid var(--dark-border);
  border-radius: 16px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.field-pair { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 16px; }
.field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--on-dark);
}
.field input,
.field textarea,
.field select {
  width: 100%;
  background: var(--ink);
  border: 1px solid var(--dark-border);
  border-radius: 8px;
  padding: 12px 14px;
  font-size: 15px;
  color: var(--page);
  font-family: var(--sans);
}
.field textarea { resize: vertical; }

.call-times { display: flex; flex-direction: column; gap: 10px; }
.call-times-label { font-size: 13px; font-weight: 600; color: var(--on-dark); }
.call-times-label span { font-weight: 400; color: var(--muted); }
.call-grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 10px; }
.call-grid input,
.call-grid select {
  width: 100%;
  background: var(--ink);
  border: 1px solid var(--dark-border);
  border-radius: 8px;
  padding: 11px 14px;
  font-size: 14px;
  color: var(--page);
  font-family: var(--sans);
}
.call-grid input[type="date"] { color-scheme: dark; }
/* ---------- custom date picker ----------
   Native <input type="date"> cannot disable arbitrary dates, so weekends and
   holidays are rendered as disabled cells in this calendar instead. */

.datepicker { position: relative; }

.dp-trigger {
  width: 100%;
  text-align: left;
  background: var(--ink);
  border: 1px solid var(--dark-border);
  border-radius: 8px;
  padding: 11px 14px;
  font-size: 14px;
  font-family: var(--sans);
  color: var(--page);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}
.dp-trigger:hover { border-color: #3d3d46; }
.dp-trigger[aria-expanded="true"] { border-color: var(--accent); }
.dp-trigger::after {
  content: "";
  width: 13px;
  height: 13px;
  flex: none;
  border: 1.5px solid var(--muted);
  border-radius: 3px;
  box-shadow: inset 0 3px 0 -1.5px var(--muted);
}
.dp-value { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.dp-value.is-empty { color: var(--muted); }

.dp-panel {
  position: absolute;
  z-index: 30;
  top: calc(100% + 6px);
  left: 0;
  width: 272px;
  max-width: calc(100vw - 80px);
  background: var(--ink);
  border: 1px solid var(--dark-border);
  border-radius: 12px;
  padding: 12px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.55);
}
.dp-panel[hidden] { display: none; }

.dp-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 10px;
}
.dp-month {
  font-size: 13.5px;
  font-weight: 700;
  color: var(--page);
  font-family: var(--sans);
}
.dp-nav {
  background: transparent;
  border: 1px solid var(--dark-border);
  border-radius: 6px;
  color: var(--page);
  width: 28px;
  height: 28px;
  line-height: 1;
  font-size: 15px;
  cursor: pointer;
  flex: none;
  font-family: var(--sans);
}
.dp-nav:hover:not(:disabled) { background: var(--dark-border); }
.dp-nav:disabled { color: #43434c; cursor: default; border-color: #232329; }

.dp-dow, .dp-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 2px; }
.dp-dow { margin-bottom: 4px; }
.dp-dow span {
  text-align: center;
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--muted);
  padding: 4px 0;
}

.dp-day {
  background: transparent;
  border: 0;
  border-radius: 6px;
  color: var(--page);
  font-family: var(--sans);
  font-size: 13px;
  height: 32px;
  cursor: pointer;
  padding: 0;
}
.dp-day:hover:not(:disabled) { background: var(--dark-border); }
.dp-day:disabled {
  color: #45454e;
  cursor: default;
  text-decoration: line-through;
  text-decoration-thickness: 1px;
}
.dp-day.is-selected { background: var(--accent); color: #ffffff; font-weight: 700; }
.dp-day.is-selected:hover { background: var(--accent); }
.dp-blank { height: 32px; }

.dp-foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px solid var(--dark-border);
}
.dp-hint { font-size: 11px; line-height: 1.4; color: var(--muted); }
.dp-clear {
  background: transparent;
  border: 0;
  color: var(--on-dark);
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  padding: 4px 6px;
  border-radius: 6px;
  flex: none;
}
.dp-clear:hover { background: var(--dark-border); color: #ffffff; }

.date-warning { font-size: 13px; color: var(--warn); }
.call-note { font-size: 12px; color: var(--muted); }

.honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.recaptcha-note { font-size: 11.5px; line-height: 1.5; color: #5c5f6b; }
.recaptcha-note a { color: var(--muted); }

.form-error {
  font-size: 13.5px;
  line-height: 1.6;
  color: var(--warn);
  margin: 0;
}

.btn-submit {
  background: var(--accent);
  color: #ffffff;
  border: none;
  border-radius: 100px;
  padding: 15px 34px;
  font-weight: 700;
  font-size: 16px;
  font-family: var(--sans);
  cursor: pointer;
  align-self: flex-start;
}
.btn-submit:hover { background: var(--page); color: var(--ink); }
.btn-submit[disabled] { opacity: 0.6; cursor: default; }

.thanks-card {
  background: var(--dark-card);
  border: 1px solid var(--dark-border);
  border-radius: 16px;
  padding: 48px 36px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
  text-align: center;
}
.thanks-card .thanks-title { font-family: var(--serif); font-size: 26px; font-weight: 800; color: var(--page); }
.thanks-card p { font-size: 15px; line-height: 1.65; color: var(--on-dark); margin: 0; }

/* Google's badge is hidden; the disclosure line above satisfies their terms */
.grecaptcha-badge { visibility: hidden; }

/* ---------- footer ---------- */

.site-footer { background: var(--card); border-top: 1px solid var(--border); }
.footer-grid {
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 48px var(--pad-x) 40px;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  align-items: start;
}
.footer-brand { display: flex; flex-direction: column; gap: 12px; }
.footer-name { font-family: var(--serif); font-size: 20px; font-weight: 800; color: var(--ink); }
.footer-brand p { font-size: 14px; line-height: 1.6; color: var(--muted); margin: 0; max-width: 280px; }
.footer-col { display: flex; flex-direction: column; gap: 10px; font-size: 14px; }
.footer-col > .eyebrow-cap-muted { font-size: 12px; margin-bottom: 4px; }
.footer-col a { color: var(--body); text-decoration: none; }
.footer-col a:hover { color: var(--magenta); }
.footer-col div:not(.eyebrow-cap-muted) { color: var(--body); }

.footer-bar { border-top: 1px solid var(--border); }
.footer-bar-inner {
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 18px var(--pad-x);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: var(--muted);
  flex-wrap: wrap;
}

/* ---------- service-page pieces ---------- */

.menu-section { max-width: var(--wrap); margin: 48px auto 0; padding: 0 var(--pad-x); }
.menu-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 44px 48px;
}
.menu-card .eyebrow-cap { margin-bottom: 8px; display: block; }
.menu-card h2 { font-size: 32px; font-weight: 800; margin: 0 0 28px; }
.menu-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px 40px; }
.menu-item {
  display: flex;
  gap: 14px;
  align-items: baseline;
  border-bottom: 1px solid var(--subtle);
  padding-bottom: 14px;
}
.menu-num { font-family: var(--mono); font-size: 13px; color: var(--accent); flex: none; }
.menu-name { font-size: 16px; font-weight: 600; color: var(--ink); line-height: 1.5; }

.engage-section { max-width: var(--wrap); margin: 48px auto 0; padding: 0 var(--pad-x); }
.engage-section h2 { margin: 0 0 14px; }
.section-lede {
  font-size: 17px;
  line-height: 1.65;
  color: var(--body);
  margin: 0 0 40px;
  max-width: 660px;
}
.engage-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; align-items: stretch; }
.engage-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.engage-head { display: flex; justify-content: space-between; align-items: baseline; gap: 12px; }
.engage-num { font-family: var(--mono); font-size: 13px; color: var(--muted); }
.engage-card h3 { font-size: 24px; line-height: 1.25; font-weight: 800; margin: 0; }
.engage-card p { font-size: 15.5px; line-height: 1.7; color: var(--body); margin: 0; }
.engage-fit { font-size: 14px; line-height: 1.6; color: var(--muted); font-style: italic; margin-top: auto; }

.projects-section { max-width: var(--wrap); margin: 0 auto; padding: 64px var(--pad-x); }
.projects-box {
  background: var(--ink);
  border-radius: 20px;
  padding: 56px 64px;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 56px;
  align-items: start;
}
.projects-intro { display: flex; flex-direction: column; gap: 12px; }
.projects-intro h2 {
  font-size: 36px;
  line-height: 1.15;
  font-weight: 800;
  margin: 0;
  color: #ffffff;
  text-wrap: pretty;
}
.projects-intro p { font-size: 16px; line-height: 1.7; color: var(--on-dark); margin: 0; }
.projects-list { display: grid; grid-template-columns: 1fr 1fr; gap: 14px 24px; }
.project-item { display: flex; gap: 12px; align-items: baseline; }
.project-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
  flex: none;
  position: relative;
  top: -2px;
}
.project-name { font-size: 15.5px; line-height: 1.55; color: var(--on-dark-2); }

.platforms {
  background: var(--card);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.platforms-inner { max-width: var(--wrap); margin: 0 auto; padding: 64px var(--pad-x); }
.platforms-inner h2 { margin: 0 0 14px; }
.platform-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 24px; }
.platform-card {
  background: var(--page);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.platform-card h3 { font-size: 20px; font-weight: 700; margin: 0; }

.cta-band { background: var(--ink); }
.cta-band-inner {
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 64px var(--pad-x);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  text-align: center;
}
.cta-band h2 {
  font-size: 42px;
  font-weight: 800;
  margin: 0;
  color: #ffffff;
  text-wrap: pretty;
}
.cta-band p { font-size: 17px; color: #b9b9b9; margin: 0; max-width: 520px; }

/* ---------- AI page pieces ---------- */

.module-section { max-width: var(--wrap); margin: 48px auto 0; padding: 0 var(--pad-x); }
.module-box {
  background: var(--ink);
  border-radius: 20px;
  padding: 56px 64px;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 56px;
  align-items: center;
}
.module-left { display: flex; flex-direction: column; gap: 10px; }
.module-left h2 { font-size: 38px; line-height: 1.15; font-weight: 800; margin: 0; color: #ffffff; }
.module-price { font-family: var(--serif); font-size: 52px; font-weight: 800; color: #ffffff; margin-top: 8px; }
.module-rate { font-size: 15px; color: var(--on-dark); }
.module-facts { display: flex; flex-direction: column; gap: 16px; }
.module-fact { display: flex; gap: 14px; align-items: baseline; }
.module-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  flex: none;
  position: relative;
  top: -2px;
}
.module-fact-text { font-size: 16px; line-height: 1.6; color: var(--on-dark-2); }
.module-fact-text strong { color: #ffffff; }

.ways-section {
  background: var(--card);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.ways-inner { max-width: var(--wrap); margin: 0 auto; padding: 64px var(--pad-x); }
.ways-inner h2 { margin: 0 0 48px; }
.ways-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; align-items: stretch; }
.way-card {
  background: var(--page);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 36px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.way-card h3 { font-size: 26px; font-weight: 800; margin: 0; }
.way-card p { font-size: 15.5px; line-height: 1.7; color: var(--body); margin: 0; }
.way-card a { font-weight: 600; font-size: 15px; margin-top: auto; }

.own-section { max-width: var(--wrap); margin: 0 auto; padding: 64px var(--pad-x) 0; }
.own-section h2 { margin: 0 0 14px; }
.own-section .section-lede { max-width: 680px; }
.own-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 24px; align-items: stretch; }
.own-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.own-card h3 { font-size: 21px; line-height: 1.3; font-weight: 700; margin: 0; }
.own-card p { font-size: 15px; line-height: 1.65; color: var(--body); margin: 0; }

.norf-section { max-width: var(--wrap); margin: 0 auto; padding: 64px var(--pad-x); }
.norf-grid { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: 56px; align-items: start; }
.norf-grid h2 { font-size: 38px; line-height: 1.15; font-weight: 800; margin: 0; }
.norf-body { display: flex; flex-direction: column; gap: 18px; }
.norf-body p { font-size: 18px; line-height: 1.7; color: var(--body); margin: 0; text-wrap: pretty; }

/* ---------- legal pages ---------- */

.legal-page {
  background: var(--page);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
.legal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--wrap-legal);
  width: 100%;
  margin: 0 auto;
  padding: 22px var(--pad-x);
}
.legal-wordmark {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 800;
  color: var(--ink);
  text-decoration: none;
}
.legal-wordmark:hover { color: var(--ink); }
.legal-back { font-size: 14px; font-weight: 600; }
.legal-main {
  max-width: var(--wrap-legal);
  width: 100%;
  margin: 0 auto;
  padding: 32px var(--pad-x) 72px;
  flex: 1;
}
.legal-main > .eyebrow-cap { margin-bottom: 10px; display: block; }
.legal-main h1 { font-size: 40px; font-weight: 800; margin: 0 0 8px; }
.legal-date { font-size: 14px; color: var(--muted); margin: 0 0 36px; }
.legal-body {
  display: flex;
  flex-direction: column;
  gap: 28px;
  font-size: 16px;
  line-height: 1.75;
  color: var(--body);
}
.legal-body h2 { font-size: 22px; font-weight: 700; margin: 0 0 8px; }
.legal-body p { margin: 0; }
.legal-footer { border-top: 1px solid var(--border); background: var(--card); }
.legal-footer-inner {
  max-width: var(--wrap-legal);
  margin: 0 auto;
  padding: 18px var(--pad-x);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: var(--muted);
  flex-wrap: wrap;
}
.legal-footer-links { display: flex; gap: 20px; }
.legal-footer-links a { color: var(--muted); text-decoration: none; }
.legal-footer-links a:hover { color: var(--magenta); }

/* ---------- 404 ---------- */

.notfound {
  max-width: var(--wrap-legal);
  margin: 0 auto;
  padding: 96px var(--pad-x) 120px;
  text-align: center;
}
.notfound .code {
  font-family: var(--mono);
  font-size: 14px;
  color: var(--accent);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.notfound h1 { font-size: 46px; font-weight: 800; margin: 0 0 16px; text-wrap: pretty; }
.notfound p {
  font-size: 18px;
  line-height: 1.7;
  color: var(--body);
  margin: 0 auto 32px;
  max-width: 520px;
}

/* ---------- responsive: single breakpoint at 760px ---------- */

@media (max-width: 760px) {
  .hero-grid,
  .services-grid,
  .service-row,
  .why-grid,
  .engage-grid,
  .projects-box,
  .platform-grid,
  .pricing-box,
  .contact-grid,
  .module-box,
  .ways-grid,
  .own-grid,
  .norf-grid,
  .collage { grid-template-columns: 1fr; }

  .values,
  .steps,
  .footer-grid,
  .field-pair,
  .call-grid,
  .menu-grid,
  .projects-list { grid-template-columns: 1fr 1fr; }

  .collage { height: auto; }
  .collage img { height: 200px; }

  .h1 { font-size: 40px; }
  .h1-sub { font-size: 40px; }
  .h2,
  .why-col h2,
  .contact-intro h2,
  .pricing-box h2,
  .projects-intro h2,
  .cta-band h2,
  .module-left h2,
  .menu-card h2,
  .norf-grid h2,
  .notfound h1 { font-size: 30px; }

  /* Let 1fr tracks shrink past their content's min-content width on narrow
     phones; without this, long compound names force horizontal scroll. */
  .hero-grid > *, .services-grid > *, .service-row > *, .why-grid > *,
  .engage-grid > *, .projects-box > *, .platform-grid > *, .pricing-box > *,
  .contact-grid > *, .module-box > *, .ways-grid > *, .own-grid > *,
  .norf-grid > *, .values > *, .steps > *, .footer-grid > *,
  .field-pair > *, .call-grid > *, .menu-grid > *, .menu-item > *,
  .projects-list > *, .era > *, .idea-card > *, .timeline-card > * { min-width: 0; }

  .nav-links { display: none; }
  .hero-cta { justify-content: flex-start; }
  .step { border-right: none; padding-right: 0; }
  .pricing-box { padding: 36px 28px; }
  .module-box { padding: 36px 28px; }
  .projects-box { padding: 36px 28px; }
  .menu-card { padding: 32px 28px; }
  .services-aside { position: static; }
  .footer-bar-inner { justify-content: flex-start; }
}
