:root {
  --black: #050505;
  --graphite: #111214;
  --charcoal: #1b1d21;
  --ink: #111318;
  --soft-black: #25282d;
  --paper: #ffffff;
  --surface: #f5f6f7;
  --surface-strong: #eceff2;
  --steel: #8c929b;
  --silver: #d9dde3;
  --white: #ffffff;
  --muted: #5f6670;
  --line: rgba(17, 19, 24, 0.14);
  --brand-deep: #050506;
  --brand-panel: #111214;
  --brand-chrome: #c8ccd2;
  --brand-steel: #7f858e;
  --brand-frost: #f1f2f4;
  --metal-dark: linear-gradient(135deg, #050506 0%, #17191d 42%, #3b4048 68%, #090a0b 100%);
  --metal-soft: linear-gradient(135deg, #ffffff 0%, #d8dbe0 34%, #9da3ab 58%, #f7f8f9 100%);
  --metal: linear-gradient(135deg, #ffffff 0%, #aeb4bd 30%, #f6f7f8 48%, #707780 72%, #ffffff 100%);
  --shadow: 0 24px 70px rgba(17, 19, 24, 0.14);
  --container: 1180px;
  --container-gutter: clamp(18px, 4vw, 48px);
  --section-y: 40px;
  --header-h: 108px;
  --heading-weight: 800;
  --heading-line-tight: 1.04;
  --heading-line: 1.12;
  --heading-h1: 4.1rem;
  --heading-h2: 2.85rem;
  --heading-h3: 1.55rem;
  --heading-h4: 1.2rem;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Quicksand", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.5;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
input,
textarea {
  font: inherit;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  height: var(--header-h);
  display: grid;
  grid-template-columns: minmax(120px, 1fr) auto minmax(190px, 1fr);
  gap: 12px;
  align-items: center;
  padding: 0 clamp(18px, 4vw, 56px);
  background: rgba(7, 8, 9, 0.42);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  pointer-events: none;
}

.site-header.scrolled {
  background: rgba(7, 8, 9, 0.14);
}

.nav-pill,
.header-action {
  pointer-events: auto;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(17, 19, 24, 0.12);
  box-shadow: 0 18px 44px rgba(17, 19, 24, 0.12);
  backdrop-filter: blur(18px);
}

.site-header.scrolled .nav-pill:not(.brand),
.site-header.scrolled .header-action {
  background: rgba(255, 255, 255, 0.58);
  border-color: rgba(17, 19, 24, 0.08);
  box-shadow: 0 18px 44px rgba(17, 19, 24, 0.08);
  backdrop-filter: blur(22px);
}

.brand {
  display: inline-flex;
  align-items: center;
  align-self: center;
  justify-self: start;
  min-height: 100px;
  padding: 0;
  border-radius: 999px;
  min-width: max-content;
}

.brand.nav-pill {
  background: transparent;
  border-color: transparent;
  box-shadow: none;
  backdrop-filter: none;
}

.site-header .brand-logo {
  display: block;
  width: auto;
  height: 92px;
  object-fit: contain;
  filter: drop-shadow(0 12px 22px rgba(0, 0, 0, 0.18));
  transition: transform 220ms ease, filter 220ms ease;
  animation: logoBreath 4.8s ease-in-out infinite;
}

.site-header .brand:hover .brand-logo,
.site-header.scrolled .brand-logo {
  transform: scale(1.16);
  filter: drop-shadow(0 20px 34px rgba(0, 0, 0, 0.27));
}

@keyframes logoBreath {
  0%,
  100% {
    filter: drop-shadow(0 12px 22px rgba(0, 0, 0, 0.18));
  }

  50% {
    filter: drop-shadow(0 16px 30px rgba(0, 0, 0, 0.25));
  }
}

.main-nav {
  position: relative;
  display: flex;
  align-self: center;
  align-items: center;
  justify-content: center;
  gap: 4px;
  min-height: 50px;
  padding: 6px;
  border-radius: 999px;
  color: var(--soft-black);
  font-size: 0.93rem;
  font-weight: 700;
  transition: background 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.main-nav a,
.nav-item > a {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 16px;
  border-radius: 999px;
  transition: color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.main-nav > a:hover,
.nav-item:hover > a,
.nav-item:focus-within > a,
.nav-item.is-open > a {
  color: #fff;
  background: var(--brand-panel);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.nav-item {
  position: static;
}

.dropdown-menu {
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  z-index: 30;
  width: min(930px, calc(100vw - 40px));
  padding: 16px 16px 28px;
  background: #fff;
  border: 1px solid rgba(17, 19, 24, 0.12);
  border-radius: 18px;
  box-shadow: 0 30px 80px rgba(17, 19, 24, 0.22);
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
  transform: translate(-50%, -8px);
  transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
}

.compact-mega {
  width: min(760px, calc(100vw - 40px));
}

.model-mega {
  width: min(1040px, calc(100vw - 40px));
}

.mini-mega {
  width: min(340px, calc(100vw - 40px));
}

.mega-feature {
  display: grid !important;
  grid-template-columns: 72px minmax(0, 1fr);
  gap: 16px;
  align-items: center;
  min-height: 96px !important;
  margin-bottom: 24px;
  padding: 18px !important;
  color: #fff !important;
  background: var(--metal-dark);
  border-radius: 8px !important;
}

.mega-art {
  display: block;
  width: 64px;
  height: 44px;
  overflow: hidden;
  background:
    radial-gradient(circle at 22% 35%, rgba(255, 255, 255, 0.8) 0 2px, transparent 3px),
    repeating-linear-gradient(28deg, rgba(255, 255, 255, 0.74) 0 2px, transparent 2px 8px),
    linear-gradient(135deg, #8c929b, #262a30);
  border-radius: 4px;
}

.mega-feature strong,
.mega-feature small {
  display: block;
  grid-column: 2;
}

.mega-feature strong {
  font-size: 1.08rem;
}

.mega-feature small {
  margin-top: 3px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.82rem;
}

.mega-columns {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(24px, 5vw, 64px);
}

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

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

.mega-columns p {
  margin: 0 0 12px;
  color: var(--steel);
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.model-mega .mega-columns p:not(:first-child) {
  margin-top: 18px;
}

.mega-columns a {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 42px;
  padding: 6px 0 !important;
  color: var(--ink);
  border-radius: 0;
  font-weight: 800;
}

.dropdown-menu a {
  color: var(--ink);
}

.mega-columns a span {
  display: grid;
  width: 24px;
  height: 24px;
  place-items: center;
  color: var(--steel);
  border: 1px solid rgba(17, 19, 24, 0.16);
  border-radius: 6px;
  font-size: 0.66rem;
  font-weight: 900;
}

.mega-columns a:hover {
  color: var(--brand-panel);
  background: transparent;
  transform: translateX(3px);
}

.nav-item.is-open .dropdown-menu {
  opacity: 1;
  pointer-events: auto;
  visibility: visible;
  transform: translate(-50%, 0);
}

.header-actions {
  display: flex;
  align-self: center;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
  pointer-events: auto;
}

.header-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 20px;
  border-radius: 999px;
  color: var(--brand-panel);
  font-weight: 800;
}

.header-action-primary {
  color: #fff;
  background: var(--brand-panel);
  border-color: rgba(255, 255, 255, 0.16);
}

.site-header.scrolled .header-action-primary {
  color: var(--brand-panel);
}

.menu-toggle {
  display: none;
}

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: end;
  padding: calc(var(--header-h) + 70px) clamp(20px, 6vw, 96px) 56px;
  overflow: hidden;
}

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

.hero-bg {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.94) 0%, rgba(255, 255, 255, 0.78) 42%, rgba(255, 255, 255, 0.12) 100%),
    url("https://images.unsplash.com/photo-1750210506021-05f1f5bdad23?auto=format&fit=crop&w=1800&q=88") center / cover;
  transform: scale(1.04);
  animation: heroDrift 14s ease-in-out infinite alternate;
}

.hero-overlay {
  background:
    radial-gradient(circle at 25% 28%, rgba(255, 255, 255, 0.7), transparent 32%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), #ffffff 96%);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(690px, 100%);
  max-width: 100%;
  min-width: 0;
  padding-bottom: 72px;
}

.eyebrow,
.section-kicker {
  margin: 0 0 14px;
  color: var(--soft-black);
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0;
}

h1,
h2,
h3,
h4,
p {
  margin-top: 0;
}

h1,
h2,
h3,
h4 {
  margin-inline: 0;
  color: var(--ink);
  font-weight: var(--heading-weight);
  letter-spacing: 0;
  text-wrap: balance;
  overflow-wrap: break-word;
}

h1 {
  margin-bottom: 20px;
  font-size: var(--heading-h1);
  line-height: var(--heading-line-tight);
  text-transform: none;
}

h2 {
  margin-bottom: 14px;
  font-size: var(--heading-h2);
  line-height: var(--heading-line-tight);
}

h3 {
  margin-bottom: 12px;
  font-size: var(--heading-h3);
  line-height: var(--heading-line);
}

h4 {
  margin-bottom: 10px;
  font-size: var(--heading-h4);
  line-height: var(--heading-line);
}

.hero-copy {
  max-width: 560px;
  margin-bottom: 34px;
  color: var(--muted);
  font-size: clamp(1.05rem, 1.7vw, 1.28rem);
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  border-radius: 4px;
  border: 1px solid var(--line);
  font-weight: 800;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  color: var(--black);
  background: var(--metal);
  border-color: rgba(17, 19, 24, 0.22);
}

.btn-ghost {
  background: rgba(17, 19, 24, 0.04);
}

.hero-metrics {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  width: min(780px, 100%);
  max-width: 100%;
  min-width: 0;
  border-top: 1px solid var(--line);
}

.hero-metrics div {
  padding: 24px 22px 0 0;
}

.hero-metrics strong {
  display: block;
  font-size: clamp(1.65rem, 3vw, 2.7rem);
  line-height: 1;
}

.hero-metrics span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.9rem;
}

.section {
  width: min(var(--container), calc(100% - (var(--container-gutter) * 2)));
  margin-inline: auto;
  padding: var(--section-y) 0;
}

.intro-grid,
.section-head {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
  gap: clamp(28px, 6vw, 96px);
  align-items: end;
}

.intro p,
.section-head p,
.feature-copy p,
.cta p,
.timeline p,
.service-item p {
  color: var(--muted);
}

.intro p,
.section-head p,
.feature-copy p {
  margin-bottom: 0;
  font-size: 1.05rem;
}

.services {
  background: linear-gradient(180deg, var(--paper), var(--surface));
}

.service-list {
  margin-top: 70px;
  border-top: 1px solid var(--line);
}

.service-item {
  display: grid;
  grid-template-columns: 90px minmax(220px, 0.46fr) minmax(280px, 1fr);
  gap: 28px;
  align-items: baseline;
  padding: 34px 0;
  border-bottom: 1px solid var(--line);
}

.service-item span,
.timeline span,
.project-card span {
  color: var(--steel);
  font-weight: 900;
}

.service-item p {
  margin-bottom: 0;
}

.feature-band {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(320px, 0.88fr);
  min-height: 720px;
  background: var(--surface);
}

.feature-image {
  min-height: 520px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.22)),
    url("https://images.pexels.com/photos/17455632/pexels-photo-17455632.jpeg?auto=compress&cs=tinysrgb&w=1400") center / cover;
}

.feature-copy {
  align-self: center;
  padding: clamp(44px, 7vw, 92px);
}

.feature-copy h2 {
  margin-bottom: 24px;
}

.text-link {
  display: inline-flex;
  margin-top: 28px;
  color: var(--ink);
  font-weight: 900;
  border-bottom: 1px solid var(--ink);
}

.process {
  background: var(--paper);
}

.timeline {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  margin: 72px 0 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line);
}

.timeline li {
  min-height: 260px;
  padding: 32px 28px 0 0;
  border-right: 1px solid var(--line);
}

.timeline li:last-child {
  border-right: 0;
}

.timeline strong {
  display: block;
  margin: 34px 0 12px;
  font-size: 1.18rem;
}

.projects {
  padding-bottom: var(--section-y);
}

.project-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-self: end;
}

.project-tabs button {
  min-height: 42px;
  padding: 0 16px;
  color: var(--soft-black);
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 999px;
  cursor: pointer;
}

.project-tabs button.active {
  color: var(--black);
  background: var(--metal);
}

.project-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr 1fr;
  gap: 18px;
  padding: 0;
}

.project-card {
  position: relative;
  min-height: 540px;
  overflow: hidden;
  background: var(--surface-strong);
}

.project-card:nth-child(2) {
  margin-top: 64px;
}

.project-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.82;
  transition: transform 600ms ease, opacity 220ms ease;
}

.project-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 28%, rgba(0, 0, 0, 0.78));
}

.project-card div {
  position: absolute;
  z-index: 1;
  left: 28px;
  right: 28px;
  bottom: 28px;
}

.project-card:hover img {
  opacity: 1;
  transform: scale(1.05);
}

.project-card.is-hidden {
  display: none;
}

.cta {
  background:
    linear-gradient(180deg, rgba(17, 19, 24, 0.04), transparent),
    var(--paper);
}

.cta-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.65fr);
  gap: clamp(34px, 6vw, 86px);
  align-items: start;
  padding: clamp(30px, 6vw, 76px);
  border: 1px solid var(--line);
  background: linear-gradient(135deg, #ffffff, #f3f5f7);
  box-shadow: var(--shadow);
}

.contact-form {
  display: grid;
  gap: 16px;
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: var(--soft-black);
  font-size: 0.88rem;
  font-weight: 800;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  color: var(--ink);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 15px 16px;
  outline: 0;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: rgba(17, 19, 24, 0.46);
}

.contact-form textarea {
  resize: vertical;
}

.site-footer {
  position: relative;
  display: grid;
  gap: 54px;
  padding: 58px 0 30px;
  color: rgba(255, 255, 255, 0.78);
  background: #050606;
}

.footer-inner {
  display: grid;
  grid-template-columns: minmax(260px, 1.1fr) minmax(230px, 0.95fr) minmax(210px, 0.9fr) minmax(170px, 0.72fr) minmax(180px, 0.72fr);
  gap: clamp(24px, 3vw, 48px);
  align-items: start;
  width: min(var(--container), calc(100% - (var(--container-gutter) * 2)));
  margin-inline: auto;
}

.footer-about {
  display: grid;
  gap: 14px;
}

.footer-logo {
  display: inline-flex;
  width: max-content;
  margin-bottom: 4px;
}

.site-footer .brand-logo {
  height: 64px;
  filter: drop-shadow(0 10px 18px rgba(255, 255, 255, 0.08));
}

.site-footer h2,
.site-footer h3 {
  margin: 0;
  color: #fff;
  font-size: 1.05rem;
  line-height: 1.2;
  text-transform: uppercase;
}

.site-footer h2 {
  font-size: 1.12rem;
}

.site-footer p {
  margin: 0;
}

.footer-about p {
  max-width: 330px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 1.02rem;
  line-height: 1.62;
}

.footer-about strong,
.footer-accent {
  color: #fff;
  font-weight: 900;
}

.footer-column {
  display: grid;
  gap: 18px;
  align-content: start;
}

.footer-column a,
.footer-column span,
.footer-contact address span {
  color: rgba(255, 255, 255, 0.82);
  font-size: 1rem;
  line-height: 1.35;
}

.footer-column a {
  transition: color 160ms ease, transform 160ms ease;
}

.footer-column a:hover {
  color: #fff;
  transform: translateX(3px);
}

.footer-contact address {
  display: grid;
  gap: 8px;
  margin: 0;
  font-style: normal;
}

.footer-contact address span,
.footer-accent {
  color: #f2f3f5;
}

.footer-social span {
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  color: #fff;
  font-size: 1.15rem;
  font-weight: 800;
}

.social-icon {
  display: grid;
  width: 28px;
  height: 28px;
  color: #fff;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.social-icon path[fill],
.social-icon circle[fill],
.social-icon rect[fill] {
  stroke: none;
}

.footer-bottom {
  display: grid;
  grid-template-columns: minmax(220px, 1fr) auto;
  gap: 28px;
  align-items: center;
  width: min(var(--container), calc(100% - (var(--container-gutter) * 2)));
  margin-inline: auto;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.68);
}

.back-to-top {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  color: #050606;
  background: var(--metal);
  border-radius: 2px;
  font-size: 1.45rem;
  font-weight: 900;
}

.page-main {
  padding-top: 0;
}

.page-hero {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: clamp(500px, 48vw, 640px);
  padding: calc(var(--header-h) + clamp(110px, 11vw, 148px)) 0 clamp(88px, 9vw, 122px);
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(5, 5, 6, 0.94), rgba(27, 29, 33, 0.86) 52%, rgba(120, 126, 136, 0.72)),
    var(--page-image, url("https://images.unsplash.com/photo-1750210506021-05f1f5bdad23?auto=format&fit=crop&w=1800&q=88")) center / cover;
  border-bottom: 1px solid var(--line);
}

.page-hero::before,
.page-hero::after,
.service-hero::before,
.service-hero::after {
  content: "";
  position: absolute;
  z-index: 1;
  top: 0;
  bottom: 0;
  width: 1px;
  background: rgba(255, 255, 255, 0.16);
}

.page-hero::before,
.service-hero::before {
  left: max(var(--container-gutter), calc((100% - var(--container)) / 2));
}

.page-hero::after,
.service-hero::after {
  right: max(var(--container-gutter), calc((100% - var(--container)) / 2));
}

.page-hero-inner::before,
.page-hero-inner::after,
.service-hero-copy::before,
.service-hero-copy::after {
  content: "";
  position: absolute;
  width: 14px;
  height: 118px;
  background: var(--brand-chrome);
}

.page-hero-inner::before,
.service-hero-copy::before {
  left: calc((100vw - min(var(--container), calc(100vw - (var(--container-gutter) * 2)))) / -2);
  bottom: -44px;
}

.page-hero-inner::after,
.service-hero-copy::after {
  right: calc((100vw - min(var(--container), calc(100vw - (var(--container-gutter) * 2)))) / -2);
  top: -38px;
}

.page-hero-inner {
  position: relative;
  z-index: 2;
  width: min(var(--container), calc(100% - (var(--container-gutter) * 2)));
  margin-inline: auto;
  text-align: center;
}

.page-hero h1 {
  max-width: 900px;
  margin-inline: auto;
  margin-bottom: 22px;
  color: #fff;
  font-size: clamp(2.45rem, 5.2vw, 5.4rem);
  line-height: 1;
  text-transform: none;
}

.page-hero .eyebrow {
  color: rgba(255, 255, 255, 0.72);
}

.page-hero p {
  max-width: 720px;
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.72);
  font-size: clamp(1.05rem, 1.7vw, 1.25rem);
}

.breadcrumb {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 18px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.9rem;
}

.breadcrumb a {
  color: #fff;
  font-weight: 800;
}

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

.content-card,
.text-panel,
.faq-item {
  border: 1px solid var(--line);
  background: #fff;
  box-shadow: 0 18px 50px rgba(17, 19, 24, 0.06);
}

.content-card {
  display: flex;
  flex-direction: column;
  min-height: 320px;
  overflow: hidden;
}

.content-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.content-card-body {
  display: grid;
  gap: 12px;
  padding: 26px;
}

.content-card h2,
.content-card h3 {
  margin-bottom: 0;
  font-size: clamp(1.3rem, 2vw, 1.8rem);
  line-height: 1.12;
}

.content-card p,
.text-panel p,
.faq-item p,
.spec-list p {
  margin-bottom: 0;
  color: var(--muted);
}

.text-panel {
  padding: clamp(26px, 4vw, 46px);
}

.two-col {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.8fr);
  gap: clamp(24px, 5vw, 72px);
  align-items: start;
}

.about-intro {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.72fr);
  gap: clamp(22px, 4vw, 56px);
  align-items: stretch;
}

.about-intro .text-panel {
  display: grid;
  gap: 16px;
}

.about-stats {
  display: grid;
  gap: 14px;
}

.about-stats div {
  display: grid;
  gap: 8px;
  min-height: 130px;
  padding: 26px;
  color: #fff;
  background: var(--metal-dark);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
}

.about-stats strong {
  font-size: clamp(2.3rem, 5vw, 4rem);
  line-height: 0.95;
}

.about-stats span {
  color: rgba(255, 255, 255, 0.74);
  font-weight: 800;
}

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

.about-card-grid .content-card {
  min-height: 240px;
}

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

.spec-list li {
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

.spec-list strong {
  display: block;
  margin-bottom: 6px;
}

.price-table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
}

.price-table th,
.price-table td {
  padding: 18px;
  border: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.price-table th {
  background: var(--surface);
}

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

.faq-item {
  padding: 24px;
}

.faq-item h2,
.faq-item h3 {
  margin-bottom: 10px;
  font-size: 1.25rem;
}

.page-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.model-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 26px;
}

.model-nav a {
  padding: 10px 14px;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  font-weight: 800;
  background: rgba(255, 255, 255, 0.08);
}

.home-page {
  background: #fff;
}

.home-page .main-nav {
  color: var(--soft-black);
}

.landing-main {
  background: #fff;
}

.lp-hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(180px, 0.72fr) minmax(340px, 1.35fr) minmax(180px, 0.72fr);
  gap: clamp(18px, 4vw, 72px);
  align-items: start;
  min-height: 640px;
  padding: calc(var(--header-h) + 28px) clamp(18px, 5vw, 70px) 34px;
  color: #fff;
  background: var(--metal-dark);
  clip-path: polygon(0 0, 100% 0, 100% 92%, 79% 92%, 76% 100%, 25% 100%, 22% 92%, 0 92%);
}

.lp-hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 160px;
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.5));
  pointer-events: none;
}

.lp-hero-content {
  position: relative;
  z-index: 1;
  align-self: center;
  padding-top: 78px;
  padding-bottom: 74px;
  text-align: center;
}

.lp-eyebrow,
.lp-kicker {
  margin: 0 0 14px;
  color: var(--brand-chrome);
  font-size: 0.78rem;
  font-weight: 900;
}

.lp-hero h1 {
  margin: 0 auto 18px;
  max-width: 650px;
  color: #fff;
  font-size: clamp(2.3rem, 4.6vw, 4.5rem);
  line-height: 0.98;
  text-transform: none;
}

.lp-hero p {
  max-width: 600px;
  margin: 0 auto 24px;
  color: rgba(255, 255, 255, 0.78);
}

.lp-call,
.lp-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 22px;
  color: var(--black);
  background: var(--metal);
  border: 1px solid rgba(255, 255, 255, 0.38);
  border-radius: 999px;
  font-weight: 900;
  box-shadow: 0 14px 30px rgba(17, 19, 24, 0.24);
}

.lp-hero-image {
  position: relative;
  z-index: 1;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 24px 70px rgba(3, 10, 38, 0.28);
}

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

.lp-hero-image-left {
  margin-top: 14px;
}

.lp-hero-image-right {
  margin-top: 14px;
}

.lp-hero-badges {
  position: absolute;
  z-index: 2;
  left: 50%;
  bottom: 28px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  width: min(720px, calc(100% - 80px));
  transform: translateX(-50%);
}

.lp-hero-badges div {
  display: grid;
  gap: 4px;
  min-width: 0;
  color: #fff;
}

.lp-hero-badges strong {
  font-size: 0.9rem;
}

.lp-hero-badges span {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.78rem;
}

.lp-split {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(340px, 1fr);
  gap: clamp(32px, 8vw, 120px);
  align-items: center;
}

.lp-copy-block h2,
.lp-section-title h2,
.lp-panel-head h2,
.lp-steps h2,
.lp-faq-title h2,
.lp-bottom-cta h2 {
  font-size: clamp(2rem, 3vw, 3.2rem);
  line-height: 1.02;
  text-transform: none;
}

.lp-copy-block p,
.lp-section-title p,
.lp-panel-head p,
.lp-steps p,
.lp-review p,
.lp-bottom-cta p {
  color: var(--muted);
}

.lp-checks {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 22px;
  margin: 28px 0;
}

.lp-checks span {
  position: relative;
  padding-left: 20px;
  color: var(--graphite);
  font-weight: 800;
}

.lp-checks span::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.68em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--brand-steel);
}

.lp-hex-image {
  justify-self: center;
  width: min(470px, 100%);
  clip-path: polygon(50% 0, 100% 24%, 100% 76%, 50% 100%, 0 76%, 0 24%);
  background: var(--metal-soft);
  padding: 20px;
}

.lp-hex-image img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  clip-path: inherit;
}

.lp-section-title {
  width: min(620px, 100%);
  margin: 0 auto 54px;
  text-align: center;
}

.lp-service-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 28px;
  width: min(1040px, 100%);
  margin: 0 auto;
}

.lp-service {
  display: grid;
  gap: 10px;
  padding: 4px;
}

.lp-service span {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  color: #fff;
  background: var(--metal-dark);
  border-radius: 50%;
  font-size: 0.8rem;
  font-weight: 900;
}

.lp-service h3 {
  margin-bottom: 0;
  font-size: 1.05rem;
}

.lp-service p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.lp-service-cta {
  display: grid;
  align-content: center;
  gap: 14px;
  min-height: 150px;
  padding: 22px;
  color: #fff;
  background: var(--metal-dark);
  border-radius: 14px;
}

.lp-service-cta p {
  margin: 0;
  font-weight: 900;
}

.lp-service-cta a {
  justify-self: start;
  padding: 10px 18px;
  color: var(--brand-panel);
  background: #fff;
  border-radius: 999px;
  font-weight: 900;
}

.lp-dark-panel {
  position: relative;
  width: 100%;
  margin: 0 auto;
  padding: clamp(34px, 6vw, 72px);
  color: #fff;
  background: var(--metal-dark);
  border-radius: 10px;
  clip-path: polygon(0 0, 100% 0, 100% 88%, 98% 88%, 98% 100%, 2% 100%, 2% 88%, 0 88%);
}

.lp-panel-head {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.8fr);
  gap: 40px;
  margin-bottom: 48px;
}

.lp-panel-head h2 {
  color: #fff;
}

.lp-panel-head p,
.lp-feature-grid p {
  color: rgba(255, 255, 255, 0.7);
}

.lp-feature-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px 64px;
}

.lp-feature-grid div {
  display: grid;
  gap: 8px;
}

.lp-feature-grid strong {
  color: #fff;
  font-size: 1.05rem;
}

.lp-how {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(0, 1fr);
  gap: clamp(34px, 7vw, 110px);
  align-items: center;
}

.lp-worker-image img {
  width: min(420px, 100%);
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 18px;
}

.lp-steps ol {
  display: grid;
  gap: 24px;
  margin: 30px 0 0;
  padding: 0;
  list-style: none;
}

.lp-steps li {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  gap: 18px;
}

.lp-steps li span {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  color: var(--brand-panel);
  background: var(--brand-frost);
  border-radius: 50%;
  font-weight: 900;
}

.lp-steps strong {
  display: block;
  margin-bottom: 6px;
}

.lp-review {
  text-align: center;
}

.lp-review blockquote {
  max-width: 720px;
  margin: 24px auto 0;
  color: var(--muted);
  font-size: 1.05rem;
}

.lp-blog-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
  width: min(980px, 100%);
  margin: 0 auto;
}

.lp-blog-card {
  display: grid;
  gap: 12px;
}

.lp-blog-card img {
  width: 100%;
  height: 185px;
  object-fit: cover;
  border-radius: 10px;
}

.lp-blog-card span {
  color: var(--brand-steel);
  font-size: 0.78rem;
  font-weight: 900;
}

.lp-blog-card h3 {
  margin: 0;
  font-size: 1.1rem;
}

.lp-blog-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.blog-post {
  width: min(900px, calc(100% - (var(--container-gutter) * 2)));
  margin: 0 auto;
  padding: var(--section-y) 0;
}

.blog-post-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 24px;
  color: var(--brand-steel);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.blog-post article {
  display: grid;
  gap: 22px;
}

.blog-post article > p {
  margin: 0;
  color: var(--muted);
  font-size: 1.04rem;
  line-height: 1.85;
}

.blog-post h2 {
  margin: 18px 0 0;
}

.blog-post ul {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 22px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 10px;
  list-style-position: inside;
}

.blog-post li {
  color: var(--muted);
  line-height: 1.7;
}

.lp-faq {
  display: grid;
  grid-template-columns: minmax(220px, 0.55fr) minmax(0, 1fr);
  gap: clamp(30px, 7vw, 100px);
}

.lp-faq-title a {
  display: inline-flex;
  margin-top: 16px;
  color: var(--brand-steel);
  font-weight: 900;
}

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

.lp-faq-list details {
  padding: 18px 20px;
  background: #f6f8fb;
  border-radius: 8px;
}

.lp-faq-list summary {
  cursor: pointer;
  font-weight: 900;
}

.lp-faq-list p {
  margin: 12px 0 0;
  color: var(--muted);
}

.lp-bottom-cta {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(260px, 0.75fr);
  gap: clamp(24px, 6vw, 80px);
  align-items: center;
  width: min(var(--container), calc(100% - (var(--container-gutter) * 2)));
  margin: 0 auto 48px;
  padding: var(--section-y) clamp(20px, 6vw, 96px);
  color: #fff;
  background: var(--metal-dark);
  border-radius: 10px;
}

.lp-bottom-cta h2 {
  max-width: 560px;
  color: #fff;
}

.lp-bottom-cta p {
  color: rgba(255, 255, 255, 0.72);
}

.lp-bottom-cta img {
  width: 100%;
  max-height: 330px;
  object-fit: cover;
  border-radius: 18px;
}

.service-page {
  background: #fff;
}

.service-main {
  width: 100%;
  margin: 0;
  padding-top: 0;
  overflow: hidden;
  background: #fff;
}

.service-main h1,
.service-main h2 {
  text-transform: none;
  letter-spacing: 0;
}

.service-main h1 {
  max-width: 560px;
  font-size: clamp(2.15rem, 4.2vw, 4.6rem);
  line-height: 0.98;
}

.service-main h2 {
  font-size: clamp(1.8rem, 2.7vw, 3.05rem);
  line-height: 1.03;
}

.service-main p {
  color: var(--muted);
}

.service-hero {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: clamp(500px, 48vw, 640px);
  width: 100%;
  margin-inline: auto;
  padding: calc(var(--header-h) + clamp(110px, 11vw, 148px)) 0 clamp(88px, 9vw, 122px);
  overflow: hidden;
  background: var(--metal-dark);
  border-bottom: 1px solid var(--line);
}

.service-hero .breadcrumb,
.service-hero .breadcrumb a {
  color: rgba(255, 255, 255, 0.72);
}

.service-hero .breadcrumb a {
  color: #fff;
}

.service-hero-copy {
  position: relative;
  z-index: 2;
  display: grid;
  justify-items: center;
  gap: 18px;
  width: min(900px, calc(100% - (var(--container-gutter) * 2)));
  max-width: 900px;
  margin-inline: auto;
  padding: 0;
  text-align: center;
}

.service-hero-copy .lp-eyebrow,
.service-hero-copy h1,
.service-hero-copy p {
  color: #fff;
}

.service-hero-copy h1 {
  max-width: 900px;
  margin-inline: auto;
  text-transform: none;
}

.service-hero-copy p:not(.lp-eyebrow) {
  max-width: 740px;
  color: rgba(255, 255, 255, 0.72);
}

.service-hero img {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0;
  opacity: 0.22;
  filter: grayscale(1);
}

.service-blue-band {
  width: min(var(--container), calc(100% - (var(--container-gutter) * 2)));
  margin-inline: auto;
  padding: var(--section-y) clamp(24px, 6.5vw, 96px);
  color: #fff;
  background: var(--metal-dark);
  border-radius: 10px;
}

.vip-intro-band {
  margin-top: 48px;
}

.service-band-top {
  display: grid;
  grid-template-columns: minmax(180px, 0.55fr) minmax(0, 1fr);
  gap: clamp(30px, 6vw, 86px);
  align-items: center;
}

.service-band-top h2,
.service-band-top p {
  color: #fff;
}

.service-band-top p {
  color: rgba(255, 255, 255, 0.72);
}

.service-scope-card {
  position: relative;
  display: grid;
  gap: 12px;
  align-content: center;
  min-height: 190px;
  padding: 28px;
  overflow: hidden;
  color: #fff;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.035)),
    rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12), 0 18px 34px rgba(0, 0, 0, 0.18);
}

.service-scope-card::before {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 6px;
  pointer-events: none;
}

.service-scope-card::after {
  content: "";
  position: absolute;
  width: 160px;
  height: 160px;
  right: -54px;
  bottom: -68px;
  background: radial-gradient(circle, rgba(204, 168, 92, 0.28), transparent 68%);
  pointer-events: none;
}

.service-scope-card span {
  position: relative;
  z-index: 1;
  display: inline-grid;
  place-items: center;
  width: 46px;
  height: 46px;
  color: var(--brand-panel);
  font-size: 0.88rem;
  font-weight: 800;
  background: var(--metal);
  border-radius: 8px;
}

.service-scope-card strong {
  position: relative;
  z-index: 1;
  color: #fff;
  font-size: clamp(1.25rem, 2vw, 1.55rem);
  line-height: 1.12;
}

.service-scope-card small {
  position: relative;
  z-index: 1;
  max-width: 26ch;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.96rem;
  line-height: 1.55;
}

.service-feature-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 46px;
}

.service-feature-cards a {
  position: relative;
  display: grid;
  gap: 8px;
  min-height: 118px;
  padding: 18px 42px 18px 18px;
  color: var(--ink);
  background: #fff;
  border-radius: 8px;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.service-feature-cards a::after {
  content: ">";
  position: absolute;
  top: 18px;
  right: 16px;
  display: grid;
  width: 22px;
  height: 22px;
  place-items: center;
  color: #fff;
  background: linear-gradient(135deg, #dfe2e6, #7f858e 58%, #f7f8f9);
  border-radius: 50%;
  font-size: 0.8rem;
  font-weight: 900;
}

.service-feature-cards a:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.18);
}

.service-feature-cards strong {
  font-size: 1.02rem;
}

.service-feature-cards span {
  color: var(--muted);
  font-size: 0.9rem;
}

.service-directory {
  width: min(var(--container), calc(100% - (var(--container-gutter) * 2)));
  margin-inline: auto;
  padding: var(--section-y) 0;
}

.service-directory-head {
  display: grid;
  gap: 12px;
  max-width: 760px;
  margin-bottom: 28px;
}

.service-directory-head h2,
.service-directory-head p {
  margin-bottom: 0;
}

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

.service-directory-card {
  display: grid;
  align-content: start;
  gap: 22px;
  min-height: 100%;
  padding: 24px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 10px;
  box-shadow: 0 18px 50px rgba(17, 19, 24, 0.06);
}

.service-directory-card-dark {
  color: #fff;
  background: var(--metal-dark);
}

.service-directory-card-head {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  gap: 14px;
  align-items: start;
}

.service-directory-card-head > span {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  color: #fff;
  background: var(--brand-panel);
  border-radius: 50%;
  font-size: 0.86rem;
  font-weight: 900;
}

.service-directory-card-dark .service-directory-card-head > span {
  color: var(--ink);
  background: var(--metal-soft);
}

.service-directory-card h3 {
  margin-bottom: 6px;
}

.service-directory-card p {
  margin-bottom: 0;
  color: var(--muted);
}

.service-directory-card-dark h3,
.service-directory-card-dark p {
  color: #fff;
}

.service-directory-card-dark p,
.service-directory-card-dark small {
  color: rgba(255, 255, 255, 0.72);
}

.service-directory-links {
  display: grid;
  gap: 10px;
}

.service-directory-links a {
  position: relative;
  display: grid;
  gap: 4px;
  min-height: 72px;
  padding: 14px 42px 14px 14px;
  background: var(--surface);
  border: 1px solid transparent;
  border-radius: 8px;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.service-directory-card-dark .service-directory-links a {
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.1);
}

.service-directory-links a::after {
  content: ">";
  position: absolute;
  top: 16px;
  right: 14px;
  color: var(--brand-steel);
  font-weight: 900;
}

.service-directory-links a:hover {
  border-color: rgba(17, 19, 24, 0.2);
  box-shadow: 0 14px 30px rgba(17, 19, 24, 0.08);
  transform: translateY(-2px);
}

.service-directory-card-dark .service-directory-links a:hover {
  border-color: rgba(255, 255, 255, 0.28);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.2);
}

.service-directory-links small {
  color: var(--muted);
  line-height: 1.35;
}

.service-split,
.service-highlight,
.service-upgrade,
.service-testimonials,
.service-quote {
  width: min(var(--container), calc(100% - (var(--container-gutter) * 2)));
  margin-inline: auto;
  padding: var(--section-y) clamp(24px, 6.5vw, 96px);
}

.service-split {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(340px, 1fr);
  gap: clamp(32px, 7vw, 92px);
  align-items: center;
}

.service-image-pair {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.service-image-pair::after {
  content: "";
  position: absolute;
  inset: 50% auto auto 50%;
  width: 46px;
  height: 46px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 12px 26px rgba(17, 19, 24, 0.16);
  transform: translate(-50%, -50%);
}

.service-image-pair img {
  width: 100%;
  height: 340px;
  object-fit: cover;
  border-radius: 10px;
}

.service-highlight {
  display: grid;
  grid-template-columns: minmax(320px, 0.9fr) minmax(0, 1fr);
  gap: 0;
  align-items: center;
}

.service-highlight img {
  width: 100%;
  height: 330px;
  object-fit: cover;
  border-radius: 10px 0 0 10px;
}

.service-highlight div {
  display: grid;
  align-content: center;
  min-height: 300px;
  padding: clamp(30px, 5vw, 58px);
  color: #fff;
  background: linear-gradient(135deg, #17191d, #4c525b);
  border-radius: 0 10px 10px 0;
}

.service-highlight h2,
.service-highlight p {
  color: #fff;
}

.service-highlight p {
  color: rgba(255, 255, 255, 0.82);
}

.service-upgrade {
  display: grid;
  grid-template-columns: minmax(220px, 0.65fr) minmax(0, 1fr);
  gap: clamp(24px, 5vw, 72px);
  align-items: start;
  background: #f1f2f4;
  border-radius: 10px;
}

.service-upgrade img {
  grid-column: 1 / -1;
  width: 100%;
  height: 360px;
  object-fit: cover;
  border-radius: 10px;
}

.service-testimonials {
  background: #fff;
}

.testimonial-row {
  display: grid;
  grid-template-columns: minmax(260px, 0.9fr) minmax(0, 1fr);
  gap: clamp(28px, 6vw, 80px);
  align-items: center;
  margin-top: 34px;
}

.testimonial-avatars {
  display: flex;
  align-items: end;
  gap: 14px;
}

.testimonial-avatars img {
  width: 132px;
  height: 164px;
  object-fit: cover;
  border-radius: 10px;
  filter: grayscale(1);
}

.testimonial-avatars img:last-child {
  width: 150px;
  height: 192px;
  filter: none;
  background: var(--brand-chrome);
}

.testimonial-row blockquote {
  position: relative;
  margin: 0;
  color: var(--ink);
  font-size: 1.2rem;
  line-height: 1.55;
  font-weight: 700;
}

.testimonial-row blockquote::before {
  content: "“";
  display: grid;
  width: 48px;
  height: 48px;
  margin-bottom: 18px;
  place-items: center;
  color: #fff;
  background: var(--metal-dark);
  border-radius: 50%;
  font-size: 2rem;
  line-height: 1;
}

.service-quote {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(260px, 0.75fr);
  gap: clamp(24px, 6vw, 80px);
  align-items: center;
  margin: 0 auto 48px;
  color: #fff;
  background: var(--metal-dark);
  border-radius: 10px;
}

.service-quote h2,
.service-quote p {
  color: #fff;
}

.service-quote p {
  max-width: 620px;
  color: rgba(255, 255, 255, 0.74);
}

.service-quote .lp-call {
  margin-top: 12px;
}

.service-quote img {
  width: 100%;
  max-height: 330px;
  object-fit: cover;
  border-radius: 18px;
}

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

.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

@keyframes heroDrift {
  from {
    transform: scale(1.04) translate3d(0, 0, 0);
  }
  to {
    transform: scale(1.09) translate3d(-1.2%, -0.8%, 0);
  }
}

@media (max-width: 980px) {
  .intro-grid,
  .section-head,
  .feature-band,
  .cta-panel,
  .two-col,
  .about-intro {
    grid-template-columns: 1fr;
  }

  .feature-copy {
    padding: 56px clamp(20px, 6vw, 64px);
  }

  .service-item {
    grid-template-columns: 70px 1fr;
  }

  .service-item p {
    grid-column: 2;
  }

  .timeline,
  .project-grid,
  .content-grid,
  .about-card-grid {
    grid-template-columns: 1fr 1fr;
  }

  .timeline li:nth-child(2n) {
    border-right: 0;
  }

  .project-card:nth-child(2) {
    margin-top: 0;
  }

  .lp-hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-bottom: 46px;
    clip-path: none;
  }

  .lp-hero-content {
    order: 1;
    padding-top: 34px;
  }

  .lp-hero-image-left,
  .lp-hero-image-right {
    display: none;
  }

  .lp-hero-badges {
    position: relative;
    left: auto;
    bottom: auto;
    order: 2;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: 100%;
    margin-top: 22px;
    transform: none;
  }

  .lp-split,
  .lp-how,
  .lp-faq,
  .lp-bottom-cta,
  .lp-panel-head {
    grid-template-columns: 1fr;
  }

  .lp-service-grid,
  .lp-blog-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .service-main {
    width: 100%;
    padding-top: 0;
  }

  .service-hero,
  .service-band-top,
  .service-split,
  .service-highlight,
  .service-upgrade,
  .testimonial-row,
  .service-quote,
  .service-directory-grid {
    grid-template-columns: 1fr;
  }

  .service-scope-card {
    min-height: 150px;
    justify-self: stretch;
  }

  .service-scope-card small {
    max-width: 46ch;
  }

  .service-hero {
    min-height: auto;
    padding: calc(var(--header-h) + 96px) 0 78px;
  }

  .service-hero-copy,
  .service-hero img {
    grid-column: auto;
  }

  .service-hero-copy {
    padding: 0;
  }

  .service-hero img {
    height: 100%;
    min-height: 0;
    margin-inline: 0;
    width: 100%;
  }

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

  .service-highlight {
    gap: 0;
  }

  .service-highlight img {
    border-radius: 10px 10px 0 0;
  }

  .service-highlight div {
    border-radius: 0 0 10px 10px;
  }

  .service-upgrade img {
    height: 300px;
  }

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

  .footer-about {
    grid-column: 1 / -1;
  }

  .footer-bottom {
    grid-template-columns: 1fr;
    justify-items: start;
  }

}

@media (max-width: 760px) {
  :root {
    --header-h: 86px;
    --section-y: 40px;
    --heading-h1: 2.8rem;
    --heading-h2: 2.25rem;
    --heading-h3: 1.35rem;
    --heading-h4: 1.1rem;
  }

  .site-header {
    grid-template-columns: auto auto;
    justify-content: space-between;
    gap: 12px;
    padding: 0 18px;
  }

  .brand {
    min-height: 76px;
    padding: 0;
  }

  .site-header .brand-logo {
    height: 70px;
  }

  .site-footer .brand-logo {
    height: 54px;
  }

  .menu-toggle {
    display: inline-grid;
    gap: 7px;
    width: 48px;
    height: 48px;
    place-content: center;
    border: 1px solid rgba(17, 19, 24, 0.12);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 18px 44px rgba(17, 19, 24, 0.12);
    pointer-events: auto;
  }

  .menu-toggle span {
    display: block;
    width: 18px;
    height: 2px;
    background: var(--ink);
  }

  .main-nav {
    position: fixed;
    inset: calc(var(--header-h) + 8px) 16px auto;
    z-index: 30;
    display: block;
    height: calc(100svh - var(--header-h) - 24px);
    padding: 18px;
    overflow-y: auto;
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 28px 70px rgba(17, 19, 24, 0.16);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-12px);
    transition: opacity 220ms ease, transform 220ms ease;
  }

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

  .header-actions {
    display: none;
  }

  .nav-item {
    display: block;
  }

  .main-nav > a,
  .nav-item > a {
    display: flex;
    min-height: 44px;
    padding: 0;
    border-bottom: 1px solid var(--line);
    border-radius: 0;
    font-size: 1.08rem;
  }

  .main-nav > a:hover,
  .nav-item:hover > a,
  .nav-item:focus-within > a,
  .nav-item.is-open > a {
    color: var(--ink);
    background: transparent;
    box-shadow: none;
  }

  .dropdown-menu {
    position: static;
    width: 100%;
    min-width: 0;
    padding: 14px 0 20px;
    background: transparent;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    opacity: 1;
    pointer-events: auto;
    visibility: visible;
    transform: none;
  }

  .mega-feature {
    grid-template-columns: 48px minmax(0, 1fr);
    min-height: 78px !important;
    margin-bottom: 16px;
    padding: 14px !important;
  }

  .mega-art {
    width: 42px;
    height: 34px;
  }

  .mega-columns,
  .compact-mega .mega-columns,
  .mini-mega .mega-columns {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .mega-columns a,
  .dropdown-menu a {
    min-height: 38px;
    padding: 5px 0 !important;
    border-bottom: 0;
    font-size: 0.98rem;
  }

  .hero {
    min-height: 760px;
    padding-inline: 18px;
    padding-bottom: 32px;
  }

  .hero-content {
    padding-bottom: 36px;
  }

  h1 {
    font-size: var(--heading-h1);
    line-height: var(--heading-line-tight);
  }

  h2 {
    font-size: var(--heading-h2);
  }

  .hero-metrics,
  .timeline,
  .project-grid,
  .content-grid,
  .about-card-grid {
    grid-template-columns: 1fr;
  }

  .hero-metrics div {
    padding: 18px 0;
    border-bottom: 1px solid var(--line);
  }

  .section {
    padding: var(--section-y) 0;
  }

  .page-hero {
    min-height: 360px;
    padding: calc(var(--header-h) + 82px) 0 66px;
  }

  .page-hero h1 {
    font-size: clamp(2.05rem, 10vw, 3.2rem);
    line-height: 1.04;
  }

  .service-list {
    margin-top: 42px;
  }

  .service-item {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 28px 0;
  }

  .service-item p {
    grid-column: auto;
  }

  .feature-band {
    min-height: 0;
  }

  .feature-image {
    min-height: 380px;
  }

  .timeline li {
    min-height: auto;
    padding: 26px 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .project-tabs {
    justify-self: start;
  }

  .project-grid {
    padding-inline: 0;
  }

  .project-card {
    min-height: 430px;
  }

  .cta-panel {
    padding: 26px;
  }

  .site-footer {
    padding: 46px 18px 26px;
  }

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

  .footer-inner {
    gap: 34px;
  }

  .footer-bottom {
    justify-items: start;
  }

  .lp-hero {
    padding: calc(var(--header-h) + 24px) 18px 42px;
  }

  .lp-hero h1 {
    font-size: clamp(2.15rem, 11vw, 3.2rem);
  }

  .lp-hero-badges,
  .lp-service-grid,
  .lp-feature-grid,
  .lp-blog-grid {
    grid-template-columns: 1fr;
  }

  .lp-hero-badges {
    gap: 10px;
  }

  .lp-checks {
    grid-template-columns: 1fr;
  }

  .lp-dark-panel {
    padding: 30px 22px 44px;
    clip-path: none;
  }

  .lp-feature-grid {
    gap: 20px;
  }

  .lp-worker-image img,
  .lp-hex-image {
    width: 100%;
  }

  .lp-bottom-cta {
    padding: var(--section-y) 18px;
  }

  .service-main {
    width: 100%;
  }

  .service-hero,
  .service-blue-band,
  .service-directory,
  .service-split,
  .service-highlight,
  .service-upgrade,
  .service-testimonials,
  .service-quote {
    padding: var(--section-y) 18px;
  }

  .service-hero {
    min-height: 380px;
    padding: calc(var(--header-h) + 82px) 0 66px;
  }

  .service-main h1 {
    font-size: clamp(2rem, 10vw, 3.15rem);
  }

  .service-hero img,
  .service-image-pair img,
  .service-highlight img,
  .service-upgrade img {
    height: 260px;
    min-height: 0;
  }

  .service-hero img {
    height: 100%;
    margin-inline: 0;
    width: 100%;
  }

  .page-hero-inner::before,
  .page-hero-inner::after,
  .service-hero-copy::before,
  .service-hero-copy::after {
    display: none;
  }

  .service-feature-cards {
    grid-template-columns: 1fr;
  }

  .service-directory-card {
    padding: 18px;
  }

  .service-directory-card-head {
    grid-template-columns: 42px minmax(0, 1fr);
  }

  .service-directory-card-head > span {
    width: 42px;
    height: 42px;
  }

  .service-image-pair {
    grid-template-columns: 1fr;
  }

  .service-image-pair::after {
    display: none;
  }

  .price-table,
  .price-table thead,
  .price-table tbody,
  .price-table tr,
  .price-table th,
  .price-table td {
    display: block;
    width: 100%;
  }

  .price-table {
    border-collapse: separate;
    border-spacing: 0 14px;
    background: transparent;
  }

  .price-table thead {
    display: none;
  }

  .price-table tr {
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
  }

  .price-table td {
    display: grid;
    grid-template-columns: 112px minmax(0, 1fr);
    gap: 14px;
    padding: 16px;
    border: 0;
    border-bottom: 1px solid var(--line);
  }

  .price-table td:last-child {
    border-bottom: 0;
  }

  .price-table td::before {
    color: var(--muted);
    font-size: 0.82rem;
    font-weight: 900;
    text-transform: uppercase;
  }

  .price-table td:nth-child(1)::before {
    content: "Paket";
  }

  .price-table td:nth-child(2)::before {
    content: "Kapsam";
  }

  .price-table td:nth-child(3)::before {
    content: "Kullanım";
  }

  .testimonial-avatars img {
    width: 46%;
    height: 158px;
  }

  .testimonial-avatars img:last-child {
    width: 50%;
    height: 182px;
  }
}
