/* ========================================
   KOMAF — Design System & Full Stylesheet
   ======================================== */

/* --- TOKENS --- */
:root {
  --bg-dark: #060606;
  --bg-light: #f0ede8;
  --bg-mid: #0f0f0f;
  --text-dark: #f0ede8;
  --text-light: #0a0a0a;
  --accent: #8B2635;
  --accent-light: #a83244;
  --font: 'Outfit', sans-serif;
  --radius: 6px;
  --transition: 0.3s ease;
}

/* --- RESET --- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
body {
  font-family: var(--font);
  font-weight: 300;
  line-height: 1.8;
  color: var(--text-light);
  background: var(--bg-light);
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; font-family: var(--font); border: none; background: none; }
input, select, textarea { font-family: var(--font); }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0; }
.mobile-br { display: none; }
@media (max-width: 767px) { .mobile-br { display: inline; } }

/* --- GRAIN OVERLAY --- */
.grain {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  opacity: 0.15;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 200px 200px;
}

/* --- SECTION BASE --- */
.section {
  position: relative;
  padding: 120px 0;
  overflow: hidden;
}
.section__inner {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}
.section__inner--narrow {
  max-width: 800px;
}

/* Theme backgrounds — light dominant */
.section--hero { background: var(--bg-light); color: var(--text-light); min-height: 100vh; display: flex; align-items: center; padding: 0; }
.section--problem { background: var(--bg-dark); color: var(--text-dark); }
.section--system { background: var(--bg-light); color: var(--text-light); }
.section--proof { background: var(--bg-dark); color: var(--text-dark); }
.section--entry { background: var(--bg-dark); color: var(--text-dark); }
.section--pricing { background: var(--bg-light); color: var(--text-light); padding-top: 160px; }
.section--guarantee { background: var(--bg-dark); color: var(--text-dark); }
.section--cta { background: var(--bg-light); color: var(--text-light); }

/* --- EYEBROW --- */
.eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}

/* --- RULE LINE --- */
.rule-line {
  width: 32px;
  height: 1.5px;
  background: var(--accent);
  margin-bottom: 32px;
}

/* --- HEADLINE --- */
.headline {
  font-size: clamp(36px, 5vw, 60px);
  font-weight: 700;
  letter-spacing: -1.5px;
  line-height: 1.1;
  margin-bottom: 40px;
}

/* --- HAND-DRAWN UNDERLINE --- */
.hand-underline {
  position: relative;
  display: inline;
  white-space: nowrap;
}
.hand-underline::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: -4px;
  right: -4px;
  height: 8px;
  background: var(--accent);
  opacity: 0;
  border-radius: 4px;
  transform: skewX(-8deg) scaleX(0);
  transform-origin: left center;
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.3s ease;
  z-index: -1;
}
.is-visible .hand-underline::after,
.hand-underline.is-drawn::after {
  opacity: 0.45;
  transform: skewX(-8deg) scaleX(1);
}

/* --- HAND-DRAWN CIRCLE --- */
.hand-circle {
  position: relative;
  display: inline-block;
  white-space: nowrap;
}
.hand-circle::before {
  content: '';
  position: absolute;
  inset: -6px -10px;
  border: 2px solid var(--accent);
  border-radius: 50%;
  opacity: 0;
  transform: scale(0.8) rotate(-3deg);
  transition: opacity 0.4s ease 0.3s, transform 0.5s cubic-bezier(0.22, 1, 0.36, 1) 0.3s;
  z-index: -1;
}
.is-visible .hand-circle::before,
.hand-circle.is-drawn::before {
  opacity: 0.4;
  transform: scale(1) rotate(-3deg);
}

/* --- GLOW BUTTON --- */
.glow-btn {
  position: relative;
  box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
  animation: glowPulse 3s ease-in-out infinite;
}
@keyframes glowPulse {
  0%, 100% { box-shadow: 0 0 8px 0 rgba(255, 255, 255, 0), 0 0 20px 0 rgba(255, 255, 255, 0); }
  50% { box-shadow: 0 0 12px 2px rgba(255, 255, 255, 0.15), 0 0 32px 4px rgba(255, 255, 255, 0.08); }
}

/* --- FADE-IN ANIMATION --- */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ========================================
   NAVIGATION
   ======================================== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 3000;
  padding: 16px 0;
  padding-top: calc(16px + env(safe-area-inset-top));
  background: rgba(240, 237, 232, 0.45);
  backdrop-filter: blur(20px) saturate(1.4);
  -webkit-backdrop-filter: blur(20px) saturate(1.4);
  border-bottom: 1px solid rgba(255, 255, 255, 0.25);
  transition: background var(--transition), padding var(--transition), box-shadow var(--transition);
}
.nav.nav--scrolled {
  padding: 12px 0;
  background: rgba(240, 237, 232, 0.55);
  backdrop-filter: blur(24px) saturate(1.5);
  -webkit-backdrop-filter: blur(24px) saturate(1.5);
  box-shadow: 0 1px 0 rgba(0,0,0,0.04);
}
.nav.nav--dark {
  background: rgba(6, 6, 6, 0.4);
  backdrop-filter: blur(20px) saturate(1.4);
  -webkit-backdrop-filter: blur(20px) saturate(1.4);
  border-bottom-color: rgba(255, 255, 255, 0.06);
  box-shadow: 0 1px 0 rgba(255,255,255,0.03);
}
.nav.nav--dark .nav__link { color: var(--text-dark); }
.nav.nav--dark .nav__hamburger span { background: var(--text-dark); }
.nav__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav__logo-img {
  height: 72px;
  width: auto;
  transition: filter var(--transition);
  filter: brightness(0) saturate(100%);
}
.nav.nav--dark .nav__logo-img {
  filter: brightness(0) saturate(100%) invert(1);
}
.nav__links {
  display: flex;
  align-items: center;
  gap: 36px;
}
/* Mobile overlay — lives outside <nav> so backdrop-filter doesn't trap it */
.nav__links--mobile {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(6, 6, 6, 0.82);
  -webkit-backdrop-filter: blur(40px) saturate(1.2);
  backdrop-filter: blur(40px) saturate(1.2);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 40px;
  z-index: 9999;
}
.mobile-menu__close {
  position: absolute;
  top: 20px;
  right: 24px;
  background: none;
  border: none;
  color: rgba(240, 237, 232, 0.7);
  cursor: pointer;
  padding: 8px;
  line-height: 0;
}
.nav__links--desktop {
  display: flex;
}
.nav__link {
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.5px;
  color: var(--text-light);
  transition: color var(--transition);
  position: relative;
}
.nav__link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--accent);
  transition: width var(--transition);
}
.nav__link:hover::after { width: 100%; }
.nav__btn {
  display: inline-block;
  padding: 10px 24px;
  background: var(--accent);
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.5px;
  border-radius: var(--radius);
  transition: background var(--transition), transform var(--transition);
}
.nav__btn:hover { background: var(--accent-light); transform: scale(1.02); }
.nav__btn--glow {
  animation: navGlow 3s ease-in-out infinite;
}
@keyframes navGlow {
  0%, 100% { box-shadow: 0 0 6px 0 rgba(255, 255, 255, 0), 0 0 16px 0 rgba(255, 255, 255, 0); }
  50% { box-shadow: 0 0 10px 2px rgba(255, 255, 255, 0.2), 0 0 24px 4px rgba(255, 255, 255, 0.1); }
}
.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}
.nav__hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-light);
  transition: transform var(--transition), opacity var(--transition);
}
.nav__hamburger.is-active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav__hamburger.is-active span:nth-child(2) { opacity: 0; }
.nav__hamburger.is-active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ========================================
   SECTION 01: HERO
   ======================================== */
.hero__inner {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 120px 40px 80px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.hero__geo {
  position: absolute;
  right: -5%;
  top: 50%;
  transform: translateY(-50%);
  width: 600px;
  height: 600px;
  z-index: 1;
  pointer-events: none;
}
.hero__headline {
  font-size: clamp(42px, 5.5vw, 72px);
  font-weight: 700;
  letter-spacing: -1.5px;
  line-height: 1.05;
  margin-bottom: 28px;
}
.hero__underline {
  position: relative;
  display: inline-block;
}
.hero__underline::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: -4px;
  right: -4px;
  height: 8px;
  background: var(--accent);
  opacity: 0.5;
  border-radius: 4px;
  transform: skewX(-6deg);
  z-index: -1;
}
.hero__pill {
  display: inline-block;
  background: rgba(10, 10, 10, 0.05);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(10, 10, 10, 0.08);
  border-radius: 100px;
  padding: 14px 28px;
  margin-bottom: 32px;
}
.hero__pill p {
  font-size: 16px;
  font-weight: 400;
  color: rgba(10, 10, 10, 0.7);
  line-height: 1.5;
}
.hero__scroll-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 400;
  color: rgba(10, 10, 10, 0.35);
  transition: color var(--transition);
}
.hero__scroll-link:hover { color: var(--accent); }
.hero__scroll-link::before {
  content: '';
  display: inline-block;
  width: 16px;
  height: 1px;
  background: currentColor;
}

/* --- LEAD MAGNET FORM --- */
.hero__form-wrap {
  position: relative;
  z-index: 3;
}
.lead-form {
  background: rgba(10, 10, 10, 0.03);
  border: 1px solid rgba(10, 10, 10, 0.08);
  border-radius: 12px;
  padding: 40px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.lead-form__step {
  display: none;
}
.lead-form__step--active {
  display: block;
}
.lead-form__field {
  margin-bottom: 20px;
  position: relative;
}
.lead-form__field label {
  display: block;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.5px;
  color: rgba(10, 10, 10, 0.55);
  margin-bottom: 8px;
}
.required { color: var(--accent); margin-left: 2px; }
.lead-form__field input[type="text"],
.lead-form__field input[type="email"],
.lead-form__field input[type="tel"],
.lead-form__field select {
  width: 100%;
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(10, 10, 10, 0.1);
  border-radius: var(--radius);
  color: var(--text-light);
  font-size: 16px;
  font-weight: 400;
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}
.lead-form__field input:focus,
.lead-form__field select:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(139, 38, 53, 0.15);
}
.lead-form__field select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%230a0a0a' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 44px;
}
.lead-form__field select option {
  background: var(--bg-light);
  color: var(--text-light);
}
.lead-form__field--skipable { position: relative; }
.skip-btn {
  position: absolute;
  top: 0;
  right: 0;
  font-size: 12px;
  font-weight: 500;
  color: rgba(10, 10, 10, 0.35);
  letter-spacing: 0.5px;
  transition: color var(--transition);
  padding: 4px 0;
}
.skip-btn:hover { color: var(--accent); }

/* Phone input with country picker */
.phone-input {
  display: flex;
  gap: 0;
  border: 1px solid rgba(10, 10, 10, 0.1);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.phone-input:focus-within {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(139, 38, 53, 0.15);
}
.phone-input__code {
  width: 100px;
  padding: 14px 8px 14px 12px;
  background: rgba(10, 10, 10, 0.04);
  border: none;
  border-right: 1px solid rgba(10, 10, 10, 0.08);
  color: var(--text-light);
  font-size: 15px;
  font-weight: 500;
  outline: none;
  appearance: none;
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg width='10' height='6' viewBox='0 0 10 6' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%230a0a0a' stroke-width='1.2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 8px center;
  padding-right: 22px;
}
.phone-input__code option {
  background: var(--bg-light);
  color: var(--text-light);
}
.phone-input input[type="tel"] {
  flex: 1;
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.6);
  border: none;
  color: var(--text-light);
  font-size: 16px;
  font-weight: 400;
  outline: none;
}

/* Toggle group (logo vs color) */
.toggle-group {
  display: flex;
  gap: 0;
  margin-bottom: 16px;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(10, 10, 10, 0.1);
}
.toggle-btn {
  flex: 1;
  padding: 10px 16px;
  font-size: 13px;
  font-weight: 500;
  color: rgba(10, 10, 10, 0.45);
  background: transparent;
  transition: all var(--transition);
  text-align: center;
}
.toggle-btn--active {
  background: rgba(139, 38, 53, 0.15);
  color: var(--text-light);
}

/* Palette picker */
.palette-picker {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.palette-option {
  display: flex;
  gap: 3px;
  padding: 10px;
  border: 1px solid rgba(10, 10, 10, 0.08);
  border-radius: var(--radius);
  cursor: pointer;
  transition: border-color var(--transition), transform var(--transition);
}
.palette-option:hover,
.palette-option.is-selected {
  border-color: var(--accent);
  transform: scale(1.03);
}
.palette-option span {
  flex: 1;
  height: 28px;
  border-radius: 3px;
}

/* Logo upload */
.logo-upload__label {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 24px;
  border: 1px dashed rgba(10, 10, 10, 0.15);
  border-radius: var(--radius);
  color: rgba(10, 10, 10, 0.45);
  font-size: 14px;
  cursor: pointer;
  transition: border-color var(--transition), color var(--transition);
}
.logo-upload__label:hover {
  border-color: var(--accent);
  color: var(--text-light);
}
.logo-upload__preview {
  margin-top: 12px;
}
.logo-upload__preview img {
  max-height: 60px;
  border-radius: 4px;
}

/* Photo upload */
.photo-upload__label {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 16px;
  border: 1px dashed rgba(10, 10, 10, 0.12);
  border-radius: var(--radius);
  color: rgba(10, 10, 10, 0.4);
  font-size: 13px;
  cursor: pointer;
  transition: border-color var(--transition), color var(--transition);
}
.photo-upload__label:hover {
  border-color: var(--accent);
  color: var(--text-light);
}
.photo-upload__preview {
  margin-top: 8px;
}
.photo-upload__preview img {
  max-height: 80px;
  border-radius: 4px;
}

/* Form buttons */
.lead-form__next,
.lead-form__submit {
  width: 100%;
  padding: 16px;
  background: var(--accent);
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.5px;
  border-radius: var(--radius);
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  margin-top: 8px;
  position: relative;
  overflow: hidden;
}
.lead-form__next:hover,
.lead-form__submit:hover {
  background: var(--accent-light);
  transform: scale(1.02);
}
.lead-form__submit {
  animation: subtlePulse 3s ease-in-out infinite;
}
@keyframes subtlePulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(139, 38, 53, 0); }
  50% { box-shadow: 0 0 0 8px rgba(139, 38, 53, 0.12); }
}
.lead-form__back {
  width: 100%;
  padding: 12px;
  color: rgba(10, 10, 10, 0.35);
  font-size: 13px;
  font-weight: 400;
  text-align: center;
  transition: color var(--transition);
  margin-top: 4px;
}
.lead-form__back:hover { color: var(--text-light); }

/* Form success */
.lead-form__success {
  display: none;
  text-align: center;
  padding: 40px 20px;
}
.lead-form__success.is-visible {
  display: block;
}
.lead-form__success-icon {
  margin: 0 auto 20px;
}
.lead-form__success h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 8px;
  letter-spacing: -0.5px;
  color: var(--text-light);
}
.lead-form__success p {
  font-size: 15px;
  color: rgba(10, 10, 10, 0.55);
  margin-bottom: 4px;
}
.lead-form__timer {
  display: block;
  font-size: 13px;
  font-weight: 500;
  color: rgba(10, 10, 10, 0.35);
  margin-top: 6px;
  letter-spacing: 0.3px;
}
.lead-form__progress-wrap {
  width: 100%;
  height: 4px;
  background: rgba(10, 10, 10, 0.08);
  border-radius: 2px;
  overflow: hidden;
  margin-bottom: 28px;
}
.lead-form__progress-bar {
  height: 100%;
  width: 0%;
  background: var(--accent);
  border-radius: 2px;
  transition: width 1s linear;
}
.lead-form__progress-bar.is-done {
  width: 100% !important;
  transition: width 0.4s ease;
}

/* ========================================
   SECTION 01: PROOF HERO
   ======================================== */
.section--proof-hero {
  background: var(--bg-light);
  color: var(--text-light);
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 140px 0 100px;
  overflow: hidden;
}
.proof-hero__headline {
  font-size: clamp(40px, 5.5vw, 72px);
  text-align: center;
  margin-bottom: 56px;
  color: var(--text-light);
  overflow-wrap: break-word;
  word-wrap: break-word;
}
.section--proof-hero .proof__cards {
  margin-bottom: 72px;
}
.proof__card--light {
  background: rgba(255, 255, 255, 0.5);
  border: 1px solid rgba(10, 10, 10, 0.07);
  border-left: 3px solid var(--accent);
  color: var(--text-light);
}
.proof__card--light:hover {
  border-color: rgba(10, 10, 10, 0.12);
  border-left-color: var(--accent);
}
.proof__card--light .proof__stat {
  color: var(--text-light);
}
.proof__timeline {
  display: inline-block;
  margin-top: 8px;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: var(--accent);
}

/* Hero compact stats strip */
.hero-stats-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin-bottom: 44px;
  flex-wrap: nowrap;
}
.hero-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 36px;
  gap: 2px;
}
.hero-stat__number {
  font-size: 28px;
  font-weight: 700;
  letter-spacing: -0.5px;
  color: var(--text-light);
  line-height: 1.1;
}
.hero-stat__label {
  font-size: 12px;
  font-weight: 400;
  color: rgba(10, 10, 10, 0.45);
  text-align: center;
  letter-spacing: 0.2px;
}
.hero-stat__divider {
  width: 1px;
  height: 44px;
  background: rgba(10, 10, 10, 0.12);
  flex-shrink: 0;
}

/* Hero CTA */
.hero-cta {
  display: inline-block;
  padding: 18px 48px;
  background: var(--accent);
  color: #fff;
  font-size: 17px;
  font-weight: 600;
  letter-spacing: 0.5px;
  border-radius: var(--radius);
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  margin-bottom: 56px;
}
.hero-cta:hover {
  background: var(--accent-light);
  transform: scale(1.02);
}

/* Section CTA (used across multiple sections) */
.section-cta {
  display: inline-block;
  padding: 14px 36px;
  background: var(--accent);
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.5px;
  border-radius: var(--radius);
  margin-top: 40px;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
}
.section-cta:hover {
  background: var(--accent-light);
  transform: scale(1.02);
}
.section-cta--dark {
  background: var(--accent);
  color: #fff;
}

/* Client pill badge */
.client-pill {
  display: inline-block;
  padding: 6px 16px;
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(10, 10, 10, 0.08);
  border-radius: 100px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(10, 10, 10, 0.45);
}

/* Client stat (e.g., 2.2M views) */
.proof-clients__stat {
  font-size: 13px;
  font-weight: 700;
  color: var(--accent);
  margin-top: 2px;
}

/* Client type + scope */
.proof-clients__type {
  font-size: 13px;
  font-weight: 300;
  color: rgba(10, 10, 10, 0.5);
  margin-bottom: 2px;
  line-height: 1.5;
}
.proof-clients__scope {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.3px;
  color: var(--accent);
}

/* Client icon */
.client-card__icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(139, 38, 53, 0.07);
  border: 1px solid rgba(139, 38, 53, 0.14);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  margin: 10px auto 6px;
  flex-shrink: 0;
}

/* Clients wrapper — visually distinct panel */
.proof-clients {
  margin-top: 56px;
  padding: 40px;
  background: rgba(255, 255, 255, 0.45);
  border: 1px solid rgba(10, 10, 10, 0.07);
  border-radius: 16px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

/* Unified card grid — responsive, no desktop/mobile split */
.proof-clients__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.proof-clients__card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 4px;
  padding: 24px 16px;
  background: rgba(255, 255, 255, 0.4);
  border: 1px solid rgba(10, 10, 10, 0.06);
  border-radius: 12px;
}
.proof-clients__card .client-pill {
  margin-bottom: 2px;
}

@media (max-width: 767px) {
  .section--proof-hero { padding: 0 0 60px; min-height: auto; }
  .proof-clients {
    padding: 28px 20px;
    margin-top: 40px;
    border-radius: 12px;
  }
  .proof-clients__cards {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .proof-clients__card {
    padding: 20px 16px;
  }
}

/* ========================================
   SECTION 02: PROBLEM
   ======================================== */
.section--problem .headline { color: var(--text-dark); }
.section--problem .rule-line { background: var(--accent); }
.problem__cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-top: 12px;
}
.problem__card {
  position: relative;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(240, 237, 232, 0.07);
  border-radius: 8px;
  padding: 40px;
  overflow: hidden;
}
.problem__card h3 {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.5px;
  margin-bottom: 12px;
  color: var(--text-dark);
}
.problem__card p {
  font-size: 16px;
  font-weight: 300;
  line-height: 1.85;
  color: rgba(240, 237, 232, 0.65);
}
/* Problem icon */
.problem__icon {
  margin-bottom: 20px;
}

/* Solution card (right block) — white bg, dark text */
.problem__card--solution {
  background: rgba(240, 237, 232, 0.95);
  border-color: rgba(240, 237, 232, 0.3);
}
.problem__card--solution h3 {
  color: var(--text-light);
}
.problem__card--solution p {
  color: rgba(10, 10, 10, 0.65);
}

/* Section CTA on dark bg */
.section-cta--ondark {
  background: var(--accent);
  color: #fff;
}

.problem__card-accent {
  position: absolute;
  top: 16px;
  right: 16px;
  opacity: 0.5;
}
.problem__diagonal {
  position: absolute;
  bottom: -60px;
  right: -60px;
  width: 200px;
  height: 200px;
  z-index: 1;
  pointer-events: none;
}

/* ========================================
   SECTION 03: SYSTEM
   ======================================== */
.system__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.system__card {
  background: rgba(255, 255, 255, 0.5);
  border: 1px solid rgba(10, 10, 10, 0.07);
  border-radius: 8px;
  padding: 32px 28px;
  transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
}
.system__card:hover {
  border-color: rgba(139, 38, 53, 0.3);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.06);
}
.system__icon {
  margin-bottom: 20px;
}
.system__phase {
  display: block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 10px;
}
.system__card h3 {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.5px;
  margin-bottom: 10px;
  color: var(--text-light);
}
.system__card p {
  font-size: 15px;
  font-weight: 300;
  line-height: 1.75;
  color: rgba(10, 10, 10, 0.55);
}

/* ========================================
   SECTION 04: PROOF
   ======================================== */
.proof__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 60px;
}
.proof__card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(240, 237, 232, 0.07);
  border-left: 3px solid var(--accent);
  border-radius: 8px;
  padding: 32px;
  transition: border-color var(--transition), transform var(--transition);
}
.proof__card:hover {
  transform: translateY(-2px);
  border-color: rgba(240, 237, 232, 0.12);
  border-left-color: var(--accent);
}
.proof__icon {
  margin-bottom: 16px;
}
.proof__stat {
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 700;
  letter-spacing: -1.5px;
  line-height: 1.1;
  margin-bottom: 12px;
  color: var(--text-dark);
}
.proof__card h3 {
  font-size: 17px;
  font-weight: 600;
  letter-spacing: -0.3px;
  margin-bottom: 4px;
}
.proof__card p {
  font-size: 14px;
  font-weight: 300;
  color: rgba(240, 237, 232, 0.5);
}
.proof__logos {
  display: flex;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}
.proof__logos span {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(240, 237, 232, 0.2);
}

/* ========================================
   SECTION 05: ENTRY POINT
   ======================================== */
.section--entry { text-align: center; }
.section--entry .eyebrow { color: var(--accent); }
.section--entry .headline { color: var(--text-dark); }
.entry__body {
  font-size: 19px;
  font-weight: 300;
  line-height: 1.85;
  color: rgba(240, 237, 232, 0.7);
  max-width: 640px;
  margin: 0 auto;
}
/* Entry point icon */
.entry__icon {
  margin-bottom: 24px;
}

/* Entry point headline fly-in */
.entry__line {
  display: inline-block;
  opacity: 0;
  transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}
.entry__line--left {
  transform: translateX(-60px);
}
.entry__line--right {
  transform: translateX(60px);
  transition-delay: 0.2s;
}
.is-visible .entry__line {
  opacity: 1;
  transform: translateX(0);
}

/* Entry bullet stagger */
.entry__bullet {
  transform: translateY(24px) scale(0.95);
}
.entry__bullet.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* CTA icon */
.cta__icon {
  margin-bottom: 20px;
}

.entry__list {
  max-width: 640px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
  text-align: left;
}
.entry__list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 18px;
  font-weight: 300;
  line-height: 1.7;
  color: rgba(240, 237, 232, 0.75);
}
.entry__list li svg {
  flex-shrink: 0;
  margin-top: 4px;
}

/* ========================================
   WEBSITE BUILDER / LEAD MAGNET
   ======================================== */
.section--builder {
  background: var(--bg-light);
  color: var(--text-light);
  padding: 120px 0;
}
.builder__layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.builder__body {
  font-size: 17px;
  font-weight: 300;
  line-height: 1.85;
  color: rgba(10, 10, 10, 0.65);
  margin-top: -16px;
}
.builder__copy .headline {
  color: var(--text-light);
}
@media (max-width: 1199px) {
  .builder__layout {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}

/* ========================================
   SECTION 06: PRICING
   ======================================== */
.pricing__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  align-items: start;
}
.pricing__card {
  background: rgba(255, 255, 255, 0.5);
  border: 1px solid rgba(10, 10, 10, 0.07);
  border-radius: 12px;
  padding: 40px 32px;
  transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
}
.pricing__card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.08);
  border-color: rgba(10, 10, 10, 0.12);
}
.pricing__card--featured {
  border: 2px solid var(--accent);
  transform: scale(1.03);
  box-shadow: 0 8px 32px rgba(139, 38, 53, 0.1);
}
.pricing__card--featured:hover {
  transform: scale(1.03) translateY(-3px);
  border-color: var(--accent-light);
}
.pricing__card-header {
  margin-bottom: 28px;
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(10, 10, 10, 0.07);
}
.pricing__tier {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}
.pricing__card h3 {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.5px;
  margin-bottom: 8px;
}
.pricing__desc {
  font-size: 15px;
  font-weight: 300;
  color: rgba(10, 10, 10, 0.45);
  margin-bottom: 16px;
}
.pricing__pill {
  display: inline-block;
  padding: 6px 14px;
  background: rgba(139, 38, 53, 0.15);
  border: 1px solid rgba(139, 38, 53, 0.3);
  border-radius: 100px;
  font-size: 12px;
  font-weight: 500;
  color: var(--accent);
  letter-spacing: 0.5px;
  margin-bottom: 16px;
}
.pricing__pill--glow {
  animation: pillGlow 3s ease-in-out infinite;
}
@keyframes pillGlow {
  0%, 100% { box-shadow: 0 0 0 0 rgba(139, 38, 53, 0); }
  50% { box-shadow: 0 0 12px 2px rgba(139, 38, 53, 0.2); }
}
.pricing__price {
  font-size: 40px;
  font-weight: 700;
  letter-spacing: -1.5px;
}
.pricing__price span {
  font-size: 15px;
  font-weight: 300;
  letter-spacing: 0;
  color: rgba(10, 10, 10, 0.45);
}
.pricing__features {
  margin-bottom: 32px;
}
.pricing__feature {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 8px 0;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.5;
}
.pricing__feature svg {
  flex-shrink: 0;
  margin-top: 2px;
}
.pricing__feature--no {
  color: rgba(10, 10, 10, 0.25);
}
.pricing__cta {
  display: block;
  text-align: center;
  padding: 14px 24px;
  background: var(--accent);
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.5px;
  border-radius: var(--radius);
  transition: background var(--transition), transform var(--transition);
}
.pricing__cta:hover {
  background: var(--accent-light);
  transform: scale(1.02);
}

/* ========================================
   SECTION 07: GUARANTEE
   ======================================== */
.section--guarantee {
  position: relative;
  text-align: center;
}
.guarantee__geo {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 400px;
  height: 400px;
  pointer-events: none;
  z-index: 1;
}
.guarantee__body {
  font-size: 19px;
  font-weight: 300;
  line-height: 1.85;
  color: rgba(240, 237, 232, 0.7);
  max-width: 600px;
  margin: 0 auto;
}
.guarantee__stack {
  max-width: 600px;
  margin: 0 auto;
  text-align: left;
}
.guarantee__list {
  margin: 24px 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.guarantee__list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 17px;
  font-weight: 300;
  line-height: 1.7;
  color: rgba(240, 237, 232, 0.75);
}
.guarantee__list li svg {
  flex-shrink: 0;
  margin-top: 4px;
}
.guarantee__list li strong {
  font-weight: 600;
  color: var(--text-dark);
}
.guarantee__closer {
  font-size: 17px;
  font-weight: 400;
  line-height: 1.8;
  color: rgba(240, 237, 232, 0.55);
  margin-top: 16px;
  font-style: italic;
}

/* ========================================
   SECTION 08: CTA
   ======================================== */
.section--cta {
  text-align: center;
  padding: 160px 0;
}
.cta__card {
  max-width: 640px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.5);
  border: 1px solid rgba(10, 10, 10, 0.08);
  border-radius: 12px;
  padding: 60px 48px;
}
.cta__card .rule-line { margin: 0 auto 32px; }
.cta__body {
  font-size: 17px;
  font-weight: 300;
  line-height: 1.85;
  color: rgba(10, 10, 10, 0.6);
  margin-bottom: 40px;
}
.cta__btn {
  display: inline-block;
  padding: 16px 48px;
  background: var(--accent);
  color: #fff;
  font-size: 17px;
  font-weight: 600;
  letter-spacing: 0.5px;
  border-radius: var(--radius);
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
}
.cta__btn:hover {
  background: var(--accent-light);
  transform: scale(1.02);
  box-shadow: 0 8px 24px rgba(139, 38, 53, 0.25);
}
.cta__buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}
.cta__btn--outline {
  background: transparent;
  color: var(--text-light);
  border: 1px solid rgba(10, 10, 10, 0.15);
  box-shadow: none;
  animation: none;
}
.cta__btn--outline:hover {
  background: rgba(10, 10, 10, 0.04);
  border-color: var(--accent);
  color: var(--accent);
  box-shadow: none;
}

/* ========================================
   FOOTER
   ======================================== */
.footer {
  background: var(--bg-light);
  padding: 40px 0;
  border-top: 1px solid rgba(10, 10, 10, 0.07);
}
.footer__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer__logo {
  height: 36px;
  width: auto;
  filter: brightness(0) saturate(100%);
}
.footer__copy {
  font-size: 13px;
  font-weight: 300;
  color: rgba(10, 10, 10, 0.35);
}

/* ========================================
   RESPONSIVE
   ======================================== */

/* Tablet */
@media (max-width: 1199px) {
  .hero__inner {
    grid-template-columns: 1fr;
    gap: 48px;
    padding-top: 140px;
  }
  .hero__geo { display: none; }
  .system__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .pricing__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .pricing__card:last-child {
    grid-column: 1 / -1;
    max-width: 50%;
    justify-self: center;
  }
}

/* Mobile */
@media (max-width: 767px) {
  .section { padding: 80px 0; }
  .section__inner { padding: 0 24px; }
  .hero__inner { padding: 120px 24px 60px; }

  .nav__links--desktop {
    display: none;
  }
  .nav__links--mobile {
    display: none;
    padding-top: 80px; /* overridden by JS with exact nav height */
  }
  .nav__links--mobile.is-open {
    display: flex;
  }
  .nav__links--mobile .nav__link {
    font-size: 24px;
    font-weight: 500;
    color: var(--text-dark);
  }
  .nav__links--mobile .nav__btn {
    font-size: 18px;
    padding: 14px 36px;
  }
  .nav__hamburger {
    display: flex;
    z-index: 3001;
  }

  .headline {
    font-size: clamp(28px, 8vw, 42px);
  }
  .hero__headline {
    font-size: clamp(32px, 9vw, 48px);
  }
  .hero__pill { padding: 12px 20px; }
  .hero__pill p { font-size: 14px; }

  .lead-form { padding: 28px 24px; }
  .palette-picker {
    grid-template-columns: repeat(2, 1fr);
  }

  .problem__cards {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .problem__card { padding: 28px; }

  .system__grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .system__card { padding: 24px 20px; }

  .proof__cards {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .proof__card { padding: 24px; }
  .proof__logos { gap: 24px; }
  .proof__logos span { font-size: 11px; letter-spacing: 2px; }

  .pricing__grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .pricing__card:last-child {
    max-width: 100%;
  }
  .pricing__card--featured {
    transform: none;
    box-shadow: 0 4px 20px rgba(139, 38, 53, 0.12);
  }
  .pricing__card--featured:hover {
    transform: translateY(-3px);
  }
  .pricing__card { padding: 32px 24px; }

  .section--pricing { padding-top: 100px; }
  .section--cta { padding: 100px 0; }
  .cta__card { padding: 40px 24px; }

  .footer__inner { flex-direction: column; gap: 12px; text-align: center; }
}

/* Mobile hero adjustments */
@media (max-width: 767px) {
  .proof-hero__headline {
    font-size: clamp(28px, 7.5vw, 40px);
    padding: 0 4px;
    margin-bottom: 28px;
    letter-spacing: -0.5px;
    overflow-wrap: break-word;
    word-break: break-word;
  }
  /* Allow the underlined span to wrap on mobile so it doesn't overflow */
  .proof-hero__headline .hand-underline {
    white-space: normal;
    /* Use text-decoration on mobile — pseudo-element underline breaks on wrapped inline text */
    text-decoration: underline;
    text-decoration-color: var(--accent);
    text-decoration-thickness: 5px;
    text-underline-offset: 4px;
    text-decoration-skip-ink: none;
  }
  .proof-hero__headline .hand-underline::after {
    display: none;
  }
  .hero-stats-row {
    gap: 0;
    margin-bottom: 32px;
  }
  .hero-stat {
    padding: 0 14px;
  }
  .hero-stat__number {
    font-size: 20px;
  }
  .hero-stat__label {
    font-size: 10px;
  }
  .hero-stat__divider {
    height: 36px;
  }
  .hero-cta {
    width: 100%;
    padding: 16px 28px;
    font-size: 16px;
    text-align: center;
  }
  .cta__buttons {
    flex-direction: column;
    align-items: center;
  }
  .cta__btn {
    width: 100%;
    max-width: 320px;
  }
  .guarantee__stack {
    text-align: left;
  }
  .guarantee__list li {
    font-size: 15px;
  }
  .entry__list li {
    font-size: 16px;
  }
  .entry__list .hand-underline {
    white-space: normal;
  }

  /* Fix mobile nav overlay */
  .nav__links {
    padding-top: 80px;
  }
  .nav__btn--glow {
    margin-top: 16px;
  }
}

/* Touch targets */
@media (pointer: coarse) {
  .nav__link, .nav__btn, .skip-btn, .toggle-btn,
  .palette-option, .lead-form__next, .lead-form__submit,
  .pricing__cta, .cta__btn, .section-cta, .hero-cta {
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
}
