:root {
  color-scheme: light;
  --bg: #f7f2ea;
  --paper: #fffaf2;
  --ink: #15110c;
  --muted: #6e6256;
  --gold: #c9963e;
  --gold-dark: #926516;
  --green: #132d24;
  --cream: #fff7e8;
  --line: rgba(21, 17, 12, 0.12);
  --shadow: 0 24px 80px rgba(38, 26, 12, 0.16);
  --radius: 28px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at 10% 10%, rgba(201, 150, 62, 0.20), transparent 30%),
    radial-gradient(circle at 90% 0%, rgba(19, 45, 36, 0.12), transparent 26%),
    var(--bg);
  color: var(--ink);
  line-height: 1.6;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image: linear-gradient(rgba(21, 17, 12, 0.035) 1px, transparent 1px), linear-gradient(90deg, rgba(21, 17, 12, 0.035) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: linear-gradient(to bottom, black, transparent 80%);
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  width: min(1180px, calc(100% - 32px));
  margin: 16px auto 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, 0.65);
  border-radius: 999px;
  background: rgba(255, 250, 242, 0.72);
  backdrop-filter: blur(18px);
  box-shadow: 0 10px 40px rgba(38, 26, 12, 0.08);
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.logo-mark {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  color: #fff;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green), #245744);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.25);
}

nav {
  display: flex;
  align-items: center;
  gap: 22px;
  font-size: 0.92rem;
  color: var(--muted);
}

nav a:hover { color: var(--ink); }

.header-cta {
  padding: 10px 18px;
  border-radius: 999px;
  background: var(--ink);
  color: white;
  font-weight: 700;
  font-size: 0.9rem;
}

.section-pad {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 92px 0;
}

.hero {
  min-height: calc(100vh - 80px);
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(330px, 0.96fr);
  gap: 54px;
  align-items: center;
  padding-top: 70px;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--gold-dark);
  font-weight: 800;
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

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

h1 {
  margin-bottom: 22px;
  font-size: clamp(3rem, 7vw, 6.7rem);
  line-height: 0.92;
  letter-spacing: -0.08em;
  max-width: 920px;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 4.4vw, 4.4rem);
  line-height: 0.98;
  letter-spacing: -0.07em;
}

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

.hero-subtitle, .section-heading p, .split p, .cta-panel p {
  color: var(--muted);
  font-size: clamp(1.02rem, 1.5vw, 1.22rem);
  max-width: 680px;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 24px;
  border-radius: 999px;
  font-weight: 800;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

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

.btn-primary {
  background: linear-gradient(135deg, var(--green), #23513f);
  color: white;
  box-shadow: 0 18px 40px rgba(19, 45, 36, 0.24);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.56);
  border: 1px solid var(--line);
  color: var(--ink);
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  color: var(--muted);
  font-weight: 700;
  font-size: 0.92rem;
}

.trust-row span {
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 250, 242, 0.76);
  border: 1px solid var(--line);
}

.hero-card {
  position: relative;
  min-height: 610px;
  padding: 22px;
  border-radius: 42px;
  background: linear-gradient(160deg, rgba(255,255,255,0.86), rgba(255,247,232,0.76));
  border: 1px solid rgba(255,255,255,0.7);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.hero-card::after {
  content: "";
  position: absolute;
  width: 340px;
  height: 340px;
  right: -96px;
  bottom: -96px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,150,62,0.34), transparent 70%);
}

.card-topline {
  display: flex;
  gap: 8px;
  margin-bottom: 20px;
}
.card-topline span { width: 12px; height: 12px; border-radius: 50%; background: rgba(21,17,12,0.18); }

.mini-hero {
  position: relative;
  z-index: 1;
  min-height: 350px;
  padding: 34px;
  border-radius: 30px;
  background:
    linear-gradient(rgba(19,45,36,0.18), rgba(19,45,36,0.75)),
    url("https://images.unsplash.com/photo-1552664730-d307ca884978?auto=format&fit=crop&w=1100&q=80") center/cover;
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.28);
}

.mini-hero p {
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.72rem;
  font-weight: 800;
  opacity: 0.82;
}

.mini-hero h2 {
  font-size: clamp(2.2rem, 4vw, 4.1rem);
  max-width: 460px;
  margin-bottom: 22px;
}

.mini-button {
  width: 154px;
  height: 46px;
  border-radius: 999px;
  background: var(--gold);
}

.stats-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 14px;
}

.stats-grid div {
  min-height: 104px;
  padding: 18px;
  border-radius: 22px;
  background: rgba(255,255,255,0.72);
  border: 1px solid var(--line);
}
.stats-grid strong { display: block; font-size: 1.7rem; letter-spacing: -0.06em; }
.stats-grid span { color: var(--muted); font-weight: 700; }

.floating-note {
  position: absolute;
  z-index: 2;
  left: 50%;
  bottom: 36px;
  transform: translateX(-50%);
  white-space: nowrap;
  padding: 14px 18px;
  border-radius: 999px;
  color: white;
  background: rgba(21,17,12,0.82);
  backdrop-filter: blur(12px);
  font-weight: 800;
  box-shadow: 0 18px 50px rgba(0,0,0,0.22);
}

.section-heading {
  max-width: 850px;
  margin-bottom: 38px;
}
.section-heading.narrow { max-width: 920px; margin-inline: auto; text-align: center; }

.problem .section-heading {
  padding: 58px;
  border-radius: var(--radius);
  background: var(--green);
  color: white;
  box-shadow: var(--shadow);
}
.problem .section-heading p:not(.eyebrow) { color: rgba(255,255,255,0.74); margin-inline: auto; }
.problem .eyebrow { color: #f1c979; }

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  gap: 46px;
  align-items: start;
}

.solution-list {
  display: grid;
  gap: 14px;
}

.solution-list div {
  display: grid;
  grid-template-columns: 50px 1fr;
  gap: 18px;
  align-items: center;
  padding: 20px;
  border-radius: 22px;
  background: rgba(255, 250, 242, 0.72);
  border: 1px solid var(--line);
}

.solution-list span {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #ead4ab;
  color: var(--gold-dark);
  font-weight: 900;
}
.solution-list p { margin: 0; color: var(--muted); font-weight: 650; }

.benefit-grid, .testimonial-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.benefit-grid article, .steps div, .testimonial-grid blockquote {
  margin: 0;
  padding: 28px;
  border-radius: 26px;
  background: rgba(255, 250, 242, 0.74);
  border: 1px solid var(--line);
  box-shadow: 0 12px 38px rgba(38, 26, 12, 0.07);
}

.icon {
  width: 46px;
  height: 46px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  background: #f0dfbd;
}

.benefit-grid p, .steps p, .testimonial-grid blockquote { color: var(--muted); }

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  counter-reset: step;
}
.steps span {
  display: inline-flex;
  margin-bottom: 40px;
  color: var(--gold-dark);
  font-weight: 900;
  letter-spacing: -0.05em;
}

.testimonial-grid { grid-template-columns: repeat(3, 1fr); }
.testimonial-grid cite {
  display: block;
  margin-top: 20px;
  color: var(--ink);
  font-style: normal;
  font-weight: 800;
}

.cta-panel {
  text-align: center;
  padding: clamp(36px, 7vw, 86px);
  border-radius: 40px;
  color: white;
  background:
    linear-gradient(135deg, rgba(19,45,36,0.96), rgba(21,17,12,0.92)),
    url("https://images.unsplash.com/photo-1519389950473-47ba0277781c?auto=format&fit=crop&w=1500&q=80") center/cover;
  box-shadow: var(--shadow);
}
.cta-panel p { margin-inline: auto; color: rgba(255,255,255,0.76); }
.cta-panel .eyebrow { color: #f1c979; }
.cta-panel .btn { margin-top: 14px; background: #f0bf61; color: #241807; }

footer {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 20px 0 40px;
  color: var(--muted);
  text-align: center;
}

@media (max-width: 980px) {
  nav { display: none; }
  .hero, .split { grid-template-columns: 1fr; }
  .hero { padding-top: 58px; }
  .hero-card { min-height: 520px; }
  .benefit-grid, .steps { grid-template-columns: repeat(2, 1fr); }
  .testimonial-grid { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .site-header { width: calc(100% - 20px); margin-top: 10px; }
  .logo span:last-child { display: none; }
  .header-cta { padding: 9px 14px; }
  .section-pad { width: calc(100% - 24px); padding: 64px 0; }
  h1 { font-size: clamp(3rem, 16vw, 4.6rem); }
  .hero { gap: 30px; min-height: auto; }
  .hero-card { min-height: auto; padding: 14px; border-radius: 30px; }
  .mini-hero { min-height: 330px; padding: 24px; border-radius: 24px; }
  .stats-grid, .benefit-grid, .steps { grid-template-columns: 1fr; }
  .floating-note { position: relative; left: auto; bottom: auto; transform: none; margin-top: 14px; text-align: center; white-space: normal; }
  .problem .section-heading { padding: 34px 22px; }
  .benefit-grid article, .steps div, .testimonial-grid blockquote { padding: 23px; }
}
