/* ================================================
   Whisper Dictate - Product page
   ================================================ */

/* Base reset for images */
img { max-width: 100%; height: auto; display: block; }

/* ---- NAV breadcrumb ---- */
nav { display: flex; align-items: center; gap: 1rem; }
.wd-sep {
  font-size: .75rem;
  color: var(--muted);
  padding-left: .75rem;
  border-left: 1px solid var(--border);
}

/* ---- HERO ---- */
.wd-hero {
  padding: 5rem 3rem 4rem;
  text-align: center;
}
.wd-icon {
  width: 80px;
  height: 80px;
  border-radius: 18px;
  margin: 0 auto 1.5rem;
  box-shadow: 0 8px 28px rgba(180,60,0,.22), 0 2px 8px rgba(0,0,0,.1);
}
.wd-eyebrow {
  font-size: .68rem;
  font-weight: 500;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: #c94010;
  margin-bottom: .75rem;
}
.wd-h1 {
  font-size: clamp(2.8rem, 6vw, 4.5rem);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.02;
  letter-spacing: -.035em;
  margin: 0 auto .85rem;
  max-width: 640px;
}
.wd-h1 em {
  font-style: normal;
  color: #c94010;
}
.wd-tagline {
  font-size: 1.05rem;
  color: var(--muted);
  font-weight: 300;
  max-width: 460px;
  margin: 0 auto 2.5rem;
  line-height: 1.65;
}
.wd-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .5rem;
}
.wd-btn {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  background: var(--navy);
  color: #fff;
  font-family: inherit;
  font-size: .88rem;
  font-weight: 500;
  padding: .8rem 1.75rem;
  border-radius: 10px;
  text-decoration: none;
  letter-spacing: .01em;
  transition: opacity .15s;
}
.wd-btn:hover { opacity: .72; }
.wd-btn-note {
  font-size: .78rem;
  color: var(--muted);
  font-weight: 300;
  letter-spacing: 0;
}

/* ---- HERO SCREENSHOT ---- */
.wd-hero-shot {
  padding: 0 3rem 4rem;
  max-width: 760px;
  margin: 0 auto;
}
.wd-hero-shot img {
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 20px 60px rgba(0,0,0,.13), 0 4px 16px rgba(0,0,0,.08);
}

/* ---- SPLIT SECTIONS (screenshot + text) ---- */
.wd-split {
  padding: 3.5rem 3rem;
  max-width: 760px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: center;
}
.wd-split.wd-rev { direction: rtl; }
.wd-split.wd-rev > * { direction: ltr; }
.wd-split-img img {
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 12px 40px rgba(0,0,0,.12), 0 2px 8px rgba(0,0,0,.07);
}
.wd-split-text {}
.wd-tag {
  font-size: .68rem;
  font-weight: 500;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: #c94010;
  margin-bottom: .6rem;
}
.wd-h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.15;
  letter-spacing: -.025em;
  margin-bottom: .85rem;
}
.wd-body-text {
  font-size: .92rem;
  color: var(--muted);
  font-weight: 300;
  line-height: 1.72;
  margin: 0;
}

/* ---- STEPS (how it works) ---- */
.wd-section {
  padding: 3.5rem 3rem;
  max-width: 760px;
  margin: 0 auto;
}
.wd-steps {
  list-style: none;
  counter-reset: s;
  margin: 1.75rem 0 0;
  padding: 0;
}
.wd-steps li {
  counter-increment: s;
  display: flex;
  gap: 1.25rem;
  padding: .9rem 0;
  border-bottom: 1px solid var(--border);
}
.wd-steps li:last-child { border-bottom: none; }
.wd-steps li::before {
  content: counter(s, decimal-leading-zero);
  font-size: .68rem;
  font-weight: 500;
  color: var(--muted);
  letter-spacing: .06em;
  padding-top: .2rem;
  flex-shrink: 0;
  min-width: 24px;
}
.wd-steps li strong {
  display: block;
  font-size: .93rem;
  font-weight: 500;
  color: var(--navy);
  margin-bottom: .18rem;
}
.wd-steps li p {
  font-size: .86rem;
  color: var(--muted);
  font-weight: 300;
  line-height: 1.55;
  margin: 0;
}
.wd-kbd {
  display: inline;
  font-family: inherit;
  font-size: .75rem;
  background: #f1f3f6;
  border: 1px solid #dde1e8;
  border-radius: 4px;
  padding: .08rem .4rem;
  color: var(--navy);
}

/* ---- FEATURES GRID ---- */
.wd-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 0;
  margin-top: 1.75rem;
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
}
.wd-feat {
  padding: 1.5rem;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.wd-feat:nth-child(3n) { border-right: none; }
.wd-feat:nth-last-child(-n+3) { border-bottom: none; }
.wd-feat-num {
  font-size: .68rem;
  font-weight: 500;
  letter-spacing: .1em;
  color: #c94010;
  margin-bottom: .5rem;
}
.wd-feat h3 {
  font-size: .9rem;
  font-weight: 500;
  color: var(--navy);
  margin-bottom: .35rem;
  line-height: 1.3;
}
.wd-feat p {
  font-size: .82rem;
  color: var(--muted);
  font-weight: 300;
  line-height: 1.55;
  margin: 0;
}

/* ---- COMPARISON TABLE ---- */
.wd-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 1.75rem;
  font-size: .88rem;
}
.wd-table thead th {
  text-align: left;
  font-size: .68rem;
  font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--muted);
  padding: .6rem 1rem;
  border-bottom: 1px solid var(--border);
  border-top: 1px solid var(--border);
}
.wd-table thead th.wd-col-a {
  color: #c94010;
  background: rgba(200,64,16,.04);
}
.wd-table tbody td {
  padding: .72rem 1rem;
  border-bottom: 1px solid var(--border);
  line-height: 1.4;
  vertical-align: middle;
}
.wd-table tbody tr:last-child td { border-bottom: none; }
.wd-table td:first-child { color: var(--navy); font-size: .87rem; }
.wd-table td.wd-col-a {
  background: rgba(200,64,16,.04);
  font-weight: 500;
}
.wd-yes { color: #16a34a; }
.wd-no { color: #dc2626; font-weight: 300; }
.wd-mid { color: var(--muted); font-weight: 300; }

/* ---- PRIVACY BOX ---- */
.wd-priv {
  display: flex;
  gap: .75rem;
  padding: 1rem 1.25rem;
  background: #f0fdf4;
  border-left: 2px solid #22c55e;
  border-radius: 0 8px 8px 0;
  margin-top: 1.5rem;
}
.wd-priv p {
  font-size: .85rem;
  color: #15803d;
  font-weight: 300;
  line-height: 1.6;
  margin: 0;
}
.wd-priv a { color: #166534; }

/* ---- PRICING ---- */
.wd-price-card {
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  margin-top: 1.75rem;
  max-width: 480px;
}
.wd-price-top {
  padding: 1.75rem 2rem 1.5rem;
  border-bottom: 1px solid var(--border);
}
.wd-trial-badge {
  display: inline-block;
  font-size: .66rem;
  font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: #c94010;
  border: 1px solid rgba(200,64,16,.28);
  background: rgba(200,64,16,.05);
  padding: .22rem .65rem;
  border-radius: 100px;
  margin-bottom: 1rem;
}
.wd-amount {
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -.04em;
  line-height: 1;
  margin-bottom: .2rem;
}
.wd-amount sup { font-size: 1.2rem; font-weight: 400; vertical-align: .7em; letter-spacing: 0; margin-left: .1em; }
.wd-period { font-size: .82rem; color: var(--muted); font-weight: 300; }
.wd-price-body { padding: 1.5rem 2rem; }
.wd-price-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem;
}
.wd-price-list li {
  display: flex;
  align-items: center;
  gap: .75rem;
  padding: .5rem 0;
  font-size: .87rem;
  color: var(--navy);
  border-bottom: 1px solid var(--border);
  font-weight: 300;
}
.wd-price-list li:last-child { border-bottom: none; }
.wd-price-list li::before {
  content: '';
  display: block;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #c94010;
  flex-shrink: 0;
}
.wd-price-note { font-size: .76rem; color: var(--muted); font-weight: 300; margin-top: .85rem; }

/* ---- FINAL CTA STRIP ---- */
.wd-final {
  padding: 4rem 3rem;
  text-align: center;
  border-top: 1px solid var(--border);
  max-width: 760px;
  margin: 0 auto;
}
.wd-final h2 {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -.03em;
  line-height: 1.1;
  margin-bottom: .75rem;
}
.wd-final p {
  font-size: .95rem;
  color: var(--muted);
  font-weight: 300;
  margin-bottom: 2rem;
  line-height: 1.6;
}

/* ---- RESPONSIVE ---- */
@media (max-width: 640px) {
  .wd-hero { padding: 3rem 1.5rem 2.5rem; }
  .wd-hero-shot { padding: 0 1.5rem 3rem; }
  .wd-split {
    grid-template-columns: 1fr;
    gap: 1.75rem;
    padding: 2.5rem 1.5rem;
    direction: ltr;
  }
  .wd-split.wd-rev { direction: ltr; }
  .wd-section { padding: 2.5rem 1.5rem; }
  .wd-grid { grid-template-columns: 1fr; }
  .wd-feat { border-right: none; }
  .wd-feat:nth-child(3n) { border-right: none; }
  .wd-feat:nth-last-child(-n+3) { border-bottom: 1px solid var(--border); }
  .wd-feat:last-child { border-bottom: none; }
  .wd-table thead th, .wd-table tbody td { padding: .6rem .65rem; font-size: .8rem; }
  .wd-price-top, .wd-price-body { padding-left: 1.5rem; padding-right: 1.5rem; }
  .wd-final { padding: 3rem 1.5rem; }
}

/* ---- FOOTER (override link styles) ---- */
.wd-footer-links {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  flex-wrap: wrap;
}
.wd-footer-links p { font-size: .78rem; color: var(--muted); font-weight: 300; }
.wd-footer-link {
  font-size: .78rem;
  color: var(--muted);
  text-decoration: none;
  font-weight: 300;
  transition: color .12s;
}
.wd-footer-link:hover { color: var(--navy); }

/* ---- PRICING btn override ---- */
.wd-btn-wide {
  width: 100%;
  justify-content: center;
  box-sizing: border-box;
}
