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

:root {
  --black: #1d1d1f;
  --surface: #f5f5f7;
  --surface-raised: #fff;
  --cream: #1d1d1f;
  --cream-bright: #000;
  --text: #6e6e73;
  --text-dim: #a1a1a6;
  --accent: #1d1d1f;
  --accent-dim: rgba(29,29,31,0.04);
  --border: #e0e0e2;
  --border-strong: #d2d2d7;
}

body {
  font-family: 'DM Sans', sans-serif;
  color: var(--text);
  background: var(--surface);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ————— STICKY HEADER ————— */
.sticky-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  padding: 0 24px;
  transform: translateY(-100%);
  transition: transform 0.3s ease;
}
.sticky-header.visible {
  transform: translateY(0);
}
.sticky-wrap {
  max-width: 680px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 52px;
}
.sticky-name {
  font-size: 14px;
  font-weight: 600;
  color: var(--cream);
  letter-spacing: -0.01em;
}
.sticky-cta {
  display: inline-block;
  padding: 8px 20px;
  background: var(--cream-bright);
  color: var(--surface-raised);
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  border-radius: 2px;
  transition: opacity 0.2s;
  letter-spacing: 0.01em;
}
.sticky-cta:hover { opacity: 0.8; }

.wrap {
  max-width: 680px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ————— HERO ————— */
.hero {
  padding: 100px 24px 72px;
  border-bottom: 1px solid var(--border);
  background: var(--surface-raised);
}
.hero .wrap { max-width: 640px; }
.hero-tag {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 28px;
}
.hero h1 {
  font-family: 'EB Garamond', Georgia, serif;
  font-size: clamp(30px, 6vw, 56px);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 28px;
  letter-spacing: -0.02em;
  color: var(--cream-bright);
  overflow-wrap: break-word;
  word-break: break-word;
}
.hero .sub {
  font-size: 18px;
  line-height: 1.65;
  color: var(--text);
  margin-bottom: 40px;
  max-width: 540px;
}
.hero .sub strong { color: var(--cream); font-weight: 600; }

.hero-cta-wrap {
  text-align: center;
}

.cta-link {
  display: inline-block;
  font-size: 15px;
  font-weight: 600;
  color: var(--cream-bright);
  border-bottom: 2px solid var(--cream-bright);
  text-decoration: none;
  padding-bottom: 2px;
  transition: opacity 0.2s;
  letter-spacing: 0.01em;
}
.cta-link:hover { opacity: 0.6; }

/* ————— HERO PROOF WITH PHOTO ————— */
.hero-proof {
  margin-top: 52px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
  font-size: 14px;
  color: var(--text-dim);
  line-height: 1.7;
  display: flex;
  gap: 24px;
  align-items: center;
}
.hero-proof strong { color: var(--cream); font-weight: 600; }
.hero-photo {
  width: 33.333%;
  flex-shrink: 0;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 2px;
  border: 1px solid var(--border-strong);
}
.hero-proof-text {
  flex: 1;
}
@media (max-width: 480px) {
  .hero-proof {
    flex-direction: column;
    gap: 20px;
  }
  .hero-photo {
    width: 120px;
  }
}

/* ————— CTA BUTTON ————— */
.cta-btn {
  display: inline-block;
  padding: 16px 36px;
  background: var(--cream-bright);
  color: var(--surface-raised);
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  border-radius: 2px;
  transition: opacity 0.2s;
  letter-spacing: 0.01em;
}
.cta-btn:hover { opacity: 0.8; }

.hero-proof {
  margin-top: 52px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
  font-size: 14px;
  color: var(--text-dim);
  line-height: 1.7;
}
.hero-proof strong { color: var(--cream); font-weight: 600; }

/* ————— SECTION BASE ————— */
section {
  padding: 72px 24px;
  border-bottom: 1px solid var(--border);
}
section:last-of-type { border-bottom: none; }

.section-tag {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 20px;
}

h2 {
  font-family: 'EB Garamond', Georgia, serif;
  font-size: clamp(26px, 4.5vw, 38px);
  font-weight: 700;
  line-height: 1.18;
  letter-spacing: -0.015em;
  margin-bottom: 20px;
  color: var(--cream-bright);
}

.section-lead {
  font-size: 16px;
  color: var(--text);
  line-height: 1.65;
  margin-bottom: 36px;
  max-width: 560px;
}

/* ————— PROBLEM ————— */
.problems { background: var(--surface-raised); }
.problem-item { padding: 22px 0; border-bottom: 1px solid var(--border); }
.problem-item:last-child { border-bottom: none; }
.problem-item h3 { font-size: 16px; font-weight: 600; margin-bottom: 8px; color: var(--cream); }
.problem-item p { font-size: 15px; color: var(--text-dim); line-height: 1.65; }

/* ————— GUARANTEE ————— */
.guarantee-section { background: var(--surface); }
.guarantee-box {
  border: 2px solid var(--cream-bright);
  padding: 40px 36px;
  background: var(--surface-raised);
}
.guarantee-box h2 { margin-bottom: 16px; }
.guarantee-box p { font-size: 16px; line-height: 1.65; color: var(--text); }
.guarantee-box .fine {
  font-size: 13px;
  color: var(--text-dim);
  margin-top: 20px;
  line-height: 1.6;
}

/* ————— DELIVERABLES ————— */
.deliverables-section { background: var(--surface-raised); }
.deliverables-list {
  list-style: none;
  padding: 0;
  counter-reset: deliverable;
}
.deliverables-list li {
  counter-increment: deliverable;
  padding: 18px 0;
  border-bottom: 1px solid var(--border);
  font-size: 16px;
  line-height: 1.6;
  display: flex;
  gap: 16px;
  color: var(--text);
}
.deliverables-list li:last-child { border-bottom: none; }
.deliverables-list li::before {
  content: counter(deliverable);
  font-family: 'EB Garamond', serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--text-dim);
  flex-shrink: 0;
  width: 24px;
}
.deliverables-list li strong { font-weight: 600; color: var(--cream); }

/* ————— AUDIT STORIES ————— */
.audit-stories {
  margin-top: 44px;
  padding-top: 36px;
  border-top: 1px solid var(--border);
}
.audit-stories-header {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-dim);
  margin-bottom: 20px;
}
.story-tabs {
  display: flex;
  gap: 0;
  border-bottom: 1px solid var(--border-strong);
  margin-bottom: 28px;
}
.story-tab {
  flex: 1;
  padding: 12px 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-dim);
  background: none;
  border: none;
  border-bottom: 2px solid transparent;
  cursor: pointer;
  text-align: center;
  font-family: 'DM Sans', sans-serif;
  transition: color 0.2s, border-color 0.2s;
}
.story-tab:hover { color: var(--text); }
.story-tab.active {
  color: var(--cream-bright);
  border-bottom-color: var(--cream-bright);
}
.story-panel {
  display: none;
  min-height: 120px;
}
.story-panel.active { display: block; }
.story-panel > p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text);
  font-style: italic;
}

/* ————— TESTIMONIALS IN STORIES ————— */
.story-testimonial {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}
.testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  border: 1px solid var(--border-strong);
}
.testimonial-quote {
  font-size: 14px;
  line-height: 1.6;
  color: var(--text);
  font-style: italic;
  margin-bottom: 6px;
}
.testimonial-name {
  font-size: 13px;
  color: var(--text-dim);
}
.testimonial-name strong { color: var(--cream); font-weight: 600; }

/* ————— SCREENSHOT CAROUSEL ————— */
.screenshot-block {
  margin-top: 36px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}
@media (max-width: 680px) {
  .screenshot-block {
    margin-left: -44px;
    margin-right: -44px;
  }
  .screenshot-block .carousel-slide {
    border-left: none;
    border-right: none;
    border-radius: 0;
  }
  .screenshot-caption {
    padding-left: 24px;
    padding-right: 24px;
  }
}
.carousel {
  position: relative;
}
.carousel-track {
  position: relative;
  overflow: hidden;
}
.carousel-slide {
  width: 100%;
  display: none;
  border: 1px solid var(--border-strong);
  border-radius: 2px;
  cursor: zoom-in;
}
.carousel-slide.active {
  display: block;
}
@media (max-width: 728px) {
  .carousel-slide {
    border-left: none;
    border-right: none;
    border-radius: 0;
  }
}
.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 16px;
}
.carousel-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 1px solid var(--border-strong);
  background: transparent;
  cursor: pointer;
  padding: 0;
  transition: background 0.2s, border-color 0.2s;
}
.carousel-dot:hover {
  border-color: var(--text-dim);
}
.carousel-dot.active {
  background: var(--cream-bright);
  border-color: var(--cream-bright);
}
.screenshot-caption {
  font-size: 13px;
  color: var(--text-dim);
  margin-top: 12px;
  font-style: italic;
}

/* ————— WHO FOR ————— */
.who-section { background: var(--surface); }
.who-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}
@media (min-width: 600px) {
  .who-grid { grid-template-columns: 1fr 1fr; gap: 48px; }
}
.who-col h3 {
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.who-col.yes h3 { color: var(--cream); }
.who-col.no h3 { color: var(--text-dim); }
.who-col ul { list-style: none; padding: 0; }
.who-col ul li {
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
}
.who-col ul li:last-child { border-bottom: none; }
.who-title {
  display: block;
  font-size: 15px;
  font-weight: 600;
  color: var(--cream);
  margin-bottom: 4px;
}
.who-desc {
  display: block;
  font-size: 14px;
  line-height: 1.55;
  color: var(--text-dim);
}
.who-col.no .who-title { color: var(--text-dim); }
.who-col.no .who-desc { color: rgba(161,161,166,0.6); }
li.single-line .who-title { margin-bottom: 0; }

/* ————— DEMO ————— */
.demo-section { background: var(--surface-raised); }
.demo-box {
  border: 1px solid var(--border-strong);
  background: var(--surface);
  padding: 36px;
}
.demo-box p { font-size: 16px; line-height: 1.65; color: var(--text); }
.demo-box p strong { color: var(--cream); }
.demo-box p + p { margin-top: 16px; }
.demo-box .demo-cta {
  margin-top: 28px;
  text-align: center;
}

/* ————— PROOF ————— */
.proof-section { background: var(--surface); }
.stats-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--border-strong);
  border: 1px solid var(--border-strong);
  margin-bottom: 40px;
}
@media (min-width: 500px) {
  .stats-row { grid-template-columns: repeat(4, 1fr); }
}
.stat {
  background: var(--surface-raised);
  padding: 28px 16px;
  text-align: center;
}
.stat .num {
  font-family: 'EB Garamond', serif;
  font-size: 34px;
  font-weight: 700;
  line-height: 1;
  color: var(--cream-bright);
}
.stat .label {
  font-size: 11px;
  color: var(--text-dim);
  margin-top: 8px;
  letter-spacing: 0.03em;
}
.case { padding: 22px 0; border-bottom: 1px solid var(--border); }
.case:last-of-type { border-bottom: none; }
.case h3 { font-size: 15px; font-weight: 600; margin-bottom: 6px; color: var(--cream); }
.case h3 a {
  color: var(--cream);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: var(--border-strong);
  transition: text-decoration-color 0.2s;
}
.case h3 a:hover {
  text-decoration-color: var(--cream);
}
.case p { font-size: 15px; color: var(--text-dim); line-height: 1.65; }
.case .result { color: var(--cream-bright); font-weight: 600; }

/* ————— LOGO SECTION ————— */
.logo-section {
  background: var(--surface-raised);
  padding: 48px 24px;
  border-bottom: 1px solid var(--border);
}
.logo-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 70px;
}
.logo-bar-label {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-dim);
  flex-shrink: 0;
}
.logo-bar img {
  height: 50px;
  width: auto;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.4;
  transition: filter 0.3s, opacity 0.3s;
}
.logo-bar img:hover {
  filter: grayscale(0%);
  opacity: 0.85;
}
@media (max-width: 480px) {
  .logo-bar {
    gap: 24px;
    flex-wrap: wrap;
  }
  .logo-bar img {
    height: 44px;
  }
}

/* ————— FAQ ————— */
.faq-section { background: var(--surface-raised); }
.faq-item {
  border-bottom: 1px solid var(--border);
  padding: 20px 0;
  cursor: pointer;
}
.faq-item:first-child { border-top: 1px solid var(--border); }
.faq-item h3 {
  font-size: 16px;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  color: var(--cream);
}
.faq-item h3::after {
  content: '+';
  font-size: 20px;
  font-weight: 400;
  color: var(--text-dim);
  flex-shrink: 0;
}
.faq-item.open h3::after { content: '−'; }
.faq-item .answer {
  display: none;
  font-size: 15px;
  color: var(--text-dim);
  line-height: 1.65;
  margin-top: 14px;
  padding-right: 32px;
}
.faq-item.open .answer { display: block; }

/* ————— FORM ————— */
.form-section {
  background: var(--surface);
  padding: 88px 24px;
}
.form-section h2 {
  margin-bottom: 12px;
  text-align: center;
}
.form-lead {
  font-size: 16px;
  color: var(--text);
  line-height: 1.65;
  margin-bottom: 44px;
  max-width: 520px;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

/* ————— WHAT HAPPENS NEXT ————— */
.next-steps {
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 44px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--border);
}
.next-step {
  display: flex;
  gap: 16px;
  align-items: baseline;
  padding: 10px 0;
  font-size: 15px;
  line-height: 1.55;
  color: var(--text);
}
.next-step strong { color: var(--cream); font-weight: 600; }
.step-num {
  font-family: 'EB Garamond', serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--text-dim);
  flex-shrink: 0;
  width: 20px;
}
.form-grid {
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}
.form-grid label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--text);
  letter-spacing: 0.02em;
}
.form-grid .field { margin-bottom: 20px; }
.form-grid input:not([type="checkbox"]),
.form-grid select,
.form-grid textarea {
  width: 100%;
  padding: 13px 14px;
  border: 1px solid var(--border-strong);
  border-radius: 2px;
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  color: var(--cream);
  background: var(--surface-raised);
  transition: border-color 0.2s;
  -webkit-appearance: none;
  appearance: none;
}
.form-grid input:not([type="checkbox"])::placeholder,
.form-grid textarea::placeholder {
  color: var(--text-dim);
}
.form-grid input:not([type="checkbox"]):focus,
.form-grid select:focus,
.form-grid textarea:focus {
  outline: none;
  border-color: var(--cream-bright);
}
.form-grid select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23a1a1a6' fill='none' stroke-width='1.5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
}
.form-grid textarea { resize: vertical; min-height: 60px; }

.row-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
@media (max-width: 480px) {
  .row-2 { grid-template-columns: 1fr; }
}

.submit-btn {
  display: block;
  width: 100%;
  padding: 16px;
  background: var(--cream-bright);
  color: var(--surface-raised);
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  font-weight: 700;
  border: none;
  border-radius: 2px;
  cursor: pointer;
  transition: opacity 0.2s;
  margin-top: 8px;
  letter-spacing: 0.01em;
}
.submit-btn:hover { opacity: 0.8; }

.form-note {
  font-size: 13px;
  color: var(--text-dim);
  margin-top: 16px;
  text-align: center;
}

/* ————— TRUST LINE NEAR SUBMIT ————— */
.form-trust {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
  font-size: 13px;
  font-weight: 600;
  color: var(--text-dim);
  letter-spacing: 0.01em;
  text-align: center;
}

.consent-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-top: 20px;
  margin-bottom: 8px;
}
.consent-row input[type="checkbox"] {
  width: 18px;
  height: 18px;
  min-width: 18px;
  margin-top: 1px;
  flex-shrink: 0;
  accent-color: var(--cream-bright);
  cursor: pointer;
  -webkit-appearance: checkbox;
  appearance: checkbox;
}
.consent-row label { font-size: 12px; color: var(--text-dim); line-height: 1.5; }
.consent-row label a { color: var(--text); }

/* ————— FOOTER ————— */
footer {
  padding: 40px 24px;
  border-top: 1px solid var(--border);
  font-size: 13px;
  color: var(--text-dim);
  line-height: 1.6;
}
footer a { color: var(--text); text-decoration: none; }
footer a:hover { color: var(--cream); }
footer .legal-links { margin-top: 12px; }
footer .legal-links a { margin-right: 16px; }
footer .legal-block {
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  max-width: 560px;
  font-size: 0.65rem;

}
footer .legal-block p { margin-top: 16px; }
footer .legal-block strong { color: var(--text); }

/* ————— TOAST ————— */
.toast {
  position: fixed;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  padding: 16px 28px;
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  font-weight: 600;
  border-radius: 2px;
  z-index: 200;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s, transform 0.3s;
  max-width: 480px;
  text-align: center;
}
.toast.visible {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
  pointer-events: auto;
}
.toast.success {
  background: var(--cream-bright);
  color: var(--surface-raised);
}
.toast.error {
  background: #c0392b;
  color: #fff;
}