:root {
  color-scheme: light;
  color: #111827;
  background: #f8fafc;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
}

body {
  background: #f8fafc;
  color: #111827;
}

a,
button,
input,
select,
textarea {
  font: inherit;
}

button,
input,
select,
textarea {
  outline: none;
}

.home-page {
  width: min(1180px, 100%);
  margin: 0 auto;
  padding: 24px;
}

.page-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 18px;
  padding-bottom: 24px;
}

.brand-block {
  display: grid;
  gap: 6px;
}

.brand-logo {
  font-size: 1.6rem;
  font-weight: 800;
  color: #111827;
}

.brand-tag {
  margin: 0;
  color: #4b5563;
  font-size: 0.95rem;
}

.page-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.nav-link {
  color: #475569;
  font-weight: 600;
  transition: color 0.2s ease;
}

.nav-link:hover {
  color: #111827;
}

.hero-panel {
  position: relative;
  z-index: 0;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 28px;
  background: linear-gradient(180deg, #ffffff 0%, #f3f4f6 100%);
  border-radius: 32px;
  box-shadow: 0 28px 80px rgba(15, 23, 42, 0.08);
  padding: 48px;
  border: 1px solid rgba(17, 24, 39, 0.08);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
}

.hero-bg-layer {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
  transition: opacity 1.5s ease;
}

.hero-bg-layer.is-active {
  opacity: 1;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(100deg, rgba(255, 255, 255, 0.5) 0%, rgba(255, 255, 255, 0.32) 35%, rgba(255, 255, 255, 0.1) 65%);
}

.hero-copy {
  display: grid;
  gap: 18px;
}

.hero-eyebrow,
.eyebrow {
  margin: 0;
  color: #b45309;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 0.78rem;
}

.hero-title,
.card-header h2,
.section-heading h2,
.step-card h3,
.benefit-card h3 {
  margin: 0;
  color: #111827;
}

.hero-title {
  font-size: clamp(2.4rem, 4vw, 4.4rem);
  line-height: 1.02;
}

.hero-text,
.section-heading p,
.benefits-text p,
.step-card p,
.benefit-card p,
.request-note {
  margin: 0;
  /* color: #475569; */
  font-weight: 600;
  line-height: 1.8;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 20px;
}

.cta-primary,
.cta-secondary,
.submit-btn {
  border-radius: 18px;
  padding: 16px 26px;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.2s ease, filter 0.2s ease, background-color 0.2s ease;
}

.cta-primary,
.submit-btn {
  background: #111827;
  color: #fbbf24;
  border: 1px solid #fbbf24;
}

.cta-primary:hover,
.submit-btn:hover {
  transform: translateY(-1px);
  filter: brightness(1.05);
}

.cta-secondary {
  background: #ffffff;
  border: 1px solid #f59e0b;
  color: #111827;
}

.cta-secondary:hover {
  background: #fffbeb;
}

.submit-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}

.disclaimer-control {
  display: grid;
  gap: 12px;
  align-items: flex-start;
}

.disclaimer-checkbox {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.92rem;
  color: #475569;
}

.disclaimer-checkbox input {
  width: 18px;
  height: 18px;
  border-radius: 4px;
  border: 1px solid #374151;
  accent-color: #f59e0b;
}

.disclaimer-toggle {
  border: none;
  background: transparent;
  color: #111827;
  font-weight: 700;
  cursor: pointer;
  padding: 0;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.disclaimer-icon {
  width: 20px;
  height: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #fbbf24;
  color: #111827;
  font-size: 0.85rem;
  font-weight: 700;
}

.disclaimer-popup {
  display: none;
  max-width: 380px;
  padding: 16px;
  border-radius: 18px;
  background: #111827;
  color: #f8fafc;
  border: 1px solid #f59e0b;
}

.disclaimer-popup.visible {
  display: block;
}

.hero-quick-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 32px;
}

.stat-card {
  padding: 20px;
  border-radius: 22px;
  background: #f8fafc;
  border: 1px solid #cbd5e1;
  box-shadow: 0 18px 32px rgba(15, 23, 42, 0.06);
}

.stat-card strong {
  display: block;
  font-size: 1.8rem;
  color: #0f172a;
  margin-bottom: 8px;
}

.stat-card span {
  color: #475569;
}

.request-card {
  display: grid;
  gap: 20px;
  padding: 32px;
  background: #ffffff;
  border-radius: 28px;
  border: 1px solid #cbd5e1;
  box-shadow: 0 22px 40px rgba(15, 23, 42, 0.06);
}

.card-header h2 {
  font-size: 1.9rem;
}

.request-form {
  display: grid;
  gap: 18px;
}

.form-row {
  display: grid;
  gap: 10px;
}

.form-row label {
  font-size: 0.95rem;
  color: #475569;
  font-weight: 600;
}

.form-row input,
.form-row select,
.form-row textarea {
  width: 100%;
  min-height: 48px;
  border-radius: 16px;
  border: 1px solid #d1d5db;
  background: #ffffff;
  color: #111827;
  padding: 14px 16px;
}

.form-row textarea {
  min-height: 140px;
  resize: vertical;
}

.split-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.request-note {
  font-size: 0.95rem;
}

.section-heading {
  display: grid;
  gap: 12px;
  margin: 64px 0 24px;
  text-align: center;
  position: relative;
}

.section-heading::after {
  content: '';
  width: 84px;
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, #f59e0b, #b45309);
  margin: 0 auto;
}

.section-heading h2 {
  font-size: clamp(2rem, 3vw, 2.8rem);
  color: #0f172a;
}

.coupons-panel,
.how-it-works,
.benefits-panel {
  width: 100%;
}

.coupons-grid,
.steps-grid,
.benefits-grid {
  display: grid;
  gap: 18px;
}

.coupons-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.coupon-card,
.step-card,
.benefit-card {
  padding: 26px;
  border-radius: 24px;
  background: #ffffff;
  border: 1px solid #d1d5db;
  box-shadow: 0 18px 42px rgba(15, 23, 42, 0.06);
}

.step-card:nth-child(1),
.step-card:nth-child(2),
.step-card:nth-child(3) {
  background: #f8fafc;
  border-color: #cbd5e1;
}

.benefit-card {
  background: #ffffff;
}

.benefit-card:nth-child(1) {
  border-color: #cbd5e1;
}

.benefit-card:nth-child(2) {
  border-color: #f59e0b;
}

.benefit-card:nth-child(3) {
  border-color: #ea580c;
}

.coupon-card:nth-child(1),
.coupon-card:nth-child(2),
.coupon-card:nth-child(3) {
  background: #ffffff;
  border-color: #cbd5e1;
}

.coupon-chip {
  display: inline-flex;
  padding: 8px 14px;
  border-radius: 999px;
  background: #f59e0b;
  color: #111827;
  font-weight: 700;
  margin-bottom: 16px;
}

.coupon-card h3,
.step-card h3,
.benefit-card h3 {
  margin: 0 0 12px;
  font-size: 1.2rem;
}

.coupon-card p,
.step-card p,
.benefit-card p {
  color: #475569;
}

.coupon-code {
  display: inline-flex;
  padding: 12px 16px;
  border-radius: 16px;
  background: #111827;
  border: 1px solid #111827;
  color: #f8fafc;
  font-weight: 700;
}

.steps-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.benefits-grid {
  grid-template-columns: 1fr;
  gap: 18px;
}

.brand-logo {
  max-width: 150px;
  height: auto;
}

.step-number {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #f59e0b;
  color: #111827;
  font-weight: 700;
  margin-bottom: 18px;
}

.benefits-panel {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 28px;
  align-items: center;
  margin-bottom: 48px;
  margin-top: 48px;
}

.benefits-media {
  height: 100%;
}

.benefits-image {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: cover;
  object-position: 75% 45%;
  border-radius: 28px;
  box-shadow: 0 18px 42px rgba(15, 23, 42, 0.12);
}

.benefits-content {
  display: grid;
  gap: 28px;
}

.benefits-text {
  display: grid;
  gap: 18px;
}

.benefits-text h2 {
  font-size: clamp(2rem, 3vw, 2.8rem);
}

.support-panel {
  max-width: 640px;
  margin: 0 auto 64px;
}

.support-card {
  width: 100%;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.trust-card {
  padding: 26px;
  border-radius: 24px;
  background: #ffffff;
  border: 1px solid #d1d5db;
  box-shadow: 0 18px 42px rgba(15, 23, 42, 0.06);
}

.trust-card h3 {
  margin: 0 0 12px;
  font-size: 1.2rem;
  color: #111827;
}

.trust-card p {
  margin: 0;
  color: #475569;
  line-height: 1.8;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.testimonial-card {
  padding: 26px;
  border-radius: 24px;
  background: #ffffff;
  border: 1px solid #d1d5db;
  box-shadow: 0 18px 42px rgba(15, 23, 42, 0.06);
  display: grid;
  gap: 14px;
}

.testimonial-stars {
  color: #f59e0b;
  letter-spacing: 2px;
}

.testimonial-quote {
  margin: 0;
  color: #111827;
  line-height: 1.7;
}

.testimonial-author {
  margin: 0;
  color: #475569;
  font-weight: 600;
  font-size: 0.92rem;
}

.faq-list {
  display: grid;
  gap: 14px;
  max-width: 820px;
  margin: 0 auto;
}

.faq-item {
  padding: 22px 26px;
  border-radius: 20px;
  background: #ffffff;
  border: 1px solid #d1d5db;
}

.faq-item summary {
  cursor: pointer;
  font-weight: 700;
  color: #111827;
  list-style: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: '+';
  float: right;
  color: #b45309;
  font-weight: 700;
}

.faq-item[open] summary::after {
  content: '\2212';
}

.faq-item p {
  margin: 14px 0 0;
  color: #475569;
  line-height: 1.8;
}

.site-footer {
  margin-top: 64px;
  background: #111827;
  color: #cbd5e1;
}

.footer-inner {
  width: min(1180px, 100%);
  margin: 0 auto;
  padding: 48px 24px 24px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 32px;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(248, 250, 252, 0.12);
}

.footer-brand {
  display: grid;
  gap: 14px;
}

.footer-logo {
  max-width: 150px;
  height: auto;
}

.footer-brand p {
  margin: 0;
  color: #9ca3af;
  line-height: 1.7;
}

.footer-col {
  display: grid;
  gap: 12px;
  align-content: start;
}

.footer-col h4 {
  margin: 0 0 4px;
  color: #f8fafc;
}

.footer-col .nav-link {
  color: #9ca3af;
}

.footer-col .nav-link:hover {
  color: #f8fafc;
}

.footer-bottom {
  padding-top: 20px;
  color: #6b7280;
  font-size: 0.88rem;
}

.footer-bottom p {
  margin: 0;
}

@media (max-width: 1024px) {
  .hero-panel,
  .benefits-panel {
    grid-template-columns: 1fr;
  }
  .split-row {
    grid-template-columns: 1fr;
  }
  .hero-quick-stats,
  .coupons-grid,
  .steps-grid,
  .benefits-grid,
  .trust-grid,
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .home-page {
    padding: 20px;
  }
  .page-header {
    flex-direction: column;
    align-items: flex-start;
  }
  .hero-panel {
    padding: 32px 20px;
  }
  .hero-actions {
    flex-direction: column;
  }
}
