:root {
  --bg: #fffaf1;
  --bg-soft: #ffe9bf;
  --ink: #172033;
  --ink-muted: #4d5a70;
  --brand: #ff9900;
  --brand-deep: #ff6a00;
  --card: rgba(255, 255, 255, 0.78);
  --line: rgba(23, 32, 51, 0.12);
  --success: #167d46;
}

/* Skip navigation — accessibility */
.skip-nav {
  position: absolute;
  top: -100px;
  right: 0;
  background: var(--brand);
  color: var(--ink);
  padding: 8px 16px;
  border-radius: 0 0 8px 8px;
  font-weight: 700;
  text-decoration: none;
  z-index: 99999;
  transition: top 200ms;
}
.skip-nav:focus { top: 0; }

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  font-family: "Heebo", "Segoe UI", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 10% 10%, #fff2d9 0%, rgba(255, 242, 217, 0) 36%),
    radial-gradient(circle at 90% 0%, #ffe6d5 0%, rgba(255, 230, 213, 0) 34%),
    var(--bg);
  min-height: 100%;
}

.bg-glow {
  position: fixed;
  z-index: -1;
  width: 440px;
  height: 440px;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.35;
}

.bg-glow-a {
  background: #ffc36a;
  top: -120px;
  right: -120px;
}

.bg-glow-b {
  background: #ff9e80;
  bottom: -160px;
  left: -120px;
}

/* ===========================
   FIXED SITE HEADER
   =========================== */

#fixed-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9999;
}

.topbar-outer {
  display: flex;
  justify-content: center;
  padding: 10px 4vw;
}

/* ===========================
   TOPBAR / NAV
   =========================== */

.topbar {
  position: relative;
  width: min(1140px, 100%);
  padding: 10px 16px;
  border: 1px solid var(--line);
  border-radius: 14px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  backdrop-filter: blur(12px);
  background: rgba(255, 255, 255, 0.92);
  transition: box-shadow 200ms ease;
}

.topbar.scrolled {
  box-shadow: 0 8px 32px rgba(23, 32, 51, 0.1);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: "Rubik", sans-serif;
  font-weight: 700;
  text-decoration: none;
  color: var(--ink);
}

.brand-logo-img {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  object-fit: cover;
}

.topbar nav {
  display: inline-flex;
  gap: 18px;
}

.topbar a {
  color: var(--ink);
  text-decoration: none;
  font-weight: 500;
}

.topbar nav a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
}

.nav-cta {
  white-space: nowrap;
}

.nav-cta-group {
  display: flex;
  gap: 8px;
  align-items: center;
  white-space: nowrap;
}

.btn-outline {
  background: #fff;
  color: var(--ink);
  border: 1.5px solid var(--line);
}

.btn-outline:hover {
  border-color: var(--brand);
  color: var(--brand-deep);
}

/* ===========================
   BUTTONS
   =========================== */

.btn {
  display: inline-block;
  padding: 12px 18px;
  border-radius: 12px;
  text-decoration: none;
  border: 1px solid var(--line);
  font-weight: 700;
  font-family: "Heebo", sans-serif;
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
  min-height: 44px;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: linear-gradient(135deg, var(--brand), var(--brand-deep));
  color: var(--ink);
  border: none;
  box-shadow: 0 10px 25px rgba(255, 153, 0, 0.33);
}

.btn-primary:hover {
  box-shadow: 0 14px 30px rgba(255, 153, 0, 0.45);
}

.btn-ghost {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.65);
}

.btn-sm {
  padding: 8px 14px;
  font-size: 0.88rem;
  border-radius: 10px;
  min-height: 44px;
}

.btn-xl {
  padding: 16px 28px;
  font-size: 1.1rem;
  border-radius: 14px;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  line-height: 1.2;
}

.btn-xl small {
  font-weight: 400;
  font-size: 0.76rem;
  opacity: 0.82;
}

/* ===========================
   MAIN LAYOUT
   =========================== */

main {
  width: min(1140px, 92vw);
  margin: 130px auto 56px;
}

/* ===========================
   HERO
   =========================== */

.hero {
  display: grid;
  gap: 32px;
  align-items: stretch;
  grid-template-columns: 1.15fr 1fr;
}

.eyebrow {
  display: inline-block;
  margin: 0 0 12px;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 0.88rem;
  background: #fff2cf;
  border: 1px solid #ffd37b;
}

.hero h1 {
  margin: 0;
  line-height: 1.1;
  font-family: "Rubik", sans-serif;
  font-weight: 800;
  font-size: clamp(2rem, 4vw, 3.3rem);
}

.hero h1 span {
  color: var(--brand-deep);
}

.lead {
  margin: 16px 0 0;
  color: var(--ink-muted);
  font-size: 0.82rem;
  max-width: 90ch;
  line-height: 1.6;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 18px 0 0;
}

.badge {
  display: inline-block;
  padding: 5px 12px;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 500;
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid var(--line);
}

.cta-row {
  margin-top: 14px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}

.cta-microcopy {
  margin: 8px 0 0;
  font-size: 0.8rem;
  color: var(--ink-muted);
}

/* How it works tabs */
.how-tabs {
  display: flex;
  gap: 10px;
  justify-content: center;
  margin-bottom: 28px;
}

.how-tab {
  padding: 10px 24px;
  min-height: 44px;
  border-radius: 999px;
  border: 1.5px solid var(--line);
  background: rgba(255,255,255,0.7);
  color: var(--ink);
  font-family: "Heebo", sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 160ms ease;
}

.how-tab.active {
  background: linear-gradient(135deg, var(--brand), var(--brand-deep));
  color: var(--ink);
  border-color: transparent;
  box-shadow: 0 6px 18px rgba(255,153,0,0.3);
}

.how-tab:not(.active):hover {
  border-color: var(--brand);
}

.cta-buttons-wrap {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.cta-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}

.cta-platforms {
  margin: 0;
  font-size: 0.8rem;
  color: var(--ink-muted);
  text-align: center;
}

/* Pricing strip */
.pricing-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 18px;
  padding: 14px 20px;
  background: rgba(255, 153, 0, 0.08);
  border: 1.5px solid rgba(255, 153, 0, 0.3);
  border-radius: 12px;
  text-align: center;
}
.pricing-strip-icon { font-size: 1.4rem; }
.pricing-strip-text strong {
  font-family: "Rubik", sans-serif;
  font-size: 0.95rem;
  color: var(--ink);
  display: block;
  margin-bottom: 2px;
}
.pricing-strip-text span {
  font-size: 0.82rem;
  color: var(--ink-muted);
}

/* Security bar */
.security-bar {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 16px;
  padding: 12px 20px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid var(--line);
  border-radius: 12px;
}
.security-item {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 0.88rem;
  color: var(--ink-muted);
  font-weight: 500;
}
.security-item span { font-size: 1rem; }

/* Eyebrow row */
.eyebrow-row {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin: 0 0 12px;
  justify-content: center;
}

.eyebrow-row .eyebrow {
  margin: 0;
}

.eyebrow--web {
  background: #fff2cf;
  border-color: #ffd37b;
  color: var(--ink);
}

/* Web version promo strip */
.web-version-promo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 14px;
  padding: 12px 16px;
  border-radius: 14px;
  background: linear-gradient(135deg, #fff8ee, #fff3e0);
  border: 1.5px solid var(--brand);
  text-decoration: none;
  color: var(--ink);
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.web-version-promo:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 153, 0, 0.22);
}

.web-version-new {
  background: linear-gradient(135deg, var(--brand), var(--brand-deep));
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 999px;
  white-space: nowrap;
}

.web-version-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
  flex: 1;
}

.web-version-text strong {
  font-size: 0.95rem;
}

.web-version-text small {
  font-size: 0.78rem;
  color: var(--ink-muted);
}

.web-version-arrow {
  font-size: 1.1rem;
  color: var(--brand-deep);
  font-weight: 700;
}

.stats-row {
  display: flex;
  align-items: center;
  gap: 0;
  margin-top: 24px;
  padding: 14px 20px;
  background: rgba(255, 255, 255, 0.65);
  border-radius: 14px;
  border: 1px solid var(--line);
}

.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  flex: 1;
  padding: 0 8px;
}

.stat-number {
  display: flex;
  align-items: baseline;
  gap: 1px;
}

.stat-number strong {
  font-size: 1.6rem;
  font-family: "Rubik", sans-serif;
  font-weight: 800;
  color: var(--brand-deep);
  line-height: 1;
}

.stat-number span {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--brand-deep);
}

.stat p {
  margin: 5px 0 0;
  font-size: 0.8rem;
  color: var(--ink-muted);
}

.stat-divider {
  width: 1px;
  height: 38px;
  background: var(--line);
  flex-shrink: 0;
}

/* ===========================
   HERO VISUALS
   =========================== */

.hero-visuals {
  display: flex;
  flex-direction: column;
  gap: 14px;
  justify-content: space-between;
}

.hero-app-card {
  background: linear-gradient(145deg, #fff6e8, #ffe4c4);
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 22px 48px rgba(80, 52, 10, 0.13);
}

.hero-app-card img {
  width: 100%;
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: 14px;
  object-fit: contain;
}

.app-mockup-img {
  border-radius: 14px;
  box-shadow: 0 8px 32px rgba(80, 52, 10, 0.18);
}

/* ===========================
   EMAIL PREVIEW MOCKUP
   =========================== */

.email-preview-img {
  max-width: 520px;
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.13);
  display: block;
}

/* ===========================
   TRUST BAR
   =========================== */

.trust-bar {
  margin-top: 28px;
  display: flex;
  align-items: stretch;
  background: #172033;
  border-radius: 14px;
  overflow: hidden;
}

.trust-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: #f0f4ff;
  padding: 14px 20px;
  font-size: 0.88rem;
  font-weight: 500;
  flex: 1;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.trust-item:first-child {
  border-right: none;
}

.trust-icon {
  font-size: 1.15rem;
  flex-shrink: 0;
}

/* ===========================
   PAIN SECTION
   =========================== */

.pain-section {
  background: linear-gradient(135deg, #fff8ee, #fff0d9);
  border: 1px solid #ffd99a;
  border-radius: 20px;
  padding: 44px 48px;
  text-align: center;
}

.pain-section h2 {
  margin: 0 0 14px;
}

.pain-text {
  max-width: 56ch;
  margin: 0 auto 28px;
  color: var(--ink-muted);
  line-height: 1.75;
  font-size: 1.05rem;
}

.pain-text strong {
  color: var(--ink);
}

/* ===========================
   SECTION COMMON
   =========================== */

.section {
  margin-top: 56px;
}

.section h2 {
  margin: 0 0 20px;
  font-family: "Rubik", sans-serif;
  font-size: clamp(1.5rem, 2.4vw, 2.1rem);
}

/* ===========================
   FEATURES GRID
   =========================== */

.grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
}

.card {
  flex: 0 1 calc((100% - 28px) / 3);
  min-width: 250px;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 20px 18px;
}

.card-icon {
  font-size: 1.75rem;
  margin-bottom: 10px;
  line-height: 1;
}

.card h3 {
  margin: 0 0 8px;
  font-size: 1.05rem;
  line-height: 1.3;
}

.card p {
  margin: 0;
  color: var(--ink-muted);
  font-size: 0.92rem;
  line-height: 1.55;
}

/* ===========================
   HOW IT WORKS
   =========================== */

.timeline {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 12px;
}

.timeline li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px;
  border-radius: 14px;
  background: var(--card);
  border: 1px solid var(--line);
}

.timeline span {
  min-width: 44px;
  min-height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brand), var(--brand-deep));
  color: white;
  display: inline-grid;
  place-items: center;
  font-weight: 700;
  font-size: 1rem;
  flex-shrink: 0;
}

.timeline li > div {
  flex: 1;
  padding-top: 4px;
}

.timeline li > div strong {
  display: block;
  font-size: 1rem;
  margin-bottom: 5px;
  font-weight: 700;
}

.timeline li > div p {
  margin: 0;
  color: var(--ink-muted);
  font-size: 0.9rem;
  line-height: 1.55;
}

/* ===========================
   TESTIMONIALS
   =========================== */

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.testimonial-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 22px 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.testimonial-stars {
  font-size: 1rem;
  letter-spacing: 1px;
}

.testimonial-text {
  margin: 0;
  color: var(--ink);
  font-size: 0.95rem;
  line-height: 1.65;
  flex: 1;
}

.testimonial-author {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--ink-muted);
  border-top: 1px solid var(--line);
  padding-top: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}

/* ===========================
   FAQ
   =========================== */

.faq-list {
  display: grid;
  gap: 10px;
}

.faq-item {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
}

.faq-item summary {
  padding: 16px 20px;
  cursor: pointer;
  font-weight: 700;
  font-size: 0.98rem;
  list-style: none;
  display: flex;
  align-items: center;
  gap: 12px;
  user-select: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  margin-right: auto;
  font-size: 1.3rem;
  font-weight: 300;
  color: var(--brand);
  line-height: 1;
  flex-shrink: 0;
}

.faq-item[open] summary::after {
  content: "−";
}

.faq-body {
  padding: 0 20px 18px;
}

.faq-body p {
  margin: 0;
  color: var(--ink-muted);
  line-height: 1.7;
  font-size: 0.93rem;
}

/* ===========================
   DOWNLOAD SECTION
   =========================== */

.download-section {
  background: linear-gradient(145deg, #172033 0%, #1e2d48 100%);
  border-radius: 24px;
  color: #fff;
  text-align: center;
  padding: 72px 40px;
}

.download-inner {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}

.choose-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  width: 100%;
  margin-top: 28px;
}

.choose-card {
  position: relative;
  border-radius: 18px;
  padding: 28px 22px 22px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 12px;
}

.choose-card--web {
  background: rgba(255,255,255,0.1);
  border: 2px solid var(--brand);
  box-shadow: 0 8px 28px rgba(255,153,0,0.2);
}

.choose-card--win {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.15);
}

.choose-card-badge {
  position: absolute;
  top: -13px;
  right: 50%;
  transform: translateX(50%);
  background: linear-gradient(135deg, var(--brand), var(--brand-deep));
  color: var(--ink);
  font-size: 0.76rem;
  font-weight: 700;
  padding: 4px 14px;
  border-radius: 999px;
  white-space: nowrap;
  box-shadow: 0 4px 12px rgba(255,153,0,0.35);
}

.choose-card-icon {
  font-size: 2rem;
}

.choose-card h3 {
  margin: 0;
  color: #fff;
  font-family: "Rubik", sans-serif;
  font-size: 1.1rem;
}

.choose-card-perks {
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.75);
  text-align: right;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.choose-card .btn-outline {
  background: transparent;
  border-color: rgba(255,255,255,0.35);
  color: #fff;
}

.choose-card .btn-outline:hover {
  border-color: #fff;
}

.download-badge {
  display: inline-block;
  background: rgba(255, 153, 0, 0.18);
  border: 1px solid rgba(255, 153, 0, 0.4);
  color: #ffb84d;
  border-radius: 999px;
  padding: 6px 18px;
  font-size: 0.86rem;
  font-weight: 700;
  margin-bottom: 18px;
  letter-spacing: 0.02em;
}

.download-section h2 {
  color: #fff;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  margin: 0 0 12px;
  font-family: "Rubik", sans-serif;
}

.download-lead {
  color: rgba(255, 255, 255, 0.65);
  margin: 0 0 32px;
  font-size: 1.05rem;
  line-height: 1.6;
}

.btn-download-big {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  padding: 20px 48px;
  font-size: 1.25rem;
  font-weight: 800;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--brand), var(--brand-deep));
  color: #fff;
  text-decoration: none;
  border: none;
  box-shadow: 0 18px 44px rgba(255, 153, 0, 0.42);
  transition: transform 160ms ease, box-shadow 160ms ease;
  margin-bottom: 24px;
  cursor: pointer;
  font-family: "Heebo", sans-serif;
}

.btn-download-big:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 56px rgba(255, 153, 0, 0.54);
}

.btn-download-big small {
  font-size: 0.78rem;
  font-weight: 400;
  opacity: 0.82;
}

.download-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 14px;
  justify-content: center;
  font-size: 0.83rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.8;
}

/* ===========================
   CONTACT FORM
   =========================== */

.contact-form {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 18px;
  display: grid;
  gap: 10px;
}

.contact-form label {
  font-weight: 700;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 10px 12px;
  font: inherit;
  background: rgba(255, 255, 255, 0.9);
  color: var(--ink);
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: rgba(255, 153, 0, 0.75);
  box-shadow: 0 0 0 3px rgba(255, 153, 0, 0.15);
}

.contact-form .btn {
  justify-self: start;
}

.contact-form-compact {
  width: min(980px, 100%);
  margin-inline: auto;
  padding: 14px;
  gap: 8px;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(220px, 1fr) minmax(320px, 1.3fr);
  gap: 14px;
  align-items: start;
}

.contact-side {
  display: grid;
  gap: 8px;
  align-content: start;
}

.contact-form-compact input,
.contact-form-compact textarea {
  padding: 8px 10px;
  border-radius: 14px;
}

.contact-form-compact textarea {
  min-height: 220px;
}

.contact-form-compact .btn {
  padding: 9px 14px;
}

.contact-status {
  margin: 0;
  font-size: 0.92rem;
  color: var(--ink-muted);
}

.legal-note {
  margin: 0 0 10px;
  color: var(--ink-muted);
}

.legal-note a {
  color: #0b57d0;
  font-weight: 700;
  text-decoration: none;
}

.legal-note a:hover {
  text-decoration: underline;
}

/* ===========================
   DISCLOSURE
   =========================== */

.disclosure-box {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 18px;
}

.disclosure-box p {
  margin: 0;
  color: var(--ink-muted);
  line-height: 1.7;
}

.disclosure-box p + p {
  margin-top: 12px;
}

/* ===========================
   GUIDE PAGE
   =========================== */

.nav-active {
  color: var(--brand-deep) !important;
  font-weight: 700;
}

.guide-hero {
  grid-template-columns: 1.2fr 1fr;
}

.guide-steps {
  display: grid;
  gap: 20px;
  margin-top: 16px;
}

.guide-step {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 24px;
}

.guide-step-header {
  display: flex;
  gap: 18px;
  align-items: flex-start;
}

.guide-step:not(.guide-step-with-img) {
  display: flex;
  gap: 18px;
  align-items: flex-start;
}

.guide-step-num {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brand), var(--brand-deep));
  color: #fff;
  display: grid;
  place-items: center;
  font-family: "Rubik", sans-serif;
  font-size: 1.15rem;
  font-weight: 800;
  flex-shrink: 0;
}

.guide-step-body {
  flex: 1;
}

.guide-step-body strong {
  display: block;
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.guide-step-body p {
  margin: 0 0 8px;
  color: var(--ink-muted);
  font-size: 0.93rem;
  line-height: 1.6;
}

.guide-step-body p:last-child {
  margin-bottom: 0;
}

.guide-list {
  margin: 8px 0;
  padding-right: 18px;
  color: var(--ink-muted);
  font-size: 0.93rem;
  line-height: 1.8;
}

.guide-list li {
  margin-bottom: 2px;
}

.guide-tip {
  margin-top: 10px !important;
  padding: 10px 14px;
  background: rgba(255, 153, 0, 0.08);
  border-right: 3px solid var(--brand);
  border-radius: 0 8px 8px 0;
  font-size: 0.85rem !important;
  color: var(--ink-muted);
}

.guide-step-img {
  margin-top: 18px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
  max-width: 460px;
  width: 100%;
  height: auto;
  display: block;
}

@media (max-width: 680px) {
  .guide-step-header {
    flex-direction: column;
    gap: 12px;
  }

  .guide-step:not(.guide-step-with-img) {
    flex-direction: column;
    gap: 12px;
  }

  .guide-step-img {
    max-width: 100%;
  }
}

/* ===========================
   REVEAL ANIMATION
   =========================== */

.reveal {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 440ms ease, transform 440ms ease;
}

.reveal.in {
  opacity: 1;
  transform: none;
}

/* ===========================
   FOOTER
   =========================== */

footer {
  width: min(1140px, 92vw);
  margin: 0 auto 24px;
  padding-top: 10px;
}

.footer-topbar {
  margin: 0;
  justify-content: space-between;
  position: static;
}

.footer-links {
  display: flex;
  gap: 18px;
}

.footer-links a {
  color: var(--ink-muted);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
}

.footer-links a:hover {
  color: var(--ink);
}

.footer-copy {
  text-align: center;
  color: var(--ink-muted);
  font-size: 0.8rem;
  margin: 14px 0 0;
}

/* ===========================
   FLOATING MOBILE CTA
   =========================== */

.floating-cta {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%) translateY(120px);
  z-index: 200;
  transition: transform 320ms cubic-bezier(0.34, 1.56, 0.64, 1);
  pointer-events: none;
  display: none;
}

.floating-cta.visible {
  transform: translateX(-50%) translateY(0);
  pointer-events: auto;
}

.floating-cta .btn {
  white-space: nowrap;
  padding: 14px 28px;
  font-size: 1rem;
  border-radius: 999px;
  box-shadow: 0 12px 36px rgba(255, 153, 0, 0.5), 0 2px 8px rgba(0, 0, 0, 0.15);
}

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

@media (max-width: 980px) {
  .hero {
    grid-template-columns: 1fr;
    align-items: center;
  }

  .hero-visuals {
    flex-direction: row;
    gap: 12px;
    justify-content: center;
  }

  .hero-app-card {
    flex: 1;
  }

  .email-preview-img {
    flex: 1.2;
  }

  .grid {
    gap: 12px;
  }

  .testimonials-grid {
    grid-template-columns: 1fr 1fr;
  }

  .trust-bar {
    flex-wrap: wrap;
  }

  .trust-item {
    flex: 1 1 calc(50% - 1px);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-right: none;
  }

  .trust-item:nth-child(even) {
    border-right: 1px solid rgba(255, 255, 255, 0.1);
  }

  .trust-item:nth-child(1),
  .trust-item:nth-child(2) {
    border-top: none;
  }

  .pain-section {
    padding: 32px 24px;
  }

  .download-section {
    padding: 48px 24px;
  }
}

@media (max-width: 680px) {
  .topbar {
    flex-direction: column;
    gap: 10px;
    top: 8px;
  }

  .topbar nav {
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px 16px;
  }

  .nav-cta {
    display: none;
  }

  .card {
    flex: 0 1 100%;
  }

  .hero-visuals {
    flex-direction: column;
    justify-content: center;
  }

  .stats-row {
    gap: 0;
    padding: 12px 8px;
  }

  .stat-divider {
    display: none;
  }

  .trust-item {
    flex: 1 1 100%;
    border-right: none !important;
    border-top: 1px solid rgba(255, 255, 255, 0.1) !important;
  }

  .trust-item:first-child {
    border-top: none !important;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .contact-layout {
    grid-template-columns: 1fr;
  }

  .download-section {
    padding: 40px 20px;
  }

  .btn-download-big {
    padding: 16px 32px;
    font-size: 1.1rem;
  }

  .floating-cta {
    display: block;
  }
}

/* ===========================
   URGENCY BAR
   =========================== */

.urgency-bar {
  background: linear-gradient(90deg, var(--brand-deep), var(--brand));
  color: #fff;
  text-align: center;
  padding: 10px 20px;
  font-size: 0.88rem;
  font-weight: 500;
  line-height: 1.5;
}

.urgency-bar strong {
  font-weight: 800;
}

.urgency-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  background: #fff;
  border-radius: 50%;
  margin-left: 8px;
  vertical-align: middle;
  animation: blink-dot 1.8s ease-in-out infinite;
}

@keyframes blink-dot {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.25; }
}

/* ===========================
   PAIN COMPARISON
   =========================== */

.pain-comparison {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  max-width: 480px;
  margin: 24px auto 28px;
  text-align: right;
}

.pain-col {
  border-radius: 14px;
  padding: 16px 18px;
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.pain-bad {
  background: rgba(220, 38, 38, 0.07);
  border: 1px solid rgba(220, 38, 38, 0.22);
}

.pain-good {
  background: rgba(22, 125, 70, 0.07);
  border: 1px solid rgba(22, 125, 70, 0.22);
}

.pain-col-label {
  font-weight: 800;
  font-size: 0.88rem;
  margin-bottom: 4px;
}

.pain-col-item {
  font-size: 0.88rem;
  color: var(--ink-muted);
}

.pain-highlight-bad strong { color: #dc2626; }
.pain-highlight-good strong { color: #16a34a; }

.pain-col-total {
  font-weight: 800;
  font-size: 1rem;
  margin-top: 4px;
  padding-top: 8px;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.pain-bad .pain-col-total  { color: #dc2626; }
.pain-good .pain-col-total { color: #16a34a; }

/* ===========================
   TESTIMONIAL AVATARS
   =========================== */

.testimonial-avatar {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  font-size: 0.95rem;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
}

/* ===========================
   DOWNLOAD STEPS
   =========================== */

.dl-steps {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin: -8px 0 28px;
  flex-wrap: wrap;
}

.dl-step {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.65);
}

.dl-step span {
  display: inline-grid;
  place-items: center;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(255, 153, 0, 0.45);
  color: #fff;
  font-size: 0.68rem;
  font-weight: 700;
  flex-shrink: 0;
}

.dl-sep {
  color: rgba(255, 255, 255, 0.25);
  font-size: 1rem;
  user-select: none;
}

/* ===========================
   DOWNLOAD USERS BADGE
   =========================== */

.download-users-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.86rem;
  margin-bottom: 16px;
}

.users-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #4ade80;
  animation: blink-dot 1.8s ease-in-out infinite;
  flex-shrink: 0;
}

/* ===========================
   DOWNLOAD BUTTON GLOW + PULSE
   =========================== */

@keyframes ring-pulse {
  0%   { transform: scale(1);    opacity: 0.5; }
  70%  { transform: scale(1.18); opacity: 0; }
  100% { transform: scale(1.18); opacity: 0; }
}

.btn-download-big {
  position: relative;
}

.btn-download-big::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 18px;
  border: 2px solid var(--brand);
  animation: ring-pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
  pointer-events: none;
}

.btn-download-big::after {
  content: "";
  position: absolute;
  inset: -5px;
  border-radius: 23px;
  background: linear-gradient(135deg, var(--brand), var(--brand-deep));
  opacity: 0;
  z-index: -1;
  animation: btn-glow 3s ease-in-out infinite;
}

@keyframes btn-glow {
  0%, 100% { opacity: 0;    transform: scale(1); }
  50%       { opacity: 0.22; transform: scale(1.05); }
}

/* ===========================
   FOOTER TOPBAR RESET
   =========================== */

.footer-topbar {
  position: static;
  width: 100%;
  margin: 0;
  justify-content: space-between;
}

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

@media (max-width: 680px) {
  .pain-comparison {
    grid-template-columns: 1fr;
    max-width: 300px;
  }
}

/* ===========================
   MOBILE — NEW ELEMENTS
   =========================== */

@media (max-width: 980px) {
  .choose-cards {
    grid-template-columns: 1fr;
  }

  .how-tabs {
    flex-wrap: wrap;
  }
}

@media (max-width: 680px) {
  /* Nav — hide cta group, show floating CTA */
  .nav-cta-group {
    display: none;
  }

  /* Hero CTA buttons — stack vertically */
  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .cta-buttons .btn {
    width: 100%;
    max-width: 320px;
    justify-content: center;
  }

  /* Eyebrow row — wrap */
  .eyebrow-row {
    flex-direction: column;
    gap: 6px;
  }

  /* How tabs */
  .how-tab {
    flex: 1;
    text-align: center;
    padding: 10px 12px;
    font-size: 0.88rem;
  }

  /* Choose cards (download section) */
  .choose-cards {
    grid-template-columns: 1fr;
  }

  /* cta-platforms */
  .cta-platforms {
    font-size: 0.75rem;
  }

  /* cta-buttons-wrap full width */
  .cta-buttons-wrap {
    width: 100%;
    align-items: center;
  }
}

/* ===== Alert Modal ===== */
@keyframes alertFadeIn {
  from { opacity: 0; transform: translateY(-16px); }
  to   { opacity: 1; transform: translateY(0); }
}

.alert-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(23, 32, 51, 0.55);
  backdrop-filter: blur(4px);
  padding: 1rem;
  direction: rtl;
}

.alert-modal.hidden {
  display: none;
}

.alert-modal__box {
  background: var(--card, #fff);
  border-radius: 16px;
  box-shadow: 0 8px 40px rgba(23, 32, 51, 0.22);
  padding: 2.5rem 2.25rem 2rem;
  max-width: 480px;
  width: 100%;
  text-align: center;
  animation: alertFadeIn 0.28s ease both;
}

.alert-modal__text {
  font-family: 'Heebo', sans-serif;
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--ink, #172033);
  margin: 0 0 1.5rem;
}

.alert-modal__btn {
  display: inline-block;
  background: linear-gradient(135deg, var(--brand, #ff9900), var(--brand-deep, #ff6a00));
  color: #fff;
  font-family: 'Heebo', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  border: none;
  border-radius: 50px;
  padding: 0.65rem 2.2rem;
  cursor: pointer;
  transition: opacity 0.2s;
}

.alert-modal__btn:hover {
  opacity: 0.88;
}

.alert-modal__btn--link {
  display: inline-block;
  text-decoration: none;
}

.alert-modal__divider {
  border: none;
  border-top: 1px solid rgba(23, 32, 51, 0.12);
  margin: 1.5rem 0;
}

/* ===========================
   MOBILE FULL RESPONSIVENESS
   =========================== */

@media (max-width: 980px) {
  /* Tablet: nav might get crowded — shrink gaps */
  .topbar nav {
    gap: 12px;
  }

  .nav-cta-group {
    gap: 6px;
  }

  /* Guide hero single column on tablet */
  .guide-hero {
    grid-template-columns: 1fr;
  }

  .guide-hero .hero-visuals {
    display: none;
  }
}

@media (max-width: 680px) {
  /* Topbar stacks vertically → header gets taller → push main down */
  main {
    margin-top: 230px;
  }

  /* Slightly smaller nav links to fit better */
  .topbar nav a {
    font-size: 0.85rem;
  }

  /* Section vertical spacing tighter on mobile */
  .section {
    margin-top: 40px;
  }

  /* Hero padding */
  .hero {
    gap: 24px;
  }

  /* Pain section */
  .pain-section {
    padding: 28px 16px;
  }

  /* Download section tighter */
  .download-section {
    padding: 36px 16px;
    border-radius: 16px;
  }

  .download-lead {
    font-size: 0.95rem;
  }

  /* Choose cards inner padding */
  .choose-card {
    padding: 22px 14px 18px;
  }

  /* Stats row — smaller numbers */
  .stat-number strong {
    font-size: 1.3rem;
  }

  /* Footer stacked */
  .footer-topbar {
    flex-direction: column;
    gap: 10px;
    align-items: center;
    text-align: center;
  }

  .footer-links {
    justify-content: center;
  }

  /* Btn xl full width in choose-card */
  .choose-card .btn-xl {
    width: 100%;
    justify-content: center;
  }

  /* Urgency bar smaller text */
  .urgency-bar {
    font-size: 0.78rem;
    padding: 8px 14px;
  }

  /* Mobile font sizes — min 14px (0.875rem) per accessibility audit */
  .btn-xl small,
  .cta-microcopy,
  .cta-platforms,
  .stat p,
  .testimonial-author,
  .footer-copy,
  .badge { font-size: 0.875rem; }

  /* Body base font 16px on mobile */
  body { font-size: 16px; }

  /* CTA buttons — full width column on mobile */
  .cta-buttons {
    flex-direction: column;
    width: 100%;
  }
  .cta-buttons .btn-xl {
    width: 100%;
    justify-content: center;
    min-height: 56px;
  }
  .pricing-strip {
    flex-direction: column;
    gap: 8px;
  }
}

/* ===========================
   BLOG ARTICLE
   =========================== */

.blog-hero {
  background: linear-gradient(160deg, var(--bg-soft) 0%, var(--bg) 100%);
  border-bottom: 1px solid var(--line);
  padding: 72px 24px 28px;
  text-align: center;
}

.blog-hero-inner {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.blog-hero .lead {
  margin-inline: auto;
  text-align: center;
}

.blog-breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: 0.82rem;
  color: var(--ink-muted);
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.blog-breadcrumb a {
  color: var(--ink-muted);
  text-decoration: none;
}

.blog-breadcrumb a:hover {
  color: var(--brand);
}

.blog-hero h1 {
  font-family: "Rubik", "Heebo", sans-serif;
  font-weight: 800;
  font-size: clamp(1.7rem, 3.5vw, 2.6rem);
  color: var(--ink);
  line-height: 1.3;
  margin: 12px 0 16px;
}

.blog-meta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 0.84rem;
  color: var(--ink-muted);
}

.blog-meta-sep {
  opacity: 0.4;
}

/* Article body */
.blog-body {
  max-width: 740px;
  margin: 0 auto;
  padding: 48px 24px 80px;
}

.blog-body section {
  margin-bottom: 40px;
}

.blog-body h2 {
  font-family: "Rubik", "Heebo", sans-serif;
  font-weight: 700;
  font-size: clamp(1.15rem, 2vw, 1.45rem);
  color: var(--ink);
  margin: 0 0 14px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--brand);
  display: inline-block;
}

.blog-body h3 {
  font-family: "Heebo", sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: var(--ink);
  margin: 20px 0 8px;
}

.blog-body h4 {
  font-size: 0.93rem;
  font-weight: 700;
  margin: 0 0 10px;
}

.blog-body p {
  font-size: 1rem;
  line-height: 1.85;
  color: var(--ink);
  margin: 0 0 14px;
}

.blog-body ul {
  margin: 8px 0 16px 0;
  padding-inline-start: 22px;
}

.blog-body ul li {
  font-size: 0.97rem;
  line-height: 1.75;
  color: var(--ink);
  margin-bottom: 6px;
}

/* Tip callout */
.blog-tip {
  background: rgba(255, 153, 0, 0.08);
  border-inline-start: 4px solid var(--brand);
  border-radius: 0 10px 10px 0;
  padding: 12px 16px;
  font-size: 0.93rem !important;
  color: var(--ink-muted) !important;
  margin-top: 16px !important;
}

/* Inline link in article */
.blog-inline-link {
  color: var(--brand-deep);
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid currentColor;
}

.blog-inline-link:hover {
  color: var(--brand);
}

/* FBA vs FBM comparison */
.blog-comparison {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 20px 0;
}

.blog-comparison-col {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 18px 20px;
}

.blog-comparison-col--good {
  border-top: 3px solid var(--success);
}

.blog-comparison-col--bad {
  border-top: 3px solid #c0392b;
}

.blog-comparison-col ul {
  margin: 8px 0 0;
  padding-inline-start: 18px;
}

/* Table */
.blog-table {
  margin: 20px 0;
  overflow-x: auto;
  border-radius: 12px;
  border: 1px solid var(--line);
}

.blog-table table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.93rem;
}

.blog-table thead {
  background: var(--bg-soft);
}

.blog-table th {
  padding: 12px 18px;
  text-align: right;
  font-weight: 700;
  color: var(--ink);
  border-bottom: 1px solid var(--line);
}

.blog-table td {
  padding: 12px 18px;
  color: var(--ink);
  border-bottom: 1px solid var(--line);
}

.blog-table tbody tr:last-child td {
  border-bottom: none;
}

.blog-table tbody tr:hover {
  background: rgba(255, 153, 0, 0.04);
}

/* FAQ section */
.blog-faq {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 28px 28px 8px;
  margin-bottom: 40px;
}

.blog-faq h2 {
  border-bottom-color: var(--brand);
}

.blog-faq-item {
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
}

.blog-faq-item:last-child {
  border-bottom: none;
}

.blog-faq-q {
  font-weight: 700;
  font-size: 0.97rem !important;
  margin: 0 0 6px !important;
  color: var(--ink) !important;
}

.blog-faq-a {
  font-size: 0.93rem !important;
  color: var(--ink-muted) !important;
  margin: 0 !important;
  line-height: 1.7 !important;
}

/* CTA box at end */
.blog-cta-box {
  background: linear-gradient(135deg, #1a2540 0%, #172033 100%);
  border-radius: 16px;
  padding: 24px 28px;
  text-align: center;
  color: #fff;
  margin-top: 36px;
  box-shadow: 0 8px 32px rgba(23, 32, 51, 0.22);
}

.blog-cta-box__icon {
  font-size: 1.7rem;
  margin: 0 0 10px !important;
  line-height: 1;
}

.blog-cta-box h3 {
  font-family: "Rubik", "Heebo", sans-serif;
  font-weight: 800;
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: #fff;
  margin: 0 0 8px;
}

.blog-cta-box p {
  color: rgba(255, 255, 255, 0.78);
  margin: 0 0 18px !important;
  font-size: 0.9rem !important;
}

.blog-cta-box .btn-primary {
  background: linear-gradient(135deg, var(--brand), var(--brand-deep));
  color: var(--ink);
  box-shadow: 0 4px 20px rgba(255, 106, 0, 0.3);
}

.blog-cta-box .btn-primary:hover {
  box-shadow: 0 6px 24px rgba(255, 106, 0, 0.45);
}

/* Blog Index Grid */
.blog-index-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
  max-width: 960px;
  margin: 0 auto;
}

.blog-index-card {
  display: flex;
  flex-direction: column;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 28px;
  text-decoration: none;
  color: var(--ink);
  transition: box-shadow 0.2s, transform 0.2s, border-color 0.2s;
}

.blog-index-card:hover {
  box-shadow: 0 8px 32px rgba(255, 153, 0, 0.15);
  border-color: var(--brand);
  transform: translateY(-3px);
}

.blog-index-card__cat {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--brand-deep);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 10px;
}

.blog-index-card__title {
  font-family: "Rubik", "Heebo", sans-serif;
  font-weight: 700;
  font-size: 1.08rem;
  line-height: 1.4;
  margin: 0 0 12px;
  color: var(--ink);
}

.blog-index-card__excerpt {
  font-size: 0.9rem;
  color: var(--ink-muted);
  line-height: 1.65;
  flex: 1;
  margin: 0 0 20px;
}

.blog-index-card__footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.78rem;
  color: var(--ink-muted);
  border-top: 1px solid var(--line);
  padding-top: 14px;
}

.blog-index-card__read {
  color: var(--brand-deep);
  font-weight: 600;
}

/* Responsive */
@media (max-width: 640px) {
  .blog-hero {
    padding: 68px 16px 22px;
  }

  .blog-body {
    padding: 32px 16px 60px;
  }

  .blog-comparison {
    grid-template-columns: 1fr;
  }

  .blog-faq {
    padding: 20px 16px 4px;
  }

  .blog-cta-box {
    padding: 20px 16px;
  }
}
