:root {
  --bg: #f3f0e8;
  --surface: #ffffff;
  --surface-alt: #e5e0d5;
  --text: #191919;
  --muted: #545454;
  --border: #191919;
  --accent: #bf5b2b;
  --accent-dark: #8c3913;
  --dark: #1e2427;
  --whatsapp: #1e8f4d;
  --shadow: 8px 8px 0 #191919;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Barlow", sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.45;
}

a {
  color: inherit;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  width: min(calc(100% - 2rem), var(--max));
  margin: 0 auto;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 30;
  background: var(--surface);
  border-bottom: 2px solid var(--border);
}

.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 0;
}

.brand {
  font-weight: 800;
  text-decoration: none;
  letter-spacing: 0.03em;
}

.topbar-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.topbar-phone {
  font-weight: 700;
  text-decoration: none;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--border);
  padding: 0.95rem 1.25rem;
  text-decoration: none;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.15s ease, background 0.15s ease, color 0.15s ease;
  border-radius: 0;
}

.btn:hover,
.btn:focus-visible {
  transform: translate(-2px, -2px);
}

.btn-solid {
  background: var(--accent);
  color: #fff;
}

.btn-outline {
  background: var(--surface);
}

.btn-dark {
  background: var(--dark);
  color: #fff;
}

.btn-whatsapp {
  background: var(--whatsapp);
  color: #fff;
}

.btn-voice {
  background: #efe5d3;
  color: var(--text);
}

.btn-full {
  width: 100%;
}

.hero {
  padding: 3rem 0 2rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2rem;
  align-items: start;
}

.eyebrow,
.form-kicker {
  margin: 0 0 0.75rem;
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.hero h1,
.section-heading h2,
.final-cta h2 {
  margin: 0;
  font-size: clamp(2.4rem, 5vw, 4.6rem);
  line-height: 0.96;
  text-transform: uppercase;
}

.hero-text,
.section-heading p,
.contact-note,
.final-cta p {
  font-size: 1.08rem;
  color: var(--muted);
}

.hero-cta-row,
.card-actions {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.hero-points,
.price-card ul,
.check-list {
  margin: 1.25rem 0 0;
  padding-left: 1.2rem;
}

.hero-points li,
.price-card li,
.check-list li {
  margin-bottom: 0.55rem;
}

.hero-panel,
.price-card,
.info-card,
.step-card,
.cta-box,
.faq-list details,
.image-frame {
  background: var(--surface);
  border: 2px solid var(--border);
  box-shadow: var(--shadow);
}

.quote-form {
  padding: 1.25rem;
}

.form-intro h2 {
  margin: 0;
  font-size: 2rem;
  text-transform: uppercase;
  line-height: 1;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.9rem;
  margin: 1.25rem 0;
}

.form-grid label {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  font-weight: 600;
  font-size: 0.95rem;
}

.full-width {
  grid-column: 1 / -1;
}

input,
select,
textarea {
  width: 100%;
  border: 2px solid var(--border);
  border-radius: 0;
  padding: 0.85rem 0.9rem;
  font: inherit;
  background: #fff;
  color: var(--text);
}

input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid rgba(191, 91, 43, 0.25);
  outline-offset: 1px;
}

.form-helper,
.form-status {
  margin: 0.9rem 0 0;
  font-size: 0.95rem;
  color: var(--muted);
}

.voice-fill-box {
  margin-top: 1rem;
}

.voice-helper {
  margin: 0.75rem 0 0;
  font-size: 0.95rem;
  color: var(--muted);
}

.image-section,
.pricing,
.bin-sizes,
.included,
.how-it-works,
.trust,
.faq,
.final-cta {
  padding: 2rem 0 3rem;
}

.image-frame {
  padding: 0;
  min-height: 320px;
  overflow: hidden;
}

.feature-image {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.pricing-heading {
  max-width: 860px;
}

.pricing-heading h2 {
  font-size: clamp(2.8rem, 6vw, 5.3rem);
}

.section-heading {
  margin-bottom: 1.5rem;
}

.section-gap {
  margin-top: 2rem;
}

.card-grid {
  display: grid;
  gap: 1.25rem;
}

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

.price-card,
.info-card,
.step-card {
  padding: 1.25rem;
}

.price-card h3,
.info-card h3,
.step-card h3,
.cta-box h3 {
  margin-top: 0;
  text-transform: uppercase;
}

.price {
  margin: 0.4rem 0 0.75rem;
  font-size: 3rem;
  font-weight: 800;
  line-height: 1;
}

.featured {
  background: #fffaf3;
}

.pricing-footnote {
  margin-top: 1.25rem;
  padding: 1rem 1.25rem;
  background: var(--surface-alt);
  border: 2px solid var(--border);
}

.split-grid {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 1.5rem;
  align-items: start;
}

.cta-box {
  padding: 1.5rem;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.step-number {
  display: inline-block;
  margin-bottom: 1rem;
  font-size: 2rem;
  font-weight: 800;
  color: var(--accent-dark);
}

.faq-list {
  display: grid;
  gap: 1rem;
}

.faq-list details {
  padding: 1rem 1.25rem;
}

.faq-list summary {
  font-weight: 700;
  cursor: pointer;
}

.final-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.5rem;
  background: var(--surface);
  border: 2px solid var(--border);
  box-shadow: var(--shadow);
}

.mobile-sticky-bar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 40;
  display: none;
  grid-template-columns: repeat(3, 1fr);
  background: var(--dark);
  border-top: 2px solid var(--border);
}

.mobile-sticky-bar a {
  padding: 0.9rem 0.5rem;
  color: #fff;
  text-decoration: none;
  text-align: center;
  font-weight: 700;
  border-right: 1px solid rgba(255, 255, 255, 0.2);
}

.mobile-sticky-bar a:last-child {
  border-right: 0;
}

@media (max-width: 960px) {
  .hero-grid,
  .split-grid,
  .three-up,
  .steps-grid,
  .final-cta-inner {
    grid-template-columns: 1fr;
    display: grid;
  }

  .hero h1,
  .section-heading h2,
  .final-cta h2 {
    font-size: clamp(2rem, 10vw, 3.2rem);
  }
}

@media (max-width: 720px) {
  body {
    padding-bottom: 64px;
  }

  .topbar-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .topbar-actions {
    width: 100%;
  }

  .topbar-actions .btn,
  .topbar-actions .topbar-phone {
    flex: 1 1 auto;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }

  .mobile-sticky-bar {
    display: grid;
  }
}
