/* ===================================================================
   The Criminal Defense Marketing Podcast - SBD Marketing (slide archive)
   Shared stylesheet (responsive: mobile / tablet / desktop / large)
   Base tokens & components match sbdmarketing.agency; podcast-specific
   blocks live at the bottom of this file.
   =================================================================== */

/* ---------- Design tokens ---------- */
:root {
  --blue: #1f6bff;
  --blue-dark: #0b4fd6;
  --blue-bright: #2e7bff;
  --blue-soft: #eef4ff;
  --blue-soft-2: #e2ecff;
  --navy: #0c1a33;
  --ink: #1a2235;
  --muted: #5b6b85;
  --muted-2: #7a89a3;
  --bg: #ffffff;
  --bg-soft: #eef4ff;
  --border: #e2e9f5;
  --card: #ffffff;
  --field-bg: #fbfcff;
  --footer-bg: #070b14;
  --footer-muted: #8a93a6;
  --star: #ffb020;
  --shadow-sm: 0 4px 14px rgba(16, 42, 94, 0.06);
  --shadow-md: 0 14px 40px rgba(16, 42, 94, 0.10);
  --shadow-lg: 0 30px 70px rgba(16, 42, 94, 0.16);
  --radius: 16px;
  --radius-lg: 24px;
  --radius-pill: 999px;
  --container: 1200px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --header-h: 76px;
}

/* Dark theme token overrides (html[data-theme] is set before paint by an
   inline head script, then toggled from the nav button) */
html[data-theme="dark"] {
  color-scheme: dark;
  --blue: #5b97ff;
  --blue-dark: #1f6bff;
  --blue-bright: #6ba3ff;
  --blue-soft: #131720;
  --blue-soft-2: #1c2433;
  --navy: #f2f4f8;
  --ink: #dfe3ea;
  --muted: #9aa3b2;
  --muted-2: #848d9c;
  --bg: #000000;
  --bg-soft: #0a0a0b;
  --border: #232529;
  --card: #0c0d0f;
  --field-bg: #08090b;
  --footer-bg: #060606;
  --shadow-sm: 0 4px 14px rgba(0, 0, 0, 0.5);
  --shadow-md: 0 14px 40px rgba(0, 0, 0, 0.6);
  --shadow-lg: 0 30px 70px rgba(0, 0, 0, 0.7);
}

/* ---------- Reset / base ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; scroll-padding-top: 90px; }
body {
  font-family: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  font-size: 16px;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
h1, h2, h3, h4 {
  font-family: "Poppins", system-ui, sans-serif;
  color: var(--navy);
  line-height: 1.12;
  font-weight: 700;
  letter-spacing: -0.01em;
}

/* ---------- Layout helpers ---------- */
.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 22px; }
.section { padding: 70px 0; }
.section-tight { padding: 48px 0; }
.text-blue { color: var(--blue-bright); }
.center { text-align: center; }
.eyebrow {
  display: inline-block;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--blue);
  background: var(--blue-soft);
  padding: 7px 16px;
  border-radius: var(--radius-pill);
  margin-bottom: 18px;
}
.section-title { font-size: clamp(1.7rem, 4vw, 2.6rem); margin-bottom: 14px; }
.section-sub { color: var(--muted); max-width: 620px; font-size: 1.02rem; }
.center .section-sub { margin-left: auto; margin-right: auto; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-size: 0.96rem;
  padding: 14px 26px;
  border-radius: var(--radius-pill);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), background .25s, color .25s;
  white-space: nowrap;
  position: relative;
}
.btn svg { width: 18px; height: 18px; }
.btn-primary {
  background: linear-gradient(135deg, var(--blue-bright), var(--blue-dark));
  color: #fff;
  box-shadow: 0 12px 26px rgba(31, 107, 255, 0.32);
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 18px 34px rgba(31, 107, 255, 0.42); }
.btn-outline {
  background: var(--card);
  color: var(--navy);
  border: 1.6px solid var(--border);
  box-shadow: var(--shadow-sm);
}
.btn-outline:hover { transform: translateY(-3px); border-color: var(--blue); color: var(--blue); box-shadow: var(--shadow-md); }
.btn-ghost {
  background: transparent;
  color: var(--blue);
  border: 1.6px solid var(--blue);
}
.btn-ghost:hover { background: var(--blue); color: #fff; transform: translateY(-3px); }
.btn-lg { padding: 17px 34px; font-size: 1.04rem; }

/* ===================================================================
   HEADER / NAV
   =================================================================== */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.86);
  backdrop-filter: saturate(160%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: box-shadow .3s, border-color .3s, background .3s;
}
.header.scrolled { box-shadow: var(--shadow-sm); border-color: var(--border); background: rgba(255,255,255,0.94); }
html[data-theme="dark"] .header { background: rgba(0, 0, 0, 0.86); }
html[data-theme="dark"] .header.scrolled { background: rgba(0, 0, 0, 0.94); }
.nav { display: flex; align-items: center; justify-content: space-between; height: var(--header-h); }

.brand { display: flex; align-items: center; gap: 11px; font-family: "Poppins", sans-serif; font-weight: 700; font-size: 1.32rem; color: var(--navy); }
.brand .logo-mark {
  width: 38px; height: 38px;
  display: grid; place-items: center;
  border-radius: 11px;
  background: linear-gradient(135deg, var(--blue-bright), var(--blue-dark));
  color: #fff;
  box-shadow: 0 8px 18px rgba(31,107,255,.35);
  transition: transform .4s var(--ease);
}
.brand:hover .logo-mark { transform: rotate(-8deg) scale(1.06); }
.brand .logo-mark svg { width: 22px; height: 22px; }
.brand b { color: var(--blue); }
.brand-logo { height: 40px; width: auto; transition: transform .4s var(--ease); }
.brand:hover .brand-logo { transform: scale(1.04); }
.footer .brand-logo { height: 38px; }

.nav-links { display: flex; align-items: center; gap: 6px; }
.nav-links > li > a, .nav-links > li > .dropdown-toggle {
  display: inline-flex; align-items: center; gap: 6px;
  font-weight: 500; font-size: 0.97rem; color: var(--ink);
  padding: 10px 14px; border-radius: 10px;
  transition: color .2s, background .2s;
}
.nav-links > li > a:hover, .nav-links > li > .dropdown-toggle:hover { color: var(--blue); background: var(--blue-soft); }
.nav-links > li > a[aria-current="page"] { color: var(--blue); background: var(--blue-soft); font-weight: 600; }
.nav-links .caret { width: 14px; height: 14px; transition: transform .3s var(--ease); }

/* Dropdown */
.dropdown { position: relative; }
.dropdown-menu {
  position: absolute; top: calc(100% + 14px); left: 50%;
  transform: translateX(-50%) translateY(10px);
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--radius); box-shadow: var(--shadow-lg);
  padding: 12px; width: 320px;
  opacity: 0; visibility: hidden; pointer-events: none;
  transition: opacity .28s var(--ease), transform .28s var(--ease), visibility .28s;
  z-index: 120;
}
.dropdown-menu::before {
  content: ""; position: absolute; top: -7px; left: 50%; transform: translateX(-50%) rotate(45deg);
  width: 14px; height: 14px; background: var(--card); border-left: 1px solid var(--border); border-top: 1px solid var(--border);
}
.dropdown:hover .dropdown-menu, .dropdown.open .dropdown-menu {
  opacity: 1; visibility: visible; pointer-events: auto; transform: translateX(-50%) translateY(0);
}
.dropdown:hover .caret, .dropdown.open .caret { transform: rotate(180deg); }
.dropdown-item {
  display: flex; gap: 13px; align-items: flex-start;
  padding: 13px; border-radius: 12px; transition: background .2s, transform .2s;
}
.dropdown-item:hover { background: var(--blue-soft); transform: translateX(4px); }
.dropdown-item .di-icon {
  flex: none; width: 42px; height: 42px; border-radius: 11px;
  display: grid; place-items: center; background: var(--blue-soft); color: var(--blue);
  transition: background .25s, color .25s;
}
.dropdown-item:hover .di-icon { background: var(--blue); color: #fff; }
.dropdown-item .di-icon svg { width: 22px; height: 22px; }
.dropdown-item h4 { font-size: 0.98rem; margin-bottom: 2px; }
.dropdown-item p { font-size: 0.82rem; color: var(--muted); line-height: 1.45; }

.nav-cta { display: flex; align-items: center; gap: 12px; }
.nav-phone {
  display: inline-flex; align-items: center; gap: 9px;
  background: linear-gradient(135deg, var(--blue-bright), var(--blue-dark));
  color: #fff; font-family: "Poppins", sans-serif; font-weight: 600; font-size: 0.95rem;
  padding: 12px 22px; border-radius: var(--radius-pill);
  box-shadow: 0 10px 22px rgba(31,107,255,.32); transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}
.nav-phone:hover { transform: translateY(-3px); box-shadow: 0 16px 30px rgba(31,107,255,.42); }
.nav-phone svg { width: 17px; height: 17px; }

/* Theme (dark mode) toggle */
.theme-toggle {
  width: 46px; height: 46px; border-radius: 12px; flex: none;
  border: 1px solid var(--border); background: var(--card); color: var(--navy);
  display: grid; place-items: center;
  transition: color .2s, border-color .2s, background .2s, transform .3s var(--ease);
}
.theme-toggle:hover { color: var(--blue); border-color: var(--blue); transform: translateY(-2px); }
.theme-toggle svg { width: 20px; height: 20px; }
.theme-toggle .tt-sun { display: none; }
html[data-theme="dark"] .theme-toggle .tt-sun { display: block; }
html[data-theme="dark"] .theme-toggle .tt-moon { display: none; }

/* Hamburger */
.hamburger {
  display: none; width: 46px; height: 46px; border-radius: 12px;
  border: 1px solid var(--border); background: var(--card); position: relative; flex: none;
  transition: background .2s, border-color .2s;
}
.hamburger span {
  position: absolute; left: 50%; top: 50%; width: 20px; height: 2px; background: var(--navy); border-radius: 2px;
  transform: translate(-50%, -50%); transition: transform .35s var(--ease), opacity .25s;
}
.hamburger span:nth-child(1) { transform: translate(-50%, -7px); }
.hamburger span:nth-child(3) { transform: translate(-50%, 5px); }
.hamburger.active span:nth-child(1) { transform: translate(-50%, -50%) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translate(-50%, -50%) rotate(-45deg); }

/* Mobile drawer */
.mobile-menu {
  position: fixed; inset: var(--header-h) 0 0 0; z-index: 99;
  background: var(--card); padding: 22px; overflow-y: auto;
  transform: translateX(100%); transition: transform .42s var(--ease);
  display: flex; flex-direction: column; gap: 4px;
}
.mobile-menu.open { transform: translateX(0); }
.mobile-menu a, .mobile-menu .m-toggle {
  display: flex; align-items: center; justify-content: space-between;
  font-family: "Poppins", sans-serif; font-weight: 500; font-size: 1.08rem; color: var(--navy);
  padding: 16px 8px; border-bottom: 1px solid var(--border); width: 100%;
}
.mobile-menu a[aria-current="page"] { color: var(--blue); font-weight: 600; }
.mobile-menu .m-sub { display: none; flex-direction: column; padding-left: 12px; }
.mobile-menu .m-sub.open { display: flex; }
.mobile-menu .m-sub a { font-size: 0.98rem; color: var(--muted); border-bottom: 1px dashed var(--border); }
.mobile-menu .m-toggle .caret { transition: transform .3s; width: 16px; height: 16px; }
.mobile-menu .m-toggle.open .caret { transform: rotate(180deg); }
.mobile-menu .nav-phone { justify-content: center; margin-top: 18px; }
.menu-backdrop {
  position: fixed; inset: 0; background: rgba(8,18,40,.45); z-index: 98; opacity: 0; visibility: hidden; transition: opacity .3s;
}
.menu-backdrop.open { opacity: 1; visibility: visible; }
body.no-scroll { overflow: hidden; }

/* ===================================================================
   HERO
   =================================================================== */
.hero { position: relative; padding: 64px 0 30px; overflow: hidden; }
.hero::before {
  content: ""; position: absolute; top: -160px; left: 50%; transform: translateX(-50%);
  width: 900px; height: 540px; border-radius: 50%;
  background: radial-gradient(closest-side, rgba(46,123,255,.16), transparent 70%); z-index: -1;
}
.hero-head { text-align: center; max-width: 760px; margin: 0 auto 18px; }
.hero h1 { font-size: clamp(2.3rem, 6.2vw, 4.1rem); font-weight: 800; line-height: 1.05; }
.hero h1 .text-blue { display: inline; }
.hero p { color: var(--muted); font-size: 1.12rem; max-width: 560px; margin: 18px auto 0; }
.hero-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-top: 28px; }
.trust-pill { display: inline-flex; align-items: center; gap: 8px; margin-top: 22px; color: var(--muted); font-size: .92rem; }
.trust-pill .stars { color: var(--star); letter-spacing: 2px; }

/* Hero trust badges (replaces carousel) */
.hero-badges { display: flex; flex-wrap: wrap; justify-content: center; gap: 14px; max-width: 760px; margin: 40px auto 0; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--card); border: 1px solid var(--border); border-radius: var(--radius-pill);
  padding: 11px 20px; box-shadow: var(--shadow-sm); color: var(--ink);
  font-weight: 500; font-size: .95rem;
}
.hero-badge svg { width: 18px; height: 18px; color: var(--blue); flex: none; }

/* ===================================================================
   STATS BAR
   =================================================================== */
.stats-wrap { margin-top: 46px; }
.stats {
  background: var(--card); border: 1px solid var(--border); border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md); padding: 30px 20px;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px;
}
.stat { text-align: center; position: relative; }
.stat:not(:last-child)::after { content: ""; position: absolute; right: -8px; top: 12%; height: 76%; width: 1px; background: var(--border); }
.stat .num { font-family: "Poppins", sans-serif; font-weight: 800; font-size: clamp(1.8rem, 4vw, 2.5rem); color: var(--navy); }
.stat .num .text-blue { color: var(--blue); }
.stat .label { color: var(--muted); font-size: .88rem; margin-top: 2px; }
.stats-banner {
  margin-top: 14px; background: linear-gradient(135deg, var(--blue-bright), var(--blue-dark));
  color: #fff; text-align: center; border-radius: var(--radius); padding: 16px 22px;
  font-weight: 500; font-size: .98rem; box-shadow: 0 14px 30px rgba(31,107,255,.28);
}

/* ===================================================================
   FEATURE / SERVICES SPLIT
   =================================================================== */
.split { display: grid; grid-template-columns: 1fr 1.1fr; gap: 48px; align-items: center; }
.split .copy h2 { font-size: clamp(1.7rem, 3.6vw, 2.5rem); margin-bottom: 16px; }
.split .copy p { color: var(--muted); margin-bottom: 22px; }
.svc-cards { display: grid; gap: 18px; }
.svc-card {
  background: var(--card); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 24px; box-shadow: var(--shadow-sm); transition: transform .4s var(--ease), box-shadow .4s var(--ease), border-color .3s;
  position: relative; overflow: hidden;
}
.svc-card::before {
  content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 4px;
  background: linear-gradient(var(--blue-bright), var(--blue-dark)); transform: scaleY(0); transform-origin: top; transition: transform .4s var(--ease);
}
.svc-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: transparent; }
.svc-card:hover::before { transform: scaleY(1); }
.svc-card .ic { width: 50px; height: 50px; border-radius: 13px; display: grid; place-items: center; background: var(--blue-soft); color: var(--blue); margin-bottom: 16px; transition: transform .4s var(--ease), background .3s, color .3s; }
.svc-card:hover .ic { background: var(--blue); color: #fff; transform: rotate(-6deg) scale(1.05); }
.svc-card .ic svg { width: 26px; height: 26px; }
.svc-card h3 { font-size: 1.18rem; margin-bottom: 8px; }
.svc-card p { color: var(--muted); font-size: .95rem; }
.svc-card .more { display: inline-flex; align-items: center; gap: 6px; color: var(--blue); font-weight: 600; font-size: .9rem; margin-top: 14px; }
.svc-card .more svg { width: 16px; height: 16px; transition: transform .3s; }
.svc-card:hover .more svg { transform: translateX(4px); }

/* ===================================================================
   CTA BANNER
   =================================================================== */
.cta-band { background: var(--blue-soft); border-radius: var(--radius-lg); padding: 54px 30px; text-align: center; position: relative; overflow: hidden; }
.cta-band::after { content: ""; position: absolute; right: -60px; bottom: -60px; width: 240px; height: 240px; border-radius: 50%; background: radial-gradient(closest-side, rgba(46,123,255,.18), transparent); }
.cta-band h2 { font-size: clamp(1.7rem, 4vw, 2.6rem); color: var(--navy); margin-bottom: 22px; }

/* ===================================================================
   "DIFFERENT" - features list + copy
   =================================================================== */
.feature-list { display: grid; gap: 16px; }
.feature-item {
  background: var(--card); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 22px; box-shadow: var(--shadow-sm); transition: transform .4s var(--ease), box-shadow .4s var(--ease);
}
.feature-item:hover { transform: translateX(8px); box-shadow: var(--shadow-md); }
.feature-item .ftitle { display: flex; align-items: center; gap: 11px; font-family: "Poppins", sans-serif; font-weight: 600; font-size: 1.08rem; color: var(--navy); margin-bottom: 8px; }
.feature-item .check { flex: none; width: 26px; height: 26px; border-radius: 8px; background: var(--blue); color: #fff; display: grid; place-items: center; }
.feature-item .check svg { width: 16px; height: 16px; }
.feature-item p { color: var(--muted); font-size: .93rem; padding-left: 37px; }

/* ===================================================================
   WORK / PORTFOLIO
   =================================================================== */
.work-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.work-card {
  position: relative; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm);
  border: 1px solid var(--border); transition: transform .45s var(--ease), box-shadow .45s var(--ease);
  background: var(--card);
}
.work-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.work-thumb { aspect-ratio: 16 / 10; overflow: hidden; }
.work-thumb img { width: 100%; height: 100%; object-fit: cover; object-position: top center; transition: transform .7s var(--ease); }
.work-card:hover .work-thumb img { transform: scale(1.07); }
.work-meta { padding: 18px 20px 20px; }
.work-meta .tag { font-size: .76rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; color: var(--blue); }
.work-meta h3 { font-size: 1.16rem; margin: 4px 0 6px; }
.work-meta p { color: var(--muted); font-size: .9rem; }

/* ===================================================================
   TESTIMONIALS
   =================================================================== */
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; max-width: 1200px; margin: 0 auto; }
.testi-card {
  background: var(--card); border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: 30px; box-shadow: var(--shadow-sm); transition: transform .4s var(--ease), box-shadow .4s var(--ease);
  position: relative;
}
.testi-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.testi-card .quote-mark { font-family: Georgia, serif; font-size: 4rem; line-height: 0; color: var(--blue-soft-2); position: absolute; top: 30px; right: 26px; }
.testi-card .stars { color: var(--star); letter-spacing: 2px; margin-bottom: 14px; }
.testi-card p { color: var(--ink); font-size: 1.02rem; line-height: 1.65; }
.testi-author { display: flex; align-items: center; gap: 14px; margin-top: 22px; }
.testi-author img { width: 56px; height: 56px; border-radius: 50%; object-fit: cover; border: 3px solid var(--blue-soft); }
.testi-author .name { font-family: "Poppins", sans-serif; font-weight: 600; color: var(--navy); }
.testi-author .role { color: var(--blue); font-size: .87rem; }

/* ===================================================================
   FAQ
   =================================================================== */
.faq { max-width: 820px; margin: 0 auto; }
.faq-item { border: 1px solid var(--border); border-radius: var(--radius); margin-bottom: 14px; background: var(--card); overflow: hidden; transition: box-shadow .3s, border-color .3s; }
.faq-item.open { box-shadow: var(--shadow-md); border-color: var(--blue-soft-2); }
.faq-q {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 20px 22px; font-family: "Poppins", sans-serif; font-weight: 600; font-size: 1.04rem; color: var(--navy); text-align: left;
}
.faq-q .pm { flex: none; width: 30px; height: 30px; border-radius: 9px; background: var(--blue-soft); color: var(--blue); display: grid; place-items: center; transition: transform .35s var(--ease), background .25s, color .25s; }
.faq-item.open .faq-q .pm { background: var(--blue); color: #fff; transform: rotate(135deg); }
.faq-q .pm svg { width: 18px; height: 18px; }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .4s var(--ease); }
.faq-a-inner { padding: 0 22px 22px; color: var(--muted); }

/* ===================================================================
   FINAL CTA
   =================================================================== */
.final-cta { position: relative; overflow: hidden; background: linear-gradient(135deg, #0c1a33, #123163); border-radius: var(--radius-lg); padding: 70px 40px; }
.final-cta::before { content: ""; position: absolute; right: -80px; top: -80px; width: 360px; height: 360px; border: 2px solid rgba(255,255,255,.08); border-radius: 50%; }
.final-cta::after { content: ""; position: absolute; right: 20px; bottom: -120px; width: 300px; height: 300px; border: 2px solid rgba(255,255,255,.06); border-radius: 50%; }
.final-cta h2 { color: #fff; font-size: clamp(1.9rem, 4.6vw, 3rem); max-width: 540px; position: relative; }
.final-cta .actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 28px; position: relative; }
.final-cta .btn-outline { background: rgba(255,255,255,.08); color: #fff; border-color: rgba(255,255,255,.25); }
.final-cta .btn-outline:hover { background: #ffffff; color: #0c1a33; }

/* ===================================================================
   FOOTER
   =================================================================== */
.footer { background: var(--footer-bg); color: #c7cedb; padding: 64px 0 30px; margin-top: 70px; }
.footer-top { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 40px; }
.footer .brand { color: #fff; margin-bottom: 16px; }
.footer .fdesc { color: var(--footer-muted); font-size: .92rem; max-width: 300px; }
.footer .fsocial { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 18px; }
.footer .fsocial a { width: 38px; height: 38px; border-radius: 10px; background: rgba(255,255,255,.07); display: grid; place-items: center; color: #c7cedb; transition: background .25s, color .25s, transform .3s; }
.footer .fsocial a:hover { background: var(--blue); color: #fff; transform: translateY(-3px); }
.footer .fsocial svg { width: 18px; height: 18px; }
.footer h4 { color: #fff; font-size: .82rem; letter-spacing: .12em; text-transform: uppercase; margin-bottom: 18px; }
.footer ul li { margin-bottom: 11px; }
.footer ul a, .footer .fcontact div { color: var(--footer-muted); font-size: .93rem; transition: color .2s; display: inline-flex; gap: 8px; align-items: flex-start; }
.footer ul a:hover { color: #fff; }
.footer .fcontact div { margin-bottom: 11px; }
.footer .fcontact svg { width: 16px; height: 16px; color: var(--blue-bright); flex: none; margin-top: 3px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.08); margin-top: 46px; padding-top: 24px; display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; color: var(--footer-muted); font-size: .86rem; }

/* ===================================================================
   SUB-PAGE (SEO / Web Design) - hero & shared blocks
   =================================================================== */
.page-hero { position: relative; padding: 60px 0 50px; background: linear-gradient(180deg, var(--blue-soft), var(--bg)); overflow: hidden; }
.page-hero .container { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 48px; align-items: center; }
.page-hero h1 { font-size: clamp(2.1rem, 5vw, 3.3rem); font-weight: 800; }
.page-hero p { color: var(--muted); font-size: 1.1rem; margin: 18px 0 26px; }
.page-hero .hero-actions { justify-content: flex-start; margin-top: 0; }
.page-hero-img { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); aspect-ratio: 4/3; }
.page-hero-img img { width: 100%; height: 100%; object-fit: cover; }
.breadcrumb { display: flex; gap: 8px; align-items: center; color: var(--muted); font-size: .88rem; margin-bottom: 16px; }
.breadcrumb a:hover { color: var(--blue); }
.breadcrumb svg { width: 14px; height: 14px; }

.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.process-card { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius); padding: 26px 22px; box-shadow: var(--shadow-sm); transition: transform .4s var(--ease), box-shadow .4s var(--ease); }
.process-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.process-card .step { font-family: "Poppins", sans-serif; font-weight: 800; font-size: 2rem; color: var(--blue-soft-2); transition: color .3s; }
.process-card:hover .step { color: var(--blue); }
.process-card h3 { font-size: 1.1rem; margin: 6px 0 8px; }
.process-card p { color: var(--muted); font-size: .92rem; }

.bullet-list { display: grid; gap: 16px; }
.bullet-list li { display: flex; gap: 13px; align-items: flex-start; }
.bullet-list .bi { flex: none; width: 28px; height: 28px; border-radius: 8px; background: var(--blue-soft); color: var(--blue); display: grid; place-items: center; }
.bullet-list .bi svg { width: 17px; height: 17px; }
.bullet-list strong { font-family: "Poppins", sans-serif; color: var(--navy); display: block; margin-bottom: 2px; }
.bullet-list span { color: var(--muted); font-size: .94rem; }

.price-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; align-items: stretch; }
.price-card { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 32px 28px; box-shadow: var(--shadow-sm); transition: transform .4s var(--ease), box-shadow .4s var(--ease); display: flex; flex-direction: column; }
.price-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.price-card.featured { border-color: var(--blue); box-shadow: var(--shadow-md); position: relative; }
.price-card.featured::before { content: "Most Popular"; position: absolute; top: 18px; right: 18px; background: var(--blue); color: #fff; font-size: .7rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; padding: 5px 12px; border-radius: var(--radius-pill); }
.price-card .pname { font-family: "Poppins", sans-serif; font-weight: 600; color: var(--blue); letter-spacing: .04em; text-transform: uppercase; font-size: .82rem; }
.price-card .pprice { font-family: "Poppins", sans-serif; font-weight: 800; font-size: 2.4rem; color: var(--navy); margin: 8px 0 4px; }
.price-card .pprice small { font-size: .95rem; font-weight: 500; color: var(--muted); }
.price-card .pdesc { color: var(--muted); font-size: .92rem; margin-bottom: 18px; }
.price-card ul { margin-bottom: 24px; display: grid; gap: 12px; }
.price-card ul li { display: flex; gap: 10px; align-items: flex-start; color: var(--ink); font-size: .93rem; }
.price-card ul li svg { width: 18px; height: 18px; color: var(--blue); flex: none; margin-top: 2px; }
.price-card .btn { margin-top: auto; justify-content: center; }

/* ===================================================================
   CONTACT PAGE - form + info split
   =================================================================== */
.contact-split { display: grid; grid-template-columns: 1fr 1.05fr; gap: 48px; align-items: start; }
.contact-info .eyebrow { margin-bottom: 18px; }
.contact-info h1 { font-size: clamp(2rem, 4.6vw, 3rem); font-weight: 800; margin-bottom: 16px; }
.contact-info p { color: var(--muted); font-size: 1.06rem; margin-bottom: 26px; }
.contact-methods { display: grid; gap: 14px; margin-bottom: 30px; }
.contact-method {
  display: flex; gap: 14px; align-items: center;
  background: var(--card); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 16px 18px; box-shadow: var(--shadow-sm); transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}
.contact-method:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.contact-method .cm-ic { flex: none; width: 44px; height: 44px; border-radius: 12px; background: var(--blue-soft); color: var(--blue); display: grid; place-items: center; }
.contact-method .cm-ic svg { width: 22px; height: 22px; }
.contact-method strong { font-family: "Poppins", sans-serif; color: var(--navy); display: block; font-size: .98rem; }
.contact-method span { color: var(--muted); font-size: .9rem; }

.contact-form {
  background: var(--card); border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: 34px 32px; box-shadow: var(--shadow-md);
}
.contact-form h2 { font-size: 1.5rem; margin-bottom: 6px; }
.contact-form .form-sub { color: var(--muted); font-size: .95rem; margin-bottom: 24px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { margin-bottom: 18px; }
.field label { display: block; font-weight: 600; font-size: .88rem; color: var(--navy); margin-bottom: 7px; font-family: "Poppins", sans-serif; }
.field input, .field select, .field textarea {
  width: 100%; font-family: inherit; font-size: .96rem; color: var(--ink);
  padding: 13px 15px; border: 1.6px solid var(--border); border-radius: 12px; background: var(--field-bg);
  transition: border-color .2s, box-shadow .2s, background .2s;
}
.field textarea { resize: vertical; min-height: 130px; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--blue); background: var(--card); box-shadow: 0 0 0 4px rgba(31,107,255,.12);
}
.contact-form .btn { width: 100%; justify-content: center; margin-top: 4px; }
.form-note { color: var(--muted-2); font-size: .82rem; text-align: center; margin-top: 14px; }

/* Practice-area checkbox pills (.field prefix beats the generic .field input rule) */
.field .check-group { display: flex; flex-wrap: wrap; gap: 12px; }
.field .check-pill {
  display: inline-flex; align-items: center; gap: 10px; cursor: pointer; width: auto; margin: 0;
  font-family: "Inter", system-ui, sans-serif; font-weight: 500; font-size: .95rem; color: var(--ink);
  padding: 12px 18px; border: 1.6px solid var(--border); border-radius: var(--radius-pill);
  background: var(--field-bg); transition: border-color .2s, background .2s, box-shadow .2s; user-select: none;
}
.field .check-pill span { font-family: inherit; font-weight: inherit; }
.field .check-pill input[type="checkbox"] {
  width: 18px; height: 18px; min-width: 18px; margin: 0; padding: 0; flex: none;
  border: 0; border-radius: 4px; background: none; box-shadow: none;
  accent-color: var(--blue); cursor: pointer;
}
.field .check-pill:hover { border-color: var(--blue); }
.field .check-pill:has(input:checked) { border-color: var(--blue); background: var(--blue-soft); box-shadow: 0 0 0 3px rgba(31,107,255,.10); }
.field-error { color: #d23c3c; font-size: .84rem; margin-top: 8px; }

/* Business search (Google Places autocomplete) */
.biz-search { margin-bottom: 18px; }
.field-hint { color: var(--muted-2); font-size: .82rem; margin-top: 8px; }
#placeAutocomplete gmp-place-autocomplete {
  width: 100%;
  border-radius: 12px;
  /* Force light theme so it doesn't go black in OS dark mode */
  color-scheme: light;
  /* Match the site's input palette (Google Places web component custom props) */
  --gmp-mat-color-surface: #fbfcff;
  --gmp-mat-color-surface-variant: #fbfcff;
  --gmp-mat-color-on-surface: var(--ink);
  --gmp-mat-color-on-surface-variant: var(--muted-2);
  --gmp-mat-color-primary: var(--blue);
  --gmp-mat-color-outline: var(--border);
  --gmp-mat-color-hairline: var(--border);
  --gmp-mat-color-secondary-container: var(--blue-soft);
  --gmp-mat-color-on-secondary-container: var(--ink);
  --gmp-mat-font-family: "Inter", system-ui, sans-serif;
  --gmp-mat-font-body-medium: 500 .95rem/1.4 "Inter", system-ui, sans-serif;
}
html[data-theme="dark"] #placeAutocomplete gmp-place-autocomplete {
  color-scheme: dark;
  --gmp-mat-color-surface: var(--field-bg);
  --gmp-mat-color-surface-variant: var(--field-bg);
}
.form-divider {
  display: flex; align-items: center; gap: 14px;
  color: var(--muted-2); font-size: .8rem; text-transform: uppercase;
  letter-spacing: .04em; margin: 4px 0 18px;
}
.form-divider::before, .form-divider::after {
  content: ""; flex: 1; height: 1px; background: var(--border);
}

/* Scheduling page embed */
.sched-wrap { max-width: 940px; margin: 0 auto; }
.sched-embed {
  display: block; width: 100%; height: 780px; border: 1px solid var(--border);
  border-radius: var(--radius-lg); background: var(--card); box-shadow: var(--shadow-md);
}
.sched-wrap .form-note { margin-top: 16px; }
@media (max-width: 600px) {
  .sched-embed { height: 660px; border-radius: var(--radius); }
}

/* ===================================================================
   SCROLL REVEAL ANIMATIONS
   =================================================================== */
.reveal { opacity: 0; transform: translateY(34px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .08s; } .reveal.d2 { transition-delay: .16s; }
.reveal.d3 { transition-delay: .24s; } .reveal.d4 { transition-delay: .32s; }
@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; }
}

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

/* Large desktop */
@media (min-width: 1440px) {
  :root { --container: 1280px; }
  .hero h1 { font-size: 4.4rem; }
  .section { padding: 84px 0; }
}

/* Tablet & below: show hamburger, hide desktop nav */
@media (max-width: 1024px) {
  .nav-links, .nav-cta .nav-phone { display: none; }
  .hamburger { display: block; }
  .nav-cta { gap: 10px; }
  .work-grid { grid-template-columns: repeat(2, 1fr); }
  .testi-grid { grid-template-columns: repeat(2, 1fr); max-width: 760px; }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .price-grid { grid-template-columns: 1fr; max-width: 520px; margin: 0 auto; }
  .split { gap: 34px; }
  .page-hero .container { grid-template-columns: 1fr; }
  .page-hero-img { max-width: 560px; }
}

/* Tablet portrait */
@media (max-width: 820px) {
  .split { grid-template-columns: 1fr; }
  .contact-split { grid-template-columns: 1fr; gap: 36px; }
  .testi-grid { grid-template-columns: 1fr; max-width: 560px; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer .fdesc { max-width: none; }
  .stats { grid-template-columns: repeat(2, 1fr); gap: 26px 16px; padding: 28px 18px; }
  .stat:nth-child(2)::after { display: none; }
  .stat::after { display: none; }
}

/* Mobile */
@media (max-width: 600px) {
  .section { padding: 52px 0; }
  .container { padding: 0 18px; }
  .hero { padding: 40px 0 20px; }
  .hero-actions .btn { flex: 1 1 100%; justify-content: center; }
  .work-grid { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 30px; }
  .cta-band, .final-cta { padding: 40px 22px; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .contact-form { padding: 28px 22px; }
  .testi-card, .price-card { padding: 26px 22px; }
  .final-cta .actions .btn { flex: 1 1 100%; justify-content: center; }
}

@media (max-width: 380px) {
  .stats { grid-template-columns: 1fr; }
  .brand { font-size: 1.16rem; }
}

/* ===================================================================
   PODCAST: brand lockup + episode listing
   =================================================================== */
/* The nav is only a logo, a Book a Call button and the theme toggle, so the
   phone button stays visible at every width (there is no mobile drawer). */
.nav-cta .nav-phone { display: inline-flex; }
@media (max-width: 420px) {
  .brand-logo { height: 32px; }
  .nav-phone { padding: 10px 15px; font-size: .86rem; }
  .nav-phone svg { width: 15px; height: 15px; }
  .theme-toggle { width: 40px; height: 40px; }
}

/* Short pages: keep the footer pinned to the bottom of the viewport */
body { min-height: 100vh; display: flex; flex-direction: column; }

.footer.slim { padding: 46px 0 30px; margin-top: auto; }
.footer.slim .footer-bottom { border-top: none; margin-top: 0; padding-top: 0; align-items: center; }
.footer.slim .brand-logo { height: 30px; }

.pod-home { position: relative; padding: 64px 0 20px; overflow: hidden; }
.pod-home::before {
  content: ""; position: absolute; top: -200px; left: 50%; transform: translateX(-50%);
  width: 900px; height: 540px; border-radius: 50%;
  background: radial-gradient(closest-side, rgba(46,123,255,.16), transparent 70%); z-index: -1;
}
.pod-home h1 {
  font-size: clamp(2.2rem, 5.6vw, 3.7rem); font-weight: 800;
  text-align: center; margin-bottom: 40px;
}

.ep-grid { display: grid; gap: 20px; max-width: 760px; margin: 0 auto; }
.ep-card {
  display: flex; align-items: stretch; gap: 22px;
  background: var(--card); border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: 28px 26px; box-shadow: var(--shadow-sm);
  transition: transform .4s var(--ease), box-shadow .4s var(--ease), border-color .3s;
}
.ep-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: var(--blue-soft-2); }
.ep-meta { display: flex; flex-wrap: wrap; align-items: center; gap: 10px; font-size: .78rem; }
.ep-num {
  font-family: "Poppins", sans-serif; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  color: var(--blue); background: var(--blue-soft); padding: 5px 12px; border-radius: var(--radius-pill);
}
.ep-slides { color: var(--muted-2); display: inline-flex; align-items: center; gap: 6px; }
.ep-slides svg { width: 14px; height: 14px; }
.ep-card .ep-body { display: flex; flex-direction: column; gap: 12px; }
.ep-card .ep-thumb {
  flex: none; width: 150px; border-radius: 14px; overflow: hidden;
  background: var(--bg-soft);
}
.ep-card .ep-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.ep-card:hover .ep-thumb img { transform: scale(1.06); }
.ep-card h2 { font-size: clamp(1.2rem, 2.4vw, 1.5rem); }
.ep-card p { color: var(--muted); font-size: .95rem; }
.ep-card .more { display: inline-flex; align-items: center; gap: 7px; color: var(--blue); font-weight: 600; font-size: .93rem; margin-top: auto; padding-top: 6px; }
.ep-card .more svg { width: 16px; height: 16px; transition: transform .3s; }
.ep-card:hover .more svg { transform: translateX(4px); }
@media (max-width: 600px) {
  .ep-card { flex-direction: column; gap: 16px; }
  .ep-card .ep-thumb { width: 100%; height: 150px; }
}

/* ===================================================================
   PODCAST: slide deck
   =================================================================== */
.deck-wrap { max-width: 1080px; margin: 0 auto; }
.deck-bar {
  display: flex; align-items: center; justify-content: space-between; gap: 14px;
  flex-wrap: wrap; margin-bottom: 14px;
}
.deck-bar .deck-title { font-family: "Poppins", sans-serif; font-weight: 600; color: var(--navy); font-size: .98rem; }
.deck-tools { display: flex; align-items: center; gap: 8px; }
.deck-btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: "Poppins", sans-serif; font-weight: 600; font-size: .86rem; color: var(--navy);
  background: var(--card); border: 1.6px solid var(--border); border-radius: var(--radius-pill);
  padding: 9px 16px; transition: border-color .2s, color .2s, transform .3s var(--ease), background .2s;
}
.deck-btn:hover { border-color: var(--blue); color: var(--blue); transform: translateY(-2px); }
.deck-btn svg { width: 16px; height: 16px; }
.deck-btn.icon-only { padding: 9px; width: 38px; height: 38px; justify-content: center; border-radius: 11px; }

.deck-stage {
  container-type: inline-size;
  position: relative; width: 100%; aspect-ratio: 16 / 9;
  background: var(--card); border: 1px solid var(--border); border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md); overflow: hidden;
}
/* Fullscreen: letterbox the stage itself so the container query units
   (and therefore every font size) still resolve against the 16:9 box. */
.deck-stage:fullscreen {
  inset: 0; margin: auto;
  width: min(100vw, 177.78vh); height: min(56.25vw, 100vh);
  aspect-ratio: auto; border: none; border-radius: 0;
}
.deck-stage::backdrop { background: #05070c; }

.slide {
  position: absolute; inset: 0;
  display: flex; flex-direction: column; justify-content: center;
  padding: 7cqi 8cqi;
  opacity: 0; visibility: hidden; pointer-events: none;
  transition: opacity .38s var(--ease), transform .38s var(--ease), visibility .38s;
  transform: translateX(3%);
}
.slide.active { opacity: 1; visibility: visible; pointer-events: auto; transform: none; }
.slide.prev { transform: translateX(-3%); }

.slide .s-eyebrow {
  display: inline-block; align-self: flex-start;
  font-family: "Poppins", sans-serif; font-weight: 600;
  font-size: 1.5cqi; letter-spacing: .16em; text-transform: uppercase;
  color: var(--blue); background: var(--blue-soft);
  padding: .9cqi 2cqi; border-radius: var(--radius-pill); margin-bottom: 2.6cqi;
}
.slide h2 { font-size: 4.4cqi; line-height: 1.1; margin-bottom: 2cqi; }
.slide p { font-size: 2cqi; color: var(--muted); line-height: 1.5; max-width: 46ch; }

/* ---- Full-bleed photo slide (title, recap) ---- */
.slide-photo { padding: 0; }
.slide-photo .s-bg { position: absolute; inset: 0; }
.slide-photo .s-bg img { width: 100%; height: 100%; object-fit: cover; }
.slide-photo .s-bg::after {
  content: ""; position: absolute; inset: 0;
  background: rgba(5,10,22,.5);
  background-image: linear-gradient(115deg, rgba(5,10,22,.92), rgba(7,16,34,.8) 52%, rgba(31,107,255,.5));
}
.slide-photo .s-inner {
  position: relative; z-index: 1; height: 100%;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; padding: 7cqi 8cqi;
}
.slide-photo h1 { color: #fff; font-size: 5.2cqi; font-weight: 800; line-height: 1.08; max-width: 88%; }
.slide-photo h2 { color: #fff; }
.slide-photo p { color: #cfdaee; }
.slide-photo .s-eyebrow { align-self: center; background: rgba(255,255,255,.14); color: #dbe7ff; }
.slide-photo .s-rule { width: 12cqi; height: .5cqi; border-radius: 999px; background: linear-gradient(90deg, var(--blue-bright), #9dc0ff); margin: 3cqi auto; }
.slide-photo .s-by { font-size: 1.9cqi; color: #cfdaee; }
.slide-photo .s-by b { color: #fff; font-family: "Poppins", sans-serif; font-weight: 600; }

/* ---- Photo + points slide (the five steps) ---- */
.slide-media { padding: 0; display: grid; grid-template-columns: .86fr 1fr; }
.slide-media .s-photo { position: relative; overflow: hidden; }
.slide-media .s-photo img { width: 100%; height: 100%; object-fit: cover; }
.slide-media .s-photo::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(150deg, rgba(31,107,255,.34), rgba(7,16,34,.5));
}
.slide-media .s-photo .s-step {
  position: absolute; left: 6cqi; top: 6cqi; z-index: 1;
  font-family: "Poppins", sans-serif; font-weight: 800; font-size: 4.4cqi;
  color: #fff; letter-spacing: .02em; text-shadow: 0 2px 12px rgba(0,0,0,.4);
}
.slide-media .s-body {
  display: flex; flex-direction: column; justify-content: center;
  padding: 6cqi 6.5cqi;
}
.slide-media h2 { font-size: 3.6cqi; margin-bottom: 0; }

/* ---- Icon points ---- */
.s-points { display: grid; gap: 2.4cqi; margin-top: 4cqi; }
.s-points li { display: flex; gap: 2.2cqi; align-items: center; }
.s-points .pi {
  flex: none; width: 5cqi; height: 5cqi; border-radius: 1.5cqi;
  background: var(--blue-soft); color: var(--blue); display: grid; place-items: center;
}
.s-points .pi svg { width: 2.7cqi; height: 2.7cqi; }
.s-points span {
  font-family: "Poppins", sans-serif; font-weight: 500; font-size: 2.15cqi;
  color: var(--navy); line-height: 1.3;
}

/* ---- Icon tiles (agenda) ---- */
.s-tiles { display: grid; grid-template-columns: repeat(5, 1fr); gap: 2.2cqi; margin-top: 3cqi; }
.s-tile {
  display: flex; flex-direction: column; align-items: center; gap: 1.6cqi;
  border: 1px solid var(--border); border-radius: 2cqi; padding: 3.2cqi 1.6cqi;
  text-align: center; background: var(--bg-soft);
}
.s-tile .ti {
  width: 6.4cqi; height: 6.4cqi; border-radius: 1.9cqi;
  background: var(--blue); color: #fff; display: grid; place-items: center;
}
.s-tile .ti svg { width: 3.4cqi; height: 3.4cqi; }
.s-tile span {
  font-family: "Poppins", sans-serif; font-weight: 600; font-size: 1.8cqi;
  color: var(--navy); line-height: 1.25;
}

/* ---- Chips (recap) ---- */
.s-chips { display: flex; flex-wrap: wrap; justify-content: center; gap: 1.8cqi; margin-top: 2cqi; }
.s-chip {
  display: inline-flex; align-items: center; gap: 1.4cqi;
  background: rgba(255,255,255,.13); border: 1px solid rgba(255,255,255,.24);
  color: #fff; padding: 1.6cqi 2.6cqi; border-radius: 999px;
  font-family: "Poppins", sans-serif; font-weight: 600; font-size: 2cqi;
}
.s-chip svg { width: 2.3cqi; height: 2.3cqi; color: #9dc0ff; }

/* ---- Closing slide ---- */
.slide-cta { align-items: center; text-align: center; justify-content: center; background: linear-gradient(135deg, #0c1a33, #123163); }
.slide-cta h2 { color: #fff; }
.slide-cta p { color: #c7d3ec; margin-left: auto; margin-right: auto; }
.slide-cta .s-url {
  display: inline-flex; align-items: center; gap: 1.4cqi;
  margin-top: 3.4cqi; padding: 1.8cqi 3.6cqi; border-radius: 999px;
  background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.24);
  color: #fff; font-family: "Poppins", sans-serif; font-weight: 600; font-size: 2.2cqi;
}
.slide-cta .s-url svg { width: 2.4cqi; height: 2.4cqi; color: #9dc0ff; }
.slide-cta .s-eyebrow { align-self: center; background: rgba(255,255,255,.12); color: #cfe0ff; }

.slide-num {
  position: absolute; right: 3cqi; bottom: 2.4cqi;
  font-family: "Poppins", sans-serif; font-size: 1.5cqi; color: var(--muted-2);
}
.slide-photo .slide-num, .slide-cta .slide-num { color: rgba(255,255,255,.55); }

/* Deck controls */
.deck-nav { display: flex; align-items: center; justify-content: center; gap: 14px; margin-top: 18px; }
.deck-arrow {
  width: 46px; height: 46px; border-radius: 50%; flex: none;
  border: 1.6px solid var(--border); background: var(--card); color: var(--navy);
  display: grid; place-items: center;
  transition: border-color .2s, color .2s, transform .3s var(--ease), opacity .2s;
}
.deck-arrow svg { width: 20px; height: 20px; }
.deck-arrow:hover:not(:disabled) { border-color: var(--blue); color: var(--blue); transform: translateY(-2px); }
.deck-arrow:disabled { opacity: .38; cursor: not-allowed; }
.deck-count { font-family: "Poppins", sans-serif; font-weight: 600; color: var(--muted); font-size: .92rem; min-width: 74px; text-align: center; }
.deck-dots { display: flex; flex-wrap: wrap; justify-content: center; gap: 8px; margin-top: 16px; }
.deck-dot {
  width: 9px; height: 9px; border-radius: 50%; background: var(--border);
  transition: background .25s, transform .25s var(--ease), width .25s var(--ease);
}
.deck-dot:hover { background: var(--muted-2); }
.deck-dot.active { background: var(--blue); width: 26px; border-radius: 999px; }
.deck-hint { text-align: center; color: var(--muted-2); font-size: .84rem; margin-top: 14px; }
.deck-hint kbd {
  font-family: inherit; font-size: .78rem; background: var(--bg-soft); border: 1px solid var(--border);
  border-radius: 6px; padding: 2px 7px; color: var(--muted);
}

/* Small screens: a 16:9 box is too narrow for width-relative type, so the
   deck goes portrait and switches to fixed sizes with a stacked layout. */
@media (max-width: 760px) {
  .deck-stage { aspect-ratio: 3 / 4; }
  .deck-stage:not(:fullscreen) .slide { justify-content: flex-start; overflow-y: auto; padding: 28px 22px; }
  .deck-stage:not(:fullscreen) .slide .s-eyebrow { font-size: .68rem; letter-spacing: .13em; padding: 6px 13px; margin-bottom: 14px; }
  .deck-stage:not(:fullscreen) .slide h2 { font-size: 1.45rem; margin-bottom: 10px; }
  .deck-stage:not(:fullscreen) .slide p { font-size: .94rem; }

  .deck-stage:not(:fullscreen) .slide-photo { padding: 0; }
  .deck-stage:not(:fullscreen) .slide-photo .s-inner { padding: 30px 24px; justify-content: center; }
  .deck-stage:not(:fullscreen) .slide-photo h1 { font-size: 1.75rem; max-width: none; }
  .deck-stage:not(:fullscreen) .slide-photo .s-rule { width: 64px; height: 4px; margin: 18px auto; }
  .deck-stage:not(:fullscreen) .slide-photo .s-by { font-size: .9rem; }

  .deck-stage:not(:fullscreen) .slide-media { display: flex; flex-direction: column; padding: 0; }
  .deck-stage:not(:fullscreen) .slide-media .s-photo { height: 34%; flex: none; }
  .deck-stage:not(:fullscreen) .slide-media .s-photo .s-step { font-size: 1.6rem; left: 22px; top: 16px; }
  .deck-stage:not(:fullscreen) .slide-media .s-body { padding: 24px 22px; justify-content: center; }
  .deck-stage:not(:fullscreen) .slide-media h2 { font-size: 1.4rem; }

  .deck-stage:not(:fullscreen) .s-points { gap: 14px; margin-top: 20px; }
  .deck-stage:not(:fullscreen) .s-points li { gap: 13px; }
  .deck-stage:not(:fullscreen) .s-points .pi { width: 34px; height: 34px; border-radius: 11px; }
  .deck-stage:not(:fullscreen) .s-points .pi svg { width: 18px; height: 18px; }
  .deck-stage:not(:fullscreen) .s-points span { font-size: .98rem; }

  .deck-stage:not(:fullscreen) .s-tiles { grid-template-columns: repeat(2, 1fr); gap: 12px; margin-top: 18px; }
  .deck-stage:not(:fullscreen) .s-tile { padding: 18px 10px; gap: 10px; border-radius: 14px; }
  .deck-stage:not(:fullscreen) .s-tile .ti { width: 38px; height: 38px; border-radius: 12px; }
  .deck-stage:not(:fullscreen) .s-tile .ti svg { width: 20px; height: 20px; }
  .deck-stage:not(:fullscreen) .s-tile span { font-size: .88rem; }

  .deck-stage:not(:fullscreen) .s-chips { gap: 10px; margin-top: 18px; }
  .deck-stage:not(:fullscreen) .s-chip { font-size: .9rem; padding: 10px 16px; gap: 9px; border-radius: 999px; }
  .deck-stage:not(:fullscreen) .s-chip svg { width: 15px; height: 15px; }

  .deck-stage:not(:fullscreen) .slide-cta .s-url { font-size: 1rem; padding: 12px 22px; margin-top: 22px; gap: 9px; }
  .deck-stage:not(:fullscreen) .slide-cta .s-url svg { width: 17px; height: 17px; }
  .deck-stage:not(:fullscreen) .slide-num { font-size: .74rem; right: 16px; bottom: 12px; }

  .deck-bar { justify-content: center; }
  .deck-bar .deck-title { display: none; }
}

/* ===================================================================
   PODCAST: transcript + takeaway list
   =================================================================== */
.takeaways { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
@media (max-width: 820px) { .takeaways { grid-template-columns: 1fr; } }

.transcript { max-width: 820px; margin: 0 auto; }
.transcript .t-block { margin-bottom: 26px; }
.transcript h3 {
  font-size: 1.05rem; color: var(--blue); margin-bottom: 8px;
  font-family: "Poppins", sans-serif; letter-spacing: .02em;
}
.transcript p { color: var(--muted); margin-bottom: 10px; font-size: .98rem; }

/* ===================================================================
   PRINT: one slide per page (used by "Save as PDF")
   =================================================================== */
@media print {
  @page { size: landscape; margin: 0; }
  .header, .mobile-menu, .menu-backdrop, .footer, .deck-bar, .deck-nav,
  .deck-dots, .deck-hint, .no-print { display: none !important; }
  body { background: #fff; }
  .section, .container { padding: 0 !important; max-width: none !important; }
  .deck-wrap { max-width: none; }
  .deck-stage {
    container-type: inline-size;
    aspect-ratio: auto; height: auto; border: none; border-radius: 0; box-shadow: none;
  }
  .slide {
    position: relative; inset: auto; opacity: 1 !important; visibility: visible !important;
    transform: none !important; width: 100%; height: 100vh;
    break-after: page; page-break-after: always; border-bottom: 1px solid #e2e9f5;
  }
  .slide:last-child { break-after: auto; page-break-after: auto; }
  .slide, .slide * { -webkit-print-color-adjust: exact; print-color-adjust: exact; }
}
