:root {
  --ink: #0d1820;
  --muted: #5b6872;
  --paper: #f6fafc;
  --panel: #ffffff;
  --blue-900: #06364e;
  --blue-700: #057cae;
  --cyan: #28bfe6;
  --mint: #39a875;
  --coral: #e65d4f;
  --line: #d7e3ea;
  --shadow: 0 18px 42px rgba(6, 54, 78, 0.13);
  --shadow-soft: 0 10px 24px rgba(6, 54, 78, 0.09);
}

* {
  box-sizing: border-box;
}

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

[id] {
  scroll-margin-top: 96px;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(180deg, rgba(40, 191, 230, 0.08), transparent 420px),
    var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
  text-wrap: pretty;
}

.translate-host {
  position: fixed;
  left: -9999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.skiptranslate,
.goog-te-banner-frame {
  display: none !important;
}

body {
  top: 0 !important;
}

body.menu-open {
  overflow: hidden;
}

a {
  color: inherit;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: color-mix(in srgb, var(--paper) 92%, transparent);
  border-bottom: 1px solid rgba(215, 227, 234, 0.9);
  backdrop-filter: blur(16px);
}

.topbar {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 24px;
  padding: 8px 20px;
  color: #eaf8fc;
  background: var(--blue-900);
  font-size: 0.9rem;
}

.topbar a {
  text-decoration: none;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 13px 0;
}

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--blue-900);
  text-decoration: none;
  font-weight: 900;
}

.brand img {
  width: 48px;
  height: 48px;
  object-fit: contain;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(12px, 1.6vw, 22px);
  color: var(--ink);
  font-weight: 800;
  white-space: nowrap;
}

.nav-links a {
  text-decoration: none;
}

.nav-links a:hover,
.footer a:hover {
  color: var(--blue-700);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
}

.nav-tools {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-left: 14px;
}

.language-select {
  min-height: 38px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  background: var(--panel);
  font: inherit;
  font-size: 0.86rem;
  font-weight: 900;
  max-width: 112px;
  padding: 0 9px;
}

.language-select:hover {
  border-color: var(--blue-700);
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: var(--ink);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  gap: 42px;
  align-items: center;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  min-height: calc(100vh - 118px);
  padding: 58px 0 76px;
}

.schedule-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.58fr);
  gap: 34px;
  align-items: center;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 64px 0 38px;
}

.schedule-hero h1 {
  max-width: 900px;
  font-size: clamp(2.45rem, 5vw, 4.7rem);
}

.schedule-notice {
  display: grid;
  gap: 14px;
  padding: 22px;
  color: white;
  background: var(--blue-900);
  border-radius: 8px;
  box-shadow: var(--shadow-soft);
}

.schedule-notice h2 {
  color: white;
  font-size: 1.45rem;
}

.schedule-notice p {
  color: rgba(255, 255, 255, 0.8);
}

.schedule-notice a {
  color: white;
  font-weight: 900;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--coral);
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin: 0;
}

h1 {
  max-width: 820px;
  color: var(--blue-900);
  font-size: clamp(2.7rem, 5.8vw, 5.55rem);
  line-height: 0.96;
}

h2 {
  color: var(--blue-900);
  font-size: clamp(1.85rem, 3.25vw, 3rem);
  line-height: 1.08;
}

h3 {
  color: var(--blue-900);
  font-size: 1.16rem;
  line-height: 1.2;
}

.hero-text {
  max-width: 720px;
  margin-top: 24px;
  color: #304451;
  font-size: clamp(1.06rem, 1.45vw, 1.22rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 950;
  text-decoration: none;
  cursor: pointer;
}

.button.primary {
  color: white;
  background: var(--blue-700);
  box-shadow: 0 12px 26px rgba(5, 124, 174, 0.22);
}

.button,
.quick-links a,
.service-card,
.site-links a,
.site-preview,
.carousel-btn {
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}

.button:hover,
.quick-links a:hover,
.service-card:hover,
.site-links a:hover,
.site-preview:hover {
  transform: translateY(-2px);
}

.button.secondary {
  color: var(--blue-900);
  background: var(--panel);
  border-color: var(--line);
}

.hero-card {
  position: relative;
  display: grid;
  gap: 18px;
  padding: 24px;
  overflow: hidden;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.hero-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 8px;
  background: linear-gradient(90deg, var(--cyan), var(--mint), var(--coral));
}

.hero-card > img {
  width: min(250px, 72%);
  margin: 8px auto 0;
}

.status-row {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 16px;
  color: white;
  background: var(--blue-900);
  border-radius: 8px;
}

.status-row span,
.mini-grid span {
  color: rgba(255, 255, 255, 0.78);
}

.mini-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.mini-grid div {
  min-height: 106px;
  padding: 14px;
  color: white;
  background: var(--blue-700);
  border-radius: 8px;
}

.mini-grid strong {
  display: block;
  font-size: 2rem;
  line-height: 1;
}

.quick-links {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  width: min(1180px, calc(100% - 32px));
  margin: -28px auto 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.quick-links a {
  min-height: 72px;
  padding: 18px;
  background: white;
  color: var(--blue-900);
  text-decoration: none;
  font-weight: 900;
  box-shadow: inset 0 -3px 0 transparent;
}

.quick-links a:hover {
  box-shadow: inset 0 -3px 0 var(--cyan);
}

.section-pad {
  padding: 74px 0;
}

.section-title,
.intro-copy,
.service-grid,
.steps,
.split-feature,
.newsletter,
.contact,
.footer {
  width: min(1180px, calc(100% - 32px));
  margin-inline: auto;
}

.section-title {
  display: grid;
  grid-template-columns: 0.52fr 1fr;
  gap: 38px;
  align-items: end;
  margin-bottom: 34px;
}

.section-title.centered {
  display: block;
  max-width: 780px;
  text-align: center;
}

.intro {
  background: white;
}

.intro .section-title {
  display: block;
  max-width: 900px;
  text-align: center;
}

.intro-copy {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 980px;
}

.intro-copy p {
  min-height: 166px;
  padding: 28px;
  color: #304451;
  background: color-mix(in srgb, var(--panel) 78%, var(--cyan) 8%);
  border: 1px solid var(--line);
  border-radius: 8px;
  font-size: 1.04rem;
  line-height: 1.68;
  text-align: center;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-rows: 1fr;
  gap: 18px;
}

.service-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  overflow: hidden;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow-soft);
}

.service-card.wide {
  grid-column: auto;
}

.service-card img {
  width: 100%;
  height: 210px;
  aspect-ratio: auto;
  object-fit: cover;
  background: #e8f3f7;
}

.service-card img.media-contain {
  object-fit: contain;
  padding: 26px;
  background:
    linear-gradient(135deg, rgba(40, 191, 230, 0.1), rgba(57, 168, 117, 0.08)),
    #ffffff;
}

.service-card img.wide-logo {
  padding: 30px 22px;
}

.service-card.wide img {
  height: 210px;
  aspect-ratio: auto;
  object-fit: cover;
  padding: 0;
  background: #e8f3f7;
}

.service-card h3,
.service-card p {
  padding-inline: 18px;
}

.service-card h3 {
  margin-top: 18px;
}

.service-card p {
  flex: 1;
  padding-bottom: 20px;
  color: var(--muted);
}

.service-card.wide h3,
.service-card.wide p {
  padding-inline: 18px;
}

.software-section {
  background: white;
}

.software-shell {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(360px, 1.18fr);
  gap: 34px;
  align-items: start;
  width: min(1180px, calc(100% - 32px));
  margin-inline: auto;
}

.software-copy {
  display: grid;
  gap: 18px;
  position: sticky;
  top: 120px;
}

.software-copy p:not(.eyebrow) {
  color: #304451;
  font-size: 1.08rem;
}

.software-stack {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.software-stack article {
  min-height: 220px;
  padding: 22px;
  background: #f2f8fb;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow-soft);
}

.software-stack span {
  display: block;
  margin-bottom: 28px;
  color: var(--blue-700);
  font-weight: 950;
}

.software-stack h3 {
  margin-bottom: 10px;
}

.software-stack p {
  color: var(--muted);
}

.repair-flow {
  background: var(--blue-900);
}

.repair-flow .section-title {
  display: block;
  max-width: 820px;
  text-align: center;
}

.repair-flow .section-title h2 {
  color: white;
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.steps article {
  min-height: 238px;
  padding: 22px;
  color: white;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  text-align: center;
}

.steps span {
  display: block;
  margin-bottom: 26px;
  color: var(--cyan);
  font-weight: 950;
}

.steps h3 {
  color: white;
  margin-bottom: 10px;
}

.steps p {
  color: rgba(255, 255, 255, 0.76);
}

.split-feature {
  display: grid;
  grid-template-columns: minmax(320px, 1.05fr) minmax(0, 0.95fr);
  gap: 42px;
  align-items: center;
}

.split-feature.reverse {
  direction: rtl;
}

.split-feature.reverse > * {
  direction: ltr;
}

.feature-media img {
  width: 100%;
  aspect-ratio: 16 / 11;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.feature-copy {
  display: grid;
  gap: 18px;
}

.feature-copy p:not(.eyebrow) {
  color: #304451;
  font-size: 1.08rem;
}

.check-list {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.check-list li {
  padding: 12px 14px;
  background: white;
  border: 1px solid var(--line);
  border-left: 5px solid var(--mint);
  border-radius: 8px;
  font-weight: 800;
}

.vendor-section {
  padding-top: 10px;
}

.vendor-card {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.28fr);
  gap: 34px;
  align-items: center;
  width: min(1180px, calc(100% - 32px));
  margin-inline: auto;
  padding: 30px;
  color: white;
  background:
    radial-gradient(circle at 15% 20%, rgba(40, 191, 230, 0.28), transparent 30%),
    linear-gradient(135deg, #071a26, #0b3c56 62%, #0f2635);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.vendor-logo-panel {
  display: grid;
  gap: 16px;
  justify-items: center;
  padding: 28px;
  background: rgba(255, 255, 255, 0.94);
  border-radius: 8px;
}

.vendor-logo-panel img {
  width: min(280px, 100%);
  object-fit: contain;
}

.vendor-logo-panel span {
  width: 100%;
  padding: 10px 12px;
  color: white;
  background: #c92127;
  border-radius: 8px;
  font-weight: 950;
  text-align: center;
  text-transform: uppercase;
}

.vendor-copy {
  display: grid;
  gap: 18px;
}

.vendor-copy h2 {
  color: white;
}

.vendor-copy p:not(.eyebrow) {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.08rem;
}

.vendor-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.vendor-points span {
  padding: 10px 12px;
  color: white;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  font-weight: 850;
}

.catalog-link {
  width: fit-content;
  margin-top: 4px;
}

.catalog-panel {
  display: grid;
  gap: 10px;
  max-width: 520px;
  margin-top: 6px;
  padding: 16px;
  color: var(--blue-900);
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
}

.catalog-panel strong {
  font-size: 1.08rem;
}

.catalog-panel span {
  color: #304451;
}

.catalog-panel .button.primary {
  width: fit-content;
}

.site-links {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.site-links a {
  padding: 16px;
  color: var(--blue-900);
  background: white;
  border: 1px solid var(--line);
  border-radius: 8px;
  text-decoration: none;
  font-weight: 900;
}

.site-showcase {
  position: relative;
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr) 44px;
  gap: 10px;
  align-items: center;
}

.site-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(250px, 78%);
  gap: 14px;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scroll-behavior: smooth;
  scroll-snap-type: inline mandatory;
  scrollbar-width: none;
}

.site-track::-webkit-scrollbar {
  display: none;
}

.site-preview {
  overflow: hidden;
  color: var(--blue-900);
  background: white;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow-soft);
  text-decoration: none;
  scroll-snap-align: start;
}

.site-preview img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  background: #e8f3f7;
}

.site-preview span {
  display: block;
  padding: 14px 16px;
  font-weight: 950;
}

.carousel-btn {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--blue-900);
  background: white;
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
  box-shadow: var(--shadow-soft);
}

.carousel-btn:hover {
  border-color: var(--cyan);
  transform: translateY(-1px);
}

.newsletter {
  display: grid;
  grid-template-columns: 1fr minmax(320px, 430px);
  gap: 34px;
  align-items: center;
  padding: 34px;
  color: white;
  background: var(--blue-900);
  border-radius: 8px;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

.newsletter::after {
  content: "";
  position: absolute;
  inset: auto 24px 0 auto;
  width: 170px;
  height: 5px;
  background: linear-gradient(90deg, var(--cyan), var(--mint), var(--coral));
  border-radius: 8px 8px 0 0;
}

.offer-modal {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: none;
  place-items: center;
  padding: 20px;
  background: rgba(6, 54, 78, 0.36);
  backdrop-filter: blur(8px);
}

.offer-modal.is-visible {
  display: grid;
}

.offer-dialog {
  position: relative;
  width: min(500px, 100%);
  padding: 26px;
  background: white;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.offer-dialog h2 {
  margin-bottom: 12px;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
}

.offer-dialog p:not(.eyebrow) {
  color: #304451;
}

.offer-close {
  position: absolute;
  top: 12px;
  right: 12px;
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--blue-900);
  background: white;
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
}

.offer-form {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.newsletter h2 {
  color: white;
}

.newsletter p:not(.eyebrow) {
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.78);
}

.signup-form,
.schedule-form,
.contact-form {
  display: grid;
  gap: 14px;
}

label {
  display: grid;
  gap: 7px;
  font-weight: 850;
}

.check-consent {
  grid-template-columns: 20px 1fr;
  align-items: start;
  padding: 14px;
  background: white;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.check-consent input {
  width: 18px;
  min-height: 18px;
  margin-top: 2px;
}

.check-consent span {
  color: #304451;
  font-size: 0.95rem;
  font-weight: 750;
}

label span {
  color: var(--blue-900);
  font-size: 0.9rem;
}

.newsletter label span {
  color: white;
}

input,
select,
textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 13px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  background: white;
  font: inherit;
}

textarea {
  resize: vertical;
}

.honeypot {
  position: absolute;
  left: -5000px;
}

.scheduler {
  background:
    linear-gradient(180deg, white, #f2f8fb);
}

.schedule-form {
  width: min(1040px, calc(100% - 32px));
  margin-inline: auto;
}

.scheduler-panel {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  padding: 28px;
  background: white;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.scheduler-panel::before {
  content: "Secure request form";
  grid-column: 1 / -1;
  display: block;
  width: fit-content;
  padding: 8px 12px;
  color: white;
  background: var(--blue-900);
  border-radius: 8px;
  font-size: 0.82rem;
  font-weight: 950;
  text-transform: uppercase;
}

.scheduler-panel .full,
.slot-field.full {
  grid-column: 1 / -1;
}

.slot-field {
  display: grid;
  gap: 10px;
  font-weight: 850;
}

.slot-field > span {
  color: var(--blue-900);
  font-size: 0.9rem;
}

.slot-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  padding: 14px;
  background: #f2f8fb;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.slot-button {
  min-height: 46px;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--blue-900);
  background: white;
  font: inherit;
  font-weight: 900;
  cursor: pointer;
}

.slot-button:hover {
  border-color: var(--cyan);
}

.slot-button.is-selected {
  color: white;
  background: var(--blue-700);
  border-color: var(--blue-700);
}

.slot-empty,
.field-note,
.form-alert {
  color: var(--muted);
  font-size: 0.94rem;
  font-weight: 650;
}

.slot-empty {
  padding: 14px;
  background: white;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.form-alert:not(:empty) {
  padding: 12px 14px;
  color: #7a251d;
  background: #fff0ed;
  border: 1px solid #fac8bf;
  border-radius: 8px;
}

.human-check {
  max-width: 260px;
}

.local-support {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 72px 0;
  border-top: 1px solid var(--line);
}

.local-support-copy {
  display: grid;
  gap: 10px;
  max-width: 760px;
  margin: 0 auto 28px;
  text-align: center;
}

.local-support-copy p:not(.eyebrow) {
  color: var(--muted);
}

.support-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
}

.support-logo {
  display: grid;
  place-items: center;
  gap: 10px;
  min-height: 138px;
  padding: 18px;
  color: var(--blue-900);
  background: white;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow-soft);
  text-align: center;
  text-decoration: none;
  font-weight: 900;
}

.support-logo img {
  max-width: 150px;
  max-height: 58px;
  object-fit: contain;
}

.support-logo span {
  color: var(--muted);
  font-size: 0.88rem;
}

.text-logo strong {
  display: block;
  color: var(--blue-900);
  font-size: 1.1rem;
  line-height: 1.1;
}

.text-logo.c21 strong {
  color: #9b7b43;
}

.text-logo.downtown strong {
  color: var(--mint);
}

.contact {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(360px, 1.18fr);
  gap: 42px;
  align-items: start;
}

.detail-list {
  display: grid;
  gap: 14px;
  margin-top: 24px;
  padding: 24px;
  color: white;
  background: var(--blue-900);
  border-radius: 8px;
}

.detail-list a {
  color: white;
  text-decoration: none;
  font-weight: 950;
}

.detail-list address {
  font-style: normal;
}

.contact-form {
  grid-template-columns: repeat(2, 1fr);
  padding: 24px;
  background: white;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.contact-form .full,
.contact-form button {
  grid-column: 1 / -1;
}

.footer {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 18px;
  align-items: center;
  padding: 34px 0 42px;
  color: var(--muted);
  border-top: 1px solid var(--line);
}

.footer-brand img {
  width: 38px;
  height: 38px;
}

.footer nav {
  display: flex;
  gap: 18px;
}

.footer nav a {
  text-decoration: none;
  font-weight: 850;
}

.footer p {
  text-align: right;
}

.legal-page {
  width: min(920px, calc(100% - 32px));
  margin: 0 auto;
  padding: 62px 0 80px;
}

.legal-page h1 {
  max-width: 860px;
  margin-bottom: 14px;
  font-size: clamp(2.25rem, 5vw, 4.4rem);
}

.legal-page section {
  padding: 28px 0 0;
}

.legal-page h2 {
  margin-bottom: 10px;
  font-size: clamp(1.35rem, 3vw, 2rem);
}

.legal-page p,
.license-text {
  color: #304451;
  font-size: 1.04rem;
}

.legal-page a {
  color: var(--blue-700);
  font-weight: 850;
}

.updated {
  color: var(--muted);
  font-weight: 850;
}

.license-text {
  overflow-x: auto;
  margin-top: 24px;
  padding: 22px;
  white-space: pre-wrap;
  background: white;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow-soft);
}

@media (max-width: 1000px) {
  .hero,
  .schedule-hero,
  .section-title,
  .intro-copy,
  .split-feature,
  .vendor-card,
  .software-shell,
  .newsletter,
  .scheduler-panel,
  .contact {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 42px;
  }

  .schedule-hero {
    align-items: start;
  }

  h1 {
    max-width: 760px;
    font-size: clamp(2.55rem, 7vw, 4.4rem);
  }

  h2 {
    font-size: clamp(1.8rem, 4.5vw, 2.65rem);
  }

  .quick-links,
  .service-grid,
  .steps,
  .support-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .software-copy {
    position: static;
  }

  .slot-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .service-card.wide {
    grid-column: auto;
  }

  .section-title.centered {
    text-align: left;
  }

  .footer {
    grid-template-columns: 1fr;
  }

  .footer p {
    text-align: left;
  }
}

@media (max-width: 1320px) {
  .topbar {
    display: none;
  }

  .nav-toggle {
    display: block;
    order: 3;
  }

  .nav-tools {
    order: 2;
    margin-left: auto;
  }

  .language-select {
    max-width: 96px;
  }

  .nav-links {
    order: 4;
    position: fixed;
    top: 75px;
    left: 16px;
    right: 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px;
    background: var(--panel);
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: var(--shadow);
  }

  .nav-links.is-open {
    display: flex;
  }

  .legal-nav {
    position: static;
    display: flex;
    flex-direction: row;
    padding: 0;
    background: transparent;
    border: 0;
    box-shadow: none;
  }

  .nav-links a {
    padding: 13px;
  }

  .brand span {
    max-width: 166px;
    line-height: 1.05;
    font-size: 0.95rem;
  }

  .hero {
    gap: 24px;
    padding-top: 34px;
    padding-bottom: 46px;
  }

  .schedule-hero {
    gap: 20px;
    padding: 42px 0 20px;
  }

  .schedule-notice {
    padding: 18px;
  }

  h1 {
    font-size: clamp(2.25rem, 11vw, 3.35rem);
    line-height: 1;
  }

  h2 {
    font-size: clamp(1.72rem, 8vw, 2.2rem);
  }

  .hero-text,
  .feature-copy p:not(.eyebrow) {
    font-size: 1rem;
  }

  .hero-actions,
  .footer nav {
    gap: 10px;
  }

  .button {
    width: 100%;
  }

  .hero-card {
    padding: 18px;
  }

  .hero-card > img {
    width: min(210px, 68%);
  }

  .quick-links,
  .service-grid,
  .steps,
  .site-links,
  .slot-grid,
  .software-stack,
  .support-grid,
  .contact-form {
    grid-template-columns: 1fr;
  }

  .vendor-card {
    padding: 20px;
  }

  .vendor-copy p:not(.eyebrow) {
    font-size: 1rem;
  }

  .site-showcase {
    grid-template-columns: 38px minmax(0, 1fr) 38px;
  }

  .carousel-btn {
    width: 38px;
    height: 38px;
  }

  .site-track {
    grid-auto-columns: 88%;
  }

  .service-card.wide {
    grid-column: auto;
    grid-template-columns: 1fr;
  }

  .section-pad {
    padding: 48px 0;
  }

  .section-title {
    gap: 12px;
    margin-bottom: 24px;
  }

  .intro-copy p,
  .steps article {
    min-height: auto;
  }

  .feature-media img {
    aspect-ratio: 4 / 3;
  }

  .service-card img,
  .service-card.wide img {
    height: 220px;
  }

  .newsletter,
  .scheduler-panel,
  .contact-form {
    padding: 20px;
  }

  .mini-grid {
    grid-template-columns: 1fr;
  }

  .footer nav {
    flex-wrap: wrap;
  }
}

@media (max-width: 420px) {
  .nav,
  .hero,
  .schedule-hero,
  .quick-links,
  .section-title,
  .intro-copy,
  .service-grid,
  .steps,
  .split-feature,
  .vendor-card,
  .newsletter,
  .contact,
  .footer {
    width: min(100% - 24px, 1180px);
  }

  .nav-links {
    left: 12px;
    right: 12px;
  }

  .nav-tools {
    gap: 6px;
  }

  .language-select {
    max-width: 82px;
    padding-inline: 6px;
    font-size: 0.78rem;
  }

  h1 {
    font-size: clamp(2.05rem, 10.5vw, 2.8rem);
  }

  .quick-links {
    margin-top: -14px;
  }

  .schedule-form {
    width: min(100% - 24px, 1180px);
  }

  .service-card h3,
  .service-card p {
    padding-inline: 16px;
  }

  .service-card img,
  .service-card.wide img {
    height: 200px;
  }
}


@media (max-width: 720px) {
  .services.section-pad {
    padding-bottom: 40px;
  }

  .service-grid {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: minmax(252px, 78vw);
    grid-template-columns: none;
    gap: 14px;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scroll-snap-type: inline mandatory;
    scrollbar-width: thin;
    padding: 2px 4px 16px;
    margin-inline: -4px;
  }

  .service-card,
  .service-card.wide {
    scroll-snap-align: start;
    min-height: 100%;
    content-visibility: auto;
    contain-intrinsic-size: 252px 410px;
  }

  .service-card img,
  .service-card.wide img {
    height: 168px;
  }

  .service-card h3 {
    margin-top: 14px;
  }

  .service-card p {
    padding-bottom: 16px;
  }
}

.legal-page {
  min-height: calc(100vh - 122px);
  text-align: center;
}

.legal-page section,
.license-text {
  text-align: left;
}

.nav-tools {
  margin-left: 12px;
}
