:root {
  --navy-950: #020818;
  --navy-900: #06142f;
  --navy-800: #082052;
  --navy-700: #063b78;
  --blue-500: #0e9eea;
  --blue-300: #72d7ff;
  --red-600: #e90800;
  --red-700: #c70700;
  --whatsapp: #16a34a;
  --whatsapp-dark: #0f7f3a;
  --white: #ffffff;
  --gray-50: #f7f9fc;
  --gray-100: #edf2f7;
  --gray-300: #c8d3df;
  --gray-600: #657286;
  --shadow-soft: 0 22px 60px rgba(2, 8, 24, .24);
  --shadow-card: 0 16px 42px rgba(3, 18, 45, .14);
  --radius: 8px;
  --radius-lg: 18px;
  --container: 1160px;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  font-family: "Inter", "Poppins", Arial, sans-serif;
  color: var(--navy-950);
  background: linear-gradient(180deg, #f5f8fc 0%, #ffffff 42%, #f3f7fb 100%);
  overflow-x: hidden;
}

body.modal-open {
  overflow: hidden;
}

body.quote-success-open {
  overflow: hidden;
}

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

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

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

button {
  cursor: pointer;
}

[hidden] {
  display: none !important;
}

.container {
  width: min(100% - 32px, var(--container));
  margin-inline: auto;
}

.section {
  padding: 64px 0;
  position: relative;
}

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  right: 0;
  min-height: 72px;
  display: grid;
  grid-template-columns: minmax(132px, 190px) 1fr auto;
  align-items: center;
  gap: 14px;
  padding: 5px max(16px, calc((100vw - var(--container)) / 2));
  background: rgba(255, 255, 255, .92);
  border-bottom: 1px solid rgba(8, 32, 82, .08);
  box-shadow: 0 10px 28px rgba(2, 8, 24, .08);
  backdrop-filter: blur(18px);
}

.brand {
  display: flex;
  align-items: center;
  min-width: 0;
  max-width: 190px;
  height: 58px;
  overflow: hidden;
}

.brand img {
  width: auto;
  max-width: 100%;
  max-height: 58px;
  object-fit: contain;
}

.main-nav {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 6px;
  border: 1px solid rgba(8, 32, 82, .08);
  border-radius: 999px;
  background: rgba(247, 249, 252, .78);
}

.main-nav a {
  padding: 10px 13px;
  border-radius: 999px;
  color: var(--navy-800);
  font-size: 14px;
  font-weight: 800;
  transition: color .2s ease, background .2s ease;
}

.main-nav a:hover {
  color: var(--white);
  background: var(--navy-800);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(8, 32, 82, .12);
  border-radius: var(--radius);
  background: var(--white);
  place-items: center;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 3px auto;
  border-radius: 2px;
  background: var(--navy-900);
  transition: transform .2s ease, opacity .2s ease;
}

.nav-toggle.is-open span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.nav-toggle.is-open span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.is-open span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 13px 18px;
  border: 0;
  border-radius: var(--radius);
  font-family: "Poppins", "Inter", Arial, sans-serif;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.2;
  white-space: nowrap;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, border-color .2s ease;
}

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

.btn-primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--red-600), var(--red-700));
  box-shadow: 0 14px 34px rgba(233, 8, 0, .28);
}

.btn-whatsapp {
  gap: 9px;
  color: var(--white);
  background: linear-gradient(135deg, var(--whatsapp), var(--whatsapp-dark));
  box-shadow: 0 14px 34px rgba(22, 163, 74, .28);
}

.btn-whatsapp:hover {
  box-shadow: 0 18px 42px rgba(22, 163, 74, .36);
}

.btn-whatsapp svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
  flex: 0 0 auto;
}

.btn-direct {
  gap: 10px;
  color: var(--white);
  background: linear-gradient(135deg, var(--red-600), var(--red-700));
  box-shadow: 0 16px 36px rgba(233, 8, 0, .30);
}

.btn-direct:hover {
  box-shadow: 0 20px 46px rgba(233, 8, 0, .40);
}

.btn-direct svg {
  width: 21px;
  height: 21px;
  fill: currentColor;
  flex: 0 0 auto;
}

main {
  display: flex;
  flex-direction: column;
}

.hero {
  order: 1;
}

.quote-section {
  order: 2;
}

.visual-selector {
  order: 3;
}

.coverage {
  order: 4;
}

.trust {
  order: 5;
}

.faq {
  order: 6;
}

.final-cta {
  order: 7;
}

.btn-secondary,
.btn-ghost {
  color: var(--navy-900);
  background: rgba(255, 255, 255, .92);
  border: 1px solid rgba(8, 32, 82, .12);
  box-shadow: 0 10px 26px rgba(2, 8, 24, .08);
}

.btn-lg {
  min-height: 54px;
  padding: 16px 22px;
  font-size: 15px;
}

.btn-full {
  width: 100%;
}

.glass-card {
  border: 1px solid rgba(255, 255, 255, .38);
  border-radius: var(--radius-lg);
  background: linear-gradient(145deg, rgba(255,255,255,.94), rgba(255,255,255,.76));
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(18px);
}

.quick-hero {
  position: relative;
  min-height: 100svh;
  padding: 108px 0 48px;
  color: var(--white);
  overflow: hidden;
  background:
    radial-gradient(circle at 82% 16%, rgba(14, 158, 234, .34), transparent 30%),
    radial-gradient(circle at 18% 76%, rgba(233, 8, 0, .18), transparent 28%),
    linear-gradient(135deg, #020818 0%, #082052 54%, #06142f 100%);
}

.hero-bg {
  position: absolute;
  inset: 0;
  opacity: .44;
  background:
    linear-gradient(112deg, transparent 0 42%, rgba(255,255,255,.10) 42.2% 43.4%, transparent 43.6%),
    linear-gradient(104deg, transparent 0 58%, rgba(114,215,255,.15) 58.2% 59.4%, transparent 59.6%),
    repeating-linear-gradient(90deg, rgba(255,255,255,.04) 0 1px, transparent 1px 110px);
}

.quick-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: .72fr 1.28fr;
  gap: 30px;
  align-items: start;
}

.hero-direct .quick-layout {
  grid-template-columns: minmax(0, .88fr) minmax(320px, 1.12fr);
  justify-content: stretch;
  min-height: calc(100svh - 156px);
  align-items: center;
}

.hero-direct .quick-copy {
  padding-top: 0;
}

.hero-direct .quick-copy p {
  margin-bottom: 28px;
}

.hero-direct .quick-card {
  display: block;
  padding: 18px;
  overflow: hidden;
}

.hero-direct .quick-card > :not(.hero-vehicle-card) {
  display: none;
}

.btn-hero {
  min-height: 62px;
  padding: 18px 26px;
  font-size: 16px;
}

.hero-vehicle-card {
  display: grid;
  gap: 14px;
  min-height: 0;
}

.vehicle-card-top {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  align-items: center;
}

.vehicle-card-top span {
  color: var(--red-600);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.vehicle-card-top strong {
  color: var(--navy-900);
  font-size: 13px;
  text-align: right;
}

.hero-vehicle-shell {
  min-height: auto;
  padding: 8px;
  background:
    radial-gradient(circle at 50% 38%, rgba(14, 158, 234, .16), transparent 42%),
    linear-gradient(145deg, rgba(255,255,255,.78), rgba(218,237,250,.58));
  box-shadow: none;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
  color: var(--red-600);
  font-family: "Poppins", "Inter", Arial, sans-serif;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 22px;
  height: 3px;
  border-radius: 999px;
  background: currentColor;
}

.quick-hero .eyebrow {
  color: #ff3b34;
}

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

h1,
h2 {
  font-family: "Montserrat", "Inter", Arial, sans-serif;
  letter-spacing: 0;
}

h1 {
  max-width: 560px;
  margin-bottom: 16px;
  font-size: clamp(42px, 6vw, 74px);
  line-height: .96;
  font-weight: 900;
}

h2 {
  margin-bottom: 12px;
  color: var(--navy-950);
  font-size: clamp(28px, 3.4vw, 44px);
  line-height: 1.02;
  font-weight: 900;
}

h3 {
  font-family: "Poppins", "Inter", Arial, sans-serif;
}

.quick-copy {
  padding-top: 22px;
}

.quick-copy p {
  max-width: 470px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, .82);
  font-size: clamp(17px, 1.7vw, 20px);
  line-height: 1.55;
}

.quick-card {
  padding: 22px;
  color: var(--navy-950);
}

.quick-card-head {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
}

.quick-card-head h2 {
  margin-bottom: 6px;
  font-size: clamp(24px, 3vw, 36px);
}

.quick-card-head p {
  margin-bottom: 0;
  color: var(--gray-600);
  font-weight: 700;
}

.quick-card-head span {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  max-width: 220px;
  padding: 8px 12px;
  border-radius: 999px;
  color: var(--white);
  background: linear-gradient(135deg, var(--navy-900), var(--navy-700));
  font-size: 12px;
  font-weight: 900;
}

.quick-services {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 18px;
}

.service-option {
  min-height: 76px;
  padding: 14px;
  border: 1px solid rgba(8, 32, 82, .10);
  border-radius: var(--radius);
  color: var(--navy-900);
  background:
    linear-gradient(145deg, rgba(255,255,255,.96), rgba(239,247,253,.9));
  box-shadow: 0 10px 26px rgba(2, 8, 24, .07);
  font-family: "Poppins", "Inter", Arial, sans-serif;
  font-size: 14px;
  font-weight: 900;
  line-height: 1.16;
  text-align: left;
  white-space: normal;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease, background .2s ease;
}

.service-option:hover {
  transform: translateY(-3px);
  border-color: rgba(14, 158, 234, .34);
  box-shadow: var(--shadow-card);
}

.service-option.is-selected {
  color: var(--white);
  border-color: rgba(233, 8, 0, .74);
  background: linear-gradient(135deg, var(--navy-900), var(--navy-700) 62%, var(--red-600));
  box-shadow: 0 16px 34px rgba(8, 32, 82, .24);
}

.quick-form {
  display: grid;
  gap: 16px;
  padding-top: 16px;
  border-top: 1px solid rgba(8, 32, 82, .10);
}

.quick-fields {
  grid-template-columns: 1fr 1fr 1fr;
}

.quick-lamination {
  padding: 16px;
  border: 1px solid rgba(14, 158, 234, .18);
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(8, 32, 82, .06), rgba(14, 158, 234, .08));
}

.section-heading {
  max-width: 700px;
  margin-bottom: 26px;
}

.section-heading p,
.selector-copy p,
.quote-copy p {
  color: var(--gray-600);
  line-height: 1.6;
}

.visual-selector {
  overflow: hidden;
  background: linear-gradient(180deg, #f4f8fd 0%, #ffffff 100%);
}

.visual-selector.is-support {
  padding-top: 46px;
}

.selector-layout,
.quote-layout,
.faq-layout {
  display: grid;
  grid-template-columns: .86fr 1.14fr;
  gap: 34px;
  align-items: start;
}

.selector-copy,
.quote-copy {
  position: sticky;
  top: 104px;
}

.selected-part {
  display: grid;
  gap: 8px;
  max-width: 380px;
  margin-top: 22px;
  padding: 18px;
  border-left: 4px solid var(--red-600);
  border-radius: var(--radius);
  color: var(--white);
  background: linear-gradient(135deg, var(--navy-900), var(--navy-700));
  box-shadow: var(--shadow-card);
}

.selected-part span {
  color: rgba(255, 255, 255, .72);
  font-size: 13px;
}

.selected-part strong {
  font-family: "Poppins", "Inter", Arial, sans-serif;
  font-size: 20px;
}

.vehicle-shell {
  position: relative;
  min-height: 560px;
  padding: 14px;
  border-radius: var(--radius-lg);
  background: linear-gradient(145deg, rgba(255,255,255,.94), rgba(218,237,250,.76));
  box-shadow: var(--shadow-soft);
}

.hero-vehicle-shell {
  min-height: clamp(420px, 58vw, 760px);
}

.vehicle-svg {
  width: 100%;
  height: auto;
  max-height: 720px;
}

.vehicle-shell > .vehicle-svg:not(.premium-vehicle) {
  display: none;
}

.premium-vehicle {
  max-height: 760px;
  margin-inline: auto;
  filter: drop-shadow(0 22px 42px rgba(2, 8, 24, .18));
}

.vehicle-image-wrap {
  position: relative;
  max-width: 100%;
  margin-inline: auto;
  overflow: hidden;
  border-radius: 18px;
  background: #fff;
  aspect-ratio: 1173 / 1341;
}

.vehicle-base-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  user-select: none;
}

.vehicle-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-height: none;
  margin: 0;
  filter: none;
}

.vehicle-shell > .diagram-vehicle:not(.vehicle-overlay) {
  display: none;
}

.vehicle-overlay.premium-vehicle .premium-part {
  fill: rgba(14, 158, 234, 0);
  stroke: rgba(14, 158, 234, 0);
  stroke-width: 8;
  cursor: default;
  pointer-events: none;
  transition: fill .2s ease, stroke .2s ease, filter .2s ease, opacity .2s ease;
}

.vehicle-overlay.premium-vehicle .premium-part:hover,
.vehicle-overlay.premium-vehicle .premium-part.is-hovered,
.vehicle-overlay.premium-vehicle .premium-part.is-active {
  fill: rgba(14, 158, 234, .24);
  stroke: rgba(28, 91, 236, .94);
  filter: drop-shadow(0 0 16px rgba(14, 158, 234, .72));
}

.vehicle-overlay.premium-vehicle .accent-left:hover,
.vehicle-overlay.premium-vehicle .accent-left.is-hovered,
.vehicle-overlay.premium-vehicle .accent-left.is-active,
.vehicle-overlay.premium-vehicle .accent-right:hover,
.vehicle-overlay.premium-vehicle .accent-right.is-hovered,
.vehicle-overlay.premium-vehicle .accent-right.is-active {
  fill: rgba(233, 8, 0, .22);
  stroke: rgba(233, 8, 0, .95);
  filter: drop-shadow(0 0 16px rgba(233, 8, 0, .45));
}

.car-shadow {
  fill: rgba(2, 8, 24, .12);
}

.car-body-premium {
  fill: #eef5fb;
  stroke: rgba(255,255,255,.72);
  stroke-width: 5;
}

.car-hood-premium,
.car-trunk-premium {
  fill: rgba(255,255,255,.58);
  stroke: rgba(8, 32, 82, .12);
  stroke-width: 2;
}

.car-roof-premium {
  fill: #111927;
  stroke: rgba(255,255,255,.18);
  stroke-width: 2;
}

.premium-vehicle .premium-part {
  fill: rgba(19, 93, 151, .72);
  stroke: rgba(114, 215, 255, .74);
  stroke-width: 3;
  stroke-linejoin: round;
  stroke-linecap: round;
  cursor: pointer;
  transition: fill .22s ease, stroke .22s ease, stroke-width .22s ease, filter .22s ease, opacity .22s ease;
}

.premium-vehicle .windshield,
.premium-vehicle .rear-window {
  fill: rgba(6, 20, 47, .82);
}

.premium-vehicle .side-left,
.premium-vehicle .side-right {
  fill: rgba(19, 93, 151, .66);
}

.premium-vehicle .accent-left,
.premium-vehicle .accent-right {
  fill: rgba(114, 215, 255, .34);
  stroke: rgba(114, 215, 255, .48);
  stroke-width: 7;
  opacity: .76;
}

.premium-vehicle .premium-part:hover,
.premium-vehicle .premium-part.is-hovered,
.premium-vehicle .premium-part.is-active {
  fill: rgba(114, 215, 255, .88);
  stroke: var(--red-600);
  filter: drop-shadow(0 0 10px rgba(114, 215, 255, .84)) drop-shadow(0 0 18px rgba(233, 8, 0, .22));
}

.premium-vehicle .accent-left:hover,
.premium-vehicle .accent-left.is-hovered,
.premium-vehicle .accent-left.is-active,
.premium-vehicle .accent-right:hover,
.premium-vehicle .accent-right.is-hovered,
.premium-vehicle .accent-right.is-active {
  opacity: 1;
  fill: rgba(114, 215, 255, .72);
}

.premium-vehicle .premium-part.is-active {
  stroke-width: 6;
}

.premium-vehicle .accent-left.is-active,
.premium-vehicle .accent-right.is-active {
  stroke-width: 8;
}

.premium-vehicle .part-hit-area {
  fill: transparent;
  stroke: transparent;
  cursor: default;
  pointer-events: none;
}

.premium-vehicle .label-hit-area {
  fill: transparent;
  stroke: transparent;
  cursor: pointer;
  pointer-events: all;
  transition: fill .18s ease, stroke .18s ease, filter .18s ease;
}

.premium-vehicle .label-hit-area:hover,
.premium-vehicle .label-hit-area.is-hovered,
.premium-vehicle .label-hit-area:focus-visible {
  fill: rgba(14, 158, 234, .07);
  stroke: rgba(28, 91, 236, .22);
  filter: drop-shadow(0 8px 16px rgba(2, 8, 24, .12));
  outline: none;
}

.diagram-guides,
.diagram-labels {
  pointer-events: none;
}

.guide-line {
  fill: none;
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
  filter: drop-shadow(0 4px 8px rgba(2, 8, 24, .12));
}

.guide-blue {
  stroke: rgba(28, 91, 236, .92);
}

.guide-red {
  stroke: rgba(233, 8, 0, .88);
}

.guide-dot {
  fill: #ffffff;
  stroke: rgba(28, 91, 236, .95);
  stroke-width: 3;
  filter: drop-shadow(0 4px 8px rgba(28, 91, 236, .25));
}

.diagram-label rect {
  fill: rgba(255,255,255,.94);
  stroke: rgba(8, 32, 82, .12);
  stroke-width: 1.4;
  filter: drop-shadow(0 10px 22px rgba(2, 8, 24, .12));
}

.diagram-label text {
  fill: #071832;
  font-family: "Montserrat", "Inter", sans-serif;
  font-size: 18px;
  font-weight: 800;
  text-anchor: middle;
  letter-spacing: 0;
}

.top-label text,
.bottom-label text,
.sunroof-label text {
  font-size: 21px;
}

.compact-label text {
  font-size: 17px;
}

.diagram-vehicle + .vehicle-tooltip {
  display: none;
}

.vehicle-body {
  fill: url(#bodyPaint);
  stroke: rgba(8, 32, 82, .18);
  stroke-width: 3;
}

.vehicle-center {
  fill: rgba(255, 255, 255, .42);
}

.hood,
.trunk {
  fill: rgba(255,255,255,.46);
  stroke: rgba(8, 32, 82, .16);
  stroke-width: 2;
}

.roof {
  fill: #11131a;
  stroke: rgba(255,255,255,.18);
  stroke-width: 2;
}

.glass-part {
  fill: url(#blueGlass);
  stroke: rgba(12, 55, 255, .78);
  stroke-width: 4;
  transition: fill .2s ease, stroke .2s ease, filter .2s ease, opacity .2s ease;
  cursor: pointer;
  transform-origin: center;
}

.main-glass {
  fill: url(#darkGlass);
}

.glass-part.accent {
  stroke: rgba(233, 8, 0, .88);
}

.glass-part:hover,
.glass-part.is-active,
.glass-part.is-hovered {
  fill: rgba(114, 215, 255, .86);
  stroke: var(--red-600);
  filter: url(#partGlow);
}

.glass-part.is-active {
  stroke-width: 7;
}

.vehicle-tooltip {
  position: absolute;
  left: 50%;
  top: 18px;
  transform: translateX(-50%);
  max-width: calc(100% - 32px);
  padding: 8px 12px;
  border-radius: 999px;
  color: var(--white);
  background: rgba(2, 8, 24, .84);
  border: 1px solid rgba(255,255,255,.14);
  box-shadow: 0 14px 32px rgba(2, 8, 24, .18);
  font-size: 12px;
  font-weight: 800;
  pointer-events: none;
  backdrop-filter: blur(10px);
}

.quote-section {
  background:
    radial-gradient(circle at 20% 20%, rgba(14, 158, 234, .10), transparent 32%),
    linear-gradient(180deg, #ffffff, #f4f8fd);
}

.quote-copy .btn {
  margin-top: 10px;
}

.quote-form {
  padding: 24px;
  background: rgba(255, 255, 255, .88);
}

.detail-service-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin-bottom: 18px;
}

.detail-service-grid button {
  min-height: 44px;
  display: flex;
  align-items: center;
  padding: 10px 12px;
  border: 1px solid rgba(8, 32, 82, .10);
  border-radius: var(--radius);
  color: var(--navy-900);
  background: linear-gradient(145deg, rgba(255,255,255,.96), rgba(239,247,253,.9));
  font-size: 13px;
  font-weight: 800;
  text-align: left;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease, background .2s ease;
}

.detail-service-grid button:hover,
.detail-service-grid button.is-selected {
  transform: translateY(-2px);
  color: var(--white);
  border-color: rgba(233, 8, 0, .5);
  background: linear-gradient(135deg, var(--navy-900), var(--navy-700) 58%, var(--red-600));
  box-shadow: var(--shadow-card);
}

label.field-highlight select,
label.field-highlight input,
label.field-highlight textarea {
  border-color: var(--red-600);
  box-shadow: 0 0 0 4px rgba(233, 8, 0, .12), 0 12px 24px rgba(233, 8, 0, .14);
}

.photo-note {
  margin: 14px 0 0;
  padding: 12px 14px;
  border: 1px solid rgba(14, 158, 234, .16);
  border-radius: var(--radius);
  color: var(--navy-800);
  background: rgba(239, 247, 253, .78);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.45;
}

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

label,
.checkbox-panel {
  color: var(--navy-900);
  font-size: 13px;
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  margin-top: 8px;
  border: 1px solid rgba(8, 32, 82, .13);
  border-radius: var(--radius);
  color: var(--navy-950);
  background: rgba(255, 255, 255, .96);
  outline: none;
  transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}

input,
select {
  min-height: 48px;
  padding: 0 13px;
}

textarea {
  padding: 13px;
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: rgba(14, 158, 234, .82);
  box-shadow: 0 0 0 4px rgba(14, 158, 234, .12);
}

label.has-error input,
label.has-error select,
label.has-error textarea {
  border-color: rgba(233, 8, 0, .76);
  box-shadow: 0 0 0 4px rgba(233, 8, 0, .1);
}

label small {
  display: block;
  min-height: 17px;
  margin-top: 6px;
  color: var(--red-600);
  font-size: 12px;
  font-weight: 700;
}

.full-label {
  display: block;
  margin-top: 16px;
}

.lamination-panel {
  margin-top: 18px;
  padding: 18px;
  border: 1px solid rgba(14, 158, 234, .18);
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(8, 32, 82, .06), rgba(14, 158, 234, .08));
}

.service-panel {
  margin-top: 18px;
  padding: 18px;
  border: 1px solid rgba(14, 158, 234, .18);
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(8, 32, 82, .06), rgba(14, 158, 234, .08));
}

.option-panel {
  margin-top: 14px;
}

.compact-select {
  display: grid;
  gap: 8px;
  margin-top: 14px;
  color: var(--navy-900);
  font-size: 13px;
  font-weight: 800;
}

.panel-title {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 16px;
}

.panel-title span {
  color: var(--red-600);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.checkbox-panel {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 16px 0 0;
  padding: 0;
  border: 0;
}

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

.checkbox-panel legend {
  grid-column: 1 / -1;
  margin-bottom: 2px;
}

.checkbox-panel label {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 42px;
  padding: 10px;
  border: 1px solid rgba(8, 32, 82, .10);
  border-radius: var(--radius);
  background: rgba(255,255,255,.74);
  font-size: 13px;
  font-weight: 700;
}

.checkbox-panel input {
  width: 18px;
  min-width: 18px;
  height: 18px;
  min-height: 18px;
  margin: 0;
  accent-color: var(--red-600);
}

.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 20px;
}

.form-feedback {
  min-height: 22px;
  margin: 0;
  color: var(--navy-800);
  font-weight: 800;
}

.form-feedback.success {
  color: #057a43;
}

.form-feedback.error {
  color: var(--red-600);
}

.coverage {
  color: var(--white);
  background: linear-gradient(135deg, var(--navy-950), var(--navy-800));
}

.coverage h2 {
  color: var(--white);
}

.city-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
}

.city-grid span {
  min-height: 56px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: var(--radius);
  background: rgba(255,255,255,.08);
  color: rgba(255,255,255,.9);
  font-weight: 800;
  backdrop-filter: blur(10px);
}

.trust {
  background: linear-gradient(180deg, #ffffff, #edf4fb);
}

.trust-card {
  display: grid;
  grid-template-columns: 1fr .8fr;
  gap: 30px;
  padding: 30px;
  align-items: center;
}

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

.trust-card li {
  position: relative;
  padding: 14px 16px 14px 42px;
  border-radius: var(--radius);
  background: rgba(255,255,255,.74);
  color: var(--navy-800);
  font-weight: 800;
}

.trust-card li::before {
  content: "";
  position: absolute;
  left: 16px;
  top: 50%;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--red-600);
  transform: translateY(-50%);
}

.faq {
  background: #f7f9fc;
}

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

details {
  border: 1px solid rgba(8, 32, 82, .08);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 10px 26px rgba(2, 8, 24, .05);
  overflow: hidden;
}

summary {
  padding: 18px 20px;
  color: var(--navy-900);
  font-family: "Poppins", "Inter", Arial, sans-serif;
  font-weight: 800;
  list-style: none;
  cursor: pointer;
}

summary::-webkit-details-marker {
  display: none;
}

details p {
  margin: 0;
  padding: 0 20px 18px;
  color: var(--gray-600);
  line-height: 1.6;
}

.final-cta {
  padding: 52px 0;
  color: var(--white);
  background:
    linear-gradient(100deg, rgba(233, 8, 0, .92), rgba(8, 32, 82, .94)),
    linear-gradient(135deg, var(--navy-900), var(--navy-700));
}

.final-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.final-cta h2 {
  margin: 0;
  color: var(--white);
}

.site-footer {
  padding: 40px 0;
  color: rgba(255,255,255,.78);
  background: var(--navy-950);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr 1fr .8fr;
  gap: 28px;
}

.footer-logo {
  width: 210px;
  max-width: 100%;
  margin-bottom: 12px;
  padding: 8px;
  border-radius: var(--radius);
  background: var(--white);
}

.site-footer strong,
.site-footer h3 {
  color: var(--white);
}

.site-footer h3 {
  margin-bottom: 10px;
  font-size: 16px;
}

.site-footer p {
  margin: 0;
  line-height: 1.6;
}

.footer-link {
  color: #ff544e;
  font-weight: 900;
}

.modal {
  position: fixed;
  z-index: 200;
  inset: 0;
  display: none;
  place-items: center;
  padding: 18px;
}

.modal.is-open {
  display: grid;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(2, 8, 24, .72);
  backdrop-filter: blur(10px);
}

.modal-card {
  position: relative;
  z-index: 1;
  width: min(100%, 460px);
  padding: 24px;
  animation: modalIn .22s ease-out;
}

.modal-card h2 {
  margin-bottom: 8px;
  font-size: 32px;
}

.modal-card p {
  color: var(--gray-600);
  line-height: 1.55;
}

#quoteForm button[type="submit"].btn-primary:disabled {
  cursor: not-allowed;
  opacity: .82;
  transform: none;
  box-shadow: none;
}

.quote-success-modal {
  position: fixed;
  z-index: 1000;
  inset: 0;
  display: none;
  place-items: center;
  padding: 20px;
}

.quote-success-modal.is-open {
  display: grid;
}

.quote-success-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(2, 8, 24, .82);
  backdrop-filter: blur(8px);
}

.quote-success-card {
  position: relative;
  z-index: 1;
  width: min(100%, 560px);
  padding: 36px;
  border: 1px solid rgba(8, 32, 82, .14);
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: 0 28px 80px rgba(2, 8, 24, .38);
  text-align: center;
  animation: modalIn .22s ease-out;
}

.quote-success-icon {
  display: grid;
  width: 70px;
  height: 70px;
  margin: 0 auto 20px;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: #16a34a;
  box-shadow: 0 12px 30px rgba(22, 163, 74, .3);
  font-size: 38px;
  font-weight: 900;
}

.quote-success-card h2 {
  margin: 0 0 16px;
  color: var(--navy-900);
  font-size: 32px;
}

.quote-success-card p {
  margin: 8px 0;
  color: var(--gray-600);
  line-height: 1.6;
}

.quote-success-card strong {
  display: block;
  margin: 20px 0 24px;
  color: var(--navy-900);
}

.quote-success-button {
  width: 100%;
  min-height: 54px;
}

@media (max-width: 600px) {
  .quote-success-modal {
    padding: 16px;
  }

  .quote-success-card {
    padding: 28px 20px;
  }

  .quote-success-card h2 {
    font-size: 27px;
  }
}

.modal-card form {
  display: grid;
  gap: 14px;
}

.modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(8, 32, 82, .12);
  border-radius: var(--radius);
  color: var(--navy-900);
  background: rgba(255,255,255,.84);
  font-size: 28px;
  line-height: 1;
}

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

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

@keyframes modalIn {
  from {
    opacity: 0;
    transform: translateY(18px) scale(.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@media (max-width: 1080px) {
  .site-header {
    grid-template-columns: minmax(130px, 180px) auto 1fr;
  }

  .nav-toggle {
    display: block;
    order: 3;
    justify-self: end;
  }

  .main-nav {
    position: fixed;
    top: 72px;
    left: 16px;
    right: 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    border-radius: var(--radius);
    background: rgba(255, 255, 255, .98);
    box-shadow: var(--shadow-card);
  }

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

  .main-nav a {
    text-align: center;
  }

  .header-cta {
    justify-self: end;
  }

  .quick-layout,
  .selector-layout,
  .quote-layout,
  .faq-layout,
  .trust-card {
    grid-template-columns: 1fr;
  }

  .quick-copy,
  .selector-copy,
  .quote-copy {
    position: static;
    padding-top: 0;
  }

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

  .hero-direct .quick-layout {
    min-height: auto;
  }

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

  .quick-fields {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .city-grid {
    grid-template-columns: repeat(3, 1fr);
  }

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

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

  .container {
    width: min(100% - 24px, var(--container));
  }

  .section {
    padding: 46px 0;
  }

  .site-header {
    min-height: 60px;
    grid-template-columns: 1fr auto auto;
    gap: 10px;
    padding: 6px 10px;
  }

  .brand {
    height: 44px;
    max-width: 138px;
  }

  .brand img {
    max-height: 44px;
  }

  .header-cta {
    min-height: 40px;
    padding: 10px 12px;
    font-size: 0;
  }

  .header-cta svg {
    width: 22px;
    height: 22px;
  }

  .nav-toggle {
    order: 0;
  }

  .main-nav {
    top: 60px;
  }

  .quick-hero {
    min-height: auto;
    padding: 74px 0 24px;
  }

  .quick-layout {
    gap: 18px;
  }

  .quick-copy p {
    font-size: 14px;
    line-height: 1.45;
  }

  h1 {
    margin-bottom: 8px;
    font-size: clamp(32px, 11vw, 44px);
  }

  h2 {
    font-size: clamp(24px, 8vw, 32px);
  }

  .quick-card {
    padding: 14px;
  }

  .quick-card-head {
    display: grid;
    gap: 10px;
    margin-bottom: 12px;
  }

  .quick-card-head p {
    display: none;
  }

  .quick-card-head span {
    max-width: 100%;
    width: fit-content;
  }

  .quick-fields,
  .form-grid,
  .checkbox-panel,
  .checkbox-panel.compact,
  .city-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .quick-services {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    margin-bottom: 12px;
  }

  .hero-direct .quick-layout {
    gap: 0;
  }

  .hero-direct .quick-copy p {
    margin-bottom: 18px;
  }

  .btn-hero {
    width: 100%;
    min-height: 54px;
    padding: 15px 16px;
    font-size: 14px;
  }

  .service-option {
    min-height: 58px;
    padding: 10px;
    font-size: 13px;
  }

  .quick-form {
    gap: 10px;
    padding-top: 10px;
  }

  input,
  select {
    min-height: 44px;
  }

  .quick-lamination,
  .quote-form,
  .trust-card {
    padding: 16px;
  }

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

  .panel-title {
    display: grid;
  }

  .form-actions,
  .final-cta-inner {
    flex-direction: column;
    align-items: stretch;
  }

  .form-actions .btn,
  .final-cta-inner .btn {
    width: 100%;
  }

  .vehicle-shell {
    min-height: clamp(380px, 126vw, 640px);
    padding: 6px;
    overflow: hidden;
  }

  .premium-vehicle {
    max-height: 640px;
  }

  .diagram-label text {
    font-size: 20px;
  }

  .top-label text,
  .bottom-label text,
  .sunroof-label text {
    font-size: 23px;
  }

  .guide-line {
    stroke-width: 2.8;
  }

  .vehicle-tooltip {
    top: 12px;
    font-size: 12px;
  }

  .modal {
    align-items: end;
    padding: 10px;
  }

  .modal-card {
    width: 100%;
    max-height: 92svh;
    overflow: auto;
    padding: 18px;
    border-radius: 18px 18px 8px 8px;
  }

  .modal-card h2 {
    font-size: 28px;
  }
}

@media (max-width: 380px) {
  .site-header {
    gap: 7px;
  }

  .brand {
    max-width: 122px;
  }

  .header-cta {
    padding: 9px 10px;
  }

  .service-option {
    font-size: 12px;
  }
}

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