:root {
  --bg: #fbf6ed;
  --surface: #fffdf8;
  --surface-soft: #f6efe2;
  --text: #153f26;
  --muted: #4a5b50;
  --green: #14532d;
  --green-2: #1f6b3b;
  --orange: #f97316;
  --orange-deep: #e5600c;
  --cream: #fff7ea;
  --border: rgba(20, 83, 45, 0.14);
  --shadow: 0 18px 40px rgba(21, 63, 38, 0.12);
  --max: 1180px;
  --radius: 24px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(249, 115, 22, 0.12), transparent 26%),
    radial-gradient(circle at top right, rgba(20, 83, 45, 0.08), transparent 28%),
    linear-gradient(180deg, #fffaf2 0%, #fbf6ed 50%, #fffaf4 100%);
  line-height: 1.65;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 250, 242, 0.88);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(20, 83, 45, 0.08);
}

.nav-wrap,
.hero-grid,
.feature-grid,
.split-grid,
.about-grid,
.contact-grid,
.footer-wrap,
.merchant-stats {
  display: grid;
  gap: 24px;
}

.nav-wrap {
  grid-template-columns: auto 1fr auto;
  align-items: center;
  min-height: 82px;
}

.brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.brand-logo {
  width: 170px;
  max-width: 100%;
  height: auto;
}

.nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 24px;
}

.nav a,
.site-footer a {
  color: var(--text);
  text-decoration: none;
}

.nav a {
  font-size: 0.96rem;
  font-weight: 600;
}

.nav a:hover,
.site-footer a:hover {
  color: var(--orange-deep);
}

.menu-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--green);
  font-size: 1.2rem;
  cursor: pointer;
}

.hero,
.section {
  padding: 88px 0;
}

.hero {
  overflow: hidden;
}

.hero-grid {
  grid-template-columns: minmax(0, 1.02fr) minmax(0, 0.98fr);
  justify-content: center;
  align-items: center;
}

.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.eyebrow,
.section-tag,
.card-tag {
  margin: 0 0 12px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.78rem;
  font-weight: 800;
  color: var(--orange-deep);
}

.section-head {
  max-width: 760px;
  margin: 0 auto 36px;
}

.section-head.centered,
.centered-mobile {
  text-align: center;
}

h1,
h2,
h3 {
  margin: 0 0 16px;
  line-height: 1.08;
}

h1 {
  font-size: clamp(2.55rem, 5.3vw, 5rem);
  max-width: 12ch;
}

h2 {
  font-size: clamp(2rem, 3.5vw, 3.2rem);
}

h3 {
  font-size: 1.24rem;
}

p {
  margin: 0;
}

.hero-text,
.section-head p,
.feature-card p,
.benefit-item p,
.about-copy p,
.quote-text,
.contact-item span,
.contact-item strong,
.site-footer p,
.merchant-card p,
.merchant-stats small {
  color: var(--muted);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 28px 0 26px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

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

.btn-primary {
  background: linear-gradient(135deg, var(--orange), #ff9d4d);
  color: #fff;
  box-shadow: 0 14px 24px rgba(249, 115, 22, 0.22);
}

.btn-secondary {
  color: var(--green);
  background: rgba(20, 83, 45, 0.05);
  border: 1px solid rgba(20, 83, 45, 0.12);
}

.hero-points {
  display: grid;
  gap: 12px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.hero-points li {
  position: relative;
  padding-left: 28px;
  font-weight: 600;
}

.hero-points li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 0;
  color: var(--orange-deep);
  font-weight: 800;
}

.card,
.contact-item,
.benefit-item {
  background: rgba(255, 253, 248, 0.92);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.card {
  padding: 28px;
}

.hero-visual {
  padding: 16px;
}

.hero-visual img {
  width: 100%;
  border-radius: 18px;
}

.section-soft {
  background: linear-gradient(180deg, rgba(31, 107, 59, 0.03), rgba(249, 115, 22, 0.03));
  border-top: 1px solid rgba(20, 83, 45, 0.06);
  border-bottom: 1px solid rgba(20, 83, 45, 0.06);
}

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

.feature-card,
.merchant-card,
.quote-card,
.cta-card {
  height: 100%;
}

.icon-badge {
  width: 54px;
  height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  margin-bottom: 18px;
  font-weight: 800;
  color: #fff;
  background: linear-gradient(135deg, var(--orange), var(--orange-deep));
}

.split-grid,
.about-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: center;
}

.benefit-list {
  display: grid;
  gap: 16px;
}

.benefit-item {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 16px;
  align-items: start;
  padding: 22px;
}

.benefit-item > span {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: rgba(249, 115, 22, 0.12);
  color: var(--orange-deep);
  font-weight: 800;
}

.merchant-card {
  background: linear-gradient(180deg, rgba(20, 83, 45, 0.97), rgba(31, 107, 59, 0.95));
  color: #fff;
}

.merchant-card .card-tag,
.merchant-card h3,
.merchant-card strong,
.merchant-card small,
.merchant-card p {
  color: #fff;
}

.merchant-stats {
  grid-template-columns: 1fr;
  gap: 14px;
  margin-top: 24px;
}

.merchant-stats div {
  padding: 16px 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.merchant-stats strong,
.merchant-stats small {
  display: block;
}

.quote-card {
  text-align: center;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(255, 247, 234, 0.96));
}

.quote-mark {
  font-size: 4rem;
  line-height: 1;
  color: var(--orange);
  margin-bottom: 10px;
}

.quote-text {
  font-size: 1.15rem;
  font-weight: 600;
}

.cta-card {
  padding: 34px;
}

.contact-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 32px;
}

.contact-item {
  display: block;
  padding: 22px;
  text-decoration: none;
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.contact-item:hover {
  transform: translateY(-2px);
  border-color: rgba(249, 115, 22, 0.35);
}

.contact-item span {
  display: block;
  margin-bottom: 8px;
  font-size: 0.9rem;
}

.contact-item strong {
  color: var(--text);
  font-size: 1.02rem;
}

.site-footer {
  padding: 26px 0 40px;
}

.footer-wrap {
  grid-template-columns: 1fr auto;
  align-items: center;
  padding-top: 20px;
  border-top: 1px solid rgba(20, 83, 45, 0.08);
}

.reveal {
  opacity: 1;
  transform: none;
}

@media (max-width: 960px) {
  .nav {
    position: absolute;
    top: calc(100% + 10px);
    left: 16px;
    right: 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
    padding: 14px;
    background: rgba(255, 253, 248, 0.98);
    border: 1px solid var(--border);
    border-radius: 20px;
    box-shadow: var(--shadow);
  }

  .nav.open {
    display: flex;
  }

  .nav a {
    padding: 10px 12px;
    border-radius: 12px;
  }

  .nav a:hover {
    background: rgba(20, 83, 45, 0.05);
  }

  .menu-toggle {
    display: inline-flex;
    justify-self: end;
  }

  .hero-grid,
  .feature-grid,
  .split-grid,
  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 72px;
  }

  h1,
  h2,
  .hero-copy,
  .about-copy,
  .left-on-desktop {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }

  h1,
  h2 {
    max-width: 100%;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-points {
    max-width: 420px;
    margin-left: auto;
    margin-right: auto;
  }

  .footer-wrap {
    grid-template-columns: 1fr;
    text-align: center;
  }
}

@media (min-width: 961px) {
  .menu-toggle {
    display: none;
  }

  .centered-mobile {
    text-align: left;
  }
}

@media (max-width: 640px) {
  .hero,
  .section {
    padding: 72px 0;
  }

  .brand-logo {
    width: 132px;
  }

  .card,
  .cta-card,
  .benefit-item,
  .contact-item {
    padding: 20px;
  }

  .btn {
    width: 100%;
  }
}
