/* ============================================
   WARRANTY PAGE STYLES
   Guarantee terms and conditions
   ============================================ */

/* Hero Section */
.warranty-hero {
  padding: 160px 24px 80px;
  background: var(--white);
  text-align: center;
  position: relative;
  overflow: hidden;
}

/* Subtle grid background */
.warranty-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image:
    linear-gradient(rgba(115, 115, 115, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(115, 115, 115, 0.03) 1px, transparent 1px);
  background-size: 80px 80px;
  z-index: 0;
}

.warranty-hero h1 {
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
  position: relative;
  z-index: 1;

  /* Gradient shimmer effect */
  background: linear-gradient(
    110deg,
    var(--grey-900) 0%,
    var(--grey-900) 40%,
    rgba(255, 107, 74, 0.4) 45%,
    rgba(255, 107, 74, 0.6) 50%,
    rgba(255, 107, 74, 0.4) 55%,
    var(--grey-900) 60%,
    var(--grey-900) 100%
  );
  background-size: 200% 100%;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shimmer 8s ease-in-out infinite;
}

@keyframes shimmer {
  0%, 100% {
    background-position: 200% center;
  }
  50% {
    background-position: 0% center;
  }
}

.warranty-hero p {
  font-size: clamp(16px, 2.5vw, 20px);
  color: var(--grey-600);
  line-height: 1.7;
  max-width: 700px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

/* Warranty Badge */
.warranty-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: rgba(255, 107, 74, 0.1);
  border: 2px solid var(--orange-500);
  padding: 16px 32px;
  border-radius: 60px;
  margin-top: 32px;
  position: relative;
  z-index: 1;
}

.warranty-badge-icon {
  font-size: 32px;
}

.warranty-badge-text {
  font-size: 20px;
  font-weight: 700;
  color: var(--orange-600);
  letter-spacing: -0.01em;
}

/* Content Sections */
.warranty-section {
  max-width: 1000px;
  margin: 0 auto;
  padding: 80px 24px;
}

.warranty-section h2 {
  font-size: clamp(32px, 4vw, 42px);
  font-weight: 700;
  color: var(--grey-900);
  margin-bottom: 16px;
  letter-spacing: -0.02em;
  text-align: center;
}

.warranty-section h3 {
  font-size: clamp(24px, 3vw, 28px);
  font-weight: 600;
  color: var(--grey-900);
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}

.warranty-section p {
  font-size: 16px;
  line-height: 1.8;
  color: var(--grey-600);
  margin-bottom: 24px;
  text-align: center;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* Coverage Grid */
.coverage-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 40px;
}

.coverage-card {
  background: var(--white);
  border: 2px solid var(--grey-200);
  border-radius: 16px;
  padding: 32px;
  transition: all 0.3s ease;
}

.coverage-card:hover {
  border-color: var(--orange-500);
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.coverage-card-icon {
  font-size: 48px;
  margin-bottom: 16px;
}

.coverage-card h4 {
  font-size: 20px;
  font-weight: 600;
  color: var(--grey-900);
  margin-bottom: 12px;
}

.coverage-card p {
  font-size: 15px;
  line-height: 1.6;
  color: var(--grey-600);
  margin-bottom: 0;
}

/* What's NOT Covered - Warning Style */
.not-covered-list {
  background: rgba(239, 68, 68, 0.05);
  border-left: 4px solid #ef4444;
  padding: 32px;
  border-radius: 8px;
  margin-top: 32px;
}

.not-covered-list h3 {
  color: #991b1b;
  margin-bottom: 20px;
}

.not-covered-list ul {
  list-style: none;
  padding: 0;
}

.not-covered-list li {
  font-size: 16px;
  line-height: 1.8;
  color: var(--grey-700);
  margin-bottom: 16px;
  padding-left: 32px;
  position: relative;
}

.not-covered-list li::before {
  content: '❌';
  position: absolute;
  left: 0;
  top: 0;
}

/* Steps Section */
.warranty-steps {
  background: var(--grey-50);
  padding: 80px 24px;
}

.steps-container {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}

.steps-container h2 {
  margin-bottom: 16px;
}

.steps-container > p {
  font-size: 16px;
  line-height: 1.8;
  color: var(--grey-600);
  margin-bottom: 48px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 40px;
  margin-top: 48px;
}

.step-item {
  text-align: center;
  position: relative;
}

.step-number {
  width: 64px;
  height: 64px;
  background: var(--orange-500);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  font-weight: 700;
  margin: 0 auto 24px;
  box-shadow: 0 4px 16px rgba(255, 107, 74, 0.3);
}

.step-title {
  font-size: 20px;
  font-weight: 600;
  color: var(--grey-900);
  margin-bottom: 12px;
}

.step-description {
  font-size: 15px;
  line-height: 1.6;
  color: var(--grey-600);
}

/* Terms List */
.terms-list {
  max-width: 800px;
  margin: 40px auto 0;
}

.terms-list ul {
  list-style: none;
  padding: 0;
}

.terms-list li {
  font-size: 16px;
  line-height: 1.8;
  color: var(--grey-700);
  margin-bottom: 20px;
  padding-left: 36px;
  position: relative;
}

.terms-list li::before {
  content: '•';
  position: absolute;
  left: 12px;
  top: 0;
  color: var(--orange-500);
  font-size: 24px;
  font-weight: 700;
}

/* Trust Stats */
.trust-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 32px;
  margin-top: 48px;
  padding: 48px 0;
  border-top: 1px solid var(--grey-200);
  border-bottom: 1px solid var(--grey-200);
}

.trust-stat {
  text-align: center;
}

.trust-stat-value {
  font-size: clamp(36px, 4vw, 48px);
  font-weight: 700;
  color: var(--orange-500);
  margin-bottom: 8px;
  line-height: 1;
}

.trust-stat-label {
  font-size: 15px;
  color: var(--grey-600);
  font-weight: 500;
}

/* FAQ Section */
.faq-section {
  background: var(--white);
  padding: 80px 24px;
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-container h2 {
  text-align: center;
  margin-bottom: 48px;
}

.faq-item {
  border-bottom: 1px solid var(--grey-200);
  padding: 32px 0;
}

.faq-item:first-child {
  padding-top: 0;
}

.faq-question {
  font-size: 20px;
  font-weight: 600;
  color: var(--grey-900);
  margin-bottom: 12px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.faq-question::before {
  content: 'Q:';
  color: var(--orange-500);
  font-weight: 700;
  flex-shrink: 0;
}

.faq-answer {
  font-size: 16px;
  line-height: 1.8;
  color: var(--grey-600);
  padding-left: 32px;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .warranty-hero {
    padding: 140px 24px 60px;
  }

  .warranty-section {
    padding: 60px 24px;
  }

  .warranty-steps {
    padding: 60px 24px;
  }

  .faq-section {
    padding: 60px 24px;
  }

  .coverage-grid {
    grid-template-columns: 1fr;
  }

  .steps-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .trust-stats {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .warranty-badge {
    flex-direction: column;
    text-align: center;
  }
}
