:root {
  --black: #111111;
  --charcoal: #1b1b1b;
  --yellow: #ffd21f;
  --yellow-dark: #f4bd00;
  --white: #ffffff;
  --muted: #666666;
  --light: #f6f6f2;
  --border: #e8e3d0;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--black);
  background: var(--white);
  line-height: 1.6;
}

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

.container {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.nav {
  min-height: 76px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 1.35rem;
  letter-spacing: -0.03em;
}

.logo-mark {
  background: var(--yellow);
  color: var(--black);
  border: 3px solid var(--black);
  padding: 4px 8px;
  border-radius: 10px;
  box-shadow: 4px 4px 0 var(--black);
}

nav {
  display: flex;
  align-items: center;
  gap: 24px;
  font-weight: 700;
  font-size: 0.95rem;
}

.nav-cta {
  background: var(--black);
  color: var(--yellow);
  padding: 10px 16px;
  border-radius: 999px;
}

.hero {
  background: radial-gradient(circle at top right, rgba(255, 210, 31, 0.45), transparent 32%),
              linear-gradient(135deg, #fffdf3 0%, #ffffff 55%, #f7f7f7 100%);
  padding: 88px 0;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
}

.eyebrow {
  color: var(--yellow-dark);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.8rem;
  margin: 0 0 14px;
}

h1, h2, h3, p { margin-top: 0; }

h1 {
  font-size: clamp(3rem, 7vw, 5.8rem);
  line-height: 0.92;
  letter-spacing: -0.08em;
  margin-bottom: 24px;
}

h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.05;
  letter-spacing: -0.06em;
  margin-bottom: 16px;
}

h3 {
  font-size: 1.25rem;
  letter-spacing: -0.03em;
  margin-bottom: 8px;
}

.hero-text {
  font-size: 1.18rem;
  color: #333;
  max-width: 660px;
  margin-bottom: 28px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 24px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 800;
  transition: transform .2s ease, box-shadow .2s ease;
  cursor: pointer;
}

.btn:hover { transform: translateY(-2px); }

.primary {
  background: var(--yellow);
  color: var(--black);
  border: 3px solid var(--black);
  box-shadow: 5px 5px 0 var(--black);
}

.secondary {
  background: var(--white);
  color: var(--black);
  border: 2px solid var(--black);
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.trust-row span {
  background: var(--white);
  border: 1px solid var(--border);
  padding: 8px 12px;
  border-radius: 999px;
  font-weight: 700;
  color: #333;
}

.hero-card {
  background: var(--black);
  color: var(--white);
  min-height: 500px;
  border-radius: 34px;
  padding: 36px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  box-shadow: 0 24px 70px rgba(0,0,0,0.18);
  position: relative;
  overflow: hidden;
}

.hero-card::before {
  content: "";
  position: absolute;
  inset: auto -80px -120px auto;
  width: 260px;
  height: 260px;
  background: var(--yellow);
  border-radius: 50%;
  opacity: 0.95;
}

.tote-stack {
  position: relative;
  z-index: 2;
  margin: 0 auto 30px;
  width: min(340px, 100%);
}

.tote {
  margin-inline: auto;
  border: 4px solid var(--yellow);
}

.tote.lid {
  width: 270px;
  height: 34px;
  background: var(--yellow);
  border-radius: 12px 12px 4px 4px;
}

.tote.body {
  width: 245px;
  height: 150px;
  background: #111;
  border-radius: 10px 10px 24px 24px;
  margin-bottom: 22px;
  display: grid;
  place-items: center;
}

.tote.lid.small { width: 235px; }

.small-body {
  width: 215px !important;
  height: 130px !important;
}

.label-pouch {
  background: rgba(255,255,255,0.94);
  color: var(--black);
  border-radius: 10px;
  padding: 10px 18px;
  font-weight: 800;
}

.card-note {
  position: relative;
  z-index: 2;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.18);
  padding: 18px;
  border-radius: 18px;
  display: grid;
  gap: 4px;
}

.section { padding: 86px 0; }
.section.alt { background: var(--light); }

.section-heading {
  max-width: 760px;
  margin-bottom: 36px;
}

.feature-grid,
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.feature-card,
.step,
.area-box,
.perfect-card,
.price-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 26px;
}

.feature-card { min-height: 220px; }

.feature-card p,
.step p,
.split p,
.cta-card p,
.price-card p {
  color: var(--muted);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  align-items: stretch;
}

.price-card {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.price-card .btn { margin-top: auto; }

.price-card.featured {
  border: 3px solid var(--black);
  box-shadow: 8px 8px 0 var(--yellow);
  transform: translateY(-8px);
}

.package {
  color: var(--yellow-dark) !important;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.8rem;
  margin-bottom: 0;
}

.price {
  color: var(--black) !important;
  font-size: 2.75rem;
  font-weight: 900;
  letter-spacing: -0.06em;
  margin-bottom: 0;
}

.price span {
  font-size: 1rem;
  color: var(--muted);
  letter-spacing: 0;
}

.step span {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  background: var(--yellow);
  color: var(--black);
  border: 2px solid var(--black);
  border-radius: 50%;
  font-weight: 900;
  margin-bottom: 16px;
}

.split {
  display: grid;
  grid-template-columns: 1fr 0.75fr;
  gap: 40px;
  align-items: center;
}

.area-box {
  border: 3px solid var(--black);
  box-shadow: 8px 8px 0 var(--yellow);
}

.area-box p {
  font-weight: 800;
  color: var(--black);
}

.perfect-card {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 32px;
  align-items: center;
}

.perfect-card ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.perfect-card li {
  background: var(--light);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 10px 14px;
  font-weight: 700;
}

.cta-section {
  padding: 86px 0;
  background: var(--black);
}

.cta-card {
  color: var(--white);
  max-width: 880px;
}

.cta-card > .eyebrow,
.cta-card > h2,
.cta-card > p,
.cta-card > .small-note {
  text-align: center;
}

.quote-form {
  margin-top: 32px;
  display: grid;
  gap: 18px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 24px;
  padding: 26px;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

label {
  display: grid;
  gap: 8px;
  font-weight: 800;
  color: var(--white);
}

input,
select,
textarea {
  width: 100%;
  border: 2px solid transparent;
  border-radius: 14px;
  padding: 14px 16px;
  font: inherit;
}

input:focus,
select:focus,
textarea:focus {
  outline: none;
  border-color: var(--yellow);
}

.form-submit {
  justify-self: center;
  min-width: 240px;
}

.small-note {
  font-size: 0.88rem;
  opacity: 0.85;
  margin-top: 18px;
}

.small-note a {
  color: var(--yellow);
  font-weight: 800;
}

.footer {
  background: #080808;
  color: var(--white);
  padding: 28px 0;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  color: rgba(255,255,255,0.72);
  font-size: 0.92rem;
}

.footer p { margin: 0; }

@media (max-width: 900px) {
  nav { display: none; }

  .hero-grid,
  .split,
  .perfect-card {
    grid-template-columns: 1fr;
  }

  .feature-grid,
  .steps,
  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero { padding: 64px 0; }
  .hero-card { min-height: 420px; }
  .price-card.featured { transform: none; }
}

@media (max-width: 560px) {
  .container { width: min(100% - 28px, 1120px); }

  .feature-grid,
  .steps,
  .pricing-grid,
  .perfect-card ul,
  .form-row {
    grid-template-columns: 1fr;
  }

  .section { padding: 64px 0; }
  .footer-inner { display: grid; }
  .btn { width: 100%; }

  .form-submit {
    width: 100%;
    min-width: 0;
  }
}
