/* =============================================================
   PIPESCALER — styles.css
   All shared styles for index, services, pricing, about pages
   ============================================================= */

/* === GOOGLE FONTS === */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;800&display=swap');

/* === RESET & BASE === */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  background-color: #FAFBFC;
  color: #111827;
  font-size: clamp(15px, 1.6vw, 18px);
  line-height: 1.55;
  overflow-x: hidden;
}

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

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

ul {
  list-style: none;
}

/* === TYPOGRAPHY === */
h1, h2, h3, h4 {
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: #111827;
}

/* Accent words in headings — same off-black as body headings */
.gradient-text {
  color: #111827;
}

/* === LAYOUT === */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

/* =============================================================
   NAVIGATION
   ============================================================= */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: #ffffff;
  border-bottom: 1px solid #E5E7EB;
  transition: box-shadow 0.25s ease;
}

/* Added via JS when scrollY > 10 */
.nav.scrolled {
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
}

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

.nav-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

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

/* Center nav links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 40px;
}

.nav-links a {
  font-size: 15px;
  font-weight: 500;
  color: #4B5563;
  transition: color 0.2s;
  white-space: nowrap;
}

.nav-links a:hover {
  color: #2463eb;
}

.nav-links a.nav-active {
  color: #0f172a;
  font-weight: 600;
  border-bottom: 2px solid #2463eb;
  padding-bottom: 2px;
}

/* Right side CTA */
.nav-right {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

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

/* =============================================================
   BUTTONS
   ============================================================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  border-radius: 14px;
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 800;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  border: none;
  text-decoration: none;
  white-space: nowrap;
}

.btn-primary {
  background: #2463eb;
  color: #ffffff;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.22);
}

/* Light CTA used inside dark sections */
.btn-light {
  background: #ffffff;
  color: #1A365C;
  font-size: 16px;
  font-weight: 800;
  padding: 14px 32px;
  border-radius: 14px;
  border: none;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
}

.btn-light:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.2);
}

/* =============================================================
   HAMBURGER MENU (mobile)
   ============================================================= */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px 4px;
  background: none;
  border: none;
  flex-shrink: 0;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #111827;
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

/* Animate bars to X when open */
.hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.hamburger.open span:nth-child(2) {
  opacity: 0;
}
.hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile dropdown menu */
.nav-mobile-menu {
  display: none;
  flex-direction: column;
  background: #ffffff;
  border-top: 1px solid #E5E7EB;
  padding: 16px 24px 20px;
  gap: 4px;
}

.nav-mobile-menu.open {
  display: flex;
}

.nav-mobile-menu a {
  font-size: 16px;
  font-weight: 500;
  color: #4B5563;
  padding: 12px 0;
  border-bottom: 1px solid #F3F4F6;
  transition: color 0.2s;
}

.nav-mobile-menu a:hover {
  color: #2463eb;
}

.nav-mobile-menu a.nav-active {
  color: #0f172a;
  font-weight: 600;
}

.nav-mobile-menu .btn {
  margin-top: 8px;
  align-self: flex-start;
  border-bottom: none;
  padding: 11px 22px;
}

.nav-mobile-menu .btn-primary {
  color: #ffffff;
}

/* =============================================================
   HERO (homepage) — centered, auto-timed word cycling
   ============================================================= */


/* Wrapper kept for markup compatibility */
.hero-scroll-container {}

.hero {
  height: 100vh;
  background: linear-gradient(160deg, #ddeeff 0%, #eaf3ff 40%, #f4f8ff 75%, #f9fbff 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.hero-inner {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 24px;
  /* offset for fixed nav height so content appears visually centered */
  margin-top: 60px;
}

/* Label text */
.hero-label {
  font-size: 14px;
  font-weight: 700;
  color: #2463eb;
  letter-spacing: 0.01em;
  margin-bottom: 20px;
}

/* Headline */
.hero-title {
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.1;
  color: #111827;
}

/* Slide-in keyframes — JS toggles between these on each word change */
@keyframes wordSlideUp {
  from { opacity: 0; transform: translateY(35%); }
  to   { opacity: 1; transform: translateY(0);   }
}
@keyframes wordSlideDown {
  from { opacity: 0; transform: translateY(-35%); }
  to   { opacity: 1; transform: translateY(0);    }
}
@keyframes wordSlideOut {
  from { opacity: 1; transform: translateY(0);     }
  to   { opacity: 0; transform: translateY(-30%);  }
}

/* Clip container masks the slide so it looks like a ticker */
.cycling-wrapper {
  display: inline-block;
  overflow: hidden;
  vertical-align: bottom;
  line-height: 1.15;
}

/* Cycling word — gradient text, animation triggered by JS */
#cycling-text {
  display: inline-block;
  background: linear-gradient(135deg, #4A7FA5 0%, #2D5F8A 50%, #1A365C 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Subheadline */
.hero-subtitle {
  font-size: clamp(16px, 1.8vw, 20px);
  color: #4B5563;
  line-height: 1.6;
  max-width: 580px;
  margin: 24px auto 0;
}

/* CTA button */
.hero-btn {
  display: inline-block;
  background: #2463eb;
  color: #ffffff;
  border-radius: 14px;
  padding: 16px 32px;
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 800;
  border: none;
  cursor: pointer;
  margin-top: 36px;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.hero-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.18);
}

/* Note below button */
.hero-note {
  font-size: 13px;
  color: #6B7280;
  margin-top: 12px;
}

/* =============================================================
   SOCIAL PROOF BAR
   ============================================================= */
.social-proof {
  background: #ffffff;
  border-top: 1px solid #E5E7EB;
  border-bottom: 1px solid #E5E7EB;
  padding: 26px 0;
}

.social-proof-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  flex-wrap: wrap;
}

.sp-divider {
  width: 1px;
  height: 24px;
  background: #E5E7EB;
}

.sp-text {
  font-size: 14px;
  font-weight: 600;
  color: #4B5563;
}

/* Stacked avatar circles */
.sp-avatars {
  display: flex;
  align-items: center;
}

.sp-avatar {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 2px solid #ffffff;
  margin-left: -10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 800;
  color: #ffffff;
  flex-shrink: 0;
}

.sp-avatar:first-child {
  margin-left: 0;
}

.sp-av1 { background: linear-gradient(135deg, #6C88A3, #1A365C); }
.sp-av2 { background: linear-gradient(135deg, #B6C5D1, #6C88A3); }
.sp-av3 { background: linear-gradient(135deg, #1A365C, #6C88A3); }
.sp-av4 { background: linear-gradient(135deg, #6C88A3, #B6C5D1); }
.sp-av5 { background: linear-gradient(135deg, #4B5563, #1A365C); }

.sp-stars {
  display: flex;
  gap: 2px;
  align-items: center;
}

.sp-star {
  color: #FBBF24;
  font-size: 17px;
}

.sp-rating-text {
  font-size: 14px;
  font-weight: 600;
  color: #111827;
  margin-left: 6px;
}

/* =============================================================
   SHARED SECTION STYLES
   ============================================================= */
.section {
  padding: 96px 0;
}

.section-alt {
  background: #ffffff;
}

.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 64px;
}

.section-label {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #6B7280;
  margin-bottom: 14px;
}

.section-title {
  font-size: clamp(24px, 2.8vw, 36px);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin-bottom: 16px;
  color: #111827;
}

.section-subtitle {
  font-size: 17px;
  color: #4B5563;
  line-height: 1.65;
}

/* =============================================================
   CHALLENGES SECTION — bright, airy
   ============================================================= */
.challenges-section {
  background: #ffffff;
  padding: 140px 0 160px;
  border-top: 1px solid #E5E7EB;
}

/* ── Header: left = label + headline + sub / right = CTA ── */
.challenges-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 40px;
  margin-bottom: 64px;
  position: relative;
  z-index: 1;
}

.challenges-top-left {
  max-width: 560px;
}

.challenges-label {
  color: #2463eb;
}

.challenges-title {
  font-size: clamp(28px, 3.2vw, 42px);
  font-weight: 800;
  color: #0f172a;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin: 12px 0 18px;
}

.challenges-subtitle {
  font-size: 16px;
  color: #4B5563;
  line-height: 1.7;
  max-width: 460px;
}

.challenges-top-right {
  flex-shrink: 0;
}

.challenges-cta-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 14px;
  font-weight: 600;
  color: #2463eb;
  text-decoration: none;
  white-space: nowrap;
  transition: gap 0.2s ease, opacity 0.2s ease;
}

.challenges-cta-link:hover {
  gap: 11px;
  opacity: 0.75;
}

.challenges-cta-link svg {
  flex-shrink: 0;
  transition: transform 0.2s ease;
}

.challenges-cta-link:hover svg {
  transform: translateX(2px);
}

/* ── 3 Cards ── */
.challenges-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  position: relative;
  z-index: 1;
}

.challenge-tile {
  background: #fbf9f7;
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: 20px;
  padding: 36px 32px 48px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.04);
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.55s ease, transform 0.55s ease,
              box-shadow 0.22s ease, border-color 0.22s ease;
  position: relative;
  overflow: hidden;
}

/* Large ghost number — warm tone on beige background */
.challenge-tile::before {
  content: attr(data-num);
  position: absolute;
  bottom: -14px;
  right: 10px;
  font-size: 130px;
  font-weight: 900;
  letter-spacing: -0.05em;
  line-height: 1;
  color: rgba(0,0,0,0.028);
  pointer-events: none;
  user-select: none;
}

.challenge-tile:nth-child(1) { transition-delay: 0ms; }
.challenge-tile:nth-child(2) { transition-delay: 90ms; }
.challenge-tile:nth-child(3) { transition-delay: 180ms; }

.challenge-tile.visible {
  opacity: 1;
  transform: translateY(0);
}

.challenge-tile.visible:hover {
  border-color: rgba(0,0,0,0.12);
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  transition-delay: 0ms;
}

.challenge-num {
  display: none;
}

.challenge-heading {
  font-size: clamp(18px, 1.7vw, 22px);
  font-weight: 800;
  color: #0f172a;
  letter-spacing: -0.025em;
  line-height: 1.25;
  margin-bottom: 16px;
}

.challenge-body {
  font-size: 14px;
  color: #6B7280;
  line-height: 1.8;
}

/* ── Responsive ── */
@media (max-width: 960px) {
  .challenges-top {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
    margin-bottom: 48px;
  }
  .challenges-subtitle {
    max-width: 100%;
  }
}

@media (max-width: 720px) {
  .challenges-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

@media (max-width: 576px) {
  .challenges-section {
    padding: 72px 0 80px;
  }
  .challenge-tile {
    padding: 28px 24px 32px;
  }
}

/* =============================================================
   EMAIL CONTRAST SECTION
   ============================================================= */
.email-contrast-section {
  background: linear-gradient(180deg, #F4F8FF 0%, #ffffff 100%);
  padding: 100px 0 112px;
  border-top: 1px solid #E0EAFF;
  border-bottom: 1px solid #E9ECF3;
}

.email-contrast-explanation {
  font-size: 16px;
  color: #4B5563;
  line-height: 1.7;
  max-width: 580px;
  margin: 18px auto 0;
}

/* Three-column grid: left col | vs | right col */
.email-comparison {
  display: grid;
  grid-template-columns: 1fr 56px 1fr;
  align-items: stretch;
  margin-top: 56px;
  max-width: 960px;
  margin-left: auto;
  margin-right: auto;
}

/* Each column: badge → card */
.email-col {
  display: flex;
  flex-direction: column;
}

/* Pill badge labels above each card */
.email-col-badge {
  display: inline-flex;
  align-self: center;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.01em;
  padding: 5px 14px;
  border-radius: 999px;
  margin-bottom: 16px;
}

.email-col-badge--bad {
  background: #F3F4F6;
  color: #6B7280;
}

.email-col-badge--good {
  background: #EFF6FF;
  color: #2463eb;
}

/* Cards */
.email-card {
  display: flex;
  flex-direction: column;
  border-radius: 16px;
  overflow: hidden;
  flex: 1;
}

.email-card--bad {
  border: 1px solid #E5E7EB;
  background: #ffffff;
  opacity: 0.75;
}

.email-card--good {
  border: 1.5px solid #D0DCFF;
  background: #ffffff;
  box-shadow: 0 4px 8px rgba(0,0,0,0.05), 0 20px 56px rgba(36,99,235,0.13);
}

/* Window chrome bar */
.email-card-chrome {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 14px 16px;
  border-bottom: 1px solid rgba(0,0,0,0.06);
  position: relative;
}

.email-card--bad .email-card-chrome {
  background: #F3F4F6;
}

.email-card--good .email-card-chrome {
  background: #F0F4FF;
}

/* Apple-style traffic light dots */
.email-card-dot {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  flex-shrink: 0;
}

.email-card-dot--red    { background: #FF5F57; }
.email-card-dot--yellow { background: #FEBC2E; }
.email-card-dot--green  { background: #28C840; }

.email-card-chrome-title {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  font-size: 11.5px;
  font-weight: 600;
  color: #9CA3AF;
  pointer-events: none;
}

.email-card--good .email-card-chrome-title {
  color: #6B7280;
}

/* Subject row */
.email-card-meta {
  padding: 12px 20px 12px;
  border-bottom: 1px solid rgba(0,0,0,0.05);
}

/* Sender row with profile photo */
.email-sender-row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-bottom: 10px;
  margin-bottom: 10px;
  border-bottom: 1px solid rgba(0,0,0,0.06);
}

.email-sender-photo {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center top;
  flex-shrink: 0;
  border: 1.5px solid rgba(0,0,0,0.08);
}

.email-sender-photo--grey {
  filter: grayscale(1);
  opacity: 0.5;
}

.email-sender-info {
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.email-sender-name {
  font-size: 12px;
  font-weight: 600;
  color: #374151;
}

.email-sender-addr {
  font-size: 11px;
  color: #9CA3AF;
}

.email-meta-row {
  display: flex;
  align-items: baseline;
  gap: 10px;
  font-size: 13px;
}

.email-meta-label {
  font-weight: 700;
  color: #9CA3AF;
  width: 52px;
  flex-shrink: 0;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.07em;
}

.email-meta-value {
  color: #374151;
  line-height: 1.4;
}

.email-meta-value--strong {
  font-weight: 600;
  color: #111827;
}

/* Email body */
.email-card-body {
  padding: 20px 20px 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 11px;
  font-size: 13.5px;
  color: #374151;
  line-height: 1.7;
}

.email-sign {
  margin-top: 4px;
  color: #9CA3AF;
}

/* Placeholder badges — generic email */
.ph {
  display: inline-block;
  background: #FEF9C3;
  color: #92400E;
  font-family: 'SF Mono', 'Fira Code', monospace;
  font-size: 11px;
  font-weight: 600;
  padding: 1px 6px;
  border-radius: 4px;
  border: 1px solid #FDE68A;
}

/* Highlighted specifics — Pipescaler email */
.hl {
  background: #EEF4FF;
  color: #2463eb;
  border-radius: 4px;
  padding: 1px 5px;
  font-weight: 600;
}

/* VS column — vertical line with badge */
.email-vs {
  display: flex;
  flex-direction: column;
  align-items: center;
  align-self: stretch;
  padding-top: 42px;
}

.email-vs::before,
.email-vs::after {
  content: '';
  flex: 1;
  width: 1px;
  background: #E5E7EB;
  min-height: 20px;
}

.email-vs span {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #111827;
  color: #ffffff;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 2px 10px rgba(0,0,0,0.15);
}

/* Responsive */
@media (max-width: 768px) {
  .email-comparison {
    grid-template-columns: 1fr;
    margin-top: 40px;
  }

  .email-vs {
    flex-direction: row;
    align-self: auto;
    padding-top: 0;
    height: 48px;
  }

  .email-vs::before,
  .email-vs::after {
    flex: 1;
    width: auto;
    height: 1px;
    min-height: 0;
    min-width: 16px;
  }
}

/* =============================================================
   PIPELINE FUNNEL SECTION
   ============================================================= */
.funnel-section {
  background: #0D1526;
  padding: 100px 0 112px;
}

.funnel-section-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 52px;
}

.funnel-section-title {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  color: #F8FAFC;
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin-bottom: 14px;
}

.funnel-section-subtitle {
  font-size: 16px;
  color: #94a3b8;
  line-height: 1.6;
}

/* Two-column layout: accordion left, funnel right */
.funnel-layout {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 40px;
  align-items: start;
  max-width: 960px;
  margin: 0 auto;
}

/* Left column */
.funnel-tabs-col {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.funnel-group {
  border: 1px dashed rgba(99, 130, 201, 0.2);
  border-radius: 14px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.funnel-group-label {
  font-size: 11px;
  font-weight: 500;
  color: #475569;
  padding: 0 4px;
  margin-bottom: 2px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* Tab buttons */
.funnel-tab {
  width: 100%;
  text-align: left;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid transparent;
  border-radius: 10px;
  padding: 14px 16px;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.funnel-tab:hover:not(.active) {
  background: rgba(255, 255, 255, 0.07);
}

.funnel-tab.active {
  background: rgba(36, 99, 235, 0.1);
  border-color: rgba(36, 99, 235, 0.28);
}

.funnel-tab-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.funnel-tab-title {
  font-size: 16px;
  font-weight: 600;
  color: #E2E8F0;
  letter-spacing: -0.01em;
  line-height: 1.3;
}

/* Chevron */
.funnel-tab-chevron {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  position: relative;
  display: inline-block;
}

.funnel-tab-chevron::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 6px;
  height: 6px;
  border-right: 2px solid #475569;
  border-bottom: 2px solid #475569;
  transform: translate(-65%, -65%) rotate(-45deg);
  transition: transform 0.28s cubic-bezier(0.4, 0, 0.2, 1), border-color 0.2s ease;
}

.funnel-tab.active .funnel-tab-chevron::before {
  transform: translate(-50%, -75%) rotate(45deg);
  border-color: #2463eb;
}

/* Smooth accordion — CSS grid-row technique (content-aware, no jump) */
.funnel-tab-body {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.funnel-tab.active .funnel-tab-body {
  grid-template-rows: 1fr;
}

.funnel-tab-body-inner {
  overflow: hidden;
}

.funnel-tab-body p {
  font-size: 14px;
  font-family: 'Inter', sans-serif;
  color: #64748B;
  line-height: 1.65;
  padding-top: 9px;
  text-align: left;
}

/* Right column */
.funnel-visual-col {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.funnel-footnote {
  font-size: 11px;
  color: #2D3F5E;
  text-align: right;
  align-self: flex-end;
  line-height: 1.5;
  margin-bottom: 6px;
}

.funnel-visual {
  width: 100%;
  max-width: 520px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  padding-top: 0;
}

/* Each panel is narrower than the one above */
.funnel-panel {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

.funnel-panel[data-funnel-panel="0"] { padding: 0 0%; }
.funnel-panel[data-funnel-panel="1"] { padding: 0 6.5%; }
.funnel-panel[data-funnel-panel="2"] { padding: 0 13%; }
.funnel-panel[data-funnel-panel="3"] { padding: 0 19.5%; }

/* Rounded rectangle tiers — labels live inside shapes */
.funnel-shape {
  width: 100%;
  height: 96px;
  background: #162035;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 24px;
  gap: 2px;
  transition: background 0.25s ease;
}

.funnel-panel[data-funnel-panel="3"] .funnel-shape {
  height: 82px;
}

/* Tier label — sits inside the shape, above headline */
.funnel-shape-label {
  display: block;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #3D5A8A;
  margin-bottom: 2px;
  transition: color 0.25s ease;
}

.funnel-panel.active .funnel-shape-label {
  color: rgba(255, 255, 255, 0.6);
}

.funnel-panel.active .funnel-shape {
  background: #2463eb;
}

.funnel-shape-headline {
  display: block;
  font-size: 17px;
  font-weight: 700;
  font-family: 'Inter', sans-serif;
  color: #CBD5E1;
  letter-spacing: -0.02em;
  line-height: 1.25;
  transition: color 0.25s ease;
}

.funnel-panel.active .funnel-shape-headline {
  color: #ffffff;
}

.funnel-shape-sub {
  display: block;
  font-size: 13px;
  font-weight: 500;
  font-family: 'Inter', sans-serif;
  color: #475569;
  transition: color 0.25s ease;
}

.funnel-panel.active .funnel-shape-sub {
  color: rgba(255, 255, 255, 0.72);
}

/* Responsive */
@media (max-width: 1024px) {
  .funnel-layout {
    grid-template-columns: 320px 1fr;
    gap: 32px;
  }
}

@media (max-width: 768px) {
  .funnel-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .funnel-visual {
    max-width: 380px;
  }
}

@media (max-width: 576px) {
  .funnel-section {
    padding: 64px 0;
  }

  .funnel-visual {
    max-width: 300px;
    padding-top: 24px;
  }

  .funnel-shape {
    height: 76px;
  }

  .funnel-panel[data-funnel-panel="3"] .funnel-shape {
    height: 64px;
  }

  .funnel-shape-headline {
    font-size: 13px;
  }

  .funnel-shape-sub {
    font-size: 11px;
  }
}

/* =============================================================
   HOW IT WORKS TEASER — steps left, booking email right
   ============================================================= */
.hiw-teaser-section {
  background: #F4F8FF;
  padding: 100px 0 112px;
}

/* Plain two-column layout — no frame */
.hiw-teaser-frame {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  margin-top: 48px;
  align-items: center;
}

/* Left: steps */
.hiw-steps-side {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

/* Steps container */
.hiw-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.hiw-step {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

/* Connector line between steps, aligned to badge center */
.hiw-step-connector {
  width: 1.5px;
  height: 28px;
  background: #D8E4FF;
  margin-left: 17px; /* (36px badge / 2) - (1.5px / 2) ≈ 17 */
}

/* Numbered step badge */
.hiw-step-num {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1.5px solid #C7D9FF;
  background: #EEF4FF;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  color: #2463eb;
  font-family: 'Inter', sans-serif;
}

.hiw-step-num--last {
  background: #2463eb;
  border-color: #2463eb;
  color: #ffffff;
}

.hiw-step-content {
  padding-top: 8px;
}

.hiw-step-title {
  font-size: 15px;
  font-weight: 700;
  color: #111827;
  line-height: 1.35;
  letter-spacing: -0.01em;
  margin-bottom: 6px;
}

.hiw-step-desc {
  font-size: 13px;
  color: #6B7280;
  line-height: 1.65;
}

/* "See the full process" link */
.hiw-teaser-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 600;
  color: #2463eb;
  text-decoration: none;
  transition: gap 0.2s ease;
}

.hiw-teaser-link:hover {
  gap: 10px;
}

.hiw-teaser-link svg {
  width: 16px;
  height: 16px;
  stroke: #2463eb;
  stroke-width: 2;
}

/* Step 3 outcome highlight */
.hiw-step--outcome {
  background: #EFF6FF;
  border: 1px solid #C7D9FF;
  border-radius: 14px;
  padding: 16px;
  margin: 0 -16px;
}

/* Right: booking email */
.hiw-email-side {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Wrapper + label above card */
.hiw-booking-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hiw-booking-label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 700;
  color: #2463eb;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.hiw-booking-label svg {
  width: 14px;
  height: 14px;
  stroke: #2463eb;
  stroke-width: 2;
}

/* Stacked ghost cards behind the main booking card */
.hiw-booking-stack {
  position: relative;
  width: 320px;
}

.hiw-booking-ghost {
  position: absolute;
  border-radius: 16px;
  background: #ffffff;
  border: 1px solid #E5E7EB;
  left: 0;
  right: 0;
}

.hiw-booking-ghost--1 {
  bottom: -10px;
  left: 14px;
  right: 14px;
  height: 48px;
  opacity: 0.55;
  z-index: 0;
}

.hiw-booking-ghost--2 {
  bottom: -18px;
  left: 26px;
  right: 26px;
  height: 40px;
  opacity: 0.28;
  z-index: -1;
}

/* Email card — entrance + float animation */
@keyframes bookingEntrance {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes emailFloat {
  0%, 100% { transform: translateY(0);   box-shadow: 0 8px 32px rgba(36,99,235,0.09); }
  50%       { transform: translateY(-7px); box-shadow: 0 20px 48px rgba(36,99,235,0.16); }
}

@keyframes notifPing {
  0%   { transform: scale(0.8); opacity: 1; }
  100% { transform: scale(2.4); opacity: 0; }
}

.booking-email {
  width: 100%;
  position: relative;
  z-index: 1;
  background: #ffffff;
  border-radius: 16px;
  border: 1px solid #E5E7EB;
  box-shadow: 0 8px 32px rgba(36,99,235,0.09);
  overflow: hidden;
  opacity: 0;
}

.booking-email.visible {
  animation:
    bookingEntrance 0.65s cubic-bezier(0.16, 1, 0.3, 1) forwards,
    emailFloat 4s ease-in-out 1s infinite;
}

/* Chrome bar */
.booking-email-chrome {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 11px 16px;
  border-bottom: 1px solid #F3F4F6;
  background: #FAFBFC;
}

.booking-chrome-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
}

.booking-chrome-dot--red    { background: #FF5F57; }
.booking-chrome-dot--yellow { background: #FEBC2E; }
.booking-chrome-dot--green  { background: #28C840; }

.booking-chrome-label {
  margin-left: auto;
  font-size: 11px;
  font-weight: 500;
  color: #9CA3AF;
  letter-spacing: 0.02em;
}

.booking-chrome-label strong {
  color: #2463eb;
  font-weight: 700;
}

/* Sender row */
.booking-email-from {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 16px 12px;
  border-bottom: 1px solid #F3F4F6;
  position: relative;
}

.booking-sender-avatar {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: #2463eb;
  color: #ffffff;
  font-size: 12px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.booking-sender-info {
  flex: 1;
  min-width: 0;
}

.booking-sender-name {
  font-size: 12px;
  font-weight: 600;
  color: #374151;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.booking-sender-addr {
  font-size: 11px;
  color: #9CA3AF;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Pulsing notification dot */
.booking-notif-dot {
  position: relative;
  width: 10px;
  height: 10px;
  flex-shrink: 0;
}

.booking-notif-dot::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: #10B981;
}

.booking-notif-dot::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: #10B981;
  animation: notifPing 2s ease-out infinite;
}

/* Email body */
.booking-email-body {
  padding: 18px 16px 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

/* "New Meeting Booked" green badge */
.booking-status-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #ECFDF5;
  color: #065F46;
  font-size: 13px;
  font-weight: 700;
  padding: 7px 12px;
  border-radius: 8px;
  border: 1px solid #A7F3D0;
}

.booking-status-badge svg {
  width: 14px;
  height: 14px;
  stroke: #10B981;
  stroke-width: 2;
  flex-shrink: 0;
}

/* Person card */
.booking-person {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  background: #F9FAFB;
  border-radius: 10px;
  border: 1px solid #F3F4F6;
}

.booking-person-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center top;
  flex-shrink: 0;
  border: 1.5px solid #E5E7EB;
}

.booking-person-name {
  font-size: 13px;
  font-weight: 700;
  color: #111827;
  line-height: 1.3;
}

.booking-person-role {
  font-size: 11px;
  color: #6B7280;
  margin-top: 1px;
}

/* Date/time rows */
.booking-meta {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.booking-meta-row {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: #374151;
  font-weight: 500;
}

.booking-meta-row svg {
  width: 14px;
  height: 14px;
  stroke: #2463eb;
  stroke-width: 1.75;
  flex-shrink: 0;
}

/* Prospect quote */
.booking-quote {
  font-size: 12px;
  color: #6B7280;
  font-style: italic;
  line-height: 1.6;
  padding-left: 10px;
  border-left: 2px solid #E5E7EB;
}

/* CTA row */
.booking-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  background: #2463eb;
  color: #ffffff;
  font-size: 13px;
  font-weight: 600;
  padding: 10px 16px;
  border-radius: 8px;
  cursor: default;
}

.booking-cta svg {
  width: 14px;
  height: 14px;
  stroke: #ffffff;
  stroke-width: 2;
  flex-shrink: 0;
}

/* Responsive */
@media (max-width: 900px) {
  .hiw-teaser-frame {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

/* =============================================================
   HOW IT WORKS — 3-step grid
   ============================================================= */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.step-card {
  background: #ffffff;
  border: 1px solid #E5E7EB;
  border-radius: 16px;
  padding: 36px 28px;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.step-card:hover {
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.08);
  transform: translateY(-3px);
}

.step-number {
  font-size: 12px;
  font-weight: 800;
  color: #6B7280;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 1.5px solid #D1D5DB;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.step-title {
  font-size: 18px;
  font-weight: 700;
  color: #111827;
  margin-bottom: 12px;
  letter-spacing: -0.01em;
  line-height: 1.3;
}

.step-desc {
  font-size: 15px;
  color: #4B5563;
  line-height: 1.65;
}

/* =============================================================
   VALUE PROPOSITIONS — 2x2 card grid
   ============================================================= */
.value-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.value-card {
  background: #ffffff;
  border: 1px solid #E5E7EB;
  border-radius: 16px;
  padding: 36px 32px;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.value-card:hover {
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.08);
  transform: translateY(-3px);
}

.value-card-number {
  font-size: 12px;
  font-weight: 700;
  color: #9CA3AF;
  margin-bottom: 16px;
  letter-spacing: 0.05em;
}

.value-card-title {
  font-size: 19px;
  font-weight: 700;
  color: #111827;
  margin-bottom: 12px;
  letter-spacing: -0.01em;
  line-height: 1.3;
}

.value-card-desc {
  font-size: 15px;
  color: #4B5563;
  line-height: 1.65;
}

/* =============================================================
   INTEGRATIONS — badge row
   ============================================================= */
.integrations-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.integration-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 20px;
  background: #ffffff;
  border: 1px solid #E5E7EB;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 600;
  color: #374151;
  transition: box-shadow 0.2s, transform 0.2s;
}

.integration-badge:hover {
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.09);
  transform: translateY(-2px);
  background: #F9FAFB;
}

.integration-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}

/* =============================================================
   FAQ — clean divider accordion
   ============================================================= */
.faq-section {
  background: #ffffff;
}

.faq-section-header {
  text-align: center;
  margin-bottom: 16px;
}

.faq-section-title {
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 800;
  color: #111827;
  letter-spacing: -0.025em;
  line-height: 1.15;
  margin-top: 10px;
}

.faq-list {
  max-width: 860px;
  margin: 0 auto;
}

.faq-item {
  border-top: 1px solid #E5E7EB;
}

.faq-item:last-child {
  border-bottom: 1px solid #E5E7EB;
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 26px 0;
  background: none;
  border: none;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  font-size: 17px;
  font-weight: 600;
  color: #111827;
  text-align: left;
  transition: color 0.2s;
}

.faq-question:hover {
  color: #2463eb;
}

.faq-item.open .faq-question {
  color: #111827;
}

/* Chevron — rotates 180° when open */
.faq-chevron {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}

.faq-chevron::before {
  content: '';
  width: 9px;
  height: 9px;
  border-right: 2px solid #9CA3AF;
  border-bottom: 2px solid #9CA3AF;
  transform: rotate(45deg) translateY(-2px);
  transition: border-color 0.2s ease;
  display: block;
}

.faq-question:hover .faq-chevron::before {
  border-color: #2463eb;
}

.faq-item.open .faq-chevron {
  transform: rotate(180deg);
}

.faq-item.open .faq-chevron::before {
  border-color: #2463eb;
}

/* max-height driven by JS for smooth animation */
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.faq-answer-inner {
  padding-bottom: 24px;
  font-size: 16px;
  color: #4B5563;
  line-height: 1.75;
  max-width: 740px;
}

/* =============================================================
   CTA SECTION (dark navy)
   ============================================================= */
.cta-section {
  background: #0D1526;
  padding: 88px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

/* Radial glow from center */
.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 70% at 50% 50%, rgba(36,99,235,0.15) 0%, transparent 70%);
  pointer-events: none;
}

/* Subtle dot-grid texture */
.cta-section::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
}

.cta-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}

.cta-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #2463eb;
  margin-bottom: 20px;
}

.cta-title {
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 800;
  color: #ffffff;
  max-width: 560px;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 14px;
}

.cta-sub {
  font-size: 16px;
  color: #94a3b8;
  max-width: 400px;
  line-height: 1.5;
  margin-bottom: 32px;
}

.cta-btn {
  box-shadow: 0 0 0 1px rgba(255,255,255,0.08), 0 8px 32px rgba(0,0,0,0.3);
}

/* Three anchor stats below the button */
.cta-stats {
  display: flex;
  align-items: center;
  gap: 32px;
}

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

.cta-stat-value {
  font-size: 15px;
  font-weight: 800;
  color: #ffffff;
  letter-spacing: -0.02em;
}

.cta-stat-label {
  font-size: 12px;
  color: #475569;
  font-weight: 500;
}

.cta-stat-divider {
  width: 1px;
  height: 32px;
  background: rgba(255,255,255,0.08);
  flex-shrink: 0;
}

/* =============================================================
   FOOTER
   ============================================================= */
.footer {
  background: #ffffff;
  border-top: 1px solid #E5E7EB;
  padding: 40px 0 32px;
}

.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

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

.footer-logo img {
  height: 24px;
  width: auto;
}

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

.footer-links a {
  font-size: 14px;
  color: #4B5563;
  font-weight: 500;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: #111827;
}

.footer-divider {
  height: 1px;
  background: #F3F4F6;
}

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

.footer-copy {
  font-size: 13px;
  color: #9CA3AF;
}

.footer-legal {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-legal a {
  font-size: 13px;
  color: #9CA3AF;
  font-weight: 500;
  transition: color 0.2s;
}

.footer-legal a:hover {
  color: #4B5563;
}

/* =============================================================
   LEGAL PAGES (imprint, privacy, terms, contact)
   ============================================================= */
.legal-hero {
  padding: 120px 0 48px;
  background: #ffffff;
  border-bottom: 1px solid #E5E7EB;
  text-align: center;
}

.legal-hero-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #2463eb;
  margin-bottom: 12px;
  display: block;
}

.legal-hero-title {
  font-size: clamp(26px, 3.5vw, 42px);
  font-weight: 800;
  color: #111827;
  letter-spacing: -0.025em;
}

.legal-body {
  padding: 64px 0 96px;
  background: #FAFBFC;
}

.legal-content {
  max-width: 720px;
  margin: 0 auto;
}

.legal-content h2 {
  font-size: 18px;
  font-weight: 700;
  color: #111827;
  margin: 40px 0 12px;
  letter-spacing: -0.01em;
}

.legal-content h2:first-child {
  margin-top: 0;
}

.legal-content p {
  font-size: 15px;
  color: #4B5563;
  line-height: 1.75;
  margin-bottom: 14px;
}

.legal-content ul {
  list-style: disc;
  padding-left: 22px;
  margin-bottom: 14px;
}

.legal-content ul li {
  font-size: 15px;
  color: #4B5563;
  line-height: 1.75;
  margin-bottom: 6px;
}

.legal-content a {
  color: #2463eb;
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* Contact form */
.contact-form-wrap {
  max-width: 640px;
  margin: 0 auto;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 18px;
}

.form-field label {
  font-size: 13px;
  font-weight: 600;
  color: #374151;
  letter-spacing: 0.01em;
}

.form-field input,
.form-field textarea {
  padding: 12px 16px;
  border: 1px solid #E5E7EB;
  border-radius: 10px;
  font-size: 14px;
  font-family: 'Inter', sans-serif;
  color: #111827;
  background: #ffffff;
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
  width: 100%;
}

.form-field input:focus,
.form-field textarea:focus {
  border-color: #2463eb;
  box-shadow: 0 0 0 3px rgba(36,99,235,0.1);
}

.form-field textarea {
  resize: vertical;
  min-height: 140px;
}

.form-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 28px;
}

.form-checkbox input[type="checkbox"] {
  width: 16px;
  height: 16px;
  margin-top: 2px;
  flex-shrink: 0;
  accent-color: #2463eb;
  cursor: pointer;
}

.form-checkbox label {
  font-size: 13px;
  color: #6B7280;
  line-height: 1.5;
  cursor: pointer;
}

.form-checkbox label a {
  color: #2463eb;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.form-submit {
  width: 100%;
  padding: 14px 24px;
  background: #2463eb;
  color: #ffffff;
  font-size: 15px;
  font-weight: 700;
  font-family: 'Inter', sans-serif;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
}

.form-submit:hover {
  background: #1d54d4;
  transform: translateY(-1px);
}

.form-success {
  display: none;
  text-align: center;
  padding: 48px 0;
}

.form-success-icon {
  width: 52px;
  height: 52px;
  background: #EEF4FF;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}

.form-success-icon svg {
  stroke: #2463eb;
  width: 24px;
  height: 24px;
}

.form-success h3 {
  font-size: 20px;
  font-weight: 800;
  color: #111827;
  margin-bottom: 8px;
}

.form-success p {
  font-size: 15px;
  color: #6B7280;
}

@media (max-width: 600px) {
  .form-row {
    grid-template-columns: 1fr;
  }

  .footer-inner {
    padding: 0 20px;
  }

  .footer-top,
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
}

/* =============================================================
   PAGE HERO (services, pricing, about inner pages)
   ============================================================= */
.page-hero {
  padding: 140px 0 80px;
  background: #ffffff;
  border-bottom: 1px solid #E5E7EB;
}

.page-hero-inner {
  max-width: 700px;
  margin: 0 auto;
  padding: 0 24px;
  text-align: center;
}

.page-hero-label {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #6B7280;
  margin-bottom: 16px;
}

.page-hero-title {
  font-size: clamp(28px, 3.4vw, 42px);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin-bottom: 20px;
  color: #111827;
}

.page-hero-subtitle {
  font-size: clamp(16px, 1.5vw, 18px);
  color: #4B5563;
  line-height: 1.65;
}

/* =============================================================
   SERVICES PAGE
   ============================================================= */
.services-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.service-block {
  background: #ffffff;
  border: 1px solid #E5E7EB;
  border-radius: 16px;
  padding: 40px;
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 48px;
  align-items: start;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.service-block:hover {
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.07);
  transform: translateY(-2px);
}

.service-block-number {
  font-size: 52px;
  font-weight: 800;
  line-height: 1;
  color: #2463eb;
}

.service-block-title {
  font-size: 22px;
  font-weight: 700;
  color: #111827;
  margin-bottom: 12px;
  letter-spacing: -0.01em;
  line-height: 1.25;
}

.service-block-desc {
  font-size: 16px;
  color: #4B5563;
  line-height: 1.7;
}

/* =============================================================
   PRICING PAGE
   ============================================================= */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
}

.pricing-card {
  background: #ffffff;
  border: 1px solid #E5E7EB;
  border-radius: 20px;
  padding: 36px 28px;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
  position: relative;
}

.pricing-card:hover {
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.09);
  transform: translateY(-3px);
}

/* Highlighted recommended tier */
.pricing-card.recommended {
  border-color: #1A365C;
  border-width: 2px;
  box-shadow: 0 12px 40px rgba(26, 54, 92, 0.12);
}

.pricing-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: #1A365C;
  color: #ffffff;
  font-size: 11px;
  font-weight: 700;
  padding: 5px 16px;
  border-radius: 100px;
  white-space: nowrap;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.pricing-tier-name {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #6B7280;
  margin-bottom: 8px;
}

.pricing-price {
  font-size: 40px;
  font-weight: 800;
  color: #111827;
  line-height: 1;
  letter-spacing: -0.03em;
  margin-bottom: 4px;
}

.pricing-price span {
  font-size: 20px;
  font-weight: 600;
  color: #6B7280;
  letter-spacing: 0;
}

.pricing-period {
  font-size: 14px;
  color: #9CA3AF;
  margin-bottom: 8px;
}

.pricing-desc {
  font-size: 14px;
  color: #6B7280;
  line-height: 1.55;
  margin-bottom: 24px;
}

.pricing-divider {
  height: 1px;
  background: #E5E7EB;
  margin: 20px 0;
}

.pricing-features {
  display: flex;
  flex-direction: column;
  gap: 11px;
  margin-bottom: 28px;
}

.pricing-feature {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: #374151;
  line-height: 1.5;
}

.pricing-check {
  flex-shrink: 0;
  width: 17px;
  height: 17px;
  border-radius: 50%;
  background: #DCFCE7;
  color: #16A34A;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-weight: 800;
  margin-top: 1px;
}

.pricing-note {
  text-align: center;
  font-size: 14px;
  color: #6B7280;
  margin-top: 40px;
  padding: 16px 24px;
  background: #ffffff;
  border-radius: 12px;
  border: 1px solid #E5E7EB;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

/* =============================================================
   ABOUT PAGE
   ============================================================= */
.founders-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.founder-card {
  background: #ffffff;
  border: 1px solid #E5E7EB;
  border-radius: 20px;
  padding: 40px;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.founder-card:hover {
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.07);
  transform: translateY(-2px);
}

.founder-initials {
  width: 60px;
  height: 60px;
  border-radius: 14px;
  background: linear-gradient(135deg, #B6C5D1 0%, #1A365C 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 20px;
  letter-spacing: -0.01em;
}

.founder-name {
  font-size: 20px;
  font-weight: 700;
  color: #111827;
  margin-bottom: 4px;
  letter-spacing: -0.01em;
}

.founder-role {
  font-size: 12px;
  font-weight: 700;
  color: #6B7280;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 16px;
}

.founder-bio {
  font-size: 15px;
  color: #4B5563;
  line-height: 1.75;
}

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

.principle-card {
  background: #ffffff;
  border: 1px solid #E5E7EB;
  border-radius: 16px;
  padding: 32px 28px;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.principle-card:hover {
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.07);
  transform: translateY(-2px);
}

.principle-number {
  font-size: 36px;
  font-weight: 800;
  color: #2463eb;
  line-height: 1;
  margin-bottom: 18px;
}

.principle-title {
  font-size: 17px;
  font-weight: 700;
  color: #111827;
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}

.principle-desc {
  font-size: 14px;
  color: #4B5563;
  line-height: 1.7;
}

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

/* --- Below 992px: hamburger nav --- */
@media (max-width: 992px) {
  .nav-links,
  .nav-right {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .steps-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

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

  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 420px;
    margin-left: auto;
    margin-right: auto;
  }

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

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

  .service-block {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .service-block-number {
    font-size: 40px;
  }

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
}

/* --- Below 768px --- */
@media (max-width: 768px) {
  .hero-btn {
    width: 100%;
    max-width: 320px;
    text-align: center;
  }

  .section {
    padding: 72px 0;
  }

  .social-proof-inner {
    flex-direction: column;
    gap: 14px;
    text-align: center;
  }

  .sp-divider {
    display: none;
  }

  .cta-section {
    padding: 72px 0;
  }

  .page-hero {
    padding: 120px 0 64px;
  }

  .service-block {
    padding: 28px 24px;
  }
}

/* --- Below 576px --- */
@media (max-width: 576px) {
  .section {
    padding: 60px 0;
  }

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

  .integration-badge {
    padding: 9px 14px;
    font-size: 13px;
  }

  .pricing-card {
    padding: 28px 22px;
  }

  .founder-card {
    padding: 28px 24px;
  }

  .footer-links {
    flex-wrap: wrap;
    gap: 14px;
  }

  .cta-section {
    padding: 72px 0;
  }

  .cta-stats {
    flex-direction: column;
    gap: 16px;
  }

  .cta-stat-divider {
    width: 32px;
    height: 1px;
  }
}

/* =============================================================
   SERVICES PAGE — How It Works
   ============================================================= */

/* --- Scroll reveal (used across all srv-* sections) --- */
.reveal-item {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

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

/* --- S1: Hero --- */
/* ===== S1: Hero — light airy blue-grey gradient ===== */
.srv-hero {
  background: linear-gradient(150deg, #EEF2FF 0%, #F0F4FF 40%, #F5F8FF 70%, #EAF0FF 100%);
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 100px 0 60px;
  border-bottom: 1px solid #E2E8F0;
  position: relative;
  overflow: hidden;
}

/* Soft radial glow — upper right, indigo-blue */
.srv-hero::before {
  content: '';
  position: absolute;
  top: -160px;
  right: -80px;
  width: 750px;
  height: 750px;
  background: radial-gradient(circle,
    rgba(99, 102, 241, 0.14) 0%,
    rgba(36, 99, 235, 0.06) 45%,
    transparent 70%);
  pointer-events: none;
}

/* Subtle dot grid, fading toward the right */
.srv-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(99, 102, 241, 0.12) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
  mask-image: radial-gradient(ellipse 75% 85% at 70% 50%, rgba(0,0,0,0.35) 0%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse 75% 85% at 70% 50%, rgba(0,0,0,0.35) 0%, transparent 70%);
}

.srv-hero > .container {
  width: 100%;
}

.srv-hero-inner {
  display: grid;
  grid-template-columns: 1fr 510px;
  gap: 56px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.srv-hero-text {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.srv-hero-title {
  font-size: clamp(28px, 3.6vw, 50px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
  color: #0f172a;
}

.srv-hero-subtitle {
  font-size: clamp(15px, 1.5vw, 18px);
  color: #475569;
  line-height: 1.7;
  max-width: 500px;
}

.srv-hero-btn {
  align-self: flex-start;
}

/* ===== Pipeline visualization card ===== */
.srv-pipeline-card {
  background: #ffffff;
  border: 1px solid #DDE3EF;
  border-radius: 20px;
  overflow: hidden;
  box-shadow:
    0 4px 6px rgba(0, 0, 0, 0.03),
    0 20px 60px rgba(36, 99, 235, 0.1);
}

/* Card chrome header */
.srv-plc-header {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 13px 18px;
  border-bottom: 1px solid #F1F5F9;
  background: #F8FAFC;
}

.srv-plc-live-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #10B981;
  flex-shrink: 0;
  position: relative;
}

.srv-plc-live-dot::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: #10B981;
  animation: notifPing 2s ease-out infinite;
}

.srv-plc-header-title {
  font-size: 12.5px;
  font-weight: 600;
  color: #374151;
  flex: 1;
}

.srv-plc-tag {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: #059669;
  background: #ECFDF5;
  padding: 3px 10px;
  border-radius: 100px;
}

/* ── Body wrapper — tinted backdrop so white zone-cards "float" ── */
.srv-plc-body {
  background: #EEF2FF;
  padding: 8px;
  display: flex;
  flex-direction: column;
}

/* ── Zones — each is a white card ── */
.srv-plc-zone {
  background: #ffffff;
  border-radius: 14px;
  border: 1px solid #E8EDF6;
  padding: 10px 14px 12px;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.05);
}

/* Left accent border per zone */
.srv-plc-zone--find { border-left: 3px solid #2463eb; }
.srv-plc-zone--send { border-left: 3px solid #6366F1; }
.srv-plc-zone--book { border-left: 3px solid #059669; }

/* Zone header row */
.srv-plc-zone-head {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
  padding: 5px 8px;
  border-radius: 9px;
}

/* Subtle colored tint behind each zone head */
.srv-plc-zone--find .srv-plc-zone-head { background: rgba(36,  99, 235, 0.05); }
.srv-plc-zone--send .srv-plc-zone-head { background: rgba(99, 102, 241, 0.05); }
.srv-plc-zone--book .srv-plc-zone-head { background: rgba(5,  150, 105, 0.05); }

/* Numbered circle badge */
.srv-plc-zone-num {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  font-size: 12px;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background: #EFF6FF;
  color: #2463eb;
}

.srv-plc-zone-num--send { background: #F5F3FF; color: #6366F1; }
.srv-plc-zone-num--book { background: #ECFDF5; color: #059669; }

/* Stacked eyebrow + title */
.srv-plc-zone-label-wrap {
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.srv-plc-zone-eyebrow {
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #9CA3AF;
  line-height: 1;
}

/* Title — larger, bold, colored per zone */
.srv-plc-zone-title {
  font-size: 13.5px;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.srv-plc-zone--find .srv-plc-zone-title { color: #2463eb; }
.srv-plc-zone--send .srv-plc-zone-title { color: #6366F1; }
.srv-plc-zone--book .srv-plc-zone-title { color: #059669; }

/* ── Lead rows (Zone 1) ── */
.srv-plc-leads {
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin-bottom: 7px;
}

.srv-plc-lead {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  border: 1px solid #E9EEF5;
  border-radius: 10px;
  padding: 6px 8px;
}

.srv-plc-lead-ava {
  width: 28px;
  height: 28px;
  border-radius: 7px;
  font-size: 12px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.srv-plc-lead-info { flex: 1; min-width: 0; }

.srv-plc-lead-co {
  font-size: 12.5px;
  font-weight: 700;
  color: #0f172a;
  line-height: 1.2;
}

.srv-plc-lead-role {
  font-size: 10.5px;
  color: #6B7280;
  margin-top: 1px;
}

.srv-plc-lead-match {
  font-size: 10px;
  font-weight: 700;
  color: #2463eb;
  background: #EFF6FF;
  padding: 2px 7px;
  border-radius: 20px;
  white-space: nowrap;
  flex-shrink: 0;
}

/* Scanning bar */
.srv-plc-scan {
  display: flex;
  align-items: center;
  gap: 8px;
}

.srv-plc-scan-track {
  flex: 1;
  height: 3px;
  background: #E2E8F0;
  border-radius: 2px;
  overflow: hidden;
}

.srv-plc-scan-fill {
  height: 100%;
  background: linear-gradient(90deg, #2463eb, #6366F1);
  border-radius: 2px;
  animation: scanProgress 3.2s ease-in-out infinite;
}

@keyframes scanProgress {
  0%        { width: 0%; }
  65%       { width: 100%; }
  85%, 100% { width: 0%; }
}

.srv-plc-scan-label {
  font-size: 10px;
  color: #9CA3AF;
  white-space: nowrap;
}

/* ── Vertical connector — sits in the tinted body gap ── */
.srv-plc-vconn {
  display: flex;
  padding: 2px 0;
}

.srv-plc-vconn-line {
  position: relative;
  width: 2px;
  height: 16px;
  background: #C7D2FE;
  margin: 0 auto;
  border-radius: 2px;
}

.srv-plc-vconn-dot {
  position: absolute;
  left: -3px;
  top: -4px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #6366F1;
  animation: dropDown 1.8s ease-in-out infinite;
}

.srv-plc-vconn-dot--2 { animation-delay: -0.9s; }
.srv-plc-vconn-dot--3 { animation-delay: -0.3s; }
.srv-plc-vconn-dot--4 { animation-delay: -1.2s; }

@keyframes dropDown {
  0%   { top: -4px;             opacity: 0; }
  15%  { opacity: 1; }
  85%  { opacity: 1; }
  100% { top: calc(100% - 4px); opacity: 0; }
}

/* ── Email box (Zone 2) ── */
.srv-plc-email-box {
  background: #fff;
  border: 1px solid #E9EEF5;
  border-radius: 10px;
  padding: 7px 10px;
  margin-bottom: 7px;
}

.srv-plc-email-from {
  font-size: 10px;
  color: #9CA3AF;
  margin-bottom: 5px;
}

.srv-plc-email-preview {
  font-size: 12px;
  color: #374151;
  line-height: 1.5;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Typewriter text reveal */
.srv-plc-typewriter {
  display: inline;
  overflow: hidden;
  clip-path: inset(0 100% 0 0);
  animation: typeReveal 5s ease-in-out infinite;
}

@keyframes typeReveal {
  0%, 5%    { clip-path: inset(0 100% 0 0); }
  55%, 82%  { clip-path: inset(0 0%   0 0); }
  96%, 100% { clip-path: inset(0 100% 0 0); }
}

/* Blinking cursor */
.srv-plc-cursor {
  display: inline-block;
  color: #6366F1;
  font-weight: 300;
  animation: blinkCursor 0.75s step-end infinite;
}

@keyframes blinkCursor {
  0%, 100% { opacity: 1; }
  50%      { opacity: 0; }
}

/* Sequence step track */
.srv-plc-sequence {
  display: flex;
  align-items: center;
}

.srv-plc-seq-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  flex-shrink: 0;
}

.srv-plc-seq-item span {
  font-size: 9.5px;
  color: #9CA3AF;
  font-weight: 600;
}

.srv-plc-seq-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #2463eb;
}

.srv-plc-seq-dot--empty {
  background: #E2E8F0;
}

.srv-plc-seq-active .srv-plc-seq-dot {
  background: #6366F1;
  animation: seqPulse 1.5s ease-in-out infinite;
}

.srv-plc-seq-active span { color: #6366F1; }

@keyframes seqPulse {
  0%, 100% { box-shadow: 0 0 0 0   rgba(99, 102, 241, 0.35); }
  50%      { box-shadow: 0 0 0 4px rgba(99, 102, 241, 0.15); }
}

.srv-plc-seq-line {
  flex: 1;
  height: 1.5px;
  background: #2463eb;
  margin-bottom: 12px;
}

.srv-plc-seq-line--dim { background: #E2E8F0; }

/* ── Meeting rows (Zone 3) ── */
.srv-plc-meetings {
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin-bottom: 7px;
}

.srv-plc-meeting {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  border: 1px solid #D1FAE5;
  border-radius: 10px;
  padding: 6px 8px;
  animation: meetPop 0.45s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.srv-plc-meeting:nth-child(2) { animation-delay: 0.12s; }

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

.srv-plc-cal-icon {
  color: #059669;
  flex-shrink: 0;
}

.srv-plc-meet-info { flex: 1; min-width: 0; }

.srv-plc-meet-name {
  font-size: 12px;
  font-weight: 700;
  color: #0f172a;
  line-height: 1.2;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.srv-plc-meet-time {
  font-size: 10.5px;
  color: #6B7280;
  margin-top: 1px;
}

.srv-plc-meet-badge {
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.06em;
  color: #7C3AED;
  background: #F5F3FF;
  padding: 2px 7px;
  border-radius: 4px;
  flex-shrink: 0;
}

.srv-plc-meet-footer {
  font-size: 11px;
  color: #6B7280;
  text-align: center;
}

.srv-plc-meet-count {
  font-weight: 800;
  font-size: 14px;
  color: #059669;
}

/* ══════════════════════════════════════════════
   DASHBOARD CARD — services hero replacement
   ══════════════════════════════════════════════ */

.dash-card {
  font-family: 'Inter', system-ui, sans-serif;
}

/* ── Row 1: KPI stats ── */
.dash-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-bottom: 1px solid #F1F5F9;
}

.dash-stat {
  padding: 18px 20px 16px;
}

.dash-stat--border {
  border-left: 1px solid #F1F5F9;
}

.dash-stat-label {
  font-size: 11px;
  font-weight: 500;
  color: #9CA3AF;
  margin-bottom: 6px;
  letter-spacing: 0.01em;
}

.dash-stat-val {
  font-size: 26px;
  font-weight: 800;
  color: #111827;
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 5px;
}

.dash-stat-delta {
  font-size: 11px;
  font-weight: 500;
  color: #6B7280;
}

.dash-delta--up {
  color: #059669;
}

/* ── Row 2: Chart ── */
.dash-chart {
  padding: 14px 18px 10px;
  border-bottom: 1px solid #F1F5F9;
}

.dash-chart-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}

.dash-chart-title {
  font-size: 12px;
  font-weight: 600;
  color: #374151;
}

.dash-chart-legend {
  font-size: 11px;
  color: #9CA3AF;
  display: flex;
  align-items: center;
  gap: 5px;
}

.dash-legend-line {
  display: inline-block;
  width: 16px;
  height: 2px;
  background: #2463eb;
  border-radius: 2px;
}

.dash-chart-wrap {
  position: relative;
  height: 76px;
}

.dash-chart-svg {
  width: 100%;
  height: 66px;
  display: block;
}

/* Line draw animation */
.dash-chart-line {
  stroke-dasharray: 520;
  stroke-dashoffset: 520;
  animation: dashLineDraw 1.6s cubic-bezier(0.4, 0, 0.2, 1) 0.4s forwards;
}

@keyframes dashLineDraw {
  to { stroke-dashoffset: 0; }
}

/* Tooltip pinned at inflection point (~22% from left) */
.dash-chart-tooltip {
  position: absolute;
  top: 0;
  left: 14%;
  display: flex;
  align-items: center;
  gap: 6px;
  background: #ffffff;
  border: 1px solid #E2E8F0;
  border-radius: 8px;
  padding: 5px 9px;
  font-size: 11px;
  font-weight: 600;
  color: #374151;
  white-space: nowrap;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  animation: dashTooltipIn 0.5s ease 1.2s both;
}

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

.dash-tooltip-logo {
  width: 18px;
  height: 18px;
  border-radius: 4px;
  object-fit: cover;
}

.dash-chart-xaxis {
  display: flex;
  justify-content: space-between;
  padding: 0 2px;
  margin-top: 2px;
}

.dash-chart-xaxis span {
  font-size: 10px;
  color: #D1D5DB;
  font-weight: 500;
}

/* ── Row 3: Activity feed ── */
.dash-activity {
  padding: 14px 18px;
  border-bottom: 1px solid #F1F5F9;
}

.dash-act-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}

.dash-act-title {
  font-size: 12px;
  font-weight: 600;
  color: #374151;
}

.dash-live-badge {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 11px;
  font-weight: 600;
  color: #059669;
}

.dash-live-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #10B981;
  animation: dashPulse 1.8s ease-in-out infinite;
}

@keyframes dashPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.5; transform: scale(0.75); }
}

.dash-act-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.dash-act-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  border-bottom: 1px solid #F9FAFB;
  animation: dashItemIn 0.4s ease both;
}

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

.dash-act-item:nth-child(1) { animation-delay: 0.2s; }
.dash-act-item:nth-child(2) { animation-delay: 0.45s; }
.dash-act-item:nth-child(3) { animation-delay: 0.7s; }

@keyframes dashItemIn {
  from { opacity: 0; transform: translateX(-6px); }
  to   { opacity: 1; transform: translateX(0); }
}

.dash-act-icon {
  width: 28px;
  height: 28px;
  border-radius: 7px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.dash-act-icon--green  { background: #DCFCE7; color: #16a34a; }
.dash-act-icon--blue   { background: #DBEAFE; color: #2463eb; }
.dash-act-icon--indigo { background: #E0E7FF; color: #4338CA; }

.dash-act-text {
  flex: 1;
  font-size: 12px;
  color: #374151;
  line-height: 1.4;
}

.dash-act-text strong {
  color: #111827;
  font-weight: 600;
}

.dash-act-time {
  font-size: 11px;
  color: #9CA3AF;
  white-space: nowrap;
  flex-shrink: 0;
}

/* ── Row 4: Footer bar ── */
.dash-footer {
  display: flex;
  align-items: center;
  gap: 0;
  padding: 12px 18px;
  background: #F8FAFC;
  border-top: 1px solid #F1F5F9;
}

.dash-footer-left,
.dash-footer-right {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 1;
}

.dash-footer-right {
  justify-content: flex-end;
}

.dash-footer-sep {
  width: 1px;
  height: 32px;
  background: #E5E7EB;
  margin: 0 16px;
  flex-shrink: 0;
}

.dash-rep-avatars {
  display: flex;
}

.dash-rep-avatar {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center top;
  border: 2px solid #ffffff;
  margin-left: -6px;
}

.dash-rep-avatar:first-child {
  margin-left: 0;
}

.dash-ps-avatar {
  width: 28px;
  height: 28px;
  border-radius: 6px;
  object-fit: cover;
  flex-shrink: 0;
}

.dash-footer-copy {
  line-height: 1.3;
}

.dash-footer-headline {
  font-size: 11px;
  font-weight: 600;
  color: #374151;
}

.dash-footer-headline--blue {
  color: #2463eb;
}

.dash-footer-sub {
  font-size: 10px;
  color: #9CA3AF;
  font-weight: 500;
}

/* ── Responsive ── */
@media (max-width: 1180px) {
  .srv-hero-inner {
    grid-template-columns: 1fr 460px;
    gap: 40px;
  }
}

@media (max-width: 1060px) {
  .srv-hero-inner {
    grid-template-columns: 1fr 420px;
    gap: 32px;
  }
}

@media (max-width: 900px) {
  .srv-hero-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .srv-pipeline-card {
    max-width: 500px;
    margin: 0 auto;
  }
}

@media (max-width: 576px) {
  .srv-hero {
    padding: 90px 0 60px;
    min-height: unset;
  }

  .srv-plc-scan-label {
    display: none;
  }
}

@media (max-width: 480px) {
  /* Compact stat tiles so delta text doesn't wrap */
  .dash-stat { padding: 12px 10px 10px; }
  .dash-stat-val { font-size: 20px; }
  .dash-stat-label { font-size: 10px; }
  .dash-stat-delta { font-size: 10px; }

  /* Compact footer so text isn't clipped by overflow:hidden */
  .dash-footer { padding: 9px 12px; }
  .dash-footer-sep { margin: 0 10px; }
  .dash-rep-avatar { width: 22px; height: 22px; }
  .dash-ps-avatar { width: 22px; height: 22px; border-radius: 5px; }
  .dash-footer-headline { font-size: 10px; }
  .dash-footer-sub { font-size: 9px; }
  .dash-footer-left,
  .dash-footer-right { gap: 7px; }
}

/* --- S2: 5-Stage Pipeline Funnel --- */
.srv-funnel-section {
  background: #0D1526;
  padding: 96px 0;
}

.srv-funnel-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 64px;
}

.srv-label-muted {
  color: #475569;
}

.srv-funnel-title {
  font-size: clamp(26px, 3.2vw, 40px);
  font-weight: 800;
  color: #F8FAFC;
  letter-spacing: -0.025em;
  line-height: 1.15;
  margin: 12px 0 14px;
}

.srv-funnel-subtitle {
  font-size: 16px;
  color: #64748B;
  line-height: 1.65;
}

.srv-stages {
  display: flex;
  align-items: stretch;
}

.srv-stage {
  flex: 1;
  background: #1A2540;
  border: 1px solid #243050;
  border-radius: 14px;
  padding: 28px 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 10px;
  transition: background 0.25s ease, border-color 0.25s ease;
}

.srv-stage:hover {
  background: #1E2D56;
  border-color: rgba(36, 99, 235, 0.3);
}

.srv-stage-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.srv-stage-icon svg {
  width: 20px;
  height: 20px;
  stroke: #64748B;
  stroke-width: 1.75;
}

.srv-stage--final {
  background: #2463eb;
  border-color: #3D7EFF;
}

.srv-stage--final:hover {
  background: #1d55d9;
}

.srv-stage--final .srv-stage-icon {
  background: rgba(255, 255, 255, 0.15);
}

.srv-stage--final .srv-stage-icon svg {
  stroke: #ffffff;
}

.srv-stage--final .srv-stage-number { color: rgba(255, 255, 255, 0.55); }
.srv-stage--final .srv-stage-name   { color: #ffffff; }
.srv-stage--final .srv-stage-desc   { color: rgba(255, 255, 255, 0.65); }

.srv-stage-number {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: #2D4070;
  text-transform: uppercase;
}

.srv-stage-name {
  font-size: 13px;
  font-weight: 700;
  color: #CBD5E1;
  letter-spacing: -0.01em;
  line-height: 1.3;
}

.srv-stage-desc {
  font-size: 12px;
  color: #475569;
  line-height: 1.6;
}

/* Arrow connector between stages */
.srv-stage-arrow {
  flex-shrink: 0;
  width: 24px;
  align-self: center;
  position: relative;
  display: flex;
  align-items: center;
}

.srv-stage-arrow::before {
  content: '';
  width: 100%;
  height: 1px;
  background: #243050;
}

.srv-stage-arrow::after {
  content: '';
  position: absolute;
  right: 0;
  width: 0;
  height: 0;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  border-left: 7px solid #243050;
}

/* Staggered reveal for stages */
.srv-stages .srv-stage:nth-child(1) { transition-delay: 0ms; }
.srv-stages .srv-stage:nth-child(3) { transition-delay: 90ms; }
.srv-stages .srv-stage:nth-child(5) { transition-delay: 180ms; }
.srv-stages .srv-stage:nth-child(7) { transition-delay: 270ms; }
.srv-stages .srv-stage:nth-child(9) { transition-delay: 360ms; }

@media (max-width: 1024px) {
  .srv-stages {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
  }

  .srv-stage-arrow { display: none; }
}

@media (max-width: 640px) {
  .srv-stages {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 400px) {
  .srv-stages {
    grid-template-columns: 1fr;
  }
}

/* --- S3: Knowledge Base & Research --- */
.srv-kb-panels {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 48px;
}

.srv-kb-panel {
  background: #F8FAFF;
  border: 1px solid #D8E4FF;
  border-radius: 20px;
  padding: 40px 36px;
}

.srv-kb-panel-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #2463eb;
  background: #EFF6FF;
  padding: 5px 12px;
  border-radius: 6px;
  margin-bottom: 18px;
}

.srv-kb-panel-title {
  font-size: clamp(20px, 2vw, 26px);
  font-weight: 800;
  color: #111827;
  letter-spacing: -0.025em;
  line-height: 1.2;
  margin-bottom: 14px;
}

.srv-kb-panel-desc {
  font-size: 15px;
  color: #4B5563;
  line-height: 1.72;
  margin-bottom: 24px;
}

.srv-kb-callout {
  background: #ffffff;
  border: 1px solid #E5E7EB;
  border-radius: 12px;
  padding: 16px 20px;
  display: flex;
  flex-direction: column;
  gap: 11px;
}

.srv-kb-callout-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: #374151;
  font-weight: 500;
}

.srv-kb-callout-item svg {
  width: 15px;
  height: 15px;
  stroke: #2463eb;
  stroke-width: 2;
  flex-shrink: 0;
}

.srv-kb-bridge {
  text-align: center;
  font-size: clamp(16px, 1.7vw, 19px);
  font-weight: 500;
  color: #374151;
  line-height: 1.7;
  max-width: 680px;
  margin: 0 auto;
  padding: 36px 24px 0;
  border-top: 1px solid #E5E7EB;
}

@media (max-width: 768px) {
  .srv-kb-panels {
    grid-template-columns: 1fr;
  }

  .srv-kb-panel {
    padding: 28px 24px;
  }
}

/* --- S3: Knowledge Base (graph) --- */
.srv-kbg-section {
  background: linear-gradient(160deg, #06091a 0%, #070e20 40%, #08102a 100%);
  padding: 96px 0 112px;
  position: relative;
  overflow: hidden;
}

.srv-kbg-section::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(36,99,235,0.09) 0%, transparent 60%);
  pointer-events: none;
}

.srv-kbg-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

/* Left text */
.srv-kbg-label {
  color: #2463eb;
  letter-spacing: 0.1em;
}

.srv-kbg-title {
  font-size: clamp(30px, 3.2vw, 48px);
  font-weight: 800;
  color: #F8FAFC;
  letter-spacing: -0.03em;
  line-height: 1.12;
  margin-top: 14px;
  margin-bottom: 20px;
}

.srv-kbg-desc {
  font-size: 16px;
  color: #64748B;
  line-height: 1.75;
}

.srv-kbg-benefits {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 32px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.07);
}

.srv-kbg-benefit {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.srv-kbg-benefit-dot {
  flex-shrink: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #2463eb;
  margin-top: 8px;
}

.srv-kbg-benefit span:last-child {
  font-size: 15px;
  color: #94A3B8;
  line-height: 1.6;
}

/* Right: graph visualization (frameless, pure SVG) */
.srv-kbg-vis {
  position: relative;
  border-radius: 24px;
  padding: 4px 0 0;
}

.srv-kbg-vis-hdr {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 0 4px 10px;
}

.srv-kbg-card-header {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 14px 20px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  background: rgba(255,255,255,0.02);
}

.srv-kbg-live-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #2463eb;
  flex-shrink: 0;
  position: relative;
}

.srv-kbg-live-dot::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: #2463eb;
  animation: notifPing 2s ease-out infinite;
}

.srv-kbg-card-title {
  font-size: 13px;
  font-weight: 600;
  color: #64748B;
  flex: 1;
}

.srv-kbg-card-badge {
  font-size: 11px;
  font-weight: 700;
  color: #2463eb;
  background: rgba(36,99,235,0.12);
  padding: 3px 10px;
  border-radius: 100px;
  letter-spacing: 0.04em;
}

/* Graph container */
.srv-kbg-graph-wrap {
  position: relative;
  height: 400px;
  /* dot grid background */
  background-image: radial-gradient(circle, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 24px 24px;
}

/* SVG — fills container naturally, no absolute positioning */
.srv-kbg-svg {
  display: block;
  width: 100%;
  height: auto;
}

/* Center node */
.srv-kbg-center {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: #2463eb;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  z-index: 2;
  box-shadow: 0 0 32px rgba(36,99,235,0.55), 0 0 64px rgba(36,99,235,0.2);
  color: rgba(255,255,255,0.9);
}

.srv-kbg-center span {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.9);
}

.srv-kbg-center-ring {
  position: absolute;
  inset: -10px;
  border-radius: 50%;
  border: 1.5px solid rgba(36,99,235,0.4);
  animation: kbgPulse 3s ease-in-out infinite;
  pointer-events: none;
}

@keyframes kbgPulse {
  0%, 100% { transform: scale(1);   opacity: 0.6; }
  50%       { transform: scale(1.15); opacity: 0.12; }
}

/* Satellite nodes */
.srv-kbg-sat {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  transform: translateX(-50%);
  z-index: 2;
}

.srv-kbg-sat-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #475569;
}

.srv-kbg-sat--lit {
  background: rgba(36,99,235,0.14);
  border-color: rgba(36,99,235,0.38);
  color: #60a5fa;
}

.srv-kbg-sat-label {
  font-size: 11px;
  font-weight: 600;
  color: #475569;
  white-space: nowrap;
  letter-spacing: 0.02em;
}

@media (max-width: 900px) {
  .srv-kbg-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .srv-kbg-graph-wrap {
    height: 340px;
  }
}

/* --- S4: Campaign Launch Timeline --- */
/* --- S4: Launch Timeline (redesigned) --- */
.srv-tl-section {
  background: #ffffff;
  padding: 96px 0;
}

.srv-tl-track {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  margin-top: 56px;
  gap: 0;
}

/* Staggered reveal */
.srv-tl-track .reveal-item:nth-child(1) { transition-delay: 0ms; }
.srv-tl-track .reveal-item:nth-child(2) { transition-delay: 80ms; }
.srv-tl-track .reveal-item:nth-child(3) { transition-delay: 160ms; }
.srv-tl-track .reveal-item:nth-child(4) { transition-delay: 240ms; }
.srv-tl-track .reveal-item:nth-child(5) { transition-delay: 320ms; }

.srv-tl-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 10px;
}

/* Day chip */
.srv-tl-chip {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: #2463eb;
  background: #EEF4FF;
  border: 1px solid #C7D9FF;
  padding: 5px 14px;
  border-radius: 100px;
  margin-bottom: 18px;
  white-space: nowrap;
}

/* Node row: line — circle — line */
.srv-tl-node-row {
  display: flex;
  align-items: center;
  width: 100%;
  margin-bottom: 20px;
}

.srv-tl-line {
  flex: 1;
  height: 2px;
}

/* Progressive line colours */
.srv-tl-step:nth-child(1) .srv-tl-line--r { background: #D8E4FF; }
.srv-tl-step:nth-child(2) .srv-tl-line--l { background: #D8E4FF; }
.srv-tl-step:nth-child(2) .srv-tl-line--r { background: #C7D9FF; }
.srv-tl-step:nth-child(3) .srv-tl-line--l { background: #C7D9FF; }
.srv-tl-step:nth-child(3) .srv-tl-line--r { background: #93AEFA; }
.srv-tl-step:nth-child(4) .srv-tl-line--l { background: #93AEFA; }
.srv-tl-step:nth-child(4) .srv-tl-line--r { background: #2463eb; }
.srv-tl-step:nth-child(5) .srv-tl-line--l { background: #2463eb; }

/* Edge lines invisible */
.srv-tl-step:first-child .srv-tl-line--l,
.srv-tl-step:last-child  .srv-tl-line--r { visibility: hidden; }

/* Node circle */
.srv-tl-node {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #ffffff;
  border: 2px solid #D8E4FF;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  font-weight: 700;
  color: #2463eb;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
  transition: border-color 0.2s ease;
}

.srv-tl-step:nth-child(2) .srv-tl-node { border-color: #C7D9FF; }
.srv-tl-step:nth-child(3) .srv-tl-node { border-color: #93AEFA; }
.srv-tl-step:nth-child(4) .srv-tl-node { border-color: #5B82F0; }

/* Live step overrides */
.srv-tl-step--live .srv-tl-chip {
  background: #2463eb;
  color: #ffffff;
  border-color: #2463eb;
}

.srv-tl-step--live .srv-tl-node {
  background: #2463eb;
  border-color: #2463eb;
  color: #ffffff;
  box-shadow: 0 0 0 8px rgba(36, 99, 235, 0.1), 0 0 20px rgba(36, 99, 235, 0.25);
  animation: tlNodePulse 3s ease-in-out infinite;
}

@keyframes tlNodePulse {
  0%, 100% { box-shadow: 0 0 0 8px rgba(36,99,235,0.1), 0 0 20px rgba(36,99,235,0.2); }
  50%       { box-shadow: 0 0 0 14px rgba(36,99,235,0.06), 0 0 32px rgba(36,99,235,0.35); }
}

/* Content card below each node */
.srv-tl-card {
  background: #FAFBFC;
  border: 1px solid #F3F4F6;
  border-radius: 14px;
  padding: 18px 16px;
  width: 100%;
  text-align: left;
}

.srv-tl-step--live .srv-tl-card {
  background: #EEF4FF;
  border-color: #C7D9FF;
}

.srv-tl-title {
  font-size: 14px;
  font-weight: 700;
  color: #111827;
  letter-spacing: -0.01em;
  line-height: 1.3;
  margin-bottom: 8px;
}

.srv-tl-step--live .srv-tl-title {
  color: #1a4fd8;
}

.srv-tl-desc {
  font-size: 12.5px;
  color: #6B7280;
  line-height: 1.65;
}

.srv-tl-step--live .srv-tl-desc {
  color: #3B5EA6;
}

/* Responsive */
@media (max-width: 900px) {
  .srv-tl-track {
    grid-template-columns: 1fr;
    margin-left: 20px;
    border-left: 2px solid #E5E7EB;
    gap: 0;
  }

  .srv-tl-step {
    align-items: flex-start;
    text-align: left;
    padding: 0 0 32px 28px;
    position: relative;
  }

  .srv-tl-node-row { display: none; }

  .srv-tl-step::before {
    content: '';
    position: absolute;
    left: -7px;
    top: 6px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #2463eb;
  }

  .srv-tl-chip { margin-bottom: 12px; }
  .srv-tl-card { width: auto; }
}

/* --- S5: Domain Protection --- */
.srv-dom-section {
  background: #ffffff;
  padding: 96px 0;
  position: relative;
  overflow: hidden;
}

.srv-dom-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 110%, rgba(16, 185, 129, 0.05) 0%, transparent 65%);
  pointer-events: none;
}

.srv-dom-zones {
  display: flex;
  gap: 0;
  align-items: stretch;
  margin-top: 56px;
  position: relative;
}

/* Zone cards */
.srv-dom-zone {
  flex: 1;
  border-radius: 20px;
  padding: 36px 40px;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.05);
}

.srv-dom-zone--ours {
  background: #EEF4FF;
  border: 1px solid #C7D9FF;
  border-top: 3px solid #2463eb;
}

.srv-dom-zone--yours {
  background: #F0FDF4;
  border: 1px solid #A7F3D0;
  border-top: 3px solid #059669;
}

/* Zone header — stacked: pill on top, title below */
.srv-dom-zone-head {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 28px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.07);
}

/* Tag pill — inline, auto-width */
.srv-dom-zone-tag {
  display: inline-flex;
  align-items: center;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 6px;
  line-height: 1;
}

.srv-dom-zone--ours .srv-dom-zone-tag {
  background: #DBEAFE;
  color: #1D4ED8;
}

.srv-dom-zone--yours .srv-dom-zone-tag {
  background: #D1FAE5;
  color: #047857;
}

.srv-dom-zone-label {
  font-size: clamp(17px, 1.8vw, 21px);
  font-weight: 800;
  color: #0f172a;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

/* "Never touched" badge */
.srv-dom-protected-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 600;
  color: #047857;
  background: #D1FAE5;
  border: 1px solid #A7F3D0;
  border-radius: 20px;
  padding: 5px 12px;
  margin-bottom: 20px;
}

.srv-dom-protected-badge svg {
  width: 13px;
  height: 13px;
  stroke: #059669;
  stroke-width: 2.5;
}

/* Items list — no gap; hairlines separate instead */
.srv-dom-items {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
}

.srv-dom-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 15px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.srv-dom-item:first-child {
  padding-top: 0;
}

.srv-dom-item:last-child {
  padding-bottom: 0;
  border-bottom: none;
}

/* Inline check icon */
.srv-dom-check {
  flex-shrink: 0;
  margin-top: 2px;
}

.srv-dom-item-name {
  font-size: 14px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 3px;
  line-height: 1.3;
}

.srv-dom-item-desc {
  font-size: 13px;
  color: #6B7280;
  line-height: 1.55;
}

/* Center separator */
.srv-dom-sep {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0 28px;
  flex-shrink: 0;
}

.srv-dom-sep-line {
  width: 1.5px;
  flex: 1;
  background: linear-gradient(to bottom, transparent, #D1D5DB 20%, #D1D5DB 80%, transparent);
}

.srv-dom-sep-badge {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #ffffff;
  border: 1.5px solid #E5E7EB;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.07);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin: 16px 0;
}

.srv-dom-sep-badge svg {
  width: 18px;
  height: 18px;
  stroke: #9CA3AF;
  stroke-width: 2;
}

@media (max-width: 900px) {
  .srv-dom-zones {
    flex-direction: column;
    gap: 16px;
  }

  .srv-dom-sep {
    flex-direction: row;
    padding: 0;
  }

  .srv-dom-sep-line {
    flex: 1;
    width: auto;
    height: 1.5px;
    background: linear-gradient(to right, transparent, #D1D5DB 20%, #D1D5DB 80%, transparent);
  }

  .srv-dom-zone {
    padding: 28px 28px;
  }

  .srv-dom-zone-label {
    font-size: 18px;
  }
}

/* --- S6: Continuous Improvement --- */
.srv-loop-section {
  background: #F8FAFC;
  padding: 96px 0;
}

.srv-loop-frame {
  background: #0D1526;
  border-radius: 28px;
  padding: 64px;
  display: grid;
  grid-template-columns: 1fr 460px;
  gap: 64px;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.srv-loop-frame::before {
  content: '';
  position: absolute;
  width: 640px;
  height: 640px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(36, 99, 235, 0.1) 0%, transparent 70%);
  right: -80px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
}

.srv-loop-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #2463eb;
  display: block;
  margin-bottom: 16px;
}

.srv-loop-title {
  font-size: clamp(26px, 2.8vw, 38px);
  font-weight: 800;
  color: #F8FAFC;
  letter-spacing: -0.025em;
  line-height: 1.15;
  margin: 0 0 16px;
}

.srv-loop-sub {
  font-size: 15px;
  color: #64748B;
  line-height: 1.65;
  margin-bottom: 36px;
}

.srv-loop-cards {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.srv-loop-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 14px;
  padding: 18px 20px;
  transition: background 0.2s;
}

.srv-loop-card:hover {
  background: rgba(255, 255, 255, 0.07);
}

.srv-loop-card-icon {
  width: 36px;
  height: 36px;
  border-radius: 9px;
  background: rgba(36, 99, 235, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.srv-loop-card-icon svg {
  width: 16px;
  height: 16px;
  stroke: #2463eb;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
}

.srv-loop-card-title {
  font-size: 14px;
  font-weight: 700;
  color: #F1F5F9;
  margin-bottom: 4px;
  line-height: 1.3;
}

.srv-loop-card-desc {
  font-size: 13px;
  color: #64748B;
  line-height: 1.55;
}

/* Flywheel visualization */
.srv-loop-right {
  display: flex;
  align-items: center;
  justify-content: center;
}

.srv-loop-svg {
  width: 100%;
  max-width: 460px;
  height: auto;
  display: block;
}

@media (max-width: 1100px) {
  .srv-loop-frame {
    grid-template-columns: 1fr;
    padding: 48px 40px;
    gap: 40px;
  }

  .srv-loop-svg {
    max-width: 420px;
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  .srv-loop-frame {
    padding: 36px 24px;
    border-radius: 20px;
    gap: 32px;
  }

  .srv-loop-svg {
    /* Keep SVG large enough for labels to stay readable */
    max-width: min(400px, 100%);
  }
}

@media (max-width: 480px) {
  .srv-loop-svg {
    max-width: 100%;
  }
}

/* --- S7: No-Show Management --- */
.srv-noshows-section {
  background: #FAFBFC;
  padding: 96px 0;
}

.srv-noshows-steps {
  display: flex;
  align-items: flex-start;
}

.srv-noshow-step {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 16px;
}

.srv-noshow-step-num {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: #9CA3AF;
  margin-bottom: 12px;
  text-transform: uppercase;
}

.srv-noshow-step-icon {
  width: 52px;
  height: 52px;
  background: #EEF2FF;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  flex-shrink: 0;
}

.srv-noshow-step-icon svg {
  width: 22px;
  height: 22px;
  stroke: #2463eb;
  stroke-width: 1.75;
}

.srv-noshow-step-title {
  font-size: 15px;
  font-weight: 700;
  color: #111827;
  letter-spacing: -0.01em;
  line-height: 1.3;
  margin-bottom: 8px;
}

.srv-noshow-step-desc {
  font-size: 13px;
  color: #6B7280;
  line-height: 1.65;
}

/* Horizontal connector between steps */
.srv-noshow-connector {
  flex-shrink: 0;
  width: 28px;
  height: 2px;
  background: #E5E7EB;
  align-self: flex-start;
  margin-top: 48px; /* aligns with vertical center of icon (num ~11px + gap 12px + half icon 26px = ~49px) */
}

/* Staggered reveal for steps */
.srv-noshows-steps .reveal-item:nth-child(1) { transition-delay: 0ms; }
.srv-noshows-steps .reveal-item:nth-child(3) { transition-delay: 80ms; }
.srv-noshows-steps .reveal-item:nth-child(5) { transition-delay: 160ms; }
.srv-noshows-steps .reveal-item:nth-child(7) { transition-delay: 240ms; }

.srv-noshows-summary {
  text-align: center;
  font-size: clamp(15px, 1.5vw, 17px);
  font-weight: 500;
  color: #4B5563;
  line-height: 1.7;
  max-width: 560px;
  margin: 52px auto 0;
  font-style: italic;
}

@media (max-width: 900px) {
  .srv-noshows-steps {
    flex-direction: column;
    gap: 28px;
    align-items: stretch;
  }

  .srv-noshow-step {
    flex-direction: row;
    align-items: flex-start;
    text-align: left;
    padding: 0;
    gap: 16px;
  }

  .srv-noshow-step-icon {
    flex-shrink: 0;
    margin-bottom: 0;
  }

  .srv-noshow-step-num {
    display: none;
  }

  .srv-noshow-connector {
    display: none;
  }
}

@media (max-width: 576px) {
  .srv-noshows-section {
    padding: 72px 0;
  }
}

/* =============================================================
   SERVICES — HOW IT WORKS 3-STEP SECTION
   ============================================================= */
.srv-steps-section {
  background: #ffffff;
  padding: 80px 0 160px;
}

.srv-steps-list {
  display: flex;
  flex-direction: column;
  gap: 180px;
}

/* Each step */
.srv-step {
  padding: 0;
}

/* Two-column grid */
.srv-step-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  align-items: stretch;
}

/* Text side — flat natural beige */
.srv-step-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: #fbf9f7;
  border-radius: 24px;
  border: none;
  padding: 72px 64px;
  aspect-ratio: 1 / 1;
}

/* Visual side — base (overridden per-step below) */
.srv-step-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 24px;
  border: none;
  padding: 64px 56px;
  aspect-ratio: 1 / 1;
}

/* Step 1 visual: sky blue top-left → beige bottom-right */
.srv-step:nth-child(1) .srv-step-visual {
  background: linear-gradient(135deg, #C8DEFF 0%, #ddeaf9 50%, #fbf9f7 100%);
}

/* Step 2 visual: sky blue bottom-left → beige top-right */
.srv-step:nth-child(2) .srv-step-visual {
  background: linear-gradient(50deg, #BFDBFF 0%, #d8eaf8 55%, #fbf9f7 100%);
}

/* Step 3 visual: sky blue top → beige bottom */
.srv-step:nth-child(3) .srv-step-visual {
  background: linear-gradient(160deg, #CAE0FF 0%, #daeaf8 50%, #fbf9f7 100%);
}

/* Flipped step: visual on left, text on right */
.srv-step-inner--flipped .srv-step-visual {
  order: -1;
}

/* Step number badge */
.srv-step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: #EEF2FF;
  border: 1px solid #D8E4FF;
  font-size: 13px;
  font-weight: 700;
  color: #2463eb;
  margin-bottom: 20px;
}

.srv-step-title {
  font-size: clamp(20px, 2.4vw, 30px);
  font-weight: 800;
  color: #111827;
  letter-spacing: -0.025em;
  line-height: 1.18;
  margin-bottom: 18px;
}

.srv-step-desc {
  font-size: 16px;
  color: #4B5563;
  line-height: 1.75;
}

.srv-step-cta {
  align-self: flex-start;
  margin-top: 28px;
}

/* Card inner (white surface inside the blue box) */
.srv-step-card {
  background: #ffffff;
  border-radius: 14px;
  border: 1px solid rgba(36, 99, 235, 0.12);
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(36, 99, 235, 0.10);
  width: 100%;
}

/* Card header row */
.srv-step-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 18px;
  border-bottom: 1px solid #F3F4F6;
  background: #FAFBFC;
}

/* ICP filter chips in header */
.srv-icp-filters {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}

.srv-filter-chip {
  font-size: 11px;
  font-weight: 600;
  color: #374151;
  background: #F0F2F5;
  padding: 3px 9px;
  border-radius: 100px;
  white-space: nowrap;
}

.srv-step-card-stat {
  font-size: 12px;
  font-weight: 600;
  color: #2463eb;
  background: #EFF6FF;
  padding: 3px 10px;
  border-radius: 100px;
  white-space: nowrap;
  flex-shrink: 0;
}

/* Prospect list (Step 1 visual) */
.srv-prospect-list {
  padding: 4px 0;
}

.srv-prospect-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 11px 18px;
  border-bottom: 1px solid #F3F4F6;
  transition: background 0.15s ease;
}

.srv-prospect-row:last-child {
  border-bottom: none;
}

.srv-prospect-row:hover {
  background: #F9FAFB;
}

/* Profile photo — square crop, circular */
.srv-prospect-photo {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center top;
  flex-shrink: 0;
  border: 1.5px solid #E5E7EB;
}

.srv-prospect-info {
  flex: 1;
  min-width: 0;
}

.srv-prospect-name {
  font-size: 13px;
  font-weight: 600;
  color: #111827;
  line-height: 1.3;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.srv-prospect-role {
  font-size: 11px;
  color: #6B7280;
  margin-top: 1px;
  line-height: 1.4;
}

.srv-prospect-tags {
  display: flex;
  gap: 5px;
  flex-shrink: 0;
}

.srv-ptag {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 3px 7px;
  border-radius: 4px;
  white-space: nowrap;
}

.srv-ptag--green { background: #ECFDF5; color: #059669; }
.srv-ptag--blue  { background: #EFF6FF; color: #2463eb; }
.srv-ptag--grey  { background: #F3F4F6; color: #6B7280; }

/* Card footer */
.srv-step-card-footer {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 18px;
  background: #FAFBFC;
  border-top: 1px solid #F3F4F6;
  font-size: 12px;
  color: #6B7280;
  font-weight: 500;
}

.srv-step-card-footer svg {
  width: 14px;
  height: 14px;
  stroke: #10B981;
  stroke-width: 2;
  flex-shrink: 0;
}

/* Email mockup (Step 2 visual) */
.srv-step-card-chrome {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 11px 16px;
  border-bottom: 1px solid #F3F4F6;
  background: #FAFBFC;
}

.srv-chrome-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #D1D5DB;
  flex-shrink: 0;
}

.srv-chrome-label {
  margin-left: auto;
  font-size: 11px;
  font-weight: 600;
  color: #9CA3AF;
  letter-spacing: 0.03em;
}

.srv-email-preview {
  padding: 14px 18px 20px;
}

/* Sender row with profile photo */
.srv-email-sender-row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-bottom: 12px;
  margin-bottom: 2px;
  border-bottom: 1px solid #F3F4F6;
  margin-bottom: 10px;
}

.srv-email-sender-photo {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center top;
  flex-shrink: 0;
  border: 1.5px solid #E5E7EB;
}

.srv-email-sender-info {
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.srv-email-sender-name {
  font-size: 13px;
  font-weight: 600;
  color: #111827;
}

.srv-email-sender-addr {
  font-size: 11px;
  color: #9CA3AF;
}

.srv-email-meta-row {
  display: flex;
  gap: 10px;
  font-size: 12px;
  line-height: 1.5;
  margin-bottom: 4px;
}

.srv-email-meta-label {
  font-weight: 600;
  color: #9CA3AF;
  width: 48px;
  flex-shrink: 0;
}

.srv-email-meta-value {
  color: #374151;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.srv-email-divider {
  height: 1px;
  background: #F3F4F6;
  margin: 12px 0;
}

.srv-email-body {
  display: flex;
  flex-direction: column;
  gap: 9px;
  font-size: 13px;
  color: #374151;
  line-height: 1.65;
}

.srv-email-sign {
  color: #6B7280;
  margin-top: 2px;
}

/* Highlighted spans — personalisation markers */
.srv-hl {
  background: #DBEAFE;
  color: #1D4ED8;
  border-radius: 3px;
  padding: 1px 4px;
  font-weight: 500;
}

/* ── Step 3: Calendar visual ── */

/* Remove overflow clip so calendar can breathe */
.srv-cal-card {
  overflow: visible;
  padding: 0;
}

/* Two-column layout inside the card */
.srv-cal-wrap {
  display: flex;
  height: 100%;
  min-height: 360px;
}

/* Left column: notification cards */
.srv-cal-notifs {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
  padding: 20px 0 20px 18px;
  width: 52%;
  flex-shrink: 0;
  z-index: 2;
}

/* Individual booking notification card */
.srv-cal-notif {
  background: #ffffff;
  border-radius: 12px;
  padding: 12px 14px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.10), 0 1px 4px rgba(0,0,0,0.06);
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.srv-cal-notif--1 {
  animation: calNotifIn 0.5s cubic-bezier(0.16,1,0.3,1) 0.1s both;
}
.srv-cal-notif--2 {
  animation: calNotifIn 0.5s cubic-bezier(0.16,1,0.3,1) 0.3s both;
}

@keyframes calNotifIn {
  from { opacity: 0; transform: translateX(-16px); }
  to   { opacity: 1; transform: translateX(0); }
}

.srv-cal-notif-top {
  display: flex;
  align-items: center;
  gap: 9px;
}

.srv-cal-notif-photo {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center top;
  flex-shrink: 0;
  border: 1.5px solid #E5E7EB;
}

.srv-cal-notif-name {
  font-size: 12px;
  font-weight: 700;
  color: #111827;
  line-height: 1.2;
}

.srv-cal-notif-role {
  font-size: 10px;
  color: #6B7280;
  margin-top: 1px;
}

.srv-cal-notif-status {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 10px;
  font-weight: 600;
  color: #059669;
}

.srv-cal-notif-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #10B981;
  flex-shrink: 0;
}

.srv-cal-notif-meeting {
  font-size: 10px;
  color: #6B7280;
  padding-top: 6px;
  border-top: 1px solid #F3F4F6;
  line-height: 1.4;
}

/* Right column: calendar grid */
.srv-cal {
  flex: 1;
  display: flex;
  flex-direction: column;
  border-left: 1px solid #F3F4F6;
  overflow: hidden;
  border-radius: 0 14px 14px 0;
}

/* Day header row */
.srv-cal-head {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-bottom: 1px solid #F3F4F6;
  background: #FAFBFC;
}

.srv-cal-dh {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 8px 4px 6px;
  gap: 2px;
  border-right: 1px solid #F3F4F6;
}
.srv-cal-dh:last-child { border-right: none; }

.srv-cal-dh span {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: #9CA3AF;
  text-transform: uppercase;
}

.srv-cal-dh strong {
  font-size: 15px;
  font-weight: 800;
  color: #374151;
}

/* Calendar body */
.srv-cal-body {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  flex: 1;
}

/* Day column */
.srv-cal-col {
  display: flex;
  flex-direction: column;
  border-right: 1px solid #F3F4F6;
}
.srv-cal-col:last-child { border-right: none; }

/* Time slot cell */
.srv-cal-cell {
  flex: 1;
  border-bottom: 1px solid #F3F4F6;
  position: relative;
  padding: 2px 4px;
  min-height: 42px;
}
.srv-cal-cell:last-child { border-bottom: none; }

/* Time label inside first column */
.srv-cal-time {
  font-size: 8px;
  font-weight: 500;
  color: #D1D5DB;
  position: absolute;
  top: 4px;
  left: 4px;
}

/* Event block */
.srv-cal-event {
  position: absolute;
  inset: 3px;
  border-radius: 6px;
  padding: 5px 6px;
  display: flex;
  align-items: center;
  gap: 5px;
  overflow: hidden;
}

.srv-cal-event--blue {
  background: #EEF4FF;
  border-left: 3px solid #2463eb;
}

.srv-cal-event--green {
  background: #ECFDF5;
  border-left: 3px solid #10B981;
}

.srv-cal-evt-photo {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center top;
  flex-shrink: 0;
}

.srv-cal-evt-name {
  font-size: 8.5px;
  font-weight: 700;
  color: #111827;
  line-height: 1.2;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.srv-cal-evt-time {
  font-size: 8px;
  color: #6B7280;
  white-space: nowrap;
}

/* Responsive */
@media (max-width: 900px) {
  .srv-step-inner {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .srv-step-visual {
    order: 1 !important;
    aspect-ratio: auto;
    padding: 44px 36px;
  }

  .srv-step-text {
    aspect-ratio: auto;
    padding: 48px 40px;
  }
}

@media (max-width: 576px) {
  .srv-steps-section {
    padding: 48px 0 80px;
  }

  .srv-steps-list {
    gap: 80px;
  }

  .srv-step-text {
    padding: 40px 28px;
  }

  .srv-step-visual {
    padding: 36px 24px;
  }
}

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

/* --- Main Pricing Block --- */
.prc-main-section {
  background: #F8FAFC;
  padding: 100px 0 80px;
}

.prc-main-header {
  text-align: center;
  margin-bottom: 52px;
}

.prc-main-header .section-label {
  margin-bottom: 16px;
}

.prc-page-title {
  font-size: clamp(28px, 3.8vw, 52px);
  font-weight: 800;
  color: #111827;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin: 12px 0 16px;
}

.prc-page-sub {
  font-size: clamp(15px, 1.4vw, 17px);
  color: #4B5563;
  line-height: 1.65;
}

.prc-main-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.prc-main-left {
  background: #ffffff;
  border: 1px solid #E5E7EB;
  border-radius: 20px;
  padding: 44px 40px;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.05);
}

@keyframes prcTileShimmer {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.prc-price-box {
  background: #F3F4F6;
  border: 1px solid #E5E7EB;
  border-radius: 14px;
  padding: 22px 24px;
  text-align: center;
  margin-bottom: 16px;
}

.prc-price-label {
  font-size: 14px;
  font-weight: 500;
  color: #6B7280;
  margin-bottom: 8px;
}

.prc-price-big {
  font-size: clamp(28px, 3.6vw, 42px);
  font-weight: 800;
  color: #111827;
  letter-spacing: -0.03em;
  line-height: 1.05;
  margin-bottom: 0;
}

.prc-price-mo {
  font-size: 0.36em;
  font-weight: 600;
  letter-spacing: -0.01em;
  vertical-align: middle;
  color: #6B7280;
}

.prc-stats-tiles {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 28px;
}

.prc-stats-tile {
  background: #F3F4F6;
  border: 1px solid #E5E7EB;
  border-radius: 14px;
  padding: 22px 16px;
  text-align: center;
}

.prc-stats-val {
  font-size: 28px;
  font-weight: 800;
  color: #111827;
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin-bottom: 6px;
}

.prc-stats-lbl {
  font-size: 13px;
  color: #6B7280;
  font-weight: 500;
  line-height: 1.4;
}

.prc-main-divider {
  height: 1px;
  background: #F0F2F5;
  margin-bottom: 22px;
}

.prc-custom-heading {
  font-size: 14px;
  font-weight: 700;
  color: #374151;
  margin-bottom: 14px;
}

.prc-custom-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.prc-custom-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 15px;
  color: #4B5563;
  line-height: 1.5;
}

.prc-custom-list li::before {
  content: '·';
  color: #2463eb;
  font-weight: 900;
  font-size: 20px;
  line-height: 1;
  flex-shrink: 0;
}

/* Right column */
.prc-main-right {
  background: linear-gradient(135deg, #F3F4F6, #EBF0FF, #F4F7FF, #EEF4FF);
  background-size: 300% 300%;
  animation: prcTileShimmer 8s ease infinite;
  border: 1px solid #D8E4FF;
  border-radius: 20px;
  padding: 44px 40px;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
}

.prc-incl-heading {
  font-size: 14px;
  font-weight: 700;
  color: #374151;
  margin-bottom: 20px;
}

.prc-incl-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
  flex: 1;
}

.prc-incl-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 15px;
  color: #374151;
  line-height: 1.45;
}

.prc-incl-check {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #EEF4FF;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}

.prc-incl-check svg {
  width: 10px;
  height: 10px;
  stroke: #2463eb;
  stroke-width: 2.8;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.prc-incl-btn {
  width: 100%;
  justify-content: center;
  padding: 16px 28px;
  font-size: 15px;
  margin-top: 28px;
}

/* --- S4: SDR Comparison Table --- */
.prc-compare-section {
  background: #0D1526;
  padding: 96px 0;
}

.prc-compare-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 52px;
}

.prc-compare-title {
  font-size: clamp(24px, 3vw, 38px);
  font-weight: 800;
  color: #F8FAFC;
  letter-spacing: -0.025em;
  line-height: 1.15;
  margin-bottom: 14px;
}

.prc-compare-sub {
  font-size: 16px;
  color: #64748B;
  line-height: 1.65;
}

.prc-table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.prc-table {
  min-width: 520px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 16px;
  overflow: hidden;
}

.prc-table-row {
  display: grid;
  grid-template-columns: 0.9fr 1fr 1fr;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.prc-table-row--last {
  border-bottom: none;
}

/* Header row */
.prc-table-row--head {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.prc-tcell {
  padding: 19px 22px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  line-height: 1.45;
}

.prc-tcell--label-head {
  background: transparent;
}

.prc-tcell--bdr-head {
  background: rgba(255, 255, 255, 0.04);
  font-size: 12px;
  font-weight: 700;
  color: #475569;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  justify-content: center;
}

.prc-tcell--ps-head {
  background: #2463eb;
  font-size: 12px;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  justify-content: center;
}

.prc-tcell--label {
  color: #CBD5E1;
  font-weight: 500;
  font-size: 15px;
  padding-left: 22px;
}

.prc-tcell--bdr {
  background: rgba(255, 255, 255, 0.02);
  color: #64748B;
  font-size: 14px;
  justify-content: center;
  text-align: center;
}

.prc-tcell--ps {
  background: rgba(36, 99, 235, 0.07);
  border-left: 1px solid rgba(36, 99, 235, 0.16);
  color: #CBD5E1;
  font-size: 14px;
  font-weight: 500;
  justify-content: center;
  text-align: center;
}

/* Check and X icons inside table cells */
.prc-cell-check {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
}

.prc-cell-check svg {
  width: 14px;
  height: 14px;
  stroke: #2463eb;
  stroke-width: 2.5;
}

.prc-cell-x {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
}

.prc-cell-x svg {
  width: 14px;
  height: 14px;
  stroke: #334155;
  stroke-width: 2;
}

/* --- S5: Enterprise --- */
.prc-enterprise-section {
  background: linear-gradient(180deg, #F4F8FF 0%, #ffffff 100%);
  padding: 140px 0 148px;
  border-top: 1px solid #E0EAFF;
  border-bottom: 1px solid #E5E7EB;
}

/* Two-column layout: left = header/CTA, right = tiles */
.prc-ent-inner {
  display: grid;
  grid-template-columns: 1fr 1.35fr;
  gap: 80px;
  align-items: center;
}

.prc-ent-inner .section-label {
  display: block;
  margin-bottom: 20px;
}

.prc-ent-left {
  text-align: left;
}

.prc-ent-title {
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 800;
  color: #111827;
  letter-spacing: -0.025em;
  line-height: 1.15;
  margin-bottom: 20px;
}

.prc-ent-sub {
  font-size: 16px;
  color: #6B7280;
  line-height: 1.75;
  margin-bottom: 40px;
}

/* CTA — left-aligned under the description */
.prc-ent-cta {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}

.prc-ent-cta-note {
  font-size: 13px;
  color: #9CA3AF;
}

/* Right: three stacked benefit tiles */
.prc-ent-tiles {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.prc-ent-tile {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  background: #ffffff;
  border: 1px solid #E8ECF3;
  border-radius: 16px;
  padding: 32px 36px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.prc-ent-tile:hover {
  border-color: #c7d8f8;
  box-shadow: 0 4px 20px rgba(36, 99, 235, 0.07);
}

.prc-ent-tile-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: #EEF4FF;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.prc-ent-tile-icon svg {
  width: 22px;
  height: 22px;
  stroke: #2463eb;
  stroke-width: 1.7;
}

.prc-ent-tile-body {
  flex: 1;
  padding-top: 2px;
}

.prc-ent-tile-title {
  font-size: 17px;
  font-weight: 700;
  color: #111827;
  line-height: 1.3;
  margin-bottom: 8px;
}

.prc-ent-tile-desc {
  font-size: 14px;
  color: #6B7280;
  line-height: 1.7;
}

/* Outlined secondary button */
.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 28px;
  border-radius: 14px;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: #2463eb;
  background: #ffffff;
  border: 2px solid #2463eb;
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.btn-outline:hover {
  background: #2463eb;
  color: #ffffff;
  transform: translateY(-2px);
}

/* --- Enterprise responsive --- */
@media (max-width: 960px) {
  .prc-ent-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}

@media (max-width: 600px) {
  .prc-ent-tile {
    flex-direction: column;
    gap: 16px;
    padding: 24px;
  }

  .prc-ent-tile-title {
    font-size: 16px;
  }

  .prc-enterprise-section {
    padding: 72px 0;
  }
}

@media (max-width: 900px) {
  .prc-main-card {
    grid-template-columns: 1fr;
  }

  .prc-main-left,
  .prc-main-right {
    padding: 36px 28px;
  }
}

@media (max-width: 768px) {
  .prc-main-section {
    padding: 72px 0 56px;
  }

  .prc-enterprise-section {
    padding: 72px 0;
  }

  .prc-check-item--last {
    border-bottom: 1px solid #F0F2F5;
  }

  .prc-table-row {
    grid-template-columns: 1.6fr 1fr 1fr;
  }

  .prc-tcell {
    padding: 14px 14px;
    font-size: 13px;
  }

  .prc-tcell--label {
    font-size: 13px;
    padding-left: 14px;
  }
}


/* =============================================================
   ABOUT PAGE — abt-* components
   ============================================================= */

/* --- S1: Hero --- */
.abt-hero {
  position: relative;
  overflow: hidden;
  background: #0D1526;
  padding: 180px 0 140px;
}

.abt-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.032) 1px, transparent 1px);
  background-size: 32px 32px;
  pointer-events: none;
  z-index: 0;
}

.abt-hero-glow {
  position: absolute;
  top: -120px;
  left: -10%;
  width: 800px;
  height: 700px;
  background: radial-gradient(ellipse at top left, rgba(36,99,235,0.18) 0%, transparent 60%);
  pointer-events: none;
  z-index: 0;
}

.abt-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 40%, rgba(36,99,235,0.10) 0%, transparent 65%);
  pointer-events: none;
  z-index: 0;
}

.abt-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 700px;
  padding: 0 24px;
}

.abt-hero-label {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #60a5fa;
  margin-bottom: 32px;
}

.abt-hero-title {
  font-size: clamp(32px, 4vw, 54px);
  font-weight: 800;
  color: #ffffff;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 36px;
}

.abt-hero-accent {
  color: #60a5fa;
}

.abt-hero-rule {
  width: 40px;
  height: 2px;
  background: rgba(96,165,250,0.5);
  margin-bottom: 28px;
}

.abt-hero-sub {
  font-size: clamp(15px, 1.5vw, 16.5px);
  color: #94a3b8;
  line-height: 1.8;
  max-width: 560px;
}

.abt-hero-sub--spacer {
  margin-top: 14px;
}

.abt-hero-byline {
  margin-top: 36px;
  font-size: 13px;
  color: #475569;
  font-style: italic;
  letter-spacing: 0.01em;
}

/* --- S2: Founders --- */
.abt-founders-section {
  background: linear-gradient(180deg, #ffffff 0%, #F0F5FF 100%);
  padding: 96px 0;
}

.abt-founders-header {
  text-align: center;
  margin-bottom: 40px;
}

.abt-founders-title {
  font-size: clamp(26px, 3.2vw, 42px);
  font-weight: 800;
  color: #111827;
  letter-spacing: -0.025em;
  margin-top: 10px;
}

/* Shared founders photo */
.abt-founders-photo-wrap {
  border-radius: 20px;
  overflow: hidden;
  margin-bottom: 40px;
}

.abt-founders-photo {
  width: 100%;
  display: block;
  object-fit: cover;
  max-height: 820px;
  object-position: center center;
}

/* Founder bio blocks */
.abt-founders-bios {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
}

.abt-founder-name {
  font-size: 19px;
  font-weight: 800;
  color: #111827;
  letter-spacing: -0.02em;
  margin-bottom: 4px;
}

.abt-founder-role {
  font-size: 12px;
  font-weight: 700;
  color: #2463eb;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 12px;
}

.abt-founder-bio {
  font-size: 15px;
  color: #4B5563;
  line-height: 1.7;
}

/* --- S3: Values --- */
.abt-values-section {
  background: #ffffff;
  padding: 120px 0 128px;
  border-top: 1px solid #E5E7EB;
  border-bottom: 1px solid #E5E7EB;
}

.abt-values-header {
  text-align: center;
  margin-bottom: 88px;
}

.abt-values-title {
  font-size: clamp(24px, 2.8vw, 38px);
  font-weight: 800;
  color: #111827;
  letter-spacing: -0.025em;
  margin-top: 10px;
}

.abt-values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: 56px;
  row-gap: 64px;
}

.abt-value-item {
  border-top: 2px solid #2463eb;
  padding-top: 32px;
}

.abt-value-num {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #2463eb;
  margin-bottom: 10px;
}

.abt-value-name {
  font-size: 19px;
  font-weight: 800;
  color: #111827;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}

.abt-value-desc {
  font-size: 14px;
  color: #4B5563;
  line-height: 1.7;
}

/* --- S4: Map --- */
.abt-map-section {
  background: #0d1b2e;
  padding: 80px 0 60px;
  overflow: hidden;
}

.abt-map-title {
  text-align: center;
  color: #fff;
  font-size: clamp(1.4rem, 3vw, 2.2rem);
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: -0.02em;
  margin-bottom: 48px;
}

.abt-map-title span { color: #60a5fa; }

.abt-map-wrap {
  width: 100%;
  overflow: hidden;
}

.abt-map-svg {
  display: block;
  width: 100%;
  height: auto;
}

@media (max-width: 768px) {
  .abt-map-section { padding: 56px 0 40px; }
}

/* --- S5: Careers --- */
/* ── Careers (redesigned) ─────────────────────────────── */
.abt-car-section {
  background: #ffffff;
  padding: 120px 0 128px;
  border-top: 1px solid #E5E7EB;
  border-bottom: 1px solid #E5E7EB;
}

/* Row 1 — editorial intro: big title left, mission right */
.abt-car-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: flex-end;
  gap: 64px;
  padding-bottom: 64px;
  border-bottom: 1px solid #E5E7EB;
  margin-bottom: 64px;
}

.abt-car-intro-left .section-label {
  display: block;
  margin-bottom: 20px;
}

.abt-car-title {
  font-size: clamp(48px, 7vw, 96px);
  font-weight: 800;
  color: #111827;
  letter-spacing: -0.04em;
  line-height: 1.0;
  margin: 0;
}

.abt-car-intro-right {
  padding-bottom: 6px;
}

.abt-car-mission {
  font-size: clamp(16px, 1.6vw, 19px);
  color: #374151;
  line-height: 1.75;
  max-width: 520px;
}

/* Row 2 — two text columns with center rule */
.abt-car-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  padding-bottom: 64px;
  border-bottom: 1px solid #E5E7EB;
  margin-bottom: 48px;
}

.abt-car-col {
  padding-right: 64px;
}

.abt-car-col--right {
  padding-right: 0;
  padding-left: 64px;
  border-left: 1px solid #E5E7EB;
}

.abt-car-col-label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #2463eb;
  margin-bottom: 20px;
}

.abt-car-col-heading {
  display: block;
  font-size: clamp(20px, 2vw, 26px);
  font-weight: 800;
  color: #111827;
  letter-spacing: -0.025em;
  line-height: 1.2;
  margin-bottom: 20px;
}

.abt-car-col-text {
  font-size: 16px;
  color: #4B5563;
  line-height: 1.8;
}

/* Row 3 — minimal apply line */
.abt-car-apply {
  display: flex;
  align-items: center;
  gap: 20px;
}

.abt-car-apply-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #9CA3AF;
}

.abt-car-apply-email {
  font-size: 16px;
  font-weight: 600;
  color: #2463eb;
  text-decoration: none;
  letter-spacing: -0.01em;
  border-bottom: 1px solid rgba(36, 99, 235, 0.25);
  padding-bottom: 1px;
  transition: border-color 0.2s ease, color 0.2s ease;
}

.abt-car-apply-email:hover {
  color: #1a4fd4;
  border-color: #1a4fd4;
}

/* Responsive */
@media (max-width: 860px) {
  .abt-car-intro,
  .abt-car-body {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .abt-car-intro {
    padding-bottom: 48px;
    margin-bottom: 48px;
  }

  .abt-car-col {
    padding-right: 0;
  }

  .abt-car-col--right {
    padding-left: 0;
    border-left: none;
    border-top: 1px solid #E5E7EB;
    padding-top: 40px;
  }

  .abt-car-title {
    font-size: clamp(40px, 10vw, 72px);
  }
}

.abt-careers-apply-btn:hover {
  background: #1d4ed8;
  transform: translateY(-1px);
}

@media (max-width: 900px) {
  .abt-careers-card {
    grid-template-columns: 1fr;
  }
  .abt-careers-left,
  .abt-careers-right {
    padding: 40px 32px;
  }
  .abt-careers-right {
    border-left: none;
    border-top: 1px solid rgba(255,255,255,0.08);
  }
}

/* --- S6: Closing CTA --- */
.abt-cta-section {
  background: #F4F8FF;
  padding: 96px 0;
  text-align: center;
}

.abt-cta-title {
  font-size: clamp(26px, 3.6vw, 46px);
  font-weight: 800;
  color: #111827;
  letter-spacing: -0.03em;
  margin-bottom: 16px;
}

.abt-cta-sub {
  font-size: clamp(15px, 1.6vw, 17px);
  color: #4B5563;
  max-width: 480px;
  margin: 0 auto 36px;
  line-height: 1.65;
}

/* --- Responsive: About --- */
@media (max-width: 900px) {
  .abt-founders-grid {
    grid-template-columns: 1fr;
    max-width: 520px;
  }

  .abt-values-grid {
    grid-template-columns: 1fr 1fr;
    column-gap: 28px;
    row-gap: 36px;
  }

  .abt-careers-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .abt-apply-row {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .abt-hero {
    padding: 120px 0 100px;
  }

  .abt-founders-section,
  .abt-values-section,
  .abt-map-section,
  .abt-careers-section,
  .abt-cta-section {
    padding: 64px 0;
  }

  .abt-founder-info {
    padding: 24px 24px 28px;
  }

  .abt-value-item {
    padding-top: 20px;
  }

  /* Map SVG scales naturally via viewBox — no pin overrides needed */
  .abt-labels-group text {
    font-size: 8px;
  }

  .abt-label-hq {
    font-size: 10px;
  }
}

/* =============================================================
   MOBILE RESPONSIVENESS — GLOBAL FIXES (≤ 768px)
   ============================================================= */
@media (max-width: 768px) {

  /* Funnel two-column → single column */
  .funnel-layout {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  /* HIW teaser two-column → single column */
  .hiw-teaser-frame {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  /* Founders bio grid → single column */
  .abt-founders-bios {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  /* Contact form row → single column */
  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  /* Pricing main card → single column */
  .prc-main-card {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  /* Pricing stats tiles → single column */
  .prc-stats-tiles {
    grid-template-columns: 1fr 1fr;
  }

  /* SDR comparison table — allow horizontal scroll, reduce min-width */
  .prc-table {
    min-width: 420px;
  }

  .prc-tcell {
    padding: 14px 14px;
    font-size: 13px;
  }
}

/* =============================================================
   MOBILE RESPONSIVENESS — SMALL PHONES (≤ 480px)
   ============================================================= */
@media (max-width: 480px) {

  /* Pricing stats tiles → single column on very small screens */
  .prc-stats-tiles {
    grid-template-columns: 1fr;
  }

  /* SDR comparison table min-width tightened further */
  .prc-table {
    min-width: 320px;
  }

  .prc-table-row {
    grid-template-columns: 0.85fr 1fr 1fr;
  }

  .prc-tcell {
    padding: 12px 10px;
    font-size: 12px;
  }

  /* HIW teaser section padding */
  .hiw-teaser-section {
    padding: 64px 0 72px;
  }

  /* Funnel section padding */
  .funnel-section {
    padding: 64px 0 72px;
  }
}
