/* ===== ZiVO Warranty Policy Styles (Ultra-Clean & Minimalist Redesign) ===== */
body.page-warranty {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  padding-bottom: 0 !important;
  background:
    radial-gradient(1000px 500px at 50% -5%, rgba(231,102,36,0.15), transparent 60%),
    radial-gradient(800px 400px at 85% 45%, rgba(255,106,26,0.06), transparent 50%),
    var(--bg, #080808);
}

body.page-warranty .sticky-cta {
  display: none !important;
}

/* Header Navigation */
.warranty-header {
  position: sticky;
  top: 0;
  z-index: 40;
  border-bottom: 1px solid var(--border, rgba(255,255,255,0.08));
  background: rgba(8, 8, 8, 0.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.warranty-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 60px;
  padding-top: 8px;
  padding-bottom: 8px;
}

.warranty-home-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: 999px;
  border: 1px solid var(--border, rgba(255,255,255,0.1));
  background: rgba(255,255,255,0.03);
  color: var(--text, #fff);
  font-weight: 700;
  font-size: 13.5px;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.warranty-home-btn:hover {
  transform: translateX(-2px);
  border-color: rgba(255,255,255,0.25);
  background: rgba(255,255,255,0.06);
}

.warranty-home-btn i {
  color: var(--orange, #E76624);
}

/* Main Container & Hero (Tight Vertical Spacing) */
.warranty-main {
  flex: 1;
  padding: 28px 0 60px;
}

.warranty-hero {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 28px;
}

.warranty-hero .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--orange, #E76624);
  background: rgba(231,102,36,0.1);
  border: 1px solid rgba(231,102,36,0.25);
  padding: 4px 14px;
  border-radius: 999px;
  margin-bottom: 12px;
}

.warranty-hero h1 {
  font-size: clamp(26px, 4.5vw, 40px);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 10px;
  color: #fff;
}

.warranty-hero h1 .accent {
  color: var(--orange, #E76624);
  background: linear-gradient(135deg, #FF6A1A 0%, #E76624 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.warranty-lead {
  font-size: clamp(14.5px, 1.8vw, 16px);
  color: var(--text-2, #A5A5A5);
  line-height: 1.6;
  max-width: 680px;
  margin: 0 auto;
}

/* Compact Highlights Bar */
.highlights-bar {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 14px;
  max-width: 900px;
  margin: 0 auto 36px;
}

.highlight-item {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 12px 16px;
}

.highlight-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: rgba(231, 102, 36, 0.15);
  color: var(--orange-bright, #FF6A1A);
  font-size: 16px;
  flex-shrink: 0;
}

.highlight-text strong {
  display: block;
  font-size: 14.5px;
  color: #fff;
  line-height: 1.2;
}

.highlight-text span {
  font-size: 12.5px;
  color: #999999;
}

/* Clean Content Sections */
.policy-sections-wrapper {
  display: flex;
  flex-direction: column;
  gap: 28px;
  max-width: 900px;
  margin: 0 auto;
}

.clean-section-card {
  background: rgba(23, 23, 23, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 28px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.section-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.section-head i {
  font-size: 20px;
  color: var(--orange, #E76624);
}

.section-head h2 {
  font-size: 20px;
  font-weight: 800;
  color: #fff;
  margin: 0;
}

/* Duration & Coverage Section */
.coverage-text {
  font-size: 15px;
  color: #D4D4D4;
  line-height: 1.7;
  margin-bottom: 20px;
}

.duration-pills-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 14px;
}

.duration-pill-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 14px 18px;
}

.duration-pill-card .title {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  color: #fff;
  font-size: 15px;
}

.duration-pill-card .title i {
  color: var(--orange, #E76624);
}

.duration-pill-card .tag {
  background: rgba(231, 102, 36, 0.15);
  color: var(--orange-bright, #FF6A1A);
  border: 1px solid rgba(231, 102, 36, 0.3);
  font-weight: 700;
  font-size: 13.5px;
  padding: 4px 12px;
  border-radius: 999px;
}

/* Step-by-Step Claim Flow */
.steps-horizontal-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 14px;
  margin-bottom: 24px;
}

.step-card-item {
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 12px;
  padding: 18px 16px;
}

.step-card-head {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

.step-num-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: linear-gradient(135deg, #FF6A1A 0%, #E76624 100%);
  color: #fff;
  font-weight: 800;
  font-size: 13px;
  flex-shrink: 0;
}

.step-card-head strong {
  font-size: 14.5px;
  color: #fff;
}

.step-card-item p {
  font-size: 13.5px;
  color: #B5B5B5;
  line-height: 1.55;
}

.proof-note-box {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px dashed rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  padding: 14px 18px;
  font-size: 14px;
  color: #D1D1D1;
}

.proof-note-box i {
  color: var(--orange, #E76624);
  font-size: 18px;
}

/* Two-Column Split (Terms vs Exclusions) */
.clean-two-col {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
}

.clean-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.clean-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: #D4D4D4;
  line-height: 1.6;
}

.clean-list li i.check {
  color: var(--orange-bright, #FF6A1A);
  margin-top: 3px;
}

.clean-list li i.cross {
  color: #EF4444;
  margin-top: 3px;
}

.exclusion-warning-banner {
  margin-top: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.25);
  color: #FCA5A5;
  font-size: 13px;
  font-weight: 600;
  padding: 10px 14px;
  border-radius: 8px;
}

/* Support Footer CTA */
.clean-support-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  background: linear-gradient(135deg, rgba(231,102,36,0.15) 0%, rgba(23,23,23,0.8) 100%);
  border: 1px solid rgba(231,102,36,0.3);
  border-radius: 16px;
  padding: 22px 28px;
}

.clean-support-cta h3 {
  font-size: 18px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 4px;
}

.clean-support-cta p {
  font-size: 13.5px;
  color: #A5A5A5;
}

.clean-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #FF6A1A 0%, #E76624 100%);
  color: #fff;
  font-weight: 800;
  font-size: 14px;
  padding: 10px 22px;
  border-radius: 999px;
  white-space: nowrap;
  box-shadow: 0 6px 18px rgba(231,102,36,0.3);
}

/* Responsive adjustments */
@media (max-width: 640px) {
  .warranty-main {
    padding: 20px 0 40px;
  }
  .clean-section-card {
    padding: 20px 16px;
  }
  .clean-support-cta {
    flex-direction: column;
    text-align: center;
  }
}
