:root {
  --header-height: 76px;
  --ink: #111827;
  --muted: #5d6b7d;
  --paper: #ffffff;
  --soft: #f4f8fb;
  --line: #dce5ee;
  --blue: #087fce;
  --blue-dark: #062f57;
  --cyan: #28b7e5;
  --accent: #f2a93b;
  --shadow: 0 24px 80px rgba(16, 34, 58, 0.15);
  --font-main: Manrope, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--font-main);
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: 0;
  text-rendering: geometricPrecision;
}

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

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid #cdd8e4;
  border-radius: 6px;
  background: linear-gradient(180deg, #ffffff 0%, #fbfdff 100%);
  color: var(--ink);
  padding: 14px 15px;
  outline: none;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(8, 121, 200, 0.14);
}

.container {
  width: min(1160px, calc(100% - 40px));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  left: 18px;
  top: 14px;
  z-index: 1000;
  transform: translateY(-150%);
  border-radius: 6px;
  background: var(--ink);
  color: #ffffff;
  padding: 10px 14px;
  transition: transform 160ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header-height);
  border-bottom: 1px solid rgba(220, 229, 238, 0.9);
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(16px);
  transition: box-shadow 180ms ease;
}

.site-header.is-scrolled {
  box-shadow: 0 12px 34px rgba(15, 31, 49, 0.08);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: 20px;
}

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
}

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

.nav-panel {
  display: flex;
  align-items: center;
  gap: 20px;
  color: #2c3b4d;
  font-weight: 700;
}

.nav-panel a {
  position: relative;
}

.nav-panel a:not(.nav-call)::after {
  position: absolute;
  left: 0;
  bottom: -7px;
  width: 100%;
  height: 2px;
  content: "";
  background: var(--blue);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 160ms ease;
}

.nav-panel a:hover::after,
.nav-panel a:focus-visible::after {
  transform: scaleX(1);
}

.nav-call {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 44px;
  border-radius: 6px;
  background: var(--blue-dark);
  color: #ffffff;
  padding: 10px 14px;
  box-shadow: 0 10px 26px rgba(7, 59, 105, 0.2);
}

.nav-call:hover,
.nav-call:focus-visible {
  background: #052f55;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #ffffff;
  color: var(--ink);
  cursor: pointer;
}

.nav-toggle-lines,
.nav-toggle-lines::before,
.nav-toggle-lines::after {
  display: block;
  width: 20px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  content: "";
  transition: transform 160ms ease, opacity 160ms ease;
}

.nav-toggle-lines {
  margin: auto;
}

.nav-toggle-lines::before {
  transform: translateY(-7px);
}

.nav-toggle-lines::after {
  transform: translateY(5px);
}

.nav-open .nav-toggle-lines {
  transform: rotate(45deg);
}

.nav-open .nav-toggle-lines::before {
  transform: translateY(0) rotate(90deg);
}

.nav-open .nav-toggle-lines::after {
  opacity: 0;
}

.hero {
  position: relative;
  display: grid;
  align-items: center;
  min-height: calc(90svh - var(--header-height));
  overflow: hidden;
  isolation: isolate;
  --hero-x: 0px;
  --hero-y: 0px;
}

.hero-bg,
.hero-shade {
  position: absolute;
  inset: 0;
}

.hero-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 42%;
  z-index: -3;
  transform: scale(1.035) translate3d(var(--hero-x), var(--hero-y), 0);
  transition: transform 400ms ease-out;
}

.hero-shade {
  z-index: -2;
  background:
    radial-gradient(circle at 17% 42%, rgba(40, 183, 229, 0.24) 0%, rgba(40, 183, 229, 0) 34%),
    linear-gradient(90deg, rgba(255, 255, 255, 0.99) 0%, rgba(255, 255, 255, 0.9) 38%, rgba(255, 255, 255, 0.38) 72%, rgba(255, 255, 255, 0.1) 100%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.82) 100%);
}

.hero::after {
  position: absolute;
  right: clamp(20px, 5vw, 84px);
  bottom: clamp(20px, 5vw, 74px);
  z-index: -1;
  color: rgba(6, 47, 87, 0.08);
  content: "ASM";
  font-size: clamp(7rem, 18vw, 18rem);
  font-weight: 900;
  line-height: 0.78;
  pointer-events: none;
}

.hero-inner {
  padding: 76px 0 74px;
}

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

.hero h1 {
  max-width: 820px;
  margin: 0;
  color: var(--blue-dark);
  font-size: clamp(3.4rem, 6vw, 5.9rem);
  line-height: 0.92;
  letter-spacing: 0;
}

.hero-locations {
  display: block;
  margin-top: 14px;
  color: var(--blue);
  font-size: clamp(1.4rem, 2.5vw, 2.3rem);
  font-weight: 700;
  line-height: 1.25;
}

.hero-copy {
  max-width: 610px;
  margin: 24px 0 0;
  color: #334155;
  font-size: 1.25rem;
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  margin-top: 36px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  min-height: 56px;
  border: 1px solid transparent;
  border-radius: 8px;
  padding: 14px 22px;
  font-weight: 900;
  line-height: 1.2;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, border-color 180ms ease;
}

.button > *,
.button > strong,
.button > small {
  position: relative;
  z-index: 1;
}

.button-icon {
  display: inline-grid;
  place-items: center;
  width: 20px;
  height: 20px;
  flex: 0 0 20px;
  background: currentColor;
  content: "";
}

.nav-call-icon,
.contact-method-symbol {
  display: inline-block;
  width: 20px;
  height: 20px;
  flex: 0 0 20px;
  background: currentColor;
}

.icon-mail {
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4 4h16c1.1 0 2 .9 2 2v12c0 1.1-.9 2-2 2H4c-1.1 0-2-.9-2-2V6c0-1.1.9-2 2-2Z'/%3E%3Cpath d='m22 7-10 7L2 7'/%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4 4h16c1.1 0 2 .9 2 2v12c0 1.1-.9 2-2 2H4c-1.1 0-2-.9-2-2V6c0-1.1.9-2 2-2Z'/%3E%3Cpath d='m22 7-10 7L2 7'/%3E%3C/svg%3E") center / contain no-repeat;
}

.icon-phone {
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M22 16.92v3a2 2 0 0 1-2.18 2 19.8 19.8 0 0 1-8.63-3.07 19.5 19.5 0 0 1-6-6A19.8 19.8 0 0 1 2.08 4.18 2 2 0 0 1 4.06 2h3a2 2 0 0 1 2 1.72c.13.96.35 1.89.7 2.81a2 2 0 0 1-.45 2.11L8.09 9.91a16 16 0 0 0 6 6l1.27-1.27a2 2 0 0 1 2.11-.45c.92.35 1.85.57 2.81.7A2 2 0 0 1 22 16.92Z'/%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M22 16.92v3a2 2 0 0 1-2.18 2 19.8 19.8 0 0 1-8.63-3.07 19.5 19.5 0 0 1-6-6A19.8 19.8 0 0 1 2.08 4.18 2 2 0 0 1 4.06 2h3a2 2 0 0 1 2 1.72c.13.96.35 1.89.7 2.81a2 2 0 0 1-.45 2.11L8.09 9.91a16 16 0 0 0 6 6l1.27-1.27a2 2 0 0 1 2.11-.45c.92.35 1.85.57 2.81.7A2 2 0 0 1 22 16.92Z'/%3E%3C/svg%3E") center / contain no-repeat;
}

.button-quote .button-icon {
  width: 19px;
  height: 19px;
  flex-basis: 19px;
}

.button-quote {
  min-width: 196px;
}

.button-quote::after {
  position: absolute;
  inset: 8px auto 8px 48px;
  width: 1px;
  content: "";
  background: rgba(255, 255, 255, 0.22);
}

.button-call .button-icon {
  width: 19px;
  height: 19px;
  flex-basis: 19px;
}

.button-call .call-text {
  color: #21334a;
  font-weight: 900;
}

.button-call .call-number {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  border-radius: 999px;
  background: rgba(8, 127, 206, 0.1);
  color: var(--blue-dark);
  padding: 4px 10px;
  font-size: 0.96rem;
  line-height: 1;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
}

.button-primary {
  background: linear-gradient(135deg, #0a8ede 0%, #087fce 54%, #0665a6 100%);
  color: #ffffff;
  box-shadow: 0 12px 30px rgba(8, 121, 200, 0.28);
}

.button-primary::before {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(105deg, rgba(255, 255, 255, 0) 24%, rgba(255, 255, 255, 0.16) 50%, rgba(255, 255, 255, 0) 76%);
  transform: translateX(-145%);
  transition: transform 1100ms cubic-bezier(0.16, 1, 0.3, 1);
}

.button-primary:hover::before,
.button-primary:focus-visible::before {
  transform: translateX(145%);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: #066cad;
}

.button-secondary {
  border-color: rgba(7, 59, 105, 0.28);
  background: rgba(255, 255, 255, 0.86);
  color: var(--blue-dark);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  border-color: var(--blue);
  background: #ffffff;
}

.button-call {
  min-width: 272px;
  border-color: rgba(7, 59, 105, 0.34);
  background: rgba(255, 255, 255, 0.92);
  color: var(--blue-dark);
  padding: 12px 16px;
  box-shadow: 0 12px 30px rgba(7, 59, 105, 0.1);
}

.button-call:hover,
.button-call:focus-visible {
  border-color: var(--blue);
  background: #ffffff;
  box-shadow: 0 16px 34px rgba(7, 59, 105, 0.16);
}

.proof-band {
  border-block: 1px solid var(--line);
  background: #ffffff;
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.proof-grid div {
  min-height: 126px;
  padding: 26px 24px;
  border-left: 1px solid var(--line);
}

.proof-grid div:last-child {
  border-right: 1px solid var(--line);
}

.proof-grid strong {
  display: block;
  color: var(--blue);
  font-size: 1.08rem;
}

.proof-grid span {
  display: block;
  margin-top: 6px;
  color: var(--muted);
}

.section {
  padding: 92px 0;
}

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

.section-dark {
  background: #102033;
  color: #ffffff;
}

.section-dark .eyebrow {
  color: #72d9f5;
}

.section-dark p {
  color: #cbd6e4;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 38px;
}

.section h2,
.contact-section h2 {
  margin: 0;
  color: var(--ink);
  font-size: 2.45rem;
  line-height: 1.12;
  letter-spacing: 0;
}

.section-dark h2 {
  color: #ffffff;
}

.section-copy p:last-child,
.standard-content p,
.contact-copy p {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 1.04rem;
}

.intro-grid,
.standard-grid,
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.78fr);
  gap: 56px;
  align-items: center;
}

.quality-panel {
  display: grid;
  gap: 14px;
}

.quality-panel > div {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 6px 16px;
  align-items: start;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  padding: 20px;
  box-shadow: 0 12px 34px rgba(17, 35, 58, 0.07);
}

.panel-number {
  grid-row: span 2;
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 6px;
  background: #e7f5fd;
  color: var(--blue);
  font-weight: 900;
}

.quality-panel strong,
.service-card h3,
.process-grid h3 {
  margin: 0;
  color: var(--ink);
  font-size: 1.12rem;
  line-height: 1.25;
}

.quality-panel p,
.service-card p {
  margin: 0;
  color: var(--muted);
}

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

.service-card {
  border: 1px solid #dbe5ee;
  border-radius: 8px;
  background: #ffffff;
  padding: 24px;
  box-shadow: 0 12px 34px rgba(17, 35, 58, 0.06);
}

.service-card {
  min-height: 292px;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.service-card:hover {
  border-color: rgba(8, 127, 206, 0.38);
  box-shadow: 0 18px 54px rgba(17, 35, 58, 0.12);
  transform: translateY(-4px);
}

.service-icon {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  margin-bottom: 20px;
  border-radius: 6px;
  background: var(--blue-dark);
  color: #ffffff;
}

.service-icon svg {
  width: 27px;
  height: 27px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-card p {
  margin-top: 12px;
}

.standard-media {
  min-height: 460px;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.standard-media img {
  width: 100%;
  height: 100%;
  min-height: 460px;
  object-fit: cover;
  object-position: center;
}

.standard-content {
  max-width: 540px;
}

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

.check-list li {
  position: relative;
  padding-left: 34px;
  color: #344154;
}

.check-list li::before {
  position: absolute;
  left: 0;
  top: 3px;
  display: grid;
  place-items: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--blue);
  color: #ffffff;
  content: "✓";
  font-size: 0.8rem;
  font-weight: 900;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  border-left: 1px solid rgba(255, 255, 255, 0.18);
}

.process-grid article {
  min-height: 278px;
  border-right: 1px solid rgba(255, 255, 255, 0.18);
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  padding: 24px;
  transition: background 180ms ease, transform 180ms ease;
}

.process-grid article:hover {
  background: rgba(255, 255, 255, 0.055);
}

.process-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 26px;
}

.process-number {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 6px;
  background: var(--accent);
  color: #1c2430;
  font-weight: 900;
}

.process-icon {
  display: inline-grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border: 1px solid rgba(114, 217, 245, 0.36);
  border-radius: 8px;
  background: rgba(114, 217, 245, 0.1);
  color: #72d9f5;
}

.process-icon svg {
  width: 28px;
  height: 28px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.process-grid h3 {
  color: #ffffff;
}

.process-grid p {
  margin: 12px 0 0;
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1.25fr 1fr 1fr;
  grid-auto-rows: 260px;
  gap: 18px;
}

.gallery-card {
  position: relative;
  overflow: hidden;
  border: 0;
  border-radius: 8px;
  background: #dce7ef;
  color: #ffffff;
  padding: 0;
  cursor: pointer;
  box-shadow: 0 12px 34px rgba(17, 35, 58, 0.08);
}

.gallery-card-large {
  grid-row: span 2;
}

.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 220ms ease;
}

.gallery-card-large img {
  object-position: center 38%;
}

.gallery-card::after {
  position: absolute;
  inset: auto 0 0;
  height: 52%;
  content: "";
  background: linear-gradient(180deg, rgba(10, 24, 39, 0), rgba(10, 24, 39, 0.82));
}

.gallery-card span {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 16px;
  z-index: 1;
  font-weight: 900;
  text-align: left;
}

.gallery-card:hover img,
.gallery-card:focus-visible img {
  transform: scale(1.035);
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 520ms ease, transform 520ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.gallery-card:focus-visible {
  outline: 4px solid rgba(8, 121, 200, 0.28);
  outline-offset: 4px;
}

.compare-block {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  max-width: 1040px;
  margin: 46px auto 0;
}

.compare-copy {
  display: grid;
  max-width: 760px;
  border-left: 4px solid var(--blue);
  padding: 4px 0 4px 24px;
}

.compare-copy h3 {
  max-width: 680px;
  margin: 0;
  color: var(--ink);
  font-size: clamp(1.85rem, 2.5vw, 2.35rem);
  line-height: 1.08;
}

.compare-copy p:last-child {
  max-width: 680px;
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 1.06rem;
}

.compare-frame {
  --split: 58%;
  position: relative;
  aspect-ratio: 1100 / 819;
  width: 100%;
  min-height: 0;
  overflow: hidden;
  border-radius: 8px;
  background: #dce7ef;
  box-shadow: 0 24px 70px rgba(17, 35, 58, 0.18);
}

.compare-img,
.compare-after,
.compare-after img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.compare-img,
.compare-after img {
  object-fit: cover;
}

.compare-after {
  clip-path: inset(0 calc(100% - var(--split)) 0 0);
}

.compare-divider {
  position: absolute;
  top: 0;
  bottom: 0;
  left: var(--split);
  width: 3px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 0 0 1px rgba(6, 47, 87, 0.12), 0 0 24px rgba(6, 47, 87, 0.28);
  transform: translateX(-1.5px);
  pointer-events: none;
}

.compare-divider span {
  position: absolute;
  top: 50%;
  left: 50%;
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border: 2px solid #ffffff;
  border-radius: 50%;
  background: var(--blue);
  box-shadow: 0 16px 34px rgba(6, 47, 87, 0.3);
  transform: translate(-50%, -50%);
}

.compare-divider span::before {
  color: #ffffff;
  content: "↔";
  font-weight: 900;
}

.compare-tags {
  position: absolute;
  inset: 18px 18px auto;
  display: flex;
  justify-content: space-between;
  pointer-events: none;
}

.compare-tags span {
  border-radius: 6px;
  background: rgba(6, 47, 87, 0.88);
  color: #ffffff;
  padding: 8px 12px;
  font-size: 0.88rem;
  font-weight: 900;
}

.compare-range {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: ew-resize;
}

.faq-section {
  background: #ffffff;
}

.faq-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(420px, 1fr);
  gap: 56px;
  align-items: start;
}

.faq-grid .section-heading {
  position: sticky;
  top: calc(var(--header-height) + 28px);
  margin-bottom: 0;
}

.faq-grid .section-heading p:last-child {
  margin: 18px 0 0;
  color: var(--muted);
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-list details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 12px 34px rgba(17, 35, 58, 0.06);
}

.faq-list summary {
  position: relative;
  min-height: 62px;
  padding: 18px 56px 18px 20px;
  color: var(--ink);
  font-weight: 900;
  cursor: pointer;
  list-style: none;
}

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

.faq-list summary::after {
  position: absolute;
  top: 18px;
  right: 18px;
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 6px;
  background: #e7f5fd;
  color: var(--blue);
  content: "+";
  font-weight: 900;
  transition: transform 160ms ease;
}

.faq-list details[open] summary::after {
  transform: rotate(45deg);
}

.faq-list p {
  margin: 0;
  border-top: 1px solid var(--line);
  color: var(--muted);
  padding: 0 20px 20px;
}

.contact-section {
  padding: 104px 0;
  background:
    linear-gradient(180deg, #edf6fa 0%, #f7fbfd 58%, #ffffff 100%);
}

.contact-grid {
  grid-template-columns: minmax(0, 0.95fr) minmax(420px, 0.82fr);
  align-items: start;
  gap: 72px;
}

.contact-copy {
  position: sticky;
  top: calc(var(--header-height) + 28px);
  padding-top: 10px;
}

.contact-copy h2 {
  max-width: 650px;
}

.contact-methods {
  display: grid;
  gap: 18px;
  margin-top: 34px;
}

.contact-phone {
  display: flex;
  align-items: center;
  gap: 16px;
  width: fit-content;
  min-width: min(100%, 340px);
  border: 1px solid rgba(8, 121, 200, 0.22);
  border-radius: 8px;
  background: #ffffff;
  color: var(--blue-dark);
  padding: 16px 18px;
  box-shadow: 0 18px 50px rgba(17, 35, 58, 0.1);
}

.contact-phone-icon {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 6px;
  background: var(--blue);
  color: #ffffff;
}

.contact-phone-icon .contact-method-symbol {
  width: 21px;
  height: 21px;
}

.contact-phone small {
  display: block;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.contact-phone strong {
  display: block;
  color: var(--blue-dark);
  font-size: 1.35rem;
  line-height: 1.15;
}

.contact-email strong {
  overflow-wrap: anywhere;
  font-size: 1.06rem;
}

.quote-list {
  display: grid;
  gap: 10px;
  max-width: 520px;
  margin: 4px 0 0;
  padding: 0;
  list-style: none;
}

.quote-list li {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 18px;
  align-items: baseline;
  border-bottom: 1px solid rgba(98, 112, 132, 0.18);
  padding: 12px 0;
}

.quote-list strong {
  color: var(--ink);
}

.quote-list span {
  color: var(--muted);
}

.company-details {
  display: grid;
  gap: 4px;
  width: min(100%, 520px);
  max-width: 100%;
  margin: 8px 0 0;
  border-left: 4px solid var(--blue);
  background: rgba(255, 255, 255, 0.84);
  color: #344154;
  padding: 16px 18px;
  font-style: normal;
}

.company-details strong {
  color: var(--ink);
}

.contact-form {
  display: grid;
  gap: 17px;
  border: 1px solid #d1dde8;
  border-radius: 8px;
  background: #ffffff;
  padding: 30px;
  box-shadow: var(--shadow);
}

.form-head {
  border-bottom: 1px solid var(--line);
  margin-bottom: 4px;
  padding-bottom: 20px;
}

.form-head p {
  margin: 0 0 7px;
  color: var(--blue);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.form-head h3 {
  margin: 0;
  color: var(--ink);
  font-size: 1.45rem;
  line-height: 1.2;
}

.form-head span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
}

.field-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: #26364b;
  font-weight: 800;
}

.privacy-consent {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 11px;
  align-items: start;
  color: #4a5a70;
  font-size: 0.9rem;
  font-weight: 700;
  line-height: 1.45;
  border: 1px solid transparent;
  border-radius: 8px;
  margin: -3px 0;
  padding: 9px 10px;
  transition: border-color 180ms ease, background 180ms ease, color 180ms ease;
}

.privacy-consent input {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  accent-color: var(--blue);
}

.privacy-consent.is-error {
  border-color: rgba(180, 35, 24, 0.34);
  background: rgba(180, 35, 24, 0.06);
  color: #8f1f14;
}

.privacy-consent a,
.site-footer a {
  color: inherit;
  font-weight: 900;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

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

.form-submit {
  width: 100%;
  margin-top: 2px;
}

.form-submit:disabled {
  cursor: not-allowed;
  transform: none;
  background: linear-gradient(135deg, #8aa6bb 0%, #6f8fa7 100%);
  box-shadow: none;
  opacity: 0.78;
}

.form-submit:disabled::before {
  display: none;
}

.form-status {
  min-height: 24px;
  margin: 0;
  color: var(--blue-dark);
  font-weight: 800;
}

.form-status.is-error {
  color: #b42318;
}

.form-note {
  margin: -4px 0 0;
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.45;
}

.form-note a {
  color: var(--blue-dark);
  font-weight: 900;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.form-modal {
  position: fixed;
  inset: 0;
  z-index: 700;
  display: grid;
  place-items: center;
  background: rgba(9, 22, 36, 0.58);
  padding: 20px;
  backdrop-filter: blur(8px);
}

.form-modal[hidden] {
  display: none;
}

.form-modal-card {
  position: relative;
  width: min(100%, 520px);
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 10px;
  background:
    linear-gradient(135deg, rgba(8, 127, 206, 0.1), rgba(255, 255, 255, 0) 44%),
    #ffffff;
  padding: 34px;
  box-shadow: 0 28px 90px rgba(4, 19, 34, 0.32);
}

.form-modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  color: var(--blue-dark);
  font-size: 1.35rem;
  font-weight: 900;
  cursor: pointer;
}

.form-modal-icon {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  margin-bottom: 18px;
  border-radius: 999px;
  background: var(--blue);
  color: #ffffff;
  box-shadow: 0 16px 32px rgba(8, 127, 206, 0.28);
}

.form-modal-icon::before {
  content: "✓";
  font-size: 1.45rem;
  font-weight: 900;
}

.form-modal-card h2 {
  margin: 0;
  color: var(--ink);
  font-size: 2rem;
  line-height: 1.1;
}

.form-modal-card p:not(.eyebrow) {
  margin: 14px 0 0;
  color: var(--muted);
  line-height: 1.65;
}

.form-modal-action {
  margin-top: 24px;
  min-width: 132px;
}

.mobile-cta {
  display: none;
}

.mobile-cta-icon {
  display: inline-block;
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
  background: currentColor;
}

.site-footer {
  background: #0f1927;
  color: #d8e2ee;
  padding: 34px 0;
}

.legal-page {
  background: #f5f8fb;
  color: var(--ink);
}

.legal-header {
  border-bottom: 1px solid var(--line);
  background: #ffffff;
  padding: 18px 0;
}

.legal-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.legal-header img {
  width: 170px;
  height: auto;
}

.legal-header a:not(.legal-brand),
.legal-content a {
  color: var(--blue-dark);
  font-weight: 900;
}

.legal-content {
  padding: 72px 0;
}

.legal-content .container {
  max-width: 900px;
}

.legal-content h1 {
  margin: 0 0 18px;
  font-size: clamp(2.1rem, 5vw, 3.8rem);
  line-height: 1.03;
}

.legal-content h2 {
  margin: 34px 0 12px;
  font-size: 1.35rem;
}

.legal-content p,
.legal-content li {
  color: #4b5d73;
  line-height: 1.75;
}

.legal-content ul {
  padding-left: 20px;
}

.footer-grid {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 28px;
  align-items: center;
}

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

.footer-grid p {
  margin: 0;
}

.footer-meta {
  color: #9fb0c2;
}

.creator-link {
  font-weight: 700;
  color: #ffffff;
  text-decoration: none;
  transition: color 0.2s ease, text-shadow 0.2s ease;
}

.creator-link:hover {
  color: var(--cyan);
  text-shadow: 0 0 8px rgba(40, 183, 229, 0.4);
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 500;
  display: grid;
  place-items: center;
  background: rgba(7, 16, 28, 0.88);
  padding: 26px;
}

.lightbox[hidden] {
  display: none;
}

.lightbox figure {
  display: grid;
  gap: 12px;
  width: min(980px, 100%);
  margin: 0;
}

.lightbox img {
  width: 100%;
  max-height: 82svh;
  border-radius: 8px;
  background: #ffffff;
  object-fit: contain;
}

.lightbox figcaption {
  color: #ffffff;
  font-weight: 800;
  text-align: center;
}

.lightbox-close {
  position: absolute;
  top: 18px;
  right: 18px;
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
}

@media (max-width: 1020px) {
  .service-grid,
  .proof-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .intro-grid,
  .standard-grid,
  .contact-grid,
  .faq-grid,
  .compare-block {
    grid-template-columns: 1fr;
  }

  .contact-copy,
  .faq-grid .section-heading {
    position: static;
  }

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

@media (max-width: 760px) {
  :root {
    --header-height: 70px;
  }

  body {
    padding-bottom: 74px;
  }

  .container {
    width: min(100% - 28px, 1160px);
  }

  .brand img {
    width: 172px;
  }

  .nav-toggle {
    display: grid;
  }

  .nav-panel {
    position: fixed;
    left: 14px;
    right: 14px;
    top: calc(var(--header-height) + 10px);
    display: grid;
    gap: 4px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #ffffff;
    padding: 12px;
    box-shadow: 0 24px 70px rgba(17, 35, 58, 0.18);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity 160ms ease, transform 160ms ease;
  }

  .nav-open .nav-panel {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .nav-panel a {
    min-height: 46px;
    padding: 11px 12px;
  }

  .nav-panel a::after {
    display: none;
  }

  .nav-call {
    justify-content: center;
    margin-top: 4px;
  }

  .hero {
    min-height: calc(90svh - var(--header-height));
  }

  .hero-shade {
    background:
      linear-gradient(90deg, rgba(255, 255, 255, 0.96) 0%, rgba(255, 255, 255, 0.9) 56%, rgba(255, 255, 255, 0.5) 100%),
      linear-gradient(180deg, rgba(255, 255, 255, 0.22) 0%, rgba(255, 255, 255, 0.92) 100%);
  }

  .hero-bg {
    object-position: 62% center;
  }

  .hero-inner {
    padding: 46px 0 48px;
  }

  .hero h1 {
    font-size: 3.1rem;
    line-height: 1;
  }

  .hero-copy {
    font-size: 1.06rem;
  }

  .hero-actions,
  .field-row {
    display: grid;
    grid-template-columns: 1fr;
  }

  .proof-grid,
  .service-grid,
  .process-grid,
  .gallery-grid,
  .compare-block {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-auto-rows: 250px;
  }

  .gallery-card-large {
    grid-row: span 1;
  }

  .compare-copy {
    padding: 2px 0 2px 18px;
  }

  .compare-copy h3 {
    font-size: 1.78rem;
  }

  .compare-frame {
    aspect-ratio: 4 / 3;
  }

  .compare-tags {
    inset: 12px 12px auto;
  }

  .compare-tags span {
    padding: 7px 10px;
    font-size: 0.8rem;
  }

  .compare-divider span {
    width: 44px;
    height: 44px;
  }

  .proof-grid div,
  .proof-grid div:last-child {
    min-height: auto;
    border-right: 1px solid var(--line);
  }

  .section,
  .contact-section {
    padding: 66px 0;
  }

  .section h2,
  .contact-section h2 {
    font-size: 2rem;
  }

  .quality-panel > div {
    grid-template-columns: 48px 1fr;
    padding: 18px;
  }

  .panel-number {
    width: 40px;
    height: 40px;
  }

  .standard-media,
  .standard-media img {
    min-height: 330px;
  }

  .process-grid article {
    min-height: auto;
  }

  .contact-form {
    padding: 20px;
  }

  .contact-phone {
    width: 100%;
  }

  .quote-list li {
    grid-template-columns: 1fr;
    gap: 2px;
  }

  .form-head h3 {
    font-size: 1.28rem;
  }

  .faq-list summary {
    padding-right: 52px;
  }

  .mobile-cta {
    position: fixed;
    left: 10px;
    right: 10px;
    bottom: 10px;
    z-index: 450;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    border: 1px solid rgba(7, 59, 105, 0.16);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.92);
    padding: 8px;
    box-shadow: 0 18px 48px rgba(17, 35, 58, 0.22);
    backdrop-filter: blur(12px);
  }

  .mobile-cta a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 48px;
    border-radius: 6px;
    background: var(--blue-dark);
    color: #ffffff;
    font-weight: 900;
  }

  .mobile-cta a:first-child {
    background: var(--blue);
  }
}

@media (max-width: 420px) {
  .hero h1 {
    font-size: 2.58rem;
  }

  .button {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
