/* ══════════════════════════════════════════
   JESTO Idea Management - Premium Landing
   Theme: Light + Electric Blue + Ubuntu
   ══════════════════════════════════════════ */

html {
  scroll-behavior: smooth;
}

:root {
  --blue: #0030DB;
  --blue-dark: #0025A8;
  --blue-deeper: #001A72;
  --blue-light: #EEF2FF;
  --blue-glow: rgba(0, 48, 219, 0.1);
  --blue-glow-strong: rgba(0, 48, 219, 0.2);
  --ink: #1D1D1F;
  --ink-2: #2D3A4E;
  --ink-3: #6E6E73;
  --ink-4: #94A3B8;
  --bg: #F5F5F7;
  --bg-2: #F0F0F5;
  --bg-3: #E5E5E5;
  --white: #FFFFFF;
  --dark: #0F172A;
  --dark-2: #1E293B;
  --success: #16A34A;
  --r: 16px;
  --r-sm: 10px;
  --r-lg: 24px;
  --r-pill: 999px;
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.09);
  --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.12);
  --shadow-blue: 0 10px 30px rgba(0, 48, 219, 0.2);
  --transition: all 0.25s ease;
}

main {
  font-family: 'Ubuntu', sans-serif;
  background: var(--bg);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  font-size: 16px;
  line-height: 1.65;
  overflow-x: hidden;
}

main .container {
  max-width: 1400px;
  margin: 0 auto;
  width: 100%;
}

main ::-webkit-scrollbar {
  width: 8px;
}
main ::-webkit-scrollbar-track {
  background: var(--bg-2);
}
main ::-webkit-scrollbar-thumb {
  background: var(--bg-3);
  border-radius: 4px;
}
main ::-webkit-scrollbar-thumb:hover {
  background: var(--ink-4);
}


/* ── HERO ──────────────────────────────── */

.hero {
  padding: 80px 48px 110px;
  background: var(--bg);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -400px;
  right: -300px;
  width: 900px;
  height: 900px;
  background: radial-gradient(circle, rgba(0, 48, 219, 0.07) 0%, transparent 60%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -200px;
  left: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(0, 48, 219, 0.04) 0%, transparent 60%);
  pointer-events: none;
}

.hero-inner {
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hero-suite-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--ink-3);
  background: var(--white);
  border: 1px solid var(--bg-3);
  border-radius: var(--r-pill);
  padding: 6px 16px;
  margin-bottom: 28px;
  box-shadow: var(--shadow-sm);
  font-weight: 400;
}
.hero-suite-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--blue);
  box-shadow: 0 0 0 3px rgba(0, 48, 219, 0.15);
  animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
  0%, 100% { box-shadow: 0 0 0 3px rgba(0, 48, 219, 0.15); }
  50% { box-shadow: 0 0 0 8px rgba(0, 48, 219, 0.05); }
}

.hero-module-tag {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--blue);
  background: var(--blue-light);
  border-radius: var(--r-pill);
  padding: 6px 18px;
  margin-bottom: 24px;
}

main h1 {
  font-size: clamp(2.8rem, 6vw, 5.2rem) !important;
  font-weight: 700;
  line-height: 1.06;
  letter-spacing: -0.03em;
  color: var(--ink);
  margin-bottom: 28px;
  max-width: 820px;
}
main h1 em {
  font-style: normal;
  color: var(--blue);
  position: relative;
}
main h1 em::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 0;
  right: 0;
  height: 6px;
  background: rgba(0, 48, 219, 0.12);
  border-radius: 3px;
  z-index: -1;
}

.hero-sub {
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--ink-3);
  max-width: 620px;
  margin-bottom: 40px;
  font-weight: 400;
}
.hero-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.btn-signup {
  background: #F8FAFC;
  color: var(--ink);
  padding: 18px 40px;
  border-radius: 10px;
  font-size: 17px;
  font-weight: 800;
  text-decoration: none;
  font-family: 'Ubuntu', sans-serif;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--bg-3);
  letter-spacing: 0.5px;
}
.btn-signup:hover {
  background: #F1F5F9;
  border-color: #CBD5E1;
}

.btn-primary {
  background: var(--blue);
  color: #fff;
  padding: 18px 40px;
  border-radius: 10px;
  font-size: 17px;
  font-weight: 800;
  text-decoration: none;
  font-family: 'Ubuntu', sans-serif;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 10px 30px rgba(0, 48, 219, 0.3);
  letter-spacing: 0.5px;
}
.btn-primary:hover {
  background: var(--blue-dark);
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(0, 48, 219, 0.4);
}
.btn-primary svg {
  transition: transform 0.2s;
}
.btn-primary:hover svg {
  transform: translateX(3px);
}

.btn-ghost {
  color: var(--ink-2);
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 28px;
  border-radius: 10px;
  border: 1.5px solid var(--bg-3);
  transition: var(--transition);
}
.btn-ghost:hover {
  color: var(--blue);
  border-color: var(--blue);
  background: var(--blue-light);
}

.hero-note {
  font-size: 14px;
  color: var(--ink-4);
  font-weight: 400;
}
.hero-note span {
  margin: 0 8px;
  opacity: 0.35;
}


/* ── STATS BAR ─────────────────────────── */

.stats-bar {
  background: var(--dark);
  padding: 60px 48px;
  position: relative;
  overflow: hidden;
}
.stats-bar::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0, 48, 219, 0.08) 0%, transparent 50%);
}

.stats-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 48px;
  position: relative;
  z-index: 1;
}
.stat {
  text-align: center;
}
.stat-num {
  font-size: 3rem;
  font-weight: 700;
  color: #fff;
  line-height: 1;
  margin-bottom: 10px;
  letter-spacing: -0.03em;
}
.stat-num .stat-accent {
  color: var(--blue);
}
.stat-lbl {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.55;
  font-weight: 400;
}


/* ── SHARED SECTION ────────────────────── */

main section {
  padding: 100px 48px;
}

.s-label {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 14px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.s-label::before {
  content: '';
  width: 20px;
  height: 2px;
  background: var(--blue);
  border-radius: 1px;
}

main h2 {
  font-size: clamp(1.9rem, 3.8vw, 2.8rem) !important;
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.025em;
  color: var(--ink);
  margin-bottom: 16px;
}

.s-body {
  font-size: 1rem;
  color: var(--ink-3);
  max-width: 600px;
  line-height: 1.7;
  font-weight: 400;
  margin-bottom: 48px;
}


/* ── PROBLEM ───────────────────────────── */

.problem {
  background: var(--bg);
}
.pain-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.pain-card {
  background: var(--white);
  padding: 40px;
  border-radius: var(--r);
  border: 1px solid var(--bg-3);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.pain-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 0;
  background: var(--blue);
  border-radius: 0 0 2px 2px;
  transition: height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.pain-card:hover {
  box-shadow: var(--shadow-md);
  border-color: rgba(0, 48, 219, 0.15);
  transform: translateY(-2px);
}
.pain-card:hover::before {
  height: 100%;
}
.pain-num {
  font-size: 3.5rem;
  font-weight: 700;
  color: rgba(0, 48, 219, 0.08);
  line-height: 1;
  margin-bottom: 20px;
  transition: color 0.3s;
}
.pain-card:hover .pain-num {
  color: var(--blue-glow-strong);
}
.pain-title {
  font-size: 17px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 10px;
}
.pain-desc {
  font-size: 0.9rem;
  color: var(--ink-3);
  line-height: 1.65;
  font-weight: 400;
}


/* ── HOW IT WORKS ──────────────────────── */

.how {
  background: var(--bg-2);
}
.how-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.step-list {
  margin-top: 48px;
}
.step {
  display: flex;
  gap: 20px;
  padding: 24px 0;
  border-top: 1px solid var(--bg-3);
  transition: var(--transition);
}
.step:last-child {
  border-bottom: 1px solid var(--bg-3);
}
.step:hover {
  padding-left: 8px;
}
.step-num {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--blue-light);
  color: var(--blue);
  font-size: 14px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
  transition: var(--transition);
}
.step:hover .step-num {
  background: var(--blue);
  color: #fff;
  box-shadow: 0 4px 12px rgba(0, 48, 219, 0.3);
}
.step-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 6px;
}
.step-desc {
  font-size: 0.88rem;
  color: var(--ink-3);
  line-height: 1.65;
  font-weight: 400;
}

/* Pipeline Card */
.pipeline-card {
  background: var(--white);
  border: 1px solid var(--bg-3);
  border-radius: var(--r-lg);
  padding: 36px;
  position: sticky;
  top: 84px;
  box-shadow: var(--shadow-md);
}
.pipeline-title {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--ink-4);
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.pipeline-title::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--success);
  box-shadow: 0 0 0 3px rgba(0, 196, 140, 0.2);
  animation: pulse-dot 2s infinite;
}

.pipe-row {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 18px;
  border-radius: var(--r-sm);
  background: var(--bg);
  margin-bottom: 4px;
  border: 1px solid transparent;
  transition: var(--transition);
}
.pipe-row:hover {
  border-color: rgba(0, 48, 219, 0.08);
}
.pipe-row.live {
  background: var(--blue-light);
  border-color: rgba(0, 48, 219, 0.15);
}
.pipe-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--bg-3);
  flex-shrink: 0;
  transition: var(--transition);
}
.pipe-row.live .pipe-dot {
  background: var(--blue);
  box-shadow: 0 0 0 3px rgba(0, 48, 219, 0.15);
}
.pipe-name {
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-2);
  flex: 1;
}
.pipe-row.live .pipe-name {
  color: var(--blue);
  font-weight: 700;
}
.pipe-count {
  font-size: 13px;
  color: var(--ink-4);
  font-weight: 400;
  background: var(--bg-2);
  padding: 3px 10px;
  border-radius: var(--r-pill);
}
.pipe-row.live .pipe-count {
  background: rgba(0, 48, 219, 0.1);
  color: var(--blue);
}
.pipe-arrow {
  text-align: center;
  font-size: 14px;
  color: rgba(0, 48, 219, 0.08);
  padding: 2px 0;
  margin-bottom: 4px;
}
.pipe-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid var(--bg-3);
}
.pipe-total-lbl {
  font-size: 13px;
  color: var(--ink-4);
  font-weight: 400;
}
.pipe-total-val {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--blue);
}


/* ── FEATURES ──────────────────────────── */

.features {
  background: var(--bg);
}
.feat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.feat {
  background: var(--white);
  padding: 40px 34px;
  border-radius: var(--r);
  border: 1px solid var(--bg-3);
  transition: var(--transition);
  position: relative;
}
.feat:hover {
  box-shadow: var(--shadow-lg);
  border-color: rgba(0, 48, 219, 0.12);
  transform: translateY(-4px);
}
.feat-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--r-sm);
  background: var(--blue-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  font-size: 24px;
  transition: var(--transition);
}
.feat:hover .feat-icon {
  background: var(--blue);
  transform: scale(1.05);
}
.feat-icon svg {
  width: 24px;
  height: 24px;
  color: var(--blue);
  transition: color 0.3s;
}
.feat:hover .feat-icon svg {
  color: #fff;
}
.feat-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 8px;
}
.feat-desc {
  font-size: 0.9rem;
  color: var(--ink-3);
  line-height: 1.65;
  font-weight: 400;
}


/* ── VS COMPARISON ─────────────────────── */

.vs {
  background: var(--bg-2);
}
.vs-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 56px;
}
.vs-card {
  border-radius: var(--r-lg);
  padding: 44px;
}
.vs-old {
  background: var(--white);
  border: 1px solid var(--bg-3);
}
.vs-new {
  background: linear-gradient(145deg, var(--dark) 0%, var(--dark-2) 100%);
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: var(--shadow-lg);
}
.vs-label {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 32px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.vs-old .vs-label {
  color: var(--ink-4);
}
.vs-old .vs-label::before {
  content: '';
  width: 24px;
  height: 2px;
  background: var(--bg-3);
  border-radius: 1px;
}
.vs-new .vs-label {
  color: var(--blue);
}
.vs-new .vs-label::before {
  content: '';
  width: 24px;
  height: 2px;
  background: var(--blue);
  border-radius: 1px;
}
.vs-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 20px;
  font-size: 14.5px;
  line-height: 1.6;
  font-weight: 400;
}
.vs-old .vs-item {
  color: var(--ink-3);
}
.vs-new .vs-item {
  color: rgba(255, 255, 255, 0.7);
}
.vs-icon {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
}
.vs-old .vs-icon {
  background: var(--bg-2);
  color: var(--ink-4);
}
.vs-new .vs-icon {
  background: rgba(0, 48, 219, 0.2);
  color: var(--blue);
}


/* ── SUITE ADVANTAGE ───────────────────── */

.suite {
  background: linear-gradient(145deg, var(--blue) 0%, var(--blue-dark) 50%, var(--blue-deeper) 100%);
  padding: 100px 48px;
  position: relative;
  overflow: hidden;
}
.suite::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.08) 0%, transparent 60%);
  pointer-events: none;
}
.suite::after {
  content: '';
  position: absolute;
  bottom: -100px;
  left: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(0, 0, 0, 0.1) 0%, transparent 60%);
  pointer-events: none;
}
.suite .container {
  position: relative;
  z-index: 1;
}
.suite .s-label {
  color: rgba(255, 255, 255, 0.55);
}
.suite .s-label::before {
  background: rgba(255, 255, 255, 0.3);
}
.suite h2 {
  color: #fff;
}
.suite .s-body {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 56px;
}
.suite-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.suite-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 40px 34px;
  border-radius: var(--r);
  border: 1px solid rgba(255, 255, 255, 0.12);
  transition: var(--transition);
}
.suite-card:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}
.suite-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--r-sm);
  background: rgba(255, 255, 255, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.suite-title {
  font-size: 17px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
}
.suite-desc {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.7;
  font-weight: 400;
}


/* ── TESTIMONIALS ──────────────────────── */

.testimonials {
  background: var(--bg);
}
.t-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 56px;
}
.t-card {
  background: var(--white);
  border: 1px solid var(--bg-3);
  border-radius: var(--r);
  padding: 36px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  transition: var(--transition);
}
.t-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}
.t-stars {
  display: flex;
  gap: 2px;
}
.t-star {
  width: 18px;
  height: 18px;
}
.t-quote {
  font-size: 0.92rem;
  line-height: 1.7;
  color: var(--ink);
  font-style: normal;
  flex: 1;
  font-weight: 400;
}
.t-author {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 16px;
  border-top: 1px solid var(--bg-3);
}
.t-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--blue-light);
  color: var(--blue);
  font-size: 14px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.t-name {
  font-size: 14px;
  font-weight: 700;
  color: var(--ink);
}
.t-role {
  font-size: 13px;
  color: var(--ink-4);
  font-weight: 400;
}


/* ── FAQ ───────────────────────────────── */

.faq {
  background: var(--bg-2);
}
.faq-grid {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 56px;
  margin-top: 56px;
}
.faq-item {
  border-radius: var(--r-sm);
  background: var(--white);
  border: 1px solid var(--bg-3);
  margin-bottom: 10px;
  overflow: hidden;
  transition: var(--transition);
}
.faq-item:hover {
  border-color: rgba(0, 48, 219, 0.15);
}
.faq-item.open {
  border-color: rgba(0, 48, 219, 0.2);
  box-shadow: var(--shadow-sm);
}
.faq-q {
  font-size: 15px;
  font-weight: 700;
  color: var(--ink);
  padding: 20px 24px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  transition: var(--transition);
  user-select: none;
}
.faq-q:hover {
  color: var(--blue);
}
.faq-q-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--bg-2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: var(--transition);
  font-size: 14px;
  color: var(--ink-3);
}
.faq-item.open .faq-q-icon {
  background: var(--blue);
  color: #fff;
  transform: rotate(45deg);
}
.faq-a {
  font-size: 14px;
  color: var(--ink-3);
  line-height: 1.75;
  font-weight: 400;
  padding: 0 24px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.faq-item.open .faq-a {
  max-height: 200px;
  padding: 0 24px 20px;
}

.faq-aside {
  background: var(--white);
  border: 1px solid var(--bg-3);
  border-radius: var(--r-lg);
  padding: 40px;
  align-self: start;
  position: sticky;
  top: 84px;
  box-shadow: var(--shadow-md);
}
.faq-aside-label {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--blue);
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.faq-aside-label::before {
  content: '';
  width: 16px;
  height: 2px;
  background: var(--blue);
  border-radius: 1px;
}
.faq-aside h3 {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 14px;
  letter-spacing: -0.02em;
  line-height: 1.25;
}
.faq-aside p {
  font-size: 14px;
  color: var(--ink-3);
  line-height: 1.7;
  font-weight: 400;
  margin-bottom: 28px;
}
.faq-aside .btn-primary {
  display: flex;
  justify-content: center;
  width: 100%;
  margin-bottom: 14px;
}
.faq-aside-note {
  font-size: 13px;
  color: var(--ink-4);
  text-align: center;
  font-weight: 400;
}


/* ── FINAL CTA ─────────────────────────── */

.final {
  background: var(--white);
  padding: 0 0 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.final::before { display: none; }
.final .container {
  position: relative;
  z-index: 1;
}
.final h2 {
  color: #fff;
  max-width: 720px;
  margin: 0 auto 18px;
}
.final .s-label {
  color: var(--blue);
}
.final .s-label::before {
  background: var(--blue);
}
.final .s-body {
  color: rgba(255, 255, 255, 0.55);
  max-width: 520px;
  margin: 0 auto 48px;
}
.final-btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

.btn-brand {
  background: var(--blue);
  color: #fff;
  padding: 16px 32px;
  border-radius: 10px;
  font-size: 0.95rem;
  font-weight: 700;
  text-decoration: none;
  font-family: 'Ubuntu', sans-serif;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.btn-brand:hover {
  background: var(--blue-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 48, 219, 0.15);
}

.btn-outline {
  background: transparent;
  color: #fff;
  padding: 16px 32px;
  border-radius: 10px;
  border: 1.5px solid rgba(255, 255, 255, 0.35);
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  font-family: 'Ubuntu', sans-serif;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
}
.btn-outline:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.08);
}

.final-note {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.25);
  font-weight: 400;
}
.final-note span {
  margin: 0 8px;
  opacity: 0.35;
}


/* ── ANIMATIONS ────────────────────────── */

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1), transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}
.hero-suite-tag { animation: fadeUp 0.6s ease both; }
.hero-module-tag { animation: fadeUp 0.6s 0.08s ease both; }
main h1 { animation: fadeUp 0.7s 0.14s ease both; }
.hero-sub { animation: fadeUp 0.7s 0.22s ease both; }
.hero-cta { animation: fadeUp 0.7s 0.3s ease both; }
.hero-note { animation: fadeUp 0.7s 0.38s ease both; }


/* ── RESPONSIVE ────────────────────────── */

@media (max-width: 1024px) {
  .stats-inner { grid-template-columns: repeat(2, 1fr); gap: 36px; }
  .feat-grid { grid-template-columns: repeat(2, 1fr); }
  .suite-grid { grid-template-columns: repeat(2, 1fr); }
  .t-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  main section { padding: 72px 20px; }
  main .hero { padding: 48px 20px 72px; }
  .stats-bar { padding: 48px 20px; }
  .stats-inner { grid-template-columns: repeat(2, 1fr); gap: 28px; }
  .pain-grid { grid-template-columns: 1fr; }
  .how-layout { grid-template-columns: 1fr; }
  .pipeline-card { position: static; margin-top: 40px; }
  .feat-grid { grid-template-columns: 1fr; }
  .vs-grid { grid-template-columns: 1fr; }
  .suite { padding: 72px 20px; }
  .suite-grid { grid-template-columns: 1fr; }
  .t-grid { grid-template-columns: 1fr; }
  .faq-grid { grid-template-columns: 1fr; }
  .faq-aside { position: static; margin-top: 8px; }
  .final { padding: 88px 20px; }
}

@media (max-width: 480px) {
  .stats-inner { grid-template-columns: 1fr 1fr; gap: 20px; }
  .stat-num { font-size: 2.2rem; }
  main h1 { font-size: 2.2rem !important; }
  main h2 { font-size: 1.6rem !important; }
}

/* ── Hero Featured On ── */
.hero-featured { display: flex; flex-direction: column; gap: 16px; align-items: center; margin-top: 40px; }
.hero-featured-label { font-size: 13px; font-weight: 800; color: #94A3B8; letter-spacing: 2px; text-transform: uppercase; }
.hero-featured-logos { display: flex; align-items: center; justify-content: center; gap: 28px; }
.hero-featured-item { font-size: 17px; font-weight: 700; color: #475569; letter-spacing: -0.5px; }
.hero-featured-divider { width: 1px; height: 16px; background: #CBD5E1; }

/* ── Final CTA Box ── */
.final-box {
  background: var(--blue);
  border-radius: 24px;
  padding: 80px 48px;
  text-align: center;
}
.final-box h2 { color: #fff; font-size: 2.2rem; margin-bottom: 16px; }
.final-box > p { color: rgba(255,255,255,0.75); font-size: 1.05rem; line-height: 1.7; max-width: 560px; margin: 0 auto 32px; }
.final-box .final-btns { margin-bottom: 20px; }
.final-box .btn-brand { background: #fff; color: var(--blue); }
.final-box .btn-brand:hover { background: #EEF2FF; transform: translateY(-2px); }
.final-box .btn-outline { border-color: rgba(255,255,255,0.35); color: #fff; background: transparent; }
.final-box .btn-outline:hover { border-color: #fff; background: rgba(255,255,255,0.08); }
.final-box .final-note { color: rgba(255,255,255,0.5); }
@media (max-width: 640px) { .final-box { padding: 48px 24px; border-radius: 16px; } .final-box h2 { font-size: 1.8rem; } }
