/* ==========================================================================
   Homepage Styles — CSI Dry Eye
   ========================================================================== */

/* ==========================================================================
   HERO
   ========================================================================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-bg-navy);
  overflow: hidden;
  padding-top: var(--header-height);
}

.hero__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero__mesh-gradient {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(0, 60, 100, 0.6) 0%, transparent 55%),
    radial-gradient(ellipse at 80% 20%, rgba(0, 40, 80, 0.5) 0%, transparent 50%),
    radial-gradient(ellipse at 60% 80%, rgba(250, 187, 0, 0.06) 0%, transparent 45%);
  animation: mesh-drift 20s ease-in-out infinite alternate;
  pointer-events: none;
}

@keyframes mesh-drift {
  0%   { transform: scale(1)   translate(0, 0); }
  33%  { transform: scale(1.05) translate(-2%, 1%); }
  66%  { transform: scale(0.98) translate(1%, -1%); }
  100% { transform: scale(1.03) translate(-1%, 2%); }
}

.hero__container {
  position: relative;
  z-index: var(--z-content);
}

.hero__content {
  text-align: center;
  padding-block: var(--space-4xl) var(--space-2xl);
  padding-inline: var(--space-lg);
  max-width: 900px;
  margin-inline: auto;
}

/* ---- Hero Pill ---- */
.hero__pill {
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  background: rgba(250, 187, 0, 0.12);
  border: 1px solid rgba(250, 187, 0, 0.25);
  color: var(--color-accent);
  border-radius: var(--radius-full);
  font-size: var(--fs-sm);
  font-weight: var(--fw-semibold);
  padding: 0.4em 1.2em;
  margin-bottom: var(--space-lg);
  opacity: 0;
  animation: hero-fade-in 0.6s ease forwards 0.1s;
}

.hero__pill-dot {
  width: 6px;
  height: 6px;
  border-radius: var(--radius-full);
  background: var(--color-accent);
  animation: pulse-dot 2s ease-in-out infinite;
  flex-shrink: 0;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; }
  50%      { opacity: 0.4; }
}

@keyframes hero-fade-in {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ---- Hero Title ---- */
.hero__title {
  font-size: clamp(2.5rem, 2rem + 4vw, 4.5rem);
  color: #fff;
  font-weight: var(--fw-extrabold);
  letter-spacing: -0.03em;
  line-height: var(--lh-tight);
  margin-bottom: var(--space-lg);
  opacity: 0;
  transform: translateY(20px);
  animation: hero-fade-in 0.6s ease forwards 0.2s;
}

.hero__title em {
  font-style: normal;
  background: linear-gradient(135deg, var(--color-accent), #FFD54F);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ---- Hero Subtitle ---- */
.hero__subtitle {
  font-size: var(--fs-lg);
  color: rgba(255, 255, 255, 0.65);
  max-width: 640px;
  margin-inline: auto;
  line-height: var(--lh-relaxed);
  margin-bottom: var(--space-xl);
  opacity: 0;
  transform: translateY(20px);
  animation: hero-fade-in 0.6s ease forwards 0.35s;
}

/* ---- Hero CTAs ---- */
.hero__ctas {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-md);
  margin-bottom: var(--space-3xl);
  opacity: 0;
  transform: translateY(20px);
  animation: hero-fade-in 0.6s ease forwards 0.5s;
}

.hero__ctas .btn--primary {
  background: var(--color-accent);
  color: var(--color-bg-navy);
  border-color: var(--color-accent);
  font-weight: var(--fw-bold);
}

.hero__ctas .btn--primary:hover {
  background: var(--color-accent-dark);
  border-color: var(--color-accent-dark);
}

.hero__ctas .btn--outline-white {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.25);
  background: transparent;
}

.hero__ctas .btn--outline-white:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.4);
}

/* ---- Hero Audience Cards ---- */
.hero__audiences {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
  max-width: 700px;
  margin-inline: auto;
  margin-bottom: var(--space-3xl);
  opacity: 0;
  transform: translateY(20px);
  animation: hero-fade-in 0.6s ease forwards 0.6s;
}

@media (min-width: 640px) {
  .hero__audiences {
    grid-template-columns: 1fr 1fr;
  }
}

.hero__audience-card {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  padding: var(--space-lg) var(--space-xl);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  text-decoration: none;
  color: #fff;
  transition: background var(--transition-base), transform var(--transition-base);
}

.hero__audience-card:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
}

.hero__audience-icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-md);
  flex-shrink: 0;
}

.hero__audience-icon--practitioner {
  background: rgba(0, 92, 137, 0.3);
  color: #5bb8f5;
}

.hero__audience-icon--patient {
  background: rgba(250, 187, 0, 0.2);
  color: var(--color-accent);
}

.hero__audience-text {
  font-size: var(--fs-sm);
  font-weight: var(--fw-semibold);
  text-align: left;
}

.hero__audience-text span {
  font-size: var(--fs-xs);
  color: rgba(255, 255, 255, 0.5);
  font-weight: var(--fw-regular);
  display: block;
}

.hero__audience-arrow {
  margin-left: auto;
  color: rgba(255, 255, 255, 0.3);
  transition: transform var(--transition-fast);
  flex-shrink: 0;
}

.hero__audience-card:hover .hero__audience-arrow {
  transform: translateX(3px);
}

/* ---- Hero Visual / Screenshot ---- */
.hero__visual {
  max-width: 1000px;
  margin-inline: auto;
}

.hero__screenshot-wrapper {
  position: relative;
  opacity: 0;
  transform: translateY(40px) scale(0.96);
  animation: hero-screenshot-in 0.8s ease forwards 0.7s;
}

@keyframes hero-screenshot-in {
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.hero__screenshot {
  width: 100%;
  border-radius: var(--radius-xl);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.35), 0 10px 20px rgba(0, 0, 0, 0.2);
}

.hero__screenshot-glow {
  position: absolute;
  inset: -20%;
  background: radial-gradient(ellipse at center, rgba(0, 92, 137, 0.2) 0%, transparent 60%);
  pointer-events: none;
  z-index: -1;
}


/* ==========================================================================
   SOCIAL PROOF BAR
   ========================================================================== */
.proof-bar {
  background: var(--color-bg-light);
  border-bottom: 1px solid var(--color-border-light);
  padding: var(--space-2xl) var(--space-lg);
}

.proof-bar__stats {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: var(--space-2xl) var(--space-3xl);
  max-width: 1100px;
  margin-inline: auto;
}

.proof-bar__stat {
  text-align: center;
}

.proof-bar__number {
  font-family: var(--font-heading);
  font-size: var(--fs-2xl);
  font-weight: var(--fw-bold);
  color: var(--color-primary);
  line-height: var(--lh-tight);
}

.proof-bar__label {
  font-size: var(--fs-xs);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-text-light);
}

.proof-bar__divider {
  width: 1px;
  height: 40px;
  background: var(--color-border);
  display: none;
}

@media (min-width: 768px) {
  .proof-bar__divider {
    display: block;
  }
}

.proof-bar__logos {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: var(--space-2xl);
  margin-top: var(--space-xl);
  padding-top: var(--space-xl);
  border-top: 1px solid var(--color-border-light);
  width: 100%;
}

.proof-bar__logos span {
  font-size: var(--fs-xs);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-text-light);
}

.proof-bar__logo {
  filter: grayscale(100%);
  opacity: 0.5;
  transition: filter var(--transition-base), opacity var(--transition-base);
  height: 28px;
  width: auto;
}

.proof-bar__logo:hover {
  filter: grayscale(0%);
  opacity: 1;
}


/* ==========================================================================
   FOMO SECTION
   ========================================================================== */
.fomo {
  background: var(--color-bg-navy);
  padding: var(--space-5xl) var(--space-lg);
  position: relative;
  overflow: hidden;
}

.fomo__grid {
  position: relative;
  z-index: var(--z-content);
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-3xl);
  max-width: 1200px;
  margin-inline: auto;
}

@media (min-width: 1024px) {
  .fomo__grid {
    grid-template-columns: 1fr 1fr;
  }
}

.fomo__eyebrow {
  display: block;
  font-size: var(--fs-sm);
  font-weight: var(--fw-semibold);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-accent);
  margin-bottom: var(--space-sm);
}

.fomo__title {
  color: #fff;
  font-size: var(--fs-3xl);
  line-height: var(--lh-tight);
  margin-bottom: var(--space-lg);
}

.fomo__title em {
  font-style: normal;
  color: var(--color-accent);
}

.fomo__content > p {
  color: rgba(255, 255, 255, 0.65);
  font-size: var(--fs-lg);
  line-height: var(--lh-relaxed);
  margin-bottom: var(--space-2xl);
}

.fomo__points {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

.fomo__point {
  display: flex;
  gap: var(--space-md);
}

.fomo__point-icon {
  width: 40px;
  height: 40px;
  background: rgba(250, 187, 0, 0.15);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-accent);
  flex-shrink: 0;
}

.fomo__point-text strong {
  color: #fff;
  font-size: var(--fs-base);
  font-weight: var(--fw-semibold);
  display: block;
  margin-bottom: var(--space-2xs);
}

.fomo__point-text p {
  color: rgba(255, 255, 255, 0.55);
  font-size: var(--fs-sm);
  line-height: var(--lh-relaxed);
}

/* ---- Dashboard Mockup ---- */
.fomo__dashboard {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-xl);
  padding: var(--space-lg);
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.fomo__dashboard-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: var(--space-sm);
}

.fomo__dashboard-title {
  color: #fff;
  font-size: var(--fs-sm);
  font-weight: var(--fw-semibold);
}

.fomo__dashboard-period {
  font-size: var(--fs-xs);
  color: rgba(255, 255, 255, 0.5);
}

.fomo__dashboard-metrics {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-md);
}

.fomo__metric-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  transition: background var(--transition-base);
}

.fomo__metric-card:hover {
  background: rgba(255, 255, 255, 0.1);
}

.fomo__metric-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: var(--space-xs);
}

.fomo__metric-label {
  font-size: var(--fs-xs);
  color: rgba(255, 255, 255, 0.5);
}

.fomo__metric-value {
  font-family: var(--font-heading);
  font-size: var(--fs-3xl);
  font-weight: var(--fw-bold);
  color: #fff;
  line-height: var(--lh-tight);
  display: block;
}

.fomo__metric-trend--up {
  color: #4CAF50;
  font-size: 11px;
}

.fomo__metric-bar {
  height: 4px;
  border-radius: var(--radius-full);
  margin-top: var(--space-sm);
  background: rgba(255, 255, 255, 0.1);
  overflow: hidden;
}

.fomo__metric-bar-fill {
  height: 100%;
  border-radius: var(--radius-full);
}

.fomo__metric-bar-fill--blue   { background: linear-gradient(90deg, #005C89, #2196F3); }
.fomo__metric-bar-fill--green  { background: linear-gradient(90deg, var(--color-status-green), #66BB6A); }
.fomo__metric-bar-fill--purple { background: linear-gradient(90deg, #6A1B9A, #AB47BC); }
.fomo__metric-bar-fill--amber  { background: linear-gradient(90deg, #C99700, #FABB00); }


/* ==========================================================================
   PRODUCT SHOWCASE
   ========================================================================== */
.showcase {
  padding: var(--space-5xl) var(--space-lg);
}

.showcase__header {
  text-align: center;
  margin-bottom: var(--space-4xl);
  max-width: 700px;
  margin-inline: auto;
}

.showcase__feature {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-3xl);
  align-items: center;
  margin-bottom: var(--space-4xl);
  max-width: 1200px;
  margin-inline: auto;
}

@media (min-width: 768px) {
  .showcase__feature {
    grid-template-columns: 1fr 1fr;
  }
}

.showcase__feature--reversed {
  direction: rtl;
}

.showcase__feature--reversed > * {
  direction: ltr;
}

.showcase__label {
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  border-radius: var(--radius-full);
  font-size: var(--fs-sm);
  font-weight: var(--fw-semibold);
  padding: 0.3em 1em;
  margin-bottom: var(--space-md);
}

.showcase__label--blue   { background: rgba(0, 92, 137, 0.1); color: var(--color-primary); }
.showcase__label--red    { background: rgba(220, 53, 69, 0.1); color: #DC3545; }
.showcase__label--green  { background: rgba(46, 125, 50, 0.1); color: var(--color-status-green); }
.showcase__label--purple { background: rgba(106, 27, 154, 0.1); color: #6A1B9A; }

.showcase__feature-title {
  font-size: var(--fs-xl);
  font-weight: var(--fw-bold);
  margin-bottom: var(--space-sm);
}

.showcase__feature-desc {
  color: var(--color-text-light);
  line-height: var(--lh-relaxed);
}

.showcase__checklist {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  list-style: none;
  padding: 0;
  margin: var(--space-lg) 0 0;
}

.showcase__check-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
  font-size: var(--fs-sm);
  color: var(--color-text-light);
}

.showcase__check-icon {
  width: 18px;
  height: 18px;
  color: var(--color-primary);
  flex-shrink: 0;
  margin-top: 2px;
}

.showcase__feature-visual {
  background: var(--color-bg-light);
  border-radius: var(--radius-xl);
  padding: var(--space-xl);
  border: 1px solid var(--color-border-light);
}

/* ---- Showcase Mockup (shared) ---- */
.showcase__mockup {
  background: var(--color-bg);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border-light);
  overflow: hidden;
}

.showcase__mockup-header {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 14px;
  background: var(--color-bg-light);
  border-bottom: 1px solid var(--color-border-light);
}

.showcase__mockup-dot {
  width: 8px;
  height: 8px;
  border-radius: var(--radius-full);
  display: inline-block;
}

.showcase__mockup-dot--red    { background: #FF5F56; }
.showcase__mockup-dot--yellow { background: #FFBD2E; }
.showcase__mockup-dot--green  { background: #27C93F; }

.showcase__mockup-title {
  font-size: var(--fs-xs);
  font-weight: var(--fw-semibold);
  color: var(--color-text-light);
  margin-left: auto;
}

.showcase__mockup-body {
  padding: var(--space-lg);
}

.showcase__mockup-btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  padding: var(--space-xs) var(--space-md);
  background: var(--color-status-teal);
  color: #fff;
  border: none;
  border-radius: var(--radius-sm);
  font-size: var(--fs-xs);
  font-weight: var(--fw-semibold);
  cursor: pointer;
}

.showcase__mockup-btn--secondary {
  background: var(--color-bg-light);
  color: var(--color-text);
  border: 1px solid var(--color-border);
}

.showcase__mockup-btn--primary {
  background: var(--color-status-teal);
  color: #fff;
}

/* ---- Interpretation Mockup ---- */
.showcase__finding {
  padding: var(--space-sm) var(--space-md);
  border-radius: var(--radius-sm);
  font-size: var(--fs-sm);
  margin-bottom: var(--space-sm);
}

.showcase__finding--warning {
  border-left: 3px solid var(--color-accent);
  background: rgba(250, 187, 0, 0.06);
}

.showcase__finding--info {
  border-left: 3px solid #2196F3;
  background: rgba(33, 150, 243, 0.06);
}

.showcase__finding--alert {
  border-left: 3px solid var(--color-error);
  background: rgba(220, 53, 69, 0.06);
}

.showcase__finding-badge {
  display: inline-block;
  font-size: var(--fs-xs);
  font-weight: var(--fw-semibold);
  margin-bottom: var(--space-2xs);
}

.showcase__finding-text {
  font-size: var(--fs-sm);
  line-height: var(--lh-relaxed);
  margin-bottom: var(--space-2xs);
}

.showcase__finding-evidence {
  font-size: var(--fs-xs);
  color: var(--color-text-light);
  font-style: italic;
  display: block;
}

/* ---- Medication Mockup ---- */
.showcase__med-item {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  padding: var(--space-sm) 0;
  border-bottom: 1px solid var(--color-border-light);
  flex-wrap: wrap;
}

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

.showcase__med-name {
  font-size: var(--fs-sm);
  font-weight: var(--fw-medium);
}

.showcase__med-flags {
  display: flex;
  gap: var(--space-xs);
  margin-left: auto;
}

.showcase__med-flag {
  font-size: var(--fs-xs);
  font-weight: var(--fw-semibold);
  padding: 2px 8px;
  border-radius: var(--radius-full);
}

.showcase__med-flag--red {
  color: var(--color-error);
  background: rgba(220, 53, 69, 0.1);
}

/* ---- Export Mockup ---- */
.showcase__export-dropdown {
  margin-bottom: var(--space-md);
}

.showcase__export-label {
  display: block;
  font-size: var(--fs-sm);
  font-weight: var(--fw-medium);
  margin-bottom: var(--space-xs);
}

.showcase__export-options {
  list-style: none;
  padding: var(--space-xs);
  margin: 0;
  background: var(--color-bg-light);
  border: 1px solid var(--color-border-light);
  border-radius: var(--radius-md);
}

.showcase__export-option {
  padding: var(--space-xs) var(--space-sm);
  border-radius: var(--radius-sm);
  font-size: var(--fs-sm);
  cursor: pointer;
}

.showcase__export-option:hover {
  background: var(--color-bg);
}

.showcase__export-option--active {
  background: var(--color-bg);
  font-weight: var(--fw-semibold);
}

.showcase__export-actions {
  display: flex;
  gap: var(--space-sm);
  margin-bottom: var(--space-md);
}

.showcase__export-file {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  padding: var(--space-sm) 0;
  border-top: 1px solid var(--color-border-light);
  font-size: var(--fs-sm);
  color: var(--color-text-light);
}

/* ---- Workflow / Layout Mockup ---- */
.showcase__workflow-tabs {
  display: flex;
  gap: var(--space-xs);
  margin-bottom: var(--space-md);
  overflow-x: auto;
}

.showcase__workflow-tab {
  padding: var(--space-xs) var(--space-md);
  border: 1px solid var(--color-border-light);
  border-radius: var(--radius-sm);
  font-size: var(--fs-xs);
  font-weight: var(--fw-medium);
  background: var(--color-bg);
  color: var(--color-text-light);
  white-space: nowrap;
  cursor: pointer;
}

.showcase__workflow-tab--active {
  background: var(--color-status-teal);
  color: #fff;
  border-color: var(--color-status-teal);
}

.showcase__workflow-columns {
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
}

.showcase__workflow-col {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-xs) var(--space-sm);
  font-size: var(--fs-sm);
  border: 1px solid var(--color-border-light);
  border-radius: var(--radius-sm);
}

.showcase__workflow-col-label {
  font-weight: var(--fw-medium);
}

.showcase__workflow-col-toggle {
  font-size: var(--fs-xs);
  font-weight: var(--fw-semibold);
  padding: 2px 8px;
  border-radius: var(--radius-full);
}

.showcase__workflow-col-toggle--on {
  color: var(--color-status-green);
  background: rgba(46, 125, 50, 0.1);
}

.showcase__workflow-col-toggle--off {
  color: var(--color-text-light);
  background: var(--color-bg-light);
}


/* ==========================================================================
   HOW IT WORKS
   ========================================================================== */
.how-it-works {
  background: var(--color-bg-light);
  padding: var(--space-5xl) var(--space-lg);
}

.how-it-works__header {
  text-align: center;
  margin-bottom: var(--space-3xl);
  max-width: 700px;
  margin-inline: auto;
}

.how-it-works__eyebrow {
  display: block;
  font-size: var(--fs-sm);
  font-weight: var(--fw-semibold);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-primary);
  margin-bottom: var(--space-sm);
}

.how-it-works__title {
  font-size: var(--fs-3xl);
  line-height: var(--lh-tight);
}

.how-it-works__steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
  max-width: 1200px;
  margin-inline: auto;
}

@media (min-width: 768px) {
  .how-it-works__steps {
    grid-template-columns: repeat(3, 1fr);
  }
}

.how-it-works__step {
  text-align: center;
  padding: var(--space-xl);
}

.how-it-works__step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: var(--radius-full);
  background: var(--color-primary);
  color: #fff;
  font-size: var(--fs-sm);
  font-weight: var(--fw-bold);
  margin-bottom: var(--space-md);
}

.how-it-works__step-icon {
  width: 64px;
  height: 64px;
  margin-inline: auto;
  margin-bottom: var(--space-md);
  color: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
}

.how-it-works__step-title {
  font-size: var(--fs-lg);
  font-weight: var(--fw-bold);
  margin-bottom: var(--space-sm);
}

.how-it-works__step-desc {
  font-size: var(--fs-sm);
  color: var(--color-text-light);
  line-height: var(--lh-relaxed);
}


/* ==========================================================================
   TESTIMONIALS
   ========================================================================== */
.testimonials {
  padding: var(--space-5xl) var(--space-lg);
}

.testimonials__header {
  text-align: center;
  margin-bottom: var(--space-3xl);
  max-width: 700px;
  margin-inline: auto;
}

.testimonials__eyebrow {
  display: block;
  font-size: var(--fs-sm);
  font-weight: var(--fw-semibold);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-primary);
  margin-bottom: var(--space-sm);
}

.testimonials__title {
  font-size: var(--fs-3xl);
  line-height: var(--lh-tight);
}

.testimonials__carousel {
  max-width: 900px;
  margin-inline: auto;
  overflow: hidden;
  position: relative;
}

.testimonials__track {
  display: flex;
  transition: transform 0.5s ease;
}

.testimonials__slide {
  flex: 0 0 100%;
  min-width: 100%;
  padding: 0 var(--space-md);
  box-sizing: border-box;
}

.testimonials__card {
  background: var(--color-bg-light);
  border: 1px solid var(--color-border-light);
  border-radius: var(--radius-xl);
  padding: var(--space-2xl);
  margin: 0;
}

.testimonials__quote {
  font-size: var(--fs-lg);
  line-height: var(--lh-relaxed);
  color: var(--color-text);
  margin-bottom: var(--space-xl);
}

.testimonials__author {
  display: flex;
  align-items: center;
  gap: var(--space-md);
}

.testimonials__avatar {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-full);
  object-fit: cover;
}

.testimonials__author-info {
  display: flex;
  flex-direction: column;
}

.testimonials__name {
  font-size: var(--fs-base);
  font-weight: var(--fw-semibold);
  font-style: normal;
}

.testimonials__role {
  font-size: var(--fs-sm);
  color: var(--color-text-light);
}

.testimonials__controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-md);
  margin-top: var(--space-xl);
}

.testimonials__arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: var(--radius-full);
  border: 1px solid var(--color-border);
  background: var(--color-bg);
  color: var(--color-text);
  cursor: pointer;
  transition: background var(--transition-base), border-color var(--transition-base);
}

.testimonials__arrow:hover {
  background: var(--color-bg-light);
  border-color: var(--color-border-light);
}

.testimonials__dots {
  display: flex;
  gap: var(--space-xs);
}

.testimonials__dot {
  width: 10px;
  height: 10px;
  border-radius: var(--radius-full);
  border: none;
  background: var(--color-border);
  cursor: pointer;
  padding: 0;
  transition: background var(--transition-base);
}

.testimonials__dot--active {
  background: var(--color-primary);
}


/* ==========================================================================
   FINAL CTA
   ========================================================================== */
.final-cta {
  background: var(--color-bg-navy);
  padding: var(--space-5xl) var(--space-lg);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.final-cta__container {
  position: relative;
  z-index: var(--z-content);
  max-width: 680px;
  margin-inline: auto;
}

.final-cta__title {
  color: #fff;
  font-size: var(--fs-3xl);
  line-height: var(--lh-tight);
  margin-bottom: var(--space-md);
}

.final-cta__subtitle {
  color: rgba(255, 255, 255, 0.6);
  font-size: var(--fs-lg);
  line-height: var(--lh-relaxed);
  margin-bottom: var(--space-2xl);
}

.final-cta__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-md);
}

.final-cta__actions .btn--primary {
  background: var(--color-accent);
  color: var(--color-bg-navy);
  border-color: var(--color-accent);
  font-weight: var(--fw-bold);
}

.final-cta__actions .btn--primary:hover {
  background: var(--color-accent-dark);
  border-color: var(--color-accent-dark);
}

.final-cta__actions .btn--outline-white {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.25);
  background: transparent;
}

.final-cta__actions .btn--outline-white:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.4);
}


/* ==========================================================================
   REDUCED MOTION
   ========================================================================== */
@media (prefers-reduced-motion: reduce) {
  .hero__mesh-gradient {
    animation: none;
  }

  .hero__pill,
  .hero__title,
  .hero__subtitle,
  .hero__ctas,
  .hero__audiences,
  .hero__screenshot-wrapper {
    opacity: 1;
    transform: none;
    animation: none;
  }

  .hero__pill-dot {
    animation: none;
  }
}
