:root {
  --ink: #050a10;
  --ink-soft: #09121c;
  --panel: #0c1722;
  --panel-bright: #102130;
  --line: rgba(255, 255, 255, 0.11);
  --line-bright: rgba(113, 231, 255, 0.4);
  --text: #f5f8f9;
  --muted: #99a9b7;
  --muted-dark: #687987;
  --cyan: #47ddf4;
  --cyan-hot: #8df0ff;
  --cyan-deep: #0e9db3;
  --warm: #e5a55e;
  --display: "Bricolage Grotesque", sans-serif;
  --body: "Manrope", sans-serif;
  --max: 1240px;
  --pad: clamp(24px, 4.5vw, 72px);
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  background: var(--ink);
}

body {
  margin: 0;
  color: var(--text);
  background:
    radial-gradient(circle at 18% 35%, rgba(27, 86, 111, 0.1), transparent 34rem),
    var(--ink);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.65;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  z-index: 1000;
  inset: 0;
  pointer-events: none;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.95' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.65'/%3E%3C/svg%3E");
}

body::selection { color: #001015; background: var(--cyan-hot); }

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button, input, textarea, select { font: inherit; }

:focus-visible { outline: 2px solid var(--cyan-hot); outline-offset: 4px; }

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

.skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 100;
  padding: 10px 16px;
  color: var(--ink);
  background: var(--cyan-hot);
  transform: translateY(-150%);
  transition: transform 180ms ease;
}

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

.site-header {
  position: fixed;
  z-index: 50;
  top: 14px;
  left: 50%;
  width: min(1360px, calc(100% - 28px));
  height: 72px;
  display: grid;
  grid-template-columns: 180px 1fr 180px;
  align-items: center;
  padding: 0 clamp(18px, 3vw, 36px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  background: rgba(3, 8, 13, 0.66);
  box-shadow: 0 18px 70px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(18px) saturate(1.2);
  transform: translateX(-50%);
  transition: background 260ms ease, border-color 260ms ease, top 260ms ease;
}

.site-header::before {
  content: "";
  position: absolute;
  top: -1px;
  left: 7%;
  width: 28%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--cyan-hot), transparent);
  opacity: 0.55;
}

.site-header.page-header,
.site-header.is-scrolled {
  top: 8px;
  height: 68px;
  background: rgba(3, 8, 13, 0.9);
  border-color: rgba(141, 240, 255, 0.16);
}

.brand {
  width: fit-content;
  min-width: 154px;
  height: 50px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.brand-symbol {
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  background: url("assets/etklock-logo.png") 50% 36% / 96px 96px no-repeat;
  mix-blend-mode: screen;
}

.brand-word {
  color: #fff;
  font-family: var(--body);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.22em;
  line-height: 1;
}

.brand > .brand-logo { display: none; }

.main-nav {
  display: flex;
  justify-content: center;
  gap: clamp(24px, 3vw, 48px);
  font-size: 14px;
  font-weight: 600;
}

.main-nav a {
  position: relative;
  color: rgba(255, 255, 255, 0.72);
  transition: color 180ms ease;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -9px;
  width: 100%;
  height: 1px;
  background: var(--cyan);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.main-nav a:hover,
.main-nav a:focus-visible,
.main-nav a[aria-current="page"] { color: var(--cyan-hot); }

.main-nav a:hover::after,
.main-nav a[aria-current="page"]::after { transform: scaleX(1); }

.header-cta {
  justify-self: end;
  padding: 10px 0;
  border-bottom: 1px solid var(--cyan);
  color: var(--cyan-hot);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.menu-toggle { display: none; }

.hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  display: flex;
  align-items: center;
  isolation: isolate;
}

.hero-media,
.hero-vignette,
.hero-grid { position: absolute; inset: 0; }

.hero-media { z-index: -3; background: #06101b; }

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  animation: hero-settle 1.5s cubic-bezier(0.2, 0.75, 0.3, 1) both;
}

.hero-vignette {
  background:
    linear-gradient(90deg, rgba(3, 8, 14, 0.98) 0%, rgba(3, 8, 14, 0.84) 32%, rgba(3, 8, 14, 0.15) 67%, rgba(3, 8, 14, 0.24) 100%),
    linear-gradient(0deg, rgba(3, 8, 14, 0.86) 0%, transparent 30%);
}

.hero-grid,
.page-hero-grid {
  z-index: -1;
  opacity: 0.22;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.07) 1px, transparent 1px);
  background-size: 88px 88px;
  mask-image: linear-gradient(90deg, #000, transparent 67%);
}

.hero-content {
  width: min(720px, 100%);
  margin-left: max(24px, calc((100vw - var(--max)) / 2));
  padding: 136px 24px 110px 0;
}

.eyebrow,
.section-kicker {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
  color: var(--cyan-hot);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.pulse {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 0 7px rgba(71, 221, 244, 0.11), 0 0 22px var(--cyan);
}

.hero h1,
.page-hero h1,
.section h2,
.smartlife-band h2,
.support-visual h2,
.quote-prep h2,
.company-band strong {
  margin: 0;
  font-family: var(--display);
  font-weight: 500;
  letter-spacing: -0.055em;
  line-height: 0.98;
}

.hero h1 { max-width: 780px; font-size: clamp(54px, 6.8vw, 106px); }

.hero h1 span,
.page-hero h1 span {
  color: transparent;
  background: linear-gradient(100deg, #fff 10%, var(--cyan-hot) 88%);
  background-clip: text;
}

.hero-copy {
  max-width: 560px;
  margin: 30px 0 0;
  color: #bdc7d0;
  font-size: clamp(17px, 1.45vw, 20px);
}

.hero-actions,
.product-focus-actions,
.status-row,
.feature-tags { display: flex; align-items: center; flex-wrap: wrap; }
.hero-actions { gap: 18px; margin-top: 38px; }

.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 5px;
  font-size: 14px;
  font-weight: 700;
  transition: transform 180ms ease, color 180ms ease, border-color 180ms ease, background 180ms ease;
}

.button:hover { transform: translateY(-2px); }
.button svg { width: 20px; fill: none; stroke: currentColor; stroke-width: 1.7; }
.button-primary { color: #021014; background: var(--cyan-hot); box-shadow: 0 10px 44px rgba(71, 221, 244, 0.16); }
.button-primary:hover { background: #c9f9ff; }
.button-ghost { color: #d7dee4; border-color: var(--line); background: rgba(5, 10, 17, 0.3); backdrop-filter: blur(10px); }
.button-ghost:hover { border-color: var(--line-bright); color: var(--cyan-hot); }

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  padding-bottom: 4px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.28);
  color: #c9d3db;
  font-size: 14px;
  font-weight: 700;
  transition: color 180ms ease, border-color 180ms ease;
}

.text-link:hover { color: var(--cyan-hot); border-color: var(--cyan); }
.text-link-bright { color: var(--cyan-hot); border-color: var(--cyan); }

.hero-proof { display: flex; gap: 0; margin-top: 68px; }
.hero-proof div { min-width: 150px; padding: 0 24px; border-left: 1px solid var(--line); }
.hero-proof div:first-child { padding-left: 0; border-left: 0; }
.hero-proof strong, .hero-proof span { display: block; }
.hero-proof strong { font-family: var(--display); font-size: 15px; font-weight: 600; }
.hero-proof span { color: var(--muted); font-size: 12px; }

.hero-index {
  position: absolute;
  right: var(--pad);
  bottom: 50px;
  display: flex;
  align-items: flex-end;
  gap: 12px;
  color: rgba(255, 255, 255, 0.5);
  writing-mode: vertical-rl;
  font-size: 9px;
  letter-spacing: 0.22em;
}

.hero-index b { color: rgba(255, 255, 255, 0.86); font-family: var(--display); font-size: 48px; font-weight: 400; line-height: 1; }

.scroll-cue {
  position: absolute;
  bottom: 36px;
  left: 50%;
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255, 255, 255, 0.56);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  transform: translateX(-50%);
}

.scroll-cue span { width: 44px; height: 1px; background: var(--cyan); }

.section { width: min(var(--max), calc(100% - 48px)); margin: 0 auto; padding: 130px 0; }
.compact-section { padding-bottom: 64px; }

.product-focus { display: grid; grid-template-columns: 0.82fr 1.18fr; gap: clamp(50px, 8vw, 120px); align-items: center; }
.product-focus-copy h2,
.catalog-heading h2,
.solutions-heading h2,
.app-guide h2,
.faq h2,
.story h2,
.principles h2,
.contact-options h2 { font-size: clamp(44px, 5.5vw, 82px); }
.product-focus-copy > p,
.catalog-heading p,
.solutions-heading > p,
.experience-copy p,
.smartlife-copy p,
.process-copy > p,
.contact-action > p,
.story-copy p,
.support-visual-copy p { color: var(--muted); font-size: 17px; }

.tick-list { list-style: none; margin: 34px 0 0; padding: 0; border-top: 1px solid var(--line); }
.tick-list li { position: relative; padding: 15px 0 15px 28px; border-bottom: 1px solid var(--line); color: #d5dde3; font-size: 14px; }
.tick-list li::before { content: ""; position: absolute; left: 2px; top: 23px; width: 10px; height: 5px; border-left: 1px solid var(--cyan); border-bottom: 1px solid var(--cyan); transform: rotate(-45deg); }
.product-focus-actions { gap: 24px; margin-top: 36px; }
.config-note { margin: 18px 0 0; color: #657482; font-size: 12px; text-align: right; }
.align-left { text-align: left; }

.product-focus-media { position: relative; min-height: 560px; display: grid; place-items: center; overflow: hidden; border: 1px solid var(--line); background: linear-gradient(145deg, #071321, #03070c); box-shadow: 0 32px 90px rgba(0, 0, 0, 0.26); }
.product-focus-media > img { position: relative; z-index: 1; width: 100%; height: 100%; object-fit: cover; }
.product-glow { position: absolute; inset: 10% 15%; border-radius: 50%; background: rgba(71, 221, 244, 0.16); filter: blur(80px); }
.product-label { position: absolute; z-index: 2; left: 28px; bottom: 28px; display: grid; padding: 16px 19px; border-left: 2px solid var(--cyan); background: rgba(3, 9, 15, 0.78); backdrop-filter: blur(14px); }
.product-label span { color: var(--cyan-hot); font-size: 9px; font-weight: 700; letter-spacing: 0.18em; }
.product-label strong { font-family: var(--display); font-size: 20px; font-weight: 600; }
.product-label small { color: var(--muted); font-size: 11px; }

.use-cases { width: min(var(--max), calc(100% - 48px)); margin: 10px auto 80px; border-top: 1px solid var(--line); }
.use-case-line { display: grid; grid-template-columns: 80px 0.55fr 1fr; gap: 30px; align-items: center; min-height: 150px; border-bottom: 1px solid var(--line); }
.use-case-line > span { color: var(--cyan); font-size: 11px; letter-spacing: 0.16em; }
.use-case-line strong { font-family: var(--display); font-size: clamp(32px, 4vw, 58px); font-weight: 500; letter-spacing: -0.04em; }
.use-case-line p { max-width: 520px; margin: 0; color: var(--muted); font-size: 15px; }

.experience { display: grid; grid-template-columns: 1.22fr 0.78fr; gap: clamp(50px, 7vw, 100px); align-items: center; }
.experience-media { position: relative; overflow: hidden; min-height: 600px; }
.experience-media img { width: 100%; height: 100%; min-height: 600px; object-fit: cover; object-position: 54% center; }
.media-caption { position: absolute; left: 0; bottom: 0; display: flex; flex-direction: column; gap: 4px; width: min(52%, 350px); padding: 18px 22px; color: #d7e0e6; background: rgba(4, 10, 16, 0.82); backdrop-filter: blur(12px); font-size: 12px; }
.media-caption span { color: var(--cyan-hot); letter-spacing: 0.15em; }
.experience-copy h2 { font-size: clamp(43px, 5vw, 72px); }
.experience-copy p { margin: 28px 0 32px; }

.smartlife-band,
.compatibility-strip {
  width: min(1400px, calc(100% - 48px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 180px 1fr auto;
  gap: clamp(30px, 5vw, 70px);
  align-items: center;
  padding: clamp(45px, 7vw, 84px);
  border: 1px solid var(--line-bright);
  background: linear-gradient(120deg, rgba(71, 221, 244, 0.1), rgba(10, 24, 36, 0.35)), var(--ink-soft);
}

.smartlife-mark { width: 150px; height: 150px; display: grid; place-items: center; padding: 14px; border: 1px solid var(--line-bright); background: rgba(255, 255, 255, 0.035); box-shadow: inset 0 0 40px rgba(71, 221, 244, 0.08); transition: transform 180ms ease, border-color 180ms ease; }
.smartlife-mark:hover { transform: translateY(-3px); border-color: var(--cyan-hot); }
.smartlife-mark img, .app-badge img { width: 100%; height: 100%; border-radius: 23%; object-fit: cover; }
.smartlife-copy h2 { max-width: 760px; font-size: clamp(38px, 4.7vw, 70px); }
.smartlife-copy p { max-width: 720px; margin: 24px 0 0; }
.smartlife-actions { display: flex; flex-direction: column; align-items: flex-start; gap: 18px; }

.process { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: clamp(60px, 9vw, 140px); align-items: start; }
.process-copy { position: sticky; top: 130px; }
.process h2,
.contact h2 { font-size: clamp(44px, 5.8vw, 84px); }
.process-copy > p { max-width: 450px; margin-top: 28px; }
.process-list { list-style: none; margin: 0; padding: 0; }
.process-list li { display: grid; grid-template-columns: 70px 1fr; gap: 22px; padding: 38px 0 48px; border-top: 1px solid var(--line); }
.process-list li:last-child { border-bottom: 1px solid var(--line); }
.process-list > li > span { color: var(--cyan); font-family: var(--display); font-size: 14px; }
.process-list strong { display: block; margin-bottom: 8px; font-family: var(--display); font-size: 28px; font-weight: 500; }
.process-list p { margin: 0; color: var(--muted); font-size: 15px; }

.contact { padding-top: 90px; padding-bottom: 130px; }
.contact-card { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 80px; padding: clamp(36px, 6vw, 84px); border: 1px solid var(--line-bright); background: linear-gradient(125deg, rgba(71, 221, 244, 0.08), transparent 60%), var(--ink-soft); box-shadow: 0 30px 100px rgba(0, 0, 0, 0.24); }
.contact-action { display: flex; flex-direction: column; justify-content: flex-end; align-items: flex-start; gap: 28px; }

/* Shared inner-page hero */
.page-hero { position: relative; min-height: 660px; display: flex; flex-direction: column; justify-content: flex-end; overflow: hidden; padding: 180px max(24px, calc((100vw - var(--max)) / 2)) 76px; border-bottom: 1px solid var(--line); background: radial-gradient(circle at 78% 44%, rgba(39, 150, 181, 0.19), transparent 24rem), radial-gradient(circle at 18% 10%, rgba(229, 165, 94, 0.07), transparent 19rem), linear-gradient(135deg, #07121d, #04080d 72%); isolation: isolate; }
.page-hero::before { content: ""; position: absolute; left: max(24px, calc((100vw - var(--max)) / 2)); top: 130px; width: 1px; height: 72px; background: linear-gradient(var(--cyan-hot), transparent); }
.page-hero::after { content: "ETK"; position: absolute; z-index: -1; right: 2vw; bottom: -6vw; color: transparent; font-family: var(--display); font-size: min(31vw, 470px); font-weight: 700; line-height: 0.8; -webkit-text-stroke: 1px rgba(141, 240, 255, 0.08); }
.page-hero-grid { position: absolute; inset: 0; }
.page-hero-copy { max-width: 960px; }
.page-hero h1 { font-size: clamp(54px, 7vw, 104px); }
.page-hero p { max-width: 670px; margin: 30px 0 0; color: #b7c3cc; font-size: 18px; }
.page-hero-meta { display: flex; gap: 0; margin-top: 60px; }
.page-hero-meta span { padding: 0 26px; border-left: 1px solid var(--line); color: #a7b5c0; font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase; }
.page-hero-meta span:first-child { padding-left: 0; border-left: 0; }

/* Products */
.catalog-heading { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 80px; align-items: end; }
.catalog-heading .section-kicker { grid-column: 1 / -1; margin-bottom: -30px; }
.catalog-heading p { margin: 0; }

.featured-product { width: min(1400px, calc(100% - 48px)); margin: 0 auto; display: grid; grid-template-columns: 0.88fr 1.12fr; min-height: 780px; border: 1px solid var(--line); background: var(--ink-soft); box-shadow: 0 40px 110px rgba(0, 0, 0, 0.24); }
.featured-product-media { position: relative; min-height: 780px; overflow: hidden; background: #06101a; }
.featured-product-media img { width: 100%; height: 100%; object-fit: cover; }
.featured-product-media { grid-column: 2; grid-row: 1; }
.featured-product-copy { grid-column: 1; grid-row: 1; }
.featured-product-code { position: absolute; right: 24px; bottom: 8px; color: rgba(255, 255, 255, 0.12); font-family: var(--display); font-size: 120px; line-height: 1; }
.featured-product-copy { display: flex; flex-direction: column; justify-content: center; padding: clamp(36px, 6vw, 78px); }
.status-row { gap: 8px; }
.status { display: inline-flex; align-items: center; min-height: 29px; padding: 0 11px; border: 1px solid var(--line); color: #a6b4bf; font-size: 10px; font-weight: 700; letter-spacing: 0.09em; text-transform: uppercase; }
.status-ready { color: #0a171a; border-color: var(--cyan-hot); background: var(--cyan-hot); }
.status-project { color: var(--cyan-hot); border-color: rgba(71, 221, 244, 0.36); }
.status-soon { color: #edbc82; border-color: rgba(229, 165, 94, 0.38); }
.featured-product-copy h2 { margin-top: 28px; font-size: clamp(50px, 6vw, 88px); }
.featured-lead { margin: 22px 0 34px; color: #bdc8d0; font-size: 18px; }
.spec-grid { display: grid; grid-template-columns: 1fr 1fr; margin-bottom: 28px; border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.spec-grid div { min-height: 92px; display: grid; align-content: center; padding: 16px 18px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.spec-grid span { color: var(--muted-dark); font-size: 10px; letter-spacing: 0.12em; text-transform: uppercase; }
.spec-grid strong { font-family: var(--display); font-size: 16px; font-weight: 500; }
.feature-tags { gap: 8px; }
.feature-tags span { padding: 7px 10px; background: rgba(255, 255, 255, 0.045); color: #a9b6c0; font-size: 11px; }
.featured-product-copy > .button { align-self: flex-start; margin-top: 32px; }

.solutions-heading { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 70px; align-items: end; margin-bottom: 70px; }
.solutions-heading > p { margin: 0; }
.solution-grid { display: grid; grid-template-columns: repeat(12, 1fr); gap: 12px; }
.solution-card { position: relative; min-height: 410px; display: flex; flex-direction: column; padding: 32px; border: 1px solid var(--line); background: linear-gradient(155deg, rgba(16, 33, 48, 0.62), rgba(6, 13, 21, 0.8)); overflow: hidden; transition: background 220ms ease, transform 220ms ease, border-color 220ms ease; }
.solution-card:nth-child(1), .solution-card:nth-child(4) { grid-column: span 7; }
.solution-card:nth-child(2), .solution-card:nth-child(3) { grid-column: span 5; }
.solution-card:nth-child(5) { grid-column: span 5; }
.solution-card:nth-child(6) { grid-column: span 7; }
.solution-card::after { content: ""; position: absolute; right: -80px; bottom: -110px; width: 240px; height: 240px; border: 1px solid rgba(141, 240, 255, 0.08); border-radius: 50%; box-shadow: 0 0 0 34px rgba(141, 240, 255, 0.025), 0 0 0 68px rgba(141, 240, 255, 0.018); }
.solution-card:hover { border-color: rgba(141, 240, 255, 0.26); background: linear-gradient(155deg, rgba(21, 45, 63, 0.72), rgba(6, 13, 21, 0.9)); transform: translateY(-3px); }
.solution-top { display: flex; justify-content: space-between; align-items: flex-start; gap: 16px; }
.solution-no { color: var(--muted-dark); font-size: 10px; letter-spacing: 0.15em; }
.solution-icon { width: 68px; height: 68px; margin: 54px 0 42px; fill: none; stroke: var(--cyan-hot); stroke-linecap: round; stroke-linejoin: round; stroke-width: 1.25; }
.solution-card h3 { margin: 0 0 14px; font-family: var(--display); font-size: 27px; font-weight: 500; line-height: 1.1; }
.solution-card p { margin: 0 0 28px; color: var(--muted); font-size: 14px; }
.solution-card .text-link { margin-top: auto; }
.solution-card-cta { justify-content: flex-end; background: linear-gradient(145deg, rgba(71, 221, 244, 0.16), rgba(9, 18, 28, 0.65)); }
.solution-card-cta h3 { max-width: 290px; font-size: 37px; }
.solution-card-cta .button { align-self: flex-start; margin-top: 8px; }
.catalog-disclaimer { max-width: 830px; margin: 26px 0 0; color: var(--muted-dark); font-size: 12px; }

.compatibility-strip { grid-template-columns: 0.75fr 1fr auto; margin-bottom: 130px; }
.compatibility-strip h2 { font-size: clamp(36px, 4.6vw, 66px); }
.mini-steps { list-style: none; margin: 0; padding: 0; }
.mini-steps li { display: grid; grid-template-columns: 42px 1fr; gap: 12px; padding: 12px 0; border-bottom: 1px solid var(--line); color: #d5dde3; font-size: 14px; }
.mini-steps li:first-child { border-top: 1px solid var(--line); }
.mini-steps span { color: var(--cyan); font-size: 10px; }

/* Support */
.app-guide { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: clamp(60px, 9vw, 130px); }
.app-guide-intro { position: sticky; top: 120px; align-self: start; }
.app-badge { width: 110px; height: 110px; display: grid; place-items: center; margin-bottom: 42px; padding: 10px; border: 1px solid var(--line-bright); background: rgba(255, 255, 255, 0.035); box-shadow: inset 0 0 30px rgba(71, 221, 244, 0.1); transition: transform 180ms ease, border-color 180ms ease; }
.app-badge:hover { transform: translateY(-3px); border-color: var(--cyan-hot); }
.app-guide-intro p { color: var(--muted); font-size: 16px; }
.app-store-links { display: flex; flex-wrap: wrap; gap: 26px; margin-top: 28px; }
.guide-steps { list-style: none; margin: 0; padding: 0; counter-reset: steps; }
.guide-steps li { display: grid; grid-template-columns: 70px 1fr; gap: 24px; padding: 38px 0 44px; border-top: 1px solid var(--line); }
.guide-steps li:last-child { border-bottom: 1px solid var(--line); }
.guide-steps > li > span { color: var(--cyan); font-size: 12px; }
.guide-steps h3 { margin: 0 0 10px; font-family: var(--display); font-size: 27px; font-weight: 500; }
.guide-steps p { margin: 0; color: var(--muted); font-size: 15px; }

.support-visual { position: relative; width: min(1400px, calc(100% - 48px)); min-height: 620px; margin: 0 auto; display: grid; grid-template-columns: 1.08fr 0.92fr; align-items: end; overflow: hidden; }
.support-panel { border: 1px solid var(--line-bright); background: radial-gradient(circle at 82% 32%, rgba(71, 221, 244, 0.14), transparent 24rem), linear-gradient(130deg, #0a1722, #040a10); }
.support-panel::before { content: ""; position: absolute; inset: 0; opacity: 0.18; background-image: linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px); background-size: 72px 72px; mask-image: linear-gradient(90deg, transparent, #000); }
.support-panel-index { position: absolute; right: clamp(24px, 5vw, 70px); top: 48px; display: flex; align-items: flex-end; gap: 12px; color: rgba(255, 255, 255, 0.46); writing-mode: vertical-rl; font-size: 11px; letter-spacing: 0.18em; }
.support-panel-index strong { color: rgba(255, 255, 255, 0.88); font-family: var(--display); font-size: 72px; font-weight: 400; line-height: 0.8; }
.support-visual-copy { position: relative; z-index: 1; max-width: 660px; margin: clamp(28px, 6vw, 80px); padding: clamp(28px, 5vw, 60px); border: 1px solid var(--line); background: rgba(4, 10, 16, 0.8); backdrop-filter: blur(16px); }
.support-visual h2 { font-size: clamp(40px, 5vw, 70px); }
.support-visual-copy p { margin: 24px 0 30px; }
.door-check-list { position: relative; z-index: 1; list-style: none; margin: 0 clamp(28px, 6vw, 80px) clamp(28px, 6vw, 80px) 0; padding: 0; }
.door-check-list li { display: grid; grid-template-columns: 48px 1fr; gap: 14px; padding: 22px 0; border-top: 1px solid var(--line); color: #dce5ea; font-family: var(--display); font-size: 20px; }
.door-check-list li:last-child { border-bottom: 1px solid var(--line); }
.door-check-list span { color: var(--cyan); font-family: var(--body); font-size: 11px; letter-spacing: 0.12em; }

.faq { display: grid; grid-template-columns: 0.7fr 1.3fr; gap: clamp(60px, 9vw, 130px); align-items: start; }
.faq-heading { position: sticky; top: 120px; }
.faq-list { border-top: 1px solid var(--line); }
.faq-list details { border-bottom: 1px solid var(--line); }
.faq-list summary { position: relative; list-style: none; cursor: pointer; padding: 28px 54px 28px 0; color: #e6ebee; font-family: var(--display); font-size: 21px; font-weight: 500; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary span,
.faq-list summary span::after { position: absolute; right: 2px; top: 50%; width: 18px; height: 1px; background: var(--cyan); transition: transform 180ms ease; content: ""; }
.faq-list summary span::after { inset: 0; transform: rotate(90deg); }
.faq-list details[open] summary span::after { transform: rotate(0); }
.faq-list details p { max-width: 720px; margin: -8px 0 28px; color: var(--muted); font-size: 15px; }

/* About */
.story { position: relative; min-height: 680px; display: flex; align-items: center; overflow: hidden; }
.story-number { position: absolute; right: -2vw; top: 50%; color: transparent; font-family: var(--display); font-size: min(48vw, 640px); font-weight: 700; line-height: 0.8; -webkit-text-stroke: 1px rgba(71, 221, 244, 0.12); transform: translateY(-50%); }
.story-copy { position: relative; z-index: 1; width: min(780px, 72%); }
.story-copy p { max-width: 700px; margin: 28px 0 0; }

.principles { padding-top: 70px; }
.principles-heading { margin-bottom: 70px; }
.principle-grid { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.principle-grid article { min-height: 340px; padding: 34px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.principle-grid article > span { color: var(--cyan); font-size: 11px; letter-spacing: 0.15em; }
.principle-grid h3 { margin: 120px 0 14px; font-family: var(--display); font-size: 28px; font-weight: 500; }
.principle-grid p { margin: 0; color: var(--muted); font-size: 14px; }

.company-band { width: min(1400px, calc(100% - 48px)); margin: 0 auto; display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line-bright); border-bottom: 1px solid var(--line-bright); background: linear-gradient(90deg, rgba(71, 221, 244, 0.08), transparent); }
.company-band > div { min-height: 180px; display: grid; align-content: center; padding: 30px; border-right: 1px solid var(--line); }
.company-band > div:last-child { border-right: 0; }
.company-band span { color: var(--muted-dark); font-size: 10px; letter-spacing: 0.13em; text-transform: uppercase; }
.company-band strong { margin-top: 9px; font-size: 25px; letter-spacing: -0.025em; }

/* Contact */
.quote-request { width: min(1400px, calc(100% - 48px)); }
.quote-request-shell { display: grid; grid-template-columns: 0.92fr 1.08fr; min-height: 840px; border: 1px solid var(--line-bright); background: var(--ink-soft); box-shadow: 0 38px 110px rgba(0, 0, 0, 0.28); }
.quote-request-media { position: relative; min-height: 840px; overflow: hidden; background: #07111a; }
.quote-request-media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 42%, rgba(3, 8, 13, 0.92)); pointer-events: none; }
.quote-request-media img { width: 100%; height: 100%; min-height: 840px; object-fit: cover; object-position: 46% center; }
.quote-media-copy { position: absolute; z-index: 1; left: clamp(24px, 4vw, 54px); right: clamp(24px, 4vw, 54px); bottom: clamp(28px, 5vw, 58px); display: grid; gap: 12px; }
.quote-media-copy span { color: var(--cyan-hot); font-size: 10px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; }
.quote-media-copy strong { font-family: var(--display); font-size: clamp(34px, 4vw, 58px); font-weight: 500; letter-spacing: -0.045em; line-height: 0.98; }
.quote-form-wrap { padding: clamp(38px, 5.2vw, 76px); }
.quote-form-wrap h2 { margin-top: 18px; font-size: clamp(40px, 4.8vw, 66px); }
.quote-form-lead { max-width: 640px; margin: 24px 0 36px; color: var(--muted); }
.quote-form { display: grid; gap: 18px; }
.form-pair { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-field { display: grid; gap: 8px; }
.form-field label { color: #dce5ea; font-size: 12px; font-weight: 700; letter-spacing: 0.045em; }
.form-field label > span { color: var(--cyan-hot); }
.form-field label em { color: var(--muted-dark); font-size: 10px; font-style: normal; font-weight: 500; }
.form-field input, .form-field select, .form-field textarea { width: 100%; min-height: 52px; padding: 13px 15px; border: 1px solid var(--line); border-radius: 0; color: var(--text); background: rgba(2, 8, 13, 0.72); outline: 0; transition: border-color 180ms ease, background 180ms ease, box-shadow 180ms ease; }
.form-field textarea { min-height: 126px; resize: vertical; }
.form-field select { appearance: none; background-image: linear-gradient(45deg, transparent 50%, var(--cyan) 50%), linear-gradient(135deg, var(--cyan) 50%, transparent 50%); background-position: calc(100% - 18px) calc(50% - 2px), calc(100% - 13px) calc(50% - 2px); background-size: 5px 5px, 5px 5px; background-repeat: no-repeat; }
.form-field input::placeholder, .form-field textarea::placeholder { color: #536572; opacity: 1; }
.form-field input:focus, .form-field select:focus, .form-field textarea:focus { border-color: var(--cyan-hot); background: rgba(4, 13, 20, 0.94); box-shadow: 0 0 0 3px rgba(71, 221, 244, 0.08); }
.form-field [aria-invalid="true"], .consent-field input[aria-invalid="true"] { border-color: #ff8f82; }
.field-meta { display: flex; justify-content: space-between; gap: 20px; color: var(--muted-dark); }
.field-meta small { font-size: 10px; }
.field-error { min-height: 16px; color: #ffaaa0; font-size: 10px; }
.consent-field { display: grid; grid-template-columns: 20px 1fr; gap: 11px; align-items: start; color: #9eacb6; font-size: 11px; cursor: pointer; }
.consent-field input { width: 18px; height: 18px; margin: 1px 0 0; accent-color: var(--cyan-deep); }
.consent-error { margin-top: -14px; }
.quote-submit { justify-self: start; margin-top: 4px; }
.quote-submit:disabled { cursor: wait; opacity: 0.72; transform: none; }
.form-privacy, .form-status { margin: 0; color: var(--muted-dark); font-size: 10px; }
.form-status:not(:empty) { min-height: 36px; display: flex; align-items: center; padding: 8px 11px; border-left: 2px solid var(--cyan); color: #c7d4dc; background: rgba(71, 221, 244, 0.055); }

.contact-options-heading { display: grid; grid-template-columns: 1fr 1fr; align-items: end; margin-bottom: 64px; }
.contact-options-heading .section-kicker { grid-column: 1 / -1; }
.contact-option-grid { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.contact-option { min-height: 390px; display: flex; flex-direction: column; padding: 34px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); transition: background 180ms ease; }
.contact-option:hover { background: rgba(18, 39, 55, 0.62); }
.contact-option-primary { background: linear-gradient(145deg, rgba(71, 221, 244, 0.13), rgba(9, 18, 28, 0.5)); }
.contact-option > span { color: var(--cyan); font-size: 10px; letter-spacing: 0.15em; text-transform: uppercase; }
.contact-option strong { margin: 92px 0 18px; font-family: var(--display); font-size: clamp(24px, 2.1vw, 33px); font-weight: 500; letter-spacing: -0.04em; overflow-wrap: anywhere; }
.contact-option p { margin: 0; color: var(--muted); font-size: 14px; }
.contact-option b { margin-top: auto; color: var(--cyan-hot); font-size: 13px; }

.quote-prep { width: min(1400px, calc(100% - 48px)); margin: 0 auto; display: grid; grid-template-columns: 0.85fr 1.15fr; gap: clamp(50px, 9vw, 130px); padding: 90px clamp(28px, 6vw, 80px); border: 1px solid var(--line-bright); background: var(--ink-soft); }
.quote-prep h2 { font-size: clamp(42px, 5vw, 72px); }
.quote-prep-list { list-style: none; margin: 0; padding: 0; }
.quote-prep-list li { display: grid; grid-template-columns: 52px 1fr; gap: 14px; padding: 22px 0; border-top: 1px solid var(--line); }
.quote-prep-list li:last-child { border-bottom: 1px solid var(--line); }
.quote-prep-list span { color: var(--cyan); font-size: 10px; }
.quote-prep-list strong { font-family: var(--display); font-size: 20px; font-weight: 500; }

.business-card { padding-top: 80px; }
.business-card-inner { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.business-card-inner > div { min-height: 150px; display: grid; align-content: center; padding: 26px; border-right: 1px solid var(--line); }
.business-card-inner > div:last-child { border-right: 0; }
.business-card-inner span { color: var(--muted-dark); font-size: 10px; letter-spacing: 0.12em; text-transform: uppercase; }
.business-card-inner strong { margin-top: 8px; font-family: var(--display); font-size: 22px; font-weight: 500; }

.not-found { min-height: 100svh; display: flex; flex-direction: column; align-items: flex-start; justify-content: center; width: min(760px, calc(100% - 48px)); margin: 0 auto; }
.not-found > .brand { position: absolute; top: 20px; left: max(24px, calc((100vw - 760px) / 2)); }
.not-found > span { color: var(--cyan); font-size: 12px; font-weight: 700; letter-spacing: 0.18em; }
.not-found h1 { margin: 18px 0 0; font-family: var(--display); font-size: clamp(54px, 9vw, 110px); font-weight: 500; letter-spacing: -0.06em; line-height: 0.95; }
.not-found p { margin: 26px 0 34px; color: var(--muted); font-size: 17px; }

/* Footer */
.site-footer { width: min(var(--max), calc(100% - 48px)); margin: 0 auto; padding: 70px 0 36px; border-top: 1px solid var(--line); }
.footer-top { display: grid; grid-template-columns: 1fr auto auto; gap: clamp(36px, 7vw, 100px); align-items: center; }
.footer-brand { display: flex; align-items: center; gap: 18px; }
.footer-lockup { min-width: 154px; }
.footer-brand p { margin: 0; color: var(--muted); font-size: 13px; }
.footer-nav { display: grid; grid-template-columns: auto auto; gap: 6px 30px; font-size: 13px; }
.footer-nav a:hover { color: var(--cyan-hot); }
.footer-contact { display: grid; gap: 3px; font-size: 13px; }
.footer-contact span { margin-bottom: 4px; color: var(--muted-dark); font-size: 9px; letter-spacing: 0.16em; text-transform: uppercase; }
.footer-contact a:hover { color: var(--cyan-hot); }
.footer-meta { display: flex; justify-content: space-between; gap: 24px; margin-top: 48px; padding-top: 28px; border-top: 1px solid var(--line); color: #64717e; font-size: 10px; letter-spacing: 0.06em; text-transform: uppercase; }

.reveal { opacity: 0; transform: translateY(24px); animation: reveal-up 800ms cubic-bezier(0.2, 0.7, 0.2, 1) forwards; }
.reveal-1 { animation-delay: 180ms; }
.reveal-2 { animation-delay: 300ms; }
.reveal-3 { animation-delay: 460ms; }
.reveal-4 { animation-delay: 620ms; }
.reveal-on-scroll { opacity: 0; transform: translateY(28px); transition: opacity 700ms ease, transform 700ms cubic-bezier(0.2, 0.7, 0.2, 1); }
.reveal-on-scroll.is-visible { opacity: 1; transform: translateY(0); }

@keyframes reveal-up { to { opacity: 1; transform: translateY(0); } }
@keyframes hero-settle { from { opacity: 0; transform: scale(1.04); } to { opacity: 1; transform: scale(1); } }

@media (max-width: 1080px) {
  .site-header { grid-template-columns: 150px 1fr 130px; }
  .main-nav { gap: 24px; }
  .product-focus-media { min-height: 520px; }
  .solution-grid { grid-template-columns: repeat(2, 1fr); }
  .solution-card:nth-child(n) { grid-column: auto; }
  .smartlife-band { grid-template-columns: 130px 1fr; }
  .smartlife-mark { width: 120px; height: 120px; }
  .smartlife-band > .button { grid-column: 2; justify-self: start; }
  .compatibility-strip { grid-template-columns: 1fr 1fr; }
  .compatibility-strip > .button { grid-column: 2; justify-self: start; }
  .contact-option-grid { grid-template-columns: 1fr 1fr; }
  .contact-option:last-child { grid-column: 1 / -1; min-height: 300px; }
  .quote-request-shell { grid-template-columns: 0.82fr 1.18fr; }
  .form-pair { grid-template-columns: 1fr; }
}

@media (max-width: 820px) {
  .site-header { grid-template-columns: 1fr auto; height: 66px; padding: 0 16px; }
  .site-header.page-header, .site-header.is-scrolled { height: 62px; }
  .brand { min-width: 142px; height: 48px; }
  .brand-symbol { width: 38px; height: 38px; flex-basis: 38px; background-size: 87px 87px; }
  .brand-word { font-size: 13px; letter-spacing: 0.19em; }
  .menu-toggle { z-index: 2; width: 42px; height: 42px; display: grid; place-content: center; gap: 7px; border: 1px solid var(--line); color: #fff; background: rgba(6, 11, 18, 0.72); }
  .menu-toggle span:not(.sr-only) { width: 18px; height: 1px; background: #fff; transition: transform 180ms ease; }
  .menu-toggle[aria-expanded="true"] span:first-child { transform: translateY(4px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] span:nth-child(2) { transform: translateY(-4px) rotate(-45deg); }
  .main-nav { position: fixed; inset: 0; display: flex; flex-direction: column; align-items: flex-start; justify-content: center; gap: 22px; padding: 80px 32px; background: rgba(4, 9, 15, 0.985); transform: translateX(100%); transition: transform 280ms ease; }
  .main-nav.is-open { transform: translateX(0); }
  .main-nav a { font-family: var(--display); font-size: 34px; font-weight: 500; }
  .header-cta { display: none; }
  .hero-media img { object-position: 62% center; }
  .hero-vignette { background: linear-gradient(90deg, rgba(3, 8, 14, 0.97) 0%, rgba(3, 8, 14, 0.7) 58%, rgba(3, 8, 14, 0.2) 100%); }
  .hero-content { width: 78%; }
  .hero-index, .scroll-cue { display: none; }
  .product-focus, .experience, .process, .catalog-heading, .solutions-heading, .featured-product, .app-guide, .faq, .quote-prep, .quote-request-shell { grid-template-columns: 1fr; }
  .product-focus-media { min-height: 480px; }
  .use-case-line { grid-template-columns: 52px 0.7fr 1.3fr; }
  .experience-media { min-height: 500px; }
  .experience-media img { min-height: 500px; }
  .smartlife-band, .compatibility-strip { grid-template-columns: 1fr; }
  .smartlife-band > .button, .compatibility-strip > .button { grid-column: 1; }
  .process-copy, .app-guide-intro, .faq-heading { position: static; }
  .contact-card { grid-template-columns: 1fr; gap: 38px; }
  .catalog-heading .section-kicker { grid-column: auto; margin-bottom: 0; }
  .featured-product-media { grid-column: 1; grid-row: 1; min-height: 700px; }
  .featured-product-copy { grid-column: 1; grid-row: 2; }
  .story-copy { width: 88%; }
  .principle-grid, .company-band, .business-card-inner { grid-template-columns: 1fr; }
  .principle-grid article { min-height: 260px; }
  .principle-grid h3 { margin-top: 70px; }
  .company-band > div, .business-card-inner > div { border-right: 0; border-bottom: 1px solid var(--line); }
  .company-band > div:last-child, .business-card-inner > div:last-child { border-bottom: 0; }
  .quote-prep { gap: 50px; }
  .quote-request-media, .quote-request-media img { min-height: 620px; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 700px) {
  .solution-grid,
  .contact-option-grid { grid-template-columns: 1fr; }
  .solution-card:nth-child(n),
  .contact-option:last-child { grid-column: auto; }
}

@media (max-width: 620px) {
  .site-header { padding: 0 18px; }
  .hero { min-height: 820px; align-items: flex-end; }
  .hero-media img { object-position: 70% center; }
  .hero-vignette { background: linear-gradient(0deg, rgba(3, 8, 14, 0.99) 0%, rgba(3, 8, 14, 0.86) 55%, rgba(3, 8, 14, 0.2) 100%), linear-gradient(90deg, rgba(3, 8, 14, 0.5), transparent); }
  .hero-grid { opacity: 0.12; background-size: 64px 64px; }
  .hero-content { width: 100%; margin: 0; padding: 120px 20px 48px; }
  .eyebrow { margin-bottom: 18px; }
  .hero h1 { font-size: clamp(48px, 14vw, 67px); }
  .hero-copy { margin-top: 22px; font-size: 16px; }
  .hero-actions { align-items: stretch; flex-direction: column; gap: 10px; margin-top: 28px; }
  .hero-proof { display: grid; grid-template-columns: repeat(3, 1fr); margin-top: 38px; }
  .hero-proof div { min-width: 0; padding: 0 10px; }
  .hero-proof strong { font-size: 11px; }
  .hero-proof span { font-size: 9px; }
  .section { width: min(100% - 36px, var(--max)); padding: 88px 0; }
  .compact-section { padding-bottom: 44px; }
  .product-focus-copy h2, .catalog-heading h2, .solutions-heading h2, .app-guide h2, .faq h2, .story h2, .principles h2, .contact-options h2, .process h2, .contact h2 { font-size: clamp(41px, 12vw, 58px); }
  .product-focus-media { min-height: 360px; }
  .product-focus-actions { align-items: stretch; flex-direction: column; }
  .use-cases { width: calc(100% - 36px); margin-bottom: 20px; }
  .use-case-line { grid-template-columns: 38px 1fr; gap: 12px; padding: 22px 0; }
  .use-case-line p { grid-column: 2; }
  .experience-media, .experience-media img { min-height: 420px; }
  .experience-media img { object-position: 58% center; }
  .smartlife-band, .compatibility-strip, .featured-product, .support-visual, .company-band, .quote-prep { width: calc(100% - 24px); }
  .smartlife-band, .compatibility-strip { padding: 30px 24px; }
  .smartlife-mark { width: 90px; height: 90px; font-size: 38px; }
  .smartlife-mark { padding: 8px; }
  .process-list li, .guide-steps li { grid-template-columns: 48px 1fr; gap: 10px; }
  .contact-card { padding: 34px 24px; }
  .contact-action .button { width: 100%; }
  .page-hero { min-height: 560px; padding: 140px 20px 52px; }
  .page-hero h1 { font-size: clamp(48px, 13vw, 67px); }
  .page-hero p { font-size: 16px; }
  .page-hero-meta { gap: 0; margin-top: 42px; }
  .page-hero-meta span { padding: 0 10px; font-size: 9px; }
  .featured-product-media { min-height: 530px; }
  .featured-product-copy { padding: 32px 22px 42px; }
  .spec-grid { grid-template-columns: 1fr; }
  .solution-grid, .contact-option-grid { grid-template-columns: 1fr; }
  .solution-card { min-height: 390px; }
  .solution-card:last-child, .contact-option:last-child { grid-column: auto; }
  .solutions-heading { gap: 26px; margin-bottom: 46px; }
  .compatibility-strip { margin-bottom: 90px; }
  .support-visual { min-height: 760px; grid-template-columns: 1fr; align-items: end; }
  .support-visual-copy { margin: 12px; padding: 28px 22px; }
  .door-check-list { margin: 12px 34px 34px; }
  .faq-list summary { font-size: 18px; }
  .story { min-height: 620px; }
  .story-copy { width: 100%; }
  .story-number { opacity: 0.55; }
  .contact-option-grid { border-left: 1px solid var(--line); }
  .contact-option { min-height: 320px; }
  .contact-option strong { margin-top: 70px; }
  .quote-prep { padding: 44px 24px; }
  .quote-request { width: calc(100% - 24px); }
  .quote-request-media, .quote-request-media img { min-height: 480px; }
  .quote-request-media img { object-position: 50% center; }
  .quote-form-wrap { padding: 38px 22px 42px; }
  .quote-form-wrap h2 { font-size: clamp(38px, 11.5vw, 54px); }
  .field-meta { align-items: flex-start; flex-direction: column; gap: 2px; }
  .quote-submit { width: 100%; }
  .footer-top { grid-template-columns: 1fr; gap: 28px; }
  .footer-brand { grid-column: auto; }
  .footer-meta { flex-direction: column; gap: 8px; }
}

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