:root {
  --orange: #f07b16;
  --orange-dark: #c85f07;
  --ink: #181512;
  --muted: #69615b;
  --paper: #fffaf4;
  --cream: #fff3e5;
  --line: #ead9c7;
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(33, 24, 15, 0.11);
  --radius: 28px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Tahoma, Arial, sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(240, 123, 22, 0.16), transparent 28rem),
    linear-gradient(180deg, var(--paper), #fff);
  line-height: 1.75;
}

a { color: inherit; text-decoration: none; }

.topbar {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px clamp(18px, 5vw, 72px);
  background: rgba(255, 250, 244, 0.88);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(234, 217, 199, 0.7);
}
.brand img { width: 112px; height: auto; display: block; }
.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 9px 18px;
  border-radius: 999px;
  background: var(--ink);
  color: var(--white);
  font-weight: 700;
}

.section {
  width: min(1120px, calc(100% - 36px));
  margin: 0 auto;
  padding: 70px 0;
}

.hero {
  min-height: calc(100vh - 78px);
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(24px, 5vw, 72px);
  align-items: center;
  padding-top: 54px;
}
.eyebrow, .section-label {
  color: var(--orange-dark);
  font-weight: 800;
  letter-spacing: 0.04em;
  margin: 0 0 10px;
}
h1, h2 { margin: 0; line-height: 1.15; letter-spacing: -0.03em; }
h1 { font-size: clamp(46px, 8vw, 92px); max-width: 760px; }
h2 { font-size: clamp(30px, 5vw, 56px); max-width: 860px; }
.lead {
  margin: 26px 0 0;
  max-width: 670px;
  font-size: clamp(18px, 2.25vw, 25px);
  color: var(--muted);
}
.cta-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 34px;
}
.primary-btn, .secondary-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 14px 24px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 17px;
  border: 0;
  cursor: pointer;
}
.primary-btn { background: var(--orange); color: var(--white); box-shadow: 0 12px 30px rgba(240, 123, 22, 0.28); }
.secondary-btn { background: var(--white); border: 1px solid var(--line); }
.microcopy, .consent { color: var(--muted); font-size: 14px; margin-top: 14px; }

.hero-card {
  min-height: 440px;
  display: grid;
  place-items: center;
}
.ticket {
  width: min(420px, 100%);
  position: relative;
  padding: 42px 28px;
  border-radius: 30px;
  background: linear-gradient(145deg, var(--orange), #ff9a31);
  color: var(--white);
  box-shadow: var(--shadow);
  text-align: center;
  overflow: hidden;
}
.ticket:before, .ticket:after {
  content: "";
  position: absolute;
  top: 50%;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--paper);
  transform: translateY(-50%);
}
.ticket:before { right: -21px; }
.ticket:after { left: -21px; }
.ticket-label { display: inline-block; border: 1px dashed rgba(255,255,255,0.76); border-radius: 999px; padding: 6px 14px; font-weight: 700; }
.ticket strong { display: block; margin: 20px 0 8px; font-size: clamp(44px, 7vw, 76px); line-height: 1; }
.ticket p { margin: 0 0 20px; }
.code { background: rgba(255,255,255,0.16); border: 1px solid rgba(255,255,255,0.48); padding: 10px 16px; border-radius: 12px; font-weight: 900; letter-spacing: 0.08em; }

.insight, .promise, .trust {
  background: rgba(255,255,255,0.64);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(30px, 5vw, 54px);
  box-shadow: var(--shadow);
}
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 24px;
  color: var(--muted);
  font-size: 19px;
}
.promise p, .trust p { color: var(--muted); font-size: 21px; max-width: 780px; }

.offer-grid, .category-grid {
  margin-top: 26px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.offer-card {
  padding: 24px;
  border-radius: 22px;
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: 0 14px 32px rgba(33, 24, 15, 0.06);
}
.offer-card span { color: var(--muted); font-weight: 700; }
.offer-card strong { display: block; color: var(--orange-dark); font-size: 42px; line-height: 1; margin: 8px 0; }
.offer-card p { margin: 0; color: var(--muted); }
.category-pill {
  border: 1px solid var(--line);
  background: var(--white);
  border-radius: 999px;
  padding: 16px 20px;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
  box-shadow: 0 10px 24px rgba(33, 24, 15, 0.05);
}
.category-pill.active, .category-pill:hover { border-color: var(--orange); color: var(--orange-dark); background: #fff7ef; }

.steps ol {
  list-style: none;
  padding: 0;
  margin: 28px 0 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.steps li {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 22px;
}
.steps span {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--cream);
  color: var(--orange-dark);
  font-weight: 900;
}
.steps p { margin: 14px 0 0; color: var(--muted); }

.form-card {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 28px;
  align-items: start;
  padding: clamp(24px, 5vw, 52px);
  border-radius: var(--radius);
  background: var(--ink);
  color: var(--white);
  box-shadow: var(--shadow);
}
.form-card p { color: rgba(255,255,255,0.72); }
.lead-form {
  display: grid;
  gap: 14px;
  background: var(--white);
  color: var(--ink);
  border-radius: 24px;
  padding: 22px;
}
.lead-form label { display: grid; gap: 7px; font-weight: 800; }
input, select {
  width: 100%;
  min-height: 52px;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 12px 14px;
  font: inherit;
  background: #fffdfa;
}
.full { width: 100%; margin-top: 6px; }
.consent { color: var(--muted) !important; margin: 0; line-height: 1.55; }

.footer {
  width: min(1120px, calc(100% - 36px));
  margin: 0 auto;
  padding: 30px 0 52px;
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--muted);
  border-top: 1px solid var(--line);
}
.footer img { width: 90px; }

@media (max-width: 860px) {
  .topbar { padding: 12px 18px; }
  .brand img { width: 88px; }
  .hero, .split, .form-card { grid-template-columns: 1fr; }
  .hero { min-height: auto; padding-top: 34px; }
  .hero-card { min-height: 300px; }
  .offer-grid { grid-template-columns: 1fr 1fr; }
  .category-grid { grid-template-columns: 1fr; }
  .steps ol { grid-template-columns: 1fr; }
  .section { padding: 44px 0; }
}

@media (max-width: 520px) {
  .offer-grid { grid-template-columns: 1fr; }
  .cta-row a { width: 100%; }
  .nav-cta { padding: 8px 14px; min-height: 38px; }
}
