/* Warranty landing — scoped to .warranty-landing */
.warranty-landing {
  --gold: #D0C396;
  --gold-light: #DDD4AE;
  --gold-dark: #A89A6A;
  --black: #111111;
  --white: #FFFFFF;
  --light-gray: #F5F5F5;
  --dark: #1A1A1A;
  --text: #222222;
  --muted: rgba(34, 34, 34, 0.58);
  --hero-media-max: 360px;

  *,
  *::before,
  *::after {
    box-sizing: border-box;
  }
  h1, h2, h3, h4 {
    margin-block-start:0px;
    margin-block-end: 0px;
  }

  .nav {
    background: var(--black);
    padding: 16px 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: sticky;
    top: 0;
    z-index: 100;
  }
  .nav-logo {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    line-height: 0;
  }
  .nav-logo svg {
    height: 32px;
    width: auto;
    max-width: min(367px, 85vw);
    display: block;
  }
  .nav-logo svg path {
    fill: var(--white);
  }

  .hero {
    background: var(--black);
    padding: 80px 24px 100px;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    overflow: hidden;
  }
  .hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 70% 50% at 50% 0%, rgba(208, 195, 150, 0.1) 0%, transparent 60%);
    pointer-events: none;
  }

  .hero-banner {
    text-align: center;
    position: relative;
    z-index: 1;
    max-width: 960px;
    width: 100%;
    margin-bottom: 52px;
  }

  .hero-stars {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 24px;
  }

  .hero-stars-icons {
    color: var(--gold);
    font-size: 22px;
    letter-spacing: 4px;
  }
  .hero-stars-text {
    font-size: 16px;
    font-weight: 500;
    color: var(--white);
    font-variant-numeric: tabular-nums;
  }

  .hero-banner h1 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(64px, 11vw, 120px);
    line-height: 0.9;
    color: var(--white);
    letter-spacing: 0.02em;
    margin-bottom: 24px;
  }

  .hero-banner .sub1 {
    font-style: italic;
    font-size: clamp(16px, 2.2vw, 22px);
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 10px;
    font-family: 'DM Serif Display', serif;
  }

  .hero-banner .sub2 {
    font-style: italic;
    font-size: clamp(15px, 2vw, 20px);
    color: var(--white);
    text-decoration: underline;
    font-family: 'DM Serif Display', serif;
    font-weight: 400;
  }

  .hero-banner-video {
    width: 100%;
    height: auto;
    display: block;
    vertical-align: top;
  }

  .hero-video-wrap {
    position: relative;
    max-width: var(--hero-media-max);
    width: 100%;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.5);
  }
  .hero-video-wrap .hero-banner-video {
    width: 100%;
    height: auto;
    display: block;
    vertical-align: top;
  }
  .hero-video-ui {
    position: absolute;
    inset: 0;
    pointer-events: none;
  }
  .hero-video-dim {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.32);
    transition: opacity 0.4s ease, background 0.4s ease;
  }
  .hero-video-wrap.is-playing .hero-video-dim {
    opacity: 0.45;
    background: rgba(0, 0, 0, 0.15);
  }
  .hero-video-label {
    position: absolute;
    left: 50%;
    top: calc(50% + 46px);
    transform: translateX(-50%);
    font-size: 11px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.88);
    white-space: nowrap;
    transition: opacity 0.4s ease, visibility 0.4s ease;
    pointer-events: none;
  }
  .hero-video-wrap.is-playing .hero-video-label {
    opacity: 0;
    visibility: hidden;
  }

  .hero-video-rail {
    position: absolute;
    left: 50%;
    bottom: 50%;
    transform: translate(-50%, 50%);
    width: 132px;
    height: 68px;
    z-index: 2;
    pointer-events: none;
    transition: bottom 0.5s cubic-bezier(0.4, 0, 0.2, 1), transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  }
  .hero-video-wrap.is-playing .hero-video-rail {
    bottom: 14px;
    transform: translate(-50%, 0);
  }
  .hero-video-rail > * {
    pointer-events: auto;
  }

  .hero-video-btn--play {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    border: none;
    background: none;
    padding: 0;
    cursor: pointer;
    transition: opacity 0.32s ease, transform 0.38s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.32s;
  }
  .hero-video-wrap.is-playing .hero-video-btn--play {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translate(-50%, -50%) scale(0.72);
  }

  .hero-video-bar {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    align-items: center;
    gap: 12px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.28s ease, visibility 0.28s;
  }
  .hero-video-wrap.is-playing .hero-video-bar {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .hero-video-bar-btn {
    border: none;
    background: none;
    padding: 0;
    cursor: pointer;
    opacity: 0;
    transform: scale(0.5) translateY(20px);
    transition: opacity 0.38s ease, transform 0.52s cubic-bezier(0.34, 1.15, 0.64, 1);
  }
  .hero-video-wrap.is-playing .hero-video-bar-btn {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
  .hero-video-wrap.is-playing .hero-video-bar-btn:nth-child(1) {
    transition-delay: 0.1s;
  }
  .hero-video-wrap.is-playing .hero-video-bar-btn:nth-child(2) {
    transition-delay: 0.2s;
  }

  .hero-video-circle {
    width: 68px;
    height: 68px;
    border-radius: 50%;
    background: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
    transition: transform 0.25s ease;
  }
  .hero-video-circle--sm {
    width: 52px;
    height: 52px;
  }
  .hero-video-btn--play:hover .hero-video-circle {
    transform: scale(1.05);
  }
  .hero-video-btn--play:active .hero-video-circle {
    transform: scale(0.98);
  }
  .hero-video-bar-btn:hover .hero-video-circle {
    transform: scale(1.06);
  }
  .hero-video-bar-btn:active .hero-video-circle {
    transform: scale(0.96);
  }

  .hero-video-icon-play {
    width: 0;
    height: 0;
    border: 10px solid transparent;
    border-left: 18px solid var(--black);
    margin-left: 12px;
  }
  .hero-video-icon-pause {
    width: 22px;
    height: 22px;
    position: relative;
  }
  .hero-video-icon-pause::before,
  .hero-video-icon-pause::after {
    content: '';
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 5px;
    height: 18px;
    border-radius: 1px;
    background: var(--black);
  }
  .hero-video-icon-pause::before {
    left: 3px;
  }
  .hero-video-icon-pause::after {
    right: 3px;
  }

  .hero-video-icon-vol-svg {
    width: 22px;
    height: 22px;
    color: var(--black);
    display: block;
  }
  .hero-video-icon-vol-svg .vol-off {
    opacity: 0;
    transition: opacity 0.2s ease;
  }
  .hero-video-icon-vol-svg .vol-on {
    opacity: 1;
    transition: opacity 0.2s ease;
  }
  .hero-video-wrap.is-muted .hero-video-icon-vol-svg .vol-on {
    opacity: 0;
  }
  .hero-video-wrap.is-muted .hero-video-icon-vol-svg .vol-off {
    opacity: 1;
  }

  .hero-post {
    align-self: center;
    width: 100%;
    max-width: var(--hero-media-max);
    position: relative;
    z-index: 1;
  }
  .hero-post img {
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
    display: block;
    width: 100%;
    height: auto;
    border-radius: 4px;
    box-shadow: 0 32px 80px rgba(0, 0, 0, 0.55);
  }

  .btn-gold {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 19px;
    letter-spacing: 0.12em;
    background: var(--gold);
    color: var(--black);
    padding: 15px 48px;
    text-decoration: none;
    transition: transform 0.2s, box-shadow 0.2s;
    display: inline-block;
  }
  .btn-gold:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(208, 195, 150, 0.4);
  }

  .ticker {
    background: var(--gold);
    padding: 12px 0;
    overflow: hidden;
    white-space: nowrap;
  }
  .ticker-track {
    display: inline-flex;
    animation: warrantyTicker 24s linear infinite;
  }
  .ticker-item {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 15px;
    letter-spacing: 0.14em;
    color: var(--black);
    padding: 0 44px;
  }
  .ticker-item::before {
    content: '★  ';
  }

  .eyebrow {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--gold-dark);
    display: block;
    margin-bottom: 16px;
  }
  .section-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(40px, 7vw, 82px);
    line-height: 0.95;
    letter-spacing: 0.02em;
    margin-bottom: 24px;
  }
  .reveal {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity 0.65s ease, transform 0.65s ease;
  }
  .reveal.visible {
    opacity: 1;
    transform: none;
  }

  @media (prefers-reduced-motion: reduce) {
    .reveal {
      opacity: 1;
      transform: none;
      transition: none;
    }
    .wp-bar-fill {
      animation: none;
      transform: scaleY(1);
    }
    .ticker-track {
      animation: none;
    }
  }

  .reveal--video-wrap {
    display: flex;
    justify-content: center;
    margin-top: 56px;
  }
  .reveal--hero-copy {
    margin-top: 56px;
  }

  .promise {
    background: var(--dark);
    padding: 50px 24px;
    text-align: center;
  }
  .promise .section-title {
    color: var(--white);
  }
  .promise .eyebrow {
    color: var(--gold);
  }
  .promise p.body {
    font-size: 18px;
    line-height: 1.78;
    max-width: 600px;
    margin: 0 auto 48px;
    color: rgba(255, 255, 255, 0.6);
  }
  .pull-quote {
    font-family: 'DM Serif Display', serif;
    font-style: italic;
    font-size: clamp(20px, 3vw, 32px);
    color: var(--gold-light);
    max-width: 680px;
    margin: 0 auto;
    line-height: 1.4;
    padding: 0 24px;
    position: relative;
  }
  .pull-quote::before {
    content: '"';
    font-size: 100px;
    line-height: 0;
    position: absolute;
    left: -10px;
    top: 44px;
    color: rgba(208, 195, 150, 0.1);
    font-family: Georgia, serif;
  }

  .wp-savings-section {
    background: #0a0a0a;
    color: #fff;
    padding: 80px 24px;
    font-family: Georgia, serif;
    overflow: hidden;
  }
  .wp-savings-inner {
    max-width: 1080px;
    margin: 0 auto;
  }
  .wp-savings-eyebrow {
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-size: 11px;
    color: #c9a84c;
    font-family: 'Helvetica Neue', sans-serif;
    margin-bottom: 16px;
  }
  .wp-savings-headline {
    font-size: clamp(28px, 5vw, 52px);
    font-weight: 700;
    line-height: 1.1;
    margin: 0 0 12px;
    letter-spacing: -0.02em;
  }
  .wp-savings-headline span {
    color: #c9a84c;
  }
  .wp-savings-subhead {
    font-family: 'Helvetica Neue', sans-serif;
    font-size: 17px;
    color: #aaa;
    max-width: 600px;
    line-height: 1.6;
    margin-bottom: 60px;
  }
  .wp-savings-subhead strong {
    color: #fff;
  }
  .wp-chart-container {
    display: flex;
    align-items: flex-end;
    gap: 40px;
    margin-bottom: 60px;
    flex-wrap: wrap;
  }
  .wp-chart-bars {
    display: flex;
    align-items: flex-end;
    gap: 28px;
    flex: 1;
    min-width: 260px;
  }
  .wp-bar-group {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    flex: 1;
  }
  .wp-bar-amount {
    font-size: 22px;
    font-weight: 700;
    font-family: 'Helvetica Neue', sans-serif;
  }
  .wp-bar-amount.gold {
    color: #c9a84c;
  }
  .wp-bar-amount.grey {
    color: #666;
  }
  .wp-bar-track {
    width: 100%;
    background: #1a1a1a;
    border-radius: 6px 6px 0 0;
    overflow: hidden;
    position: relative;
  }
  .wp-bar-track--tall {
    height: 180px;
  }
  .wp-bar-track--gold-wrap {
    height: 180px;
    background: transparent;
    display: flex;
    align-items: flex-end;
  }
  .wp-bar-fill {
    width: 100%;
    border-radius: 6px 6px 0 0;
    animation: warrantyGrowUp 1.4s cubic-bezier(0.22, 1, 0.36, 1) forwards;
    transform-origin: bottom;
    transform: scaleY(0);
  }
  .wp-bar-fill--tall {
    height: 180px;
  }
  .wp-bar-fill.grey {
    background: linear-gradient(180deg, #c0392b 0%, #7b1e1e 100%);
    animation-delay: 0.1s;
  }
  .wp-bar-fill.gold {
    background: linear-gradient(180deg, #c9a84c 0%, #a07830 100%);
    animation-delay: 0.5s;
  }
  .wp-bar-fill--short {
    height: 16px;
    border-radius: 4px 4px 0 0;
  }
  .wp-bar-label {
    font-family: 'Helvetica Neue', sans-serif;
    font-size: 12px;
    color: #888;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-top: 4px;
    line-height: 1.4;
  }
  .wp-bar-label strong {
    display: block;
    font-size: 13px;
    color: #ddd;
  }
  .wp-bar-label.rte p {
    margin: 0;
  }
  .wp-chart-legend {
    flex: 1;
    min-width: 260px;
  }
  .wp-stat-row {
    display: flex;
    flex-direction: column;
    gap: 24px;
  }
  .wp-stat-item {
    border-left: 3px solid #c9a84c;
    padding: 4px 0 4px 18px;
  }
  .wp-stat-item.dim {
    border-color: #3a3a3a;
  }
  .wp-stat-number {
    font-size: 36px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: -0.02em;
  }
  .wp-stat-item.dim .wp-stat-number {
    color: #555;
  }
  .wp-stat-item:not(.dim) .wp-stat-number {
    color: #c9a84c;
  }
  .wp-stat-number--large {
    font-size: 52px;
    color: #c9a84c;
  }
  .wp-stat-desc {
    font-family: 'Helvetica Neue', sans-serif;
    font-size: 13px;
    color: #777;
    margin-top: 4px;
    line-height: 1.5;
  }
  .wp-stat-desc--emph {
    font-size: 15px;
    color: #ccc;
    margin-top: 6px;
  }
  .wp-savings-callout {
    border-top: 1px solid #222;
    padding-top: 48px;
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    align-items: center;
  }
  .wp-callout-text {
    flex: 1;
    min-width: 260px;
  }
  .wp-callout-text h3 {
    font-size: clamp(20px, 3vw, 28px);
    font-weight: 700;
    line-height: 1.2;
    margin: 0 0 12px;
  }
  .wp-callout-text p {
    font-family: 'Helvetica Neue', sans-serif;
    font-size: 15px;
    color: #aaa;
    line-height: 1.7;
    margin: 0;
  }
  .wp-callout-pills {
    display: flex;
    flex-direction: column;
    gap: 12px;
    flex-shrink: 0;
  }
  .wp-pill {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Helvetica Neue', sans-serif;
    font-size: 14px;
    color: #ccc;
  }
  .wp-pill-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #1a1a1a;
    border: 1px solid #333;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 15px;
  }
  .wp-stadium-bar {
    margin-top: 56px;
    background: #111;
    border: 1px solid #222;
    border-radius: 12px;
    padding: 32px 36px;
    display: flex;
    align-items: center;
    gap: 32px;
    flex-wrap: wrap;
  }
  .wp-stadium-num {
    font-size: clamp(40px, 8vw, 72px);
    font-weight: 700;
    color: #c9a84c;
    letter-spacing: -0.03em;
    line-height: 1;
    flex-shrink: 0;
  }
  .wp-stadium-divider {
    width: 1px;
    height: 60px;
    background: #333;
    flex-shrink: 0;
  }
  .wp-stadium-copy {
    flex: 1;
    min-width: 200px;
  }
  .wp-stadium-copy h4 {
    font-size: 18px;
    font-weight: 700;
    margin: 0 0 6px;
  }
  .wp-stadium-copy p {
    font-family: 'Helvetica Neue', sans-serif;
    font-size: 14px;
    color: #888;
    margin: 0;
    line-height: 1.6;
  }

  .cta-inline {
    text-align: center;
  }
  .cta-inline--dark {
    background: #0a0a0a;
    padding: 0 24px 80px;
  }
  .cta-inline__btn--gold-lg {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 20px;
    letter-spacing: 0.12em;
    background: #c9a84c;
    color: #111;
    padding: 18px 56px;
    text-decoration: none;
    display: inline-block;
    transition: transform 0.2s, box-shadow 0.2s;
  }
  .cta-inline__btn--gold-lg:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(208, 195, 150, 0.4);
  }
  .cta-inline__note {
    margin-top: 14px;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.3);
    letter-spacing: 0.08em;
  }
  .cta-inline--light {
    background: #f4f4f2;
    padding: 64px 24px;
  }
  .cta-inline__title-light {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(22px, 4vw, 36px);
    letter-spacing: 0.04em;
    color: #111;
    margin-bottom: 20px;
  }
  .cta-inline__btn--black {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 18px;
    letter-spacing: 0.12em;
    background: #111;
    color: #fff;
    padding: 16px 48px;
    text-decoration: none;
    display: inline-block;
    transition: transform 0.2s, box-shadow 0.2s;
  }
  .cta-inline__btn--black:hover {
    transform: translateY(-3px);
  }
  .cta-inline--reviews {
    background: #111;
    padding: 72px 24px;
  }
  .cta-inline__title-reviews {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(28px, 5vw, 52px);
    letter-spacing: 0.03em;
    color: #fff;
    line-height: 1;
    margin-bottom: 8px;
  }
  .cta-inline__sub-reviews {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.45);
    margin-bottom: 32px;
    letter-spacing: 0.04em;
  }
  .cta-inline__btn--gold-md {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 18px;
    letter-spacing: 0.12em;
    background: #c9a84c;
    color: #111;
    padding: 16px 52px;
    text-decoration: none;
    display: inline-block;
    transition: transform 0.2s, box-shadow 0.2s;
  }
  .cta-inline__btn--gold-md:hover {
    transform: translateY(-3px);
  }

  .claims {
    background: var(--light-gray);
    padding: 60px 24px 0;
  }
  .claims .eyebrow,
  .claims .section-title {
    text-align: center;
  }
  .claims .section-title {
    color: var(--black);
  }
  .claims-intro {
    text-align: center;
    font-size: 17px;
    line-height: 1.75;
    max-width: 520px;
    margin: 0 auto 64px;
    color: var(--muted);
  }
  .claims-grid {
    max-width: 960px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
  .claim-card {
    background: var(--white);
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.07);
    transition: transform 0.25s, box-shadow 0.25s;
  }
  .claim-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.13);
  }
  .claim-top {
    background: var(--black);
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: 10px;
  }
  .claim-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--gold);
    flex-shrink: 0;
  }
  .claim-label {
    font-size: 11px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.4);
  }
  .claim-verified {
    margin-left: auto;
    font-size: 10px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 600;
  }
  .claim-body {
    padding: 20px 18px;
    font-family: 'DM Sans', sans-serif;
    font-size: 15px;
    line-height: 1.65;
    color: var(--text);
    background: var(--white);
  }
  .claim-footer {
    padding: 16px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid #eee;
  }
  .claim-result {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gold-dark);
  }
  .claim-icon {
    font-size: 20px;
  }

  .reviews {
    background: var(--dark);
    padding: 110px 24px;
  }
  .reviews .section-title {
    color: var(--white);
    text-align: center;
    margin-bottom: 64px;
  }
  .reviews .eyebrow {
    color: var(--gold);
    text-align: center;
  }
  .reviews-grid {
    max-width: 1060px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
  }
  .review-wide {
    grid-column: 1 / -1;
    background: rgba(208, 195, 150, 0.07);
    border: 1px solid rgba(208, 195, 150, 0.18);
    padding: 40px 48px;
    display: flex;
    gap: 36px;
    align-items: flex-start;
    margin-bottom: 2px;
  }
  .review-card {
    background: rgba(255, 255, 255, 0.04);
    padding: 36px 30px;
    border-top: 3px solid transparent;
    transition: background 0.25s;
  }
  .review-card:hover {
    background: rgba(255, 255, 255, 0.07);
    border-top-color: var(--gold);
  }
  .r-photo {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(208, 195, 150, 0.35);
    margin-bottom: 14px;
    flex-shrink: 0;
  }
  .r-initials {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: rgba(208, 195, 150, 0.14);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 24px;
    color: var(--gold);
    margin-bottom: 14px;
    flex-shrink: 0;
  }
  .stars {
    color: var(--gold);
    font-size: 14px;
    letter-spacing: 3px;
    margin-bottom: 14px;
  }
  .r-text {
    font-family: 'DM Serif Display', serif;
    font-style: italic;
    font-size: 16px;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.82);
    margin-bottom: 18px;
  }
  .review-wide .r-text {
    font-size: 19px;
  }
  .r-author {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--gold);
  }
  .r-tag {
    display: block;
    font-size: 10px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.22);
    margin-top: 5px;
  }

  .faq {
    background: var(--light-gray);
    padding: 110px 24px;
  }
  .faq .section-title {
    color: var(--black);
    text-align: center;
    margin-bottom: 64px;
  }
  .faq .eyebrow {
    text-align: center;
  }
  .faq-list {
    max-width: 720px;
    margin: 0 auto;
  }
  .faq-item {
    border-bottom: 1px solid rgba(34, 34, 34, 0.1);
    padding: 26px 0;
    cursor: pointer;
  }
  .faq-item:first-child {
    border-top: 1px solid rgba(34, 34, 34, 0.1);
  }
  .faq-q {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 22px;
    letter-spacing: 0.04em;
    color: var(--black);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    user-select: none;
    margin-block-start:0;
    margin-block-end: 0;
  }
  .faq-q::after {
    content: '+';
    font-size: 26px;
    color: var(--gold-dark);
    flex-shrink: 0;
    transition: transform 0.3s;
    line-height: 1;
  }
  .faq-item.open .faq-q::after {
    transform: rotate(45deg);
  }
  .faq-a {
    font-size: 15px;
    line-height: 1.78;
    color: var(--muted);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s;
  }
  .faq-a a {
    color: var(--gold-dark);
    text-decoration: underline;
  }
  .faq-item.open .faq-a {
    max-height: 300px;
    padding-top: 16px;
  }

  .cta {
    background: var(--gold);
    padding: 130px 24px;
    text-align: center;
    position: relative;
    overflow: hidden;
  }
  .cta::before {
    content: 'LIFETIME';
    position: absolute;
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(100px, 22vw, 300px);
    color: rgba(0, 0, 0, 0.06);
    letter-spacing: 0.05em;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    white-space: nowrap;
    pointer-events: none;
  }
  .cta h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(52px, 9vw, 108px);
    line-height: 0.9;
    color: var(--black);
    letter-spacing: 0.02em;
    margin-bottom: 24px;
    position: relative;
  }
  .cta-sub {
    font-size: 18px;
    color: rgba(17, 17, 17, 0.6);
    max-width: 480px;
    margin: 0 auto 52px;
    line-height: 1.6;
    position: relative;
  }
  .btn-black {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 24px;
    letter-spacing: 0.14em;
    background: var(--black);
    color: var(--white);
    padding: 20px 72px;
    text-decoration: none;
    display: inline-block;
    position: relative;
    transition: transform 0.2s, box-shadow 0.2s;
  }
  .btn-black:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.3);
  }
  .cta-note {
    margin-top: 24px;
    font-size: 13px;
    color: rgba(17, 17, 17, 0.45);
    letter-spacing: 0.06em;
    position: relative;
  }

  .footer {
    background: var(--black);
    padding: 28px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 14px;
  }
  .footer-logo {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 18px;
    letter-spacing: 0.14em;
    color: rgba(255, 255, 255, 0.3);
  }
  .footer-links {
    display: flex;
    gap: 28px;
  }
  .footer-links a {
    font-size: 11px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.28);
    text-decoration: none;
    transition: color 0.2s;
  }
  .footer-links a:hover {
    color: var(--gold);
  }

  @media (max-width: 760px) {
    .nav {
      padding: 12px 16px;
    }
    .nav-logo svg {
      height: 24px;
    }

    .hero {
      padding: 48px 16px 64px;
    }
    .hero-banner {
      margin-bottom: 36px;
    }
    .hero-banner h1 {
      font-size: 48px;
      line-height: 0.93;
    }
    .hero-stars-icons {
      font-size: 16px;
    }
    .hero-stars-text {
      font-size: 13px;
    }
    .hero-banner .sub1 {
      font-size: 15px;
    }
    .hero-banner .sub2 {
      font-size: 14px;
    }

    .ticker-item {
      font-size: 12px;
      padding: 0 28px;
    }

    .promise {
      padding: 72px 20px;
    }
    .promise p.body {
      font-size: 16px;
    }
    .pull-quote {
      font-size: 18px;
      padding: 0 8px;
    }

    .wp-savings-section {
      padding: 48px 16px;
    }

    .claims {
      padding: 72px 16px;
    }
    .claims-grid {
      grid-template-columns: 1fr;
      gap: 16px;
    }
    .claims-intro {
      font-size: 15px;
      margin-bottom: 40px;
    }

    .reviews {
      padding: 72px 16px;
    }
    .reviews-grid {
      grid-template-columns: 1fr;
      gap: 2px;
    }
    .review-wide {
      flex-direction: column;
      padding: 24px;
      gap: 20px;
    }
    .review-wide .r-text {
      font-size: 16px;
    }
    .review-card {
      padding: 24px 20px;
    }

    .faq {
      padding: 72px 16px;
    }
    .faq-q {
      font-size: 18px;
    }

    .cta {
      padding: 80px 20px;
    }
    .cta h2 {
      font-size: 48px;
    }
    .btn-black {
      font-size: 18px;
      padding: 16px 40px;
    }
    .cta-note {
      font-size: 11px;
    }

    .footer {
      flex-direction: column;
      text-align: center;
      padding: 20px;
      gap: 16px;
    }
    .footer-links {
      flex-wrap: wrap;
      justify-content: center;
      gap: 16px;
    }

    .section-title {
      font-size: 40px;
    }
    .eyebrow {
      font-size: 10px;
    }
  }
}

@keyframes warrantyFadeUp {
  from {
    opacity: 0;
    transform: translateY(28px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes warrantyTicker {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@keyframes warrantyGrowUp {
  from {
    transform: scaleY(0);
  }
  to {
    transform: scaleY(1);
  }
}

html {
  scroll-behavior: smooth;
}

body.template-warranty-landing {
  font-family: 'DM Sans', sans-serif;
  background: #fff;
  color: #222;
  overflow-x: hidden;
  margin: 0 !important;
}

