:root {
  /* dark theme */
  --dark-bg: #0F1419;
  --dark-text: #F5F5F0;
  --dark-muted: #94A3B8;
  --dark-border: rgba(245,245,240,0.10);
  --dark-card-bg: rgba(245,245,240,0.03);
  /* light theme */
  --light-bg: #FFFFFF;
  --light-text: #1A1A1A;
  --light-muted: #666;
  --light-border: rgba(0,0,0,0.10);
  --light-card-bg: #FFFFFF;
  /* accents */
  --amber: #FBBF24;
  --cta: #F97316;
  --cta-hover: #EA580C;
  --success: #10B981;
  --fail: #EF4444;
  --font: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  background: var(--dark-bg);
  color: var(--dark-text);
  font-family: var(--font);
  font-size: 18px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.wrap { max-width: 1220px; margin: 0 auto; padding: 0 24px; }
.wrap-narrow { max-width: 820px; margin: 0 auto; padding: 0 24px; }

section { padding: 80px 0; }
section.tight { padding: 56px 0; }

/* section theming */
section.dark {
  background: var(--dark-bg);
  color: var(--dark-text);
  --bg: var(--dark-bg);
  --text: var(--dark-text);
  --muted: var(--dark-muted);
  --border: var(--dark-border);
  --card-bg: var(--dark-card-bg);
}
section.light {
  background: var(--light-bg);
  color: var(--light-text);
  --bg: var(--light-bg);
  --text: var(--light-text);
  --muted: var(--light-muted);
  --border: var(--light-border);
  --card-bg: var(--light-card-bg);
}

.eyebrow {
  display: block;
  text-align: center;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 14px;
}
section.light .eyebrow { color: var(--cta); }

h2.section-headline {
  text-align: center;
  font-family: var(--font);
  font-weight: 800;
  font-size: clamp(28px, 3.4vw, 42px);
  line-height: 1.15;
  letter-spacing: -0.4px;
  margin-bottom: 16px;
  color: var(--text);
}
.section-sub {
  text-align: center;
  color: var(--muted);
  font-size: clamp(17px, 1.5vw, 20px);
  max-width: 680px;
  margin: 0 auto 44px;
  line-height: 1.6;
}

/* ==================== LOGO BAR ==================== */
.logo-bar { text-align: center; padding: 12px 24px 0; background: var(--dark-bg); }
.logo-bar img { height: 28px; width: auto; margin: 0 auto; display: block; }

/* ==================== HERO (compact — everything above the fold) ==================== */
.hero { padding: 8px 24px 28px; }
.hero-inner { max-width: 1180px; margin: 0 auto; text-align: center; }
.rating-row {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 5px 14px;
  background: rgba(251,191,36,0.08);
  border: 1px solid rgba(251,191,36,0.28);
  border-radius: 100px;
  font-size: 12px;
  color: var(--dark-text);
  font-weight: 600;
  margin-top: 8px;
}
.rating-row .stars { color: var(--amber); letter-spacing: 2px; font-size: 13px; }
.rating-row .sep-dot { color: rgba(245,245,240,0.35); margin: 0 2px; }
h1.hero-headline { font-family: var(--font); font-weight: 800; font-size: clamp(28px, 3.6vw, 44px); line-height: 1.1; letter-spacing: -0.4px; margin: 10px auto 8px; max-width: 1040px; }
h1.hero-headline .accent { color: var(--amber); }
.hero-sub { font-family: var(--font); font-weight: 400; font-size: clamp(17px, 1.5vw, 20px); line-height: 1.45; color: var(--dark-text); max-width: 720px; margin: 6px auto 14px; }

/* light hero (e.g. /book-a-call/ — source hero-section is #fff) */
section.hero.light .hero-sub { color: var(--light-text); }
section.hero.light .rating-row {
  color: var(--light-text);
  background: rgba(251,191,36,0.16);
  border-color: rgba(251,191,36,0.55);
}
section.hero.light .rating-row .sep-dot { color: rgba(0,0,0,0.35); }

/* /book-a-call/ video + calendar — copied verbatim from consult.digitaltabby.com's stylesheet.
   Do not "improve" these values. The iframe's position:relative is load-bearing: it puts the
   video in the positioned paint layer so the .calendar -45px pull slides UNDER it. */
.container-28 { max-width: 1040px; margin: 0 auto; text-align: center; padding-top: 0; }
.video-book { padding-top: 0; }
.code-embed-5 { width: auto; height: auto; margin-bottom: 0; padding-top: 12px; }
/* Source uses -45px here. We use positive space instead: the -45px tucks the Calendly iframe
   under the video, and that iframe paints its own background (#FAFAFA over file://, #FFFFFF over
   http), which reads as a gray box bleeding out from behind the video. Cross-origin, so it cannot
   be styled. Space keeps it a clean separate block in every environment. */
.calendar { margin-top: 28px; }

/* video sized so headline + subhead + CTA fit above the fold */
.vsl-wrap { max-width: 940px; margin: 0 auto 18px; position: relative; }
.vsl { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; background: #000; border-radius: 6px; box-shadow: 0 30px 60px -20px rgba(0,0,0,0.55); }
.vsl iframe { position: absolute; top: 0; left: 0; width: 100%; height: 100%; border: 0; }

.cta-btn { display: inline-block; padding: 18px 48px; background: var(--cta); color: #fff; font-family: var(--font); font-size: 16px; font-weight: 700; letter-spacing: 0.4px; border-radius: 100px; border: 0; cursor: pointer; transition: background 0.15s ease, transform 0.15s ease; }
.cta-btn:hover { background: var(--cta-hover); color: #fff; transform: translateY(-1px); }
.cta-btn.large { padding: 22px 72px; font-size: 18px; }
.cta-note { margin-top: 14px; font-size: 13px; color: var(--muted); font-weight: 500; }
.cta-note .sep { display: inline-block; margin: 0 8px; opacity: 0.4; }

.hero-trust { display: none; margin: 40px auto 0; padding-top: 24px; border-top: 1px solid var(--dark-border); max-width: 900px; }
@media (min-width: 720px) { .hero-trust { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; } }
.hero-trust-item { text-align: center; padding: 0 12px; }
.hero-trust-num { font-size: 20px; font-weight: 700; color: var(--dark-text); line-height: 1.1; margin-bottom: 4px; letter-spacing: -0.2px; }
.hero-trust-label { font-size: 11px; font-weight: 600; color: var(--dark-muted); letter-spacing: 1.5px; text-transform: uppercase; }

/* ==================== CLIENT LOGOS (auto-scroll marquee) ==================== */
.logo-marquee { overflow: hidden; width: 100%; margin: 32px auto 0; mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); }
.logo-track { display: flex; gap: 72px; align-items: center; width: max-content; animation: logo-scroll 42s linear infinite; }
.logo-track img { height: 115px; max-width: 300px; width: auto; object-fit: contain; opacity: 1; flex-shrink: 0; }
.logo-marquee:hover .logo-track { animation-play-state: paused; }
@keyframes logo-scroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }

.client-logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 32px 56px;
  margin: 24px auto 0;
  max-width: 1100px;
}
.client-logos img {
  height: 56px;
  max-width: 180px;
  width: auto;
  object-fit: contain;
  opacity: 0.85;
  transition: opacity 0.2s ease;
}
.client-logos img:hover { opacity: 1; }

/* ==================== HOW IT WORKS ==================== */
.steps-grid { display: grid; grid-template-columns: 1fr; gap: 20px; margin: 32px auto 40px; max-width: 900px; }
@media (min-width: 720px) { .steps-grid { grid-template-columns: repeat(2, 1fr); } }
.step-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 24px 26px;
}
section.light .step-card { box-shadow: 0 2px 8px rgba(0,0,0,0.03); }
.step-title { font-family: var(--font); font-weight: 700; font-size: 20px; color: var(--text); margin-bottom: 10px; letter-spacing: -0.2px; }
.step-body { font-size: 16px; color: var(--muted); line-height: 1.65; }
.center-cta { text-align: center; margin-top: 8px; }

/* ==================== FOUR BIG PROBLEMS (Variant 3: big emoji left column) ==================== */
.ps { padding: 72px 0; }
.ps-wrap { max-width: 820px; margin: 0 auto; padding: 0 24px; }
.ps-headline { text-align: center; font-family: var(--font); font-weight: 800; font-size: clamp(28px, 3.4vw, 42px); line-height: 1.15; letter-spacing: -0.4px; color: #F5F5F0; margin: 0 auto 56px; padding: 0 24px; max-width: 640px; }
.ps-item { padding: 40px 0; display: grid; grid-template-columns: 88px 1fr; gap: 32px; align-items: start; }
.ps-item + .ps-item { border-top: 1px solid rgba(255,255,255,0.10); }
.item-emoji { font-size: 56px; line-height: 1; padding-top: 4px; text-align: center; }
.ps-eyebrow { display: inline-block; font-family: var(--font); font-size: 13px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; color: #FBBF24; margin-bottom: 10px; }
.ps-problem { font-family: var(--font); font-style: italic; font-weight: 400; font-size: 17px; color: #A0A6B4; margin-bottom: 24px; line-height: 1.5; }
.ps-solution { font-family: var(--font); font-weight: 800; font-size: clamp(24px, 2.6vw, 32px); color: #FFFFFF; line-height: 1.2; letter-spacing: -0.4px; margin-bottom: 14px; }
.ps-benefit { font-family: var(--font); font-size: 18px; color: #E2E5EA; line-height: 1.65; }
@media (max-width: 640px) {
  .ps-item { grid-template-columns: 1fr; gap: 12px; }
  .item-emoji { font-size: 40px; text-align: left; }
}

/* ==================== HOW IT WORKS (legacy: hairline dividers, no cards) ==================== */
.hiw-list { max-width: 820px; margin: 0 auto; }
.hiw-step { display: flex; gap: 28px; padding: 32px 0; border-bottom: 1px solid rgba(0,0,0,0.10); align-items: flex-start; }
.hiw-step:last-child { border-bottom: 0; }
.hiw-icon { font-size: 48px; flex-shrink: 0; width: 64px; line-height: 1; text-align: center; }
.hiw-title { font-family: var(--font); font-weight: 700; font-size: 24px; color: var(--text); margin-bottom: 12px; letter-spacing: -0.3px; }
.hiw-body { color: var(--text); font-size: 18px; line-height: 1.65; }
section.dark .hiw-step { border-bottom-color: rgba(255,255,255,0.10); }
section.dark .hiw-body { color: #FFFFFF; }

/* ==================== WHO THIS IS FOR ==================== */
.compare-grid { display: grid; grid-template-columns: 1fr; gap: 24px; max-width: 980px; margin: 24px auto 0; }
@media (min-width: 720px) { .compare-grid { grid-template-columns: 1fr 1fr; } }
.compare-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 28px 26px;
}
section.light .compare-card { box-shadow: 0 2px 8px rgba(0,0,0,0.03); }
.compare-card.yes { border-color: rgba(16,185,129,0.35); }
.compare-card.no { border-color: rgba(239,68,68,0.35); }
.compare-head { font-family: var(--font); font-weight: 700; font-size: 17px; margin-bottom: 18px; display: flex; align-items: center; gap: 10px; }
.compare-card.yes .compare-head { color: var(--success); }
.compare-card.no .compare-head { color: var(--fail); }
.compare-list { list-style: none; padding: 0; margin: 0; }
.compare-list li { font-size: 14px; color: var(--text); padding: 10px 0; border-bottom: 1px solid var(--border); line-height: 1.55; }
.compare-list li:last-child { border-bottom: 0; }
.compare-list li .n { color: var(--muted); font-weight: 700; margin-right: 8px; }

/* ==================== TIMELINE ==================== */
.timeline { max-width: 780px; margin: 24px auto 0; }
.tl-item { display: grid; grid-template-columns: 110px 1fr; gap: 24px; padding: 22px 0; border-bottom: 1px solid var(--border); }
.tl-item:last-child { border-bottom: 0; }
.tl-when { font-family: var(--font); font-weight: 700; font-size: 13px; color: var(--amber); letter-spacing: 1px; text-transform: uppercase; padding-top: 3px; }
section.light .tl-when { color: var(--cta); }
.tl-what { font-family: var(--font); font-weight: 600; font-size: 15px; color: var(--text); margin-bottom: 6px; line-height: 1.4; }
.tl-body { font-size: 14px; color: var(--muted); line-height: 1.6; }

/* ==================== FAQ ==================== */
.faq-list { max-width: 780px; margin: 24px auto 0; }
details.faq-item { border-bottom: 1px solid var(--border); padding: 20px 0; }
details.faq-item:last-child { border-bottom: 0; }
details.faq-item summary { cursor: pointer; list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 16px; font-family: var(--font); font-weight: 600; font-size: 20px; color: var(--text); padding: 4px 0; }
details.faq-item summary::-webkit-details-marker { display: none; }
details.faq-item summary::after { content: '+'; font-size: 30px; font-weight: 300; color: var(--muted); line-height: 1; flex-shrink: 0; }
details.faq-item[open] summary::after { content: '−'; }
details.faq-item .faq-body { margin-top: 16px; color: #333; font-size: 18px; line-height: 1.7; }
section.dark details.faq-item .faq-body { color: #FFFFFF; }

/* ==================== ABOUT ==================== */
.about-grid { display: grid; grid-template-columns: 1fr; gap: 32px; align-items: center; max-width: 960px; margin: 32px auto 0; }
@media (min-width: 720px) { .about-grid { grid-template-columns: 300px 1fr; gap: 56px; } }
.about-photo { width: 300px; height: 300px; border-radius: 50%; object-fit: cover; margin: 0 auto; border: 3px solid var(--border); }
.about-name { font-family: var(--font); font-weight: 700; font-size: 24px; color: var(--text); margin-bottom: 10px; }
.about-role { font-size: 13px; font-weight: 600; color: var(--amber); letter-spacing: 2px; text-transform: uppercase; margin-bottom: 16px; }
section.light .about-role { color: var(--cta); }
.about-body { font-family: var(--font); color: var(--text); font-size: 18px; line-height: 1.7; }
section.dark .about-body { color: #FFFFFF; }
.about-body p { margin-bottom: 14px; }
.about-body p:last-child { margin-bottom: 0; }

/* ==================== REVIEW SCREENSHOTS (full-width vertical stack, no header) ==================== */
.review-shots { display: flex; flex-direction: column; gap: 24px; max-width: 1000px; margin: 0 auto; }
.review-shots img { width: 100%; height: auto; display: block; border-radius: 8px; box-shadow: 0 6px 32px rgba(0,0,0,0.4); }

/* ==================== REVIEWS ==================== */
.reviews-grid { display: grid; grid-template-columns: 1fr; gap: 20px; margin: 32px auto 0; max-width: 1180px; }
@media (min-width: 720px) { .reviews-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .reviews-grid { grid-template-columns: repeat(3, 1fr); } }
.review-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 24px 24px 22px;
  display: flex;
  flex-direction: column;
}
.review-stars { color: var(--amber); letter-spacing: 3px; font-size: 15px; margin-bottom: 14px; }
.review-quote { color: var(--text); font-size: 14px; line-height: 1.7; margin-bottom: 20px; flex-grow: 1; }
.review-author { display: flex; align-items: center; gap: 12px; margin-top: auto; padding-top: 14px; border-top: 1px solid var(--border); }
.review-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  background: rgba(255,255,255,0.1);
}
.review-avatar.placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font);
  font-weight: 700;
  font-size: 15px;
  color: var(--dark-bg);
  background: var(--amber);
}
.review-name { font-family: var(--font); font-weight: 700; font-size: 14px; color: var(--text); line-height: 1.2; }

/* ==================== LINKEDIN TESTIMONIALS (large photo + full quote) ==================== */
.linkedin-testimonials { display: flex; flex-direction: column; gap: 28px; max-width: 900px; margin: 64px auto 0; }
.lt-card { display: flex; gap: 28px; align-items: flex-start; background: var(--card-bg); border: 1px solid var(--border); border-radius: 10px; padding: 32px; box-shadow: 0 2px 12px rgba(0,0,0,0.04); }
.lt-photo { width: 120px; height: 120px; border-radius: 50%; object-fit: cover; flex-shrink: 0; }
.lt-photo-placeholder { display: flex; align-items: center; justify-content: center; font-family: var(--font); font-weight: 700; font-size: 32px; color: var(--dark-bg); background: var(--amber); }
.lt-content { flex: 1; min-width: 0; }
.lt-stars { color: var(--amber); letter-spacing: 3px; font-size: 15px; margin-bottom: 8px; }
.lt-name { font-family: var(--font); font-weight: 700; font-size: 18px; color: var(--text); margin-bottom: 14px; }
.lt-quote { color: var(--text); font-size: 15px; line-height: 1.7; }
@media (max-width: 640px) {
  .lt-card { flex-direction: column; align-items: center; text-align: center; padding: 24px; }
  .lt-photo { width: 100px; height: 100px; }
}

/* ==================== CALENDAR EMBED ==================== */
.cal-wrap { max-width: 900px; margin: 32px auto 0; }
.cal-embed { width: 100%; min-height: 720px; border: 0; border-radius: 8px; background: #fff; }

/* ==================== FOOTER ==================== */
footer { padding: 36px 24px 44px; text-align: center; border-top: 1px solid var(--dark-border); background: var(--dark-bg); color: var(--dark-muted); }
.footer-mark { font-size: 12px; color: var(--dark-muted); margin-bottom: 8px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; }
.footer-meta { font-size: 12px; color: var(--dark-muted); }
.footer-meta a { color: var(--dark-muted); }
.footer-meta a:hover { color: var(--dark-text); }

/* ==================== MOBILE ==================== */
@media (max-width: 640px) {
  section { padding: 56px 0; }
  section.tight { padding: 44px 0; }
  .hero { padding: 16px 20px 44px; }
  .cta-btn { padding: 14px 32px; font-size: 14px; }
  .tl-item { grid-template-columns: 1fr; gap: 6px; }
  .client-logos img { height: 42px; }
  .seenin-strip img { height: 36px; }
}
