/* ===== Landing Page Styles ===== */
/* Extracted from warranty/index.html */

/* ===== Base & Animations ===== */
.landing {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
}

/* Subtle animations - reduced for cleaner UX */
@keyframes count-up {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ===== Header - Smaller Logo ===== */
.landing-header {
  background: var(--bg-primary);
  border-bottom: 1px solid var(--border-color);
  padding: 0.75rem 2rem;
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(10px);
  background: rgba(255, 255, 255, 0.95);
}

.landing-header__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.landing-header__logo {
  height: 38px;
  width: auto;
  transition: transform 0.2s ease;
}

.landing-header__logo:hover {
  transform: scale(1.05);
}

.landing-header__nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.landing-header__link {
  color: var(--text-secondary);
  font-size: 0.8125rem;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.2s;
  position: relative;
}

.landing-header__link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--heiwa-primary);
  transition: width 0.3s ease;
}

.landing-header__link:hover {
  color: var(--heiwa-primary);
  text-decoration: none;
}

.landing-header__link:hover::after {
  width: 100%;
}

.landing-header__cta {
  padding: 0.5rem 1.25rem;
  font-size: 0.8125rem;
  border-radius: 2rem;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 187, 179, 0.3);
  color: #fff !important;
}

.landing-header__cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(0, 187, 179, 0.4);
}

/* ===== Hero Section ===== */
.hero {
  padding: 5rem 2rem 6rem;
  background: linear-gradient(165deg, #f0fdfc 0%, #ffffff 40%, #f8fffe 100%);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(0, 187, 179, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.hero__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
}

.hero__content {
  max-width: 560px;
}

.hero__free-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.625rem 1.25rem;
  background: linear-gradient(135deg, var(--heiwa-primary) 0%, #00d4ca 100%);
  color: white;
  font-size: 0.875rem;
  font-weight: 700;
  border-radius: 2rem;
  margin-bottom: 1.5rem;
  box-shadow: 0 4px 15px rgba(0, 187, 179, 0.35);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.hero__free-badge svg {
  width: 18px;
  height: 18px;
}

.hero__title {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--text-primary);
  line-height: 1.15;
  margin: 0 0 1rem 0;
}

.hero__title-highlight {
  color: var(--heiwa-primary);
  position: relative;
}

.hero__title-free {
  display: inline-block;
  background: linear-gradient(135deg, var(--heiwa-primary) 0%, #00d4ca 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero__subtitle {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text-secondary);
  margin: 0 0 1.5rem 0;
}

.hero__description {
  font-size: 1.125rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin: 0 0 2rem 0;
}

.hero__cta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.hero__cta-primary {
  padding: 1.125rem 2.5rem;
  font-size: 1.0625rem;
  font-weight: 600;
  border-radius: 0.75rem;
  background: linear-gradient(135deg, var(--heiwa-primary) 0%, #00a89f 100%);
  color: white !important;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(0, 187, 179, 0.4);
  position: relative;
  overflow: hidden;
}

.hero__cta-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: left 0.5s ease;
}

.hero__cta-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(0, 187, 179, 0.5);
}

.hero__cta-primary:hover::before {
  left: 100%;
}

.hero__cta-secondary {
  padding: 1.125rem 2rem;
  font-size: 1rem;
  font-weight: 500;
  border-radius: 0.75rem;
  background: transparent;
  color: var(--text-secondary) !important;
  border: 2px solid var(--border-color);
  transition: all 0.3s ease;
}

.hero__cta-secondary:hover {
  border-color: var(--heiwa-primary);
  color: var(--heiwa-primary) !important;
  background: var(--heiwa-primary-light);
}

.hero__trust {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border-color);
}

.hero__trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.hero__trust-item svg {
  width: 18px;
  height: 18px;
  color: var(--heiwa-primary);
}

/* Hero Card */
.hero__card {
  position: relative;
}

.hero__card-image {
  width: 100%;
  display: block;
  border-radius: 1.5rem;
  border: 1px solid var(--border-color);
  box-shadow: 0 25px 60px -12px rgba(0, 0, 0, 0.12);
}

.hero__card-main {
  background: var(--bg-primary);
  border-radius: 1.5rem;
  padding: 2.5rem;
  box-shadow: 0 25px 60px -12px rgba(0, 0, 0, 0.12);
  border: 1px solid var(--border-color);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.hero__card-main:hover {
  transform: translateY(-8px);
  box-shadow: 0 35px 70px -15px rgba(0, 187, 179, 0.2);
}

.hero__card-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--border-color);
}

.hero__card-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, var(--heiwa-primary-light) 0%, #ccf5f3 100%);
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.hero__card-icon::before {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 1.25rem;
  background: var(--heiwa-primary);
  opacity: 0.15;
}

.hero__card-icon svg {
  width: 32px;
  height: 32px;
  color: var(--heiwa-primary);
  position: relative;
  z-index: 1;
}

.hero__card-title-wrap {
  flex: 1;
}

.hero__card-title {
  font-size: 1.375rem;
  font-weight: 700;
  color: var(--text-primary);
  margin: 0 0 0.25rem 0;
}

.hero__card-subtitle {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin: 0;
}

.hero__card-price {
  text-align: right;
}

.hero__card-price-value {
  font-size: 2rem;
  font-weight: 800;
  color: var(--heiwa-primary);
}

.hero__card-price-label {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.hero__features {
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
}

.hero__feature {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  font-size: 0.9375rem;
  color: var(--text-primary);
  padding: 0.75rem;
  border-radius: 0.75rem;
  transition: all 0.2s ease;
  cursor: default;
}

.hero__feature:hover {
  background: var(--bg-secondary);
  transform: translateX(4px);
}

.hero__feature-icon {
  width: 26px;
  height: 26px;
  background: var(--color-success-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.2s ease;
}

.hero__feature:hover .hero__feature-icon {
  transform: scale(1.15);
}

.hero__feature-icon svg {
  width: 14px;
  height: 14px;
  color: var(--color-success);
}

/* Floating Badge */
.hero__floating-badge {
  position: absolute;
  top: -1rem;
  right: 2rem;
  background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
  color: #78350f;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.5rem 1rem;
  border-radius: 2rem;
  box-shadow: 0 4px 15px rgba(245, 158, 11, 0.4);
}

/* ===== Stats Section ===== */
.stats {
  background: var(--heiwa-primary);
  padding: 3rem 2rem;
}

.stats__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.stat {
  text-align: center;
  color: white;
}

.stat__number {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 0.25rem;
  animation: count-up 0.6s ease-out forwards;
}

.stat__label {
  font-size: 0.875rem;
  opacity: 0.9;
}

/* ===== How It Works ===== */
.how-it-works {
  background: var(--bg-primary);
  padding: 4rem 2rem;
}

.how-it-works__inner {
  max-width: 1000px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: var(--heiwa-primary-light);
  color: var(--heiwa-primary);
  font-size: 0.8125rem;
  font-weight: 600;
  border-radius: 2rem;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.section-title {
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--text-primary);
  margin: 0 0 1rem 0;
}

.section-subtitle {
  font-size: 1.125rem;
  color: var(--text-secondary);
  margin: 0;
  max-width: 600px;
  margin: 0 auto;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  position: relative;
}

.steps::before {
  content: '';
  position: absolute;
  top: 3rem;
  left: 15%;
  right: 15%;
  height: 2px;
  background: linear-gradient(90deg, var(--heiwa-primary-light) 0%, var(--heiwa-primary) 50%, var(--heiwa-primary-light) 100%);
  z-index: 0;
}

.step {
  text-align: center;
  position: relative;
  z-index: 1;
}

.step__number {
  width: 6rem;
  height: 6rem;
  background: var(--bg-primary);
  border: 3px solid var(--heiwa-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  transition: all 0.3s ease;
}

.step:hover .step__number {
  background: var(--heiwa-primary);
  transform: scale(1.1);
}

.step__number svg {
  width: 2.5rem;
  height: 2.5rem;
  color: var(--heiwa-primary);
  transition: color 0.3s ease;
}

.step:hover .step__number svg {
  color: white;
}

.step__title {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text-primary);
  margin: 0 0 0.5rem 0;
}

.step__description {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  margin: 0;
  line-height: 1.6;
}

.step__time {
  display: inline-block;
  margin-top: 0.75rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--heiwa-primary);
  background: var(--heiwa-primary-light);
  padding: 0.25rem 0.75rem;
  border-radius: 1rem;
}

/* ===== Coverage Section ===== */
.coverage {
  background: linear-gradient(180deg, var(--bg-secondary) 0%, var(--bg-primary) 100%);
  padding: 4rem 2rem;
}

.coverage__inner {
  max-width: 1200px;
  margin: 0 auto;
}

.coverage .section-header {
  margin-bottom: 1rem;
}

.coverage__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

.coverage__link-wrap {
  margin-top: 0.75rem;
  text-align: center;
}

.coverage__details-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.95rem 1.5rem;
  border: 1px solid var(--heiwa-primary);
  border-radius: 999px;
  color: var(--heiwa-primary);
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  transition: background-color 0.2s ease, color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.coverage__details-link:hover {
  background: var(--heiwa-primary);
  color: white;
  transform: translateY(-1px);
  box-shadow: 0 10px 30px -12px rgba(0, 187, 179, 0.55);
}

.coverage-card {
  background: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 1rem;
  padding: 1.75rem;
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  transition: all 0.3s ease;
  cursor: default;
}

.coverage-card:hover {
  border-color: var(--heiwa-primary);
  box-shadow: 0 10px 40px -10px rgba(0, 187, 179, 0.2);
  transform: translateY(-4px);
}

.coverage-card__icon {
  width: 52px;
  height: 52px;
  background: var(--heiwa-primary-light);
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.coverage-card:hover .coverage-card__icon {
  background: var(--heiwa-primary);
}

.coverage-card__icon svg {
  width: 26px;
  height: 26px;
  color: var(--heiwa-primary);
  transition: color 0.3s ease;
}

.coverage-card:hover .coverage-card__icon svg {
  color: white;
}

.coverage-card__content {
  flex: 1;
}

.coverage-card__title {
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--text-primary);
  margin: 0 0 0.375rem 0;
}

.coverage-card__text {
  font-size: 0.875rem;
  color: var(--text-secondary);
  margin: 0;
  line-height: 1.6;
}

/* ===== Benefits Section ===== */
.benefits {
  background: linear-gradient(180deg, var(--bg-primary) 0%, #f4fffd 100%);
  padding: 4rem 2rem;
}

.benefits__inner {
  max-width: 1200px;
  margin: 0 auto;
}

.benefits .section-header {
  margin-bottom: 1.25rem;
}

.benefits__statement {
  margin: 0 auto;
  max-width: 1020px;
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(280px, 0.9fr);
  gap: 1.5rem 2.25rem;
  align-items: center;
}

.benefits__message {
  margin: 0;
  font-size: clamp(1.125rem, 1vw + 0.95rem, 1.4rem);
  line-height: 1.65;
  color: var(--text-primary);
  text-align: left;
}

.benefits__message strong {
  color: var(--heiwa-primary);
  font-weight: 800;
}

.benefits__compare-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  width: 100%;
  max-width: 360px;
  justify-self: end;
}

.benefits__compare-card {
  padding: 1rem 1.125rem;
  border-radius: 0.875rem;
  background: var(--heiwa-primary-light);
  border: 1px solid rgba(0, 130, 112, 0.3);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.4rem;
  text-align: left;
  box-shadow: 0 5px 14px rgba(8, 41, 47, 0.08);
}

.benefits__compare-card--alt {
  border-color: rgba(131, 131, 131, 0.42);
  background: rgba(131, 131, 131, 0.15);
  box-shadow: 0 5px 14px rgba(8, 41, 47, 0.05);
}

.benefits__compare-label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: rgba(8, 41, 47, 0.72);
}

.benefits__compare-value {
  font-size: 1.125rem;
  font-weight: 700;
  color: #08292f;
}

.benefits__compare-card--alt .benefits__compare-label {
  color: rgba(8, 41, 47, 0.66);
}

.benefits__compare-card--alt .benefits__compare-value {
  color: #000000;
}

.benefits__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.benefit-card {
  padding: 2.25rem;
  background: var(--bg-secondary);
  border-radius: 1.25rem;
  text-align: center;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.benefit-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--heiwa-primary) 0%, #00d4ca 100%);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.benefit-card:hover {
  background: var(--bg-primary);
  box-shadow: 0 20px 50px -15px rgba(0, 0, 0, 0.1);
  transform: translateY(-6px);
}

.benefit-card:hover::before {
  transform: scaleX(1);
}

.benefit-card__icon {
  width: 64px;
  height: 64px;
  background: var(--heiwa-primary-light);
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  transition: all 0.3s ease;
}

.benefit-card:hover .benefit-card__icon {
  background: var(--heiwa-primary);
  transform: scale(1.05);
}

.benefit-card__icon svg {
  width: 30px;
  height: 30px;
  color: var(--heiwa-primary);
  transition: color 0.3s ease;
}

.benefit-card:hover .benefit-card__icon svg {
  color: white;
}

.benefit-card__title {
  font-size: 1.1875rem;
  font-weight: 600;
  color: var(--text-primary);
  margin: 0 0 0.625rem 0;
}

.benefit-card__text {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  margin: 0;
  line-height: 1.7;
}

/* ===== Why Now Section ===== */
.why-now {
  background: linear-gradient(135deg, #0d9488 0%, var(--heiwa-primary) 50%, #00d4ca 100%);
  padding: 5rem 2rem;
  position: relative;
  overflow: hidden;
}

.why-now::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.5;
}

.why-now__inner {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}

.why-now__title {
  font-size: 2.25rem;
  font-weight: 700;
  color: white;
  margin: 0 0 1.5rem 0;
}

.why-now__points {
  display: flex;
  justify-content: center;
  gap: 3rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}

.why-now__point {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: white;
  font-size: 1.0625rem;
}

.why-now__point-icon {
  width: 28px;
  height: 28px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.why-now__point-icon svg {
  width: 16px;
  height: 16px;
}

.why-now__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1.25rem 3rem;
  background: white;
  color: var(--heiwa-primary) !important;
  font-size: 1.125rem;
  font-weight: 600;
  border-radius: 0.75rem;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.why-now__cta:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
}

.why-now__cta svg {
  width: 20px;
  height: 20px;
  transition: transform 0.3s ease;
}

.why-now__cta:hover svg {
  transform: translateX(4px);
}

/* ===== FAQ Section ===== */
.faq {
  background: var(--bg-secondary);
  padding: 4rem 2rem;
}

.faq__inner {
  max-width: 800px;
  margin: 0 auto;
}

.faq__list {
  margin-top: 3rem;
}

.faq-item {
  background: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 0.75rem;
  margin-bottom: 1rem;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item:hover {
  border-color: var(--heiwa-primary-light);
}

.faq-item__question {
  width: 100%;
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-primary);
  transition: all 0.2s ease;
}

.faq-item__question:hover {
  color: var(--heiwa-primary);
}

.faq-item__icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--heiwa-primary-light);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.faq-item__icon svg {
  width: 14px;
  height: 14px;
  color: var(--heiwa-primary);
  transition: transform 0.3s ease;
}

.faq-item--open .faq-item__icon {
  background: var(--heiwa-primary);
}

.faq-item--open .faq-item__icon svg {
  color: white;
  transform: rotate(180deg);
}

.faq-item__answer {
  padding: 0 1.5rem 1.25rem;
  font-size: 0.9375rem;
  color: var(--text-secondary);
  line-height: 1.7;
  display: none;
  white-space: pre-line;
}

.faq-item--open .faq-item__answer {
  display: block;
}

/* ===== Final CTA ===== */
.final-cta {
  background: var(--bg-primary);
  padding: 4rem 2rem;
  text-align: center;
}

.final-cta__inner {
  max-width: 700px;
  margin: 0 auto;
}

.final-cta__icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--heiwa-primary-light) 0%, #ccf5f3 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem;
}

.final-cta__icon svg {
  width: 40px;
  height: 40px;
  color: var(--heiwa-primary);
}

.final-cta__title {
  font-size: 2rem;
  font-weight: 700;
  color: var(--text-primary);
  margin: 0 0 1rem 0;
}

.final-cta__text {
  font-size: 1.125rem;
  color: var(--text-secondary);
  margin: 0 0 2rem 0;
  line-height: 1.7;
}

.final-cta__button {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1.25rem 3rem;
  font-size: 1.125rem;
  font-weight: 600;
  border-radius: 0.75rem;
  background: linear-gradient(135deg, var(--heiwa-primary) 0%, #00a89f 100%);
  color: white !important;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(0, 187, 179, 0.4);
}

.final-cta__button:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(0, 187, 179, 0.5);
}

.final-cta__button svg {
  width: 20px;
  height: 20px;
  transition: transform 0.3s ease;
}

.final-cta__button:hover svg {
  transform: translateX(4px);
}

.final-cta__note {
  margin-top: 1.5rem;
  font-size: 0.875rem;
  color: var(--text-muted);
}

/* ===== Footer ===== */
.landing-footer {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border-color);
  padding: 3rem 2rem;
}

.landing-footer__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1rem;
}

.landing-footer__brand {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.landing-footer__logo {
  height: 32px;
  width: auto;
  opacity: 0.7;
}

.landing-footer__text {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin: 0;
}

.landing-footer__links {
  display: flex;
  gap: 2rem;
}

.landing-footer__link {
  font-size: 0.875rem;
  color: var(--text-secondary);
  transition: color 0.2s ease;
}

.landing-footer__link:hover {
  color: var(--heiwa-primary);
}

.landing-footer__powered-by {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.25rem;
}

/* Legal mentions row (centered, below the existing footer content)
   Intentionally small and unbold so it reads as quiet fine print. */
.landing-footer__legal {
  max-width: 900px;
  margin: 0.85rem auto 0;
  padding: 0 1rem;
  text-align: center;
  font-size: 0.65625rem; /* ~25% smaller than the surrounding footer text */
  font-weight: 400;
  line-height: 1.6;
  color: var(--text-muted);
  opacity: 0.85;
}

.landing-footer__powered-label {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.landing-footer__beloy-logo {
  height: 20px;
  width: auto;
  filter: brightness(0);
  opacity: 0.7;
}

html.dark-mode .landing-footer__beloy-logo {
  filter: none;
  opacity: 0.7;
}

/* ===== Responsive ===== */
@media (max-width: 1024px) {
  .hero__inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .hero__card {
    max-width: 500px;
    margin: 0 auto;
  }

  .stats__inner {
    grid-template-columns: repeat(2, 1fr);
  }

  .coverage__grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .landing-header__logo {
    height: 32px;
  }

  .landing-footer__logo {
    height: 28px;
  }

  .landing-header__nav {
    display: none;
  }

  .hero {
    padding: 3rem 1.5rem 4rem;
  }

  .hero__title {
    font-size: 2.25rem;
  }

  .hero__subtitle {
    font-size: 1.25rem;
  }

  .steps {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .steps::before {
    display: none;
  }

  .benefits__grid {
    grid-template-columns: 1fr;
  }

  .benefits__message {
    font-size: 1.0625rem;
    text-align: center;
  }

  .benefits__statement {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .benefits__compare-cards {
    grid-template-columns: 1fr;
    max-width: 420px;
    justify-self: center;
  }

  .section-title {
    font-size: 1.75rem;
  }

  .why-now__points {
    flex-direction: column;
    gap: 1rem;
    align-items: center;
  }

  .landing-footer__inner {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .hero__cta {
    flex-direction: column;
  }

  .hero__cta-primary,
  .hero__cta-secondary {
    width: 100%;
    justify-content: center;
  }

  .hero__trust {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
  }

  .stats__inner {
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
  }

  .stat__number {
    font-size: 2rem;
  }
}

/* ===== Dark Mode Overrides ===== */
/* Overrides for hardcoded colors that bypass CSS custom properties */

html.dark-mode .landing-header {
  background: rgba(15, 20, 25, 0.95);
  border-bottom-color: #2d3640;
}

html.dark-mode .hero {
  background: linear-gradient(165deg, #0f1419 0%, #1a1f26 40%, #0f1419 100%);
}

html.dark-mode .hero::before {
  background: radial-gradient(circle, rgba(0, 187, 179, 0.12) 0%, transparent 70%);
}

html.dark-mode .hero__card-main {
  background: #1a1f26;
  border-color: #2d3640;
  box-shadow: 0 25px 60px -12px rgba(0, 0, 0, 0.5);
}

html.dark-mode .hero__card-image {
  border-color: #2d3640;
  box-shadow: 0 25px 60px -12px rgba(0, 0, 0, 0.5);
}

html.dark-mode .hero__card-main:hover {
  box-shadow: 0 35px 70px -15px rgba(0, 187, 179, 0.25);
}

html.dark-mode .hero__card-header {
  border-bottom-color: #2d3640;
}

html.dark-mode .hero__card-icon {
  background: rgba(0, 187, 179, 0.15);
}

html.dark-mode .hero__card-icon::before {
  background: var(--heiwa-primary);
  opacity: 0.1;
}

html.dark-mode .hero__feature:hover {
  background: #242b33;
}

html.dark-mode .hero__floating-badge {
  color: #78350f;
}

html.dark-mode .hero__trust {
  border-top-color: #2d3640;
}

html.dark-mode .hero__cta-secondary {
  border-color: #2d3640;
  color: #a8b2bd !important;
}

html.dark-mode .hero__cta-secondary:hover {
  border-color: var(--heiwa-primary);
  color: var(--heiwa-primary) !important;
  background: rgba(0, 187, 179, 0.12);
}

html.dark-mode .coverage {
  background: linear-gradient(180deg, #1a1f26 0%, #0f1419 100%);
}

html.dark-mode .coverage__details-link {
  background: rgba(0, 187, 179, 0.08);
}

html.dark-mode .coverage__details-link:hover {
  color: #0f1419;
}

html.dark-mode .coverage-card {
  background: #1a1f26;
  border-color: #2d3640;
}

html.dark-mode .coverage-card:hover {
  border-color: var(--heiwa-primary);
  box-shadow: 0 10px 40px -10px rgba(0, 187, 179, 0.25);
}

html.dark-mode .benefit-card {
  background: #1a1f26;
}

html.dark-mode .benefits {
  background: linear-gradient(180deg, #0f1419 0%, #111920 100%);
}

html.dark-mode .benefits__compare-card {
  background: rgba(217, 242, 240, 0.92);
  border-color: rgba(0, 130, 112, 0.34);
  box-shadow: 0 5px 14px rgba(0, 0, 0, 0.22);
}

html.dark-mode .benefits__compare-card--alt {
  border-color: rgba(131, 131, 131, 0.42);
  background: rgba(131, 131, 131, 0.2);
  box-shadow: 0 5px 14px rgba(0, 0, 0, 0.18);
}

html.dark-mode .benefits__compare-value {
  color: #08292f;
}

html.dark-mode .benefits__compare-card--alt .benefits__compare-label {
  color: rgba(8, 41, 47, 0.66);
}

html.dark-mode .benefits__compare-card--alt .benefits__compare-value {
  color: #000000;
}

html.dark-mode .benefit-card:hover {
  background: #242b33;
  box-shadow: 0 20px 50px -15px rgba(0, 0, 0, 0.5);
}

html.dark-mode .benefit-card__icon {
  background: rgba(0, 187, 179, 0.15);
}

html.dark-mode .coverage-card__icon {
  background: rgba(0, 187, 179, 0.15);
}

html.dark-mode .step__number {
  background: #0f1419;
}

html.dark-mode .step:hover .step__number {
  background: var(--heiwa-primary);
}

html.dark-mode .why-now__cta {
  background: #f5f5f5;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

html.dark-mode .why-now__cta:hover {
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6);
}

html.dark-mode .why-now__point-icon {
  background: rgba(255, 255, 255, 0.15);
}

html.dark-mode .faq-item {
  background: #1a1f26;
  border-color: #2d3640;
}

html.dark-mode .faq-item:hover {
  border-color: rgba(0, 187, 179, 0.3);
}

html.dark-mode .faq-item__icon {
  background: rgba(0, 187, 179, 0.15);
}

html.dark-mode .final-cta__icon {
  background: rgba(0, 187, 179, 0.15);
}

html.dark-mode .landing-footer {
  border-top-color: #2d3640;
}

/* Logo inversion */
html.dark-mode .landing-header__logo,
html.dark-mode .landing-footer__logo {
  filter: brightness(0) invert(1);
}

/* Coverage icon hover - dark text on teal background */
html.dark-mode .coverage-card:hover .coverage-card__icon svg {
  color: #0f1419;
}

html.dark-mode .benefit-card:hover .benefit-card__icon svg {
  color: #0f1419;
}

html.dark-mode .step:hover .step__number svg {
  color: #0f1419;
}

/* FAQ open state icon text */
html.dark-mode .faq-item--open .faq-item__icon svg {
  color: #0f1419;
}
