:root {
  --ink: #14110F;
  --paper: #F5EFE6;
  --paper-2: #EFE7DA;
  --tangerine: #ff7a59;
  --accent-ink: #c2410c;
  --teal: #0F766E;
  --green: #16A34A;
  --muted: #6B625A;
  --line: rgba(20, 17, 15, 0.12);
  --display: "Clash Display", "Inter", system-ui, sans-serif;
  --body: "Inter", system-ui, sans-serif;
  --maxw: 1080px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--body);
  background: var(--paper);
  color: var(--ink);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

section { padding: 96px 24px; max-width: var(--maxw); margin: 0 auto; scroll-margin-top: 84px; }

/* ---------- Typography ---------- */
.eyebrow {
  font-weight: 700; font-size: 0.8rem; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--accent-ink); margin-bottom: 20px;
}
.section-title {
  font-family: var(--display); font-weight: 700; font-size: clamp(1.9rem, 4vw, 3rem);
  line-height: 1.05; letter-spacing: -0.02em; margin-bottom: 16px;
}
.section-sub { font-size: 1.15rem; color: var(--muted); margin-bottom: 48px; max-width: 620px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--body); font-weight: 600; text-decoration: none;
  border-radius: 999px; cursor: pointer; border: none; transition: transform .12s ease, background .2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--tangerine); color: #fff; }
.btn-primary:hover { background: #f0623a; }
.btn-sm { padding: 10px 20px; font-size: 0.95rem; }
.btn-lg { padding: 18px 36px; font-size: 1.1rem; }

/* ---------- Nav ---------- */
.nav {
  position: sticky; top: 0; z-index: 50;
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 32px; background: rgba(245, 239, 230, 0.85);
  backdrop-filter: blur(12px); border-bottom: 1px solid var(--line);
}
.brand, .brand-sm {
  font-family: var(--body); font-weight: 800; font-size: 1.35rem;
  text-decoration: none; letter-spacing: -0.04em; line-height: 1;
  display: inline-flex; align-items: baseline;
}
.brand-sm { font-size: 1.1rem; }
.wm-company { color: var(--ink); }
.wm-inc { color: var(--muted); font-weight: 800; }
.dot { color: var(--tangerine); }
.nav-right { display: flex; align-items: center; gap: 16px; }
.lang-toggle {
  background: transparent; border: 1px solid var(--line); color: var(--ink);
  border-radius: 999px; padding: 8px 14px; font-family: var(--body);
  font-weight: 600; font-size: 0.85rem; cursor: pointer; transition: all .2s ease;
}
.lang-toggle:hover { background: var(--ink); color: var(--paper); }

/* ---------- Hero ---------- */
.hero { text-align: center; padding-top: 80px; padding-bottom: 64px; }
.hero-title {
  font-family: var(--display); font-weight: 700;
  font-size: clamp(2.4rem, 6.5vw, 4.6rem); line-height: 1.02;
  letter-spacing: -0.03em; max-width: 14ch; margin: 0 auto 24px;
}
.hero-sub { font-size: 1.25rem; color: var(--muted); max-width: 620px; margin: 0 auto 36px; }
.hero-cta { display: flex; flex-direction: column; align-items: center; gap: 14px; }
.trust { font-size: 0.92rem; color: var(--muted); max-width: 440px; }

/* ---------- Verticals ---------- */
.verticals { text-align: center; }
.vertical-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; text-align: left;
}
.vcard {
  position: relative; border-radius: 16px; overflow: hidden; aspect-ratio: 4 / 5;
}
.vcard img { width: 100%; height: 100%; object-fit: cover; display: block; }
.vcard span {
  position: absolute; left: 14px; bottom: 14px; z-index: 2;
  background: var(--paper); color: var(--ink); font-weight: 600; font-size: 0.9rem;
  padding: 6px 12px; border-radius: 999px;
}
.vcard::after { content:""; position:absolute; inset:0; background: linear-gradient(to top, rgba(20,17,15,.35), transparent 50%); }

/* ---------- Problem ---------- */
.problem-list { list-style: none; display: grid; gap: 18px; max-width: 760px; }
.problem-list li {
  font-size: 1.2rem; padding-left: 36px; position: relative; color: var(--ink);
}
.problem-list li::before {
  content: "✕"; position: absolute; left: 0; top: 2px; color: var(--tangerine);
  font-weight: 700;
}

/* ---------- Solution ---------- */
.solution { background: var(--ink); color: var(--paper); max-width: none; }
.solution > * { max-width: var(--maxw); margin-left: auto; margin-right: auto; }
.solution .section-title { color: var(--paper); }
.solution-body { font-size: 1.4rem; line-height: 1.5; max-width: 760px; }

/* ---------- How ---------- */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.step { padding: 32px; border: 1px solid var(--line); border-radius: 18px; background: var(--paper-2); }
.step-n {
  font-family: var(--display); font-weight: 700; font-size: 1.4rem;
  width: 48px; height: 48px; border-radius: 50%; background: var(--tangerine); color: #fff;
  display: flex; align-items: center; justify-content: center; margin-bottom: 20px;
}
.step h3 { font-family: var(--display); font-weight: 600; font-size: 1.3rem; margin-bottom: 8px; }
.step p { color: var(--muted); }

/* ---------- Packages ---------- */
.package-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.package {
  display: flex; flex-direction: column; gap: 16px; padding: 32px;
  border: 1px solid var(--line); border-radius: 20px; background: var(--paper-2);
}
.package.featured { background: var(--ink); color: var(--paper); border-color: var(--ink); transform: scale(1.03); }
.package.featured .pkg-desc { color: rgba(245,239,230,.75); }
.package.featured .btn-primary { background: var(--tangerine); }
.pkg-name { font-family: var(--display); font-weight: 700; font-size: 1.5rem; }
.pkg-desc { color: var(--muted); flex: 1; }
.pkg-badge {
  align-self: flex-start; font-size: 0.7rem; font-weight: 700; letter-spacing: .1em;
  text-transform: uppercase; color: var(--tangerine);
}
.packages-note { text-align: center; margin-top: 28px; color: var(--muted); }

/* ---------- Proof ---------- */
.proof-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.quote { padding: 28px; border-radius: 18px; background: var(--paper-2); border: 1px solid var(--line); }
.quote p { font-size: 1.1rem; margin-bottom: 16px; }
.quote .who { font-weight: 600; font-size: 0.9rem; color: var(--teal); }

/* ---------- About ---------- */
.about { max-width: 760px; }
.about-body { font-size: 1.3rem; line-height: 1.55; color: var(--ink); }

/* ---------- FAQ ---------- */
.faq-list { display: grid; gap: 4px; max-width: 760px; }
.faq-item { border-bottom: 1px solid var(--line); padding: 22px 0; }
.faq-item h3 { font-family: var(--display); font-weight: 600; font-size: 1.2rem; margin-bottom: 8px; }
.faq-item p { color: var(--muted); }

/* ---------- Final CTA ---------- */
.final-cta { text-align: center; background: var(--paper-2); border-radius: 28px; margin: 64px auto; }
.final-title { font-family: var(--display); font-weight: 700; font-size: clamp(2rem,5vw,3.4rem); letter-spacing: -0.02em; margin-bottom: 16px; }
.final-sub { font-size: 1.2rem; color: var(--muted); max-width: 560px; margin: 0 auto 32px; }
.final-cta .calendly-inline-widget { border-radius: 16px; overflow: hidden; }

/* ---------- Footer ---------- */
.footer {
  display: flex; flex-wrap: wrap; align-items: center; gap: 12px 24px;
  padding: 40px 32px; border-top: 1px solid var(--line); color: var(--muted); font-size: 0.9rem;
}
.footer-tagline { flex: 1; }

/* ---------- Responsive ---------- */
@media (max-width: 880px) {
  section { padding: 64px 20px; }
  .vertical-grid { grid-template-columns: repeat(2, 1fr); }
  .steps, .package-grid, .proof-grid { grid-template-columns: 1fr; }
  .package.featured { transform: none; }
}
