:root {
  --orange: #e85d04;
  --orange-d: #c44d03;
  --blue: #1a4fb8;
  --ink: #1b1b1b;
  --muted: #5c5c5c;
  --bg: #fff;
  --alt: #fff6ef;
  --max: 1100px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: Poppins, system-ui, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
}
img { max-width: 100%; display: block; }
a { color: inherit; }

.wrap { width: min(var(--max), calc(100% - 32px)); margin-inline: auto; }

.top {
  position: sticky;
  top: 0;
  z-index: 20;
  background: var(--orange);
  box-shadow: 0 2px 10px rgba(0,0,0,.12);
}
.bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
}
.brand img {
  height: 64px;
  width: auto;
  background: var(--orange);
}
.nav { display: flex; gap: 22px; }
.nav a {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  font-size: .95rem;
}
.nav a:hover { text-decoration: underline; }
.menu {
  display: none;
  background: none;
  border: 0;
  color: #fff;
  font-size: 1.6rem;
  cursor: pointer;
}

.hero {
  position: relative;
  min-height: 78vh;
  display: grid;
  place-items: center;
  color: var(--ink);
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(232,93,4,.35), rgba(232,93,4,.2)),
    url("https://images.unsplash.com/photo-1581092918056-0c4c3acd3789?auto=format&fit=crop&w=1800&q=70") center/cover;
}
.hero-inner { position: relative; padding: 80px 0; display: grid; place-items: center; }
.hero-card {
  background: rgba(255,255,255,.92);
  border-radius: 50%;
  width: min(520px, 92vw);
  aspect-ratio: 1;
  display: grid;
  place-content: center;
  text-align: center;
  padding: 48px 36px;
  box-shadow: 0 16px 40px rgba(0,0,0,.18);
}
.eyebrow {
  color: var(--blue);
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-size: .78rem;
  margin-bottom: 8px;
}
h1, h2, h3 { font-family: Montserrat, sans-serif; line-height: 1.15; }
h1 { font-size: clamp(1.7rem, 4vw, 2.5rem); color: var(--orange); margin-bottom: 12px; }
.lead { color: var(--muted); margin-bottom: 22px; }

.btn {
  display: inline-block;
  background: var(--orange);
  color: #fff;
  text-decoration: none;
  border: 0;
  border-radius: 999px;
  padding: 12px 22px;
  font-weight: 600;
  cursor: pointer;
  font-family: inherit;
}
.btn:hover { background: var(--orange-d); }

.section { padding: 80px 0; }
.section.alt { background: var(--alt); }
.kicker {
  color: var(--orange);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: .8rem;
}
h2 { font-size: clamp(1.6rem, 3vw, 2.1rem); margin: 6px 0 22px; }
.intro { max-width: 62ch; color: var(--muted); margin-bottom: 28px; }

.grid-2 {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 36px;
  align-items: start;
}
.checks { list-style: none; }
.checks li {
  padding: 10px 0 10px 28px;
  position: relative;
  border-bottom: 1px solid #eee;
}
.checks li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--orange);
  font-weight: 700;
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.card {
  background: #fff;
  border: 1px solid #f0d4c0;
  border-radius: 16px;
  padding: 24px;
}
.card h3 { color: var(--blue); margin-bottom: 8px; }

form { display: grid; gap: 12px; }
label { display: grid; gap: 6px; font-weight: 600; font-size: .92rem; }
input, textarea {
  font: inherit;
  padding: 10px 12px;
  border: 1px solid #ddd;
  border-radius: 10px;
}
.hidden { display: none; }
.info {
  background: var(--alt);
  border-radius: 16px;
  padding: 24px;
}
.company { font-weight: 700; margin: 10px 0; }
table { width: 100%; border-collapse: collapse; margin-top: 10px; }
th, td { text-align: left; padding: 6px 0; border-bottom: 1px solid #f0d4c0; }
th { width: 40%; color: var(--muted); font-weight: 500; }
.note { margin-top: 14px; font-size: .85rem; color: var(--muted); }

footer { background: var(--orange); color: #fff; padding: 28px 0; }
.foot { display: flex; align-items: center; gap: 16px; }
.foot-logo { height: 56px; width: auto; }
.thanks { min-height: 60vh; }

@media (max-width: 800px) {
  .menu { display: block; }
  .nav {
    display: none;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: var(--orange-d);
    flex-direction: column;
    padding: 16px;
  }
  .nav.open { display: flex; }
  .hero-card { border-radius: 28px; aspect-ratio: auto; }
  .grid-2, .cards { grid-template-columns: 1fr; }
  .foot { flex-direction: column; text-align: center; }
}
