/* ============================================================
   APPROVE IT — landing.css
   Landing page specific styles
   ============================================================ */

/* PAPER TEXTURE - subtle noise */
body.landing-page::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image:
    radial-gradient(circle at 25% 25%, rgba(4,43,49,0.025) 0%, transparent 50%),
    radial-gradient(circle at 75% 75%, rgba(4,219,180,0.025) 0%, transparent 50%);
  pointer-events: none;
  z-index: 0;
}

/* ============ HERO ============ */
.hero {
  position: relative;
  min-height: 100vh;
  padding: 130px 40px 80px;
  overflow: hidden;
  z-index: 1;
}

.hero-watermark {
  position: absolute;
  font-family: var(--serif);
  font-weight: 300;
  font-style: italic;
  font-size: clamp(220px, 30vw, 460px);
  line-height: 0.8;
  color: var(--ink);
  opacity: 0.04;
  letter-spacing: -0.06em;
  pointer-events: none;
  white-space: nowrap;
  bottom: -60px;
  inset-inline-start: -40px;
}

.hero-grid {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 64px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 6px 14px 6px 8px;
  background: var(--white);
  border: 1px solid rgba(4,43,49,0.08);
  border-radius: 100px;
  font-size: 12px;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: 0.01em;
  margin-bottom: 32px;
  animation: fadeUp 0.7s cubic-bezier(0.16,1,0.3,1) both;
  box-shadow: 0 4px 12px rgba(4,43,49,0.04);
}
.eyebrow-pill {
  background: var(--turquoise);
  color: var(--teal);
  font-weight: 700;
  font-size: 11px;
  padding: 3px 10px;
  border-radius: 100px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.hero-headline {
  font-family: var(--sans);
  font-weight: 800;
  font-size: clamp(52px, 7.2vw, 102px);
  line-height: 0.92;
  letter-spacing: -0.045em;
  color: var(--ink);
  margin-bottom: 32px;
  animation: fadeUp 0.7s 0.05s cubic-bezier(0.16,1,0.3,1) both;
}
.hero-headline .row { display: block; }
.hero-headline .serif {
  font-family: var(--serif);
  font-weight: 300;
  font-style: italic;
  color: var(--ink-soft);
  letter-spacing: -0.035em;
}
.hero-headline .stamp-word {
  position: relative;
  display: inline-block;
  color: var(--white);
  padding: 0 14px;
  margin-inline-start: -4px;
}
.hero-headline .stamp-word::before {
  content: '';
  position: absolute;
  inset: 8% -2% 8% -2%;
  background: var(--ink);
  z-index: -1;
  border-radius: 6px;
  transform: rotate(-1.2deg);
  animation: stampDrop 0.5s 0.7s cubic-bezier(0.34,1.7,0.64,1) both;
  transform-origin: center;
}
@keyframes stampDrop {
  0% { transform: rotate(-1.2deg) scale(1.6); opacity: 0; }
  60% { transform: rotate(-1.2deg) scale(0.95); opacity: 1; }
  100% { transform: rotate(-1.2deg) scale(1); opacity: 1; }
}

.hero-sub {
  font-size: 19px;
  font-weight: 400;
  color: var(--ink-soft);
  max-width: 480px;
  margin-bottom: 40px;
  line-height: 1.55;
  animation: fadeUp 0.7s 0.15s cubic-bezier(0.16,1,0.3,1) both;
}

/* ============ CHECKER ============ */
.checker {
  position: relative;
  max-width: 560px;
  animation: fadeUp 0.7s 0.25s cubic-bezier(0.16,1,0.3,1) both;
}
.checker-box {
  background: var(--white);
  border-radius: 24px;
  padding: 8px 8px 8px 22px;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow:
    0 1px 2px rgba(4,43,49,0.04),
    0 12px 40px rgba(4,43,49,0.06);
  border: 1.5px solid transparent;
  transition: border-color 0.25s, box-shadow 0.25s;
  position: relative;
}
.checker-box:focus-within {
  border-color: var(--turquoise);
  box-shadow:
    0 1px 2px rgba(4,43,49,0.04),
    0 12px 40px rgba(4,219,180,0.18);
}
.checker-icon {
  flex-shrink: 0;
  color: var(--gray);
  transition: color 0.2s;
}
.checker-box:focus-within .checker-icon { color: var(--turquoise-deep); }
.checker-input {
  flex: 1;
  min-width: 0;
  border: none;
  background: transparent;
  font-family: var(--sans);
  font-size: 18px;
  font-weight: 500;
  color: var(--ink);
  outline: none;
  padding: 16px 0;
}
.checker-input::placeholder {
  color: var(--gray);
  font-weight: 400;
  font-family: var(--serif);
  font-style: italic;
}
.checker-btn {
  background: var(--ink);
  color: var(--white);
  border: none;
  padding: 14px 22px;
  border-radius: 16px;
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: background 0.2s, transform 0.1s;
}
.checker-btn:hover { background: var(--turquoise-deep); }
.checker-btn:active { transform: scale(0.97); }
.checker-btn:disabled { opacity: 0.6; cursor: not-allowed; }
.checker-btn svg { width: 14px; height: 14px; transition: transform 0.2s; }
.checker-btn:hover svg { transform: translate(2px, -2px); }

.checker-meta {
  display: flex;
  align-items: center;
  gap: 22px;
  margin-top: 18px;
  padding-inline-start: 4px;
  font-size: 13px;
  color: var(--ink-soft);
  flex-wrap: wrap;
}
.checker-meta span { display: inline-flex; align-items: center; gap: 6px; }
.checker-meta svg { width: 14px; height: 14px; color: var(--turquoise-deep); }

/* ============ LOADING + INLINE RESULT ============ */
.live-loading, .live-result {
  margin-top: 16px;
  display: none;
  animation: fadeUp 0.4s ease both;
}
.live-loading.show, .live-result.show { display: block; }
.live-loading {
  text-align: center;
  padding: 22px;
  background: var(--white);
  border-radius: 18px;
  box-shadow: 0 4px 20px rgba(4,43,49,0.05);
}
.ld-dots { display: flex; gap: 6px; justify-content: center; margin-bottom: 10px; }
.ld-dots span {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--turquoise-deep);
  animation: ldBounce 1.2s infinite;
}
.ld-dots span:nth-child(2) { animation-delay: 0.15s; }
.ld-dots span:nth-child(3) { animation-delay: 0.3s; }
@keyframes ldBounce { 0%,60%,100%{transform:translateY(0)} 30%{transform:translateY(-8px)} }
.ld-text {
  font-family: var(--serif);
  font-style: italic;
  font-size: 16px;
  color: var(--ink-soft);
}

/* ============ HERO VIGNETTE (document + stamp) ============ */
.vignette {
  position: relative;
  height: 580px;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeIn 0.8s 0.4s ease both;
}
.vignette-paper {
  position: absolute;
  background: var(--white);
  border-radius: 4px;
  box-shadow: 0 6px 20px rgba(4,43,49,0.06);
  border: 1px solid rgba(4,43,49,0.04);
}
.paper-1 {
  width: 65%; aspect-ratio: 0.75;
  top: 8%; left: 12%;
  transform: rotate(-6deg);
}
.paper-2 {
  width: 65%; aspect-ratio: 0.75;
  top: 4%; left: 18%;
  transform: rotate(3deg);
}
.vignette-doc {
  position: relative;
  width: 70%; aspect-ratio: 0.75;
  background: var(--white);
  border-radius: 6px;
  padding: 32px;
  box-shadow:
    0 1px 2px rgba(4,43,49,0.06),
    0 24px 60px rgba(4,43,49,0.12);
  transform: rotate(-1.5deg);
  z-index: 2;
  border: 1px solid rgba(4,43,49,0.04);
  display: flex;
  flex-direction: column;
}
.doc-header {
  display: flex; align-items: center; justify-content: space-between;
  padding-bottom: 14px;
  border-bottom: 1px dashed rgba(4,43,49,0.15);
  margin-bottom: 18px;
}
.doc-id {
  font-family: var(--serif);
  font-style: italic;
  font-size: 12px;
  color: var(--ink-soft);
}
.doc-date {
  font-size: 11px; font-weight: 600;
  color: var(--ink-soft);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.doc-tab {
  position: absolute;
  top: -10px; left: 36px;
  background: var(--lavender);
  color: var(--teal);
  padding: 4px 14px;
  border-radius: 4px 4px 0 0;
  font-size: 10px; font-weight: 700;
  letter-spacing: 0.15em; text-transform: uppercase;
}
.doc-label {
  font-size: 10px; font-weight: 700;
  color: var(--ink-soft);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.doc-name {
  font-family: var(--serif);
  font-weight: 400; font-style: italic;
  font-size: 56px;
  letter-spacing: -0.035em;
  line-height: 1;
  color: var(--ink);
  margin-bottom: 4px;
  transition: opacity 0.25s;
}
.doc-tagline {
  font-size: 12px;
  color: var(--ink-soft);
  margin-bottom: 24px;
}
.doc-rows {
  display: flex; flex-direction: column; gap: 10px;
  flex: 1;
}
.doc-row {
  display: flex; align-items: center; justify-content: space-between;
  padding: 9px 0;
  border-bottom: 1px dotted rgba(4,43,49,0.1);
  font-size: 12px;
}
.doc-row:last-child { border-bottom: none; }
.doc-row-label {
  display: flex; align-items: center; gap: 8px;
  font-weight: 500;
  color: var(--ink-soft);
}
.doc-row-label svg { width: 13px; height: 13px; }
.doc-row-value {
  font-weight: 700;
  color: var(--turquoise-deep);
  display: inline-flex; align-items: center; gap: 4px;
}
.doc-row-value.warn { color: var(--lavender); }
.doc-footer {
  margin-top: 18px;
  padding-top: 14px;
  border-top: 1px dashed rgba(4,43,49,0.15);
  display: flex; align-items: center; justify-content: space-between;
}
.doc-score-label {
  font-size: 10px; font-weight: 700;
  color: var(--ink-soft);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.doc-score-value {
  font-family: var(--sans);
  font-size: 32px; font-weight: 800;
  color: var(--ink);
  letter-spacing: -0.04em;
  line-height: 1;
}
.doc-score-value sub {
  font-size: 13px; font-weight: 500;
  color: var(--ink-soft); opacity: 0.6;
}

/* Stamp */
.vignette-stamp {
  position: absolute;
  z-index: 3;
  top: 22%;
  right: -3%;
  width: 180px; height: 180px;
  border-radius: 50%;
  background: transparent;
  border: 4px solid var(--turquoise-deep);
  color: var(--turquoise-deep);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  transform: rotate(-12deg) scale(0);
  animation: stampHit 0.7s 1s cubic-bezier(0.34,1.7,0.64,1) forwards;
  font-family: var(--sans);
  text-align: center;
  opacity: 0;
}
@keyframes stampHit {
  0% { transform: rotate(-12deg) scale(2); opacity: 0; }
  60% { transform: rotate(-12deg) scale(0.93); opacity: 1; }
  100% { transform: rotate(-12deg) scale(1); opacity: 0.92; }
}
.vignette-stamp::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 4px solid var(--turquoise-deep);
  opacity: 0.3;
  filter: blur(2px);
}
.stamp-inner {
  width: 88%; height: 88%;
  border-radius: 50%;
  border: 1.5px dashed var(--turquoise-deep);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 4px;
}
.stamp-text-top, .stamp-text-bottom {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  opacity: 0.7;
}
.stamp-word-main {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 500;
  font-size: 32px;
  letter-spacing: -0.02em;
  line-height: 1;
}

/* Floating chips */
.float-chip {
  position: absolute;
  background: var(--white);
  border-radius: 100px;
  padding: 7px 14px 7px 7px;
  font-size: 12px; font-weight: 600;
  color: var(--ink);
  box-shadow: 0 8px 28px rgba(4,43,49,0.1);
  display: flex; align-items: center; gap: 8px;
  z-index: 4;
  animation: floatY 5s ease-in-out infinite;
}
.float-chip-dot {
  width: 18px; height: 18px;
  border-radius: 50%;
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-size: 10px; font-weight: 900;
  flex-shrink: 0;
}
.fc-1 { top: 12%; left: -5%; animation-delay: 0s; }
.fc-1 .float-chip-dot { background: var(--turquoise-deep); }
.fc-2 { bottom: 18%; left: -2%; animation-delay: 1.5s; }
.fc-2 .float-chip-dot { background: var(--coral); }
.fc-3 { bottom: 4%; right: 8%; animation-delay: 2.5s; }
.fc-3 .float-chip-dot { background: var(--lavender); color: var(--teal); }

@keyframes floatY {
  0%, 100% { transform: translateY(0) rotate(-1deg); }
  50% { transform: translateY(-12px) rotate(2deg); }
}

/* ============ MARQUEE ============ */
.marquee {
  background: var(--ink);
  padding: 26px 0;
  overflow: hidden;
  position: relative;
  border-top: 1px solid rgba(4,219,180,0.15);
  border-bottom: 1px solid rgba(4,219,180,0.15);
}
.marquee-track {
  display: flex; gap: 12px;
  animation: scroll 50s linear infinite;
  width: max-content;
}
.marquee-track:hover { animation-play-state: paused; }
@keyframes scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.mq-item {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 10px 22px;
  border-radius: 100px;
  font-size: 14px; font-weight: 600;
  white-space: nowrap;
}
.mq-approved {
  background: rgba(4,219,180,0.12);
  color: var(--turquoise);
  border: 1px solid rgba(4,219,180,0.25);
}
.mq-review {
  background: rgba(187,170,221,0.12);
  color: var(--lavender);
  border: 1px solid rgba(187,170,221,0.25);
}
.mq-declined {
  background: rgba(255,111,97,0.12);
  color: var(--coral);
  border: 1px solid rgba(255,111,97,0.25);
}
.mq-icon {
  width: 20px; height: 20px;
  border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  font-weight: 900; font-size: 11px;
  color: var(--white);
}
.mq-approved .mq-icon { background: var(--turquoise-deep); }
.mq-review .mq-icon { background: var(--lavender); color: var(--teal); }
.mq-declined .mq-icon { background: var(--coral); }

/* ============ STEPS ============ */
.steps-container {
  position: relative;
  margin-top: 60px;
}
.steps-line {
  position: absolute;
  top: 32px;
  left: 5%; right: 5%;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, var(--ink-soft) 5%, var(--ink-soft) 95%, transparent 100%);
  opacity: 0.25;
}
.steps-line::before, .steps-line::after {
  content: '';
  position: absolute;
}
.steps-line::before {
  inset-inline-start: 5%;
  top: -3px;
  width: 7px; height: 7px;
  background: var(--turquoise-deep);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(2,168,139,0.15);
}
.steps-line::after {
  inset-inline-end: 5%;
  top: -7px;
  border-style: solid;
  border-width: 8px 0 8px 14px;
  border-color: transparent transparent transparent var(--turquoise-deep);
}
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  position: relative;
}
.step {
  display: flex; flex-direction: column; align-items: center;
  text-align: center;
}
.step-circle {
  position: relative;
  width: 64px; height: 64px;
  background: var(--white);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 24px;
  box-shadow: 0 4px 16px rgba(4,43,49,0.08);
  font-family: var(--serif);
  font-style: italic;
  font-size: 28px; font-weight: 400;
  color: var(--turquoise-deep);
  border: 1px solid rgba(4,43,49,0.05);
  z-index: 2;
}
.step-title {
  font-size: 22px; font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 12px;
}
.step-desc {
  font-size: 15px; line-height: 1.6;
  color: var(--ink-soft);
  max-width: 280px;
}

/* ============ CHECKS (dark section) ============ */
.checks-section {
  background: var(--ink);
  color: var(--white);
  padding: 110px 0;
  position: relative;
  overflow: hidden;
}
.checks-section .section { padding: 0 40px; }
.checks-section .h2 { color: var(--white); }
.checks-section .h2 .serif { color: rgba(255,255,255,0.4); }
.checks-section .h2 .accent { color: var(--turquoise); }
.checks-section .sub { color: rgba(255,255,255,0.55); }
.checks-section .eyebrow {
  background: rgba(4,219,180,0.15);
  color: var(--turquoise);
}
.checks-section::before {
  content: '06';
  position: absolute;
  font-family: var(--serif);
  font-weight: 300; font-style: italic;
  font-size: 580px;
  line-height: 0.8;
  color: rgba(4,219,180,0.05);
  letter-spacing: -0.08em;
  top: 50%;
  inset-inline-end: -100px;
  transform: translateY(-50%);
  pointer-events: none;
}
.checks-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-auto-rows: minmax(220px, auto);
  gap: 16px;
  position: relative;
  z-index: 1;
}
.check-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 24px;
  padding: 32px;
  transition: background 0.3s, transform 0.3s, border-color 0.3s;
  position: relative;
  overflow: hidden;
  display: flex; flex-direction: column;
}
.check-card:hover {
  background: rgba(4,219,180,0.06);
  border-color: rgba(4,219,180,0.3);
  transform: translateY(-3px);
}
.check-card.big { grid-column: span 3; }
.check-card.med { grid-column: span 3; }
.check-card.sm { grid-column: span 2; }
.check-card.wide { grid-column: span 4; }
.cc-tag {
  display: inline-flex;
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--turquoise);
  margin-bottom: auto;
}
.cc-tag .num {
  font-family: var(--serif);
  font-weight: 300; font-style: italic;
  font-size: 18px;
  margin-inline-end: 8px;
  letter-spacing: -0.02em;
}
.cc-body { margin-top: 32px; }
.cc-title {
  font-size: 24px; font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--white);
  margin-bottom: 10px;
}
.cc-desc {
  font-size: 14px; line-height: 1.6;
  color: rgba(255,255,255,0.6);
}
.cc-icon {
  position: absolute;
  top: 32px;
  inset-inline-end: 32px;
  width: 40px; height: 40px;
  border-radius: 12px;
  background: var(--turquoise);
  color: var(--teal);
  display: flex; align-items: center; justify-content: center;
  transition: transform 0.3s, background 0.3s;
}
.check-card:hover .cc-icon { transform: rotate(-8deg) scale(1.08); }
.cc-icon svg { width: 20px; height: 20px; }

/* ============ DECISION SHOWCASE ============ */
.showcase {
  padding: 110px 40px;
  background: var(--paper-2);
  position: relative;
  overflow: hidden;
}
.showcase-inner {
  max-width: 1280px;
  margin: 0 auto;
  position: relative;
}
.showcase-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
  align-items: center;
  margin-top: 60px;
}
.showcase-text { padding-inline-end: 20px; }
.verdict-options {
  display: flex; flex-direction: column;
  gap: 14px;
  margin-top: 40px;
}
.vo-item {
  display: flex; align-items: center; gap: 16px;
  padding: 18px 22px;
  background: var(--white);
  border-radius: 16px;
  font-size: 15px;
  color: var(--ink);
  font-weight: 500;
  border: 1px solid rgba(4,43,49,0.05);
  transition: transform 0.2s, box-shadow 0.2s;
}
.vo-item:hover {
  transform: translateX(4px);
  box-shadow: 0 8px 24px rgba(4,43,49,0.06);
}
.vo-icon {
  width: 34px; height: 34px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 900; font-size: 15px;
  color: var(--white);
  flex-shrink: 0;
}
.vo-item.approved .vo-icon { background: var(--turquoise-deep); }
.vo-item.review .vo-icon { background: var(--lavender); color: var(--teal); }
.vo-item.declined .vo-icon { background: var(--coral); }
.vo-text strong {
  display: block;
  font-weight: 700;
  margin-bottom: 2px;
}
.vo-text span {
  color: var(--ink-soft);
  font-size: 13px;
  font-weight: 500;
}
.showcase-cards {
  position: relative;
  height: 540px;
}
.example-card {
  position: absolute;
  width: 90%;
  background: var(--white);
  border-radius: 20px;
  padding: 26px 28px;
  box-shadow: 0 16px 50px rgba(4,43,49,0.1);
  border: 1px solid rgba(4,43,49,0.04);
  transition: transform 0.4s cubic-bezier(0.16,1,0.3,1);
}
.ec-1 { top: 0; left: 0; transform: rotate(-4deg); z-index: 1; }
.ec-2 { top: 80px; left: 5%; z-index: 3; transform: rotate(0.5deg) scale(1.02); }
.ec-3 { top: 240px; left: 8%; z-index: 2; transform: rotate(3deg); }
.example-card:hover {
  transform: translateY(-6px) rotate(0deg) scale(1.05);
  z-index: 10;
}
.ec-top {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 14px;
}
.ec-name-row { display: flex; align-items: center; gap: 12px; }
.ec-stamp {
  width: 38px; height: 38px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--white); font-weight: 900; font-size: 18px;
  flex-shrink: 0;
}
.ec-stamp.app { background: var(--turquoise-deep); }
.ec-stamp.rev { background: var(--lavender); color: var(--teal); }
.ec-stamp.dec { background: var(--coral); }
.ec-name {
  font-family: var(--serif);
  font-weight: 400; font-style: italic;
  font-size: 26px;
  letter-spacing: -0.02em;
  line-height: 1;
}
.ec-status {
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  padding: 4px 10px; border-radius: 100px;
}
.ec-status.app { background: var(--turquoise-soft); color: var(--turquoise-deep); }
.ec-status.rev { background: #efeaf6; color: var(--lavender); }
.ec-status.dec { background: var(--coral-soft); color: var(--coral); }
.ec-summary {
  font-size: 13px; line-height: 1.55;
  color: var(--ink-soft);
  margin-bottom: 14px;
}
.ec-meta { display: flex; gap: 8px; flex-wrap: wrap; }
.ec-meta-pill {
  font-size: 11px; font-weight: 600;
  padding: 4px 10px; border-radius: 100px;
  background: var(--paper);
  color: var(--ink-soft);
}

/* ============ PRICING ============ */
.pricing-section {
  padding: 110px 40px;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}
.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr 1fr;
  gap: 16px;
  margin-top: 60px;
  align-items: stretch;
}
.tier {
  background: var(--white);
  border: 1px solid rgba(4,43,49,0.06);
  border-radius: 24px;
  padding: 36px 30px;
  position: relative;
  display: flex; flex-direction: column;
  transition: transform 0.3s, box-shadow 0.3s;
}
.tier:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 60px rgba(4,43,49,0.08);
}
.tier-pro {
  background: var(--ink);
  color: var(--white);
  border: none;
  position: relative;
}
.tier-pro::before {
  content: attr(data-most-popular);
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--turquoise);
  color: var(--teal);
  padding: 6px 14px; border-radius: 100px;
  font-size: 11px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.08em;
  white-space: nowrap;
}
.tier-name {
  font-family: var(--serif);
  font-style: italic;
  font-size: 22px; font-weight: 400;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}
.tier-pro .tier-name { color: var(--turquoise); }
.tier-price {
  display: flex; align-items: baseline; gap: 4px;
  margin-bottom: 6px;
}
.tier-price-currency {
  font-size: 22px; font-weight: 500;
  color: var(--ink-soft);
}
.tier-pro .tier-price-currency { color: rgba(255,255,255,0.5); }
.tier-price-value {
  font-family: var(--sans);
  font-size: 60px; font-weight: 800;
  letter-spacing: -0.045em;
  line-height: 1;
  color: var(--ink);
}
.tier-pro .tier-price-value { color: var(--white); }
.tier-cycle {
  font-size: 13px;
  color: var(--ink-soft);
  margin-bottom: 28px;
}
.tier-pro .tier-cycle { color: rgba(255,255,255,0.5); }
.tier-features {
  list-style: none;
  flex: 1;
  margin-bottom: 30px;
}
.tier-features li {
  font-size: 14px;
  padding: 11px 0;
  border-bottom: 1px solid rgba(4,43,49,0.06);
  display: flex; align-items: center; gap: 10px;
  color: var(--ink);
}
.tier-pro .tier-features li {
  color: rgba(255,255,255,0.85);
  border-bottom-color: rgba(255,255,255,0.1);
}
.tier-features li:last-child { border-bottom: none; }
.tier-features svg {
  width: 16px; height: 16px;
  color: var(--turquoise-deep); flex-shrink: 0;
}
.tier-pro .tier-features svg { color: var(--turquoise); }
.tier-btn {
  display: block; text-align: center;
  padding: 15px; border-radius: 14px;
  font-size: 15px; font-weight: 700;
  text-decoration: none;
  font-family: var(--sans);
  transition: background 0.2s, transform 0.1s;
  cursor: pointer; border: none;
}
.tier-btn-outline {
  background: transparent;
  color: var(--ink);
  border: 1.5px solid var(--ink);
}
.tier-btn-outline:hover { background: var(--ink); color: var(--white); }
.tier-btn-solid {
  background: var(--turquoise);
  color: var(--teal);
}
.tier-btn-solid:hover { background: var(--white); }
.tier-btn:active { transform: scale(0.98); }

/* ============ TESTIMONIALS ============ */
.proof-section {
  padding: 110px 40px;
  max-width: 1280px;
  margin: 0 auto;
}
.proof-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr 1fr;
  gap: 18px;
  margin-top: 50px;
  align-items: start;
}
.proof-card {
  background: var(--white);
  border-radius: 24px;
  padding: 32px;
  border: 1px solid rgba(4,43,49,0.05);
  transition: transform 0.3s;
}
.proof-card:hover { transform: translateY(-5px); }
.proof-card:nth-child(1) { margin-top: 0; }
.proof-card:nth-child(2) { margin-top: 30px; }
.proof-card:nth-child(3) { margin-top: 60px; }
.proof-quote-mark {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: 60px;
  color: var(--turquoise-deep);
  line-height: 0.5;
  margin-bottom: 8px;
}
.proof-quote {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: 18px;
  letter-spacing: -0.01em;
  color: var(--ink);
  line-height: 1.5;
  margin-bottom: 24px;
}
.proof-author { display: flex; align-items: center; gap: 12px; }
.proof-avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 14px;
  color: var(--white);
  font-family: var(--sans);
}
.proof-name { font-size: 14px; font-weight: 700; color: var(--ink); }
.proof-role { font-size: 12px; color: var(--ink-soft); margin-top: 2px; }

/* ============ FINAL CTA ============ */
.final-cta {
  background: var(--ink);
  padding: 130px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.final-cta::before {
  content: '';
  position: absolute;
  width: 800px; height: 800px;
  background: radial-gradient(circle, rgba(4,219,180,0.18) 0%, transparent 60%);
  top: -200px; left: 50%; transform: translateX(-50%);
  pointer-events: none;
}
.final-cta::after {
  content: '“';
  position: absolute;
  font-family: var(--serif);
  font-weight: 300; font-style: italic;
  font-size: 480px;
  line-height: 0.7;
  color: rgba(4,219,180,0.06);
  top: 20px;
  inset-inline-start: 30px;
  pointer-events: none;
}
.final-cta-inner {
  position: relative; z-index: 1;
  max-width: 720px;
  margin: 0 auto;
}
.final-cta h2 {
  font-family: var(--sans);
  font-weight: 800;
  font-size: clamp(46px, 6vw, 84px);
  color: var(--white);
  letter-spacing: -0.045em;
  line-height: 0.95;
  margin-bottom: 24px;
}
.final-cta h2 .serif {
  font-family: var(--serif);
  font-weight: 300; font-style: italic;
  color: var(--turquoise);
}
.final-cta p {
  font-size: 18px;
  color: rgba(255,255,255,0.65);
  margin-bottom: 44px;
  line-height: 1.55;
}
.final-form {
  display: flex; gap: 8px;
  max-width: 540px; margin: 0 auto;
  background: rgba(255,255,255,0.05);
  border: 1.5px solid rgba(255,255,255,0.12);
  border-radius: 20px;
  padding: 8px 8px 8px 24px;
  transition: border-color 0.2s;
}
.final-form:focus-within { border-color: var(--turquoise); }
.final-form input {
  flex: 1; min-width: 0;
  background: transparent; border: none; outline: none;
  font-family: var(--sans);
  font-size: 17px; font-weight: 500;
  color: var(--white); padding: 14px 0;
}
.final-form input::placeholder {
  color: rgba(255,255,255,0.4);
  font-family: var(--serif); font-style: italic;
}
.final-form button {
  background: var(--turquoise);
  color: var(--teal);
  border: none;
  padding: 14px 24px;
  border-radius: 14px;
  font-size: 15px; font-weight: 700;
  cursor: pointer;
  font-family: var(--sans);
  white-space: nowrap;
  transition: background 0.2s;
}
.final-form button:hover { background: var(--white); }

/* ============ MOBILE ============ */
@media (max-width: 968px) {
  .hero { padding: 110px 18px 60px; }
  .hero-grid { grid-template-columns: 1fr; gap: 50px; }
  .vignette { height: 480px; max-width: 380px; margin: 0 auto; }
  .hero-watermark { font-size: 200px; }
  .steps { grid-template-columns: 1fr; gap: 40px; }
  .steps-line { display: none; }
  .checks-section { padding: 70px 0; }
  .checks-section .section { padding: 0 18px; }
  .checks-grid { grid-template-columns: 1fr; }
  .check-card.big, .check-card.med, .check-card.sm, .check-card.wide { grid-column: span 1; }
  .showcase { padding: 70px 18px; }
  .showcase-grid { grid-template-columns: 1fr; gap: 50px; }
  .showcase-text { padding-inline-end: 0; }
  .showcase-cards { height: 580px; }
  .pricing-section { padding: 70px 18px; }
  .pricing-grid { grid-template-columns: 1fr; gap: 24px; }
  .proof-section { padding: 70px 18px; }
  .proof-grid { grid-template-columns: 1fr; }
  .proof-card:nth-child(2), .proof-card:nth-child(3) { margin-top: 0; }
  .final-cta { padding: 80px 18px; }
  .final-form { flex-direction: column; padding: 16px; }
  .final-form input { padding: 8px 0; text-align: center; }
  .checker-input { font-size: 16px; }
  .doc-name { font-size: 42px; }
  .vignette-stamp { width: 140px; height: 140px; right: -8%; }
  .stamp-word-main { font-size: 26px; }
}
