/* ============================================================
   360Score.me 2.0 — Landing Page Styles
   Brand palette: Navy #011B38 | Blue #3C58A7 | Green #5BC729
                  Orange #FF4300 | Red #DF2935 | Yellow #FDCA40
                  Bright Blue #3772FF | Mint #8FEBD5
   ============================================================ */

/* ---------- Reset & Base ---------- */
*, *:before, *:after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: 'Inter', 'Segoe UI', Arial, sans-serif;
  background: #011B38;
  color: #fff;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; }

/* ---------- Typography ---------- */
.section-eyebrow {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(255,255,255,.07);
  backdrop-filter: blur(6px);
  margin-bottom: 14px;
}

.section-title {
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 900;
  line-height: 1.15;
  margin: 0 0 16px;
}

.gradient-text {
  background: linear-gradient(90deg, #8FEBD5 0%, #3772FF 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Sunrise gradient text — used on pricing title, CTA, featured badge */
.gradient-text-sunrise {
  background: linear-gradient(90deg, #ffa585 0%, #ffeda0 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Coral gradient text — used on CTA section */
.gradient-text-coral {
  background: linear-gradient(90deg, #011B38 0%, #EA5459 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Mint gradient text — used on Features & Survey panel titles ("Strengthen Teams" style) */
.gradient-text-mint {
  background: linear-gradient(90deg, #8FEBD5 0%, #3772FF 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Green-white gradient text — used on Process & Client Stories panel titles */
.gradient-text-process {
  background: linear-gradient(90deg, #fff 0%, #5BC729 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ---------- Navbar ---------- */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 10px 0;
  background: rgba(1,27,56,.85);
  border-bottom: 1px solid rgba(255,255,255,.1);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 2px 20px rgba(0,0,0,.28);
  transition: box-shadow .3s, background .3s;
}

#navbar.scrolled {
  background: rgba(1,27,56,.96);
  border-bottom: 1px solid rgba(255,255,255,.1);
  box-shadow: 0 4px 28px rgba(0,0,0,.38);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo { height: 66px; width: auto; }

.nav-links {
  list-style: none;
  margin: 0; padding: 0;
  display: flex;
  gap: 32px;
  align-items: center;
}

.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,.88);
  transition: color .2s;
}

.nav-links a:hover { color: #8FEBD5; }

.btn-nav-cta {
  background: linear-gradient(90deg, #5BC729 0%, #3772FF 100%);
  color: #fff !important;
  padding: 9px 22px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  box-shadow: 0 2px 10px rgba(91,199,41,.2);
  transition: opacity .2s, box-shadow .2s !important;
}

.btn-nav-cta:hover { opacity: .9; box-shadow: 0 4px 14px rgba(91,199,41,.3); }

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}

.nav-hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: rgba(255,255,255,.85);
  border-radius: 2px;
  transition: .3s;
}

/* ---------- Hero ---------- */
#hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 120px 0 60px;
  background: #011B38;
}

#hero-canvas {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  pointer-events: none;
  z-index: 0;
}

.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 28px;
  display: flex;
  align-items: center;
  gap: 56px;
  position: relative;
  z-index: 1;
  flex-wrap: wrap;
}

.hero-left {
  flex: 1 1 420px;
  max-width: 580px;
}

.hero-right {
  flex: 1 1 340px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 16px;
}

.hero-title {
  font-size: clamp(24px, 3.2vw, 44px);
  font-weight: 900;
  line-height: 1.12;
  margin: 12px 0 14px;
}

.hero-sub {
  font-size: 15px;
  color: rgba(255,255,255,.68);
  line-height: 1.6;
  max-width: 520px;
  margin-bottom: 24px;
}

.hero-ctas { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 32px; }

.btn-primary {
  display: inline-block;
  padding: 14px 30px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 14px;
  background: linear-gradient(90deg, #5BC729 0%, #3772FF 100%);
  color: #fff;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(91,199,41,.25), 0 2px 6px rgba(55,114,255,.15);
  transition: opacity .2s, transform .2s, box-shadow .2s;
}

.btn-primary:hover { opacity: .9; transform: translateY(-1px); box-shadow: 0 6px 20px rgba(91,199,41,.35), 0 3px 8px rgba(55,114,255,.2); }

.btn-primary:hover { opacity: .9; transform: translateY(-1px); }

.btn-ghost {
  display: inline-block;
  padding: 13px 30px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 14px;
  border: 1.5px solid rgba(255,255,255,.3);
  color: #fff;
  background: transparent;
  cursor: pointer;
  transition: background .2s;
}

.btn-ghost:hover { background: rgba(255,255,255,.08); }

.hero-badges { display: flex; flex-wrap: wrap; gap: 10px; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.16);
  backdrop-filter: blur(6px);
}

/* ---------- Glass Card ---------- */
.glass-card {
  width: 100%;
  max-width: 420px;
  border-radius: 20px;
  padding: 18px 20px;
  position: relative;
  overflow: hidden;
  background: rgba(255,255,255,.07);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid rgba(255,255,255,.15);
  box-shadow: 0 28px 72px rgba(0,0,0,.45);
  min-height: 340px;
}

.card-logo { display: flex; justify-content: center; margin-bottom: 10px; }
.card-logo img { height: 42px; width: auto; }

.card-divider { height: 1px; background: rgba(255,255,255,.11); margin-bottom: 12px; }

/* Panel */
.panel { display: none; animation: panelFadeIn .4s ease forwards; }
.panel.active { display: block; }

@keyframes panelFadeIn {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}

.panel-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: .16em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 999px;
  margin-bottom: 6px;
  font-family: 'Inter', sans-serif;
}

/* No dot before eyebrow — removed */
.panel-eyebrow:before { display: none; }

.panel-quote { font-size: 12px; color: rgba(255,255,255,.5); font-style: italic; margin-bottom: 14px; }

/* Panel — Pulse */
.pulse-score-row { display: flex; align-items: flex-end; gap: 12px; margin-bottom: 14px; }
.pulse-score-num { font-size: 58px; font-weight: 900; line-height: 1; }
.pulse-denom { font-size: 22px; color: rgba(255,255,255,.4); font-weight: 300; }
.pulse-trend { font-size: 13px; font-weight: 700; color: #5BC729; margin-bottom: 6px; }

/* Pulse screenshot panel */
.pulse-screenshot-wrap {
  margin-top: 2px;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.18);
  box-shadow: 0 12px 40px rgba(0,0,0,0.45), 0 2px 8px rgba(55,114,255,0.15);
  background: #fff;
}
.pulse-screenshot-img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
}

.bar-row { margin-bottom: 10px; }
.bar-label-row { display: flex; justify-content: space-between; font-size: 12px; color: rgba(255,255,255,.65); margin-bottom: 5px; }
.bar-track { height: 7px; border-radius: 999px; background: rgba(255,255,255,.1); overflow: hidden; }
.bar-fill { height: 100%; border-radius: 999px; width: 0; transition: width 1.1s cubic-bezier(.25,.46,.45,.94); }

.panel-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 12px; }
.panel-tag {
  font-size: 11px;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(255,255,255,.09);
  color: rgba(255,255,255,.65);
}

.ai-note { font-size: 11px; color: rgba(255,255,255,.35); margin-top: 10px; }

/* Panel — Peer */
.peer-competency-row { margin-bottom: 9px; }
.peer-bars { position: relative; height: 7px; border-radius: 999px; background: rgba(255,255,255,.1); overflow: hidden; margin-top: 5px; }
.peer-bar-you { height: 100%; border-radius: 999px; position: absolute; top: 0; left: 0; width: 0; transition: width 1.1s cubic-bezier(.25,.46,.45,.94); }
.peer-bar-avg { height: 100%; border-radius: 999px; position: absolute; top: 0; left: 0; width: 0; opacity: .5; transition: width 1.1s cubic-bezier(.25,.46,.45,.94) .1s; }

.peer-legend { display: flex; gap: 14px; font-size: 11px; color: rgba(255,255,255,.55); margin-top: 12px; align-items: center; }
.legend-dot { width: 9px; height: 9px; border-radius: 50%; display: inline-block; margin-right: 5px; }

.peer-score-badge {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: 999px;
  background: rgba(55,114,255,.18);
  border: 1px solid rgba(55,114,255,.35);
  color: #7aadff;
  margin-bottom: 10px;
}

/* Panel — Perf */
.gold-badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 9px 14px;
  border-radius: 12px;
  background: linear-gradient(90deg, rgba(253,202,64,.15), rgba(255,220,100,.07));
  border: 1px solid rgba(253,202,64,.3);
  margin-bottom: 14px;
}

.gold-badge-title { font-size: 12px; font-weight: 800; color: #ffe27a; }
.gold-badge-sub { font-size: 10px; color: rgba(255,255,255,.45); }

.perf-metric-row { margin-bottom: 11px; }
.perf-metric-label-row { display: flex; justify-content: space-between; font-size: 12px; margin-bottom: 5px; }
.perf-bars-wrap { position: relative; height: 7px; border-radius: 999px; background: rgba(255,255,255,.1); overflow: hidden; }
.perf-bar-emp { height: 100%; border-radius: 999px; position: absolute; top: 0; left: 0; width: 0; transition: width 1.1s cubic-bezier(.25,.46,.45,.94); }
.perf-bar-avg { height: 100%; border-radius: 999px; position: absolute; top: 0; left: 0; width: 0; opacity: .42; transition: width 1.1s cubic-bezier(.25,.46,.45,.94) .1s; }

.perf-footer { font-size: 11px; color: rgba(255,255,255,.32); margin-top: 12px; }

/* Dot indicators */
.panel-dots { display: flex; gap: 10px; justify-content: center; }

.panel-dot {
  height: 10px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  background: rgba(255,255,255,.28);
  transition: width .35s, background .35s, box-shadow .35s;
  padding: 0;
  width: 10px;
}

.panel-dot.active-pulse  { width: 28px; background: #5BC729; box-shadow: 0 0 10px #5BC729; }
.panel-dot.active-peer   { width: 28px; background: #3772FF; box-shadow: 0 0 10px #3772FF; }
.panel-dot.active-perf   { width: 28px; background: #FDCA40; box-shadow: 0 0 10px #FDCA40; }

/* ---------- Stats Bar ---------- */
#stats {
  background: rgba(255,255,255,.04);
  border-top: 1px solid rgba(255,255,255,.08);
  border-bottom: 1px solid rgba(255,255,255,.08);
  padding: 44px 0;
}

.stats-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 28px;
  display: flex;
  flex-wrap: nowrap;
  gap: 24px;
  justify-content: space-between;
  align-items: center;
}

.stat-item { text-align: center; flex: 1 1 0; min-width: 0; }
.stat-num { font-size: 40px; font-weight: 900; line-height: 1; white-space: nowrap; }
.stat-label { font-size: 12px; color: rgba(255,255,255,.5); margin-top: 4px; line-height: 1.4; }

/* ---------- Features ---------- */
/* Gradient starts here: #011B38 → #7B94E8 → midpoint of Pricing → #FCC18B at CTA bottom */
#features { padding: 96px 0; background: linear-gradient(180deg, #011B38 0%, #1a3070 100%); }

.features-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 28px;
  text-align: center;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  margin-top: 52px;
  text-align: left;
}

.feature-card {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 18px;
  padding: 30px 28px;
  transition: transform .25s, box-shadow .25s, border-color .25s;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 48px rgba(0,0,0,.3);
  border-color: rgba(55,114,255,.35);
}

.feature-icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 24px;
  margin-bottom: 18px;
}

.feature-title { font-size: 18px; font-weight: 800; margin-bottom: 10px; }
.feature-desc { font-size: 14px; color: rgba(255,255,255,.58); line-height: 1.65; }

/* ---------- Survey Types ---------- */
#survey-types { padding: 96px 0; background: linear-gradient(180deg, #1a3070 0%, #3a5aa8 100%); }

.survey-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 28px;
}

.survey-tabs {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 40px;
  margin-top: 36px;
}

.survey-tab {
  padding: 10px 22px;
  border-radius: 999px;
  border: 1.5px solid rgba(255,255,255,.18);
  background: transparent;
  color: rgba(255,255,255,.6);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: .25s;
}

.survey-tab.active, .survey-tab:hover {
  background: rgba(55,114,255,.18);
  border-color: rgba(55,114,255,.5);
  color: #fff;
}

.survey-content { display: none; }
.survey-content.active { display: flex; flex-wrap: wrap; gap: 40px; align-items: center; }

.survey-text { flex: 1 1 340px; }
.survey-text h3 { font-size: 28px; font-weight: 900; margin-bottom: 14px; }
.survey-text p { font-size: 15px; color: rgba(255,255,255,.62); line-height: 1.7; margin-bottom: 20px; }

.survey-bullets { list-style: none; padding: 0; margin: 0; }
.survey-bullets li { display: flex; align-items: flex-start; gap: 10px; font-size: 14px; color: rgba(255,255,255,.75); margin-bottom: 10px; }
.survey-bullets li:before { content: "✓"; font-weight: 900; font-size: 13px; margin-top: 2px; flex-shrink: 0; }

.survey-vis { flex: 1 1 320px; }
.chart-wrap { background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.08); border-radius: 18px; padding: 24px; }
.chart-wrap canvas { width: 100% !important; max-height: 260px; }

/* Survey screenshot display */
.survey-screenshot-wrap {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,.45);
  border: 1px solid rgba(255,255,255,.15);
  background: #fff;
}
.survey-screenshot-wrap img {
  width: 100%;
  height: auto;
  display: block;
}

/* 360 Print Preview showcase */
.process-preview-wrap {
  max-width: 1000px;
  margin: 52px auto 0;
  padding: 0 28px;
  position: relative;
}
.process-preview-inner {
  background: linear-gradient(145deg, rgba(1,27,56,.4), rgba(255,237,160,.08));
  border: 1.5px solid rgba(255,255,255,.18);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 24px 72px rgba(0,0,0,.45);
  position: relative;
}
.process-preview-header {
  padding: 20px 28px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.process-preview-header-dot {
  width: 10px; height: 10px; border-radius: 50%; flex-shrink: 0;
}
.process-preview-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.5);
}
.process-preview-title {
  font-size: 15px;
  font-weight: 800;
  color: #fff;
  margin-left: auto;
  margin-right: auto;
}
.process-preview-img {
  width: 100%;
  height: auto;
  display: block;
}

/* ---------- How It Works ---------- */
#how-it-works { padding: 96px 0; background: linear-gradient(180deg, #3a5aa8 0%, #7B94E8 100%); }

.how-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 28px;
  text-align: center;
}

/* Step cards grid — no connecting line */
.steps-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 56px;
  position: relative;
}

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

.step-card {
  background: linear-gradient(145deg, rgba(1,27,56,.55), rgba(255,237,160,.07));
  border: 1.5px solid rgba(255,255,255,.18);
  border-radius: 20px;
  padding: 32px 24px 28px;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: transform .25s, box-shadow .25s, border-color .25s;
  box-shadow: 0 12px 36px rgba(0,0,0,.28);
}

.step-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 56px rgba(0,0,0,.4);
  border-color: rgba(255,255,255,.35);
}

.step-num {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: linear-gradient(145deg, #ffffff 0%, #8FEBD5 40%, #5BC729 100%);
  border: 1.5px solid rgba(255,255,255,.85);
  display: flex; align-items: center; justify-content: center;
  font-size: 22px;
  font-weight: 900;
  color: #ffffff;
  margin: 0 auto 20px;
  box-shadow: 0 8px 28px rgba(0,0,0,.3);
  position: relative;
  z-index: 1;
}

.step-title { font-size: 16px; font-weight: 800; margin-bottom: 10px; line-height: 1.3; }
.step-desc { font-size: 13px; color: rgba(255,255,255,.55); line-height: 1.65; }

/* Marketing badge — Process Panel */
.process-data-badge {
  position: absolute;
  top: 16px; right: 4px;
  background: linear-gradient(135deg, #3772FF 0%, #8FEBD5 100%);
  color: #fff;
  border-radius: 14px;
  padding: 10px 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 8px 28px rgba(55,114,255,.35);
  backdrop-filter: blur(8px);
  z-index: 2;
  animation: badgeGlow 3s ease-in-out infinite;
}
@keyframes badgeGlow {
  0%, 100% { box-shadow: 0 8px 28px rgba(55,114,255,.35); }
  50%       { box-shadow: 0 8px 36px rgba(143,235,213,.55); }
}
.process-data-primary { font-size: 13px; font-weight: 800; color: #fff; line-height: 1.2; }
.process-data-sub { font-size: 10px; color: rgba(255,255,255,.75); margin-top: 2px; }

/* Score 10 face section watermark */
.section-face-watermark {
  position: absolute;
  bottom: 30px; right: -20px;
  width: 160px; height: 160px;
  background: url('images/BR10_surv.png') center/contain no-repeat;
  opacity: 0.15;
  pointer-events: none;
  z-index: 0;
}

/* Survey screenshot wrap with badge */
.survey-screenshot-wrap { position: relative; }
.survey-screenshot-badge {
  position: absolute;
  bottom: 16px; right: 16px;
  background: linear-gradient(135deg, #3772FF 0%, #8FEBD5 100%);
  color: #fff;
  border-radius: 14px;
  padding: 10px 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 8px 28px rgba(55,114,255,.4);
  z-index: 2;
  animation: badgeGlow 3s ease-in-out infinite;
}
.survey-screenshot-badge-primary { font-size: 13px; font-weight: 800; color: #fff; line-height: 1.2; }
.survey-screenshot-badge-sub { font-size: 10px; color: rgba(255,255,255,.75); margin-top: 2px; }

/* Survey placeholder */
.survey-placeholder-wrap {
  border-radius: 16px;
  border: 2px dashed rgba(255,255,255,.22);
  background: rgba(255,255,255,.04);
  padding: 52px 28px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.survey-placeholder-icon { font-size: 40px; }
.survey-placeholder-label { font-size: 15px; font-weight: 700; color: rgba(255,255,255,.7); }
.survey-placeholder-sub { font-size: 13px; color: rgba(255,255,255,.38); }

/* ---------- Testimonials ---------- */
#testimonials { padding: 96px 0; background: linear-gradient(180deg, #7B94E8 0%, #a0a0c8 100%); }

.testimonials-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 28px;
  text-align: center;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  margin-top: 52px;
  text-align: left;
}

.testimonial-card {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 18px;
  padding: 30px 28px;
  flex-shrink: 0;
  width: 100%;
  transition: transform .3s, box-shadow .3s;
}

/* Testimonial Carousel — full rewrite */
.testimonials-carousel-outer {
  margin-top: 52px;
  width: 100%;
}

.testimonials-carousel-wrap {
  position: relative;
  overflow: hidden;
  width: 100%;
}

.testimonials-track {
  display: flex;
  gap: 24px;
  transition: transform 0.5s cubic-bezier(.25,.46,.45,.94);
  will-change: transform;
}

.testimonials-track .testimonial-card {
  flex: 0 0 calc(33.333% - 16px);
  min-width: calc(33.333% - 16px);
  box-sizing: border-box;
}

@media (max-width: 900px) {
  .testimonials-track .testimonial-card {
    flex: 0 0 calc(50% - 12px);
    min-width: calc(50% - 12px);
  }
}
@media (max-width: 600px) {
  .testimonials-track .testimonial-card {
    flex: 0 0 100%;
    min-width: 100%;
  }
}

.testimonials-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-top: 24px;
  margin-bottom: 0;
}

.t-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,.25);
  border: none;
  cursor: pointer;
  transition: background .3s, width .3s;
  padding: 0;
  display: block;
  flex-shrink: 0;
}

.t-dot.active {
  background: linear-gradient(90deg, #ffa585, #ffeda0);
  width: 24px;
  border-radius: 999px;
}

.testimonials-nav {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 16px;
}

.t-nav-btn {
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,.3);
  background: rgba(255,255,255,.07);
  color: #fff;
  font-size: 18px;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background .2s, border-color .2s;
}

.t-nav-btn:hover { background: rgba(255,255,255,.15); border-color: rgba(255,255,255,.6); }

.testimonial-stars { color: #FDCA40; font-size: 15px; margin-bottom: 14px; }
.testimonial-quote { font-size: 14px; color: rgba(255,255,255,.72); line-height: 1.7; margin-bottom: 20px; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.author-avatar { width: 42px; height: 42px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 17px; font-weight: 800; flex-shrink: 0; }
.author-name { font-size: 14px; font-weight: 700; }
.author-role { font-size: 12px; color: rgba(255,255,255,.45); }

/* ---------- Pricing ---------- */
/* Periwinkle peaks at top of Pricing, then warm amber begins at midpoint */
#pricing { padding: 96px 0; background: linear-gradient(180deg, #a0a0c8 0%, #7B94E8 30%, #c8a060 70%, #e8a050 100%); }

.pricing-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 28px;
  text-align: center;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 52px;
  text-align: left;
}

.pricing-card {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 20px;
  padding: 36px 30px;
  position: relative;
  transition: transform .25s, box-shadow .25s;
}

.pricing-card:hover { transform: translateY(-4px); box-shadow: 0 20px 48px rgba(0,0,0,.3); }

.pricing-card.featured {
  background: linear-gradient(145deg, rgba(1,27,56,.35), rgba(255,237,160,.12));
  border-color: rgba(255,255,255,.9);
  border-width: 1.5px;
  box-shadow: 0 8px 40px rgba(255,165,133,.2);
}

.pricing-badge {
  position: absolute;
  top: -14px; right: 24px;
  background: linear-gradient(90deg, #ffa585, #ffeda0);
  color: #011B38;
  font-size: 11px;
  font-weight: 800;
  padding: 5px 14px;
  border-radius: 999px;
  letter-spacing: .08em;
}

.pricing-plan { font-size: 13px; font-weight: 700; color: rgba(255,255,255,.5); letter-spacing: .1em; text-transform: uppercase; margin-bottom: 8px; }
.pricing-price { font-size: 48px; font-weight: 900; line-height: 1; margin-bottom: 4px; }
.pricing-period { font-size: 13px; color: rgba(255,255,255,.45); margin-bottom: 20px; }
.pricing-desc { font-size: 14px; color: rgba(255,255,255,.6); line-height: 1.6; margin-bottom: 24px; border-top: 1px solid rgba(255,255,255,.1); padding-top: 20px; }

.pricing-features { list-style: none; padding: 0; margin: 0 0 28px; }
.pricing-features li { font-size: 14px; color: rgba(255,255,255,.72); padding: 8px 0; border-bottom: 1px solid rgba(255,255,255,.06); display: flex; align-items: center; gap: 9px; }
.pricing-features li:last-child { border-bottom: none; }
.pricing-features li span.check { color: #011B38; font-weight: 900; }

.btn-plan {
  display: block;
  width: 100%;
  padding: 13px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
  text-align: center;
  cursor: pointer;
  border: 1.5px solid rgba(55,114,255,.5);
  color: #fff;
  background: transparent;
  transition: background .2s, border-color .2s;
}

.btn-plan:hover { background: rgba(55,114,255,.18); }

.btn-plan.featured-btn {
  background: linear-gradient(90deg, #ffa585 0%, #ffeda0 100%);
  border: none;
  color: #011B38;
  font-weight: 800;
  box-shadow: 0 3px 14px rgba(255,165,133,.3), 0 1px 6px rgba(255,237,160,.2);
  transition: opacity .2s, box-shadow .2s;
}

.btn-plan.featured-btn:hover { opacity: .9; box-shadow: 0 5px 18px rgba(123,148,232,.4), 0 2px 8px rgba(252,193,139,.3); }

/* ---------- CTA Banner ---------- */
#cta-banner {
  padding: 80px 28px 100px;
  text-align: center;
  background: linear-gradient(180deg, #e8a050 0%, #FCC18B 50%, #FCC18B 100%);
  border-top: none;
  border-bottom: none;
  position: relative;
  overflow: visible;
}

/* Extend peach fully below CTA into footer gap */
#cta-banner::after {
  content: '';
  display: block;
  position: absolute;
  bottom: -2px;
  left: 0; right: 0;
  height: 24px;
  background: #FCC18B;
  z-index: 0;
}

#cta-banner .cta-title,
#cta-banner .cta-sub { color: #011B38; }
#cta-banner .cta-sub { color: rgba(1,27,56,.72); }
#cta-banner .btn-primary { box-shadow: 0 4px 16px rgba(55,114,255,.3); }
#cta-banner .btn-ghost { border-color: rgba(1,27,56,.4); color: #011B38; background: rgba(1,27,56,.05); }
#cta-banner .btn-ghost:hover { background: rgba(1,27,56,.12); }
#cta-banner .gradient-text-coral,
#cta-banner .gradient-text-sunrise {
  background: linear-gradient(90deg, #011B38 0%, #EA5459 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

#cta-banner .btn-primary {
  background: linear-gradient(90deg, #011B38 0%, #EA5459 100%);
  color: #fff;
  border: none;
  box-shadow: 0 4px 16px rgba(234,84,89,.35);
}
#cta-banner .btn-primary:hover { opacity: .9; }

/* Footer — original dark navy, no gradient blend */

/* CTA title reveal animation */
.cta-title-reveal {
  opacity: 0;
  transform: translateY(20px) scale(0.98);
  transition: opacity 0.7s cubic-bezier(.25,.46,.45,.94), transform 0.7s cubic-bezier(.25,.46,.45,.94);
}
.cta-title-reveal.in-view {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.cta-title { font-size: clamp(28px, 4vw, 46px); font-weight: 900; margin-bottom: 14px; }
.cta-sub { font-size: 17px; color: rgba(255,255,255,.62); max-width: 540px; margin: 0 auto 32px; line-height: 1.65; }
.cta-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ---------- Mid-section text contrast ---------- */
/* Features & Survey types: dark navy (on dark-to-mid blue background) — use white */
#features .section-eyebrow, #features .section-title, #features .feature-title { color: #fff; }
#features .feature-desc { color: rgba(255,255,255,.65); }
#features .feature-card { background: rgba(255,255,255,.06); border-color: rgba(255,255,255,.12); }
#features .feature-card:hover { border-color: rgba(55,114,255,.4); }

#survey-types .section-eyebrow, #survey-types .section-title, #survey-types .survey-text h3 { color: #fff; }
#survey-types .survey-text p { color: rgba(255,255,255,.65); }
#survey-types .survey-bullets li { color: rgba(255,255,255,.8); }
#survey-types .survey-tab { color: rgba(255,255,255,.65); border-color: rgba(255,255,255,.2); }
#survey-types .survey-tab.active, #survey-types .survey-tab:hover { background: rgba(255,255,255,.14); border-color: rgba(255,255,255,.5); color: #fff; }

/* How it works: periwinkle peak — white text */
#how-it-works .section-eyebrow, #how-it-works .section-title, #how-it-works .step-title { color: #fff; }
#how-it-works p, #how-it-works .step-desc { color: rgba(255,255,255,.65); }

/* Testimonials: periwinkle — white text */
#testimonials .section-eyebrow, #testimonials .section-title, #testimonials .author-name { color: #fff; }
#testimonials .testimonial-quote { color: rgba(255,255,255,.75); }
#testimonials .author-role { color: rgba(255,255,255,.55); }
#testimonials .testimonial-card { background: rgba(255,255,255,.07); border-color: rgba(255,255,255,.12); }

/* Pricing: transitions periwinkle→warm amber; first half white, bottom half dark */
#pricing .section-eyebrow, #pricing .section-title { color: #fff; }
#pricing p[style] { color: rgba(255,255,255,.72) !important; }
#pricing .pricing-plan { color: rgba(255,255,255,.6); }
#pricing .pricing-price, #pricing .pricing-period { color: #fff; }
#pricing .pricing-desc { color: rgba(255,255,255,.65); border-top-color: rgba(255,255,255,.12); }
#pricing .pricing-features li { color: rgba(255,255,255,.75); border-bottom-color: rgba(255,255,255,.08); }
#pricing .pricing-card { background: rgba(255,255,255,.07); border-color: rgba(255,255,255,.12); }
#pricing .pricing-card.featured { background: linear-gradient(145deg, rgba(1,27,56,.35), rgba(255,237,160,.12)); border-color: rgba(255,255,255,.9); border-width: 1.5px; }
#pricing .btn-plan { border-color: rgba(255,255,255,.35); color: #fff; }
#pricing .btn-plan:hover { background: rgba(255,255,255,.12); }
#pricing .btn-plan.featured-btn { color: #fff; }

/* ---------- Footer ---------- */
#footer {
  background: #011B38;
  border-top: none;
  border-radius: 0;
  margin: 0;
  padding: 0 0 28px;
  position: relative;
}

#footer::before {
  content: '';
  display: block;
  height: 1px;
  background: rgba(255,255,255,.1);
  box-shadow: 0 -1px 0 rgba(255,255,255,.04), 0 1px 8px rgba(0,0,0,.4);
}

.footer-inner {
  padding-top: 56px;
}

.footer-brand p { color: rgba(255,255,255,.55) !important; }
.footer-col-title { color: rgba(255,255,255,.45) !important; }
.footer-col ul li a { color: rgba(255,255,255,.65) !important; }
.footer-copy { color: rgba(255,255,255,.35) !important; }
.footer-links a { color: rgba(255,255,255,.4) !important; }

.footer-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 28px;
}

.footer-top {
  display: flex;
  flex-wrap: wrap;
  gap: 48px;
  margin-bottom: 48px;
  padding-top: 56px;
}

.footer-brand { flex: 1 1 220px; }
.footer-brand img { height: 64px; width: auto; margin-bottom: 16px; }
.footer-brand p { font-size: 13px; color: rgba(255,255,255,.45); line-height: 1.7; max-width: 240px; }

.footer-col { flex: 1 1 150px; }
.footer-col-title { font-size: 12px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: rgba(255,255,255,.4); margin-bottom: 16px; }
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { font-size: 14px; color: rgba(255,255,255,.6); transition: color .2s; }
.footer-col ul li a:hover { color: #fff; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.07);
  padding-top: 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
}

.footer-copy { font-size: 12px; color: rgba(255,255,255,.3); }
.footer-links { display: flex; gap: 20px; }
.footer-links a { font-size: 12px; color: rgba(255,255,255,.35); transition: color .2s; }
.footer-links a:hover { color: rgba(255,255,255,.7); }

/* ---------- Responsive ---------- */
@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .nav-links.open { display: flex; flex-direction: column; position: absolute; top: 64px; left: 0; right: 0; background: rgba(1,27,56,.97); padding: 20px 28px; gap: 18px; border-bottom: 1px solid rgba(255,255,255,.1); }
  
  .hero-inner { flex-direction: column; }
  .hero-right { align-items: center; }
  .glass-card { max-width: 100%; }
  
  .steps-row:before { display: none; }
  
  #stats { padding: 32px 0; }
  #stats .stats-inner { flex-wrap: wrap; gap: 0; }
  .stat-item { flex: 0 0 100%; max-width: 100%; padding: 16px 0; }
  .stat-item + .stat-item { border-top: 1px solid rgba(255,255,255,.08); }
  .stat-num { font-size: 32px; }
  .stat-label { font-size: 13px; }
}

/* Stats Bar — very narrow viewports */
@media (max-width: 480px) {
  .stat-num { font-size: 28px; }
  .stat-label { font-size: 12px; }
}

/* ---------- AOS overrides ---------- */
[data-aos] { pointer-events: auto !important; }

/* ---------- Hero Mockup ---------- */
.hero-right { flex: 1 1 340px; display: flex; flex-direction: column; align-items: center; gap: 16px; }
.hero-mockup-wrap { position: relative; width: 100%; max-width: 520px; }
/* Featured card glow effect — no browser chrome bar */
.mockup-browser {
  border-radius: 16px;
  overflow: hidden;
  border: 1.5px solid rgba(55,114,255,.45);
  box-shadow:
    0 0 0 1px rgba(55,114,255,.15),
    0 0 32px rgba(55,114,255,.35),
    0 0 64px rgba(91,199,41,.15),
    0 32px 80px rgba(0,0,0,.55);
  background: #0a1628;
}
.mockup-bar { display: none; }
.mockup-screen { position: relative; overflow: hidden; height: 340px; background: #0a1628; border-radius: 16px; }
.mockup-screenshot { width: 100%; height: 100%; object-fit: cover; object-position: top; display: block; transition: opacity .4s; }
.mockup-badge-tl { position: absolute; top: 52px; right: -20px; background: rgba(255,255,255,.97); color: #011B38; border-radius: 14px; padding: 10px 14px; display: flex; align-items: center; gap: 10px; box-shadow: 0 8px 28px rgba(0,0,0,.22); font-size: 12px; backdrop-filter: blur(8px); z-index: 2; }
.mockup-badge-num { font-size: 22px; font-weight: 900; color: #3772FF; line-height: 1; }
.mockup-badge-sub { font-size: 10px; color: #555; margin-top: 2px; }
.mockup-badge-br { position: absolute; bottom: -16px; left: -14px; background: rgba(255,255,255,.97); border-radius: 14px; padding: 10px 14px; display: flex; align-items: center; gap: 10px; box-shadow: 0 8px 28px rgba(0,0,0,.22); font-size: 11px; color: #333; backdrop-filter: blur(8px); z-index: 2; }

/* ESAT grade scale floating overlay on hero mockup */
.mockup-grade-overlay {
  position: absolute;
  top: 50%;
  right: -46px;
  transform: translateY(-50%);
  width: 240px;
  background: #fff;
  border: 1px solid rgba(1,27,56,.08);
  border-radius: 14px;
  padding: 8px;
  box-shadow: 0 18px 44px rgba(0,0,0,.32);
  z-index: 4;
  display: none; /* toggled by JS per active tab */
}
.mockup-grade-overlay img {
  width: 50%;
  margin: 0 auto;
  height: auto;
  display: block;
  border-radius: 8px;
}
.mockup-grade-caption {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: #3772FF;
  margin: 2px 0 6px;
  text-align: center;
}
@media (max-width: 900px) {
  .mockup-grade-overlay { display: none !important; }
}

/* ---------- Survey Intelligence: typing comment overlay on Pulse screenshot ---------- */
.survey-screenshot-wrap { position: relative; }
.survey-type-overlay {
  position: absolute;
  border-radius: 10px;
  background: rgba(255,255,255,.99);
  border: 1.5px solid #3772FF;
  box-shadow: 0 6px 22px rgba(55,114,255,.22);
  padding: 14px 16px;
  font-family: 'Inter', sans-serif;
  font-size: clamp(9px, 1.05vw, 14px);
  line-height: 1.55;
  color: #011B38;
  text-align: left;
  overflow: hidden;
  z-index: 3;
  pointer-events: none;
}
.survey-type-caret {
  display: inline-block;
  width: 2px;
  height: 1em;
  background: #3772FF;
  vertical-align: -2px;
  margin-left: 1px;
  animation: spTypeCaret 1s steps(1) infinite;
}
@keyframes spTypeCaret { 0%,49% { opacity: 1; } 50%,100% { opacity: 0; } }
@media (max-width: 700px) {
  .survey-type-overlay { font-size: 10px; padding: 8px 10px; }
}
@media (prefers-reduced-motion: reduce) {
  .survey-type-caret { animation: none; opacity: 0; }
}
.mockup-avatars { display: flex; }
.mockup-av { width: 28px; height: 28px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 9px; font-weight: 800; border: 2px solid #fff; margin-right: -8px; color: #fff; flex-shrink: 0; }
.mockup-tabs { display: flex; gap: 8px; margin-top: 32px; justify-content: center; flex-wrap: wrap; }
.mockup-tab { padding: 7px 18px; border-radius: 999px; border: 1.5px solid rgba(255,255,255,.25); background: transparent; color: rgba(255,255,255,.65); font-size: 12px; font-weight: 600; cursor: pointer; transition: .2s; }
.mockup-tab.active, .mockup-tab:hover { background: rgba(255,255,255,.14); border-color: rgba(255,255,255,.55); color: #fff; }

/* ---------- Cookie Consent Banner ---------- */
#cookie-banner { position: fixed; bottom: 0; left: 0; right: 0; z-index: 9999; background: rgba(1,27,56,.97); border-top: 1px solid rgba(255,255,255,.12); padding: 16px 28px; backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); }
.cookie-inner { max-width: 1160px; margin: 0 auto; display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }
.cookie-text { flex: 1; font-size: 13px; color: rgba(255,255,255,.72); line-height: 1.6; }
.cookie-text a { color: #8FEBD5; text-decoration: underline; }
.cookie-btns { display: flex; gap: 10px; flex-shrink: 0; }
#cookie-decline { padding: 9px 22px; border-radius: 999px; border: 1.5px solid rgba(255,255,255,.3); background: transparent; color: #fff; font-size: 13px; font-weight: 600; cursor: pointer; transition: background .2s; }
#cookie-decline:hover { background: rgba(255,255,255,.08); }
#cookie-accept { padding: 9px 22px; border-radius: 999px; background: linear-gradient(90deg, #5BC729, #3772FF); color: #fff; border: none; font-size: 13px; font-weight: 700; cursor: pointer; transition: opacity .2s; }
#cookie-accept:hover { opacity: .88; }

/* Contact Modal — Start
   Page-specific: sales/contact modal chrome on index.html only. */
.sales-hp{position:absolute;left:-9999px;width:1px;height:1px;overflow:hidden;}
#sales-form .is-invalid{border-color:#EA5459 !important;box-shadow:0 0 0 3px rgba(234,84,89,.18);}
.sales-err{
  font-size:12px;font-weight:600;color:#FF9AA0;margin:6px 0 0;line-height:1.4;
}
.sales-summary{
  font-size:13px;font-weight:700;color:#FF9AA0;background:rgba(234,84,89,.12);
  border:1px solid rgba(234,84,89,.3);border-radius:10px;padding:9px 12px;margin:14px 0 0;
}
.sales-consent{
  display:flex;align-items:flex-start;gap:9px;margin:16px 0 0;cursor:pointer;
  font-size:12.5px;line-height:1.5;color:rgba(255,255,255,.62);font-weight:500;
}
.sales-consent input[type="checkbox"]{margin:2px 0 0;flex:0 0 auto;width:15px;height:15px;cursor:pointer;}
.sales-consent a{color:#7B94E8;font-weight:700;text-decoration:underline;}
.sales-confirm-meta{
  font-size:12.5px;color:rgba(255,255,255,.5);margin:0 0 22px;line-height:1.5;
}
.sales-error-btns{display:flex;gap:10px;justify-content:center;flex-wrap:wrap;}
.sales-btn-alt{
  display:inline-block;padding:12px 24px;border-radius:999px;
  background:rgba(123,148,232,.2);color:#fff;border:1.5px solid rgba(123,148,232,.4);
  font-size:14px;font-weight:700;cursor:pointer;text-decoration:none;
}
.sales-btn-alt:hover{background:rgba(123,148,232,.32);color:#fff;text-decoration:none;}
@media (max-width:480px){
  .sales-error-btns{flex-direction:column;}
  .sales-btn-alt{width:100%;}
}
/* Contact Modal — End */

/* Landing Contact — reCAPTCHA attribution — Start */
.sales-recaptcha-note{
  margin:10px 0 0;
  font-size:11px;
  line-height:1.5;
  text-align:center;
  color:rgba(255,255,255,.42);
}
.sales-recaptcha-note a{ color:rgba(255,255,255,.62); text-decoration:underline; }
.sales-recaptcha-note a:hover{ color:#FCC18B; }
/* Landing Contact — reCAPTCHA attribution — End */
