:root {
  --blue: #001d34;
  --blue-2: #06365b;
  --green: #5cba47;
  --lime: #cedc29;
  --white: #ffffff;
  --ink: #102033;
  --muted: #5b6875;
  --soft: #f4f8f7;
  --soft-2: #eaf3f0;
  --line: #dce6e8;
  --shadow: 0 18px 42px rgba(0, 29, 52, 0.1);
  --shadow-strong: 0 24px 70px rgba(0, 29, 52, 0.2);
  --ring: 0 0 0 4px rgba(206, 220, 41, 0.34);
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
}

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

a {
  color: inherit;
}

a,
button {
  -webkit-tap-highlight-color: transparent;
}

a:focus-visible,
button:focus-visible {
  outline: 0;
  box-shadow: var(--ring);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: fixed;
  z-index: 30;
  top: 14px;
  left: clamp(14px, 4vw, 48px);
  right: clamp(14px, 4vw, 48px);
  display: flex;
  align-items: center;
  gap: 18px;
  min-height: 76px;
  padding: 12px 18px;
  color: var(--white);
  background: rgba(0, 29, 52, 0.58);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 18px;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.16);
  backdrop-filter: blur(18px) saturate(145%);
  transition: background 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled,
.site-header.menu-open {
  background: rgba(0, 29, 52, 0.92);
  border-color: rgba(255, 255, 255, 0.2);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.22);
}

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  min-width: 146px;
  text-decoration: none;
}

.brand img,
.footer-brand img {
  width: auto;
  max-width: 182px;
  max-height: 48px;
}

.brand-fallback {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  color: var(--white);
  font-size: 1.28rem;
  font-weight: 850;
  letter-spacing: 0;
}

.brand.has-logo .brand-fallback,
.footer-brand.has-logo .brand-fallback {
  display: none;
}

.brand:not(.has-logo) img,
.footer-brand:not(.has-logo) img {
  display: none;
}

.main-nav {
  display: flex;
  flex: 1;
  justify-content: center;
  gap: clamp(16px, 2vw, 30px);
  font-size: 0.95rem;
  font-weight: 760;
}

.main-nav a,
.header-action {
  text-decoration: none;
}

.main-nav a {
  color: rgba(255, 255, 255, 0.88);
  padding: 8px 0;
}

.main-nav a:hover,
.main-nav a:focus-visible {
  color: var(--white);
}

.header-action,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 20px;
  border-radius: 999px;
  font-weight: 850;
  text-decoration: none;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease, border-color 160ms ease;
}

.header-action,
.button.primary {
  background: linear-gradient(135deg, var(--green), #73cb58);
  color: var(--blue);
  box-shadow: 0 14px 30px rgba(92, 186, 71, 0.28);
}

.header-action {
  padding-inline: 24px;
  background: linear-gradient(135deg, var(--green), #74cf56);
}

.button.secondary {
  border: 1px solid rgba(255, 255, 255, 0.72);
  color: var(--white);
  background: rgba(255, 255, 255, 0.04);
}

.button:hover,
.header-action:hover {
  transform: translateY(-1px);
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  cursor: pointer;
}

.menu-toggle span:not(.sr-only) {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  background: var(--white);
  border-radius: 99px;
}

.hero {
  position: relative;
  min-height: 86vh;
  display: grid;
  align-items: center;
  overflow: hidden;
  padding: 136px clamp(20px, 5vw, 78px) 104px;
  color: var(--white);
  background: var(--blue);
}

.hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 96px;
  background: var(--white);
  clip-path: ellipse(74% 84% at 50% 100%);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0, 29, 52, 0.95) 0%, rgba(0, 29, 52, 0.78) 44%, rgba(0, 29, 52, 0.2) 100%),
    url("../assets/hero-laserwash.png") center / cover no-repeat,
    linear-gradient(135deg, #001d34 0%, #0d4466 55%, #5cba47 100%);
}

.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 29, 52, 0.1), rgba(0, 29, 52, 0.62));
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 720px) minmax(260px, 390px);
  gap: clamp(32px, 9vw, 124px);
  align-items: center;
}

.hero-content {
  width: min(720px, 100%);
}

.eyebrow,
.section-kicker {
  margin: 0 0 12px;
  color: var(--lime);
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p,
li {
  overflow-wrap: anywhere;
}

h1 {
  max-width: 720px;
  margin: 0;
  font-size: clamp(3rem, 6.1vw, 5.65rem);
  line-height: 0.98;
  letter-spacing: 0;
}

h2 {
  max-width: 840px;
  margin: 0 0 16px;
  color: var(--blue);
  font-size: clamp(2rem, 4vw, 3.55rem);
  line-height: 1.06;
  letter-spacing: 0;
}

h3 {
  margin: 0 0 10px;
  color: var(--blue);
  font-size: 1.22rem;
  letter-spacing: 0;
}

.hero p:not(.eyebrow) {
  max-width: 630px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.94);
  font-size: clamp(1.06rem, 1.3vw, 1.18rem);
  line-height: 1.58;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
  margin-top: 32px;
}

.hero-actions.centered {
  justify-content: center;
}

.trust-badges,
.badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.trust-badges {
  margin-top: 28px;
}

.trust-badges span,
.badge-row span {
  padding: 9px 13px;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 800;
}

.trust-badges span {
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
}

.hero-card {
  max-width: 360px;
  margin: 22px 0 0;
  padding: 26px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 16px;
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.14), rgba(0, 29, 52, 0.62));
  box-shadow: 0 26px 74px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(22px) saturate(150%);
}

.hero-card span {
  color: var(--lime);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-card strong {
  display: block;
  margin-top: 8px;
  color: var(--white);
  font-size: 1.7rem;
  line-height: 1.12;
}

.hero-card p {
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.78);
}

.section {
  padding: 88px clamp(20px, 5vw, 78px);
}

.section:nth-of-type(even) {
  background: var(--soft);
}

.section-lead {
  max-width: 780px;
  margin: 0 0 38px;
  color: var(--muted);
  font-size: 1.06rem;
  line-height: 1.7;
}

.app-promo {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(300px, 0.8fr);
  gap: clamp(30px, 6vw, 78px);
  align-items: center;
  background: linear-gradient(180deg, #ffffff, var(--soft));
}

.app-copy .section-lead {
  margin-bottom: 24px;
}

.app-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.button.outline {
  border: 1px solid rgba(0, 29, 52, 0.2);
  background: var(--white);
  color: var(--blue);
}

.app-visual {
  position: relative;
  min-height: 430px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-radius: 20px;
  background:
    radial-gradient(circle at 22% 20%, rgba(206, 220, 41, 0.22), transparent 32%),
    radial-gradient(circle at 82% 24%, rgba(92, 186, 71, 0.3), transparent 34%),
    linear-gradient(145deg, var(--blue), #08365d);
  box-shadow: var(--shadow-strong);
}

.app-phone {
  width: min(300px, 76%);
  min-height: 360px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 34px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.16), rgba(0, 29, 52, 0.76));
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.26);
  backdrop-filter: blur(18px) saturate(145%);
}

.app-phone img {
  max-width: 154px;
  margin-bottom: 28px;
}

.app-pill {
  display: inline-flex;
  max-width: 100%;
  padding: 9px 12px;
  border-radius: 999px;
  background: rgba(92, 186, 71, 0.18);
  color: var(--white);
  font-size: 0.86rem;
  font-weight: 850;
}

.app-screen-card {
  margin-top: 28px;
  padding: 20px;
  border-radius: 18px;
  background: var(--white);
  color: var(--blue);
}

.app-screen-card small,
.app-screen-card strong {
  display: block;
}

.app-screen-card small {
  color: var(--green);
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.app-screen-card strong {
  margin-top: 8px;
  font-size: 1.55rem;
  line-height: 1.1;
}

.app-screen-card p {
  margin: 12px 0 0;
  color: var(--muted);
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.86fr);
  gap: clamp(30px, 6vw, 74px);
  align-items: center;
}

.intro-copy p {
  color: var(--muted);
}

.intro-image {
  min-height: 420px;
  margin: 0;
  overflow: hidden;
  border-radius: 16px;
  background: linear-gradient(135deg, #e9f3ee, #cedc29);
  box-shadow: var(--shadow);
}

.intro-image img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
}

.wash-types {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 26px;
  align-items: start;
}

.wash-block,
.location-grid article,
.feature-grid article,
.mini-grid article,
.benefit-panel {
  padding: 28px;
  border: 1px solid rgba(0, 29, 52, 0.08);
  border-radius: 16px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.wash-block {
  display: flex;
  flex-direction: column;
}

.wash-block,
.location-grid article,
.feature-grid article,
.mini-grid article,
.benefit-panel,
.check-list li,
.faq-item {
  transition: transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.wash-block:hover,
.location-grid article:hover,
.mini-grid article:hover {
  transform: translateY(-2px);
  border-color: rgba(92, 186, 71, 0.34);
  box-shadow: 0 24px 60px rgba(0, 29, 52, 0.13);
}

.wash-block p,
.location-grid p,
.business p,
.help p,
.faq-answer p,
.mini-grid p {
  color: var(--muted);
}

.wash-block > p,
.mini-grid p,
.location-grid p {
  line-height: 1.65;
}

.wash-block > p {
  min-height: 5.2em;
  margin: 0 0 18px;
}

.wash-heading {
  position: relative;
  min-height: 76px;
  margin-bottom: 18px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}

.wash-heading span,
.wash-heading strong {
  display: block;
}

.wash-heading span {
  color: var(--blue);
  font-size: 1.42rem;
  font-weight: 900;
}

.wash-heading strong {
  color: var(--green);
  font-size: 1rem;
}

.plain-list {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 0 0 24px;
  color: var(--ink);
  list-style: none;
}

.plain-list li {
  position: relative;
  padding-left: 22px;
}

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

.price-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: auto;
}

.price-grid div {
  position: relative;
  min-height: 168px;
  padding: 20px;
  border: 1px solid rgba(0, 29, 52, 0.06);
  border-radius: 14px;
  background: linear-gradient(180deg, #ffffff, var(--soft));
}

.price-grid:not(.brush-programs) div {
  display: flex;
  flex-direction: column;
}

.laser-programs div {
  min-height: 218px;
}

.laser-programs div:nth-child(2)::after,
.laser-programs div:nth-child(3)::after {
  position: absolute;
  top: 14px;
  right: 14px;
  padding: 5px 9px;
  border-radius: 999px;
  background: rgba(92, 186, 71, 0.14);
  color: var(--blue);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.02em;
}

.laser-programs div:nth-child(2)::after {
  content: "Anbefalt";
}

.laser-programs div:nth-child(3)::after {
  content: "Populær";
}

.price-grid span,
.price-grid strong {
  display: block;
}

.price-grid span {
  color: var(--blue);
  font-weight: 850;
  padding-right: 86px;
}

.price-grid strong {
  color: var(--green);
  font-size: 1.45rem;
  line-height: 1.2;
  margin-top: 8px;
}

.price-grid p {
  margin: 10px 0 0;
  font-size: 0.92rem;
  line-height: 1.5;
}

.brush-programs {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.brush-programs div {
  min-height: 0;
  padding: 18px;
}

.brush-programs span {
  padding-right: 0;
}

.wash-alert {
  position: relative;
  width: 100%;
  margin: 0 0 20px;
  padding: 12px 16px 12px 44px;
  border: 1px solid rgba(190, 80, 32, 0.26);
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(255, 244, 235, 0.96), rgba(255, 232, 214, 0.78));
  color: #783615;
  font-size: 0.94rem;
  font-weight: 850;
  line-height: 1.45;
}

.wash-alert::before {
  content: "!";
  position: absolute;
  top: 50%;
  left: 16px;
  display: grid;
  place-items: center;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #c95e24;
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 950;
  transform: translateY(-50%);
}

.program-features {
  display: grid;
  gap: 8px;
  padding: 0;
  margin: 12px 0 0;
  color: var(--ink);
  font-size: 0.92rem;
  line-height: 1.42;
  list-style: none;
}

.program-features li {
  position: relative;
  padding-left: 22px;
}

.program-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--green);
  font-weight: 950;
}

.info-box {
  margin-top: 26px;
  padding: 18px 20px;
  border: 1px solid rgba(92, 186, 71, 0.22);
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(92, 186, 71, 0.12), rgba(206, 220, 41, 0.1));
  color: var(--blue);
  font-weight: 800;
}

.inline-cta {
  margin-top: 26px;
}

.selvvask,
.business,
.help {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(300px, 1fr);
  gap: clamp(28px, 6vw, 76px);
  align-items: center;
  overflow: hidden;
}

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

.selvvask::before,
.help::before {
  content: "";
  position: absolute;
  width: 260px;
  height: 260px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(92, 186, 71, 0.18), rgba(92, 186, 71, 0));
  pointer-events: none;
}

.selvvask::before {
  top: 34px;
  right: 8vw;
}

.help::before {
  right: -70px;
  bottom: -90px;
}

.selvvask > *,
.help > * {
  position: relative;
  z-index: 1;
}

.mini-grid article {
  position: relative;
  overflow: hidden;
}

.mini-grid article::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(var(--green), var(--lime));
}

.why {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 85% 18%, rgba(92, 186, 71, 0.2), transparent 34%),
    linear-gradient(145deg, #001d34, #062a49 72%, #001729) !important;
}

.why h2,
.why h3,
.why p {
  color: var(--white);
}

.why .feature-grid article {
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.075);
  box-shadow: none;
  backdrop-filter: blur(10px);
}

.feature-grid,
.location-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  margin-top: 38px;
}

.location-grid article {
  display: flex;
  flex-direction: column;
}

.badge-row {
  margin-bottom: 20px;
}

.badge-row span {
  border: 1px solid rgba(92, 186, 71, 0.2);
  background: rgba(92, 186, 71, 0.11);
  color: var(--blue);
}

.address,
.type {
  margin: 0 0 8px;
  font-weight: 800;
}

.type {
  color: var(--green) !important;
}

.card-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: auto;
  padding-top: 20px;
}

.card-actions a {
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid transparent;
  background: var(--soft);
  color: var(--blue);
  font-size: 0.92rem;
  font-weight: 850;
  text-decoration: none;
}

.card-actions a:first-child {
  background: linear-gradient(135deg, var(--blue), var(--blue-2));
  color: var(--white);
}

.card-actions a:last-child {
  border-color: var(--line);
  background: var(--white);
}

.business .check-list {
  margin-top: 24px;
}

.benefit-panel {
  background:
    radial-gradient(circle at 92% 14%, rgba(92, 186, 71, 0.26), transparent 32%),
    linear-gradient(145deg, var(--blue), #082d4e);
  color: var(--white);
}

.benefit-panel h3,
.benefit-panel li {
  color: var(--white);
}

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

.check-list li {
  position: relative;
  padding: 15px 18px 15px 48px;
  border: 1px solid rgba(0, 29, 52, 0.06);
  border-radius: 14px;
  background: var(--white);
  box-shadow: 0 12px 30px rgba(0, 29, 52, 0.08);
  font-weight: 750;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 18px;
  top: 20px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green), var(--lime));
}

.compact li {
  box-shadow: none;
}

.faq-list {
  max-width: 980px;
}

.faq-item {
  margin-bottom: 12px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--white);
  box-shadow: 0 12px 30px rgba(0, 29, 52, 0.06);
}

.faq-item:last-child {
  border-bottom: 1px solid var(--line);
}

.faq-item button {
  position: relative;
  width: 100%;
  padding: 20px 64px 20px 22px;
  border: 0;
  background: transparent;
  color: var(--blue);
  font: inherit;
  font-size: 1.08rem;
  font-weight: 900;
  text-align: left;
  cursor: pointer;
}

.faq-item button::after {
  content: "+";
  position: absolute;
  top: 50%;
  right: 18px;
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  color: var(--blue);
  border-radius: 50%;
  background: rgba(92, 186, 71, 0.14);
  font-size: 1.45rem;
  line-height: 1;
  transform: translateY(-50%);
}

.faq-item.is-open button::after {
  content: "−";
}

.faq-answer {
  display: none;
  padding: 0 22px 22px;
}

.faq-item.is-open .faq-answer {
  display: block;
}

.contact {
  position: relative;
  overflow: hidden;
  text-align: center;
  background:
    radial-gradient(circle at 18% 18%, rgba(92, 186, 71, 0.18), transparent 34%),
    linear-gradient(145deg, #001d34, #062a49) !important;
}

.contact h2,
.contact p,
.contact a {
  color: var(--white);
}

.contact-points {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin: 28px 0 0;
  font-weight: 800;
}

.contact-points a {
  padding: 13px 18px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  text-decoration: none;
}

.site-footer {
  display: grid;
  grid-template-columns: auto minmax(260px, 1fr) auto auto;
  align-items: center;
  gap: 24px;
  padding: 34px clamp(20px, 5vw, 78px);
  color: var(--white);
  background: #001729;
}

.site-footer p {
  max-width: 460px;
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
}

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

.site-footer a {
  color: var(--white);
  text-decoration: none;
}

.site-footer a:hover,
.site-footer a:focus-visible {
  color: var(--lime);
}

@media (max-width: 1120px) {
  .main-nav {
    gap: 11px;
    font-size: 0.88rem;
  }

  .brand img {
    max-width: 162px;
  }

  .header-action {
    padding-inline: 14px;
  }

  .wash-types {
    grid-template-columns: 1fr;
  }

  .feature-grid,
  .location-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .brush-programs {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .site-header {
    align-items: center;
  }

  .menu-toggle {
    display: block;
    margin-left: auto;
  }

  .header-action {
    display: none;
  }

  .main-nav {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    gap: 0;
    padding: 10px;
    border-radius: 8px;
    background: rgba(0, 29, 52, 0.98);
  }

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

  .main-nav a {
    padding: 14px;
  }

  .hero-inner,
  .app-promo,
  .intro-grid,
  .wash-types,
  .selvvask,
  .business,
  .help {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: 780px;
    padding-top: 138px;
  }

  .hero-card {
    margin: 0;
  }

  .app-visual {
    min-height: 380px;
  }

  .site-footer {
    grid-template-columns: 1fr;
    align-items: flex-start;
  }
}

@media (max-width: 620px) {
  html {
    scroll-padding-top: 92px;
  }

  .site-header {
    top: 10px;
    left: 10px;
    right: 10px;
    min-height: 64px;
    border-radius: 14px;
  }

  .brand,
  .footer-brand {
    min-width: 0;
  }

  .brand img,
  .footer-brand img {
    max-width: 150px;
  }

  .hero,
  .section {
    padding-left: 18px;
    padding-right: 18px;
  }

  .hero {
    min-height: 720px;
    padding-top: 124px;
    padding-bottom: 84px;
  }

  h1 {
    font-size: clamp(2.45rem, 12vw, 3.35rem);
    line-height: 1.02;
  }

  h2 {
    font-size: clamp(1.9rem, 9vw, 2.7rem);
  }

  .hero p:not(.eyebrow) {
    margin-top: 18px;
    font-size: 1.02rem;
    line-height: 1.56;
  }

  .hero-actions {
    margin-top: 26px;
  }

  .price-grid,
  .feature-grid,
  .location-grid,
  .mini-grid {
    grid-template-columns: 1fr;
  }

  .button {
    width: 100%;
  }

  .app-actions {
    width: 100%;
  }

  .app-visual {
    min-height: 340px;
    border-radius: 16px;
  }

  .app-phone {
    width: min(280px, 86%);
    min-height: 320px;
    border-radius: 28px;
  }

  .hero-actions {
    width: 100%;
  }

  .hero-card {
    padding: 20px;
    border-radius: 14px;
  }

  .price-grid div {
    min-height: 136px;
  }

  .section {
    padding-top: 72px;
    padding-bottom: 72px;
  }

  .faq-item button {
    padding-left: 18px;
    font-size: 1rem;
  }

  .contact-points,
  .site-footer nav {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
