/* ============================================================
   THE HUMBLE NURSE — HOMEPAGE STYLES (css/home.css)
   All styles specific to index.html
   ============================================================ */


/* ── HERO ────────────────────────────────────────────────────  */
.hero {
  min-height: 100svh;
  display: grid;
  grid-template-columns: 1fr 1fr; /* 50/50 split */
  position: relative;
  overflow: hidden;
  background: var(--bg);
  transition: background 0.4s;
}

/* Left column — text */
.hero-left {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: calc(var(--nav-h) + 48px) var(--gutter) 80px;
  position: relative;
  z-index: 2;
}

.hero-h1 {
  font-family: var(--font-display);
  font-size: clamp(80px, 11vw, 152px);
  line-height: 0.88;
  letter-spacing: -1px;
  color: var(--fg);
  transition: color 0.4s;
  margin-bottom: 28px;
}

.hero-sub {
  font-size: 15px;
  font-weight: 300;
  line-height: 1.8;
  color: var(--fg2);
  max-width: 380px;
  margin-bottom: 32px;
  transition: color 0.4s;
}

.hero-ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.btn-arrow { font-size: 14px; }

/* Trust strip */
.hero-trust {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 44px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  transition: border-color 0.4s;
}
.trust-item {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--fg3);
  transition: color 0.4s;
}
.trust-sep {
  color: var(--border2);
  font-size: 12px;
}

/* Right column — photo */
.hero-right {
  position: relative;
  overflow: hidden;
}

/* Gradient blends photo into background */
.hero-right::before {
  content: '';
  position: absolute; inset: 0; z-index: 2;
  background: linear-gradient(
    to right,
    var(--bg) 0%,
    transparent 22%,
    transparent 82%,
    var(--bg) 100%
  );
  transition: background 0.4s;
  pointer-events: none;
}
.hero-right::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0; z-index: 2;
  height: 38%;
  background: linear-gradient(to top, var(--bg) 0%, transparent 100%);
  transition: background 0.4s;
  pointer-events: none;
}

.hero-photo {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
  transform: scale(1.06);
  transition: transform 6s ease;
  filter: grayscale(10%) contrast(1.04);
}
/* Photo scales to normal size after loading */
.hero-photo.loaded { transform: scale(1); }

/* Red accent line on left edge */
.hero-accent {
  position: absolute;
  top: 15%; bottom: 15%; left: 0;
  width: 2px;
  background: var(--red);
  z-index: 3;
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 1.4s var(--ease) 0.5s;
}
.hero-accent.visible { transform: scaleY(1); }

/* Floating name badge */
.hero-badge {
  position: absolute;
  bottom: 72px; left: 10%;
  z-index: 4;
  background: rgba(8, 8, 8, 0.72);
  border: 1px solid var(--border2);
  border-radius: 8px;
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  backdrop-filter: blur(14px);
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.8s var(--ease) 0.9s, transform 0.8s var(--ease) 0.9s;
}
[data-theme="light"] .hero-badge {
  background: rgba(242, 241, 237, 0.82);
}
.hero-badge.visible { opacity: 1; transform: translateY(0); }

.badge-pulse {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--red);
  flex-shrink: 0;
  box-shadow: 0 0 0 0 rgba(193, 18, 31, 0.5);
  animation: pulseBadge 2.2s ease infinite;
}
@keyframes pulseBadge {
  0%   { box-shadow: 0 0 0 0   rgba(193, 18, 31, 0.5); }
  70%  { box-shadow: 0 0 0 8px rgba(193, 18, 31, 0);   }
  100% { box-shadow: 0 0 0 0   rgba(193, 18, 31, 0);   }
}
.badge-name {
  font-size: 12px;
  font-weight: 500;
  color: var(--fg);
  transition: color 0.4s;
}
.badge-loc {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--fg3);
  margin-top: 2px;
  transition: color 0.4s;
}


/* ── AUDIENCE ────────────────────────────────────────────────  */
.aud-section {
  background: var(--bg2);
  padding: 100px var(--gutter);
  transition: background 0.4s;
}
.aud-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  margin-top: 48px;
  transition: background 0.4s, border-color 0.4s;
}
.aud-card {
  background: var(--bg2);
  padding: 40px 36px;
  position: relative;
  overflow: hidden;
  transition: background 0.35s;
}
/* Red glow on hover */
.aud-card::before {
  content: '';
  position: absolute; inset: 0;
  background: var(--red-glow);
  opacity: 0;
  transition: opacity 0.4s;
}
.aud-card:hover::before { opacity: 1; }
.aud-card:hover h3 { color: var(--red); }

.aud-num {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 2px;
  color: var(--fg3);
  margin-bottom: 16px;
  transition: color 0.4s;
}
.aud-icon {
  font-size: 26px;
  margin-bottom: 12px;
  display: block;
}
.aud-card h3 {
  font-family: var(--font-display);
  font-size: 26px;
  color: var(--fg);
  margin-bottom: 10px;
  transition: color 0.3s;
}
.aud-card p {
  font-size: 13px;
  font-weight: 300;
  line-height: 1.75;
  color: var(--fg2);
  transition: color 0.4s;
}
.aud-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 18px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--red);
  transition: gap 0.25s var(--ease);
}
.aud-card:hover .aud-link { gap: 14px; }


/* ── FILMSTRIP SECTION ───────────────────────────────────────
   Scroll height controls animation speed.
   Change 800vh to adjust. Larger = slower animation.        */
.filmstrip-section {
  position: relative;
  height: 800vh;
  background: var(--bg);
  transition: background 0.4s;
}

/* Sticky container holds the visual in place while scrolling */
.filmstrip-sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  width: 100%;
  overflow: hidden;
}

/* Canvas takes full viewport (crash cart frames drawn here) */
#filmCanvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

/* Gradient overlays blend canvas into bg */
.film-overlay-top {
  position: absolute; top: 0; left: 0; right: 0; height: 28%; z-index: 2;
  background: linear-gradient(to bottom, var(--bg) 0%, transparent 100%);
  transition: background 0.4s; pointer-events: none;
}
.film-overlay-bot {
  position: absolute; bottom: 0; left: 0; right: 0; height: 32%; z-index: 2;
  background: linear-gradient(to top, var(--bg) 0%, transparent 100%);
  transition: background 0.4s; pointer-events: none;
}
.film-overlay-left {
  position: absolute; top: 0; left: 0; bottom: 0; width: 35%; z-index: 2;
  background: linear-gradient(to right, var(--bg) 0%, transparent 100%);
  transition: background 0.4s; pointer-events: none;
}
.film-overlay-right {
  position: absolute; top: 0; right: 0; bottom: 0; width: 14%; z-index: 2;
  background: linear-gradient(to left, var(--bg) 0%, transparent 100%);
  transition: background 0.4s; pointer-events: none;
}

/* Section title (before scroll starts) */
.film-header {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  z-index: 4;
  text-align: center;
  pointer-events: none;
  opacity: 1;
  transition: opacity 0.5s var(--ease);
}
.film-header.hidden { opacity: 0; }
.film-header-title {
  font-family: var(--font-display);
  font-size: clamp(48px, 8vw, 110px);
  line-height: 0.92;
  color: var(--fg);
  transition: color 0.4s;
  white-space: nowrap;
}
.film-header-title em { color: var(--red); font-style: normal; }
.film-header-sub {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--fg3);
  margin-top: 14px;
  transition: color 0.4s;
}

/* Product text panels — left side, fade in/out */
.film-panel {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  z-index: 3;
  display: flex;
  align-items: center;
  padding: 0 var(--gutter);
  opacity: 0;
  transition: opacity 0.6s var(--ease);
  pointer-events: none;
}
.film-panel.active {
  opacity: 1;
  pointer-events: auto;
}
.film-content { max-width: 500px; }
.film-num {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.film-num::before {
  content: '';
  width: 20px; height: 1px;
  background: var(--red);
}
.film-title {
  font-family: var(--font-display);
  font-size: clamp(52px, 8vw, 104px);
  line-height: 0.9;
  color: var(--fg);
  transition: color 0.4s;
}
.film-desc {
  font-size: 16px;
  font-weight: 300;
  line-height: 1.8;
  color: var(--fg2);
  margin-top: 18px;
  max-width: 440px;
  transition: color 0.4s;
}
.film-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 22px;
  padding: 7px 16px;
  border-radius: 20px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 1px;
  text-transform: uppercase;
  background: var(--red-glow);
  color: var(--red);
}

/* Scroll progress indicator */
.film-scroll-indicator {
  position: absolute;
  bottom: 36px; right: var(--gutter);
  z-index: 5;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 6px;
}
.film-progress-bar {
  width: 80px; height: 1px;
  background: var(--border2);
  position: relative;
}
.film-progress-fill {
  height: 100%;
  background: var(--red);
  width: 0%;
  transition: width 0.1s linear;
}
.film-progress-label {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 1.5px;
  color: var(--fg3);
  text-transform: uppercase;
  transition: color 0.4s;
}


/* ── APPLE PHOTO MOMENT ──────────────────────────────────────  */
.photo-moment {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.photo-moment img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
  transform: scale(1.06);
  transition: transform 8s ease;
  filter: grayscale(15%) contrast(1.05);
}
.photo-moment.loaded img { transform: scale(1); }
.photo-overlay {
  position: absolute; inset: 0; z-index: 2;
  background: linear-gradient(
    to bottom,
    rgba(8,8,8,0.7) 0%,
    rgba(8,8,8,0.15) 35%,
    rgba(8,8,8,0.15) 65%,
    rgba(8,8,8,0.7) 100%
  );
}
.photo-caption {
  position: relative;
  z-index: 3;
  text-align: center;
  max-width: 800px;
  padding: 0 var(--gutter);
}
.photo-caption h2 {
  font-family: var(--font-display);
  font-size: clamp(56px, 9vw, 120px);
  line-height: 0.9;
  color: #fff;
  letter-spacing: -0.5px;
}
.photo-caption h2 em { color: var(--red); font-style: normal; }
.photo-caption p {
  font-size: 16px;
  font-weight: 300;
  line-height: 1.75;
  color: rgba(255,255,255,0.55);
  margin-top: 20px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}


/* ── MONITOR SECTION ─────────────────────────────────────────  */
.monitor-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

/* Protocol steps */
.protocol-steps {
  display: flex;
  flex-direction: column;
  margin-top: 36px;
}
.protocol-step {
  display: flex;
  gap: 20px;
  padding: 18px 0;
  border-bottom: 1px solid var(--border);
  transition: border-color 0.4s;
}
.protocol-step:first-child { border-top: 1px solid var(--border); }
.step-num {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--red);
  letter-spacing: 1.5px;
  min-width: 28px;
  padding-top: 2px;
  flex-shrink: 0;
}
.step-verb {
  font-family: var(--font-display);
  font-size: 20px;
  color: var(--fg);
  letter-spacing: 0.3px;
  transition: color 0.4s;
}
.step-desc {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--fg3);
  margin-top: 3px;
  transition: color 0.4s;
}

/* Monitor widget */
.monitor-panel {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: 0 24px 80px rgba(0,0,0,0.2);
  transition: background 0.4s, border-color 0.4s;
}
.monitor-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--border);
  transition: border-color 0.4s;
}
.monitor-status {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #4CAF50;
  display: flex;
  align-items: center;
  gap: 6px;
}
.status-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #4CAF50;
  animation: statusBlink 2s ease infinite;
}
@keyframes statusBlink {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.35; }
}
.monitor-time {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--fg3);
  transition: color 0.4s;
}

/* Vitals grid */
.vitals-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--border);
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 14px;
  transition: background 0.4s;
}
.vital {
  background: var(--bg);
  padding: 16px;
  text-align: center;
  transition: background 0.4s;
}
.vital-val {
  font-family: var(--font-mono);
  font-size: 28px;
  font-weight: 300;
  line-height: 1;
  margin-bottom: 6px;
}
.vital-val.green  { color: #4CAF50; }
.vital-val.yellow { color: #FFC107; }
.vital-val.red    { color: var(--red); }
.vital-label {
  font-family: var(--font-mono);
  font-size: 9px;
  color: var(--fg3);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  transition: color 0.4s;
}

/* ECG line */
.ecg-container {
  height: 52px;
  overflow: hidden;
  border-radius: 5px;
  background: var(--bg);
  border: 1px solid var(--border);
  transition: background 0.4s, border-color 0.4s;
}
.ecg-svg {
  width: 200%; height: 100%;
  animation: ecgScroll 2.2s linear infinite;
}
@keyframes ecgScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.monitor-footer {
  margin-top: 12px;
  padding-top: 10px;
  border-top: 1px solid var(--border);
  transition: border-color 0.4s;
}
.monitor-footer-label {
  font-family: var(--font-mono);
  font-size: 9px;
  color: var(--fg3);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  transition: color 0.4s;
}
.monitor-online {
  color: #4CAF50;
  font-family: var(--font-mono);
  font-size: 9px;
  margin-left: 12px;
}


/* ── SAMPLE SECTION ──────────────────────────────────────────  */
.sample-section {
  background: var(--bg2);
  transition: background 0.4s;
}
.sample-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.sample-list {
  list-style: none;
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.sample-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  color: var(--fg2);
  line-height: 1.6;
  transition: color 0.4s;
}
.sample-list li::before { content: '→'; color: var(--red); flex-shrink: 0; font-size: 11px; }

.email-form {
  display: flex;
  margin-top: 24px;
  max-width: 440px;
}
.email-form input {
  flex: 1;
  padding: 13px 16px;
  border: 1.5px solid var(--border2);
  border-right: none;
  border-radius: 3px 0 0 3px;
  background: var(--bg);
  color: var(--fg);
  font-size: 13px;
  font-family: var(--font-body);
  outline: none;
  transition: border-color 0.2s, background 0.4s, color 0.4s;
}
.email-form input:focus { border-color: var(--red); }
.email-form .btn-primary { border-radius: 0 3px 3px 0; padding: 13px 20px; }

.sample-disclaimer {
  font-family: var(--font-mono);
  font-size: 9px;
  color: var(--fg3);
  margin-top: 10px;
  letter-spacing: 0.5px;
  transition: color 0.4s;
}

/* Module preview card */
.module-preview {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.15);
  transition: background 0.4s, border-color 0.4s;
}
.module-header {
  background: var(--red);
  padding: 24px 28px;
  color: #fff;
}
.module-num {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 2px;
  text-transform: uppercase;
  opacity: 0.7;
  display: block;
}
.module-title {
  font-family: var(--font-display);
  font-size: 34px;
  margin-top: 4px;
  letter-spacing: 0.3px;
}
.module-body {
  padding: 20px 28px;
  background: var(--card);
  transition: background 0.4s;
}
.fw-row {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 9px 12px;
  border-radius: 5px;
  margin-bottom: 2px;
}
.fw-row.active { background: var(--red-glow); }
.fw-letter {
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--red);
  width: 20px;
  flex-shrink: 0;
}
.fw-label { font-size: 12px; color: var(--fg2); transition: color 0.4s; }
.fw-row.active .fw-label { color: var(--red); }
.module-footer {
  padding: 14px 28px 20px;
  border-top: 1px solid var(--border);
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  transition: border-color 0.4s;
}
.pop-tag {
  font-size: 10px;
  padding: 3px 9px;
  border-radius: 12px;
  font-weight: 500;
}
.pop-tag.pregnancy    { background: rgba(244,114,182,0.15); color: #f472b6; }
.pop-tag.breastfeeding{ background: rgba(251,191, 36,0.15); color: #fbbf24; }
.pop-tag.elderly      { background: rgba(167,139,250,0.15); color: #a78bfa; }
.pop-tag.pediatric    { background: rgba( 52,211,153,0.15); color: #34d399; }


/* ── PRICING ─────────────────────────────────────────────────  */
.pricing-section { background: var(--bg); transition: background 0.4s; }
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  margin-top: 52px;
  transition: background 0.4s, border-color 0.4s;
}
.price-card {
  background: var(--card);
  padding: 36px 28px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: background 0.35s;
}
.price-card:hover { background: var(--bg3); }
.price-card.featured::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--red);
}
.price-badge {
  display: inline-block;
  padding: 3px 9px;
  border-radius: 10px;
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 16px;
  width: fit-content;
}
.free-badge   { background: rgba(34,197, 94,0.12); color: #4ade80; }
.hot-badge    { background: var(--red); color: #fff; }
.pdf-badge,
.single-badge { background: var(--red-glow); color: var(--red); }

.price-title {
  font-family: var(--font-display);
  font-size: 26px;
  color: var(--fg);
  margin-bottom: 8px;
  transition: color 0.4s;
}
.price-desc {
  font-size: 12px;
  font-weight: 300;
  line-height: 1.65;
  color: var(--fg2);
  flex: 1;
  transition: color 0.4s;
}
.price-amount {
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
  transition: border-color 0.4s;
}
.price-num {
  font-family: var(--font-display);
  font-size: 38px;
  color: var(--red);
  line-height: 1;
}
.price-unit {
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--fg3);
  font-weight: 300;
  transition: color 0.4s;
}
.price-period {
  font-family: var(--font-mono);
  font-size: 9px;
  color: var(--fg3);
  margin-top: 3px;
  transition: color 0.4s;
}
.price-features {
  list-style: none;
  margin-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.price-features li {
  font-size: 11px;
  color: var(--fg2);
  display: flex;
  gap: 7px;
  transition: color 0.4s;
}
.price-features li::before { content: '—'; color: var(--red); flex-shrink: 0; }

.price-btn {
  margin-top: 20px;
  padding: 11px 0;
  text-align: center;
  border-radius: 3px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
  display: block;
  width: 100%;
}
.filled-btn { background: var(--red); color: #fff; border: none; }
.filled-btn:hover { background: var(--red-bright); }
.ghost-btn {
  background: transparent;
  color: var(--fg2);
  border: 1px solid var(--border2);
  transition: border-color 0.2s, color 0.2s, background 0.4s;
  text-decoration: none;
  display: block;
}
.ghost-btn:hover { border-color: var(--fg); color: var(--fg); }


/* ── TESTIMONIALS ────────────────────────────────────────────  */
.testi-section { transition: background 0.4s; }
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 52px;
}
.testi-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  display: flex;
  flex-direction: column;
  transition: border-color 0.3s, transform 0.25s var(--ease), background 0.4s;
}
.testi-card:hover {
  border-color: rgba(193,18,31,0.35);
  transform: translateY(-4px);
}
.testi-stars {
  color: var(--red);
  font-size: 12px;
  letter-spacing: 3px;
  margin-bottom: 18px;
}
.testi-quote {
  font-size: 14px;
  font-weight: 300;
  line-height: 1.75;
  color: var(--fg2);
  font-style: italic;
  flex: 1;
  transition: color 0.4s;
}
.testi-author {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid var(--border);
  transition: border-color 0.4s;
}
.testi-avatar {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--red);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 16px;
  flex-shrink: 0;
}
.testi-name {
  font-size: 12px;
  font-weight: 500;
  color: var(--fg);
  transition: color 0.4s;
}
.testi-role {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--fg3);
  margin-top: 2px;
  transition: color 0.4s;
}


/* ── QUOTE SECTION ───────────────────────────────────────────  */
.quote-section {
  padding: 140px var(--gutter);
  text-align: center;
  position: relative;
  overflow: hidden;
  background: var(--bg);
  transition: background 0.4s;
}
.quote-glow {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 800px; height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--red-glow) 0%, transparent 65%);
  pointer-events: none;
}
.quote-text {
  font-family: var(--font-display);
  font-size: clamp(36px, 6vw, 80px);
  line-height: 1.05;
  max-width: 900px;
  margin: 0 auto;
  color: var(--fg);
  position: relative; z-index: 1;
  transition: color 0.4s;
}
.quote-text em { color: var(--red); font-style: normal; }
.quote-attr {
  margin-top: 24px;
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--fg3);
  position: relative; z-index: 1;
  transition: color 0.4s;
}


/* ── CTA SECTION ─────────────────────────────────────────────  */
.cta-section {
  padding: 160px var(--gutter);
  text-align: center;
  position: relative;
  overflow: hidden;
  background: var(--bg);
  transition: background 0.4s;
}
.cta-glow {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 700px; height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--red-glow) 0%, transparent 65%);
  pointer-events: none;
}
.cta-headline {
  font-family: var(--font-display);
  font-size: clamp(64px, 10vw, 140px);
  line-height: 0.9;
  color: var(--fg);
  position: relative; z-index: 1;
  transition: color 0.4s;
}
.cta-headline em { color: var(--red); font-style: normal; }
.cta-sub {
  font-size: 16px;
  font-weight: 300;
  color: var(--fg2);
  margin-top: 20px;
  position: relative; z-index: 1;
  transition: color 0.4s;
}
.cta-buttons {
  display: flex;
  gap: 12px;
  justify-content: center;
  margin-top: 44px;
  flex-wrap: wrap;
  position: relative; z-index: 1;
}


/* ── RESPONSIVE ──────────────────────────────────────────────  */

/* Tablet landscape */
@media (max-width: 1100px) {
  .pricing-grid { grid-template-columns: repeat(2, 1fr); }
  .monitor-layout { grid-template-columns: 1fr; gap: 48px; }
}

/* Tablet portrait */
@media (max-width: 900px) {
  /* Hero: stack vertically, hide photo */
  .hero { grid-template-columns: 1fr; min-height: 100svh; }
  .hero-right { display: none; }
  .hero-left {
    padding-top: calc(var(--nav-h) + 60px);
    padding-bottom: 80px;
  }
  .hero-h1 { font-size: clamp(68px, 16vw, 100px); }

  /* Audience: single column */
  .aud-grid { grid-template-columns: 1fr; }
  .aud-section { padding: 72px var(--gutter); }

  /* Filmstrip: hide on mobile (canvas performs poorly) */
  .film-panel { padding: 0 var(--gutter); }
  .film-header-title {
    font-size: clamp(36px, 10vw, 72px);
    white-space: normal;
    text-align: center;
  }

  /* Sample, photo, monitor */
  .sample-layout { grid-template-columns: 1fr; gap: 40px; }
  .photo-moment  { height: 70vh; }
}

/* Mobile */
@media (max-width: 600px) {
  .pricing-grid { grid-template-columns: 1fr; }
  .testi-grid   { grid-template-columns: 1fr; }
  .cta-buttons  { flex-direction: column; align-items: center; }
  .btn-primary,
  .btn-outline  { width: 100%; max-width: 300px; justify-content: center; }
  .email-form {
    flex-direction: column;
    max-width: 100%;
  }
  .email-form input {
    border-right: 1.5px solid var(--border2);
    border-radius: 3px;
    margin-bottom: 8px;
  }
  .email-form .btn-primary {
    border-radius: 3px;
    width: 100%;
    justify-content: center;
  }
  .hero-trust   { gap: 10px; }
  .trust-sep    { display: none; }
  .cta-section  { padding: 100px var(--gutter); }
  .quote-section{ padding: 80px var(--gutter); }
}
