
:root {
  --navy: #0b0754;
  --navy-soft: #232d7d;
  --ink: #425566;
  --bg: #f4f4f4;
  --card: #ffffff;
  --green: #2eb872;
  --green-dark: #26a161;
  --coral: #f4816c;
  --coral-soft: #f2907b;
  --peri-100: #eef1fc;
  --peri-200: #dfe5fa;
  --peri-300: #c9d2f5;
  --peri-400: #a9b6ef;
  --peri-500: #8b9be8;
  --chip: #e6e4f7;
  --line: #e3e6ef;
  --star: #21ba72;
  --radius: 12px;
  --shadow: 0 6px 18px rgba(11, 7, 84, 0.08);
  --shadow-lg: 0 14px 40px rgba(11, 7, 84, 0.13);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: "Rubik", -apple-system, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--bg);
  font-size: 16px;
  line-height: 1.6;
}

img, svg { max-width: 100%; display: block; }

a { color: inherit; text-decoration: none; }

.wrap { max-width: 1180px; margin: 0 auto; padding: 0 24px; }


.site-header {
  background: #fff;
  position: relative;
  z-index: 20;
}
.site-header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 88px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 24px;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.3px;
}
.logo svg { width: 38px; height: 38px; flex: none; }

.main-nav { display: flex; align-items: center; gap: 28px; }
.main-nav a {
  color: var(--navy);
  font-weight: 500;
  font-size: 16px;
}
.main-nav a:hover { color: var(--coral); }
.main-nav .caret {
  display: inline-block;
  margin-left: 6px;
  color: var(--coral);
  font-size: 12px;
  transform: translateY(-1px);
}

.nav-drop { position: relative; }
.nav-drop > a { cursor: pointer; }
.nav-drop-menu {
  display: none;
  position: absolute;
  top: calc(100% + 12px);
  right: 0;
  background: #fff;
  border-radius: 10px;
  box-shadow: var(--shadow-lg);
  padding: 10px 0;
  min-width: 270px;
  white-space: nowrap;
}
.nav-drop-menu::before {
  content: '';
  position: absolute;
  top: -14px;
  left: 0;
  right: 0;
  height: 14px;
}
.nav-drop:hover .nav-drop-menu, .nav-drop:focus-within .nav-drop-menu { display: block; }
.nav-drop-menu a {
  display: block;
  padding: 9px 22px;
  font-weight: 400;
  color: var(--ink);
}
.nav-drop-menu a:hover { background: var(--peri-100); color: var(--navy); }


.hero {
  position: relative;
  overflow: hidden;
  padding: 70px 0 90px;
}
.hero-blobs {
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
}
.hero-blobs svg { width: 100%; height: 100%; }

h1, .h1 {
  font-size: clamp(34px, 5vw, 54px);
  font-weight: 800;
  color: var(--navy);
  line-height: 1.15;
  letter-spacing: -0.5px;
}
.hero-title { text-align: center; }
.hero-sub {
  text-align: center;
  font-size: 19px;
  margin: 22px auto 48px;
  max-width: 820px;
}

.brand-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px;
}
.brand-card {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--card);
  border-radius: 10px;
  box-shadow: var(--shadow);
  padding: 26px 24px;
  min-height: 108px;
  font-size: 18px;
  font-weight: 500;
  color: var(--navy);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.brand-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.brand-mark {
  width: 54px;
  height: 54px;
  flex: none;
  border-radius: 50%;
  border: 2.5px solid var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 20px;
  color: var(--navy);
  letter-spacing: 0.5px;
}

.brand-logo {
  width: 76px;
  height: 46px;
  flex: none;
  display: flex;
  align-items: center;
  justify-content: center;
}
.brand-logo svg { width: 100%; height: 100%; fill: var(--navy); }
.checkout-card-head .brand-logo svg { fill: #f4f8ff; }

.menu-ico {
  width: 38px;
  height: 27px;
  flex: none;
  fill: var(--navy);
}
.nav-drop-menu a {
  display: flex;
  align-items: center;
  gap: 12px;
}

.ribbon {
  position: absolute;
  top: 14px;
  right: -34px;
  transform: rotate(45deg);
  background: var(--coral);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  padding: 5px 40px;
  letter-spacing: 0.4px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.15);
}


.section { padding: 90px 0; }
.section-title {
  font-size: clamp(28px, 3.6vw, 40px);
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.4px;
}
.section-title.center { text-align: center; }

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.split p { margin-top: 18px; }
.split b, .split strong { color: var(--navy); }


.brand-hero { padding: 46px 0 60px; }
.brand-hero-head {
  display: flex;
  align-items: center;
  gap: 22px;
}
.brand-hero-head .brand-mark { width: 62px; height: 62px; font-size: 24px; background: #fff; }
.brand-hero-sub { font-size: 19px; margin-top: 18px; }

.brand-hero-cols {
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  gap: 50px;
  align-items: start;
  margin-top: 34px;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 40px;
}
.trust-item {
  flex: 1 1 120px;
  text-align: center;
  font-size: 13px;
  font-weight: 700;
  color: var(--navy);
}
.trust-item svg { width: 30px; height: 30px; margin: 0 auto 8px; }

.serial-card {
  position: relative;
  overflow: hidden;
  background: var(--card);
  border-radius: 14px;
  box-shadow: var(--shadow-lg);
  padding: 40px 36px 30px;
}
.serial-card label {
  display: block;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 12px;
  font-size: 17px;
}
.serial-card input[type="text"],
.serial-card input[type="email"] {
  width: 100%;
  border: 1.5px solid #d9dbe4;
  border-radius: 8px;
  padding: 14px 16px;
  font-size: 18px;
  font-family: inherit;
  color: var(--navy);
  outline: none;
}
.serial-card select.serial-select {
  width: 100%;
  border: 1.5px solid #d9dbe4;
  border-radius: 8px;
  padding: 13px 16px;
  font-size: 17px;
  font-family: inherit;
  color: var(--navy);
  background: #fff;
  outline: none;
  cursor: pointer;
}
.form-2col { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

.serial-card textarea {
  width: 100%;
  border: 1.5px solid #d9dbe4;
  border-radius: 8px;
  padding: 14px 16px;
  font-size: 17px;
  font-family: inherit;
  line-height: 1.5;
  color: var(--navy);
  outline: none;
  resize: vertical;
}
.serial-card select.serial-select:focus { border-color: var(--navy); }
.serial-card input:focus, .serial-card textarea:focus { border-color: var(--navy); }
.serial-card .btn { width: 100%; margin-top: 18px; }
.form-note {
  margin-top: 22px;
  text-align: center;
  font-size: 11.5px;
  letter-spacing: 0.3px;
  text-transform: uppercase;
  color: #7a8699;
}
.form-note b { color: var(--navy); }
.form-error {
  display: none;
  margin-top: 12px;
  color: #d9534f;
  font-size: 14px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 0;
  cursor: pointer;
  font-family: inherit;
  font-size: 18px;
  font-weight: 700;
  border-radius: 8px;
  padding: 15px 30px;
  transition: background 0.15s ease;
}
.btn-green { background: var(--green); color: #fff; }
.btn-green:hover { background: var(--green-dark); }
.btn-outline {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255,255,255,.55);
  text-decoration: none;
}
.btn-outline:hover { background: rgba(255,255,255,.12); border-color: #fff; }
.btn-navy { background: var(--navy); color: #fff; }
.btn-navy:hover { background: var(--navy-soft); }


.howto-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 50px;
}
.howto-card {
  background: var(--card);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 22px;
}
.howto-card .photo {
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 20px;
}
.howto-card h3 {
  font-size: 21px;
  color: var(--navy);
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.howto-card p { margin-top: 12px; font-size: 15.5px; }

.chip {
  display: inline-block;
  background: var(--chip);
  color: var(--navy);
  font-weight: 700;
  border-radius: 6px;
  padding: 2px 10px;
  font-size: 15px;
}
.chip-key {
  padding: 1px 9px;
  border-radius: 5px;
}

.howto-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  margin-top: 40px;
}
.howto-intro p { margin-bottom: 14px; }


.model-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-top: 34px;
  max-width: 860px;
  margin-left: auto;
  margin-right: auto;
}
.model-chips .chip { font-size: 16px; padding: 6px 16px; font-weight: 500; }

.entry-steps {
  max-width: 720px;
  margin: 40px auto 0;
  list-style: none;
  counter-reset: entry;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.entry-steps li {
  counter-increment: entry;
  background: var(--card);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 18px 24px 18px 66px;
  position: relative;
  font-size: 16.5px;
}
.entry-steps li::before {
  content: counter(entry);
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--green);
  color: #fff;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}
.entry-steps b { color: var(--navy); }


.wait-grid {
  display: flex;
  gap: 24px;
  justify-content: center;
  align-items: stretch;
  flex-wrap: wrap;
  width: 100%;
  max-width: 820px;
}
.wait-order {
  flex: 1 1 360px;
  background: var(--card);
  border-radius: 10px;
  box-shadow: var(--shadow-lg);
  padding: 34px 36px;
  text-align: center;
}
.wait-order .brand-logo { margin: 0 auto 16px; width: 74px; height: 50px; }
.wait-order .rows { margin: 6px 0 22px; }
.wait-order .rows > div { margin-bottom: 10px; font-weight: 700; color: var(--navy); }
.wait-order .pay-badges { justify-content: center; margin-top: 18px; }
.wait-order .pay-badge { border: 1px solid var(--line); }
.wait-free {
  flex: 1 1 320px;
  background: var(--navy);
  border-radius: 10px;
  color: #fff;
  padding: 0 30px 30px;
  text-align: center;
}
.timer-box {
  display: inline-block;
  background: var(--coral);
  border-radius: 0 0 10px 10px;
  padding: 14px 26px 10px;
  margin-bottom: 22px;
}
.timer-digits { font-size: 34px; font-weight: 800; letter-spacing: 1px; }
.timer-labels { font-size: 13px; font-weight: 600; opacity: 0.9; }
.wait-free h2 { font-size: 24px; margin-bottom: 14px; }
.wait-free p { font-size: 15.5px; line-height: 1.65; }
.wait-free a { color: #fff; font-weight: 700; text-decoration: underline; }


.legal-prose p { margin-bottom: 18px; font-size: 16.5px; }
.legal-prose b { color: var(--navy); }
.legal-prose a { color: var(--navy); font-weight: 600; text-decoration: underline; }


.promise-banner {
  width: 100%;
  max-width: 640px;
  background: var(--navy);
  color: #fff;
  border-radius: 10px;
  padding: 20px 26px;
  display: flex;
  align-items: center;
  gap: 20px;
  margin: 0 auto 26px;
  font-size: 15.5px;
}
.promise-banner .stamp {
  flex: none;
  width: 58px;
  height: 44px;
  border: 2.5px solid #2eb872;
  border-radius: 8px;
  color: #2eb872;
  font-weight: 800;
  font-size: 11px;
  line-height: 1.15;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  transform: rotate(-8deg);
}
.pay-card-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
}
.pay-card-head h2 { color: var(--navy); font-size: 30px; font-weight: 800; }
.price-badge {
  flex: none;
  background: var(--green);
  color: #fff;
  border-radius: 8px;
  padding: 10px 20px;
  text-align: center;
  font-weight: 800;
  font-size: 26px;
  line-height: 1.1;
}
.price-badge .was {
  display: block;
  font-size: 14px;
  font-weight: 600;
  text-decoration: line-through;
  opacity: 0.8;
}
.instant-line { font-size: 15px; margin: 6px 0 18px; color: #7a8699; }
.pay-fieldset {
  border: 1.5px solid var(--line);
  border-radius: 10px;
  padding: 20px;
  position: relative;
  margin-top: 12px;
}
.pay-fieldset .legend {
  position: absolute;
  top: -10px;
  left: 16px;
  background: #fff;
  padding: 0 8px;
  font-size: 13px;
  color: #7a8699;
}
.card-input {
  width: 100%;
  border: 0;
  font-family: inherit;
  font-size: 16px;
  color: var(--navy);
  outline: none;
  padding: 4px 0 14px;
}
.btn-pay-soft {
  width: 100%;
  background: #a5dfc2;
  color: #fff;
  font-weight: 700;
  font-size: 18px;
  border: 0;
  border-radius: 8px;
  padding: 14px;
  cursor: pointer;
}
.btn-paypal {
  width: 100%;
  background: #0070ba;
  color: #fff;
  font-style: italic;
  font-weight: 800;
  font-size: 19px;
  border: 0;
  border-radius: 6px;
  padding: 15px;
  cursor: pointer;
  margin-top: 16px;
}
.pay-secure {
  text-align: center;
  font-size: 14.5px;
  color: var(--ink);
  margin-top: 18px;
}


.reviews-grid {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 70px;
  align-items: start;
}
.review-score {
  font-size: 76px;
  font-weight: 800;
  color: var(--navy);
  line-height: 1.1;
  margin: 18px 0 4px;
}
.stars { color: var(--star); font-size: 22px; letter-spacing: 3px; }
.review-count { font-size: 15px; margin: 8px 0 26px; }

.review-list {
  display: flex;
  flex-direction: column;
  gap: 26px;
  max-height: 700px;
  overflow-y: auto;
  padding-right: 10px;
}
.review-card {
  background: var(--card);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
}
.review-card .body { padding: 24px 26px; }
.review-card h4 {
  color: var(--navy);
  font-size: 17px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}
.verified {
  background: #e7f7ef;
  color: var(--star);
  font-size: 12px;
  font-weight: 600;
  border-radius: 999px;
  padding: 4px 12px;
  white-space: nowrap;
}
.review-card .stars { font-size: 15px; margin: 8px 0 10px; }
.review-card .meta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid var(--line);
  font-size: 14px;
  font-weight: 600;
  color: var(--navy);
}
.review-card .meta > div {
  padding: 14px 10px;
  text-align: center;
}
.review-card .meta > div + div { border-left: 1px solid var(--line); }


.site-footer {
  background: linear-gradient(135deg, #0a0647 0%, #1c2470 60%, #2b3a8f 100%);
  color: #fff;
  padding: 70px 0 40px;
  margin-top: 40px;
}
.footer-cols {
  display: grid;
  grid-template-columns: 1fr 1fr 1.4fr;
  gap: 50px;
}
.footer-cols h4 { font-size: 19px; margin-bottom: 20px; }
.footer-cols a {
  display: block;
  margin-bottom: 14px;
  font-size: 15.5px;
  color: #dfe3f5;
}
.footer-cols a:hover { color: #fff; }
.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 26px;
  font-weight: 800;
  margin-bottom: 18px;
}
.footer-logo svg { width: 40px; height: 40px; }
.pay-badges { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 18px; }
.pay-badge {
  background: #fff;
  color: var(--navy);
  font-size: 12px;
  font-weight: 800;
  font-style: italic;
  border-radius: 5px;
  padding: 5px 12px;
}
.footer-fine { font-size: 14.5px; font-weight: 600; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.25);
  margin-top: 46px;
  padding-top: 24px;
  font-size: 14px;
  color: #dfe3f5;
}
.footer-bottom a { color: #dfe3f5; }
.footer-bottom a:hover { color: #fff; }


.checkout-header {
  background: #fff;
}
.checkout-header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 88px;
}
.encryption {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--ink);
  font-size: 15.5px;
}
.trust-strip {
  background: var(--navy);
  color: #fff;
  text-align: center;
  font-size: 15px;
  padding: 11px 16px;
}
.trust-strip svg { display: inline-block; vertical-align: -4px; margin-right: 6px; }

.checkout-page {
  min-height: calc(100vh - 130px);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}
.checkout-main {
  flex: 1;
  display: flex;
  justify-content: center;
  padding: 50px 24px 240px;
  position: relative;
  z-index: 2;
}
.checkout-card {
  width: 100%;
  max-width: 640px;
  background: var(--card);
  border-radius: 10px;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  align-self: flex-start;
}
.checkout-card-head {
  background: var(--navy);
  color: #fff;
  text-align: center;
  padding: 26px 20px 22px;
}
.checkout-card-head .brand-mark {
  border-color: #fff;
  color: #fff;
  margin: 0 auto 12px;
  width: 58px;
  height: 58px;
}
.checkout-card-head .status {
  font-weight: 700;
  font-size: 17px;
}
.checkout-card-body { padding: 30px 34px 36px; }
.checkout-card-body .congrats { font-size: 16.5px; }
.serial-line { margin: 14px 0 26px; font-weight: 700; color: var(--navy); }
.checkout-card-body label {
  display: block;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
}
.checkout-card-body input {
  width: 100%;
  border: 1.5px solid #d9dbe4;
  border-radius: 8px;
  padding: 13px 15px;
  font-size: 17px;
  font-family: inherit;
  color: var(--navy);
  outline: none;
}
.checkout-card-body input:focus { border-color: var(--navy); }
.checkout-card-body .btn { margin-top: 18px; }

.city-scape {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  z-index: 1;
  pointer-events: none;
}
.city-scape svg { width: 100%; height: auto; display: block; }

.checkout-footer {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 18px 16px 26px;
  font-size: 14px;
}
.checkout-footer .links a {
  color: var(--navy);
  font-weight: 500;
  margin: 0 16px;
}
.checkout-footer .copy { margin-top: 10px; color: #7a8699; }

.code-reveal {
  text-align: center;
  margin: 26px 0 10px;
}
.code-digits {
  display: inline-flex;
  gap: 12px;
}
.code-digit {
  width: 58px;
  height: 70px;
  border-radius: 10px;
  background: var(--peri-100);
  border: 2px solid var(--peri-300);
  color: var(--navy);
  font-size: 34px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
}
.entry-help {
  background: var(--peri-100);
  border-radius: 10px;
  padding: 18px 22px;
  font-size: 15px;
  margin-top: 24px;
}
.entry-help b { color: var(--navy); }

.order-summary {
  border: 1.5px solid var(--line);
  border-radius: 10px;
  margin: 20px 0 24px;
  font-size: 15.5px;
}
.order-summary .row {
  display: flex;
  justify-content: space-between;
  padding: 13px 18px;
}
.order-summary .row + .row { border-top: 1px solid var(--line); }
.order-summary .row b { color: var(--navy); }
.order-summary .total {
  background: var(--peri-100);
  font-weight: 700;
  color: var(--navy);
  border-radius: 0 0 9px 9px;
}
.pay-methods { display: flex; flex-direction: column; gap: 12px; }

.steps {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0;
  margin-bottom: 34px;
  font-size: 13.5px;
  font-weight: 600;
  color: #98a2b6;
}
.steps .step {
  display: flex;
  align-items: center;
  gap: 8px;
}
.steps .dot {
  width: 26px; height: 26px;
  border-radius: 50%;
  background: #dfe3ee;
  color: #7a8699;
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; font-weight: 700;
}
.steps .step.active { color: var(--navy); }
.steps .step.active .dot { background: var(--green); color: #fff; }
.steps .bar {
  width: 60px; height: 2px;
  background: #dfe3ee;
  margin: 0 12px;
}


@media (max-width: 980px) {
  .brand-grid { grid-template-columns: repeat(2, 1fr); }
  .howto-grid { grid-template-columns: repeat(2, 1fr); }
  .split, .brand-hero-cols, .howto-intro { grid-template-columns: 1fr; gap: 40px; }
  .reviews-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer-cols { grid-template-columns: 1fr 1fr; }
  .main-nav { gap: 18px; }
}

@media (max-width: 640px) {
  .brand-grid { grid-template-columns: 1fr; }
  .howto-grid { grid-template-columns: 1fr; }
  .site-header .wrap { flex-direction: column; height: auto; padding: 16px 24px; gap: 10px; }
  .footer-cols { grid-template-columns: 1fr; }

  .main-nav { flex-wrap: wrap; justify-content: center; row-gap: 8px; }

  .nav-drop:hover .nav-drop-menu, .nav-drop:focus-within .nav-drop-menu { display: none; }

  .brand-hero-head { flex-direction: column; align-items: flex-start; gap: 12px; }

  .form-2col { grid-template-columns: 1fr; }
  .hero { padding: 50px 0 60px; }
  .section { padding: 60px 0; }
  .checkout-card-body { padding: 24px 22px 30px; }
  .code-digit { width: 46px; height: 58px; font-size: 26px; }
}


.scroll-x { overflow-x: auto; }
table.fitment { border-collapse: collapse; width: 100%; font-size: 15px; background: #fff;
  border-radius: 12px; overflow: hidden; box-shadow: var(--shadow); }
table.fitment th { text-align: left; padding: 14px 16px; background: var(--navy); color: #fff;
  font-size: 13px; text-transform: uppercase; letter-spacing: .04em; white-space: nowrap; }
table.fitment td { padding: 14px 16px; border-bottom: 1px solid #e8ebf5; vertical-align: top; }
table.fitment tr:last-child td { border-bottom: none; }
table.fitment .years { color: #5b6b7d; font-size: 13px; }
table.fitment .v-instant { color: #1f7a44; font-weight: 700; }
table.fitment .v-manual { color: #a4671b; font-weight: 700; }
table.fitment .v-none { color: #8c1c13; font-weight: 700; }
.fitment-note { color: #5b6b7d; font-size: 14px; line-height: 1.6; margin: 18px auto 0; max-width: 900px; }
.brand-hero-cols p { margin: 0 0 14px; }
a.chip { text-decoration: none; }
a.chip:hover { background: var(--navy); color: #fff; }

.pay-note {
  margin-top: 12px;
  font-size: 13px;
  line-height: 1.5;
  color: #5b6b7d;
  text-align: left;
}
.pay-note a { color: #0b0754; font-weight: 700; }

.cf-row { margin-top: 14px; }
.cf-label {
  display: block;
  font-weight: 700;
  color: var(--navy);
  font-size: 14px;
  margin-bottom: 6px;
}
.cf-field {
  height: 48px;
  padding: 0 6px;
  border: 1px solid #d7dced;
  border-radius: 10px;
  background: #fff;
  transition: border-color .15s;
}
.cf-field:focus-within { border-color: #0b0754; }
.cf-two { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.cf-submit { width: 100%; margin-top: 16px; }
.cf-or {
  position: relative;
  text-align: center;
  margin: 18px 0 14px;
  color: #8b96a8;
  font-size: 12.5px;
  text-transform: uppercase;
  letter-spacing: .4px;
}
.cf-or::before {
  content: "";
  position: absolute;
  left: 0; right: 0; top: 50%;
  border-top: 1px solid #e6e9f2;
}
.cf-or span { position: relative; background: #fff; padding: 0 12px; }
@media (max-width: 420px) { .cf-two { grid-template-columns: 1fr; } }

.fb-box {
  border: 1px solid #e6e9f2;
  border-radius: 10px;
  background: #fff;
  padding: 18px 22px;
  margin-top: 24px;
}
.fb-box h3 { font-size: 18px; color: var(--navy); }

.fb-box .btn-outline {
  color: var(--navy);
  border-color: #c8cee0;
}
.fb-box .btn-outline:hover { background: #f3f5fb; border-color: var(--navy); }

.fb-good {
  border: 1px solid #b7e2c8;
  background: linear-gradient(180deg, #f2fbf5 0%, #ffffff 60%);
}
.fb-good h3 { color: #1f7a44; }
.fb-bad {
  border: 1px solid #f0c4c0;
  background: linear-gradient(180deg, #fdf3f2 0%, #ffffff 60%);
}
.fb-bad h3 { color: #a8352b; }
.fb-bad u { text-decoration-color: #a8352b; }
