:root {
  --brand: #0b72b1;
  --brand-dark: #095686;
  --brand-light: #70c0f0;
  --p1: #16a34a;
  --p2: #db2777;
  --p3: #ea580c;
  --p4: #7c3aed;

  --bg: #f6f8fb;
  --surface: #ffffff;
  --surface-2: #eef3f9;
  --text: #0f1b2d;
  --muted: #5b6b80;
  --line: #dde5ef;
  --shadow: 0 1px 2px rgb(15 27 45 / .06), 0 8px 24px rgb(15 27 45 / .07);
  --shadow-lg: 0 2px 4px rgb(15 27 45 / .06), 0 20px 48px rgb(15 27 45 / .12);

  --radius: 14px;
  --radius-lg: 22px;
  --shell: 1140px;
  --check: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%230b72b1'%3E%3Cpath d='M9.6 16.6 5.4 12.4 7 10.8l2.6 2.6 7.4-7.4L18.6 7.6z'/%3E%3C/svg%3E");
  --font: "IBM Plex Sans Thai", "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

@media (prefers-color-scheme: dark) {
  :root {
    --bg: #0b1220;
    --surface: #121c2e;
    --surface-2: #17243a;
    --text: #e8eef7;
    --muted: #9bacc4;
    --line: #253449;
    --brand: #55b2ec;
    --brand-dark: #258ed0;
    --check: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%238ecef6'%3E%3Cpath d='M9.6 16.6 5.4 12.4 7 10.8l2.6 2.6 7.4-7.4L18.6 7.6z'/%3E%3C/svg%3E");
    --shadow: 0 1px 2px rgb(0 0 0 / .4), 0 8px 24px rgb(0 0 0 / .35);
    --shadow-lg: 0 2px 4px rgb(0 0 0 / .4), 0 20px 48px rgb(0 0 0 / .5);
  }
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 88px;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.75;
  color: var(--text);
  background: var(--bg);
  overflow-x: hidden;
}

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

h1, h2, h3 {
  line-height: 1.3;
  margin: 0;
  font-weight: 700;
  letter-spacing: -.01em;
}

p { margin: 0; }
ul, ol, dl, dd { margin: 0; padding: 0; }
li { list-style: none; }

.skip {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 200;
  padding: 12px 18px;
  background: var(--brand);
  color: #fff;
  border-radius: 0 0 var(--radius) 0;
}
.skip:focus { left: 0; }

:focus-visible {
  outline: 3px solid var(--brand);
  outline-offset: 3px;
  border-radius: 6px;
}

.shell {
  width: 100%;
  max-width: var(--shell);
  margin-inline: auto;
  padding-inline: 20px;
}
.shell-narrow { max-width: 820px; }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 24px;
  border: 1px solid transparent;
  border-radius: 999px;
  font: inherit;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  white-space: nowrap;
  transition: transform .15s ease, box-shadow .15s ease, background-color .15s ease, color .15s ease;
}
.btn svg { width: 18px; height: 18px; fill: currentColor; flex: none; }
.btn:hover { transform: translateY(-2px); }
.btn-sm { padding: 9px 16px; font-size: 14px; }
.btn-block { width: 100%; }

.btn-primary {
  background: var(--brand);
  color: #fff;
  box-shadow: 0 8px 20px rgb(11 114 177 / .28);
}
.btn-primary:hover { background: var(--brand-dark); }

.btn-outline {
  background: transparent;
  border-color: var(--line);
  color: var(--text);
}
.btn-outline:hover { border-color: var(--brand); color: var(--brand); }

.btn-ghost {
  background: rgb(255 255 255 / .12);
  border-color: rgb(255 255 255 / .35);
  color: #fff;
  backdrop-filter: blur(6px);
}
.btn-ghost:hover { background: rgb(255 255 255 / .22); }

/* ---------- header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: color-mix(in srgb, var(--surface) 88%, transparent);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .2s ease, box-shadow .2s ease;
  padding-top: env(safe-area-inset-top, 0px);
}
.site-header.is-stuck {
  border-bottom-color: var(--line);
  box-shadow: 0 6px 24px rgb(15 27 45 / .06);
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 20px;
  min-height: 72px;
}

.brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  flex: none;
}
.brand img {
  display: block;
  height: 36px;
  width: auto;
}
.brand-lg img { height: 44px; }

.nav {
  display: flex;
  gap: 4px;
  margin-inline: auto;
  flex-wrap: wrap;
}
.nav a {
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 14.5px;
  font-weight: 500;
  color: var(--muted);
  text-decoration: none;
  transition: color .15s ease, background-color .15s ease;
}
.nav a:hover { color: var(--text); background: var(--surface-2); }
.nav a.is-active { color: var(--brand); background: color-mix(in srgb, var(--brand) 10%, transparent); }

.header-cta { display: flex; align-items: center; gap: 10px; margin-left: auto; }

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 11px 10px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--surface);
  cursor: pointer;
  flex-direction: column;
  justify-content: space-between;
}
.nav-toggle span {
  display: block;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform .2s ease, opacity .2s ease;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(9px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-9px) rotate(-45deg); }

/* ---------- hero ---------- */
.hero {
  position: relative;
  color: #fff;
  padding: 72px 0 90px;
  isolation: isolate;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(1100px 520px at 15% -10%, #40a7e7 0%, transparent 60%),
    radial-gradient(900px 520px at 95% 10%, #1d78b4 0%, transparent 62%),
    linear-gradient(160deg, #0b5a8e 0%, #07375a 100%);
}
.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgb(255 255 255 / .06) 1px, transparent 1px),
    linear-gradient(90deg, rgb(255 255 255 / .06) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(70% 70% at 50% 30%, #000 0%, transparent 100%);
}

.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(0, .85fr);
  gap: 48px;
  align-items: center;
}

.eyebrow {
  display: inline-block;
  font-size: 13.5px;
  font-weight: 600;
  letter-spacing: .04em;
  color: var(--brand);
  margin-bottom: 12px;
}
.hero .eyebrow {
  color: #c5e8fc;
  background: rgb(255 255 255 / .1);
  border: 1px solid rgb(255 255 255 / .2);
  border-radius: 999px;
  padding: 5px 14px;
}

.hero h1 {
  font-size: clamp(32px, 5.4vw, 52px);
  font-weight: 800;
  margin-bottom: 18px;
}
.hero h1 span { color: #8bd0f9; }

.lead {
  font-size: clamp(15.5px, 1.6vw, 17.5px);
  color: rgb(255 255 255 / .82);
  max-width: 56ch;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 28px 0 24px;
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 22px;
  font-size: 14.5px;
  color: rgb(255 255 255 / .88);
}
.hero-points li { display: flex; align-items: center; gap: 8px; }
.hero-points li::before {
  content: "";
  width: 18px;
  height: 18px;
  flex: none;
  border-radius: 50%;
  background: #4ade80 url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23063'%3E%3Cpath d='M9.6 16.6 5.4 12.4 7 10.8l2.6 2.6 7.4-7.4L18.6 7.6z'/%3E%3C/svg%3E") center/13px no-repeat;
}

.hero-card {
  background: var(--surface);
  color: var(--text);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}
.hero-card-top {
  padding: 26px 26px 22px;
  background: linear-gradient(160deg, var(--surface-2), var(--surface));
  border-bottom: 1px solid var(--line);
}
.price { display: flex; align-items: baseline; gap: 8px; margin-top: 12px; }
.price b { font-size: 44px; font-weight: 800; letter-spacing: -.02em; line-height: 1; }
.price small { font-size: 15px; color: var(--muted); font-weight: 500; }
.price-note { font-size: 13.5px; color: var(--muted); margin-top: 6px; }

.hero-card-list { padding: 20px 26px; display: grid; gap: 11px; font-size: 14.5px; }
.hero-card-list li { display: flex; gap: 10px; align-items: flex-start; line-height: 1.55; }
.hero-card-list li::before {
  content: "";
  width: 16px; height: 16px;
  margin-top: 5px;
  flex: none;
  border-radius: 50%;
  background: color-mix(in srgb, var(--brand) 16%, transparent) var(--check) center/12px no-repeat;
}
.hero-card .btn { margin: 0 26px; width: calc(100% - 52px); }
.hero-card-foot {
  padding: 16px 26px 22px;
  font-size: 12.5px;
  color: var(--muted);
  text-align: center;
}

/* ---------- sections ---------- */
.section { padding: 84px 0; }
.section-alt { background: var(--surface-2); }

.section-head { max-width: 62ch; margin-bottom: 44px; }
.section-head h2 { font-size: clamp(25px, 3.4vw, 36px); }
.section-sub { margin-top: 12px; color: var(--muted); }

/* ---------- service cards ---------- */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 20px;
}
.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px 24px;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: color-mix(in srgb, var(--brand) 35%, var(--line));
}
.card-icon {
  display: grid;
  place-items: center;
  width: 46px; height: 46px;
  border-radius: 13px;
  background: color-mix(in srgb, var(--brand) 12%, transparent);
  margin-bottom: 16px;
}
.card-icon svg { width: 24px; height: 24px; fill: var(--brand); }
.card h3 { font-size: 18px; margin-bottom: 8px; }
.card p { color: var(--muted); font-size: 14.8px; }

/* ---------- plans ---------- */
.chip {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 999px;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: .03em;
  color: #fff;
}
.chip-p1 { background: var(--p1); }
.chip-p2 { background: var(--p2); }
.chip-p3 { background: var(--p3); }
.chip-p4 { background: var(--p4); }

.plans {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(255px, 1fr));
  gap: 20px;
}
.plan {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.plan-featured {
  border-color: var(--brand);
  box-shadow: var(--shadow-lg);
}
.plan-badge {
  position: absolute;
  top: -13px;
  inset-inline-start: 24px;
  padding: 4px 14px;
  border-radius: 999px;
  background: var(--brand);
  color: #fff;
  font-size: 12.5px;
  font-weight: 700;
}
.plan > .chip { align-self: flex-start; }
.plan-price { display: flex; align-items: baseline; gap: 7px; }
.plan-price b { font-size: 38px; font-weight: 800; line-height: 1; letter-spacing: -.02em; }
.plan-price small { font-size: 14px; color: var(--muted); }
.plan-meta { font-size: 13px; color: var(--muted); margin-top: -8px; }
.plan-list { display: grid; gap: 9px; font-size: 14.5px; flex: 1; }
.plan-list li { display: flex; gap: 9px; align-items: flex-start; line-height: 1.55; }
.plan-list li::before {
  content: "";
  width: 16px; height: 16px;
  margin-top: 5px;
  flex: none;
  border-radius: 50%;
  background: color-mix(in srgb, var(--brand) 16%, transparent) var(--check) center/12px no-repeat;
}

.fineprint {
  margin-top: 26px;
  font-size: 13px;
  line-height: 1.85;
  color: var(--muted);
  max-width: 88ch;
}
.fineprint a { color: var(--brand); text-decoration: underline; text-underline-offset: 2px; }

/* ---------- tables ---------- */
.table-wrap {
  overflow-x: auto;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  -webkit-overflow-scrolling: touch;
}
table {
  width: 100%;
  min-width: 720px;
  border-collapse: collapse;
  font-size: 14.5px;
}
thead th {
  background: var(--surface-2);
  padding: 14px 16px;
  text-align: center;
  font-weight: 600;
  border-bottom: 1px solid var(--line);
}
thead th:first-child { text-align: start; }
.th-name { display: block; font-size: 11.5px; color: var(--muted); margin-top: 4px; letter-spacing: .04em; }

tbody th, tfoot th {
  text-align: start;
  font-weight: 500;
  padding: 12px 16px;
  color: var(--text);
}
tbody td, tfoot td {
  text-align: center;
  padding: 12px 16px;
  color: var(--muted);
}
tbody tr { border-top: 1px solid var(--line); }
tbody tr:nth-child(even) { background: color-mix(in srgb, var(--surface-2) 45%, transparent); }

td[data-yes], td[data-no] { font-size: 0; }
td[data-yes]::before, td[data-no]::before {
  content: "";
  display: inline-block;
  width: 20px; height: 20px;
  border-radius: 50%;
  vertical-align: middle;
}
td[data-yes]::before {
  background: color-mix(in srgb, var(--p1) 16%, transparent) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%2316a34a'%3E%3Cpath d='M9.6 16.6 5.4 12.4 7 10.8l2.6 2.6 7.4-7.4L18.6 7.6z'/%3E%3C/svg%3E") center/14px no-repeat;
}
td[data-no]::before {
  background: var(--surface-2) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%2394a3b8'%3E%3Cpath d='M6 11h12v2H6z'/%3E%3C/svg%3E") center/14px no-repeat;
}

tfoot { border-top: 2px solid var(--line); }
tfoot th, tfoot td { padding: 18px 16px; font-weight: 700; }
.price-cell { color: var(--brand); font-weight: 700; }

.domain-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(0, 1fr);
  gap: 22px;
  align-items: start;
}
.domains { min-width: 560px; }

.note {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
}
.note h3 { font-size: 17px; margin-bottom: 14px; }
.note dt { font-weight: 700; color: var(--brand); margin-top: 12px; font-size: 14.5px; }
.note dd { color: var(--muted); font-size: 14px; line-height: 1.6; }

/* ---------- steps ---------- */
.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
  counter-reset: step;
}
.step {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px 24px;
}
.step-no {
  display: grid;
  place-items: center;
  width: 38px; height: 38px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--brand-light), var(--brand-dark));
  color: #fff;
  font-weight: 800;
  margin-bottom: 14px;
}
.step h3 { font-size: 17px; margin-bottom: 8px; }
.step p { color: var(--muted); font-size: 14.5px; }

/* ---------- works ---------- */
.works {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.works li {
  padding: 9px 18px;
  border-radius: 999px;
  background: var(--surface);
  border: 1px solid var(--line);
  font-size: 14.5px;
  font-weight: 500;
}
.works-note { margin-top: 22px; color: var(--muted); font-size: 14.5px; }

/* ---------- faq ---------- */
.faq { display: grid; gap: 12px; }
.faq details {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 4px 22px;
}
.faq details[open] { border-color: color-mix(in srgb, var(--brand) 40%, var(--line)); }
.faq summary {
  list-style: none;
  cursor: pointer;
  padding: 16px 34px 16px 0;
  font-weight: 600;
  position: relative;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "";
  position: absolute;
  inset-inline-end: 0;
  top: 50%;
  width: 11px; height: 11px;
  border-right: 2px solid var(--muted);
  border-bottom: 2px solid var(--muted);
  transform: translateY(-70%) rotate(45deg);
  transition: transform .2s ease;
}
.faq details[open] summary::after { transform: translateY(-20%) rotate(-135deg); }
.faq p { padding: 0 0 18px; color: var(--muted); font-size: 14.8px; }

/* ---------- cta ---------- */
.cta {
  padding: 78px 0;
  color: #fff;
  background:
    radial-gradient(800px 400px at 10% 0%, #40a7e7 0%, transparent 60%),
    linear-gradient(160deg, #0b5a8e, #07375a);
}
.cta-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 44px;
  align-items: center;
}
.cta h2 { font-size: clamp(24px, 3.2vw, 34px); }
.cta-copy p { margin-top: 14px; color: rgb(255 255 255 / .8); }

.cta-actions { display: grid; gap: 12px; }
.contact-card {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 16px 20px;
  border-radius: var(--radius);
  background: rgb(255 255 255 / .1);
  border: 1px solid rgb(255 255 255 / .2);
  text-decoration: none;
  transition: background-color .15s ease, transform .15s ease;
}
.contact-card:hover { background: rgb(255 255 255 / .2); transform: translateX(4px); }
.contact-icon {
  display: grid;
  place-items: center;
  width: 44px; height: 44px;
  flex: none;
  border-radius: 12px;
  background: rgb(255 255 255 / .16);
}
.contact-icon svg { width: 22px; height: 22px; fill: #fff; }
.contact-text { display: grid; line-height: 1.4; min-width: 0; }
.contact-text small { font-size: 12.5px; color: rgb(255 255 255 / .7); }
.contact-text b { font-size: 16px; overflow-wrap: anywhere; }

/* ---------- 404 ---------- */
.notfound {
  position: relative;
  display: grid;
  align-items: center;
  min-height: calc(100dvh - 72px);
  padding: 60px 0 90px;
  color: #fff;
  isolation: isolate;
}
.notfound-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(900px 480px at 20% 0%, #40a7e7 0%, transparent 62%),
    linear-gradient(160deg, #0b5a8e 0%, #07375a 100%);
}
.notfound-inner { max-width: 62ch; }
.notfound-code {
  font-size: clamp(64px, 14vw, 128px);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -.04em;
  color: rgb(255 255 255 / .22);
}
.notfound h1 {
  font-size: clamp(27px, 4.4vw, 42px);
  margin: 6px 0 16px;
}

/* ---------- footer ---------- */
.site-footer {
  background: var(--surface);
  border-top: 1px solid var(--line);
  padding-top: 56px;
}
.footer-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) repeat(2, minmax(0, 1fr));
  gap: 36px;
  padding-bottom: 40px;
}
.footer-brand p { margin-top: 14px; color: var(--muted); font-size: 14.5px; max-width: 42ch; }
.footer-nav, .footer-contact { display: grid; align-content: start; gap: 7px; }
.footer-nav h3, .footer-contact h3 { font-size: 15px; margin-bottom: 6px; }
.footer-nav a, .footer-contact a {
  color: var(--muted);
  text-decoration: none;
  font-size: 14.5px;
  overflow-wrap: anywhere;
}
.footer-nav a:hover, .footer-contact a:hover { color: var(--brand); }

.footer-bottom {
  border-top: 1px solid var(--line);
  padding-block: 20px;
  font-size: 13.5px;
  color: var(--muted);
  padding-bottom: calc(20px + env(safe-area-inset-bottom, 0px));
}

/* ---------- mobile sticky bar ---------- */
.mobile-bar {
  display: none;
  position: fixed;
  inset-inline: 0;
  bottom: 0;
  z-index: 90;
  gap: 10px;
  padding: 10px 16px;
  padding-bottom: calc(10px + env(safe-area-inset-bottom, 0px));
  background: color-mix(in srgb, var(--surface) 94%, transparent);
  backdrop-filter: blur(12px);
  border-top: 1px solid var(--line);
}
.mobile-bar .btn { flex: 1; padding: 12px 10px; }

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

/* ---------- responsive ---------- */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-card { max-width: 420px; }
  .domain-grid { grid-template-columns: 1fr; }
  .cta-inner { grid-template-columns: 1fr; gap: 30px; }
}

@media (max-width: 900px) {
  .nav {
    position: fixed;
    inset: 0 0 auto;
    top: calc(72px + env(safe-area-inset-top, 0px));
    flex-direction: column;
    gap: 2px;
    margin: 0;
    padding: 14px 20px 22px;
    background: var(--surface);
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow);
    transform: translateY(-14px);
    opacity: 0;
    pointer-events: none;
    transition: opacity .18s ease, transform .18s ease;
    max-height: calc(100dvh - 72px);
    overflow-y: auto;
  }
  .nav.is-open { opacity: 1; transform: none; pointer-events: auto; }
  .nav a { padding: 12px 14px; font-size: 16px; }
  .nav-toggle { display: flex; }
  .header-cta .btn-primary { display: none; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .brand-lg img { height: 38px; }
}

@media (max-width: 720px) {
  html { scroll-padding-top: 80px; }
  .section { padding: 60px 0; }
  .hero { padding: 52px 0 70px; }
  .cta { padding: 60px 0; }
  .mobile-bar { display: flex; }
  body { padding-bottom: 76px; }
  .brand img { height: 31px; }
}

@media (max-width: 460px) {
  .footer-inner { grid-template-columns: 1fr; gap: 26px; }
  .hero-actions .btn { width: 100%; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .01ms !important;
    transition-duration: .01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
}

@media print {
  .site-header, .mobile-bar, .hero-actions, .nav-toggle { display: none !important; }
  body { background: #fff; color: #000; }
}
