* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: 'Inter', sans-serif;
  color: #2B2F33;
  background: #FAF9F6;
  -webkit-font-smoothing: antialiased;
  line-height: 1.5;
}
img {
  max-width: 100%;
  display: block;
}
a {
  text-decoration: none;
  color: inherit;
}
ul {
  list-style: none;
}
button {
  font-family: inherit;
  cursor: pointer;
}

/* CONTAINER */
.container {
  max-width: 1380px;
  margin: 0 auto;
  padding: 0 32px;
}

@media (max-width: 678px) {
  .container {
    padding: 0 20px;
  }
}

@media (max-width: 414px) {
  .container {
    padding: 0 15px;
  }
}

/* SECTIONS PARENT CLASS */
.section {
  position: relative;
  width: 100%;
}
.section--pad {
  padding: 60px 0;
}

@media (max-width: 900px) {
  .section--pad {
    padding: 48px 0;
  }
}

@media (max-width: 414px) {
  .section--pad {
    padding: 40px 0;
  }
}

/* BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 13.5px;
  letter-spacing: .04em;
  text-transform: uppercase;
  padding: 15px 26px;
  border-radius: 8px;
  border: 1.5px solid transparent;
  transition: all .25s ease;
  white-space: nowrap;
}
.btn svg {
  width: 15px;
  height: 15px;
  transition: transform .25s ease;
  flex-shrink: 0;
}
.btn:hover svg {
  transform: translateX(4px);
}
.btn--navy {
  background: #0B2341;
  color: #fff;
}
.btn--navy:hover {
  background: #132c4f;
  box-shadow: 0 10px 24px rgba(11, 35, 65, .25);
  transform: translateY(-2px);
}
.btn--white {
  background: #fff;
  color: #0B2341;
}
.btn--white:hover {
  background: #F5F0E8;
  transform: translateY(-2px);
}
.btn--outline-navy {
  background: transparent;
  color: #0B2341;
  border-color: #0B2341;
}
.btn--outline-navy:hover {
  background: #0B2341 !important;
  color: #fff;
  transform: translateY(-2px);
}
.btn--outline-white {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, .4);
}
.btn--outline-white:hover {
  background: #fff;
  color: #0B2341;
  border-color: #fff;
  transform: translateY(-2px);
}

/* EYEBROW / SECTION HEAD */
.eyebrow-plain {
  font-size:21px;
  font-weight:600;
  letter-spacing:0.1em;
  text-transform: uppercase;
  color: #C6A25A;
  margin-bottom: 14px;
}
.section-head {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 48px;
}
.section-head .eyebrow-plain {
  text-align: center;
}
.section-head h2 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: clamp(36px, 3.2vw, 36px);
  color: #0B2341;
  line-height: 1.25;
}

@media (max-width: 414px) {
  .eyebrow-plain {
    margin-bottom: 4px;
  }
  .section-head {
    margin: 0px auto 30px;
  }
  .included-grid {
    gap: 15px !important;
  }
}

/* HERO */
.warranty-hero {
  background:
    radial-gradient(ellipse at 90% 10%, rgba(198, 162, 90, .12), transparent 55%),
    radial-gradient(ellipse at 4% 90%, rgba(198, 162, 90, .10), transparent 55%),
    #FAF9F6;
  text-align: center;
  padding-top: 60px;
  padding-bottom: 0;
}
.warranty-hero h1 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: clamp(32px, 4.2vw, 48px);
  line-height: 1.22;
  color: #0B2341;
  max-width: 780px;
  margin: 0 auto 22px;
}
.warranty-hero p {
  color: #6B7280;
  font-size:17px;
  max-width:800px;
  margin: 0 auto 36px;
}
.warranty-hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 44px;
}

@media (max-width: 768px) {
  .warranty-hero {
    padding-top: 50px;
  }
}

@media (max-width: 414px) {
  .warranty-hero {
    padding-top: 40px;
  }
}

/* FEATURE BAR */
.feature-bar {
  background: #fff;
  border: 1px solid #E6E8EB;
  border-radius: 18px;
  padding: 34px 40px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: -1px;
  position: relative;
  top: 24px;
}
.feature-bar-item {
  display: flex;
  align-items: flex-start;
  gap:15px;
  padding:0 15px;
  position: relative;
}
.feature-bar-item+.feature-bar-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 4px;
  height:70px;
  width: 1px;
  background: #E6E8EB;
}
.feature-bar-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1.5px solid #C6A25A;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #C6A25A;
  flex-shrink: 0;
}
.feature-bar-icon svg {
  width:30px;
  height:30px;
}
.feature-bar-item h4 {
  font-size:18px;
  font-weight:600;
  color: #0B2341;
  margin-bottom: 6px;
  line-height: 1.3;
}
.feature-bar-item p {
  font-size:17px;
  color: #6B7280;
  line-height: 1.5;
}

@media (max-width: 1000px) {
  .feature-bar {
    grid-template-columns: 1fr 1fr;
    position: static;
    top: 0;
  }
  .feature-bar-item+.feature-bar-item::before {
    display: none;
  }
}

@media (max-width: 767px) {
  .feature-bar-item {
    align-items: center;
    gap: 16px;
    flex-direction: column;
  }
  .feature-bar-item p {
    margin-bottom: 0;
  }
  .feature-bar {
    padding: 30px 20px;
  }
}

/* WHAT'S INCLUDED */
.whats-included {
  padding-top:60px;
  background: #f9f8f8;
}
.included-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 22px;
}
.included-card {
  background: #fff;
  border: 1px solid #E6E8EB;
  border-radius: 16px;
  padding: 30px 22px;
  text-align: center;
  transition: transform .25s ease, box-shadow .25s ease;
}
.included-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 40px -18px rgba(11, 35, 65, .16);
}
.included-icon {
  width:60px;
  height:60px;
  margin: 0 auto 18px;
  border-radius: 50%;
  background: #F5F0E8;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #C6A25A;
}
.included-icon svg {
  width:32px;
  height:32px;
}
.included-card h3 {
  font-size:17px;
  color: #0B2341;
  font-weight: 700;
  margin-bottom: 10px;
  line-height: 1.35;
}
.included-card p {
  font-size:17px;
  color: #6B7280;
  line-height: 1.6;
}

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

@media (max-width: 678px) {
  .whats-included {
    padding-top: 50px;
  }
}

@media (max-width: 600px) {
  .included-grid {
    grid-template-columns: 1fr;
  }
  .whats-included {
    padding-top: 40px;
  }
}

/* COVERED / NOT COVERED */
.coverage-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 40px;
}
.coverage-card {
  border-radius: 16px;
  padding: 32px 36px;
  position: relative;
  overflow: hidden;
}
.coverage-card.covered {
  background: #EAF3EC;
}
.coverage-card.not-covered {
  background: #FBEBE9;
}
.coverage-watermark {
  position: absolute;
  right: -10px;
  top: 0;
  bottom: 0;
  width: 200px;
  height: 200px;
  opacity: .5;
  margin: auto;
}
.coverage-card.covered .coverage-watermark {
  color: rgba(62, 142, 90, .18);
}
.coverage-card.not-covered .coverage-watermark {
  color: rgba(194, 72, 61, .18);
}
.coverage-title {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size:21px;
  font-weight:600;  
  text-transform: uppercase;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}
.coverage-card.covered .coverage-title {
  color: #3E8E5A;
}
.coverage-card.not-covered .coverage-title {
  color: #C2483D;
}
.coverage-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: relative;
  z-index: 1;
}
.coverage-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size:17px;
  color: #2B2F33;
  font-weight: 500;
}
.coverage-list li svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}
.coverage-card.covered .coverage-list li svg {
  color: #3E8E5A;
}
.coverage-card.not-covered .coverage-list li svg {
  color: #C2483D;
}

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

@media (max-width: 414px) {
  .coverage-card {
    padding: 30px;
  }
}

/* HOW SERVICE WORKS */
.service-steps {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  position: relative;
  gap: 6px;
}
.service-steps::before {
  content: '';
  position: absolute;
  top: 24px;
  left: 10%;
  right: 10%;
  border-top: 2px dotted #C6A25A;
  z-index: 0;
}
.service-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width:240px;
  position: relative;
  z-index: 1;
  transition: transform .25s ease;
}
.service-step:hover {
  transform: translateY(-6px);
}
.service-step-top {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}
.service-num {
  width:40px;
  height:40px;
  border-radius: 50%;
  background: #0B2341;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size:21px;
  font-weight: 700;
  flex-shrink: 0;
}
.service-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 1.5px solid #C6A25A;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #C6A25A;
  background: #fff;
}
.service-icon svg {
  width: 26px;
  height: 26px;
}
.service-step h4 {
  font-size:17px;
  font-weight: 700;
  color: #0B2341;
  margin-bottom: 8px;
}
.service-step p {
  font-size:17px;
  color: #6B7280;
  line-height: 1.6;
}

@media (max-width: 1100px) {
  .service-steps {
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
  }
  .service-steps::before {
    display: none;
  }
}

/* SERVICE PROMISE */
.promise-grid {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 44px;
  align-items: center;
}
.promise-left h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(24px, 2.8vw, 32px);
  color: #0B2341;
  line-height: 1.3;
  margin-bottom: 14px;
}
.promise-left p {
  color: #6B7280;
  font-size:17px;
  line-height: 1.6;
}
.promise-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.promise-item {
  text-align: center;
  padding: 0 10px;
}
.promise-icon {
  width:60px;
  height:60px;
  margin: 0 auto 16px;
  border-radius: 50%;
  background: #F5F0E8;
  color: #C6A25A;
  display: flex;
  align-items: center;
  justify-content: center;
}
.promise-icon svg {
  width:32px;
  height:32px;
}
.promise-item h4 {
  font-size:17px;
  font-weight: 700;
  color: #0B2341;
  margin-bottom: 10px;
  line-height: 1.35;
}
.promise-item p {
  font-size:17px;
  color: #6B7280;
  line-height: 1.6;
}

@media (max-width: 1100px) {
  .promise-grid {
    grid-template-columns: 1fr;
  }
  .promise-list {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 600px) {
  .promise-list {
    grid-template-columns: 1fr;
  }
}

/* FAQ */
.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px 24px;
}
.faq-item {
  background: #fff;
  border: 1px solid #E6E8EB;
  border-radius: 12px;
  padding: 20px 26px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  cursor: pointer;
  transition: box-shadow .25s ease, border-color .25s ease;
}
.faq-item:hover {
  border-color: #C6A25A;
  box-shadow: 0 12px 24px -14px rgba(11, 35, 65, .18);
}
.faq-item h4 {
  font-size:17px;
  font-weight: 700;
  color: #0B2341;
}
.faq-chevron {
  color: #C6A25A;
  flex-shrink: 0;
  transition: transform .25s ease;
}
.faq-chevron svg {
  width: 16px;
  height: 16px;
}
.faq-item:hover .faq-chevron {
  transform: translateY(3px);
}
details summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  list-style: none;
}
details summary::-webkit-details-marker {
  display: none;
}
details summary::after {
  content: "+";
  font-weight: 500;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: 1.5px solid #C6A25A;
  color: #C6A25A;
  display: flex;
  font-size:18pt;
  padding-bottom:4pt;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
details[open] summary::after {
  content: "−";
}
.faq-grid details p {
    font-size:17px;
    color: #6b7281;
    line-height: 1.55;
    background: #fff;
    border: 1px solid #E6E8EB;
    border-radius: 12px;
    padding: 20px 26px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    cursor: pointer;
    transition: box-shadow .25s ease, border-color .25s ease;
    margin-top: 7px;
}

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

/* HELP BAR */
.help-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  background: #f7f7f7;
  border: 1px solid #E6E8EB;
  border-radius: 18px;
  padding:34px 44px;
  flex-wrap: wrap;
}
.help-left {
  display: flex;
  align-items: center;
  gap: 22px;
}
.help-icon {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  border: 1.5px solid #C6A25A;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #C6A25A;
  flex-shrink: 0;
}
.help-icon svg {
  width: 26px;
  height: 26px;
}
.help-left .eyebrow-plain {
  margin-bottom: 8px;
}
.help-left h3 {
  font-family: 'Playfair Display', serif;
  font-size:28px;
  color: #0B2341;
  margin-bottom: 8px;
}
.help-left p {
  font-size:17px;
  color: #6B7280;
  max-width: 420px;
}
.help-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

@media (max-width: 900px) {
  .help-bar {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 414px) {
  .help-bar {
    padding: 30px;
  }
}






/* FINAL CTA */
.final-cta-banner {
  background: #0B2341;
  border-radius: 20px;
  padding:36px 44px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  position: relative;
  overflow: hidden;
}
.final-cta-banner::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 6px;
  background: #C6A25A;
}
.fcta-left {
  display: flex;
  align-items: center;
  gap: 20px;
  flex: 1;
  min-width:280px;
}
.fcta-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 1.5px solid #C6A25A;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #C6A25A;
  flex-shrink: 0;
}
.fcta-icon svg {
  width:32px;
  height:32px;
}
.fcta-left h3 {
  font-family: 'Playfair Display', serif;
  font-size:32px;
  color: #fff;
  margin-bottom: 6px;
}
.fcta-left p {
  color: rgba(255, 255, 255, .65);
  font-size:17px;
  max-width:450px;
}
.fcta-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.fcta-footer-row {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  width: 100%;
  margin-top: 20px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, .12);
  justify-content: center;
}
.fcta-footer-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #fff;
  font-size: 13px;
  font-weight: 500;
}
.fcta-footer-item svg {
  width: 14px;
  height: 14px;
  color: #C6A25A;
}
.fcta-sep {
  color: rgba(255, 255, 255, .3);
}

@media (max-width: 414px) {
  .final-cta-banner {
    padding: 30px;
  }
}

/* FINAL CTA */
.final-cta-banner {
  background: #0B2341;
  border-radius: 20px;
  padding: 40px 50px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
  position: relative;
  overflow: hidden;
}
.final-cta-banner::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 6px;
  background: #C6A25A;
}
.cta-left {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 1;
  min-width:280px;
}
.cta-icon-circle {
  width:60px;
  height:60px;
  border-radius: 50%;
  border: 1.5px solid #C6A25A;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #C6A25A;
  flex-shrink: 0;
}
.cta-icon-circle svg {
  width:34px;
  height:34px;
}
.cta-left h3 {
  font-family: 'Playfair Display', serif;
  font-size:22px;
  color: #ffffff;
  margin-bottom:6px;
  line-height: 1.3;
}
.cta-left p {
  color: rgba(255, 255, 255, .65);
  font-size:18px;
}
.cta-buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.cta-footer-row {
  display: flex;
  align-items: center;
  gap:32px;
  flex-wrap: wrap;
  margin-top:10px;
  padding-top:24px;
  border-top: 1px solid rgba(255, 255, 255, .12);
  width: 100%;
}
.cta-footer-item {
  display: flex;
  align-items: center;
  gap:10px;
  color: #fff;
  font-size:17px;
  font-weight: 600;
}
.cta-footer-item .dot {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #C6A25A;
  color: #0B2341;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.cta-footer-item .dot svg {
  width: 11px;
  height: 11px;
}

@media (max-width: 414px) {
  .final-cta-banner {
    padding: 30px;
    gap: 0;
  }
}
