:root {
  --primary: #ea580c;
  --primary-dark: #c2410c;
  --accent: #fbbf24;
  --gradient: linear-gradient(135deg, #f97316 0%, #fbbf24 100%);
  --bg: #fffbeb;
  --surface: #ffffff;
  --text: #1c1917;
  --text-muted: #78716c;
  --border: #fed7aa;
  --radius: 16px;
  --shadow: 0 8px 32px rgba(234, 88, 12, 0.15);
  --font: "Nunito", system-ui, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font); background: var(--bg); color: var(--text); line-height: 1.6; }
img { max-width: 100%; height: auto; display: block; }
a { color: var(--primary); text-decoration: none; }
.container { max-width: 1140px; margin: 0 auto; padding: 0 20px; }

.header {
  background: var(--surface);
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  position: sticky; top: 0; z-index: 100;
}
.header__inner { display: flex; align-items: center; justify-content: space-between; padding: 14px 0; }
.logo { display: flex; align-items: center; gap: 10px; font-weight: 800; font-size: 1.1rem; color: var(--primary); }
.logo svg { width: 34px; height: 34px; }
.nav { display: flex; gap: 20px; align-items: center; }
.nav a { color: var(--text-muted); font-weight: 600; font-size: 0.9rem; }
.nav a:hover { color: var(--primary); }

.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 14px 32px; border-radius: 50px; font-weight: 700; font-size: 1rem;
  border: none; cursor: pointer; transition: transform 0.2s, box-shadow 0.2s;
}
.btn--primary { background: var(--gradient); color: #fff; box-shadow: var(--shadow); }
.btn--primary:hover { transform: scale(1.03); }
.btn--ghost { background: transparent; color: var(--primary); border: 2px solid var(--primary); }

.hero {
  padding: 48px 0 64px;
  background: var(--gradient);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.hero::after {
  content: ""; position: absolute; bottom: -2px; left: 0; right: 0; height: 60px;
  background: var(--bg); border-radius: 50% 50% 0 0 / 100% 100% 0 0;
}
.hero__wrap { display: flex; flex-direction: column; align-items: center; text-align: center; position: relative; z-index: 1; }
.hero h1 { font-size: clamp(2.2rem, 5vw, 3.2rem); font-weight: 900; margin-bottom: 16px; line-height: 1.15; }
.hero__sub { font-size: 1.2rem; opacity: 0.95; max-width: 560px; margin-bottom: 28px; }
.hero__img { margin-top: 32px; border-radius: var(--radius); overflow: hidden; box-shadow: 0 20px 60px rgba(0,0,0,0.2); max-width: 700px; width: 100%; }

.stats {
  padding: 48px 0;
  margin-top: -20px;
  position: relative; z-index: 2;
}
.stats__row {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px;
}
.stat-box {
  background: var(--surface); border-radius: var(--radius); padding: 28px 20px;
  text-align: center; box-shadow: var(--shadow);
}
.stat-box__num { font-size: 2.5rem; font-weight: 900; color: var(--primary); line-height: 1; }
.stat-box__label { font-size: 0.85rem; color: var(--text-muted); margin-top: 6px; font-weight: 600; }

.section { padding: 72px 0; }
.section__head { text-align: center; margin-bottom: 40px; }
.section__head h2 { font-size: 2rem; font-weight: 800; margin-bottom: 10px; }
.section__head p { color: var(--text-muted); max-width: 540px; margin: 0 auto; }

.filter-panel {
  background: var(--surface); border-radius: var(--radius); padding: 32px;
  box-shadow: var(--shadow); margin-bottom: 32px;
}
.filter-panel__row { display: grid; grid-template-columns: 1fr 1fr auto; gap: 24px; align-items: end; }
.filter-panel label { display: block; font-weight: 700; margin-bottom: 8px; font-size: 0.9rem; }
.filter-panel select {
  width: 100%; padding: 12px 16px; border: 2px solid var(--border); border-radius: 10px;
  font-family: inherit; font-size: 1rem; background: #fff;
}
.filter-panel__count { font-weight: 700; color: var(--primary); white-space: nowrap; padding-bottom: 12px; }

.offers-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.offer {
  background: var(--surface); border: 2px solid var(--border); border-radius: var(--radius);
  padding: 24px; transition: border-color 0.2s, transform 0.2s;
}
.offer:hover { border-color: var(--primary); transform: translateY(-4px); }
.offer__sum { font-size: 1.75rem; font-weight: 900; color: var(--primary); }
.offer__term { color: var(--text-muted); font-size: 0.9rem; margin: 4px 0 16px; }
.offer__tags { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 16px; }
.offer__tag {
  background: #ffedd5; color: var(--primary-dark); padding: 4px 10px;
  border-radius: 20px; font-size: 0.75rem; font-weight: 700;
}

.perks { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.perk {
  display: flex; gap: 16px; background: var(--surface); padding: 24px;
  border-radius: var(--radius); border-left: 4px solid var(--accent);
}
.perk__icon { font-size: 2rem; flex-shrink: 0; }
.perk h3 { font-size: 1rem; margin-bottom: 4px; }
.perk p { color: var(--text-muted); font-size: 0.9rem; }

.timeline { max-width: 640px; margin: 0 auto; }
.timeline__item {
  display: flex; gap: 20px; padding-bottom: 32px; position: relative;
}
.timeline__item:not(:last-child)::before {
  content: ""; position: absolute; left: 19px; top: 40px; bottom: 0; width: 2px; background: var(--border);
}
.timeline__dot {
  width: 40px; height: 40px; background: var(--gradient); border-radius: 50%;
  display: flex; align-items: center; justify-content: center; color: #fff; font-weight: 800; flex-shrink: 0;
}
.timeline__body h3 { margin-bottom: 4px; }
.timeline__body p { color: var(--text-muted); font-size: 0.95rem; }

.reviews { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.review {
  background: var(--surface); padding: 24px; border-radius: var(--radius); box-shadow: var(--shadow);
}
.review__stars { color: var(--accent); font-size: 1.1rem; margin-bottom: 10px; }
.review__text { font-size: 0.95rem; color: var(--text-muted); margin-bottom: 12px; font-style: italic; }
.review__author { font-weight: 700; font-size: 0.85rem; }

.faq { max-width: 700px; margin: 0 auto; }
.faq details {
  background: var(--surface); border-radius: var(--radius); margin-bottom: 10px;
  border: 1px solid var(--border);
}
.faq summary { padding: 18px 22px; font-weight: 700; cursor: pointer; list-style: none; }
.faq summary::-webkit-details-marker { display: none; }
.faq p { padding: 0 22px 18px; color: var(--text-muted); font-size: 0.95rem; }

.footer {
  background: #292524; color: #a8a29e; padding: 40px 0 20px; font-size: 0.85rem;
}
.footer__disclaimer { border-top: 1px solid #44403c; padding-top: 20px; margin-top: 24px; line-height: 1.7; }

@media (max-width: 900px) {
  .stats__row, .offers-grid, .reviews { grid-template-columns: 1fr; }
  .filter-panel__row { grid-template-columns: 1fr; }
  .perks { grid-template-columns: 1fr; }
  .nav { display: none; }
}
