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

:root {
  --bg: #ffffff;
  --card: #ffffff;
  --soft: #f2f4f7;
  --soft-2: #f6f7f9;
  --ink: #0f1a28;
  --ink-2: #0e1f33;
  --navy: #0b1a2c;
  --body: #55595f;
  --muted: #8b8f97;
  --blue: #1a63b5;
  --blue-2: #14508f;
  --shadow: 0 1px 2px rgba(15, 26, 40, 0.04), 0 18px 44px rgba(15, 26, 40, 0.06);
  --star: #f2b60f;
  --pill: 100px;
  --rc: 26px;
  --ri: 16px;
  --wrap: 1240px;
}

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

.topbar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: 9px 24px;
  background: var(--navy);
  color: #fff;
  font-size: 0.9063rem;
  line-height: 1.4;
  text-decoration: none;
  text-align: center;
  transition: background-color 0.2s ease;
}

.topbar:hover { background: #12243a; }
.topbar strong { font-weight: 700; color: #fff; }
.topbar-text { color: rgba(255, 255, 255, 0.9); }

.topbar-cta {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  flex: 0 0 auto;
  padding: 5px 13px;
  background: rgba(255, 255, 255, 0.14);
  border-radius: var(--pill);
  font-weight: 600;
  white-space: nowrap;
}

.topbar-cta svg { width: 14px; height: 14px; }
.topbar-short { display: none; }

body {
  font-family: 'Inter', sans-serif;
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--body);
  background: var(--bg);
  overflow-x: clip;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.028em;
  color: var(--ink);
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; }

.wrap {
  width: 100%;
  max-width: var(--wrap);
  margin: 0 auto;
  padding-left: 28px;
  padding-right: 28px;
}

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

.section--grey { background: var(--soft); }
.section--navy { background: var(--navy); }

.hero {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: min(82vh, 820px);
  padding: 150px 0 96px;
  overflow: clip;
  background: var(--navy);
}

.hero-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: 50% 55%; }

.hero-scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(11, 26, 44, 0.66) 0%, rgba(11, 26, 44, 0.56) 50%, rgba(11, 26, 44, 0.78) 100%);
}

.intro { position: relative; z-index: 1; max-width: 900px; text-align: center; }

.intro h1 {
  font-size: clamp(2.75rem, 5.3vw, 4.5rem);
  letter-spacing: -0.032em;
  line-height: 1.02;
  color: #fff;
  text-shadow: 0 2px 24px rgba(11, 26, 44, 0.45);
  margin-bottom: 24px;
  text-wrap: balance;
}

.intro p { font-size: 1.125rem; max-width: 640px; margin: 0 auto 32px; color: rgba(255, 255, 255, 0.92); text-shadow: 0 1px 12px rgba(11, 26, 44, 0.5); }

.hero-act { display: flex; justify-content: center; flex-wrap: wrap; gap: 12px; }

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

.card {
  min-width: 0;
  display: flex;
  flex-direction: column;
  background: var(--card);
  border-radius: var(--rc);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.25s ease;
}

.card:hover { transform: translateY(-3px); }

.card-media { position: relative; aspect-ratio: 4 / 3; overflow: hidden; background: var(--soft); }
.card-media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }

.card-body {
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
  padding: 28px 28px 30px;
}

.card-body h3 { font-size: 1.3125rem; letter-spacing: -0.02em; margin-bottom: 10px; }
.card-body p { font-size: 0.9688rem; line-height: 1.65; }
.card-body .marks { margin-top: 14px; margin-bottom: 24px; }
.card-body .marks li { font-size: 0.9063rem; }
.card-body .marks li { font-size: 0.9375rem; padding-top: 5px; padding-bottom: 5px; }
.card-body .marks li::before { top: 13px; }
.card-body .btn { margin-top: auto; align-self: flex-start; padding: 14px 26px; }

.feature + .feature { margin-top: 80px; }

.feature-media {
  position: relative;
  aspect-ratio: 21 / 9;
  border-radius: var(--rc);
  overflow: hidden;
  background: var(--soft);
}

.feature-media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }

.feature-text { max-width: 720px; margin: 36px auto 0; text-align: center; }
.feature-text h2 { font-size: clamp(1.9rem, 3.1vw, 2.6rem); margin-bottom: 16px; text-wrap: balance; }
.feature-text h3 { font-size: clamp(1.5rem, 2.3vw, 1.9rem); letter-spacing: -0.024em; margin-bottom: 14px; text-wrap: balance; }
.feature-text p { font-size: 1.0313rem; }
.feature-text .btn { margin-top: 26px; }
.feature-text .nogo-line + .btn { margin-top: 28px; }

.feature--split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.feature--split .feature-media { aspect-ratio: auto; align-self: stretch; min-height: 520px; }
.feature--split .feature-text { max-width: none; margin: 0; text-align: left; min-width: 0; }
.feature--split .marks { display: block; }

.marks { list-style: none; margin-top: 22px; }
.feature-text .marks { display: inline-block; text-align: left; margin-top: 24px; }

.marks li {
  position: relative;
  padding: 7px 0 7px 30px;
  font-size: 0.9688rem;
  color: var(--ink);
}

.marks li::before {
  content: '';
  position: absolute;
  left: 3px;
  top: 15px;
  width: 10px;
  height: 6px;
  border-left: 2px solid var(--blue);
  border-bottom: 2px solid var(--blue);
  transform: rotate(-45deg);
}

.section--navy h2, .section--navy h3 { color: #fff; }
.section--navy .sec-head p { color: rgba(255, 255, 255, 0.7); }
.section--navy .feature-text p { color: rgba(255, 255, 255, 0.7); }
.section--navy .marks li { color: rgba(255, 255, 255, 0.88); }
.section--navy .marks li::before { border-color: #8fc0f0; }

.nogo-line {
  margin-top: 26px;
  padding: 16px 20px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.07);
  font-size: 0.9063rem;
  line-height: 1.6;
}

.sec-head { max-width: 720px; margin: 0 auto 56px; text-align: center; }

.sec-head--center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.sec-head h2 {
  font-size: clamp(2rem, 3.5vw, 2.9rem);
  margin-bottom: 16px;
  text-wrap: balance;
}

.sec-head p { font-size: 1.0625rem; }
.sec-head p + .btn { margin-top: 26px; }

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.is-in { opacity: 1; transform: none; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 17px 32px;
  font-family: 'Inter', sans-serif;
  font-size: 0.9688rem;
  font-weight: 600;
  letter-spacing: -0.005em;
  text-decoration: none;
  border: none;
  border-radius: var(--pill);
  cursor: pointer;
  transition: background-color 0.22s ease, color 0.22s ease, transform 0.2s ease, opacity 0.2s ease;
}

.btn:hover { transform: translateY(-1px); }
.btn--ink { background: var(--ink-2); color: #fff; }
.btn--ink:hover { background: var(--navy); }
.btn--blue { background: var(--blue); color: #fff; }
.btn--blue:hover { background: var(--blue-2); }
.btn svg { width: 16px; height: 16px; }
.btn--paper { background: #fff; color: var(--ink); }
.btn--paper:hover { background: var(--soft-2); }
.btn--soft { background: var(--soft); color: var(--ink); }
.btn--soft:hover { background: #e6e9ee; }
.section--grey .btn--soft { background: #e6e9ee; }

.pillnav {
  position: fixed;
  top: calc(var(--bar-offset, 0px) + 18px);
  left: 0;
  right: 0;
  z-index: 900;
  display: flex;
  justify-content: center;
  pointer-events: none;
  padding: 0 16px;
}

.pill {
  pointer-events: auto;
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(26, 99, 181, 0.94);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-radius: var(--pill);
  padding: 8px 8px 8px 22px;
  box-shadow: 0 12px 36px rgba(11, 26, 44, 0.28);
}

.brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  padding: 9px 0;
  line-height: 0;
}

.brand img { height: 26px; width: auto; }

.menu {
  display: flex;
  align-items: center;
  gap: 0;
  list-style: none;
  margin: 0 10px 0 14px;
}

.menu a {
  display: block;
  padding: 10px 13px;
  font-size: 0.9063rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.88);
  text-decoration: none;
  border-radius: var(--pill);
  transition: color 0.2s ease, background-color 0.2s ease;
}

.menu a:hover, .menu a.is-active { color: #fff; background: rgba(255, 255, 255, 0.16); }

.menu .m-cta { display: none; }

.pill-cta {
  display: inline-flex;
  align-items: center;
  padding: 12px 24px;
  background: #fff;
  color: var(--ink);
  font-size: 0.9063rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: var(--pill);
  white-space: nowrap;
  transition: background-color 0.2s ease;
}

.pill-cta:hover { background: var(--soft-2); }

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.16);
  border: none;
  border-radius: var(--pill);
  cursor: pointer;
}

.burger span {
  display: block;
  width: 20px;
  height: 2px;
  border-radius: 2px;
  background: #fff;
  transition: transform 0.3s ease, opacity 0.14s ease 0.18s;
}

.burger.is-open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.burger.is-open span:nth-child(2) { opacity: 0; transition: opacity 0.06s linear; }
.burger.is-open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

.menu-head { display: none; }

.scrim {
  position: fixed;
  inset: 0;
  background: rgba(12, 13, 16, 0.4);
  z-index: 880;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.24s ease, visibility 0s linear 0.24s;
}

.scrim.is-open { opacity: 1; visibility: visible; transition: opacity 0.24s ease, visibility 0s linear 0s; }

.ctaband {
  position: relative;
  padding: 120px 0;
  overflow: clip;
  background: var(--navy);
}

.ctaband img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: 50% 40%; }
.ctaband-scrim { position: absolute; inset: 0; background: rgba(11, 26, 44, 0.66); }
.ctaband-text { position: relative; z-index: 1; text-align: center; }
.ctaband-text h2 { font-size: clamp(2rem, 3.5vw, 2.9rem); color: #fff; margin-bottom: 14px; text-wrap: balance; }
.ctaband-text p { max-width: 600px; margin: 0 auto 30px; font-size: 1.0625rem; color: rgba(255, 255, 255, 0.85); }

.pricegrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: stretch;
}

.pcard {
  background: var(--card);
  border-radius: var(--rc);
  padding: 36px 34px 30px;
  min-width: 0;
  display: flex;
  flex-direction: column;
}

.pcard { box-shadow: var(--shadow); }
.pcard--dark { background: var(--navy); }

.pcard-tag {
  align-self: flex-start;
  padding: 7px 16px;
  background: var(--blue);
  color: #fff;
  font-size: 0.8125rem;
  font-weight: 600;
  border-radius: var(--pill);
  margin-bottom: 20px;
}

.pcard h3 { font-size: 1.1875rem; letter-spacing: -0.015em; margin-bottom: 18px; }

.pcard-sum {
  font-size: clamp(2.1rem, 2.9vw, 2.7rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1;
  color: var(--ink);
}

.pcard-sum small {
  display: block;
  margin-top: 8px;
  font-size: 0.9063rem;
  font-weight: 500;
  letter-spacing: 0;
  color: var(--muted);
}

.pcard-desc { font-size: 0.9063rem; line-height: 1.6; margin-top: 12px; margin-bottom: 26px; }

.pcard ul { list-style: none; margin-bottom: 30px; }

.pcard ul li {
  position: relative;
  padding: 7px 0 7px 30px;
  font-size: 0.9375rem;
  color: var(--ink);
}

.pcard ul li::before {
  content: '';
  position: absolute;
  left: 3px;
  top: 15px;
  width: 10px;
  height: 6px;
  border-left: 2px solid var(--ink);
  border-bottom: 2px solid var(--ink);
  transform: rotate(-45deg);
}

.pcard .btn { margin-top: auto; }
.pcard ul:last-child { margin-bottom: 0; }

.pcard--dark h3, .pcard--dark .pcard-sum { color: #fff; }
.pcard--dark .pcard-sum small { color: rgba(255, 255, 255, 0.55); }
.pcard--dark .pcard-desc { color: rgba(255, 255, 255, 0.66); }
.pcard--dark ul li { color: rgba(255, 255, 255, 0.88); }
.pcard--dark ul li::before { border-color: #8fc0f0; }

.pricefoot { margin-top: 36px; text-align: center; }
.pricefoot .btn { margin-top: 22px; }

.pricenote {
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
  font-size: 0.9063rem;
  line-height: 1.7;
  color: var(--muted);
}

.sec-foot { display: flex; justify-content: center; margin-top: 40px; }

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

.shot {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: 20px;
  cursor: pointer;
  background: var(--soft);
}

.shot img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s ease; }
.shot:hover img { transform: scale(1.04); }

.widgetcard {
  background: var(--card);
  border-radius: var(--rc);
  padding: 28px 28px 18px;
  box-shadow: var(--shadow);
}

.reviews-embed { min-height: 300px; }

.areas { margin-top: 72px; text-align: center; }
.areas h3 { color: var(--ink); }

.areas h3 { font-size: clamp(1.5rem, 2.4vw, 2rem); letter-spacing: -0.025em; margin-bottom: 12px; }
.areas > p { max-width: 720px; margin: 0 auto 26px; }
.areas > .btn { margin-top: 28px; }

.chips { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; max-width: 980px; margin: 0 auto; }

.chips span {
  display: inline-flex;
  padding: 10px 20px;
  background: var(--card);
  color: var(--ink);
  font-size: 0.9063rem;
  font-weight: 500;
  border-radius: var(--pill);
}

.contactcard {
  background: var(--card);
  border-radius: 34px;
  overflow: hidden;
  box-shadow: var(--shadow);
  display: grid;
  grid-template-columns: 1.05fr 1fr;
}

.contact-form { padding: 56px 56px 48px; }

.contact-form h2 {
  font-size: clamp(1.9rem, 3vw, 2.6rem);
  margin-bottom: 14px;
}

.contact-form > p { font-size: 1rem; margin-bottom: 32px; }

.field { margin-bottom: 14px; }

.field label {
  display: block;
  font-size: 0.8438rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 7px;
}

.field input, .field textarea {
  width: 100%;
  min-width: 0;
  padding: 15px 18px;
  font-family: 'Inter', sans-serif;
  font-size: 0.9375rem;
  color: var(--ink);
  background: var(--soft-2);
  border: 1px solid transparent;
  border-radius: 14px;
  transition: border-color 0.2s ease, background-color 0.2s ease;
}

.field input:focus, .field textarea:focus {
  outline: none;
  background: #fff;
  border-color: var(--ink);
}

.field input::placeholder, .field textarea::placeholder { color: #a9acb2; }
.field textarea { resize: vertical; min-height: 120px; }

#contact-form { max-width: 100%; min-width: 0; }

.btn-send { width: 100%; margin-top: 10px; }

.ms-recaptcha-notice { text-align: center; }

.contact-side { display: flex; flex-direction: column; background: var(--soft-2); }

.contact-photo { position: relative; flex: 0 0 auto; aspect-ratio: 16 / 10; overflow: hidden; }
.contact-photo img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }

.contact-info { padding: 40px 48px 44px; }

.clist { list-style: none; }
.clist li { display: flex; align-items: flex-start; gap: 14px; }
.clist li + li { margin-top: 18px; }
.clist li > div { display: flex; flex-direction: column; min-width: 0; }
.clist li span:not(.cico) { font-size: 0.9375rem; line-height: 1.55; color: var(--body); }
.clist li strong { font-size: 0.9375rem; font-weight: 600; color: var(--ink); }
.clist li a { color: var(--ink); text-decoration: none; font-weight: 500; }
.clist li a:hover { color: var(--blue); }

.cico {
  flex: 0 0 40px;
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  color: var(--blue);
  border-radius: 12px;
}

.cico svg { width: 18px; height: 18px; }

.contact-info .big {
  font-size: clamp(1.4rem, 2vw, 1.75rem);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.1;
  margin-bottom: 4px;
}

.marks--foot { margin-top: 0; }
.marks--foot li { color: rgba(255, 255, 255, 0.62); font-size: 0.9375rem; padding: 4px 0 4px 26px; }
.marks--foot li::before { border-color: #8fc0f0; top: 12px; left: 2px; }

.clist--foot li { gap: 12px; }
.clist--foot li + li { margin-top: 14px; }
.clist--foot .cico { flex-basis: 34px; width: 34px; height: 34px; background: rgba(255, 255, 255, 0.08); color: #8fc0f0; border-radius: 10px; }
.clist--foot .cico svg { width: 16px; height: 16px; }
.clist--foot li > span:not(.cico), .clist--foot li a { color: rgba(255, 255, 255, 0.62); font-size: 0.9375rem; line-height: 1.5; font-weight: 400; padding-top: 6px; }
.clist--foot li a:hover { color: #fff; }

.foot {
  background: var(--navy);
  padding: 80px 0 40px;
  color: rgba(255, 255, 255, 0.62);
}

.foot-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1.2fr 1.1fr;
  gap: 40px;
  padding-bottom: 56px;
}

.foot-brand .brand { margin-bottom: 20px; }
.foot-brand .brand img { height: 30px; }
.foot-brand p { max-width: 340px; font-size: 0.9375rem; line-height: 1.7; }

.foot h4 {
  font-size: 0.9375rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 16px;
}

.foot ul { list-style: none; }
.foot li { margin-bottom: 10px; font-size: 0.9375rem; line-height: 1.55; }
.foot a { text-decoration: none; transition: color 0.2s ease; }
.foot a:hover { color: #fff; }

.foot-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 6px 28px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.09);
  font-size: 0.8438rem;
  color: rgba(255, 255, 255, 0.42);
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(10, 11, 14, 0.94);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.28s ease, visibility 0s linear 0.28s;
}

.lightbox.is-open { opacity: 1; visibility: visible; transition: opacity 0.28s ease, visibility 0s linear 0s; }
.lightbox img { max-width: 88%; max-height: 84vh; border-radius: 20px; }

.lb-btn {
  position: absolute;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.12);
  border: none;
  border-radius: var(--pill);
  color: #fff;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.lb-btn:hover { background: rgba(255, 255, 255, 0.22); }
.lb-btn svg { width: 22px; height: 22px; }
.lb-close { top: 26px; right: 26px; }
.lb-prev { left: 26px; top: 50%; transform: translateY(-50%); }
.lb-next { right: 26px; top: 50%; transform: translateY(-50%); }

.skip {
  position: absolute;
  top: -100%;
  left: 16px;
  z-index: 10000;
  background: var(--ink);
  color: #fff;
  padding: 12px 22px;
  font-weight: 600;
  font-size: 0.875rem;
  text-decoration: none;
  border-radius: 0 0 14px 14px;
}

.skip:focus { top: 0; }

a:focus-visible, button:focus-visible { outline: 2px solid var(--blue); outline-offset: 3px; }
a:focus:not(:focus-visible), button:focus:not(:focus-visible) { outline: none; }

@media (max-width: 1180px) {
  .menu a { padding: 10px 9px; font-size: 0.875rem; }
  .card-body .marks li { font-size: 0.8438rem; padding-left: 26px; }
  .brand img { height: 23px; }
}

@media (max-width: 1024px) {
  .foot-grid { grid-template-columns: 1fr 1fr 1fr; }
  .foot-brand { grid-column: 1 / -1; }
  .cards { gap: 16px; }
}

@media (max-width: 980px) {
  .section { padding-top: 72px; padding-bottom: 72px; }

  .burger { display: flex; z-index: 902; }

  .pillnav { padding: 0 12px; }

  .pill {
    width: 100%;
    justify-content: space-between;
    padding: 8px 8px 8px 18px;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    background: rgba(26, 99, 181, 0.98);
  }
  .pill .pill-cta { display: none; }

  .menu {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: min(330px, calc(100vw - 40px));
    height: 100vh;
    height: 100dvh;
    background: var(--card);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    margin: 0;
    padding: 0 24px 24px;
    overflow-y: auto;
    transform: translateX(100%);
    transition: transform 0.28s ease;
    border-radius: 24px 0 0 24px;
    box-shadow: -20px 0 44px rgba(10, 12, 16, 0.18);
    z-index: 901;
  }

  .menu.is-open { transform: translateX(0); }

  .menu-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 0 14px;
    margin-bottom: 10px;
    position: sticky;
    top: 0;
    background: var(--card);
  }

  .menu-head .brand img { height: 22px; }

  .menu-x {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    background: var(--soft-2);
    border: none;
    border-radius: var(--pill);
    color: var(--ink);
    cursor: pointer;
  }

  .menu-x svg { width: 19px; height: 19px; }

  .menu > li:not(.menu-head) > a {
    display: block;
    padding: 14px 4px;
    font-size: 1.0625rem;
    font-weight: 600;
    color: var(--ink);
    border-radius: 12px;
  }

  .menu > li:not(.menu-head) > a:hover { background: var(--soft-2); }

  .menu .m-cta { display: block; }

  .menu > li > a.m-cta {
    margin-top: 16px;
    background: var(--ink);
    color: #fff;
    text-align: center;
    border-radius: var(--pill);
    padding: 15px 20px;
  }

  .hero { padding: 120px 0 72px; min-height: 0; }
  .feature-media { aspect-ratio: 16 / 9; }
  .feature + .feature { margin-top: 56px; }
  .feature--split { grid-template-columns: 1fr; gap: 28px; }
  .feature--split .feature-media { min-height: 0; aspect-ratio: 16 / 9; }
  .feature--split .feature-text { text-align: center; max-width: 720px; margin: 0 auto; }
  .feature--split .marks { display: inline-block; }
  .pricegrid { grid-template-columns: 1fr; }
  .work { grid-template-columns: repeat(2, 1fr); }
  .contactcard { grid-template-columns: 1fr; }
  .contact-side { order: -1; }
  .contact-info { padding: 28px 30px 32px; }
  .contact-form { padding: 38px 30px 34px; }
  .areas { margin-top: 56px; }
  .foot { padding-top: 72px; }
  .ctaband { padding: 88px 0; }
  .foot-grid { grid-template-columns: 1fr 1fr; gap: 32px; padding: 56px 0 40px; }
  .cards { grid-template-columns: 1fr; max-width: 560px; margin: 0 auto; gap: 20px; }
  .topbar { padding: 9px 16px; gap: 12px; font-size: 0.875rem; }
}

@media (max-width: 640px) {
  .wrap { padding-left: 20px; padding-right: 20px; }
  .section { padding-top: 60px; padding-bottom: 60px; }
  .pillnav { top: calc(var(--bar-offset, 0px) + 12px); }
  .hero { padding: 110px 0 64px; }
  .topbar-text { display: none; }
  .topbar-short { display: inline; }
  .hero-act { flex-direction: column; align-items: stretch; }
  .intro h1 { font-size: clamp(2.25rem, 9.4vw, 2.9rem); }
  .work { grid-template-columns: 1fr 1fr; gap: 10px; }
  .foot { padding-top: 60px; }
  .ctaband { padding: 72px 0; }
  .foot-grid { grid-template-columns: 1fr; gap: 28px; }
  .foot-bottom { flex-direction: column; align-items: center; text-align: center; gap: 6px; padding-top: 20px; }
  .topbar { justify-content: center; text-align: center; font-size: 0.8438rem; line-height: 1.35; }
  .topbar-cta { display: none; }
  .areas > .btn, .sec-foot .btn, .pricefoot .btn { width: 100%; }
  .feature-text .btn { width: 100%; }
  .card-body .btn { align-self: stretch; }
  .feature-media { aspect-ratio: 4 / 3; }
  .feature-text { margin-top: 24px; }
  .lb-prev { left: 10px; top: auto; bottom: 24px; transform: none; }
  .lb-next { right: 10px; top: auto; bottom: 24px; transform: none; }
}

@media (hover: none) {
  a, button { -webkit-tap-highlight-color: transparent; }
  .shot:hover img { transform: none; }
  .btn:hover { transform: none; }
  .field input, .field textarea { font-size: 16px; }
}

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .btn, .menu, .shot img, .lightbox { transition: none; animation: none; }
}

.hero--page { min-height: min(58vh, 560px); padding: 172px 0 92px; }
.hero--page .intro { max-width: 860px; }
.hero--page .intro h1 { font-size: clamp(2.25rem, 4vw, 3.4rem); letter-spacing: -0.03em; line-height: 1.06; }
.hero--page .intro p { font-size: 1.0625rem; max-width: 660px; }
.hero--page .hero-img { object-position: 50% 50%; }

.pricegrid--four { grid-template-columns: repeat(2, 1fr); gap: 24px; }

.faq { max-width: 880px; margin: 0 auto; }

.faq-item {
  background: var(--card);
  border-radius: var(--rc);
  box-shadow: var(--shadow);
}

.faq-item + .faq-item { margin-top: 12px; }

.faq-item summary {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 24px 30px;
  font-size: 1.0313rem;
  font-weight: 600;
  letter-spacing: -0.015em;
  color: var(--ink);
  cursor: pointer;
  list-style: none;
}

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

.faq-chev {
  flex: 0 0 auto;
  width: 20px;
  height: 20px;
  margin-left: auto;
  color: var(--muted);
  transition: transform 0.24s ease;
}

.faq-item[open] .faq-chev { transform: rotate(180deg); }
.faq-item[open] summary { padding-bottom: 6px; }

.faq-body { padding: 0 30px 26px; }
.faq-body p { font-size: 0.9688rem; line-height: 1.72; }
.faq-body p + p { margin-top: 14px; }

.mapcard {
  border-radius: var(--rc);
  overflow: hidden;
  box-shadow: var(--shadow);
  background: var(--card);
  line-height: 0;
}

.mapcard iframe { display: block; width: 100%; border: 0; }

@media (max-width: 980px) {
  .hero--page { padding: 128px 0 76px; min-height: 0; }
  .pricegrid--four { grid-template-columns: 1fr; }
  .mapcard iframe { height: 380px; }
}

@media (max-width: 640px) {
  .hero--page { padding: 116px 0 66px; }
  .hero--page .intro h1 { font-size: clamp(1.9rem, 8vw, 2.4rem); }
  .faq-item summary { padding: 20px 22px; gap: 14px; }
  .faq-body { padding: 0 22px 22px; }
  .mapcard iframe { height: 320px; }
}

