:root {
  --navy: #143247;
  --blue: #1c78b5;
  --blue-dark: #125d91;
  --orange: #e66e2a;
  --orange-dark: #c85519;
  --cream: #f7f3ec;
  --light-blue: #eaf5fa;
  --white: #ffffff;
  --text: #293a45;
  --muted: #64747e;
  --border: #d8e1e5;
  --shadow: 0 14px 36px rgba(20, 50, 71, 0.11);
  --radius: 14px;
  --max-width: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background: var(--white);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.6;
}

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

.container {
  width: min(calc(100% - 40px), var(--max-width));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.97);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  min-height: 74px;
}

.logo {
  color: var(--navy);
  font-size: 1.35rem;
  font-weight: 900;
  letter-spacing: -0.8px;
}

.logo span {
  color: var(--orange);
}

.nav {
  display: flex;
  gap: 28px;
  color: var(--navy);
  font-size: 0.92rem;
  font-weight: 800;
}

.nav a:hover, .footer-links a:hover {
  color: var(--blue);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 22px;
  color: var(--white);
  background: var(--orange);
  border: 0;
  border-radius: 7px;
  cursor: pointer;
  font: inherit;
  font-weight: 800;
  transition: transform 0.2s ease, background 0.2s ease;
}

.btn:hover {
  background: var(--orange-dark);
  transform: translateY(-2px);
}

.btn-small {
  min-height: 41px;
  padding: 9px 16px;
  font-size: 0.87rem;
}

.btn-outline {
  color: var(--navy);
  background: transparent;
  border: 2px solid var(--navy);
}

.btn-outline:hover {
  color: var(--white);
  background: var(--navy);
}

.btn-light {
  color: var(--navy);
  background: var(--white);
}

.btn-light:hover {
  background: #eef6fa;
}

.hero {
  padding: 82px 0 74px;
  overflow: hidden;
  background: radial-gradient(circle at 85% 15%, rgba(28, 120, 181, 0.14), transparent 27rem), linear-gradient(135deg, #f9fcfd 0%, #e8f3f8 100%);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  align-items: center;
  gap: 58px;
}

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

h1, h2, h3 {
  color: var(--navy);
  line-height: 1.14;
}

h1 {
  margin: 0;
  font-size: clamp(2.4rem, 5vw, 4.35rem);
  letter-spacing: -2.4px;
}

h2 {
  margin: 0 0 15px;
  font-size: clamp(1.85rem, 3vw, 2.75rem);
  letter-spacing: -1.25px;
}

h3 {
  margin: 0 0 9px;
  font-size: 1.16rem;
}

.hero-text {
  max-width: 690px;
  margin: 22px 0 28px;
  color: #4c5e69;
  font-size: 1.08rem;
}

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

.hero-benefits {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
  margin-top: 28px;
  color: #52636e;
  font-size: 0.9rem;
  font-weight: 800;
}

.hero-panel {
  padding: 30px;
  background: var(--white);
  border: 1px solid #d5e4eb;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.panel-label {
  display: inline-block;
  margin-bottom: 12px;
  padding: 4px 10px;
  color: var(--blue);
  background: var(--light-blue);
  border-radius: 50px;
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.8px;
  text-transform: uppercase;
}

.hero-panel h2 {
  font-size: 1.55rem;
}

.damage-row {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 14px;
  align-items: center;
  padding: 15px 0;
  border-top: 1px solid var(--border);
}

.damage-row strong {
  color: var(--navy);
  font-size: 0.95rem;
}

.damage-row p {
  margin: 2px 0 0;
  color: var(--muted);
  font-size: 0.84rem;
}

.damage-icon {
  position: relative;
  width: 40px;
  height: 40px;
  background: #e8ddd0;
  border-radius: 5px;
}

.damage-icon::after {
  position: absolute;
  content: "";
  background: #566169;
  border-radius: 50%;
}

.small-hole::after {
  top: 16px;
  left: 16px;
  width: 8px;
  height: 8px;
}

.medium-hole::after {
  top: 10px;
  left: 10px;
  width: 20px;
  height: 20px;
}

.large-hole::after {
  top: 6px;
  left: 5px;
  width: 30px;
  height: 27px;
  border-radius: 46% 54% 48% 52%;
}

.text-link, .kit-card a {
  color: var(--blue);
  font-size: 0.9rem;
  font-weight: 900;
}

.text-link {
  display: inline-block;
  margin-top: 17px;
}

.section {
  padding: 90px 0;
}

.section-heading {
  max-width: 720px;
  margin-bottom: 42px;
}

.section-heading > p:last-child, .intro-copy {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 1.03rem;
}

.centered {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.kits-section {
  background: var(--white);
}

.kit-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.kit-card {
  position: relative;
  padding: 30px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.featured-card {
  border: 2px solid var(--blue);
  box-shadow: 0 12px 28px rgba(28, 120, 181, 0.12);
}

.tag {
  position: absolute;
  top: -13px;
  left: 24px;
  padding: 4px 10px;
  color: var(--white);
  background: var(--blue);
  border-radius: 30px;
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.7px;
  text-transform: uppercase;
}

.kit-number {
  margin-bottom: 18px;
  color: var(--orange);
  font-size: 0.83rem;
  font-weight: 900;
  letter-spacing: 1px;
}

.kit-card p, .kit-card li {
  color: var(--muted);
}

.kit-card ul {
  min-height: 102px;
  margin: 20px 0 22px;
  padding-left: 18px;
}

.instructions-section {
  background: var(--cream);
}

.instructions-grid {
  display: grid;
  grid-template-columns: 1.22fr 0.78fr;
  align-items: start;
  gap: 60px;
}

.steps {
  margin-top: 31px;
}

.step {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 16px;
  margin-bottom: 25px;
}

.step > span {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  color: var(--white);
  background: var(--blue);
  border-radius: 50%;
  font-size: 0.88rem;
  font-weight: 900;
}

.step h3 {
  margin: 3px 0 4px;
  font-size: 1.04rem;
}

.step p {
  margin: 0;
  color: var(--muted);
}

.help-card {
  padding: 32px;
  color: #d4e2ea;
  background: var(--navy);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.help-card h3 {
  color: var(--white);
  font-size: 1.45rem;
}

.help-card p:not(.eyebrow), .help-card li {
  color: #c5d7e1;
}

.help-card ul {
  margin: 19px 0 26px;
  padding-left: 18px;
}

.diy-pro-section {
  background: #f8fafb;
}

.decision-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 23px;
  max-width: 940px;
  margin: 0 auto;
}

.decision-card {
  padding: 32px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.pro-card {
  background: #eef8fc;
  border-color: #baddeb;
}

.decision-label {
  display: inline-block;
  margin-bottom: 15px;
  padding: 4px 10px;
  border-radius: 4px;
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 1px;
}

.diy-label {
  color: #2b846c;
  background: #e4f3ed;
}

.pro-label {
  color: var(--blue);
  background: #dceff8;
}

.decision-card ul {
  margin: 17px 0 0;
  padding: 0;
  list-style: none;
}

.decision-card li {
  position: relative;
  margin: 11px 0;
  padding-left: 27px;
  color: var(--muted);
}

.decision-card li::before {
  position: absolute;
  left: 0;
  color: var(--blue);
  content: "✓";
  font-weight: 900;
}

.quote-section {
  padding: 88px 0;
  background: var(--navy);
}

.quote-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  gap: 62px;
}

.quote-copy h2 {
  color: var(--white);
  font-size: clamp(2rem, 3.5vw, 3.15rem);
}

.quote-copy > p:not(.eyebrow) {
  max-width: 550px;
  color: #c4d6e1;
  font-size: 1.06rem;
}

.quote-points {
  display: grid;
  gap: 10px;
  margin-top: 26px;
  color: #edf6fa;
  font-weight: 800;
}

.quote-form {
  padding: 32px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.quote-form h3 {
  margin-bottom: 21px;
}

.quote-form label {
  display: block;
  margin-bottom: 15px;
  color: var(--navy);
  font-size: 0.82rem;
  font-weight: 800;
}

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

input, textarea, select {
  display: block;
  width: 100%;
  margin-top: 6px;
  padding: 12px 13px;
  color: var(--text);
  background: var(--white);
  border: 1px solid #cbd8df;
  border-radius: 6px;
  font: inherit;
  font-size: 0.93rem;
}

textarea {
  resize: vertical;
}

input:focus, textarea:focus, select:focus {
  border-color: var(--blue);
  outline: 3px solid rgba(28, 120, 181, 0.16);
}

.consent {
  display: flex !important;
  align-items: flex-start;
  gap: 9px;
  color: var(--muted) !important;
  font-size: 0.76rem !important;
  font-weight: 600 !important;
}

.consent input {
  width: auto;
  margin-top: 4px;
}

.quote-button {
  width: 100%;
}

.form-disclaimer {
  margin: 13px 0 0;
  color: #778791;
  font-size: 0.7rem;
  line-height: 1.45;
}

.faq-section {
  padding: 90px 0;
  background: var(--white);
}

.faq-container {
  width: min(calc(100% - 40px), 820px);
  margin: 0 auto;
}

details {
  margin-bottom: 12px;
  padding: 18px 20px;
  border: 1px solid var(--border);
  border-radius: 8px;
}

summary {
  color: var(--navy);
  cursor: pointer;
  font-weight: 800;
}

details p {
  margin: 13px 0 0;
  color: var(--muted);
}

.site-footer {
  padding: 48px 0 20px;
  color: #b7c9d4;
  background: #0c2739;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  padding-bottom: 35px;
}

.footer-logo {
  color: var(--white);
}

.site-footer p {
  margin: 9px 0 0;
  font-size: 0.88rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  align-content: flex-start;
  justify-content: flex-end;
  gap: 14px 22px;
  font-size: 0.88rem;
}

.footer-bottom {
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.13);
  color: #8199a9;
  font-size: 0.79rem;
}

@media (max-width: 900px) {
  .nav {
    display: none;
  }
}

@media (max-width: 900px) {
  .hero-grid, .instructions-grid, .quote-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 900px) {
  .hero-panel {
    max-width: 560px;
  }
}

@media (max-width: 900px) {
  .kit-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 900px) {
  .kit-card ul {
    min-height: auto;
  }
}

@media (max-width: 900px) {
  .help-card {
    max-width: 620px;
  }
}

@media (max-width: 620px) {
  .container, .faq-container {
    width: min(calc(100% - 28px), var(--max-width));
  }
}

@media (max-width: 620px) {
  .header-inner {
    min-height: 66px;
  }
}

@media (max-width: 620px) {
  .btn-small {
    display: none;
  }
}

@media (max-width: 620px) {
  .hero, .section, .faq-section {
    padding: 60px 0;
  }
}

@media (max-width: 620px) {
  h1 {
    letter-spacing: -1.55px;
  }
}

@media (max-width: 620px) {
  .hero-actions .btn {
    width: 100%;
  }
}

@media (max-width: 620px) {
  .hero-benefits, .decision-grid, .form-row {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  .decision-grid {
    gap: 18px;
  }
}

@media (max-width: 620px) {
  .quote-section {
    padding: 60px 0;
  }
}

@media (max-width: 620px) {
  .quote-form, .kit-card, .decision-card, .help-card {
    padding: 24px;
  }
}

@media (max-width: 620px) {
  .footer-inner {
    flex-direction: column;
  }
}

@media (max-width: 620px) {
  .footer-links {
    justify-content: flex-start;
  }
}

