/* ===========================
   RESET & BASE
   =========================== */

*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary: #2C332F;
  --accent: #53CF54;
  --accent-hover: #45b846;
  --bg-light: #F8F7F4;
  --bg-dark: #2C332F;
  --text-dark: #2C332F;
  --text-light: #F8F7F4;
  --text-muted: #9CA3AF;
  --text-muted-light: rgba(255,255,255,0.55);
  --border-subtle: rgba(255,255,255,0.08);
  --radius: 12px;
  --radius-lg: 20px;
  --transition: 0.2s ease;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--text-dark);
  background: var(--bg-light);
  line-height: 1.6;
  font-size: 16px;
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}


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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: inherit;
  font-weight: 600;
  border: none;
  cursor: pointer;
  border-radius: 10px;
  transition: all var(--transition);
  letter-spacing: -0.01em;
  white-space: nowrap;
}

.btn-sm {
  font-size: 14px;
  padding: 8px 18px;
  border-radius: 8px;
}

.btn-lg {
  font-size: 16px;
  padding: 14px 32px;
}

.btn-accent {
  background: var(--accent);
  color: #fff;
}

.btn-accent:hover {
  background: var(--accent-hover);
  transform: translateY(-1px);
  box-shadow: 0 4px 20px rgba(83, 207, 84, 0.3);
}

.btn-ghost {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255,255,255,0.25);
}

.btn-ghost:hover {
  border-color: rgba(255,255,255,0.5);
  background: rgba(255,255,255,0.05);
}

.btn-full {
  width: 100%;
}


/* ===========================
   NAVBAR
   =========================== */

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--bg-dark);
  border-bottom: 1px solid var(--border-subtle);
  transition: background 0.3s;
}

.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.navbar-logo img {
  height: 36px;
  width: auto;
}

.navbar-links {
  display: flex;
  align-items: center;
  gap: 24px;
}

.nav-link {
  color: var(--text-muted-light);
  font-size: 14px;
  font-weight: 500;
  transition: color var(--transition);
}

.nav-link:hover {
  color: #fff;
}


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

.hero {
  background: var(--bg-dark);
  padding: 140px 0 80px;
  overflow: hidden;
}

.hero .container {
  display: flex;
  align-items: center;
  gap: 56px;
}

.hero-content {
  text-align: left;
  flex: 0 0 44%;
  max-width: 44%;
}

.hero-headline {
  font-size: clamp(36px, 5.5vw, 64px);
  font-weight: 800;
  color: #fff;
  line-height: 1.08;
  letter-spacing: -0.035em;
  margin-bottom: 20px;
}

.hero-sub {
  font-size: clamp(16px, 2vw, 19px);
  color: var(--text-muted-light);
  max-width: 560px;
  margin: 0 0 36px;
  line-height: 1.6;
}

.hero-ctas {
  display: flex;
  gap: 14px;
  justify-content: flex-start;
  flex-wrap: wrap;
}

.hero-screenshot,
.hero-video {
  flex: 1;
  min-width: 0;
  margin-top: 0;
  perspective: 1200px;
}

.hero-screenshot .browser-frame,
.hero-video .hero-loom-wrap {
  transform: rotateX(4deg) rotateY(-1deg);
  transition: transform 0.5s ease;
}

.hero-screenshot .browser-frame:hover,
.hero-video .hero-loom-wrap:hover {
  transform: rotateX(0) rotateY(0);
}

.hero-video-eyebrow {
  color: var(--accent);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  margin-bottom: 14px;
  text-transform: uppercase;
}

.hero-loom-wrap {
  margin-top: 0;
  max-width: none;
}


/* ===========================
   BROWSER FRAME
   =========================== */

.browser-frame {
  background: #1a1f1c;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow:
    0 2px 4px rgba(0,0,0,0.1),
    0 8px 24px rgba(0,0,0,0.15),
    0 32px 64px rgba(0,0,0,0.2);
  border: 1px solid rgba(255,255,255,0.06);
}

.browser-frame--light {
  background: #1a1f1c;
}

.browser-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 18px;
  background: rgba(255,255,255,0.03);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.browser-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
}

.browser-dot:first-child { background: #ff5f57; }
.browser-dot:nth-child(2) { background: #febc2e; }
.browser-dot:nth-child(3) { background: #28c840; }

.browser-address {
  margin-left: 12px;
  font-size: 12px;
  color: rgba(255,255,255,0.3);
  background: rgba(255,255,255,0.05);
  padding: 4px 14px;
  border-radius: 6px;
  flex: 1;
  max-width: 260px;
}

.browser-content img {
  width: 100%;
  display: block;
}


/* ===========================
   DEMO SECTION
   =========================== */

.demo-section {
  background: var(--bg-dark);
  padding: 80px 0;
  text-align: center;
  border-top: 1px solid var(--border-subtle);
}

.demo-headline {
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin-bottom: 12px;
}

.demo-subtext {
  font-size: clamp(16px, 2vw, 18px);
  color: var(--text-muted-light);
  margin-bottom: 40px;
}

.demo-eyebrow {
  font-size: 13px; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--accent); margin-bottom: 12px;
}

.loom-embed-wrap {
  position: relative; padding-bottom: 56.25%; height: 0;
  border-radius: 16px; overflow: hidden;
  box-shadow: 0 8px 48px rgba(0,0,0,0.18);
  margin-top: 32px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.dashboard-proof-shot {
  margin: 32px auto 0;
  max-width: 900px;
}



/* ===========================
   SOCIAL PROOF
   =========================== */

.social-proof {
  background: var(--bg-light);
  padding: 72px 0;
  text-align: center;
}

.proof-tagline {
  font-size: 17px;
  color: var(--text-muted);
  margin-bottom: 40px;
  font-weight: 500;
}

.proof-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}

.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.stat-number {
  font-size: 36px;
  font-weight: 800;
  color: var(--text-dark);
  letter-spacing: -0.03em;
}

.stat-label {
  font-size: 14px;
  color: var(--text-muted);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.stat-divider {
  width: 1px;
  height: 48px;
  background: #ddd;
}


/* ===========================
   PROBLEM
   =========================== */

.problem {
  overflow: hidden;
}

.problem-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 500px;
}

.problem-left {
  background: var(--bg-dark);
  padding: 80px 64px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.problem-left h2 {
  font-size: clamp(28px, 3vw, 38px);
  color: #fff;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
}

.problem-left p {
  font-size: 16px;
  color: var(--text-muted-light);
  line-height: 1.7;
  max-width: 440px;
}

.problem-right {
  background: var(--bg-light);
  padding: 80px 64px;
  display: flex;
  align-items: center;
}

.pain-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.pain-list li {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 16px;
  font-weight: 500;
  color: var(--text-dark);
}

.pain-icon {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  color: #ef4444;
  opacity: 0.7;
}


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

.features {
  background: var(--bg-light);
  padding: 100px 0;
}

.section-header {
  text-align: center;
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin-bottom: 60px;
  color: var(--text-dark);
}

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

.feature-card {
  background: #fff;
  border: 1px solid #e8e7e4;
  border-radius: var(--radius);
  padding: 36px 28px;
  transition: all 0.3s ease;
}

.feature-card:hover {
  border-color: #d0cfcc;
  box-shadow: 0 8px 32px rgba(0,0,0,0.06);
  transform: translateY(-2px);
}

.feature-icon {
  width: 44px;
  height: 44px;
  background: var(--bg-dark);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.feature-icon svg {
  width: 22px;
  height: 22px;
  color: var(--accent);
}

.feature-card h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}

.feature-card p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.6;
}


/* ===========================
   DEEP DIVE
   =========================== */

.deep-dive {
  background: var(--bg-dark);
  padding: 100px 0;
}

.deep-dive-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 64px;
  align-items: center;
}

.deep-dive-text h2 {
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 800;
  color: #fff;
  line-height: 1.15;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
}

.deep-dive-text p {
  font-size: 16px;
  color: var(--text-muted-light);
  line-height: 1.7;
  max-width: 460px;
}

.deep-dive-highlights {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-top: 56px;
  flex-wrap: wrap;
}

.highlight {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  color: rgba(255,255,255,0.7);
  font-weight: 500;
}

.highlight-icon {
  width: 20px;
  height: 20px;
  color: var(--accent);
  flex-shrink: 0;
}


/* ===========================
   PRICING
   =========================== */

.pricing {
  background: var(--bg-light);
  padding: 100px 0;
}

.pricing-card {
  max-width: 460px;
  margin: 0 auto;
  background: var(--bg-dark);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 16px 64px rgba(0,0,0,0.12);
}

.pricing-header {
  padding: 44px 40px 32px;
  text-align: center;
  border-bottom: 1px solid var(--border-subtle);
}

.pricing-label {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
  background: rgba(83,207,84,0.1);
  padding: 4px 14px;
  border-radius: 20px;
  margin-bottom: 20px;
}

.pricing-amount {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 2px;
  margin-bottom: 14px;
}

.pricing-dollar {
  font-size: 28px;
  font-weight: 700;
  color: #fff;
}

.pricing-number {
  font-size: 64px;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.04em;
  line-height: 1;
}

.pricing-period {
  font-size: 18px;
  color: var(--text-muted-light);
  font-weight: 500;
}

.pricing-desc {
  font-size: 14px;
  color: var(--text-muted-light);
  line-height: 1.5;
}

.pricing-features {
  list-style: none;
  padding: 32px 40px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.pricing-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  color: rgba(255,255,255,0.8);
  font-weight: 500;
}

.check-icon {
  width: 20px;
  height: 20px;
  color: var(--accent);
  flex-shrink: 0;
}

.pricing-card .btn {
  margin: 0 40px 40px;
  width: calc(100% - 80px);
}


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

.footer {
  background: var(--bg-dark);
  padding: 48px 0;
  border-top: 1px solid var(--border-subtle);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
}

.footer-logo {
  height: 28px;
  width: auto;
  opacity: 0.6;
}

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

.footer-links a {
  font-size: 14px;
  color: rgba(255,255,255,0.4);
  font-weight: 500;
  transition: color var(--transition);
}

.footer-links a:hover {
  color: rgba(255,255,255,0.8);
}

.footer-copy {
  font-size: 13px;
  color: rgba(255,255,255,0.3);
  width: 100%;
  text-align: center;
  margin-top: 16px;
}


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

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}


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

@media (max-width: 900px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .problem-inner {
    grid-template-columns: 1fr;
  }

  .problem-left,
  .problem-right {
    padding: 56px 32px;
  }

  .deep-dive-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .deep-dive-text {
    text-align: center;
  }

  .deep-dive-text p {
    margin: 0 auto;
  }
}

@media (max-width: 640px) {
  .container {
    padding: 0 18px;
  }

  .hero {
    padding: 110px 0 56px;
  }

  .hero-ctas {
    flex-direction: column;
    align-items: center;
  }

  .hero-ctas .btn {
    width: 100%;
    max-width: 320px;
  }

  .hero .container {
    flex-direction: column;
  }

  .hero-content {
    text-align: center;
    flex: none;
    max-width: 100%;
  }

  .hero-ctas {
    justify-content: center;
  }

  .hero-screenshot,
  .hero-video {
    width: 100%;
    margin-top: 40px;
  }

  .hero-screenshot .browser-frame,
  .hero-video .hero-loom-wrap {
    transform: none;
  }

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

  .proof-stats {
    gap: 28px;
  }

  .stat-divider {
    display: none;
  }

  .stat-number {
    font-size: 28px;
  }

  .problem-left,
  .problem-right {
    padding: 40px 24px;
  }

  .deep-dive {
    padding: 64px 0;
  }

  .deep-dive-highlights {
    flex-direction: column;
    align-items: center;
    gap: 16px;
  }

  .pricing-header {
    padding: 32px 24px 24px;
  }

  .pricing-features {
    padding: 24px;
  }

  .pricing-card .btn {
    margin: 0 24px 24px;
    width: calc(100% - 48px);
  }

  .pricing-number {
    font-size: 52px;
  }

  .footer-inner {
    flex-direction: column;
    text-align: center;
  }

  .footer-copy {
    margin-top: 8px;
  }

  .section-header {
    margin-bottom: 40px;
  }

  .demo-section {
    padding: 56px 0;
  }

  .demo-play-card {
    padding: 36px 48px;
  }

  .social-proof {
    padding: 48px 0;
  }

  .features {
    padding: 64px 0;
  }

  .pricing {
    padding: 64px 0;
  }
}


/* ===========================
   WHO IT'S FOR
   =========================== */

.who-for {
  background: var(--bg-dark);
  padding: 100px 0;
}

.who-for-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 64px;
  align-items: center;
}

.who-for-left h2 {
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 800;
  color: #fff;
  line-height: 1.15;
  letter-spacing: -0.03em;
}

.who-for-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 28px;
}

.who-for-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 16px;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  line-height: 1.5;
}

.who-check {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  color: var(--accent);
  margin-top: 1px;
}

.who-for-coda {
  font-size: 15px;
  color: var(--text-muted-light);
  font-style: italic;
  padding-top: 20px;
  border-top: 1px solid var(--border-subtle);
}


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

.testimonials {
  background: var(--bg-light);
  padding: 100px 0;
}

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

.testimonial-card {
  background: #fff;
  border: 1px solid #e8e7e4;
  border-radius: var(--radius);
  padding: 36px 28px 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: all 0.3s ease;
}

.testimonial-card:hover {
  border-color: #d0cfcc;
  box-shadow: 0 8px 32px rgba(0,0,0,0.06);
  transform: translateY(-2px);
}

.testimonial-quote-mark {
  font-size: 48px;
  line-height: 1;
  color: var(--accent);
  font-family: Georgia, serif;
  font-weight: 700;
}

.testimonial-text {
  font-size: 16px;
  line-height: 1.65;
  color: var(--text-dark);
  flex: 1;
}

.testimonial-author {
  display: flex;
  flex-direction: column;
  gap: 3px;
  padding-top: 16px;
  border-top: 1px solid #f0efec;
}

.testimonial-name {
  font-size: 14px;
  font-weight: 700;
  color: var(--text-dark);
}

.testimonial-location {
  font-size: 13px;
  color: var(--text-muted);
}


/* ===========================
   PRICING RISK REVERSAL
   =========================== */

.pricing-risk-reversal {
  background: rgba(83, 207, 84, 0.12);
  border: 1px solid rgba(83, 207, 84, 0.25);
  border-radius: 10px;
  padding: 14px 18px;
  font-size: 14px;
  color: rgba(255,255,255,0.9);
  line-height: 1.5;
  margin-top: 16px;
  text-align: center;
}

.pricing-risk-reversal strong {
  color: var(--accent);
  font-weight: 700;
}


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

.faq {
  background: var(--bg-light);
  padding: 100px 0;
}

.faq-list {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid #e8e7e4;
  border-radius: var(--radius);
  overflow: hidden;
}

.faq-item {
  border-bottom: 1px solid #e8e7e4;
}

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

.faq-question {
  width: 100%;
  background: #fff;
  border: none;
  cursor: pointer;
  font-family: inherit;
  font-size: 16px;
  font-weight: 600;
  color: var(--text-dark);
  text-align: left;
  padding: 22px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  transition: background var(--transition);
  line-height: 1.4;
}

.faq-question:hover {
  background: #fafaf8;
}

.faq-icon {
  font-size: 22px;
  font-weight: 400;
  color: var(--accent);
  flex-shrink: 0;
  line-height: 1;
  transition: transform 0.25s ease;
  display: inline-block;
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s cubic-bezier(0.16, 1, 0.3, 1),
              padding 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  background: #fafaf8;
}

.faq-answer p {
  padding: 0 24px 22px;
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.7;
}

.faq-item.open .faq-answer {
  max-height: 300px;
}


/* ===========================
   TRUST BADGES (checkout pages)
   =========================== */

.checkout-trust {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  padding: 12px 24px;
  font-size: 12px;
  color: var(--text-muted);
  font-weight: 500;
  border-bottom: 1px solid #f0efec;
}

.checkout-trust-item {
  display: flex;
  align-items: center;
  gap: 5px;
  white-space: nowrap;
}

.checkout-trust-sep {
  color: #d1d5db;
}


/* ===========================
   RESPONSIVE — new sections
   =========================== */

@media (max-width: 900px) {
  .who-for-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

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

@media (max-width: 640px) {
  .who-for {
    padding: 64px 0;
  }

  .testimonials {
    padding: 64px 0;
  }

  .faq {
    padding: 64px 0;
  }

  .checkout-trust {
    gap: 12px;
  }
}


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

.video-testimonials {
  background: var(--bg-light);
  padding: 100px 0 60px;
}

.video-testimonials-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  margin-top: 48px;
}

.video-card {
  background: #fff;
  border: 1px solid #e8e7e4;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0,0,0,0.05);
  transition: all 0.3s ease;
}

.video-card:hover {
  border-color: #d0cfcc;
  box-shadow: 0 8px 32px rgba(0,0,0,0.09);
  transform: translateY(-2px);
}

.video-card video {
  display: block;
  width: 100%;
  background: #1a1a1a;
}

.video-card-info {
  display: flex;
  flex-direction: column;
  gap: 3px;
  padding: 16px 20px 18px;
  border-top: 1px solid #f0efec;
}

.video-doctor-name {
  font-size: 15px;
  font-weight: 600;
  color: var(--text-dark);
  font-family: 'Inter', sans-serif;
}

.video-doctor-location {
  font-size: 13px;
  color: var(--text-muted);
  font-family: 'Inter', sans-serif;
}

@media (max-width: 900px) {
  .video-testimonials-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 640px) {
  .video-testimonials {
    padding: 64px 0 40px;
  }
}

/* ===========================
   TESTIMONIAL PHOTOS
   =========================== */

.testimonial-author {
  flex-direction: row !important;
  align-items: center;
  gap: 12px !important;
}

.testimonial-photo {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  border: 2px solid #e8e7e4;
}

.testimonial-author-info {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

/* ===========================
   LOOM FACADE / THUMBNAIL
   =========================== */

.loom-facade {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  cursor: pointer;
  overflow: hidden;
  border-radius: 16px;
}

.loom-facade-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
  transition: transform 0.3s ease;
}

.loom-facade:hover .loom-facade-img {
  transform: scale(1.02);
}

.loom-play-btn {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 72px; height: 72px;
  background: rgba(255,255,255,0.95);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 24px rgba(0,0,0,0.3);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.loom-facade:hover .loom-play-btn {
  transform: translate(-50%, -50%) scale(1.1);
  box-shadow: 0 8px 32px rgba(0,0,0,0.4);
}

.loom-play-btn svg {
  margin-left: 4px;
  fill: #1a1f1c;
}

.loom-duration {
  position: absolute;
  bottom: 16px;
  right: 16px;
  background: rgba(0,0,0,0.7);
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 20px;
  letter-spacing: 0.02em;
}

/* ===========================
   HERO $1 OFFER LINE
   =========================== */

.hero-offer {
  font-size: 13px;
  color: rgba(255,255,255,0.45);
  margin-top: 14px;
  letter-spacing: 0.02em;
}

/* ===========================
   AUSTIN CREDIBILITY BLOCK
   =========================== */

.austin-credibility {
  background: var(--bg-light);
  padding: 80px 0;
  border-top: 1px solid #e8e7e4;
}

.austin-cred-inner {
  display: flex;
  align-items: center;
  gap: 48px;
  max-width: 860px;
  margin: 0 auto;
}

.austin-cred-photo {
  flex-shrink: 0;
}

.austin-cred-photo img {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  object-fit: cover;
  object-position: top;
  border: 3px solid #e8e7e4;
  box-shadow: 0 4px 16px rgba(0,0,0,0.1);
}

.austin-cred-quote {
  font-size: 19px;
  line-height: 1.6;
  color: var(--text-dark);
  font-style: italic;
  margin-bottom: 16px;
}

.austin-cred-name {
  font-size: 15px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 4px;
}

.austin-cred-sub {
  font-size: 13px;
  color: var(--text-muted);
}

@media (max-width: 640px) {
  .austin-cred-inner {
    flex-direction: column;
    text-align: center;
    gap: 24px;
  }
}

/* ===========================
   FINAL CTA SECTION
   =========================== */

.final-cta {
  background: var(--bg-dark);
  padding: 96px 0;
  text-align: center;
}

.final-cta-headline {
  font-size: clamp(32px, 4.5vw, 54px);
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 16px;
}

.final-cta-sub {
  font-size: 18px;
  color: rgba(255,255,255,0.6);
  max-width: 540px;
  margin: 0 auto 36px;
  line-height: 1.6;
}

.final-cta-actions {
  margin-bottom: 16px;
}

.final-cta-fine {
  font-size: 13px;
  color: rgba(255,255,255,0.35);
  letter-spacing: 0.02em;
}
