
@import url('https://fonts.googleapis.com/css2?family=IBM+Plex+Sans:ital,wght@0,100..700;1,100..700&display=swap');
/* === Tokens === */
:root {
  --bg: #fafafa;
  --ink: #0f1115;
  --ink2: #1a1d24;
  --muted: #6b6f78;
  --border: #e5e7eb;
  --card: #ffffff;
  --primary: #000000;
  --primary-2: #3b82f6;
  --pill: linear-gradient(135deg, #FF8A3D 0%, #FF5FA2 50%, #6E7BFF 100%);
  --shadow: 0 1px 2px rgba(16, 24, 40, .04), 0 8px 24px -12px rgba(16, 24, 40, .08);
  --shadow-lg: 0 1px 2px rgba(16, 24, 40, .04), 0 24px 48px -20px rgba(16, 24, 40, .16);
  --radius: 20px;
  --radius-lg: 28px;
}


* {
  box-sizing: border-box
}

html {
  scroll-behavior: smooth
}

body {
  margin: 0;
  font-family: 'Inter', ui-sans-serif, system-ui, sans-serif;
  background: var(--bg);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  letter-spacing: -0.01em;
  line-height: 1.5
}

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

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

ul {
  list-style: none;
  margin: 0;
  padding: 0
}

/* === Layout === */
.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 20px
}

.container.narrow {
  max-width: 780px
}

.section {
  padding: 60px 0;
  position: relative
}

.section.dark {
  background: #0f1115;
  color: #fff
}

.section-head {
  max-width: 680px;
  margin: 0 auto 48px;
  text-align: center
}

.h1 {
  font-family: "IBM Plex Sans", sans-serif; 
  font-size: 64px;
  font-weight: 500;
  line-height: 1.0;
  letter-spacing: -.03em;
  margin: 18px 0 14px;
  text-wrap: balance;
  color: #0f1115
}

.h2 {
  font-size: 48px;
  font-weight: 500;
  line-height: 52px;
  letter-spacing: -.02em;
  margin: 14px 0;
  text-wrap: balance
}

.h3 {
  font-size: 22px;
  font-weight: 600;
  margin: 0 0 10px
}

.sub {
  font-size: 16px;
  color: var(--muted);
  max-width: 500px;
  margin: 0 auto
}

.sub.light,
.kpi-l.light,
.muted {
  color: rgba(255, 255, 255, .7)
}

.section:not(.dark) .sub.light {
  color: var(--muted)
}

.light {
  color: #fff
}

.small {
  font-size: 13px
}

.grad-text {
  background: var(--pill);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent
}

/* === Buttons === */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 12px 22px;
  border-radius: 8px;
  font-weight: 500;
  font-size: 14px;
  transition: transform .15s ease, filter .15s ease, background .15s, color .15s;
  border: 1px solid transparent;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.btn::before,
.why-learn-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(
    105deg,
    transparent 38%,
    rgba(255, 255, 255, .06) 44%,
    rgba(255, 255, 255, .28) 50%,
    rgba(255, 255, 255, .06) 56%,
    transparent 62%
  );
  transform: translateX(-130%);
  pointer-events: none;
  z-index: 0;
  opacity: 0;
}

.btn:hover::before,
.why-learn-btn:hover::before {
  opacity: 1;
  animation: btn-shine 1.1s ease;
}

@keyframes btn-shine {
  from { transform: translateX(-130%); }
  to { transform: translateX(130%); }
}

.btn.sm {
  padding: 8px 14px;
  font-size: 13px
}

.btn.full {
  width: 100%;
  justify-content: center
}

.btn-primary {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 4px 14px -4px rgba(37, 99, 235, .5)
}

.btn-primary:hover {
  filter: brightness(1.08);
  transform: translateY(-1px)
}

.btn-white {
  background: #fff;
  color: #0f1115;
  border-color: #d1d5db;
  box-shadow: 0 1px 3px rgba(0, 0, 0, .08)
}

.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--border)
}

.dark .btn-ghost {
  color: #fff;
  border-color: rgba(255, 255, 255, .18)
}

/* === Chip === */
.chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 6px 12px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: var(--muted);
  box-shadow: var(--shadow);
      margin-bottom: 10px;
}

.chip.dark {
  background: rgba(255, 255, 255, .06);
  border-color: rgba(255, 255, 255, .1);
  color: rgba(255, 255, 255, .75)
}

.chip-dot {
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--pill)
}

/* === Navbar === */
.nav-wrap {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid var(--border);
  background: #fafafa;
}

.nav {
  max-width: 1140px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 24px;
  gap: 24px
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-weight: 700;
  font-size: 17px;
  color: #0f1115
}

.brand-dot {
  width: 18px;
  height: 18px;
  border-radius: 6px;
  background: var(--pill)
}

.brand-logo {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: #0f1115;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0
}

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

.nav-links a {
  padding: 8px 16px;
  border-radius: 8px;
  font-size: 14px;
  color: #374151;
  font-weight: 800;
  transition: color .15s;
  white-space: nowrap
}

.nav-links a:hover {
  color: #f79243
}

.nav-links a.active {
  color: #f79243;
  background: rgba(247, 146, 67, 0.1);
}

.nav-dropdown li a.active {
  color: #f79243;
  background: rgba(247, 146, 67, 0.1);
}

.nav-mobile a.active {
  color: #f79243;
  font-weight: 600;
  background: rgba(247, 146, 67, 0.08);
}

/* Dropdown */
.nav-has-dropdown {
  position: relative
}

.nav-has-dropdown:hover .nav-dropdown,
.nav-has-dropdown:focus-within .nav-dropdown {
  opacity: 1;
  pointer-events: auto;
  clip-path: inset(0 0 0% 0 round 14px)
}

.nav-dropdown {
  position: absolute;
  top: calc(100% + 10px);
  left: 0%;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  box-shadow: var(--shadow-lg);
  padding: 6px;
  min-width: 200px;
  list-style: none;
  margin: 0;
  opacity: 0;
  pointer-events: none;
  clip-path: inset(0 0 100% 0 round 14px);
  transition: opacity .22s ease, clip-path .22s ease;
  z-index: 200
}

.nav-dropdown li a {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 9px 14px;
  border-radius: 8px;
  font-size: 13.5px;
  color: var(--ink);
  font-weight: 500;
  white-space: nowrap;
  transition: background .15s
}

.nav-dropdown li a:hover {
  background: #f3f4f6;
  color: var(--ink)
}

/* Live capsule */
.nav-live-pill {
  display: inline-flex;
  align-items: center;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .04em;
  color: #16a34a;
  background: #dcfce7;
  border: 1px solid #bbf7d0;
  border-radius: 999px;
  padding: 1px 7px;
  line-height: 1.6;
  text-transform: uppercase
}

.nav-cta {
  display: flex;
  gap: 8px;
  align-items: center
}

.nav-toggle {
  display: none;
  background: transparent;
  border: 0;
  padding: 8px;
  cursor: pointer
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--ink);
  margin: 4px 0;
  border-radius: 2px
}

.nav-mobile {
  display: none;
  flex-direction: column;
  gap: 8px;
  padding: 12px 20px 20px;
  background: #fff;
  border-bottom: 1px solid var(--border)
}

.nav-mobile a {
  padding: 10px 8px;
  border-radius: 8px
}

.nav-mobile.open {
  display: flex
}

/* === Hero === */
.hero {
  position: relative;
  padding: 80px 0 96px;
  overflow: hidden;
}

.hero-inner {
  position: relative;
  text-align: center
}

.grid-bg {
  position: absolute;
  inset: 0;
  height: 820px;
  pointer-events: none;
  background-image: linear-gradient(to right, rgba(150, 150, 160, .2) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(150, 150, 160, .2) 1px, transparent 1px);
  background-size: 64px 64px;
  -webkit-mask-image: radial-gradient(ellipse 80% 65% at 50% 25%, #000 30%, transparent 85%);
  mask-image: radial-gradient(ellipse 80% 65% at 50% 25%, #000 30%, transparent 85%);
}

.aurora-blob {
  position: absolute;
  left: -50%;
  bottom: -80px;
  top: auto;
  height: 400px;
  width: 1200px;
  transform: translateX(-50%);
  pointer-events: none;
  filter: blur(80px);
  opacity: .55;
  background: radial-gradient(50% 60% at 20% 50%, #f57eb23b, transparent 70%), radial-gradient(50% 60% at 80% 50%, rgb(140 160 255 / 46%), transparent 70%), radial-gradient(40% 50% at 50% 60%, rgba(255, 140, 200, .4), transparent 80%);
}

/* Hero badge */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1px solid #d1d5db;
  border-radius: 8px;
  padding: 4px 16px 4px 4px;
  margin-bottom: 10px;
  box-shadow: 0 1px 4px rgba(0,0,0,.06)
}

.hero-badge-new {
  background: #0f1115;
  color: #fff;
  border-radius: 5px;
  padding: 3px 12px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .04em;
  line-height: 1.5
}

.hero-badge-text {
  color: #374151;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.4
}

.hero-cta {
  display: flex;
  gap: 12px;
  justify-content: center;
  margin-top: 28px;
  flex-wrap: wrap
}

.hero-cta.center {
  justify-content: center
}

/* === Dashboard mock === */
.dash {
  margin: 64px auto 0;
  max-width: 980px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 24px;
  box-shadow: var(--shadow-lg);
  padding: 18px;
  text-align: left;
  position: relative
}
.dash-card {
    position: relative;
    border-radius: 28px;
    overflow: visible;
    margin-top: 56px;
}

.hero-diagram-img {
  width: 100%;
  border-radius: 20px;
  display: block;
  box-shadow: none;
}

.hero-diagram-video {
  height: auto;
  vertical-align: middle;
  background: #fff;
}



.framer-CNdtS .framer-thersk, .framer-CNdtS .framer-31h7tg {
    height: 100%;
    overflow: var(--overflow-clip-fallback, clip);
    will-change: var(--framer-will-change-filter-override, filter);
    z-index: 0;
    flex: none;
    width: 100%;
    position: absolute;
    top: -.0447631%;
    left: 0%;
    /* display: none; */
}
.dash-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 14px
}

.dash-tabs {
  display: flex;
  gap: 6px
}

.tab {
  padding: 6px 12px;
  border-radius: 8px;
  font-size: 13px;
  color: var(--muted);
  cursor: pointer
}

.tab.active {
  background: var(--bg);
  color: var(--ink);
  font-weight: 500
}

.dash-pill {
  font-size: 12px;
  color: var(--muted);
  border: 1px solid var(--border);
  padding: 6px 10px;
  border-radius: 999px
}

.kpi-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border-radius: 14px;
  overflow: hidden
}

.kpi {
  background: #fff;
  padding: 14px 16px
}

.kpi-l {
  font-size: 12px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .08em
}

.kpi-v {
  font-size: 22px;
  font-weight: 600;
  margin-top: 4px
}

.kpi-d {
  font-size: 12px;
  margin-top: 2px
}

.kpi-d.up {
  color: #16a34a
}

.kpi-d.down {
  color: #dc2626
}

.dash-chart {
  position: relative;
  margin-top: 16px;
  height: 200px;
  background: linear-gradient(180deg, #fafafa, #fff);
  border-radius: 14px;
  border: 1px solid var(--border);
  overflow: hidden
}

.chart-svg {
  width: 100%;
  height: 100%
}

.tooltip {
  position: absolute;
  left: 54%;
  top: 18%;
  background: #0f1115;
  color: #fff;
  padding: 8px 12px;
  border-radius: 10px;
  font-size: 12px;
  box-shadow: 0 10px 24px -10px rgba(0, 0, 0, .4)
}

.tooltip .t-l {
  opacity: .6;
  font-size: 10px
}

.tooltip .t-v {
  font-weight: 600;
  margin-top: 2px
}

/* draw animation for SVG paths */
.draw {
  stroke-dasharray: 1500;
  stroke-dashoffset: 1500;
  animation: draw 1.6s ease-out forwards
}

.draw.delay {
  animation-delay: .4s
}

@keyframes draw {
  to {
    stroke-dashoffset: 0
  }
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0)
  }

  50% {
    transform: translateY(-6px)
  }
}

.float-y {
  animation: float 6s ease-in-out infinite
}

/* === Logos marquee === */
.logos {
  padding: 48px 0;
}

.logos-cap {
  text-align: center;
  font-size: 13px;
  color: var(--muted);
  margin: 0 0 20px;
  text-transform: uppercase;
  letter-spacing: .12em
}

.marquee-wrap {
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent)
}

.marquee-track {
  display: flex;
  gap: 64px;
  width: max-content;
  animation: marquee 38s linear infinite;
  font-size: 22px;
  font-weight: 600;
  color: #9aa0a8;
  letter-spacing: -.01em
}

@keyframes marquee {
  from {
    transform: translateX(0)
  }

  to {
    transform: translateX(-50%)
  }
}

/* === Cards & grids === */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px
}

.card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow);
  transition: transform .2s ease
}

.card:hover {
  transform: translateY(-2px)
}

.ico {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin-bottom: 14px
}

.card h3 {
  margin: 0 0 6px;
  font-size: 17px;
  font-weight: 600
}

.card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px
}

.card.big {
  padding: 28px
}

.bigv {
  font-size: 42px;
  font-weight: 600;
  letter-spacing: -.02em;
  margin: 6px 0
}

.mini {
  margin-top: 10px;
  height: 120px
}

.bars {
  display: flex;
  gap: 8px;
  align-items: flex-end;
  height: 120px;
  margin-top: 14px
}

.bars span {
  flex: 1;
  background: linear-gradient(180deg, #5A6BFF, #6E7BFF);
  border-radius: 6px
}

/* === Capabilities Section === */
.caps-section { padding: 80px 0; background: var(--bg) }

.caps-wrap {
  display: grid;
  grid-template-columns: 450px 1fr;
  gap: 64px;
  align-items: start
}

/* LEFT */
.caps-left {
  position: sticky;
  top: 100px
}

.caps-label {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 11px;
  font-weight: 600;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .12em;
  margin-bottom: 16px;
  padding: 5px 12px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: #fff;
  box-shadow: var(--shadow)
}

.caps-heading {
  font-size: 48px;
  font-weight: 500;
  line-height: 52px;
  letter-spacing: -.03em;
  color: var(--ink);
  margin: 0 0 18px
}

.caps-desc {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.65;
  margin: 0 0 24px;
}

.caps-hi { font-weight: 500 }
.caps-hi.blue   { color: #2563EB }
.caps-hi.orange { color: #f97316 }
.caps-hi.purple { color: #8b5cf6 }

.caps-btn {
  display: inline-flex;
  background: #fff;
  color: var(--ink);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 500;
  box-shadow: var(--shadow);
  margin-bottom: 40px
}

.caps-tabs {
  display: flex;
  flex-direction: column;
  gap: 4px
}

.caps-tab {
  display: flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 10px 0;
  font-size: 15px;
  font-weight: 500;
  color: var(--muted);
  text-align: left;
  transition: color .2s
}

.caps-tab:hover { color: var(--ink) }

.caps-tab.active {
   color: var(--ink);
   font-weight: 600;

   }

.caps-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #d1d5db;
  flex-shrink: 0;
  transition: background .2s
}

.caps-tab.active .caps-dot { background: var(--ink) }

/* RIGHT */
.caps-right {
  display: flex;
  flex-direction: column;
  gap: 20px
}

.caps-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow)
}

.caps-card-visual {
  width: 100%;
  aspect-ratio: 16 / 8;
  background: #f3f4f6;
  border-bottom: 1px solid var(--border);
  padding: 12px;
  color: #374151;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden
}

.caps-card-visual svg { width: 100%; height: 100% }

.caps-card-body { padding: 22px 26px 26px }

.caps-card-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--ink);
  margin: 0 0 8px;
  letter-spacing: -.01em
}

.caps-card-desc {
  font-size: 14px;
  color: var(--muted);
  margin: 0;
  line-height: 1.6
}

@media (max-width: 920px) {
  .caps-wrap { grid-template-columns: 1fr; gap: 32px }
  .caps-left { position: static }
}

/* === Why Syntra Section === */
.why-syntra { padding: 80px 0 }

.why-syntra-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: end;
  margin-bottom: 48px
}

.why-syntra-label {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 11px;
  font-weight: 600;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .12em;
  padding: 5px 12px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: #fff;
  box-shadow: var(--shadow)
}

.why-syntra-h2 {
  font-size: 48px;
  font-weight: 500;
  line-height: 52px;
  letter-spacing: -.03em;
  color: var(--ink);
  margin: 0
}

.why-syntra-desc {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.65;
  margin: 0 0 24px
}

.why-syntra-btn {
  display: inline-flex;
  background: var(--primary);;
  color: #fff;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 500;
  box-shadow: var(--shadow)
}

.why-syntra-carousel-wrap {
  overflow: hidden
}

.why-syntra-cards {
  display: flex;
  gap: 16px;
  transition: transform .4s cubic-bezier(.4,0,.2,1)
}

.ws-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform .2s ease;
  flex: 0 0 calc(33.333% - 11px);
  min-width: 0
}

.ws-card:hover { transform: translateY(-3px) }

.ws-icon-box {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f3f4f6;
  border: 1px solid var(--border);
  border-radius: 8px;
  margin-bottom: 20px;
  color: var(--muted)
}

.ws-illustration {
  width: 100%;
  aspect-ratio: 16/10;
  background: #f3f4f6;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px;
  color: #374151;
  overflow: hidden
}

.ws-illustration svg { width: 100%; height: 100% }

.ws-body { padding: 28px 24px 32px }

.ws-icon {
  display: block;
  color: var(--muted);
  margin-bottom: 12px
}

.ws-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--ink);
  margin: 0 0 10px;
  letter-spacing: -.01em
}

.ws-desc {
  font-size: 14px;
  color: var(--muted);
  margin: 0;
  line-height: 1.65
}

.ws-carousel-nav {
  display: flex;
  gap: 10px;
  margin-top: 20px
}

.ws-arrow {
  width: 40px;
  height: 40px;
  border-radius: 50%;
      background: var(--primary);
    border: 1px solid var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background .2s
}

@media (max-width: 920px) {
  .why-syntra-header { grid-template-columns: 1fr }
  .ws-card { flex: 0 0 calc(50% - 8px) }
}

@media (max-width: 560px) {
  .why-syntra-cards { grid-template-columns: 1fr }
}

/* === Case study === */
.case-card {
  background: #f5f5f5;
  border-radius: 24px;
  padding: 15px 10px;
  border: 1px solid #09090b14;
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 0;
  align-items: stretch;
  overflow: hidden;
  min-height: 480px
}

/* Left dark visual panel */
.case-visual {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  min-height: 440px;
  display: flex;
  align-items: flex-end;
  padding: 28px
}

.case-aurora {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(55% 55% at 30% 30%, rgba(255, 140, 60, .75), transparent 65%),
    radial-gradient(50% 55% at 70% 65%, rgba(130, 60, 200, .7), transparent 65%),
    radial-gradient(40% 40% at 55% 50%, rgba(60, 30, 120, .5), transparent 70%);
  filter: blur(28px);
  opacity: .9
}

.case-grid-overlay {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to right, rgba(255,255,255,.07) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255,255,255,.07) 1px, transparent 1px);
  background-size: 36px 36px
}

.case-logo-wrap {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 12px
}

.case-logo-name {
  font-size: 26px;
  font-weight: 700;
  color: #fff;
  letter-spacing: -.01em
}

.case-story-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 16px;
}

/* Right content panel */
.case-content {
  padding: 40px 44px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: stretch;
  min-width: 0;
}

.case-slider {
  display: flex;
  flex-direction: column;
  gap: 28px;
  height: 100%;
  justify-content: space-between;
}

.case-slider-viewport {
  overflow: hidden;
  width: 100%;
}

.case-slider-track {
  display: flex;
  transition: transform .55s cubic-bezier(.22, 1, .36, 1);
  will-change: transform;
}

.case-slide {
  flex: 0 0 100%;
  min-width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0;
}

.case-slide .why-syntra-label {
  align-self: flex-start;
  width: fit-content;
  margin-bottom: 22px;
}

.case-slide .case-stat-inline {
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
}

.case-slider-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: auto;
}

.case-slider-arrows {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: auto;
}

.case-slider-arrow {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid #d1d5db;
  background: #fff;
  color: #0f1115;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: border-color .15s, background .15s, transform .15s;
  flex-shrink: 0;
}

.case-slider-arrow:hover {
  border-color: #0f1115;
  background: #fafafa;
}

.case-slider-dots {
  display: flex;
  align-items: center;
  gap: 8px;
}

.case-slider-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  border: none;
  padding: 0;
  background: #d1d5db;
  cursor: pointer;
  transition: width .25s ease, background .25s ease;
}

.case-slider-dot.active {
  width: 24px;
  background: #0f1115;
}

.case-quote {
  font-size: clamp(18px, 2.2vw, 26px);
  font-weight: 500;
  line-height: 1.4;
  color: #1a1d24;
  margin: 0 0 28px;
  letter-spacing: -.01em
}

.case-author {
  margin-bottom: 20px;
  font-size: 15px
}

.case-author-name {
  font-weight: 600;
  color: #0f1115
}

.case-author-role {
  color: #6b6f78;
  margin-left: 4px
}

.case-btn {
  display: inline-flex;
  width: fit-content;
  padding: 10px 20px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 500;
  border: 1px solid #d1d5db;
  background: #fff;
  color: #0f1115;
  margin-bottom: auto
}

.case-stat-inline {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-top: 40px
}

.case-stat-num {
  font-size: 36px;
  font-weight: 800;
  color: #0f1115;
  letter-spacing: -.03em;
  line-height: 1
}

.case-stat-label {
  font-size: 13px;
  color: #6b6f78
}

.case-card .h2 {
  margin: 14px 0
}

.case-stat {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  text-align: center;
  background: rgba(255, 255, 255, .04);
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 20px;
  padding: 24px
}

.case-stat .bigv {
  font-size: 32px
}

/* === Differences Marquee Section === */
.diff-section {
  padding: 80px 0;
}

.diff-head {
  text-align: center;
  margin-bottom: 48px;
  padding: 0 24px
}

.diff-heading {
  font-size: 48px;
  font-weight: 500;
  color: var(--ink);
  line-height: 52px;
  letter-spacing: -.03em;
  margin: 0;
  margin-bottom: 10px;
}

.diff-rows {
  display: flex;
  flex-direction: column;
  gap: 14px;
  overflow: hidden
}

.diff-row-wrap {
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, #000 10%, #000 90%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, #000 10%, #000 90%, transparent 100%)
}

.diff-track {
  display: flex;
  gap: 10px;
  width: max-content;
  animation: integ-scroll-left 30s linear infinite
}

.diff-track[data-dir="right"] {
  animation: integ-scroll-right 30s linear infinite
}

.diff-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  border-radius: 8px;
  background: #fff;
  font-size: 14px;
  font-weight: 500;
  color: var(--ink);
  white-space: nowrap;
  flex-shrink: 0
}

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

/* === Integrations Section === */
.integ-section { padding: 0 0 80px }

.integ-card {
  display: flex;
  align-items: center;
  gap: 48px;
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 40px;
  background: #fff;
  overflow: hidden
}

.integ-left { flex: 0 0 350px }

.integ-heading {
  font-size: 18px;
  font-weight: 500;
  color: var(--ink);
  line-height: 24px;
  letter-spacing: -.02em;
  margin: 0 0 10px
}

.integ-desc {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
  margin: 0
}

.integ-right {
  flex: 1;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-width: 0
}

.integ-row-wrap {
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, #000 12%, #000 88%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, #000 12%, #000 88%, transparent 100%)
}

.integ-track {
  display: flex;
  gap: 10px;
  width: max-content;
  animation: integ-scroll-left 28s linear infinite
}

.integ-track[data-dir="right"] {
  animation: integ-scroll-right 28s linear infinite
}

@keyframes integ-scroll-left {
  from { transform: translateX(0) }
  to   { transform: translateX(-50%) }
}

@keyframes integ-scroll-right {
  from { transform: translateX(-50%) }
  to   { transform: translateX(0) }
}

.integ-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px 6px 6px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: #fafafa;
  font-size: 13px;
  font-weight: 500;
  color: var(--ink);
  white-space: nowrap;
  flex-shrink: 0
}

.integ-icon {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0
}

.integ-grad1 {
  width: 84px;
  height: 40px;
  padding: 0;
  border: none;
  background: linear-gradient(135deg, #FF8A3D 0%, #FF5FA2 55%, #c084fc 100%)
}

.integ-grad2 {
  width: 84px;
  height: 40px;
  padding: 0;
  border: none;
  background: linear-gradient(135deg, #6366f1 0%, #ec4899 50%, #f97316 100%)
}

@media (max-width: 920px) {
  .integ-card { flex-direction: column; padding: 28px 20px; gap: 24px }
  .integ-left { flex: none }
}

/* === Why === */
.why-card {
  background: linear-gradient(135deg, rgba(255, 138, 61, .18), rgba(255, 95, 162, .18) 50%, rgba(110, 123, 255, .22));
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 28px;
  padding: 32px
}

.why-tabs {
  display: flex;
  gap: 6px;
  background: rgba(255, 255, 255, .06);
  padding: 6px;
  border-radius: 14px;
  width: max-content;
  margin-bottom: 32px
}

.dark .tab {
  color: rgba(255, 255, 255, .6)
}

.dark .tab.active {
  background: rgba(255, 255, 255, .12);
  color: #fff
}

.why-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center
}

.why-overline {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .45);
  margin-bottom: 14px
}

.why-bullets {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px
}

.why-bullets li {
  font-size: 14px;
  color: rgba(255,255,255,.75);
  display: flex;
  align-items: center;
  gap: 10px
}

.why-bullets li::before {
  content: "";
  width: 18px;
  height: 18px;
  min-width: 18px;
  border-radius: 50%;
  border: 1.5px solid rgba(130, 110, 255, .7);
  display: inline-block
}

.why-stat-card {
  display: flex;
  align-items: center;
  justify-content: center
}

.why-stat-inner {
  background: rgba(15, 13, 30, .7);
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 20px;
  padding: 48px 56px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  width: 100%;
}

.why-stat-num {
  font-size: 68px;
  font-weight: 700;
  color: #8b7cf8;
  line-height: 1;
  letter-spacing: -.02em
}

.why-stat-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .5)
}

.why-stat-badge {
  margin-top: 4px;
  font-size: 12px;
  color: rgba(255, 255, 255, .7);
  padding: 4px 14px;
  border: 1px solid rgba(255, 255, 255, .15);
  border-radius: 999px;
  background: rgba(255, 255, 255, .06)
}

.why-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 36px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, .08)
}

.why-cert {
  font-size: 13px;
  color: rgba(255, 255, 255, .4)
}

.why-learn-btn {
  font-size: 13px;
  font-weight: 600;
  color: #fff;
  padding: 8px 18px;
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 999px;
  background: rgba(255, 255, 255, .08);
  text-decoration: none;
  transition: background .2s;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.why-learn-btn:hover {
  background: rgba(255, 255, 255, .15)
}

.why-panel {
  display: none
}

.why-panel.active {
  display: block
}

.why-chart {
  background: rgba(0, 0, 0, .25);
  border-radius: 18px;
  padding: 14px;
  height: 240px
}

.why-chart svg {
  width: 100%;
  height: 100%
}

.bullets {
  margin-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px
}

.bullets li {
  font-size: 14px
}

/* === Transformation Section === */
.transform-accent {
  color: var(--primary)
}

.transform-sub {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.6
}

.transform-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px;
  align-items: stretch
}

.transform-card {
  background: var(--card);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 20px
}

.transform-card--bad {
  border: 1.5px solid rgba(239, 68, 68, 0.3);
  background: rgba(239, 68, 68, 0.03)
}

.transform-card--good {
  border: 1.5px solid rgba(34, 197, 94, 0.3);
  background: rgba(34, 197, 94, 0.03)
}

.transform-card--cta {
  border: 1.5px solid var(--border);
  background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
  align-items: center;
  text-align: center;
  justify-content: center
}

.transform-card-hd {
  display: flex;
  align-items: center;
  gap: 10px
}

.transform-badge {
  width: 24px;
  height: 24px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  flex-shrink: 0
}

.transform-badge--bad {
  background: rgba(239, 68, 68, 0.15);
  color: #ef4444
}

.transform-badge--good {
  background: rgba(34, 197, 94, 0.15);
  color: #22c55e
}

.transform-card-title {
  margin: 0;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: -.01em
}

.transform-title--bad {
  color: #dc2626
}

.transform-title--good {
  color: #16a34a
}

.transform-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0
}

.transform-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 10px 0;
  border-top: 1px solid var(--border);
  font-size: 13.5px;
  line-height: 1.5;
  color: var(--ink)
}

.transform-list li:first-child {
  border-top: 0;
  padding-top: 0
}

.tl-icon {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px
}

.tl-icon--bad {
  background: rgba(239, 68, 68, 0.12);
  color: #ef4444
}

.tl-icon--good {
  background: rgba(34, 197, 94, 0.12);
  color: #22c55e
}

.transform-cta-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 4px
}

.transform-cta-heading {
  margin: 0;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: -.02em;
  color: var(--ink)
}

.transform-cta-sub {
  margin: 0;
  font-size: 13.5px;
  color: var(--muted);
  line-height: 1.55
}

/* === Analytics === */
.analytics {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px
}

/* === Testimonials (legacy kept for .quote/.who/.av) === */
.quote {
  margin: 12px 0 16px
}

/* === Analytics Tabs Section === */
.atab-section { padding: 96px 0 }

.atab-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center
}

/* LEFT */
.atab-outer {
  background: #f3f4f6;
  border-radius: 24px;
  padding: 32px;
  position: relative
}

/* Dot grid background */
.atab-outer::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 24px;
  background-image: radial-gradient(circle, #d1d5db 1px, transparent 1px);
  background-size: 20px 20px;
  pointer-events: none
}

.atab-inner {
  position: relative;
  z-index: 1;
  background: #f3f4f6;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 0 0 1.5px rgba(0,0,0,.06), 0 8px 32px rgba(0,0,0,.08);
  aspect-ratio: 1 / 1
}

.atab-inner::before { display: none }

.atab-panel {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s ease
}
.atab-panel.active {
  opacity: 1;
  pointer-events: auto
}

.atab-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block
}

.atab-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid transparent
}

.atab-row.active-row {
  background: #f9fafb;
  border-color: var(--border)
}

.atab-logo-wrap {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0
}

.atab-logo-circle { border-radius: 50% }

.atab-row-name {
  flex: 1;
  font-size: 14px;
  font-weight: 500;
  color: var(--ink)
}

.atab-row-stat {
  font-size: 12px;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 999px;
  white-space: nowrap
}

.atab-row-stat.up   { background: #eff6ff; color: #2563eb }
.atab-row-stat.down { background: #fff7ed; color: #f97316 }

/* Donut chart panel */
.atab-donut-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex: 1;
  padding: 8px 0
}

.atab-donut-legend {
  display: flex;
  gap: 20px;
  justify-content: center
}

.atab-legend-item {
  display: flex;
  align-items: flex-start;
  gap: 6px
}

.atab-legend-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 4px
}

.atab-legend-name {
  font-size: 12px;
  color: var(--muted)
}

.atab-legend-val {
  font-size: 14px;
  font-weight: 700;
  color: var(--ink)
}

/* Alert rows panel */
.atab-alert-row {
  background: #f9fafb;
  border: none !important
}

.atab-skeleton-lines {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 6px
}

.atab-skel {
  display: block;
  height: 10px;
  border-radius: 6px;
  background: #e5e7eb
}

.atab-alert-dot {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #ef4444;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0
}

/* RIGHT */
.atab-label {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 11px;
  font-weight: 600;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .12em;
  margin-bottom: 16px;
  padding: 5px 12px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: #fff;
  box-shadow: var(--shadow)
}

.atab-heading {
  font-size: 48px;
  font-weight: 500;
  color: var(--ink);
  line-height: 52px;
  letter-spacing: -.03em;
  margin: 0 0 36px
}

.atab-tabs {
  display: flex;
  flex-direction: column;
  gap: 4px
}

.atab-tab {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px 16px;
  border-radius: 12px;
  cursor: pointer;
  border: 1px solid transparent;
  transition: background .2s, border-color .2s
}

.atab-tab:hover { background: #f9fafb }

.atab-tab.active {
  background: #f0f4ff;
  border-color: #c7d7fd
}

.atab-tab-icon {
  width: 34px;
  height: 34px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--ink)
}

.atab-tab.active .atab-tab-icon {
  background: #2563EB;
  border-color: #2563EB;
  color: #fff
}

.atab-tab-body { flex: 1 }

.atab-tab-title {
  font-size: 15px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 4px
}

.atab-tab-desc {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.55;
  display: none
}

.atab-tab.active .atab-tab-desc { display: block }

@media (max-width: 920px) {
  .atab-wrap { grid-template-columns: 1fr; gap: 36px }
}

/* === Pricing === */
.pricing .price {
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: relative
}

.price h3 {
  font-size: 16px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .1em;
  margin: 0
}

.price-v {
  font-size: 42px;
  font-weight: 600;
  letter-spacing: -.02em
}

.price-v span {
  font-size: 14px;
  color: var(--muted);
  font-weight: 400
}

.price ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 14px;
  color: var(--muted)
}

.price.popular {
  border-color: transparent;
  box-shadow: 0 0 0 2px var(--primary), 0 24px 60px -20px rgba(90, 107, 255, .45);
  transform: translateY(-4px)
}

.ribbon {
  position: absolute;
  top: -12px;
  right: 24px;
  background: var(--primary);
  color: #fff;
  font-size: 11px;
  padding: 4px 10px;
  border-radius: 999px;
  font-weight: 600
}

/* === FAQ === */
.faq-section { background: #fafafa }

.faq-head {
  text-align: center;
  margin-bottom: 40px
}

.faq-label {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 11px;
  font-weight: 600;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .12em;
  margin-bottom: 14px;
  padding: 5px 12px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: #fff;
  box-shadow: var(--shadow)
}

.faq-heading {
  font-size: 48px;
  font-weight: 500;
  color: var(--ink);
  letter-spacing: -.03em;
  line-height: 52px;
  margin: 0 0 12px
}

.faq-sub {
  font-size: 15px;
  color: var(--muted);
  margin: 0
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden
}
.faq-item.open{
  background: #fff;
}

.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 15px;
  font-weight: 600;
  color: var(--ink);
  text-align: left;
  font-family: inherit
}

.faq-chevron {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  color: var(--muted);
  transition: transform .3s ease
}

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

.faq-body {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows .3s ease
}

.faq-item.open .faq-body {
  grid-template-rows: 1fr
}

.faq-body > div {
  overflow: hidden
}

.faq-body p {
  margin: 0;
  padding: 0 24px 20px;
  font-size: 14px;
  color: var(--muted);
  line-height: 1.65
}

/* === CTA === */
.cta-section { padding: 48px 0 80px }

.cta-glow-wrap {
  position: relative;
  padding: 28px;
  border-radius: 36px
}

/* The multicolor glow blobs behind the card */
.cta-glow-wrap::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 36px;
  background: linear-gradient(
    90deg,
    #F78A4D 0%,
    #F57EB2 35%,
    #B18CFF 65%,
    #66C1FF 100%
  );
  filter: blur(38px);
  opacity: 0.75;
  z-index: 0
}

.cta-card {
  position: relative;
  z-index: 1;
  background: #fff;
  border-radius: 20px;
  padding: 72px 32px;
  text-align: center
}

.cta-heading {
  font-size: 48px;
  font-weight: 500;
  color: var(--ink);
  letter-spacing: -.03em;
  line-height: 52px;
  margin: 0 0 16px
}

.cta-sub {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.6;
  margin: 0 0 32px
}

.cta-btn {
  padding: 13px 28px;
  font-size: 15px
}

/* === Footer === */
.footer {
  background: #0f1115;
  padding: 56px 0 0
}

.foot-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 0;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 12px;
  overflow: hidden
}

.foot-brand {
  padding: 40px 36px;
  border-right: 1px solid rgba(255,255,255,.08)
}

.foot-brand-link {
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px
}

.foot-brand-link .brand-logo {
  background: rgba(255,255,255,.12);
  border-radius: 8px
}

.foot-desc {
  font-size: 13.5px;
  color: rgba(255,255,255,.5);
  line-height: 1.65;
  margin: 0 0 24px
}

.foot-socials {
  display: flex;
  gap: 10px
}

.foot-social {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.6);
  transition: color .2s, border-color .2s
}

.foot-social:hover {
  color: #fff;
  border-color: rgba(255,255,255,.4)
}

.foot-col {
  padding: 40px 32px;
  border-right: 1px solid rgba(255,255,255,.08);
  display: flex;
  flex-direction: column
}

.foot-col:last-child { border-right: none }

.foot-col-title {
  font-size: 13px;
  color: rgba(255,255,255,.4);
  margin: 0 0 20px;
  font-weight: 500;
  letter-spacing: .01em
}

.foot-col a {
  display: block;
  font-size: 14px;
  color: rgba(255,255,255,.75);
  padding: 6px 0;
  transition: color .2s
}

.foot-col a:hover { color: #f79243 }

.foot-bottom {
  text-align: center;
  padding: 20px 0;
  font-size: 13px;
  color: rgba(255,255,255,.35)
}

/* === Reveal animation === */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s cubic-bezier(.22, 1, .36, 1), transform .7s cubic-bezier(.22, 1, .36, 1)
}

.reveal.in {
  opacity: 1;
  transform: none
}

/* === Responsive === */
@media (max-width:920px) {

  .nav-links,
  .nav-cta {
    display: none
  }

  .nav-toggle {
    display: block
  }

  .grid-3,
  .analytics,
  .transform-grid,
  .foot-grid,
  .kpi-row {
    grid-template-columns: 1fr 1fr
  }

  .case-card,
  .why-body {
    grid-template-columns: 1fr;
    padding: 12px
  }

  .case-visual {
    min-height: 280px
  }

  .case-content {
    padding: 28px 24px
  }

  .case-stat {
    grid-template-columns: repeat(3, 1fr)
  }

  .pricing {
    grid-template-columns: 1fr
  }

  .price.popular {
    transform: none
  }
}

@media (max-width:560px) {
  .section {
    padding: 40px 0
  }

  .grid-3,
  .analytics,
  .transform-grid,
  .foot-grid,
  .kpi-row {
    grid-template-columns: 1fr
  }

  .case-stat {
    grid-template-columns: 1fr
  }

  .foot-bottom {
    flex-direction: column;
    gap: 8px
  }

  .dash {
    padding: 12px
  }

  .h1 {
    font-size: 38px
  }
}

/* ═══════════════════════════════════════
   ABOUT PAGE
═══════════════════════════════════════ */

/* HERO */
.about-hero {
  padding: 100px 0 0;
  text-align: center;
  position: relative;
}
.about-hero-label {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 11px;
  font-weight: 600;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .12em;
  margin-bottom: 20px;
  padding: 5px 14px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: #fff;
  box-shadow: var(--shadow);
}
.about-hero-h1 {
  font-family: "IBM Plex Sans", sans-serif;
  font-size: clamp(36px, 6vw, 64px);
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -.03em;
  color: var(--ink);
  margin: 0 auto 18px;
  max-width: 700px;
}
.about-hero-sub {
  font-size: 16px;
  color: var(--muted);
  max-width: 520px;
  margin: 0 auto 48px;
  line-height: 1.65;
}
.about-hero-img-wrap {
  position: relative;
  margin: 0 auto;
  border-radius: 16px;
  overflow: hidden;
}
.about-hero-img {
  width: 100%;
  display: block;
  border-radius: 16px;
  object-fit: cover;
}
.about-mission-badge {
  position: absolute;
  bottom: 0;
  right: 0;
  background: var(--primary);
  color: #fff;
  border-radius: 16px 0 0 0;
  padding: 28px 36px 32px;
  width: 50%;
  max-width: 360px;
  box-shadow: none;
}
.about-mission-badge h4 {
  margin: 0 0 10px;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -.01em;
}
.about-mission-badge p {
  margin: 0;
  font-size: 14px;
  line-height: 1.65;
  opacity: .9;
}

/* STATS */
.about-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  padding: 52px 0;
  border: 1px solid var(--border);
  margin-top: 20px;
    background: #fff;
    border-radius: 16px;
}
.about-stat {
  text-align: left;
  padding: 0 32px;
}
.about-stat:last-child { border-right: 0 }
.about-stat-num {
  display: block;
  font-size: 48px;
  font-weight: 500;
  letter-spacing: -.04em;
  color: var(--ink);
  line-height: 1;
  margin-bottom: 20px;
}
.about-stat-title {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 6px;
}
.about-stat-label {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.5;
}

/* CULTURE CARDS */
.culture-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.culture-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 28px;
  box-shadow: var(--shadow);
}
.culture-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--primary);
  border: 1px solid #dbeafe;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: #ffffff;
}
.culture-card h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--ink);
  margin: 0 0 10px;
  letter-spacing: -.01em;
}
.culture-card p {
  font-size: 14px;
  color: var(--muted);
  margin: 0;
  line-height: 1.65;
}

/* SMART AI BENTO */
.smart-bento {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 20px;
}
.smart-bento-main {
  grid-row: span 2;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.smart-bento-main img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  display: block;
}
.smart-bento-main-body {
  padding: 28px;
}
.smart-bento-main-body h3 {
  font-size: 18px;
  font-weight: 700;
  margin: 0 0 8px;
  color: var(--ink);
  letter-spacing: -.01em;
}
.smart-bento-main-body p {
  font-size: 14px;
  color: var(--muted);
  margin: 0;
  line-height: 1.65;
}
.smart-bento-sm {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.smart-bento-sm img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  display: block;
}
.smart-bento-sm-body {
  padding: 20px 22px;
}
.smart-bento-sm-body h3 {
  font-size: 15px;
  font-weight: 700;
  margin: 0 0 6px;
  color: var(--ink);
}
.smart-bento-sm-body p {
  font-size: 13px;
  color: var(--muted);
  margin: 0;
  line-height: 1.6;
}

/* TRUSTED LOGOS */
.trusted-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
  padding: 12px 0;
}
.trusted-logo {
  font-size: 15px;
  font-weight: 700;
  color: #9ca3af;
  display: flex;
  align-items: center;
  gap: 8px;
  letter-spacing: -.01em;
}
.trusted-logo-dot {
  width: 22px;
  height: 22px;
  border-radius: 6px;
  background: #e5e7eb;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 800;
  color: #6b7280;
}

@media (max-width: 860px) {
  .about-stats { grid-template-columns: 1fr 1fr }
  .about-stat { border-right: 0; border-bottom: 1px solid var(--border); padding: 24px 0 }
  .about-stat:last-child { border-bottom: 0 }
  .about-mission-badge { width: 65%; max-width: none }
  .culture-grid { grid-template-columns: 1fr }
  .smart-bento { grid-template-columns: 1fr }
  .smart-bento-main { grid-row: span 1 }
}
@media (max-width: 560px) {
  .about-stats { grid-template-columns: 1fr 1fr }
  .about-mission-badge { display: none }
}

/* ═══════════════════════════════════════
   CONTACT PAGE
═══════════════════════════════════════ */

/* Contact info top row */
.contact-top-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 24px;
}
.contact-top-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px 20px;
  box-shadow: var(--shadow);
}
.contact-top-card .ctc-ico {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: #eff6ff;
  border: 1px solid #dbeafe;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  margin-bottom: 14px;
}
.contact-top-card .ctc-label {
  font-size: 11px;
  color: var(--muted);
  margin-bottom: 4px;
}
.contact-top-card .ctc-val {
  font-size: 13.5px;
  font-weight: 600;
  color: var(--ink);
}

/* Bottom layout */
.contact-bottom {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  align-items: start;
}

/* Form */
.contact-form-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow);
}
.field { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.field label { font-size: 12.5px; font-weight: 500; color: var(--ink); }
.field .required-mark {
  color: #e53935;
  margin-left: 2px;
}
.field input, .field select, .field textarea {
  font: inherit;
  font-size: 13.5px;
  padding: 10px 14px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: #fafafa;
  outline: none;
  transition: border-color .15s, background .15s;
  color: var(--ink);
}
.field input:focus, .field select:focus, .field textarea:focus {
  border-color: var(--primary);
  background: #fff;
}
.field textarea { resize: none; min-height: 110px; }
.field.has-error input,
.field.has-error textarea {
  border-color: #e53935;
  background: #fff8f8;
}
.field.has-error input:focus,
.field.has-error textarea:focus {
  border-color: #e53935;
}
.field-error {
  display: none;
  font-size: 12px;
  color: #e53935;
  line-height: 1.35;
}
.field.has-error .field-error { display: block; }
#formResponse {
  margin-top: 12px;
  font-size: 13px;
  line-height: 1.4;
}
.row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }

/* Talk to sales card */
.talk-sales-card {
  background: var(--primary);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  color: #fff;
  display: flex;
  flex-direction: column;
  gap: 0;
  min-height: 100%;
}
.talk-sales-card h3 {
  font-size: 20px;
  font-weight: 700;
  margin: 0 0 10px;
  letter-spacing: -.01em;
  color: #fff;
}
.talk-sales-card .tsc-sub {
  font-size: 13px;
  opacity: .8;
  line-height: 1.6;
  margin-bottom: 28px;
}
.tsc-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}
.tsc-icon {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255,255,255,.18);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.tsc-row span {
  font-size: 13.5px;
  font-weight: 500;
}
.tsc-divider {
  border: none;
  border-top: 1px solid rgba(255,255,255,.2);
  margin: 16px 0 20px;
}
.tsc-hours-label {
  font-size: 12px;
  font-weight: 600;
  opacity: .7;
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 8px;
}
.tsc-hours-row {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13.5px;
  font-weight: 500;
}
.tsc-socials {
  display: flex;
  gap: 10px;
  margin-top: auto;
  padding-top: 28px;
}
.tsc-social {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255,255,255,.18);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-decoration: none;
  transition: background .15s;
}
.tsc-social:hover { background: rgba(255,255,255,.3); }

@media (max-width: 860px) {
  .contact-top-row { grid-template-columns: 1fr 1fr; }
  .contact-bottom { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .contact-top-row { grid-template-columns: 1fr 1fr; }
  .row { grid-template-columns: 1fr; }
  .contact-form-card { padding: 20px; }
}

/* CONTACT PAGE HERO */
.contact-hero {
  padding-bottom: 60px;
  background: linear-gradient(
    180deg,
    rgba(255, 138, 61, 0.1) 0%,
    rgba(255, 95, 162, 0.07) 35%,
    rgba(110, 123, 255, 0.1) 70%,
    transparent 100%
  );
}
.contact-hero .sdr-hero-stage {
  min-height: auto;
}
.contact-hero .sdr-hero-inner {
  overflow: visible;
}
.contact-hero .aurora-blob {
  left: 50%;
  top: 50%;
  bottom: auto;
  transform: translate(-50%, -50%);
  width: min(900px, 120vw);
  height: 340px;
  opacity: 0.7;
  z-index: 0;
}
.contact-hero .sdr-hero-inner > *:not(.aurora-blob) {
  position: relative;
  z-index: 1;
}
.contact-page .contact-hero .sdr-hero-inner > *:not(.aurora-blob) {
  opacity: 0;
  transform: translateY(28px);
}
.contact-page .contact-hero.in .sdr-hero-inner > *:not(.aurora-blob) {
  animation: sdr-setup-enter .75s cubic-bezier(.22, 1, .36, 1) forwards;
}
.contact-page .contact-hero.in .sdr-hero-inner .chip { animation-delay: .08s; }
.contact-page .contact-hero.in .sdr-hero-inner .sdr-hero-h1 { animation-delay: .2s; }
.contact-page .contact-hero.in .sdr-hero-inner .sdr-hero-sub { animation-delay: .32s; }

/* ═══════════════════════════════════════
   AI SDR PAGE
═══════════════════════════════════════ */

/* HERO */
.sdr-hero {
  padding: 120px 0 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.sdr-hero-stage {
  position: relative;
  max-width: 960px;
  margin: 0 auto;
  min-height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.sdr-hero-orbit {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  color: #e5e7eb;
  pointer-events: none;
  z-index: 0;
}
.sdr-hero-icon {
  position: absolute;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid var(--border);
  box-shadow: 0 8px 24px rgba(15, 23, 42, .08), 0 2px 6px rgba(15, 23, 42, .04);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}
.sdr-hero-icon--phone {
  top: 18%;
  left: 2%;
  color: #f97316;
}
.sdr-hero-icon--email {
  bottom: 22%;
  left: 6%;
  color: #8b5cf6;
}
.sdr-hero-icon--linkedin {
  top: 18%;
  right: 2%;
  color: #0a66c2;
}
.sdr-hero-icon--whatsapp {
  bottom: 22%;
  right: 6%;
  color: #25d366;
}
@keyframes sdr-icon-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}
.sdr-icon-float {
  animation: sdr-icon-float 5s ease-in-out infinite;
  animation-delay: var(--float-delay, 0s);
}
.sdr-hero-inner {
  position: relative;
  z-index: 1;
  /* max-width: 680px; */
  margin: 0 auto;
}
.sdr-hero-h1 {
  font-family: "IBM Plex Sans", sans-serif;
  font-size: clamp(38px, 6vw, 64px);
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -.03em;
  color: var(--ink);
  margin: 18px auto 20px;
}
.sdr-hero-gradient {
  background: linear-gradient(90deg, #f97316 0%, #ec4899 45%, #6366f1 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.sdr-hero-sub {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.7;
  max-width: 560px;
  margin: 0 auto 36px;
}
.sdr-hero-btns {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}
.sdr-hero-btns .btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

/* KEY CAPABILITIES GRID */
.sdr-caps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.sdr-cap-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  box-shadow: var(--shadow);
  transition: box-shadow .2s, transform .2s;
}
.sdr-cap-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
}
.sdr-cap-ico {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: #eff6ff;
  border: 1px solid #dbeafe;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  margin-bottom: 16px;
}
.sdr-cap-card h3 {
  font-size: 15px;
  font-weight: 700;
  color: var(--ink);
  margin: 0 0 8px;
  letter-spacing: -.01em;
}
.sdr-cap-card p {
  font-size: 13.5px;
  color: var(--muted);
  margin: 0;
  line-height: 1.6;
}

/* AI SDR — Key Capabilities (SDK maintenance reference layout) */
.ai-sdr-page .sdr-caps-section {
  padding-top: 72px;
  padding-bottom: 88px;
}
.ai-sdr-page .sdr-caps-ref-head {
  text-align: center;
  margin-bottom: 48px;
}
.ai-sdr-page .sdr-caps-ref-head .chip {
  margin-bottom: 16px;
}
.ai-sdr-page .sdr-caps-ref-head .h2 {
  margin-bottom: 12px;
}
.ai-sdr-page .sdr-caps-section .sdr-caps-sub {
  font-size: 16px;
  color: #6b7280;
  line-height: 1.6;
  margin: 0 auto;
  max-width: 520px;
}
.ai-sdr-page .sdr-caps-showcase {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 56px;
  position: relative;
}
.ai-sdr-page .sdr-caps-showcase-card {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  aspect-ratio: 16 / 10;
  opacity: 0;
  transform: scale(0.35);
  will-change: transform, opacity;
  box-shadow: 0 20px 50px rgba(15, 23, 42, .08);
}
.ai-sdr-page .sdr-caps-showcase-card--1 { transform-origin: 100% 100%; }
.ai-sdr-page .sdr-caps-showcase-card--2 { transform-origin: 0% 100%; }
.ai-sdr-page .sdr-caps-showcase-card--3 { transform-origin: 100% 0%; }
.ai-sdr-page .sdr-caps-showcase-card--4 { transform-origin: 0% 0%; }
.ai-sdr-page .sdr-caps-showcase-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 24px;
  filter: saturate(0.7);
}
.ai-sdr-page .sdr-caps-section.in .sdr-caps-showcase-card {
  animation: sdr-caps-emerge 1.55s cubic-bezier(.22, 1, .36, 1) forwards;
  border: 1px solid #cecece61;
}
.ai-sdr-page .sdr-caps-section.in .sdr-caps-showcase-card--1 { animation-delay: .1s; }
.ai-sdr-page .sdr-caps-section.in .sdr-caps-showcase-card--2 { animation-delay: .22s; }
.ai-sdr-page .sdr-caps-section.in .sdr-caps-showcase-card--3 { animation-delay: .34s; }
.ai-sdr-page .sdr-caps-section.in .sdr-caps-showcase-card--4 { animation-delay: .46s; }

@keyframes sdr-caps-emerge {
  from {
    opacity: 0;
    transform: scale(0.35);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
.ai-sdr-page .sdr-caps-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px 40px;
}
.ai-sdr-page .sdr-caps-list-item {
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-rows: auto auto;
  column-gap: 10px;
  row-gap: 10px;
  align-items: center;
  opacity: 0;
}
.ai-sdr-page .sdr-caps-list-ico {
  grid-row: 1;
  grid-column: 1;
  width: 22px;
  height: 22px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: none;
  color: #fff;
}
.ai-sdr-page .sdr-caps-list-ico svg {
  width: 12px;
  height: 12px;
}
.ai-sdr-page .sdr-caps-list-ico--orange { background: #f97316; }
.ai-sdr-page .sdr-caps-list-ico--purple { background: #8b5cf6; }
.ai-sdr-page .sdr-caps-list-ico--blue { background: #2563eb; }
.ai-sdr-page .sdr-caps-list-ico--green { background: #22c55e; }
.ai-sdr-page .sdr-caps-list-ico--pink { background: #ec4899; }
.ai-sdr-page .sdr-caps-list-ico--teal { background: #14b8a6; }
.ai-sdr-page .sdr-caps-list-copy {
  display: contents;
}
.ai-sdr-page .sdr-caps-list-copy h4 {
  grid-row: 1;
  grid-column: 2;
  font-family: "IBM Plex Sans", sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: #111827;
  margin: 0;
  letter-spacing: -.02em;
  line-height: 1.3;
  align-self: center;
}
.ai-sdr-page .sdr-caps-list-copy p {
  grid-row: 2;
  grid-column: 1 / -1;
  font-size: 14px;
  color: #6b7280;
  line-height: 1.65;
  margin: 0;
}
.ai-sdr-page .sdr-caps-section.in .sdr-caps-list-item {
  animation: sdr-caps-list-fade 0.9s ease forwards;
}
.ai-sdr-page .sdr-caps-section.in .sdr-caps-list-item:nth-child(1) { animation-delay: 1.7s; }
.ai-sdr-page .sdr-caps-section.in .sdr-caps-list-item:nth-child(2) { animation-delay: 1.95s; }
.ai-sdr-page .sdr-caps-section.in .sdr-caps-list-item:nth-child(3) { animation-delay: 2.2s; }
.ai-sdr-page .sdr-caps-section.in .sdr-caps-list-item:nth-child(4) { animation-delay: 2.45s; }
.ai-sdr-page .sdr-caps-section.in .sdr-caps-list-item:nth-child(5) { animation-delay: 2.7s; }
.ai-sdr-page .sdr-caps-section.in .sdr-caps-list-item:nth-child(6) { animation-delay: 2.95s; }

@keyframes sdr-caps-list-fade {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 960px) {
  .ai-sdr-page .sdr-caps-showcase {
    grid-template-columns: 1fr;
  }
  .ai-sdr-page .sdr-caps-showcase-card--1 { transform-origin: 50% 100%; }
  .ai-sdr-page .sdr-caps-showcase-card--2 { transform-origin: 50% 0%; }
  .ai-sdr-page .sdr-caps-showcase-card--3 { transform-origin: 50% 100%; }
  .ai-sdr-page .sdr-caps-showcase-card--4 { transform-origin: 50% 0%; }
  .ai-sdr-page .sdr-caps-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px 28px;
  }
}
@media (max-width: 600px) {
  .ai-sdr-page .sdr-caps-list {
    grid-template-columns: 1fr;
  }
}

/* AI Chatbot — Features cards (reference layout) */
.chatbot-page .sdr-caps-section {
  --ref-cap-shadow: 0 4px 18px rgba(15, 23, 42, .06);
}
.chatbot-page .sdr-caps-section .sdr-caps-grid {
  gap: 24px;
}
.chatbot-page .sdr-caps-section .sdr-cap-card {
  border-radius: 14px;
  padding: 22px 24px 20px;
  box-shadow: var(--ref-cap-shadow);
  border-width: 1.5px;
  border-style: solid;
  background: #fff;
  transition: box-shadow .25s ease, transform .25s ease, border-color .25s ease;
}
.chatbot-page .sdr-caps-section .sdr-cap-top {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}
.chatbot-page .sdr-caps-section .sdr-cap-ico {
  width: auto;
  height: auto;
  min-width: 24px;
  padding: 0;
  margin-bottom: 0;
  border-radius: 0;
  background: transparent;
  flex-shrink: 0;
}
.chatbot-page .sdr-caps-section .sdr-cap-card h3 {
  margin: 0;
  font-size: 16px;
  font-weight: 700;
  color: #111827;
  line-height: 1.3;
}
.chatbot-page .sdr-caps-section .sdr-cap-card p {
  margin: 0;
  font-size: 14px;
  color: #6b7280;
  line-height: 1.6;
}
.chatbot-page .sdr-caps-section .sdr-cap-card {
  opacity: 0;
  transform: translateY(28px);
}
.chatbot-page .sdr-caps-section.in .sdr-cap-card {
  animation: sdr-setup-enter .65s cubic-bezier(.22, 1, .36, 1) both;
}
.chatbot-page .sdr-caps-section.in .sdr-cap-card:nth-child(1) { animation-delay: .25s; }
.chatbot-page .sdr-caps-section.in .sdr-cap-card:nth-child(2) { animation-delay: .4s; }
.chatbot-page .sdr-caps-section.in .sdr-cap-card:nth-child(3) { animation-delay: .55s; }
.chatbot-page .sdr-caps-section.in .sdr-cap-card:nth-child(4) { animation-delay: .7s; }
.chatbot-page .sdr-caps-section.in .sdr-cap-card:nth-child(5) { animation-delay: .85s; }
.chatbot-page .sdr-caps-section.in .sdr-cap-card:nth-child(6) { animation-delay: 1s; }
.chatbot-page .sdr-caps-section .sdr-cap-card--orange { border-color: #fcd9b8; }
.chatbot-page .sdr-caps-section .sdr-cap-ico--orange { color: #f97316; }
.chatbot-page .sdr-caps-section .sdr-cap-card--orange:hover {
  border-color: #fb923c;
  box-shadow: 0 8px 28px rgba(249, 115, 22, .14);
  transform: translateY(-3px);
}
.chatbot-page .sdr-caps-section .sdr-cap-card--purple { border-color: #ddd6fe; }
.chatbot-page .sdr-caps-section .sdr-cap-ico--purple { color: #8b5cf6; }
.chatbot-page .sdr-caps-section .sdr-cap-card--purple:hover {
  border-color: #a78bfa;
  box-shadow: 0 8px 28px rgba(139, 92, 246, .14);
  transform: translateY(-3px);
}
.chatbot-page .sdr-caps-section .sdr-cap-card--blue { border-color: #bfdbfe; }
.chatbot-page .sdr-caps-section .sdr-cap-ico--blue { color: #2563eb; }
.chatbot-page .sdr-caps-section .sdr-cap-card--blue:hover {
  border-color: #60a5fa;
  box-shadow: 0 8px 28px rgba(37, 99, 235, .14);
  transform: translateY(-3px);
}
.chatbot-page .sdr-caps-section .sdr-cap-card--green { border-color: #bbf7d0; }
.chatbot-page .sdr-caps-section .sdr-cap-ico--green { color: #22c55e; }
.chatbot-page .sdr-caps-section .sdr-cap-card--green:hover {
  border-color: #4ade80;
  box-shadow: 0 8px 28px rgba(34, 197, 94, .14);
  transform: translateY(-3px);
}
.chatbot-page .sdr-caps-section .sdr-cap-card--pink { border-color: #fbcfe8; }
.chatbot-page .sdr-caps-section .sdr-cap-ico--pink { color: #ec4899; }
.chatbot-page .sdr-caps-section .sdr-cap-card--pink:hover {
  border-color: #f472b6;
  box-shadow: 0 8px 28px rgba(236, 72, 153, .14);
  transform: translateY(-3px);
}
.chatbot-page .sdr-caps-section .sdr-cap-card--amber { border-color: #fde68a; }
.chatbot-page .sdr-caps-section .sdr-cap-ico--amber { color: #f59e0b; }
.chatbot-page .sdr-caps-section .sdr-cap-card--amber:hover {
  border-color: #fbbf24;
  box-shadow: 0 8px 28px rgba(245, 158, 11, .14);
  transform: translateY(-3px);
}

/* AI Chatbot — Simple Setup (chevron flow reference) */
.chatbot-page .sdr-setup-steps--flow {
  --setup-arrow: 34px;
  --setup-gap: 20px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: var(--setup-gap);
  max-width: 1100px;
  margin: 0 auto;
}
.chatbot-page .sdr-setup-steps--flow .sdr-setup-step {
  flex: 1 1 0;
  max-width: none;
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0;
}
.chatbot-page .sdr-setup-shape {
  width: 100%;
  height: 132px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.chatbot-page .sdr-setup-shape--1 {
  background: #fff3e8;
  clip-path: polygon(0 0, calc(100% - var(--setup-arrow)) 0, 100% 50%, calc(100% - var(--setup-arrow)) 100%, 0 100%);
  border-radius: 18px 0 0 18px;
}
.chatbot-page .sdr-setup-shape--2 {
  background: #f3eeff;
  clip-path: polygon(0 0, calc(100% - var(--setup-arrow)) 0, 100% 50%, calc(100% - var(--setup-arrow)) 100%, 0 100%, var(--setup-arrow) 50%);
}
.chatbot-page .sdr-setup-shape--3 {
  background: #eef5ff;
  clip-path: polygon(0 0, calc(100% - var(--setup-arrow)) 0, 100% 50%, calc(100% - var(--setup-arrow)) 100%, 0 100%, var(--setup-arrow) 50%);
}
.chatbot-page .sdr-setup-icon-wrap {
  position: relative;
  width: 84px;
  height: 84px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 8px 28px rgba(15, 23, 42, .1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.chatbot-page .sdr-setup-steps--flow .sdr-setup-num {
  position: absolute;
  top: 2px;
  right: 2px;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  font-size: 11px;
  font-weight: 700;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  box-shadow: 0 2px 8px rgba(15, 23, 42, .15);
}
.chatbot-page .sdr-setup-steps--flow .sdr-setup-icon {
  position: static;
  transform: none;
  display: flex;
  align-items: center;
  justify-content: center;
}
.chatbot-page .sdr-setup-step--orange .sdr-setup-num { background: #f97316; }
.chatbot-page .sdr-setup-step--orange .sdr-setup-icon { color: #f97316; }
.chatbot-page .sdr-setup-step--purple .sdr-setup-num { background: #8b5cf6; }
.chatbot-page .sdr-setup-step--purple .sdr-setup-icon { color: #8b5cf6; }
.chatbot-page .sdr-setup-step--blue .sdr-setup-num { background: #2563eb; }
.chatbot-page .sdr-setup-step--blue .sdr-setup-icon { color: #2563eb; }
.chatbot-page .sdr-setup-vline {
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 44px;
  margin: 10px 0 18px;
}
.chatbot-page .sdr-setup-vline-dash {
  flex: 1;
  width: 0;
  border-left: 2px dashed #d1d5db;
}
.chatbot-page .sdr-setup-vline-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}
.chatbot-page .sdr-setup-step--orange .sdr-setup-vline-dot { background: #f97316; }
.chatbot-page .sdr-setup-step--purple .sdr-setup-vline-dot { background: #8b5cf6; }
.chatbot-page .sdr-setup-step--blue .sdr-setup-vline-dot { background: #2563eb; }
.chatbot-page .sdr-setup-steps--flow .sdr-setup-step h3 {
  font-family: "IBM Plex Sans", sans-serif;
  font-size: 17px;
  font-weight: 700;
  color: #111827;
  margin: 0 0 10px;
  letter-spacing: -.02em;
  max-width: 280px;
}
.chatbot-page .sdr-setup-steps--flow .sdr-setup-step p {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
  margin: 0;
  max-width: 280px;
}
.chatbot-page .sdr-setup-section.in .sdr-setup-steps--flow .sdr-setup-step {
  animation: sdr-setup-enter .7s cubic-bezier(.22, 1, .36, 1) forwards;
}
.chatbot-page .sdr-setup-section.in .sdr-setup-steps--flow .sdr-setup-step:nth-child(1) { animation-delay: .15s; }
.chatbot-page .sdr-setup-section.in .sdr-setup-steps--flow .sdr-setup-step:nth-child(2) { animation-delay: .35s; }
.chatbot-page .sdr-setup-section.in .sdr-setup-steps--flow .sdr-setup-step:nth-child(3) { animation-delay: .55s; }

/* AI SDR — Simple Setup (split stepper reference) */
.ai-sdr-page .sdr-setup-section .sdr-setup-head {
  text-align: center;
  margin-bottom: 56px;
}
.ai-sdr-page .sdr-setup-section .sdr-setup-head .chip {
  margin-bottom: 16px;
}
.ai-sdr-page .sdr-setup-section .sdr-setup-sub {
  margin-top: 10px;
  color: #6b7280;
  font-size: 16px;
}
.ai-sdr-page .sdr-setup-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
  max-width: 1080px;
  margin: 0 auto;
  opacity: 0;
  transform: translateY(24px);
}
.ai-sdr-page .sdr-setup-section.in .sdr-setup-split {
  animation: sdr-setup-enter .75s cubic-bezier(.22, 1, .36, 1) .15s forwards;
}
.ai-sdr-page .sdr-setup-visual {
  border-radius: 20px;
  overflow: hidden;
  background: #f3f4f6;
  box-shadow: 0 20px 50px rgba(15, 23, 42, .08);
}
.ai-sdr-page .sdr-setup-visual-img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}
.ai-sdr-page .sdr-setup-stepper {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  min-height: 100%;
}
.ai-sdr-page .sdr-setup-stepper-list {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 420px;
}
.ai-sdr-page .sdr-setup-step-item {
  display: grid;
  grid-template-columns: 28px 52px minmax(0, 1fr);
  column-gap: 18px;
  align-items: flex-start;
  padding: 5px 0;
  min-height: 150px;
}
.ai-sdr-page .sdr-setup-step-rail {
  display: flex;
  justify-content: center;
  align-self: stretch;
  min-height: 72px;
}
.ai-sdr-page .sdr-setup-rail-seg {
  width: 3px;
  height: 100%;
  min-height: 72px;
  background: #e5e5e5;
  position: relative;
  overflow: hidden;
  border-radius:50px;
}
.ai-sdr-page .sdr-setup-rail-seg::after {
  content: "";
  position: absolute;
  inset: 0;
  /* background: #000; */
  background: linear-gradient(90deg, #F78A4D 0%, #F57EB2 35%, #B18CFF 65%, #66C1FF 100%);
  transform: scaleY(0);
  transform-origin: top center;
}
.ai-sdr-page .sdr-setup-section.is-stepping .sdr-setup-step-item:nth-child(1) .sdr-setup-rail-seg::after {
  animation: sdr-setup-seg-1 10s linear infinite;
}
.ai-sdr-page .sdr-setup-section.is-stepping .sdr-setup-step-item:nth-child(2) .sdr-setup-rail-seg::after {
  animation: sdr-setup-seg-2 10s linear infinite;
}
.ai-sdr-page .sdr-setup-section.is-stepping .sdr-setup-step-item:nth-child(3) .sdr-setup-rail-seg::after {
  animation: sdr-setup-seg-3 10s linear infinite;
}
.ai-sdr-page .sdr-setup-step-ico {
  position: relative;
  isolation: isolate;
  width: 52px;
  height: 52px;
  border-radius: 12px;
  border: 1px solid #e5e5e5;
  background: #f3f4f6;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #000;
  overflow: hidden;
}
.ai-sdr-page .sdr-setup-step-ico::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(90deg, #F78A4D 0%, #F57EB2 35%, #B18CFF 65%, #66C1FF 100%);
  opacity: 0;
  z-index: 0;
  transition: opacity .55s ease;
}
.ai-sdr-page .sdr-setup-step-ico svg {
  position: relative;
  z-index: 1;
}
.ai-sdr-page .sdr-setup-section.is-stepping .sdr-setup-step-item:nth-child(1) .sdr-setup-step-ico::before {
  animation: sdr-setup-ico-1 10s ease infinite;
}
.ai-sdr-page .sdr-setup-section.is-stepping .sdr-setup-step-item:nth-child(2) .sdr-setup-step-ico::before {
  animation: sdr-setup-ico-2 10s ease infinite;
}
.ai-sdr-page .sdr-setup-section.is-stepping .sdr-setup-step-item:nth-child(3) .sdr-setup-step-ico::before {
  animation: sdr-setup-ico-3 10s ease infinite;
}
.ai-sdr-page .sdr-setup-section.is-stepping .sdr-setup-step-item:nth-child(1) .sdr-setup-step-ico {
  animation: sdr-setup-ico-border-1 10s ease infinite;
}
.ai-sdr-page .sdr-setup-section.is-stepping .sdr-setup-step-item:nth-child(2) .sdr-setup-step-ico {
  animation: sdr-setup-ico-border-2 10s ease infinite;
}
.ai-sdr-page .sdr-setup-section.is-stepping .sdr-setup-step-item:nth-child(3) .sdr-setup-step-ico {
  animation: sdr-setup-ico-border-3 10s ease infinite;
}
.ai-sdr-page .sdr-setup-step-copy h3 {
  font-family: "IBM Plex Sans", sans-serif;
  font-size: 17px;
  font-weight: 700;
  color: #111827;
  margin: 0 0 6px;
  letter-spacing: -.02em;
  line-height: 1.35;
}
.ai-sdr-page .sdr-setup-step-copy p {
  font-size: 14px;
  color: #6b7280;
  line-height: 1.65;
  margin: 0;
}

@keyframes sdr-setup-seg-1 {
  0% { transform: scaleY(0); }
  22.22% { transform: scaleY(1); }
  77.77% { transform: scaleY(1); }
  77.78% { transform: scaleY(0); }
  100% { transform: scaleY(0); }
}
@keyframes sdr-setup-seg-2 {
  0%, 22.21% { transform: scaleY(0); }
  44.44% { transform: scaleY(1); }
  77.77% { transform: scaleY(1); }
  77.78% { transform: scaleY(0); }
  100% { transform: scaleY(0); }
}
@keyframes sdr-setup-seg-3 {
  0%, 44.43% { transform: scaleY(0); }
  66.67% { transform: scaleY(1); }
  77.77% { transform: scaleY(1); }
  77.78% { transform: scaleY(0); }
  100% { transform: scaleY(0); }
}
@keyframes sdr-setup-ico-1 {
  0%, 20% { opacity: 0; }
  22.22%, 77.77% { opacity: 1; }
  79%, 100% { opacity: 0; }
}
@keyframes sdr-setup-ico-2 {
  0%, 42% { opacity: 0; }
  44.44%, 77.77% { opacity: 1; }
  79%, 100% { opacity: 0; }
}
@keyframes sdr-setup-ico-3 {
  0%, 64% { opacity: 0; }
  66.67%, 77.77% { opacity: 1; }
  79%, 100% { opacity: 0; }
}
@keyframes sdr-setup-ico-border-1 {
  0%, 20% { border-color: #e5e5e5; color: #000; }
  22.22%, 77.77% { border-color: transparent; color: #fff; }
  79%, 100% { border-color: #e5e5e5; color: #000; }
}
@keyframes sdr-setup-ico-border-2 {
  0%, 42% { border-color: #e5e5e5; color: #000; }
  44.44%, 77.77% { border-color: transparent; color: #fff; }
  79%, 100% { border-color: #e5e5e5; color: #000; }
}
@keyframes sdr-setup-ico-border-3 {
  0%, 64% { border-color: #e5e5e5; color: #000; }
  66.67%, 77.77% { border-color: transparent; color: #fff; }
  79%, 100% { border-color: #e5e5e5; color: #000; }
}

@media (max-width: 920px) {
  .ai-sdr-page .sdr-setup-stepper-list {
    max-width: 100%;
  }
}

@media (max-width: 920px) {
  .ai-sdr-page .sdr-setup-split {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .ai-sdr-page .sdr-setup-visual {
    max-width: 520px;
    margin: 0 auto;
    width: 100%;
  }
}

/* Invoice Processing — Features cards (bento reference layout) */
.invoice-page .sdr-caps-section .sdr-caps-grid {
  gap: 20px;
}
.invoice-page .sdr-caps-section .sdr-cap-card {
  position: relative;
  background: #fff;
  border: 1px solid #f0f0f0;
  border-radius: 20px;
  padding: 28px 28px 32px;
  box-shadow: 0 4px 20px rgba(15, 23, 42, .05);
  overflow: hidden;
  transition: box-shadow .3s ease, transform .3s ease;
}
.invoice-page .sdr-caps-section .sdr-cap-card::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 3px;
  background: var(--cap-accent, #e5e7eb);
  transition: height .3s ease, opacity .3s ease;
  opacity: .75;
}
.invoice-page .sdr-caps-section .sdr-cap-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 18px;
  width: 100%;
}
.invoice-page .sdr-caps-section .sdr-cap-ico {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-bottom: 0;
  border: none;
}
.invoice-page .sdr-caps-section .sdr-cap-dots {
  width: 22px;
  height: 18px;
  flex-shrink: 0;
  background-image: radial-gradient(circle, #d1d5db 1.5px, transparent 1.5px);
  background-size: 7px 6px;
  opacity: .85;
}
.invoice-page .sdr-caps-section .sdr-cap-card h3 {
  margin: 0 0 10px;
  font-family: "IBM Plex Sans", sans-serif;
  font-size: 17px;
  font-weight: 700;
  color: #111827;
  line-height: 1.35;
  letter-spacing: -.02em;
}
.invoice-page .sdr-caps-section .sdr-cap-card p {
  margin: 0;
  font-size: 14px;
  color: #666;
  line-height: 1.55;
}
.invoice-page .sdr-caps-section .sdr-cap-card {
  opacity: 0;
  transform: translateY(28px);
}
.invoice-page .sdr-caps-section.in .sdr-cap-card {
  animation: sdr-setup-enter .65s cubic-bezier(.22, 1, .36, 1) both;
}
.invoice-page .sdr-caps-section.in .sdr-cap-card:nth-child(1) { animation-delay: .25s; }
.invoice-page .sdr-caps-section.in .sdr-cap-card:nth-child(2) { animation-delay: .4s; }
.invoice-page .sdr-caps-section.in .sdr-cap-card:nth-child(3) { animation-delay: .55s; }
.invoice-page .sdr-caps-section.in .sdr-cap-card:nth-child(4) { animation-delay: .7s; }
.invoice-page .sdr-caps-section.in .sdr-cap-card:nth-child(5) { animation-delay: .85s; }
.invoice-page .sdr-caps-section.in .sdr-cap-card:nth-child(6) { animation-delay: 1s; }
.invoice-page .sdr-caps-section .sdr-cap-card--orange {
  --cap-accent: #f97316;
  --cap-glow: rgba(249, 115, 22, .18);
}
.invoice-page .sdr-caps-section .sdr-cap-ico--orange {
  background: #fff3e6;
  color: #f97316;
}
.invoice-page .sdr-caps-section .sdr-cap-card--orange:hover {
  transform: translateY(-8px);
  box-shadow: 0 14px 36px var(--cap-glow);
}
.invoice-page .sdr-caps-section .sdr-cap-card--orange:hover::after {
  height: 4px;
  opacity: 1;
}
.invoice-page .sdr-caps-section .sdr-cap-card--purple {
  --cap-accent: #8b5cf6;
  --cap-glow: rgba(139, 92, 246, .18);
}
.invoice-page .sdr-caps-section .sdr-cap-ico--purple {
  background: #f3eeff;
  color: #8b5cf6;
}
.invoice-page .sdr-caps-section .sdr-cap-card--purple:hover {
  transform: translateY(-8px);
  box-shadow: 0 14px 36px var(--cap-glow);
}
.invoice-page .sdr-caps-section .sdr-cap-card--purple:hover::after {
  height: 4px;
  opacity: 1;
}
.invoice-page .sdr-caps-section .sdr-cap-card--blue {
  --cap-accent: #2563eb;
  --cap-glow: rgba(37, 99, 235, .18);
}
.invoice-page .sdr-caps-section .sdr-cap-ico--blue {
  background: #eff6ff;
  color: #2563eb;
}
.invoice-page .sdr-caps-section .sdr-cap-card--blue:hover {
  transform: translateY(-8px);
  box-shadow: 0 14px 36px var(--cap-glow);
}
.invoice-page .sdr-caps-section .sdr-cap-card--blue:hover::after {
  height: 4px;
  opacity: 1;
}
.invoice-page .sdr-caps-section .sdr-cap-card--green {
  --cap-accent: #22c55e;
  --cap-glow: rgba(34, 197, 94, .18);
}
.invoice-page .sdr-caps-section .sdr-cap-ico--green {
  background: #ecfdf5;
  color: #22c55e;
}
.invoice-page .sdr-caps-section .sdr-cap-card--green:hover {
  transform: translateY(-8px);
  box-shadow: 0 14px 36px var(--cap-glow);
}
.invoice-page .sdr-caps-section .sdr-cap-card--green:hover::after {
  height: 4px;
  opacity: 1;
}
.invoice-page .sdr-caps-section .sdr-cap-card--pink {
  --cap-accent: #ec4899;
  --cap-glow: rgba(236, 72, 153, .18);
}
.invoice-page .sdr-caps-section .sdr-cap-ico--pink {
  background: #fdf2f8;
  color: #ec4899;
}
.invoice-page .sdr-caps-section .sdr-cap-card--pink:hover {
  transform: translateY(-8px);
  box-shadow: 0 14px 36px var(--cap-glow);
}
.invoice-page .sdr-caps-section .sdr-cap-card--pink:hover::after {
  height: 4px;
  opacity: 1;
}
.invoice-page .sdr-caps-section .sdr-cap-card--amber {
  --cap-accent: #f59e0b;
  --cap-glow: rgba(245, 158, 11, .18);
}
.invoice-page .sdr-caps-section .sdr-cap-ico--amber {
  background: #fffbeb;
  color: #f59e0b;
}
.invoice-page .sdr-caps-section .sdr-cap-card--amber:hover {
  transform: translateY(-8px);
  box-shadow: 0 14px 36px var(--cap-glow);
}
.invoice-page .sdr-caps-section .sdr-cap-card--amber:hover::after {
  height: 4px;
  opacity: 1;
}

/* HOW IT WORKS STEPS */
.sdr-steps-section {
  background: var(--bg);
}
.sdr-steps {
  display: flex;
  align-items: center;
  gap: 8px;
  justify-content: center;
}
.sdr-step {
  flex: 1;
  max-width: 280px;
  text-align: center;
}
.sdr-step-num {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: var(--primary);
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  letter-spacing: -.01em;
  box-shadow: 0 4px 16px rgba(37,99,235,.25);
}
.sdr-step h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--ink);
  margin: 0 0 8px;
  letter-spacing: -.01em;
}
.sdr-step p {
  font-size: 13.5px;
  color: var(--muted);
  margin: 0;
  line-height: 1.6;
}
.sdr-step-arrow {
  color: #d1d5db;
  flex-shrink: 0;
  margin-bottom: 36px;
}

/* AI SDR — Simple Setup steps */
.sdr-setup-section .section-head {
  margin-bottom: 56px;
}
.sdr-setup-sub {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.6;
  margin: 10px auto 0;
}
.sdr-setup-steps {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
  max-width: 960px;
  margin: 0 auto;
}
.sdr-setup-step {
  flex: 1;
  max-width: 260px;
  text-align: center;
  opacity: 0;
  transform: translateY(28px);
}
.sdr-setup-connector {
  flex-shrink: 0;
  width: 72px;
  color: #d1d5db;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 62px;
  opacity: 0;
}
.sdr-setup-orbit {
  position: relative;
  width: 148px;
  height: 148px;
  margin: 0 auto 28px;
}
.sdr-setup-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  border-radius: 50%;
  transform: translate(-50%, -50%);
}
.sdr-setup-ring--1 { width: 148px; height: 148px; }
.sdr-setup-ring--2 { width: 118px; height: 118px; }
.sdr-setup-ring--3 { width: 88px; height: 88px; }
.sdr-setup-orbit--orange .sdr-setup-ring--1 {
  background: radial-gradient(circle, rgba(249, 115, 22, .14) 0%, rgba(249, 115, 22, .04) 65%, transparent 100%);
  border: 1px solid rgba(249, 115, 22, .12);
}
.sdr-setup-orbit--orange .sdr-setup-ring--2 {
  background: radial-gradient(circle, rgba(249, 115, 22, .1) 0%, transparent 70%);
  border: 1px solid rgba(249, 115, 22, .08);
}
.sdr-setup-orbit--orange .sdr-setup-ring--3 {
  background: radial-gradient(circle, rgba(249, 115, 22, .08) 0%, transparent 70%);
}
.sdr-setup-orbit--purple .sdr-setup-ring--1 {
  background: radial-gradient(circle, rgba(139, 92, 246, .14) 0%, rgba(139, 92, 246, .04) 65%, transparent 100%);
  border: 1px solid rgba(139, 92, 246, .12);
}
.sdr-setup-orbit--purple .sdr-setup-ring--2 {
  background: radial-gradient(circle, rgba(139, 92, 246, .1) 0%, transparent 70%);
  border: 1px solid rgba(139, 92, 246, .08);
}
.sdr-setup-orbit--purple .sdr-setup-ring--3 {
  background: radial-gradient(circle, rgba(139, 92, 246, .08) 0%, transparent 70%);
}
.sdr-setup-orbit--blue .sdr-setup-ring--1 {
  background: radial-gradient(circle, rgba(37, 99, 235, .14) 0%, rgba(37, 99, 235, .04) 65%, transparent 100%);
  border: 1px solid rgba(37, 99, 235, .12);
}
.sdr-setup-orbit--blue .sdr-setup-ring--2 {
  background: radial-gradient(circle, rgba(37, 99, 235, .1) 0%, transparent 70%);
  border: 1px solid rgba(37, 99, 235, .08);
}
.sdr-setup-orbit--blue .sdr-setup-ring--3 {
  background: radial-gradient(circle, rgba(37, 99, 235, .08) 0%, transparent 70%);
}
.sdr-setup-num {
  position: absolute;
  top: 6px;
  right: 14px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  font-size: 11px;
  font-weight: 700;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
  letter-spacing: -.01em;
  box-shadow: 0 2px 8px rgba(15, 23, 42, .12);
}
.sdr-setup-orbit--orange .sdr-setup-num { background: #f97316; }
.sdr-setup-orbit--purple .sdr-setup-num { background: #8b5cf6; }
.sdr-setup-orbit--blue .sdr-setup-num { background: #2563eb; }
.sdr-setup-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
}
.sdr-setup-orbit--orange .sdr-setup-icon { color: #f97316; }
.sdr-setup-orbit--purple .sdr-setup-icon { color: #8b5cf6; }
.sdr-setup-orbit--blue .sdr-setup-icon { color: #2563eb; }
.sdr-setup-step h3 {
  font-family: "IBM Plex Sans", sans-serif;
  font-size: 17px;
  font-weight: 600;
  color: var(--ink);
  margin: 0 0 10px;
  letter-spacing: -.02em;
}
.sdr-setup-step p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.65;
  margin: 0;
}

@keyframes sdr-setup-enter {
  from { opacity: 0; transform: translateY(28px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes sdr-setup-float {
  0%, 100% { transform: translate(-50%, -50%) translateY(0); }
  50% { transform: translate(-50%, -50%) translateY(-10px); }
}
@keyframes sdr-setup-ring-pulse {
  0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 1; }
  50% { transform: translate(-50%, -50%) scale(1.06); opacity: .75; }
}
@keyframes sdr-setup-dash-flow {
  to { stroke-dashoffset: -20; }
}

.sdr-setup-section.in .sdr-setup-step:nth-child(1) { animation: sdr-setup-enter .7s cubic-bezier(.22, 1, .36, 1) .1s forwards; }
.sdr-setup-section.in .sdr-setup-connector:nth-child(2) { animation: sdr-setup-enter .5s cubic-bezier(.22, 1, .36, 1) .35s forwards; }
.sdr-setup-section.in .sdr-setup-step:nth-child(3) { animation: sdr-setup-enter .7s cubic-bezier(.22, 1, .36, 1) .5s forwards; }
.sdr-setup-section.in .sdr-setup-connector:nth-child(4) { animation: sdr-setup-enter .5s cubic-bezier(.22, 1, .36, 1) .75s forwards; }
.sdr-setup-section.in .sdr-setup-step:nth-child(5) { animation: sdr-setup-enter .7s cubic-bezier(.22, 1, .36, 1) .9s forwards; }

.sdr-setup-section.in .sdr-setup-ring--1 { animation: sdr-setup-ring-pulse 4s ease-in-out infinite; }
.sdr-setup-section.in .sdr-setup-ring--2 { animation: sdr-setup-ring-pulse 4s ease-in-out infinite .4s; }
.sdr-setup-section.in .sdr-setup-ring--3 { animation: sdr-setup-ring-pulse 4s ease-in-out infinite .8s; }
.sdr-setup-section.in .sdr-setup-step:nth-child(1) .sdr-setup-float { animation: sdr-setup-float 4.5s ease-in-out infinite; }
.sdr-setup-section.in .sdr-setup-step:nth-child(3) .sdr-setup-float { animation: sdr-setup-float 4.5s ease-in-out infinite .6s; }
.sdr-setup-section.in .sdr-setup-step:nth-child(5) .sdr-setup-float { animation: sdr-setup-float 4.5s ease-in-out infinite 1.2s; }
.sdr-setup-section.in .sdr-setup-dash { animation: sdr-setup-dash-flow 1.2s linear infinite; }

.sdr-setup-section.reveal.in {
  opacity: 1;
  transform: none;
}

/* USE CASES GRID */
.sdr-use-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.sdr-use-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 28px;
  box-shadow: var(--shadow);
  transition: box-shadow .2s;
}
.sdr-use-card:hover {
  box-shadow: var(--shadow-lg);
}
.sdr-use-card h3 {
  font-size: 15px;
  font-weight: 700;
  color: var(--ink);
  margin: 0 0 8px;
  letter-spacing: -.01em;
}
.sdr-use-card p {
  font-size: 13.5px;
  color: var(--muted);
  margin: 0;
  line-height: 1.6;
}

/* AI SDR — Use Cases timeline layout */
.sdr-use-section .section-head {
  margin-bottom: 48px;
}
.sdr-use-title {
  color: #0f1115;
}
.sdr-use-gradient {
  background: linear-gradient(90deg, #8b5cf6 0%, #6366f1 50%, #2563eb 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.sdr-use-flow {
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
}
.sdr-use-track {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 80px;
  pointer-events: none;
  z-index: 0;
}
.sdr-use-track-svg {
  width: 100%;
  height: 100%;
  display: block;
}
.sdr-use-track-dot {
  position: absolute;
  top: 50%;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  box-shadow: 0 0 0 3px #fff;
}
.sdr-use-track-dot--orange {
  left: 29.5%;
  background: #f97316;
}
.sdr-use-track-dot--purple {
  left: 50%;
  background: #8b5cf6;
}
.sdr-use-track-dot--blue {
  left: 70.5%;
  background: #2563eb;
}
.sdr-use-section .sdr-use-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.sdr-use-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  opacity: 0;
  transform: translateY(28px);
}
.sdr-use-icon-wrap {
  position: relative;
  width: 80px;
  height: 80px;
  margin-bottom: 22px;
  flex-shrink: 0;
}
.sdr-use-glow {
  position: absolute;
  inset: -18px;
  border-radius: 50%;
  opacity: .55;
  filter: blur(2px);
}
.sdr-use-step--orange .sdr-use-glow {
  background: radial-gradient(circle, rgba(249, 115, 22, .35) 0%, rgba(249, 115, 22, .08) 55%, transparent 72%);
}
.sdr-use-step--purple .sdr-use-glow {
  background: radial-gradient(circle, rgba(139, 92, 246, .35) 0%, rgba(139, 92, 246, .08) 55%, transparent 72%);
}
.sdr-use-step--blue .sdr-use-glow {
  background: radial-gradient(circle, rgba(37, 99, 235, .35) 0%, rgba(37, 99, 235, .08) 55%, transparent 72%);
}
.sdr-use-step--green .sdr-use-glow {
  background: radial-gradient(circle, rgba(16, 185, 129, .35) 0%, rgba(16, 185, 129, .08) 55%, transparent 72%);
}
.sdr-use-icon {
  position: relative;
  z-index: 1;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid #eef0f3;
  box-shadow: 0 4px 20px rgba(15, 23, 42, .07);
  display: flex;
  align-items: center;
  justify-content: center;
}
.sdr-use-step--orange .sdr-use-icon { color: #f97316; }
.sdr-use-step--purple .sdr-use-icon { color: #8b5cf6; }
.sdr-use-step--blue .sdr-use-icon { color: #2563eb; }
.sdr-use-step--green .sdr-use-icon { color: #10b981; }
.sdr-use-icon-badge {
  position: absolute;
  right: -2px;
  bottom: 4px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #fff;
  border: 1.5px solid #eef0f3;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(15, 23, 42, .08);
}
.sdr-use-icon-badge--orange { color: #f97316; }
.sdr-use-icon-badge--purple { color: #8b5cf6; }
.sdr-use-icon-badge--green { color: #10b981; }
.sdr-use-step h3 {
  font-family: "IBM Plex Sans", sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #0f1115;
  margin: 0 0 14px;
  letter-spacing: -.02em;
  line-height: 1.3;
}
.sdr-use-panel {
  width: 100%;
  border-radius: 16px;
  padding: 18px 16px;
  text-align: left;
}
.sdr-use-step--orange .sdr-use-panel { background: #fff7ed; }
.sdr-use-step--purple .sdr-use-panel { background: #f5f3ff; }
.sdr-use-step--blue .sdr-use-panel { background: #eff6ff; }
.sdr-use-step--green .sdr-use-panel { background: #ecfdf5; }
.sdr-use-panel ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.sdr-use-panel li {
  position: relative;
  padding-left: 28px;
  font-size: 13px;
  color: #4b5563;
  line-height: 1.55;
}
.sdr-use-panel li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 1px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 10px;
}
.sdr-use-step--orange .sdr-use-panel li::before { background-color: #f97316; }
.sdr-use-step--purple .sdr-use-panel li::before { background-color: #8b5cf6; }
.sdr-use-step--blue .sdr-use-panel li::before { background-color: #2563eb; }
.sdr-use-step--green .sdr-use-panel li::before { background-color: #10b981; }

.sdr-use-section.in .sdr-use-step {
  animation: sdr-setup-enter .7s cubic-bezier(.22, 1, .36, 1) forwards;
}
.sdr-use-section.in .sdr-use-step:nth-child(1) { animation-delay: .1s; }
.sdr-use-section.in .sdr-use-step:nth-child(2) { animation-delay: .25s; }
.sdr-use-section.in .sdr-use-step:nth-child(3) { animation-delay: .4s; }
.sdr-use-section.in .sdr-use-step:nth-child(4) { animation-delay: .55s; }
.sdr-use-section.reveal.in {
  opacity: 1;
  transform: none;
}

/* AI SDR — Use Cases (dark feature cards reference) */
.solution-page .sdr-use-section {
  background-color: #0a0a0f !important;
      background: linear-gradient(135deg, rgba(255, 138, 61, 0.18), rgba(255, 95, 162, 0.18) 50%, rgba(110, 123, 255, 0.22));
  padding: 88px 0;
}
.solution-page .sdr-use-section .section-head {
  margin-bottom: 52px;
  text-align: center;
}
.solution-page .sdr-use-section .chip {
  background: rgba(139, 92, 246, .08);
  border: 1px solid #fff;
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: capitalize;
}
.solution-page .sdr-use-section .chip-dot {
  background: #a78bfa;
}
.solution-page .sdr-use-title {
  color: #fff;
  font-size: clamp(1.75rem, 3vw, 2.35rem);
}
.solution-page .sdr-use-gradient {
  background: linear-gradient(90deg, #f472b6 0%, #c084fc 45%, #38bdf8 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.solution-page .sdr-use-section .sdr-use-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  max-width: 980px;
  margin: 0 auto;
  position: static;
}
.solution-page .sdr-use-step {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 20px;
  text-align: left;
  padding: 28px 26px;
  border-radius: 20px;
  background: rgba(255, 255, 255, .04);
  border: 1px solid #cecece61;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(12px);
  filter: saturate(0.7);
  opacity: 0;
  transform: scale(0.35);
  will-change: transform, opacity;
  transition: border-color .35s ease, filter .4s ease, box-shadow .35s ease, transform .35s ease;
}
.solution-page .sdr-use-step:nth-child(1) { transform-origin: 100% 100%; }
.solution-page .sdr-use-step:nth-child(2) { transform-origin: 0% 100%; }
.solution-page .sdr-use-step:nth-child(3) { transform-origin: 100% 0%; }
.solution-page .sdr-use-step:nth-child(4) { transform-origin: 0% 0%; }
.solution-page .sdr-use-section.in .sdr-use-step {
  animation: sdr-caps-emerge 1.55s cubic-bezier(.22, 1, .36, 1) forwards;
}
.solution-page .sdr-use-section.in .sdr-use-step:nth-child(1) { animation-delay: .1s; }
.solution-page .sdr-use-section.in .sdr-use-step:nth-child(2) { animation-delay: .22s; }
.solution-page .sdr-use-section.in .sdr-use-step:nth-child(3) { animation-delay: .34s; }
.solution-page .sdr-use-section.in .sdr-use-step:nth-child(4) { animation-delay: .46s; }
.solution-page .sdr-use-step:hover {
  border-color: rgba(255, 255, 255, .28);
  transform: translateY(-3px) scale(1);
  filter: saturate(1);
  box-shadow: 0 14px 36px rgba(0, 0, 0, .22);
}
.solution-page .sdr-use-step::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(
    105deg,
    transparent 38%,
    rgba(255, 255, 255, .02) 44%,
    rgba(255, 255, 255, .1) 50%,
    rgba(255, 255, 255, .02) 56%,
    transparent 62%
  );
  transform: translateX(-130%);
  pointer-events: none;
  z-index: 2;
  opacity: 0;
}
.solution-page .sdr-use-step:hover::after {
  opacity: 1;
  animation: sdr-use-shine 1.25s ease;
}
.solution-page .sdr-use-step::before {
  content: "";
  position: absolute;
  top: -30px;
  left: -30px;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  filter: blur(48px);
  opacity: .45;
  pointer-events: none;
  z-index: 0;
  transition: opacity .35s ease;
}
.solution-page .sdr-use-step:hover::before {
  opacity: .65;
}


@keyframes sdr-use-shine {
  from { transform: translateX(-130%); }
  to { transform: translateX(130%); }
}

.solution-page .sdr-use-icon-wrap {
  width: 72px;
  height: 72px;
  margin-bottom: 0;
  flex-shrink: 0;
  position: relative;
  z-index: 3;
}
.solution-page .sdr-use-glow {
  inset: -12px;
  opacity: .7;
  filter: blur(8px);
}
.solution-page .sdr-use-step--orange .sdr-use-glow {
  background: radial-gradient(circle, rgba(249, 115, 22, .5) 0%, rgba(249, 115, 22, .1) 55%, transparent 72%);
}
.solution-page .sdr-use-step--purple .sdr-use-glow {
  background: radial-gradient(circle, rgba(236, 72, 153, .5) 0%, rgba(236, 72, 153, .1) 55%, transparent 72%);
}
.solution-page .sdr-use-step--blue .sdr-use-glow {
  background: radial-gradient(circle, rgba(59, 130, 246, .5) 0%, rgba(59, 130, 246, .1) 55%, transparent 72%);
}
.solution-page .sdr-use-step--green .sdr-use-glow {
  background: radial-gradient(circle, rgba(34, 197, 94, .5) 0%, rgba(34, 197, 94, .1) 55%, transparent 72%);
}
.solution-page .sdr-use-icon {
  width: 72px;
  height: 72px;
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .12);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .08), 0 8px 24px rgba(0, 0, 0, .25);
}
.solution-page .sdr-use-step--orange .sdr-use-icon { color: #fb923c; }
.solution-page .sdr-use-step--purple .sdr-use-icon { color: #f472b6; }
.solution-page .sdr-use-step--blue .sdr-use-icon { color: #60a5fa; }
.solution-page .sdr-use-step--green .sdr-use-icon { color: #4ade80; }
.solution-page .sdr-use-body {
  position: relative;
  z-index: 3;
  flex: 1;
  min-width: 0;
  padding-top: 4px;
}
.solution-page .sdr-use-body h3 {
  font-family: "IBM Plex Sans", sans-serif;
  font-size: 17px;
  font-weight: 700;
  color: #fff;
  margin: 0 0 10px;
  letter-spacing: -.02em;
  line-height: 1.3;
}
.solution-page .sdr-use-body p {
  font-size: 14px;
  color: #9ca3af;
  line-height: 1.65;
  margin: 0;
}

@media (max-width: 960px) {
  .sdr-use-section .sdr-use-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 20px;
  }
  .sdr-use-track { display: none; }
  .sdr-use-icon-wrap { margin-bottom: 18px; }
}
@media (max-width: 560px) {
  .sdr-use-section .sdr-use-grid {
    grid-template-columns: 1fr;
    max-width: 360px;
    margin: 0 auto;
  }
  .solution-page .sdr-use-section .sdr-use-grid {
    max-width: 480px;
  }
  .solution-page .sdr-use-step {
    padding: 24px 22px;
  }
  .solution-page .sdr-use-step:nth-child(1) { transform-origin: 50% 100%; }
  .solution-page .sdr-use-step:nth-child(2) { transform-origin: 50% 0%; }
  .solution-page .sdr-use-step:nth-child(3) { transform-origin: 50% 100%; }
  .solution-page .sdr-use-step:nth-child(4) { transform-origin: 50% 0%; }
}

/* AI SDR — Benefits (reference split + vertical marquee) */
.solution-page .sdr-why-section {
  background: #faf9f7;
  padding: 88px 0;
}
.solution-page .sdr-why-section::before,
.solution-page .sdr-why-section::after {
  display: none;
}
.solution-page .sdr-why-split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.15fr);
  gap: 48px;
  align-items: flex-start;
}
.solution-page .sdr-why-intro {
  max-width: 420px;
}
.solution-page .sdr-why-intro .chip {
  margin-bottom: 20px;
}
.solution-page .sdr-why-intro .sdr-why-title {
  font-size: clamp(1.75rem, 3vw, 2.35rem);
  line-height: 1.2;
  margin: 0 0 20px;
  text-align: left;
  color: #0f1115;
}
.solution-page .sdr-why-intro-desc {
  font-size: 16px;
  color: #6b7280;
  line-height: 1.75;
  margin: 0;
  max-width: 380px;
}
.solution-page .sdr-why-marquee-wrap {
  position: relative;
  min-height: 520px;
}
.solution-page .sdr-why-marquee-rings {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.solution-page .sdr-why-marquee-rings::before,
.solution-page .sdr-why-marquee-rings::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(139, 92, 246, .1);
}
.solution-page .sdr-why-marquee-rings::before {
  width: 320px;
  height: 320px;
  top: 50%;
  left: 55%;
  transform: translate(-50%, -50%);
}
.solution-page .sdr-why-marquee-rings::after {
  width: 460px;
  height: 460px;
  top: 48%;
  left: 58%;
  transform: translate(-50%, -50%);
  border-color: rgba(99, 102, 241, .07);
}
.solution-page .sdr-why-marquee {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  height: 520px;
  -webkit-mask-image: linear-gradient(to bottom, transparent 0%, #000 14%, #000 86%, transparent 100%);
  mask-image: linear-gradient(to bottom, transparent 0%, #000 14%, #000 86%, transparent 100%);
}
.solution-page .sdr-why-marquee-col {
  overflow: hidden;
  height: 100%;
}
.solution-page .sdr-why-marquee-track {
  display: flex;
  flex-direction: column;
  gap: 14px;
  will-change: transform;
}
.solution-page .sdr-why-marquee-col--down .sdr-why-marquee-track {
  animation: sdr-why-marquee-down 52s linear infinite;
}
.solution-page .sdr-why-marquee-col--up .sdr-why-marquee-track {
  animation: sdr-why-marquee-up 52s linear infinite;
  animation-delay: -26s;
}
.solution-page .sdr-why-marquee .sdr-why-card {
  opacity: 1;
  transform: none;
  max-width: none;
  width: 100%;
  flex-shrink: 0;
  border-radius: 18px;
  padding: 16px 18px;
  animation: none !important;
}
.solution-page .sdr-why-marquee .sdr-why-card-ico::after {
  display: none;
}
.solution-page .sdr-why-marquee .sdr-why-card-stat {
  font-size: 15px;
  color: #0f1115;
}
.solution-page .sdr-why-marquee .sdr-why-card-stat[class*="sdr-why-stat--"] {
  color: #0f1115;
}
.solution-page .sdr-why-marquee .sdr-why-card-ico {
  background: #f3f4f6;
  color: #0f1115;
}
.solution-page .sdr-why-marquee .sdr-why-card-ico[class*="sdr-why-card-ico--"] {
  background: #f3f4f6;
  color: #0f1115;
}
.solution-page .sdr-why-marquee .sdr-why-card p {
  font-size: 13px;
  line-height: 1.5;
}

@keyframes sdr-why-marquee-down {
  from { transform: translateY(-50%); }
  to { transform: translateY(0); }
}
@keyframes sdr-why-marquee-up {
  from { transform: translateY(0); }
  to { transform: translateY(-50%); }
}

.solution-page .sdr-why-intro > * {
  opacity: 0;
  transform: translateY(28px);
}
.solution-page .sdr-why-section.in .sdr-why-intro > * {
  animation: sdr-setup-enter .7s cubic-bezier(.22, 1, .36, 1) forwards;
}
.solution-page .sdr-why-section.in .sdr-why-intro > *:nth-child(1) { animation-delay: .08s; }
.solution-page .sdr-why-section.in .sdr-why-intro > *:nth-child(2) { animation-delay: .18s; }
.solution-page .sdr-why-section.in .sdr-why-intro > *:nth-child(3) { animation-delay: .28s; }
.solution-page .sdr-why-section.in .sdr-why-marquee .sdr-why-card {
  animation: none !important;
  opacity: 1;
  transform: none;
}

@media (max-width: 960px) {
  .solution-page .sdr-why-split {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .solution-page .sdr-why-intro {
    max-width: 100%;
    text-align: center;
  }
  .solution-page .sdr-why-intro .sdr-why-title {
    text-align: center;
  }
  .solution-page .sdr-why-intro-desc {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
  }
  .solution-page .sdr-why-marquee-wrap {
    min-height: 460px;
  }
  .solution-page .sdr-why-marquee {
    height: 460px;
  }
}
@media (max-width: 560px) {
  .solution-page .sdr-why-marquee {
    grid-template-columns: 1fr;
    height: 400px;
  }
  .solution-page .sdr-why-marquee-col--up {
    display: none;
  }
  .solution-page .sdr-why-marquee-wrap {
    min-height: 400px;
  }
}

/* BENEFITS */
.sdr-benefits {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 48px;
  max-width: 820px;
  margin: 0 auto;
}
.sdr-benefit-col {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.sdr-benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
  color: var(--ink);
  line-height: 1.55;
}
.sdr-benefit-dot {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--primary);
  flex-shrink: 0;
  margin-top: 1px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.sdr-benefit-dot::after {
  content: '';
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #fff;
}

/* AI SDR — Why Choose hub layout */
.sdr-why-section {
  position: relative;
  overflow: hidden;
}
.sdr-why-section::before {
  content: '';
  position: absolute;
  top: -120px;
  left: -80px;
  width: 360px;
  height: 360px;
  background: radial-gradient(circle, rgba(139, 92, 246, .08) 0%, transparent 70%);
  pointer-events: none;
  animation: sdr-why-ambient-drift 18s ease-in-out infinite;
}
.sdr-why-section::after {
  content: '';
  position: absolute;
  top: -80px;
  right: -60px;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(236, 72, 153, .06) 0%, transparent 70%);
  pointer-events: none;
  animation: sdr-why-ambient-drift 22s ease-in-out infinite reverse;
}
.sdr-why-title {
  color: #0f1115;
}
.sdr-why-gradient {
  background: linear-gradient(90deg, #8b5cf6 0%, #6366f1 50%, #2563eb 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.sdr-why-hub {
  position: relative;
  display: grid;
  grid-template-columns: 280px 240px 280px;
  justify-content: center;
  column-gap: 72px;
  row-gap: 0;
  align-items: center;
  max-width: 944px;
  margin: 0 auto 28px;
  min-height: 560px;
  z-index: 1;
}
.sdr-why-svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  overflow: visible;
}
.sdr-why-line {
  fill: none;
  stroke: #d1d5db;
  stroke-width: 1.5;
  stroke-dasharray: 5 6;
  stroke-linecap: round;
  stroke-linejoin: round;
  animation: sdr-why-line-march 1.4s linear infinite;
}
.sdr-why-line-flow {
  fill: none;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 6 94;
  opacity: 0;
  filter: drop-shadow(0 0 3px currentColor);
  animation: sdr-why-flow-pulse 3.2s ease-in-out infinite;
}
.sdr-why-flow--orange { stroke: #f97316; color: #f97316; animation-delay: 0s; }
.sdr-why-flow--purple { stroke: #8b5cf6; color: #8b5cf6; animation-delay: .4s; }
.sdr-why-flow--blue { stroke: #2563eb; color: #2563eb; animation-delay: .8s; }
.sdr-why-flow--red { stroke: #ef4444; color: #ef4444; animation-delay: 1.2s; }
.sdr-why-flow--green { stroke: #10b981; color: #10b981; animation-delay: .6s; }
.sdr-why-flow--violet { stroke: #7c3aed; color: #7c3aed; animation-delay: 1s; }
.sdr-why-flow--indigo { stroke: #6366f1; color: #6366f1; animation-delay: 1.4s; }
.sdr-why-flow--reverse {
  animation-name: sdr-why-flow-pulse-rev;
}
.sdr-why-orbit-spin {
  transform-origin: 472px 280px;
  animation: sdr-why-orbit-spin 48s linear infinite;
}
.sdr-why-orbit-sweep {
  opacity: .85;
}
.sdr-why-cards {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 480px;
  padding: 28px 0 32px;
  position: relative;
  z-index: 2;
}
.sdr-why-cards--left {
  align-items: flex-end;
}
.sdr-why-cards--right {
  align-items: flex-start;
}
.sdr-why-card {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  max-width: 278px;
  background: #fff;
  border: 1px solid #eef0f3;
  border-radius: 20px;
  padding: 14px 16px;
  box-shadow: 0 2px 6px rgba(15, 23, 42, .04), 0 8px 20px rgba(15, 23, 42, .05);
  transition: box-shadow .25s, transform .25s;
  opacity: 0;
  transform: translateY(28px);
}
.sdr-why-card:hover {
  box-shadow: 0 6px 20px rgba(15, 23, 42, .08);
}
.sdr-why-card-ico {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
}
.sdr-why-card-ico::after {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  border: 1.5px solid currentColor;
  opacity: 0;
  animation: sdr-why-ico-ring 3.6s ease-out infinite;
}
.sdr-why-cards--left .sdr-why-card:nth-child(1) .sdr-why-card-ico::after { animation-delay: 0s; }
.sdr-why-cards--left .sdr-why-card:nth-child(2) .sdr-why-card-ico::after { animation-delay: .45s; }
.sdr-why-cards--left .sdr-why-card:nth-child(3) .sdr-why-card-ico::after { animation-delay: .9s; }
.sdr-why-cards--left .sdr-why-card:nth-child(4) .sdr-why-card-ico::after { animation-delay: 1.35s; }
.sdr-why-cards--right .sdr-why-card:nth-child(1) .sdr-why-card-ico::after { animation-delay: .25s; }
.sdr-why-cards--right .sdr-why-card:nth-child(2) .sdr-why-card-ico::after { animation-delay: .7s; }
.sdr-why-cards--right .sdr-why-card:nth-child(3) .sdr-why-card-ico::after { animation-delay: 1.15s; }
.sdr-why-cards--right .sdr-why-card:nth-child(4) .sdr-why-card-ico::after { animation-delay: 1.6s; }
.sdr-why-card-ico--orange { background: #fff7ed; color: #f97316; }
.sdr-why-card-ico--purple { background: #f5f3ff; color: #8b5cf6; }
.sdr-why-card-ico--blue { background: #eff6ff; color: #2563eb; }
.sdr-why-card-ico--red { background: #fef2f2; color: #ef4444; }
.sdr-why-card-ico--green { background: #ecfdf5; color: #10b981; }
.sdr-why-card-ico--violet { background: #ede9fe; color: #7c3aed; }
.sdr-why-card-ico--indigo { background: #eef2ff; color: #6366f1; }
.sdr-why-card-body {
  min-width: 0;
  text-align: left;
}
.sdr-why-card-stat {
  display: block;
  font-family: "IBM Plex Sans", sans-serif;
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 3px;
  letter-spacing: -.02em;
}
.sdr-why-card p {
  font-size: 12.5px;
  color: #6b7280;
  line-height: 1.5;
  margin: 0;
}
.sdr-why-stat--orange { color: #f97316; }
.sdr-why-stat--purple { color: #8b5cf6; }
.sdr-why-stat--blue { color: #2563eb; }
.sdr-why-stat--red { color: #ef4444; }
.sdr-why-stat--green { color: #10b981; }
.sdr-why-stat--violet { color: #7c3aed; }
.sdr-why-stat--indigo { color: #6366f1; }
.sdr-why-center {
  position: relative;
  z-index: 2;
  width: 196px;
  height: 196px;
  margin: 0 auto;
  flex-shrink: 0;
  opacity: 0;
  transform: translateY(28px);
}
.sdr-why-center-glow {
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(139, 92, 246, .12) 0%, rgba(37, 99, 235, .08) 50%, transparent 72%);
  pointer-events: none;
  animation: sdr-why-glow-breathe 5s ease-in-out infinite;
}
.sdr-why-center-ring {
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  background: conic-gradient(from 0deg, transparent 0deg, #a78bfa 60deg, #60a5fa 140deg, #f472b6 220deg, #818cf8 300deg, transparent 360deg);
  opacity: .55;
  animation: sdr-why-ring-spin 6s linear infinite;
  -webkit-mask: radial-gradient(farthest-side, transparent calc(100% - 2.5px), #fff calc(100% - 1px));
  mask: radial-gradient(farthest-side, transparent calc(100% - 2.5px), #fff calc(100% - 1px));
  pointer-events: none;
}
.sdr-why-satellites {
  position: absolute;
  inset: -28px;
  pointer-events: none;
  animation: sdr-why-sat-orbit 14s linear infinite;
}
.sdr-why-sat {
  position: absolute;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  top: 50%;
  left: 50%;
  margin: -2.5px 0 0 -2.5px;
  box-shadow: 0 0 8px currentColor;
}
.sdr-why-sat--1 {
  color: #8b5cf6;
  background: #8b5cf6;
  transform: rotate(0deg) translateX(118px);
}
.sdr-why-sat--2 {
  color: #2563eb;
  background: #2563eb;
  transform: rotate(120deg) translateX(118px);
}
.sdr-why-sat--3 {
  color: #ec4899;
  background: #ec4899;
  transform: rotate(240deg) translateX(118px);
}
.sdr-why-center-inner {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 4px 24px rgba(15, 23, 42, .07);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 26px 20px;
}
.sdr-why-center-inner::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  padding: 2px;
  background: linear-gradient(135deg, rgba(167, 139, 250, .55), rgba(96, 165, 250, .55), rgba(244, 114, 182, .4));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}
.sdr-why-center-ico {
  color: #2563eb;
  margin-bottom: 8px;
  animation: sdr-why-sparkle 4s ease-in-out infinite;
}
.sdr-why-center-inner h3 {
  font-family: "IBM Plex Sans", sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: #0f1115;
  margin: 0 0 6px;
  letter-spacing: -.02em;
}
.sdr-why-center-inner p {
  font-size: 11.5px;
  color: #6b7280;
  line-height: 1.5;
  margin: 0;
}
.sdr-why-stats {
  display: flex;
  align-items: stretch;
  max-width: 1000px;
  margin: 0 auto;
  background: #fff;
  border: 1px solid #eef0f3;
  border-radius: 16px;
  box-shadow: 0 2px 8px rgba(15, 23, 42, .04);
  overflow: hidden;
  opacity: 0;
  position: relative;
  z-index: 1;
}
.sdr-why-stat-item {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 22px 24px;
}
.sdr-why-stat-divider {
  width: 1px;
  background: #eef0f3;
  flex-shrink: 0;
}
.sdr-why-stat-ico {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.sdr-why-stat-ico--red { background: #fef2f2; color: #ef4444; }
.sdr-why-stat-ico--orange { background: #fff7ed; color: #f97316; }
.sdr-why-stat-ico--green { background: #ecfdf5; color: #10b981; }
.sdr-why-stat-ico--purple { background: #f5f3ff; color: #8b5cf6; }
.sdr-why-stat-num {
  display: block;
  font-family: "IBM Plex Sans", sans-serif;
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 3px;
  letter-spacing: -.02em;
}
.sdr-why-stat-item p {
  font-size: 12.5px;
  color: #6b7280;
  line-height: 1.45;
  margin: 0;
}
.sdr-why-stats--two {
  max-width: 680px;
}
@keyframes sdr-why-ambient-drift {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(24px, -18px) scale(1.06); }
  66% { transform: translate(-16px, 12px) scale(.96); }
}
@keyframes sdr-why-orbit-spin {
  to { transform: rotate(360deg); }
}
@keyframes sdr-why-line-march {
  to { stroke-dashoffset: -22; }
}
@keyframes sdr-why-flow-pulse {
  0% { stroke-dashoffset: 100; opacity: 0; }
  8% { opacity: .95; }
  92% { opacity: .95; }
  100% { stroke-dashoffset: 0; opacity: 0; }
}
@keyframes sdr-why-flow-pulse-rev {
  0% { stroke-dashoffset: -100; opacity: 0; }
  8% { opacity: .95; }
  92% { opacity: .95; }
  100% { stroke-dashoffset: 0; opacity: 0; }
}
@keyframes sdr-why-glow-breathe {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.12); opacity: .7; }
}
@keyframes sdr-why-ring-spin {
  to { transform: rotate(360deg); }
}
@keyframes sdr-why-sat-orbit {
  to { transform: rotate(360deg); }
}
@keyframes sdr-why-sparkle {
  0%, 100% { transform: scale(1) rotate(0deg); filter: drop-shadow(0 0 0 transparent); }
  50% { transform: scale(1.08) rotate(8deg); filter: drop-shadow(0 0 6px rgba(37, 99, 235, .35)); }
}
@keyframes sdr-why-ico-ring {
  0% { transform: scale(.85); opacity: .6; }
  100% { transform: scale(1.35); opacity: 0; }
}
@keyframes sdr-why-enter {
  from { opacity: 0; }
  to { opacity: 1; }
}
@keyframes sdr-why-card-live {
  0%, 100% { transform: translate(0, 0); }
  25% { transform: translate(var(--why-drift-x, 0), -3px); }
  75% { transform: translate(calc(var(--why-drift-x, 0) * -.5), -1px); }
}
@keyframes sdr-why-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}
.sdr-why-float {
  animation: sdr-why-float 4s ease-in-out infinite;
}
.sdr-why-cards--left .sdr-why-card { --why-drift-x: 3px; }
.sdr-why-cards--right .sdr-why-card { --why-drift-x: -3px; }
.sdr-why-section.in .sdr-why-card {
  animation: sdr-setup-enter .7s cubic-bezier(.22, 1, .36, 1) forwards;
}
.sdr-why-section.in .sdr-why-cards--left .sdr-why-card:nth-child(1) { animation-delay: .15s; }
.sdr-why-section.in .sdr-why-cards--left .sdr-why-card:nth-child(2) { animation-delay: .25s; }
.sdr-why-section.in .sdr-why-cards--left .sdr-why-card:nth-child(3) { animation-delay: .35s; }
.sdr-why-section.in .sdr-why-cards--left .sdr-why-card:nth-child(4) { animation-delay: .45s; }
.sdr-why-section.in .sdr-why-center { animation: sdr-setup-enter .75s cubic-bezier(.22, 1, .36, 1) .1s forwards; }
.sdr-why-section.in .sdr-why-cards--right .sdr-why-card:nth-child(1) { animation-delay: .25s; }
.sdr-why-section.in .sdr-why-cards--right .sdr-why-card:nth-child(2) { animation-delay: .35s; }
.sdr-why-section.in .sdr-why-cards--right .sdr-why-card:nth-child(3) { animation-delay: .45s; }
.sdr-why-section.in .sdr-why-cards--right .sdr-why-card:nth-child(4) { animation-delay: .55s; }
.sdr-why-section.reveal.in {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  .btn:hover::before,
  .why-learn-btn:hover::before {
    animation: none;
    opacity: 0;
  }
  .sdr-why-section::before,
  .sdr-why-section::after,
  .sdr-why-orbit-spin,
  .sdr-why-line,
  .sdr-why-line-flow,
  .sdr-why-center-glow,
  .sdr-why-center-ring,
  .sdr-why-satellites,
  .sdr-why-center-ico,
  .sdr-why-card-ico::after,
  .sdr-why-section.in .sdr-why-card,
  .solution-page .sdr-why-marquee-track {
    animation: none;
  }
  .solution-page .sdr-why-marquee-col--up .sdr-why-marquee-track {
    transform: translateY(-25%);
  }
  .sdr-why-line-flow { opacity: 0; }
}

@media (max-width: 860px) {
  .sdr-caps-grid { grid-template-columns: 1fr 1fr }
  .sdr-steps { flex-direction: column; gap: 0 }
  .sdr-step { max-width: 360px; margin-bottom: 24px }
  .sdr-step-arrow { transform: rotate(90deg); margin: 0 0 16px }
  .sdr-benefits { grid-template-columns: 1fr }
  .sdr-why-hub {
    grid-template-columns: 1fr;
    column-gap: 0;
    gap: 24px;
    min-height: auto;
    max-width: 360px;
  }
  .sdr-why-svg { display: none; }
  .sdr-why-cards--left,
  .sdr-why-cards--right { align-items: center; }
  .sdr-why-card { max-width: 360px; }
  .sdr-why-center {
    order: -1;
    margin: 0 auto;
  }
  .sdr-why-stats {
    flex-direction: column;
  }
  .sdr-why-stat-divider {
    width: 100%;
    height: 1px;
  }
  .sdr-hero-stage { min-height: 360px }
  .sdr-hero-icon { width: 48px; height: 48px }
  .sdr-hero-icon svg { width: 20px; height: 20px }
  .sdr-hero-icon--phone { left: 0; top: 14% }
  .sdr-hero-icon--email { left: 2%; bottom: 18% }
  .sdr-hero-icon--linkedin { right: 0; top: 14% }
  .sdr-hero-icon--whatsapp { right: 2%; bottom: 18% }
  .sdr-setup-steps {
    flex-direction: column;
    align-items: center;
    gap: 8px;
  }
  .sdr-setup-step { max-width: 320px; }
  .sdr-setup-connector {
    padding-top: 0;
    transform: rotate(90deg);
    width: 48px;
    height: 48px;
  }
  .chatbot-page .sdr-setup-steps--flow {
    flex-direction: column;
    gap: 28px;
    align-items: center;
  }
  .chatbot-page .sdr-setup-steps--flow .sdr-setup-step {
    width: 100%;
    max-width: 360px;
    padding: 0;
  }
  .chatbot-page .sdr-setup-shape,
  .chatbot-page .sdr-setup-shape--1,
  .chatbot-page .sdr-setup-shape--2,
  .chatbot-page .sdr-setup-shape--3 {
    clip-path: none;
    margin-left: 0;
    border-radius: 18px;
    max-width: 360px;
  }
}
@media (max-width: 560px) {
  .sdr-hero { padding: 90px 0 60px }
  .sdr-hero-orbit,
  .sdr-hero-icon { display: none }
  .sdr-hero-stage { min-height: auto }
  .sdr-caps-grid { grid-template-columns: 1fr }
  .sdr-use-grid { grid-template-columns: 1fr }
}

/* AI SDR — page load + scroll animations (setup-style) */
.sdr-page .reveal,
.solution-page .reveal {
  opacity: 1;
  transform: none;
  transition: none;
}
.sdr-page .sdr-hero.reveal,
.solution-page .sdr-hero.reveal,
.sdr-page .sdr-caps-section.reveal.in,
.solution-page .sdr-caps-section.reveal.in,
.sdr-page .sdr-setup-section.reveal.in,
.solution-page .sdr-setup-section.reveal.in,
.sdr-page .sdr-use-section.reveal.in,
.solution-page .sdr-use-section.reveal.in,
.sdr-page .sdr-why-section.reveal.in,
.solution-page .sdr-why-section.reveal.in,
.sdr-page .cta-section.reveal.in,
.solution-page .cta-section.reveal.in {
  opacity: 1;
  transform: none;
  transition: none;
}

.sdr-page .sdr-hero .sdr-hero-inner > * {
  opacity: 0;
  transform: translateY(28px);
}
.sdr-page .sdr-hero.in .sdr-hero-inner > * {
  animation: sdr-setup-enter .75s cubic-bezier(.22, 1, .36, 1) forwards;
}
.sdr-page .sdr-hero.in .sdr-hero-inner .chip { animation-delay: .08s; }
.sdr-page .sdr-hero.in .sdr-hero-inner .sdr-hero-h1 { animation-delay: .2s; }
.sdr-page .sdr-hero.in .sdr-hero-inner .sdr-hero-sub { animation-delay: .32s; }
.sdr-page .sdr-hero.in .sdr-hero-inner .sdr-hero-btns { animation-delay: .44s; }
.sdr-page .sdr-hero-icon { opacity: 0; transform: translateY(28px); }
.sdr-page .sdr-hero.in .sdr-hero-icon {
  animation: sdr-setup-enter .8s cubic-bezier(.22, 1, .36, 1) forwards;
}
.sdr-page .sdr-hero.in .sdr-hero-icon--phone { animation-delay: .3s; }
.sdr-page .sdr-hero.in .sdr-hero-icon--email { animation-delay: .4s; }
.sdr-page .sdr-hero.in .sdr-hero-icon--linkedin { animation-delay: .35s; }
.sdr-page .sdr-hero.in .sdr-hero-icon--whatsapp { animation-delay: .45s; }

.sdr-page .sdr-caps-section .section-head > *,
.sdr-page .sdr-setup-section .section-head > *,
.sdr-page .sdr-use-section .section-head > *,
.sdr-page .sdr-why-section .section-head > * {
  opacity: 0;
  transform: translateY(28px);
}
.sdr-page .sdr-caps-section.in .section-head > *,
.sdr-page .sdr-setup-section.in .section-head > *,
.sdr-page .sdr-use-section.in .section-head > *,
.sdr-page .sdr-why-section.in .section-head > * {
  animation: sdr-setup-enter .7s cubic-bezier(.22, 1, .36, 1) forwards;
}
.sdr-page .reveal.in .section-head > *:nth-child(1) { animation-delay: .08s; }
.sdr-page .reveal.in .section-head > *:nth-child(2) { animation-delay: .18s; }
.sdr-page .reveal.in .section-head > *:nth-child(3) { animation-delay: .28s; }

.sdr-page .sdr-caps-section .sdr-cap-card {
  opacity: 0;
  transform: translateY(28px);
}
.sdr-page .sdr-caps-section.in .sdr-cap-card {
  animation: sdr-setup-enter .7s cubic-bezier(.22, 1, .36, 1) forwards;
}
.sdr-page .sdr-caps-section.in .sdr-cap-card:nth-child(1) { animation-delay: .1s; }
.sdr-page .sdr-caps-section.in .sdr-cap-card:nth-child(2) { animation-delay: .2s; }
.sdr-page .sdr-caps-section.in .sdr-cap-card:nth-child(3) { animation-delay: .3s; }
.sdr-page .sdr-caps-section.in .sdr-cap-card:nth-child(4) { animation-delay: .4s; }
.sdr-page .sdr-caps-section.in .sdr-cap-card:nth-child(5) { animation-delay: .5s; }
.sdr-page .sdr-caps-section.in .sdr-cap-card:nth-child(6) { animation-delay: .6s; }

.sdr-page .cta-section .cta-card {
  opacity: 0;
  transform: translateY(28px);
}
.sdr-page .cta-section.in .cta-card {
  animation: sdr-setup-enter .75s cubic-bezier(.22, 1, .36, 1) .15s forwards;
}

@media (prefers-reduced-motion: reduce) {
  .sdr-page .sdr-hero.in .sdr-hero-icon { animation: none; opacity: 1; }
  .sdr-page .sdr-hero .sdr-hero-inner > *,
  .sdr-page .sdr-caps-section .sdr-cap-card,
  .sdr-page .cta-section .cta-card,
  .sdr-page .sdr-caps-section .section-head > *,
  .sdr-page .sdr-setup-section .section-head > *,
  .sdr-page .sdr-use-section .section-head > *,
  .sdr-page .sdr-why-section .section-head > *,
  .sdr-page .sdr-use-step,
  .sdr-page .sdr-why-card,
  .sdr-page .sdr-why-center,
  .solution-page .sdr-why-intro > * {
    opacity: 1;
    transform: none;
    animation: none;
  }
}

.required-mark {
  color: red;
}