:root {
  --bg: #F7F5F3;
  --grid-line: rgba(20, 20, 20, 0.06);
  --ink: #0C0F16;
  --teal: #347F98;
  --orange: #E7873F;
  --gray-text: #5B5A5D;
  --gray-border: #D9D6D2;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  font-family: var(--font-body);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
}

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

/* ---------- Nav ---------- */

.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid var(--grid-line);
  background: var(--bg);
  transition: box-shadow 0.25s ease, background 0.25s ease;
}

.nav.is-scrolled {
  box-shadow: 0 6px 24px rgba(12, 15, 22, 0.08);
  background: rgba(247, 245, 243, 0.92);
  backdrop-filter: saturate(180%) blur(8px);
  -webkit-backdrop-filter: saturate(180%) blur(8px);
}

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

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.brand-mark { display: flex; align-items: center; }

.brand-name {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  letter-spacing: 0.2px;
}

.brand-ai { color: var(--teal); }
.brand-arid { color: var(--orange); }

.brand-logo-img {
  display: block;
  height: 40px;
  width: auto;
}

.footer-logo-img {
  height: 38px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 34px;
}

.nav-links a {
  font-size: 15px;
  color: #2c2c2e;
  font-weight: 450;
  transition: color 0.2s ease;
}

.nav-links a:hover { color: var(--teal); }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14.5px;
  font-weight: 600;
  padding: 12px 20px;
  border-radius: 999px;
  white-space: nowrap;
  transition: transform 0.18s ease, background 0.18s ease, box-shadow 0.18s ease;
}

.btn .arrow { transition: transform 0.18s ease; }
.btn:hover .arrow { transform: translate(2px, -2px); }

.btn-dark {
  background: var(--ink);
  color: #fff;
}

.btn-dark:hover {
  background: #1d2230;
  transform: translateY(-1px);
}

.btn-outline {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--gray-border);
}

.btn-outline:hover {
  border-color: var(--ink);
  transform: translateY(-1px);
}

/* ---------- Hero ---------- */

.hero {
  position: relative;
  overflow: hidden;
  padding-bottom: 40px;
  padding-top: 40px;
}

.grid-overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    repeating-linear-gradient(to right, var(--grid-line) 0 1px, transparent 1px 11.11%),
    repeating-linear-gradient(to bottom, var(--grid-line) 0 1px, transparent 1px 78px);
  opacity: 1;
}

.hero-inner {
  position: relative;
  max-width: 1400px;
  margin: 0 auto;
  padding: 56px 40px 0;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 36px;
}

.eyebrow-text {
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 1.6px;
  color: var(--teal);
  text-transform: uppercase;
}

.hero-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 40px;
}

.hero-copy { flex: 1 1 auto; min-width: 0; }

.headline {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 0.98;
  letter-spacing: -0.5px;
}

.headline .line {
  display: block;
  white-space: nowrap;
}

.line-1 {
  font-size: 92px;
  color: var(--ink);
  font-weight: 500;
}

.line-2 {
  display: flex;
  align-items: baseline;
  gap: 18px;
  margin-top: 4px;
}

.accent-orange {
  font-style: italic;
  font-weight: 500;
  font-size: 104px;
  color: var(--orange);
}

.accent-teal {
  font-style: normal;
  font-weight: 500;
  font-size: 92px;
  color: var(--teal);
}

.hero-side {
  flex: 0 0 320px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 22px;
  padding-bottom: 10px;
}

.hero-desc {
  margin: 0;
  font-size: 16px;
  line-height: 1.55;
  color: var(--gray-text);
  font-weight: 400;
}

.hero-bottom {
  margin-top: 100px;
  padding: 26px 0 56px;
  border-top: 1px solid var(--grid-line);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.typewriter-line {
  margin: 0;
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 500;
  color: #4a4a4d;
}

.typewriter-wrap {
  display: inline-flex;
  align-items: baseline;
}

.typewriter-text {
  font-style: italic;
  font-weight: 600;
  color: var(--orange);
}

.caret {
  display: inline-block;
  margin-left: 2px;
  color: var(--orange);
  font-weight: 400;
  animation: blink 1s step-start infinite;
}

@keyframes blink {
  50% { opacity: 0; }
}

/* ---------- Responsive ---------- */

@media (max-width: 1100px) {
  .line-1 { font-size: 72px; }
  .accent-orange { font-size: 80px; }
  .accent-teal { font-size: 72px; }
  .hero-row { flex-wrap: wrap; align-items: flex-start; }
  .hero-side { flex: 1 1 100%; }
}

@media (max-width: 760px) {
  .nav-links { display: none; }
  .nav-inner { padding: 16px 20px; }
  .hero-inner { padding: 36px 20px 0; }
  .line-1 { font-size: 44px; }
  .accent-orange { font-size: 50px; }
  .accent-teal { font-size: 44px; }
  .headline .line { white-space: normal; }
  .line-2 { flex-wrap: wrap; gap: 8px; }
  .hero-bottom { flex-direction: column; align-items: flex-start; gap: 18px; margin-top: 40px; padding-bottom: 36px; }
  .typewriter-line { font-size: 19px; }
}

@media (prefers-reduced-motion: reduce) {
  .caret { animation: none; }
  .btn, .btn .arrow { transition: none; }
}

/* ---------- Marquee ---------- */

.marquee-section {
  background: #fff;
  border-top: 1px solid var(--grid-line);
  border-bottom: 1px solid var(--grid-line);
  overflow: hidden;
  padding: 22px 0;
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee-scroll 28s linear infinite;
}

.marquee-group {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.marquee-item {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 22px;
  color: #8a8a8d;
  padding: 0 28px;
  white-space: nowrap;
}

.marquee-dot {
  color: var(--orange);
  font-size: 13px;
  transform: translateY(-2px);
}

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

@media (prefers-reduced-motion: reduce) {
  .marquee-track { animation: none; }
}

/* ---------- What We Do ---------- */

.what-we-do {
  background: var(--bg);
  padding: 88px 0 100px;
}

.wwd-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
}

.wwd-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 60px;
  margin-bottom: 56px;
}

.wwd-head-left { flex: 1 1 auto; min-width: 0; }

.eyebrow-label {
  margin: 0 0 14px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.6px;
  color: var(--teal);
  text-transform: uppercase;
}

.wwd-headline {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -0.5px;
}

.wwd-headline .line-dark {
  display: block;
  font-size: 46px;
  color: var(--ink);
}

.wwd-headline .line-accent {
  display: block;
  margin-top: 2px;
  font-style: italic;
  font-size: 46px;
  color: var(--orange);
}

.wwd-desc {
  flex: 0 0 380px;
  margin: 0 0 6px;
  font-size: 15.5px;
  line-height: 1.6;
  color: var(--gray-text);
}

/* Grid: feature card spans 2 rows on the left,
   two stacked cards in the middle column,
   conversion card top-right, then a 3-up row beneath */
.wwd-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 20px;
}

.wwd-card {
  border-radius: 18px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 0;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.wwd-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 34px rgba(20, 20, 20, 0.08);
}

.card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

.card-icon { flex-shrink: 0; }

.card-num {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.5px;
  opacity: 0.55;
}

.card-bottom h3 {
  margin: 18px 0 10px;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 24px;
  line-height: 1.15;
}

.card-bottom p {
  margin: 0;
  font-size: 14px;
  line-height: 1.55;
}

/* Feature card: AI Voice Bots — large, spans both rows, col 1 */
.card-feature {
  grid-column: 1;
  grid-row: 1 / span 2;
  background: var(--orange);
  color: #fff;
}
.card-feature .card-icon { color: #fff; }
.card-feature .card-num { color: rgba(255,255,255,0.75); }
.card-feature .card-bottom p { color: rgba(255,255,255,0.88); }

/* Chatbots — col 2, row 1 */
.card-chat {
  grid-column: 2;
  grid-row: 1;
  background: var(--ink);
  color: #fff;
}
.card-chat .card-icon { color: #fff; }
.card-chat .card-num { color: rgba(255,255,255,0.5); }
.card-chat .card-bottom p { color: rgba(255,255,255,0.7); }

/* Chat -> Voice conversion — col 3, row 1 */
.card-convert {
  grid-column: 3;
  grid-row: 1;
  background: #fff;
  border: 1px solid var(--teal);
  color: var(--ink);
}
.card-convert .card-icon { color: var(--ink); }
.card-convert .card-num { color: var(--teal); }
.card-convert .card-bottom p { color: var(--gray-text); }

/* WhatsApp — col 2, row 2 */
.card-whatsapp {
  grid-column: 2;
  grid-row: 2;
  background: #fff;
  border: 1px solid var(--grid-line);
  color: var(--ink);
}
.card-whatsapp .card-num { color: #b5b3b0; }
.card-whatsapp .card-bottom p { color: var(--gray-text); }

/* Conversion card needs more breathing room since it sits in row 1 only;
   give the bottom row its own track so card 3 doesn't clip text */
.card-convert {
  min-height: 230px;
}

/* Bottom row: Content Automation + Custom AI Workflows, spanning col 3 area too */
.card-content {
  grid-column: 2;
  grid-row: 3;
  background: #fff;
  border: 1px solid var(--grid-line);
  color: var(--ink);
}
.card-content .card-num { color: #b5b3b0; }
.card-content .card-bottom p { color: var(--gray-text); }

.card-workflows {
  grid-column: 3;
  grid-row: 2 / span 2;
  background: #fff;
  border: 1px solid var(--grid-line);
  color: var(--ink);
}
.card-workflows .card-num { color: #b5b3b0; }
.card-workflows .card-bottom p { color: var(--gray-text); }

.wwd-footer {
  display: flex;
  justify-content: flex-end;
  margin-top: 36px;
}

@media (max-width: 1080px) {
  .wwd-grid {
    grid-template-columns: 1fr 1fr;
  }
  .card-feature { grid-column: 1 / span 2; grid-row: 1; min-height: 260px; }
  .card-chat { grid-column: 1; grid-row: 2; }
  .card-convert { grid-column: 2; grid-row: 2; }
  .card-whatsapp { grid-column: 1; grid-row: 3; }
  .card-content { grid-column: 2; grid-row: 3; }
  .card-workflows { grid-column: 1 / span 2; grid-row: 4; }
  .wwd-head { flex-direction: column; align-items: flex-start; gap: 22px; }
  .wwd-desc { flex: 1 1 auto; }
}

@media (max-width: 700px) {
  .what-we-do { padding: 56px 0 64px; }
  .wwd-inner { padding: 0 20px; }
  .wwd-headline .line-dark,
  .wwd-headline .line-accent { font-size: 34px; }
  .wwd-grid { grid-template-columns: 1fr; gap: 16px; }
  .card-feature,
  .card-chat,
  .card-convert,
  .card-whatsapp,
  .card-content,
  .card-workflows {
    grid-column: 1;
    grid-row: auto;
    min-height: 0;
  }
  .marquee-item { font-size: 18px; padding: 0 18px; }
}

/* ---------- Industries Carousel ---------- */

.industries {
  background: #fff;
  padding: 88px 0 100px;
  border-top: 1px solid var(--grid-line);
}

.ind-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
}

.ind-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 60px;
  margin-bottom: 48px;
}

.ind-head-left { flex: 1 1 auto; min-width: 0; }

.ind-headline {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -0.5px;
}

.ind-headline .line-dark {
  display: block;
  font-size: 46px;
  color: var(--ink);
}

.ind-headline .line-accent {
  display: block;
  margin-top: 2px;
  font-style: italic;
  font-size: 46px;
  color: var(--orange);
}

.ind-desc {
  flex: 0 0 380px;
  margin: 0 0 6px;
  font-size: 15.5px;
  line-height: 1.6;
  color: var(--gray-text);
}

/* Carousel */
.ind-carousel {
  position: relative;
}

.ind-track {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding-bottom: 4px;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.ind-track::-webkit-scrollbar { display: none; }

.ind-card {
  flex: 0 0 calc(25% - 15px);
  scroll-snap-align: start;
  display: flex;
  flex-direction: column;
  border-radius: 16px;
  overflow: hidden;
  background: var(--bg);
  border: 1px solid var(--grid-line);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.ind-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 32px rgba(20, 20, 20, 0.10);
}

.ind-img {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.ind-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.ind-card:hover .ind-img img {
  transform: scale(1.05);
}

.ind-num {
  position: absolute;
  top: 14px;
  left: 14px;
  background: rgba(12, 15, 22, 0.72);
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.5px;
  padding: 4px 9px;
  border-radius: 6px;
  backdrop-filter: blur(2px);
}

.ind-caption {
  padding: 20px 22px 24px;
}

.ind-caption h3 {
  display: flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 10px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 19px;
  color: var(--ink);
}

.ind-icon { color: var(--teal); flex-shrink: 0; }

.ind-caption p {
  margin: 0;
  font-size: 13.5px;
  line-height: 1.55;
  color: var(--gray-text);
}

/* Controls */
.ind-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 28px;
}

.ind-dots {
  display: flex;
  gap: 8px;
}

.ind-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gray-border);
  border: none;
  padding: 0;
  cursor: pointer;
  transition: background 0.2s ease, width 0.2s ease;
}

.ind-dot.active {
  background: var(--orange);
  width: 22px;
  border-radius: 4px;
}

.ind-arrows {
  display: flex;
  gap: 10px;
}

.ind-arrow {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid var(--gray-border);
  background: #fff;
  color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.18s ease, border-color 0.18s ease, transform 0.18s ease, color 0.18s ease;
}

.ind-arrow:hover {
  background: var(--ink);
  border-color: var(--ink);
  color: #fff;
  transform: translateY(-1px);
}

.ind-arrow:disabled {
  opacity: 0.35;
  cursor: default;
  pointer-events: none;
}

@media (max-width: 1080px) {
  .ind-card { flex: 0 0 calc(33.333% - 14px); }
  .ind-head { flex-direction: column; align-items: flex-start; gap: 22px; }
  .ind-desc { flex: 1 1 auto; }
}

@media (max-width: 760px) {
  .industries { padding: 56px 0 64px; }
  .ind-inner { padding: 0 20px; }
  .ind-headline .line-dark,
  .ind-headline .line-accent { font-size: 34px; }
  .ind-card { flex: 0 0 calc(72% - 12px); }
}

@media (prefers-reduced-motion: reduce) {
  .ind-track { scroll-behavior: auto; }
  .ind-card, .ind-img img, .ind-arrow, .ind-dot { transition: none; }
}

/* ---------- Why AIARID ---------- */

.why {
  background: var(--bg);
  padding: 88px 0 100px;
  border-top: 1px solid var(--grid-line);
}

.why-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
}

.why-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 60px;
  margin-bottom: 56px;
}

.why-head-left { flex: 1 1 auto; min-width: 0; }

.why-headline {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -0.5px;
}

.why-headline .line-dark {
  display: block;
  font-size: 46px;
  color: var(--ink);
}

.why-headline .line-accent {
  display: block;
  margin-top: 4px;
  font-style: italic;
  font-size: 46px;
  color: var(--orange);
}

.why-head-right {
  flex: 0 0 380px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
}

.why-desc {
  margin: 0;
  font-size: 15.5px;
  line-height: 1.6;
  color: var(--gray-text);
}

.why-divider {
  width: 100%;
  padding-top: 16px;
  border-top: 1px solid var(--grid-line);
  display: flex;
  justify-content: center;
}

/* Stats row */
.why-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--grid-line);
  border-radius: 14px;
  overflow: hidden;
  margin-bottom: 44px;
  background: var(--bg);
}

.stat-box {
  padding: 32px 30px;
  border-left: 1px solid var(--grid-line);
}

.stat-box:first-child { border-left: none; }

.stat-num {
  margin: 0 0 14px;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 44px;
  color: var(--ink);
  letter-spacing: -0.5px;
}

.stat-title {
  margin: 0 0 6px;
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
}

.stat-sub {
  margin: 0;
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.8px;
  color: #a8a6a2;
  text-transform: uppercase;
}

/* 6-card grid */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.why-card {
  background: #fff;
  border: 1px solid var(--grid-line);
  border-radius: 14px;
  padding: 26px 26px 28px;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.why-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 30px rgba(20, 20, 20, 0.07);
}

.why-card-num {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: var(--orange);
  margin-bottom: 14px;
}

.why-card h3 {
  margin: 0 0 10px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 19px;
  color: var(--ink);
}

.why-card p {
  margin: 0;
  font-size: 13.5px;
  line-height: 1.6;
  color: var(--gray-text);
}

@media (max-width: 1080px) {
  .why-head { flex-direction: column; align-items: flex-start; gap: 26px; }
  .why-head-right { flex: 1 1 auto; }
  .why-divider { justify-content: flex-start; }
  .why-stats { grid-template-columns: repeat(2, 1fr); }
  .stat-box:nth-child(2) { border-left: none; }
  .stat-box:nth-child(3) { border-left: none; }
  .stat-box:nth-child(odd) { border-left: none; }
  .stat-box { border-top: 1px solid var(--grid-line); }
  .stat-box:nth-child(-n+2) { border-top: none; }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 700px) {
  .why { padding: 56px 0 64px; }
  .why-inner { padding: 0 20px; }
  .why-headline .line-dark,
  .why-headline .line-accent { font-size: 32px; }
  .why-stats { grid-template-columns: 1fr; }
  .stat-box { border-left: none !important; border-top: 1px solid var(--grid-line); }
  .stat-box:first-child { border-top: none; }
  .why-grid { grid-template-columns: 1fr; }
}

/* ---------- Footer ---------- */

.site-footer {
  background: #08090d;
  color: #fff;
  padding: 64px 0 0;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.footer-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 0.9fr 0.9fr 0.9fr;
  gap: 40px;
  padding-bottom: 56px;
}

.footer-brand-col {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 22px;
  max-width: 440px;
}

.footer-brand { margin-bottom: 4px; }

.footer-headline {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 31px;
  line-height: 1.25;
  color: #fff;
  letter-spacing: -0.2px;
}

.footer-headline em {
  font-style: italic;
  font-weight: 500;
  color: var(--orange);
}

.btn-footer-cta {
  background: var(--orange);
  color: #fff;
  padding: 13px 24px;
}

.btn-footer-cta:hover {
  background: #d97935;
  transform: translateY(-1px);
}

.footer-eyebrow {
  color: #7a7d85;
  margin-bottom: 4px;
}

.footer-link {
  display: block;
  font-size: 14.5px;
  color: #d6d5d3;
  transition: color 0.18s ease;
}

.footer-link:hover { color: #fff; }

.footer-email { color: #d6d5d3; }

.footer-socials {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

.social-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #d6d5d3;
  transition: background 0.18s ease, border-color 0.18s ease, color 0.18s ease;
}

.social-btn:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.4);
  color: #fff;
}

.footer-col {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}

.footer-col .footer-link { padding: 2px 0; }

.footer-office-loc {
  margin: 0 0 4px;
  font-size: 13.5px;
  line-height: 1.4;
  color: #d6d5d3;
}

.footer-eyebrow-spaced {
  margin-top: 22px;
}

.footer-offices-col .footer-socials {
  margin-top: 16px;
}

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

.footer-copy {
  margin: 0;
  font-size: 13.5px;
  color: #9a9a9d;
}

.footer-tagline {
  margin: 0;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  color: #6f7178;
  text-transform: uppercase;
}

@media (max-width: 900px) {
  .footer-top { grid-template-columns: 1fr 1fr; }
  .footer-brand-col { grid-column: 1 / span 2; max-width: 100%; }
}

@media (max-width: 600px) {
  .site-footer { padding-top: 48px; }
  .footer-inner { padding: 0 20px; }
  .footer-headline { font-size: 25px; }
  .footer-top { grid-template-columns: 1fr; gap: 32px; padding-bottom: 40px; }
  .footer-brand-col { grid-column: 1; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 10px; }
}

/* ---------- Equalizer bar animation (eyebrow badge + why divider) ---------- */

.eq-bars { overflow: visible; }

.eq-bar {
  transform-box: fill-box;
  transform-origin: 50% 100%;
  animation: eq-bounce 1.1s ease-in-out infinite;
  animation-delay: var(--d, 0s);
}

@keyframes eq-bounce {
  0%, 100% { transform: scaleY(0.55); }
  50%      { transform: scaleY(1); }
}

@media (prefers-reduced-motion: reduce) {
  .eq-bar { animation: none; }
}

/* ---------- Quote Section ---------- */

.quote-section {
  background: #E4EAEB;
  padding: 100px 0;
}

.quote-inner {
  max-width: 980px;
  margin: 0 auto;
  padding: 0 40px;
}

.quote-mark {
  display: block;
  font-family: var(--font-display);
  font-size: 64px;
  line-height: 1;
  color: var(--orange);
  font-weight: 700;
  margin-bottom: 4px;
}

.quote-text {
  margin: 0 0 32px;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 38px;
  line-height: 1.35;
  color: var(--ink);
  letter-spacing: -0.2px;
}

.quote-text em {
  font-style: italic;
  font-weight: 500;
  color: var(--teal);
}

.quote-credit {
  display: flex;
  align-items: center;
  gap: 16px;
}

.quote-label {
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 1.4px;
  color: var(--teal);
  text-transform: uppercase;
}

/* ---------- Pricing CTA Section ---------- */

.pricing-section {
  background: var(--ink);
  padding: 96px 0 116px;
}

.pricing-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 60px;
}

.pricing-left { flex: 1 1 auto; min-width: 0; }

.pricing-eyebrow {
  margin: 0 0 16px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.6px;
  color: var(--orange);
  text-transform: uppercase;
}

.pricing-headline {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -0.5px;
}

.pricing-headline .line-light {
  display: block;
  font-size: 46px;
  color: #fff;
}

.pricing-headline .line-accent-light {
  display: block;
  margin-top: 4px;
  font-style: italic;
  font-size: 46px;
  color: var(--orange);
}

.pricing-right {
  flex: 0 0 380px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
  padding-top: 6px;
}

.pricing-desc {
  margin: 0;
  font-size: 15.5px;
  line-height: 1.6;
  color: #aeb2bb;
}

.btn-pricing-cta {
  background: var(--orange);
  color: #fff;
  padding: 14px 26px;
}

.btn-pricing-cta:hover {
  background: #d97935;
  transform: translateY(-1px);
}

.pricing-credit-label { color: #8a8d95; }

/* ---------- Responsive ---------- */

@media (max-width: 900px) {
  .quote-text { font-size: 28px; }
  .pricing-inner { flex-direction: column; gap: 36px; }
  .pricing-right { flex: 1 1 auto; }
}

@media (max-width: 600px) {
  .quote-section { padding: 64px 0; }
  .quote-inner { padding: 0 20px; }
  .quote-mark { font-size: 50px; }
  .quote-text { font-size: 23px; }
  .pricing-section { padding: 56px 0; }
  .pricing-inner { padding: 0 20px; }
  .pricing-headline .line-light,
  .pricing-headline .line-accent-light { font-size: 32px; }
}

/* ================================================
   Contact Page
================================================== */

.contact-main {
  position: relative;
  padding: 64px 40px 110px;
}

.contact-main .grid-overlay {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(var(--grid-line) 1px, transparent 1px),
    linear-gradient(90deg, var(--grid-line) 1px, transparent 1px);
  background-size: 64px 64px;
  pointer-events: none;
  z-index: 0;
}

.contact-inner {
  position: relative;
  z-index: 1;
  max-width: 1320px;
  margin: 0 auto;
}

.contact-eyebrow-links {
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 1.2px;
  color: var(--gray-text);
  text-transform: uppercase;
  margin: 0 0 28px;
}

.contact-eyebrow-links a {
  color: var(--gray-text);
  transition: color 0.2s ease;
}

.contact-eyebrow-links a:hover { color: var(--teal); }

.contact-eyebrow-links .sep {
  margin: 0 10px;
  color: var(--gray-border);
}

.contact-headline {
  margin: 0 0 36px;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 64px;
  line-height: 1.06;
  letter-spacing: -1px;
  color: var(--ink);
  max-width: 880px;
}

.contact-headline em {
  font-style: italic;
  color: var(--orange);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 56px;
  align-items: start;
}

.contact-info-col { padding-top: 6px; }

.contact-info-desc {
  font-size: 16.5px;
  line-height: 1.6;
  color: var(--gray-text);
  max-width: 420px;
  margin: 0 0 32px;
}

.contact-info-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 36px;
}

.contact-info-row {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.contact-info-icon {
  flex: 0 0 auto;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #FBE3CF;
  color: var(--orange);
}

.contact-info-icon.is-teal {
  background: #DCEAEE;
  color: var(--teal);
}

.contact-info-icon.is-ink {
  background: #E6E5E2;
  color: var(--ink);
}

.contact-info-text .contact-info-label {
  margin: 0 0 3px;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 1.3px;
  text-transform: uppercase;
  color: var(--gray-text);
}

.contact-info-text .contact-info-value {
  margin: 0;
  font-size: 16px;
  font-weight: 600;
  color: var(--ink);
}

.contact-info-text .contact-info-value a {
  transition: color 0.2s ease;
}

.contact-info-text .contact-info-value a:hover { color: var(--teal); }

.contact-divider {
  border: none;
  border-top: 1px solid var(--gray-border);
  margin: 30px 0;
}

.contact-response-label {
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 1.3px;
  text-transform: uppercase;
  color: var(--gray-text);
  margin: 0 0 8px;
}

.contact-response-value {
  margin: 0 0 36px;
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 500;
  color: var(--ink);
}

.contact-response-value em {
  font-style: italic;
  color: var(--orange);
}

.contact-offices {
  display: flex;
  flex-direction: column;
  gap: 26px;
}

.contact-office-block .office-eyebrow {
  margin: 0 0 8px;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 1.3px;
  text-transform: uppercase;
  color: var(--teal);
}

.contact-office-block .office-loc {
  margin: 0 0 6px;
  font-size: 15.5px;
  font-weight: 600;
  color: var(--ink);
}

.contact-office-block .office-line {
  display: block;
  font-size: 14.5px;
  color: var(--gray-text);
  margin-bottom: 2px;
  transition: color 0.2s ease;
}

.contact-office-block .office-line:hover { color: var(--teal); }

.contact-form-card {
  background: #fff;
  border: 1px solid var(--gray-border);
  border-radius: 22px;
  padding: 40px 44px 44px;
  box-shadow: 0 30px 60px -30px rgba(12, 15, 22, 0.12);
}

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

.contact-field {
  display: flex;
  flex-direction: column;
  margin-bottom: 26px;
}

.contact-field label {
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--gray-text);
  margin-bottom: 10px;
}

.contact-field input,
.contact-field select,
.contact-field textarea {
  font-family: var(--font-body);
  font-size: 15.5px;
  color: var(--ink);
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--gray-border);
  padding: 6px 2px 12px;
  outline: none;
  transition: border-color 0.2s ease;
  appearance: none;
  -webkit-appearance: none;
}

.contact-field select {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='14' height='14' fill='none' stroke='%235B5A5D' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><polyline points='6 9 12 15 18 9'/></svg>");
  background-repeat: no-repeat;
  background-position: right 2px center;
  cursor: pointer;
}

.contact-field textarea {
  resize: vertical;
  min-height: 64px;
  line-height: 1.5;
  font-family: var(--font-body);
}

.contact-field input::placeholder,
.contact-field textarea::placeholder { color: #B7B4AF; }

.contact-field input:focus,
.contact-field select:focus,
.contact-field textarea:focus { border-color: var(--ink); }

.contact-form-submit {
  width: 100%;
  justify-content: center;
  padding: 15px 20px;
  font-size: 15px;
  margin-top: 6px;
}

.contact-form-note {
  margin: 16px 0 0;
  text-align: center;
  font-size: 12.5px;
  color: var(--gray-text);
}

.contact-form-success {
  display: none;
  text-align: center;
  padding: 40px 10px;
}

.contact-form-success.is-visible { display: block; }
.contact-form-success ~ form { display: none; }

.contact-form-success h3 {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 500;
  margin: 14px 0 8px;
}

.contact-form-success p {
  color: var(--gray-text);
  font-size: 15px;
  margin: 0;
}

.contact-form-success-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #DCEAEE;
  color: var(--teal);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
}

@media (max-width: 1080px) {
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .contact-headline { font-size: 48px; }
  .contact-form-card { padding: 32px 26px 36px; }
}

@media (max-width: 600px) {
  .contact-main { padding: 44px 20px 80px; }
  .contact-headline { font-size: 36px; }
  .contact-form-row { grid-template-columns: 1fr; gap: 0; }
  .contact-form-card { border-radius: 16px; }
  .contact-eyebrow-links { font-size: 11px; }
}

/* ================================================
   Solutions Page — exact match to design
================================================== */

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

.sp-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 1400px;
  margin: 0 auto;
  padding: 52px 40px 0;
}

.sp-eyebrow {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 40px;
}

.sp-eyebrow-text {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--teal);
  text-transform: uppercase;
}

.sp-hero-body {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
}

.sp-headline {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 0.96;
  letter-spacing: -1.5px;
  flex: 0 0 auto;
}

.sp-headline span {
  display: block;
  font-size: 90px;
  color: var(--ink);
}

.sp-headline em {
  display: block;
  font-style: italic;
  font-size: 90px;
  color: var(--orange);
}

.sp-desc {
  flex: 0 0 360px;
  margin: 0 0 12px;
  font-size: 17px;
  line-height: 1.6;
  color: var(--gray-text);
}

/* Capabilities list */
.sp-caps {
  background: #fff;
  border-top: 1px solid var(--gray-border);
}

.sp-cap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-bottom: 1px solid var(--gray-border);
  min-height: 560px;
}

/* Even panels: flip image to right */
.sp-cap:nth-child(even) .sp-cap-img  { order: 2; }
.sp-cap:nth-child(even) .sp-cap-body { order: 1; }

/* Image column */
.sp-cap-img {
  position: relative;
  overflow: hidden;
  background: #e8e6e2;
}

.sp-cap-img img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Placeholder art when no real photo */
.sp-cap-img svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.sp-cap-counter {
  position: absolute;
  top: 22px;
  left: 22px;
  z-index: 10;
  background: rgba(255,255,255,0.93);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border-radius: 999px;
  padding: 6px 18px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: var(--ink);
}

/* Content column */
.sp-cap-body {
  padding: 72px 68px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0;
}

.sp-cap-badge {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
}

.sp-cap-badge-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #FBE3CF;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange);
  flex-shrink: 0;
}

.sp-cap-badge-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gray-text);
}

.sp-cap-title {
  margin: 0 0 10px;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 58px;
  line-height: 1.0;
  letter-spacing: -0.5px;
  color: var(--ink);
}

.sp-cap-tagline {
  margin: 0 0 20px;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 20px;
  font-weight: 500;
  color: var(--teal);
  line-height: 1.4;
}

.sp-cap-desc {
  margin: 0 0 28px;
  font-size: 16px;
  line-height: 1.65;
  color: var(--gray-text);
  max-width: 480px;
}

.sp-cap-bullets {
  list-style: none;
  margin: 0 0 36px;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  row-gap: 12px;
  column-gap: 24px;
}

.sp-cap-bullets li {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  font-size: 14.5px;
  font-weight: 500;
  color: var(--ink);
  line-height: 1.35;
}

.sp-cap-bullets li svg {
  flex-shrink: 0;
  margin-top: 1px;
  color: var(--teal);
}

/* Responsive */
@media (max-width: 1100px) {
  .sp-headline span,
  .sp-headline em { font-size: 68px; }
  .sp-cap-body { padding: 52px 44px; }
  .sp-cap-title { font-size: 46px; }
}

@media (max-width: 860px) {
  .sp-hero-body { flex-wrap: wrap; align-items: flex-start; }
  .sp-desc { flex: 1 1 100%; }
  .sp-cap { grid-template-columns: 1fr; min-height: auto; }
  .sp-cap:nth-child(even) .sp-cap-img  { order: 1; }
  .sp-cap:nth-child(even) .sp-cap-body { order: 2; }
  .sp-cap-img { min-height: 320px; }
  .sp-cap-body { padding: 40px 28px; }
  .sp-cap-title { font-size: 38px; }
  .sp-cap-tagline { font-size: 17px; }
  .sp-cap-bullets { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
  .sp-hero-inner { padding: 36px 20px 0; }
  .sp-headline span,
  .sp-headline em { font-size: 46px; letter-spacing: -1px; }
}



/* ═══════════════════════════════════════════════
   SOLUTIONS PAGE
═══════════════════════════════════════════════ */

/* ── HERO ── */
.sol-hero {
  position: relative;
  overflow: hidden;
  padding-bottom: 100px;
  background: #F7F5F3;
}
.sol-hero .grid-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(20,20,20,.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(20,20,20,.055) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}
.sol-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 1320px;
  margin: 0 auto;
  padding: 60px 80px 0;
}

/* Eyebrow */
.sol-eyebrow {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 44px;
}
.sol-eyebrow-bars {
  display: flex;
  align-items: flex-end;
  gap: 3px;
  height: 22px;
}
.sol-eyebrow-bars span {
  display: block;
  width: 4px;
  border-radius: 2px;
  background: #E7873F;
  animation: barPop 1.1s ease-in-out infinite alternate;
  transform-origin: bottom;
}
.sol-eyebrow-bars span:nth-child(1)  { height: 55%; animation-delay: .00s; }
.sol-eyebrow-bars span:nth-child(2)  { height: 80%; animation-delay: .08s; }
.sol-eyebrow-bars span:nth-child(3)  { height:100%; animation-delay: .16s; }
.sol-eyebrow-bars span:nth-child(4)  { height: 68%; animation-delay: .24s; }
.sol-eyebrow-bars span:nth-child(5)  { height: 88%; animation-delay: .32s; }
.sol-eyebrow-bars span:nth-child(6)  { height: 50%; animation-delay: .40s; }
.sol-eyebrow-bars span:nth-child(7)  { height: 62%; animation-delay: .48s; }
.sol-eyebrow-bars span:nth-child(8)  { height: 30%; animation-delay: .56s; }
.sol-eyebrow-bars span:nth-child(9)  { height: 22%; animation-delay: .64s; }
.sol-eyebrow-bars span:nth-child(10) { height: 26%; animation-delay: .72s; }
.sol-eyebrow-bars span:nth-child(11) { height: 46%; animation-delay: .80s; }
@keyframes barPop {
  from { transform: scaleY(.35); }
  to   { transform: scaleY(1); }
}
.sol-eyebrow-text {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #347F98;
}

/* Headline + description */
.sol-hero-content {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 48px;
}
.sol-headline {
  flex: 0 0 auto;
  margin: 0;
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 500;
  line-height: 0.95;
  letter-spacing: -2px;
}
.sol-headline .hl-dark   { display: block; font-size: 92px; color: #0C0F16; }
.sol-headline .hl-orange { display: block; font-size: 92px; font-style: italic; color: #E7873F; }

.sol-hero-desc {
  flex: 0 0 320px;
  margin: 0 0 10px;
  font-family: 'Inter', sans-serif;
  font-size: 17px;
  line-height: 1.62;
  color: #5B5A5D;
}

/* ═══════════════════════════════════════════════
   CAPABILITY PANELS
═══════════════════════════════════════════════ */
.sol-cap {
  padding: 80px 0;
}

/* Alternating backgrounds */
.sol-cap:nth-child(odd)  { background: #ffffff; }
.sol-cap:nth-child(even) { background: #F7F5F3; }

.sol-cap-inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 80px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 72px;
}

/* Even panels handled by DOM order (body first, img second) */

/* ── Image column ── */
.sol-cap-img {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: #e0ddd8;
}
.sol-cap-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Counter badge */
.sol-cap-counter {
  position: absolute;
  top: 18px;
  left: 18px;
  z-index: 2;
  background: rgba(255,255,255,0.90);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-radius: 999px;
  padding: 6px 16px;
  font-family: 'Inter', sans-serif;
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.3px;
  color: #0C0F16;
}

/* Dark image panels */
.sol-cap-img.is-dark { background: #1e2438; }
.sol-cap-img.is-dark .sol-cap-counter { background: rgba(255,255,255,0.15); color: #fff; }

/* Placeholder art */
.sol-cap-img .ph {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.sol-cap-img .ph svg   { opacity: .3; }
.sol-cap-img .ph span  {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: #8a8885;
}
.sol-cap-img.is-dark .ph span { color: rgba(255,255,255,.35); }

/* ── Content column ── */
.sol-cap-body { display: flex; flex-direction: column; align-items: flex-start; }

.sol-cap-badge {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}
.sol-cap-badge-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #FBE3CF;
  color: #E7873F;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.sol-cap-badge-label {
  font-family: 'Inter', sans-serif;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #5B5A5D;
}

.sol-cap-title {
  margin: 0 0 8px;
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 500;
  font-size: 56px;
  line-height: 1.0;
  letter-spacing: -0.5px;
  color: #0C0F16;
}
.sol-cap-tagline {
  margin: 0 0 18px;
  font-family: 'Playfair Display', Georgia, serif;
  font-style: italic;
  font-size: 19px;
  font-weight: 500;
  line-height: 1.4;
  color: #347F98;
}
.sol-cap-desc {
  margin: 0 0 24px;
  font-family: 'Inter', sans-serif;
  font-size: 15.5px;
  line-height: 1.65;
  color: #5B5A5D;
}
.sol-cap-features {
  list-style: none;
  margin: 0 0 32px;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  row-gap: 11px;
  column-gap: 24px;
  width: 100%;
}
.sol-cap-features li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: #0C0F16;
  line-height: 1.35;
}
.sol-cap-features li svg {
  flex-shrink: 0;
  margin-top: 2px;
  color: #347F98;
}

.sol-cap-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #0C0F16;
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-size: 14.5px;
  font-weight: 600;
  padding: 13px 26px;
  border-radius: 999px;
  text-decoration: none;
  transition: background .2s, transform .15s;
  letter-spacing: 0.1px;
}
.sol-cap-cta:hover { background: #347F98; transform: translateY(-1px); }

/* ── Responsive ── */
@media (max-width: 1100px) {
  .sol-headline .hl-dark,
  .sol-headline .hl-orange { font-size: 68px; }
  .sol-hero-inner,
  .sol-cap-inner { padding-left: 40px; padding-right: 40px; }
  .sol-cap-inner { gap: 48px; }
  .sol-cap-title { font-size: 44px; }
}
@media (max-width: 820px) {
  .sol-hero-content { flex-wrap: wrap; align-items: flex-start; }
  .sol-hero-desc { flex: 1 1 100%; }
  .sol-cap-inner { grid-template-columns: 1fr; direction: ltr; }
  .sol-cap:nth-child(even) .sol-cap-inner { direction: ltr; }
  .sol-cap-title { font-size: 38px; }
  .sol-cap-features { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .sol-hero-inner { padding: 40px 20px 0; }
  .sol-cap-inner { padding: 0 20px; }
  .sol-headline .hl-dark,
  .sol-headline .hl-orange { font-size: 44px; letter-spacing: -1px; }
}



  /* ================= CHATBOT HERO ================= */

  .cb-hero {
    position: relative;
    overflow: hidden;
    padding: 40px 0 100px;
  }

  .cb-hero-inner {
    position: relative;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
  }

  .cb-eyebrow {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 40px;
  }

  .cb-eyebrow-text {
    font-size: 12.5px;
    font-weight: 600;
    letter-spacing: 1.6px;
    color: var(--teal);
    text-transform: uppercase;
  }

  .cb-hero-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 60px;
    margin-bottom: 64px;
  }

  .cb-hero-copy { flex: 1 1 auto; min-width: 0; }

  .cb-headline {
    margin: 0;
    font-family: var(--font-display);
    font-weight: 500;
    line-height: 1.0;
    letter-spacing: -0.5px;
  }

  .cb-headline .line {
    display: block;
    white-space: nowrap;
  }

  .cb-line-1 {
    font-size: 76px;
    color: var(--ink);
    font-weight: 500;
  }

  .cb-line-2 {
    display: flex;
    align-items: baseline;
    gap: 16px;
    margin-top: 2px;
  }

  .cb-accent-orange {
    font-style: italic;
    font-weight: 500;
    font-size: 86px;
    color: var(--orange);
    position: relative;
  }

  .cb-accent-teal {
    font-style: normal;
    font-weight: 500;
    font-size: 76px;
    color: var(--teal);
  }

  .cb-hero-side {
    flex: 0 0 360px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }

  .cb-hero-desc {
    margin: 0;
    font-size: 15.5px;
    line-height: 1.65;
    color: var(--gray-text);
  }

  .cb-hero-side-bottom {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .cb-demo-link {
    font-size: 13px;
    color: var(--gray-text);
    display: inline-flex;
    align-items: center;
    gap: 5px;
  }

  .cb-demo-link:hover { color: var(--teal); }

  /* ---------- Demo row: chat widget + stats card ---------- */

  .cb-demo-row {
    display: grid;
    grid-template-columns: 1.55fr 1fr;
    gap: 28px;
    align-items: stretch;
  }

  /* Chat widget */
  .cb-chat-card {
    background: #fff;
    border: 1px solid var(--gray-border);
    border-radius: 20px;
    padding: 28px 28px 32px;
    box-shadow: 0 24px 60px rgba(20, 20, 20, 0.06);
  }

  .cb-chat-head {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--grid-line);
    margin-bottom: 24px;
  }

  .cb-chat-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #f1efec;
    border: 1px solid var(--gray-border);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }

  .cb-chat-avatar svg { display: block; }

  .cb-chat-head-name {
    margin: 0;
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 16px;
    color: var(--ink);
  }

  .cb-chat-head-status {
    margin: 2px 0 0;
    font-size: 12.5px;
    color: var(--gray-text);
    display: flex;
    align-items: center;
    gap: 6px;
  }

  .cb-status-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #3fb27f;
    display: inline-block;
    box-shadow: 0 0 0 3px rgba(63, 178, 127, 0.18);
  }

  .cb-chat-body {
    display: flex;
    flex-direction: column;
    gap: 14px;
  }

  .cb-bubble {
    max-width: 78%;
    padding: 13px 18px;
    border-radius: 16px;
    font-size: 14.5px;
    line-height: 1.55;
  }

  .cb-bubble-user {
    align-self: flex-end;
    background: #f4f2ef;
    border: 1px solid var(--gray-border);
    color: var(--ink);
    border-bottom-right-radius: 5px;
  }

  .cb-bubble-bot {
    align-self: flex-start;
    background: var(--teal);
    color: #fff;
    border-bottom-left-radius: 5px;
  }

  /* Stats card */
  .cb-stats-card {
    background: var(--ink);
    border-radius: 20px;
    padding: 32px 30px;
    display: flex;
    flex-direction: column;
    color: #fff;
  }

  .cb-stats-eyebrow {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.4px;
    color: var(--orange);
    text-transform: uppercase;
    margin: 0 0 18px;
  }

  .cb-stats-headline {
    margin: 0 0 30px;
    font-family: var(--font-display);
    font-weight: 500;
    font-size: 27px;
    line-height: 1.35;
    color: #fff;
    letter-spacing: -0.2px;
  }

  .cb-stats-headline em {
    font-style: italic;
    font-weight: 500;
    color: var(--orange);
  }

  .cb-stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 26px 20px;
    margin-top: auto;
  }

  .cb-stat-num {
    margin: 0 0 6px;
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 34px;
    color: var(--orange);
    letter-spacing: -0.3px;
  }

  .cb-stat-label {
    margin: 0;
    font-size: 12.5px;
    color: #b9bcc4;
  }

  @media (max-width: 1080px) {
    .cb-line-1, .cb-accent-teal { font-size: 56px; }
    .cb-accent-orange { font-size: 62px; }
    .cb-hero-row { flex-direction: column; align-items: flex-start; gap: 26px; }
    .cb-hero-side { flex: 1 1 auto; }
    .cb-demo-row { grid-template-columns: 1fr; }
  }

  @media (max-width: 640px) {
    .cb-line-1, .cb-accent-teal { font-size: 40px; white-space: normal; }
    .cb-accent-orange { font-size: 46px; }
    .cb-bubble { max-width: 90%; }
  }

  /* ================= CAPABILITY STRIP ================= */

  .cb-strip {
    background: #fff;
    border-top: 1px solid var(--grid-line);
    border-bottom: 1px solid var(--grid-line);
    overflow: hidden;
    padding: 22px 0;
  }

  /* reuse .marquee-track / .marquee-group / .marquee-item / .marquee-dot from style.css */

  /* ================= QUOTE + PRICING reused from style.css ================= */

  .quote-text .cb-quote-em { font-style: italic; font-weight: 500; color: var(--orange); }

  /* ================= CAPABILITIES ================= */

  .cap-section {
    background: #fff;
    padding: 88px 0 100px;
    border-top: 1px solid var(--grid-line);
  }

  .cap-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
  }

  .cap-head { margin-bottom: 48px; }

  .cap-headline {
    margin: 0;
    font-family: var(--font-display);
    font-weight: 500;
    font-size: 46px;
    line-height: 1.15;
    letter-spacing: -0.5px;
    color: var(--ink);
  }

  .cap-headline em {
    font-style: italic;
    font-weight: 500;
    color: var(--orange);
  }

  .cap-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }

  .cap-card {
    background: #fff;
    border: 1px solid var(--gray-border);
    border-radius: 14px;
    padding: 28px;
    display: flex;
    flex-direction: column;
    transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
  }

  .cap-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 30px rgba(20, 20, 20, 0.06);
    border-color: var(--gray-border);
  }

  .cap-card .card-icon { color: var(--orange); }

  .cap-card .card-num {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.5px;
    color: #b5b3b0;
    opacity: 1;
  }

  .cap-card .card-bottom h3 {
    margin: 22px 0 10px;
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 19px;
    color: var(--ink);
  }

  .cap-card .card-bottom p {
    margin: 0;
    font-size: 13.5px;
    line-height: 1.6;
    color: var(--gray-text);
  }

  @media (max-width: 1080px) {
    .cap-grid { grid-template-columns: repeat(2, 1fr); }
    .cap-headline { font-size: 36px; }
  }

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


/* ═══════════════════════════════════════════════
   INDUSTRIES PAGE
═══════════════════════════════════════════════ */

/* ── HERO ── */
.ind-hero {
  position: relative;
  overflow: hidden;
  padding-bottom: 90px;
  background: #F7F5F3;
}
.ind-hero .grid-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(20,20,20,.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(20,20,20,.055) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}
.ind-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 1320px;
  margin: 0 auto;
  padding: 60px 80px 0;
}

/* Eyebrow */
.ind-eyebrow {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 44px;
}
.ind-eyebrow-bars {
  display: flex;
  align-items: flex-end;
  gap: 3px;
  height: 22px;
}
.ind-eyebrow-bars span {
  display: block;
  width: 4px;
  border-radius: 2px;
  background: #E7873F;
  animation: indBarPop 1.1s ease-in-out infinite alternate;
  transform-origin: bottom;
}
.ind-eyebrow-bars span:nth-child(1)  { height: 55%; animation-delay: .00s; }
.ind-eyebrow-bars span:nth-child(2)  { height: 80%; animation-delay: .08s; }
.ind-eyebrow-bars span:nth-child(3)  { height:100%; animation-delay: .16s; }
.ind-eyebrow-bars span:nth-child(4)  { height: 68%; animation-delay: .24s; }
.ind-eyebrow-bars span:nth-child(5)  { height: 88%; animation-delay: .32s; }
.ind-eyebrow-bars span:nth-child(6)  { height: 50%; animation-delay: .40s; }
.ind-eyebrow-bars span:nth-child(7)  { height: 62%; animation-delay: .48s; }
.ind-eyebrow-bars span:nth-child(8)  { height: 30%; animation-delay: .56s; }
.ind-eyebrow-bars span:nth-child(9)  { height: 22%; animation-delay: .64s; }
.ind-eyebrow-bars span:nth-child(10) { height: 26%; animation-delay: .72s; }
.ind-eyebrow-bars span:nth-child(11) { height: 46%; animation-delay: .80s; }
@keyframes indBarPop {
  from { transform: scaleY(.35); }
  to   { transform: scaleY(1); }
}
.ind-eyebrow-text {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #347F98;
}

/* Hero headline + desc */
.ind-hero-content {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 48px;
}
.ind-headline {
  flex: 0 0 auto;
  margin: 0;
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 500;
  line-height: 0.96;
  letter-spacing: -2px;
}
.ind-headline .hl-dark {
  display: block;
  font-size: 90px;
  color: #0C0F16;
}
.ind-headline .hl-orange {
  display: block;
  font-size: 90px;
  font-style: italic;
  color: #E7873F;
}
/* Description is teal — key difference from solutions page */
.ind-hero-desc {
  flex: 0 0 300px;
  margin: 0 0 10px;
  font-family: 'Inter', sans-serif;
  font-size: 15.5px;
  line-height: 1.65;
  color: #347F98;
}

/* ═══════════════════════════════════════════════
   SECTOR PANELS
═══════════════════════════════════════════════ */
.ind-sector {
  padding: 80px 0;
}
.ind-sector:nth-child(odd)  { background: #ffffff; }
.ind-sector:nth-child(even) { background: #F7F5F3; }

.ind-sector-inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 80px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 72px;
}

/* ── Image column ── */
.ind-sector-img {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: #d0cdc9;
}
.ind-sector-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Gradient overlay with sector label + name */
.ind-sector-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 45%, rgba(10,12,18,0.82) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px 28px 26px;
}
.ind-sector-num {
  font-family: 'Inter', sans-serif;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  margin-bottom: 6px;
}
.ind-sector-name {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 500;
  font-size: 34px;
  color: #ffffff;
  line-height: 1.1;
  margin: 0;
}

/* Counter badge on image */
.ind-sector-counter {
  position: absolute;
  top: 18px;
  left: 18px;
  z-index: 2;
  background: rgba(255,255,255,0.18);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-radius: 999px;
  padding: 5px 14px;
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 600;
  color: #fff;
  letter-spacing: 0.3px;
}

/* Placeholder art */
.ind-sector-img .ph {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 10px;
}
.ind-sector-img .ph svg   { opacity: .28; }
.ind-sector-img .ph span  {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: #9b9894;
}

/* ── Content column ── */
.ind-sector-body {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.ind-sector-badge {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}
.ind-sector-badge-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #FBE3CF;
  color: #E7873F;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.ind-sector-badge-label {
  font-family: 'Inter', sans-serif;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #5B5A5D;
}

/* Teal description — key design detail */
.ind-sector-desc {
  margin: 0 0 24px;
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  line-height: 1.65;
  color: #347F98;
  font-weight: 400;
}

/* Bullets with orange arrow + divider line under each */
.ind-sector-bullets {
  list-style: none;
  margin: 0 0 34px;
  padding: 0;
  width: 100%;
}
.ind-sector-bullets li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid #D9D6D2;
  font-family: 'Inter', sans-serif;
  font-size: 14.5px;
  font-weight: 500;
  color: #0C0F16;
  line-height: 1.35;
}
.ind-sector-bullets li:first-child {
  border-top: 1px solid #D9D6D2;
}
.ind-arrow {
  flex-shrink: 0;
  color: #E7873F;
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
}

.ind-sector-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #0C0F16;
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-size: 14.5px;
  font-weight: 600;
  padding: 13px 26px;
  border-radius: 999px;
  text-decoration: none;
  transition: background .2s, transform .15s;
  letter-spacing: 0.1px;
}
.ind-sector-cta:hover { background: #347F98; transform: translateY(-1px); }

/* Tint per sector placeholder */
.ind-sector:nth-child(1) .ind-sector-img { background: #c8d4d8; }
.ind-sector:nth-child(2) .ind-sector-img { background: #d8d0c8; }
.ind-sector:nth-child(3) .ind-sector-img { background: #1a1a2e; }
.ind-sector:nth-child(4) .ind-sector-img { background: #c8d8d0; }
.ind-sector:nth-child(5) .ind-sector-img { background: #d8ccd4; }
.ind-sector:nth-child(6) .ind-sector-img { background: #d0d4c8; }

/* ── Responsive ── */
@media (max-width: 1100px) {
  .ind-headline .hl-dark,
  .ind-headline .hl-orange { font-size: 68px; }
  .ind-hero-inner,
  .ind-sector-inner { padding-left: 40px; padding-right: 40px; }
  .ind-sector-inner { gap: 48px; }
  .ind-sector-name { font-size: 28px; }
}
@media (max-width: 820px) {
  .ind-hero-content { flex-wrap: wrap; align-items: flex-start; }
  .ind-hero-desc { flex: 1 1 100%; }
  .ind-sector-inner { grid-template-columns: 1fr; }
  .ind-sector-name { font-size: 26px; }
}
@media (max-width: 560px) {
  .ind-hero-inner  { padding: 40px 20px 0; }
  .ind-sector-inner { padding: 0 20px; }
  .ind-headline .hl-dark,
  .ind-headline .hl-orange { font-size: 44px; letter-spacing: -1px; }
}



/* ═══════════════════════════════════════════════
   VOICE BOT PAGE — DARK NAV + HERO
═══════════════════════════════════════════════ */

/* ── Nav: dark initial state ── */
.vb-nav {
  background: #0C0F16 !important;
  border-bottom: 1px solid rgba(255,255,255,0.07) !important;
  transition: background 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}
.vb-nav .nav-links a {
  color: rgba(255,255,255,0.72) !important;
}
.vb-nav .nav-links a:hover {
  color: #fff !important;
}
.vb-nav .nav-links a.active {
  color: #E7873F !important;
  font-weight: 600;
}
.vb-nav .nav-cta {
  background: #E7873F !important;
  color: #fff !important;
}
.vb-nav .nav-cta:hover {
  background: #cf7432 !important;
}

/* ── Nav: scrolled → cream (standard) ── */
.vb-nav.is-scrolled {
  background: rgba(247,245,243,0.97) !important;
  border-bottom-color: rgba(0,0,0,0.07) !important;
  box-shadow: 0 1px 24px rgba(0,0,0,0.07) !important;
}
.vb-nav.is-scrolled .nav-links a {
  color: #5B5A5D !important;
}
.vb-nav.is-scrolled .nav-links a:hover {
  color: #0C0F16 !important;
}
.vb-nav.is-scrolled .nav-links a.active {
  color: #E7873F !important;
}
.vb-nav.is-scrolled .nav-cta {
  background: #0C0F16 !important;
  color: #fff !important;
}
.vb-nav.is-scrolled .nav-cta:hover {
  background: #347F98 !important;
}

/* ── HERO ── */
.vb-hero {
  background: #0C0F16;
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.vb-hero-inner {
  flex: 1;
  max-width: 1400px;
  margin: 0 auto;
  width: 100%;
  padding: 72px 80px 0;
  display: flex;
  flex-direction: column;
}

/* Eyebrow */
.vb-eyebrow {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 48px;
}
.vb-eyebrow-bars {
  display: flex;
  align-items: flex-end;
  gap: 3px;
  height: 22px;
}
.vb-eyebrow-bars span {
  display: block;
  width: 4px;
  border-radius: 2px;
  background: #E7873F;
  animation: vbBarPop 1.1s ease-in-out infinite alternate;
  transform-origin: bottom;
}
.vb-eyebrow-bars span:nth-child(1)  { height: 55%; animation-delay: .00s; }
.vb-eyebrow-bars span:nth-child(2)  { height: 80%; animation-delay: .08s; }
.vb-eyebrow-bars span:nth-child(3)  { height:100%; animation-delay: .16s; }
.vb-eyebrow-bars span:nth-child(4)  { height: 68%; animation-delay: .24s; }
.vb-eyebrow-bars span:nth-child(5)  { height: 88%; animation-delay: .32s; }
.vb-eyebrow-bars span:nth-child(6)  { height: 50%; animation-delay: .40s; }
.vb-eyebrow-bars span:nth-child(7)  { height: 62%; animation-delay: .48s; }
.vb-eyebrow-bars span:nth-child(8)  { height: 30%; animation-delay: .56s; }
.vb-eyebrow-bars span:nth-child(9)  { height: 22%; animation-delay: .64s; }
.vb-eyebrow-bars span:nth-child(10) { height: 26%; animation-delay: .72s; }
.vb-eyebrow-bars span:nth-child(11) { height: 46%; animation-delay: .80s; }
@keyframes vbBarPop {
  from { transform: scaleY(.35); }
  to   { transform: scaleY(1); }
}
.vb-eyebrow-text {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #E7873F;
}

/* Headline + right content row */
.vb-hero-content {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 48px;
  flex: 1;
  padding-bottom: 0;
}

.vb-headline {
  flex: 0 0 auto;
  margin: 0;
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 500;
  line-height: 0.96;
  letter-spacing: -2px;
}
.vb-headline .hl-white {
  display: block;
  font-size: 96px;
  color: #ffffff;
}
.vb-headline .hl-orange {
  display: block;
  font-size: 96px;
  font-style: italic;
  color: #E7873F;
}

/* Right side */
.vb-hero-right {
  flex: 0 0 360px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 28px;
  padding-bottom: 16px;
}
.vb-hero-desc {
  margin: 0;
  font-family: 'Inter', sans-serif;
  font-size: 17px;
  line-height: 1.65;
  color: rgba(255,255,255,0.72);
}
.vb-hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: #E7873F;
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 600;
  padding: 14px 28px;
  border-radius: 999px;
  text-decoration: none;
  transition: background .2s, transform .15s;
  letter-spacing: 0.1px;
}
.vb-hero-cta:hover { background: #cf7432; transform: translateY(-1px); }
.vb-hero-link {
  font-family: 'Inter', sans-serif;
  font-size: 13.5px;
  font-weight: 500;
  color: rgba(255,255,255,0.45);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: color .2s;
  margin-top: -10px;
}
.vb-hero-link:hover { color: rgba(255,255,255,0.75); }

/* ── Bottom Waveform ── */
.vb-waveform {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  padding: 0 40px;
  margin-top: 32px;
  overflow: hidden;
}

.vb-waveform-bars {
  display: flex;
  align-items: flex-end;
  gap: 5px;
}

.vb-waveform-bars span {
  display: block;
  width: 10px;
  border-radius: 3px 3px 0 0;
  background: #E7873F;
  animation: waveBar 1.2s ease-in-out infinite alternate;
  transform-origin: bottom;
}

@keyframes waveBar {
  from { transform: scaleY(0.3); opacity: 0.7; }
  to   { transform: scaleY(1);   opacity: 1; }
}

/* Individual bar heights & delays — mimic the screenshot waveform shape */
.vb-waveform-bars span:nth-child(1)  { height: 28px;  animation-delay: .00s; }
.vb-waveform-bars span:nth-child(2)  { height: 44px;  animation-delay: .04s; }
.vb-waveform-bars span:nth-child(3)  { height: 62px;  animation-delay: .08s; }
.vb-waveform-bars span:nth-child(4)  { height: 88px;  animation-delay: .12s; }
.vb-waveform-bars span:nth-child(5)  { height: 110px; animation-delay: .16s; }
.vb-waveform-bars span:nth-child(6)  { height: 140px; animation-delay: .20s; }
.vb-waveform-bars span:nth-child(7)  { height: 170px; animation-delay: .24s; }
.vb-waveform-bars span:nth-child(8)  { height: 148px; animation-delay: .28s; }
.vb-waveform-bars span:nth-child(9)  { height: 185px; animation-delay: .32s; }
.vb-waveform-bars span:nth-child(10) { height: 200px; animation-delay: .36s; }
.vb-waveform-bars span:nth-child(11) { height: 178px; animation-delay: .40s; }
.vb-waveform-bars span:nth-child(12) { height: 210px; animation-delay: .44s; }
.vb-waveform-bars span:nth-child(13) { height: 195px; animation-delay: .48s; }
.vb-waveform-bars span:nth-child(14) { height: 220px; animation-delay: .52s; }
.vb-waveform-bars span:nth-child(15) { height: 200px; animation-delay: .56s; }
.vb-waveform-bars span:nth-child(16) { height: 185px; animation-delay: .60s; }
.vb-waveform-bars span:nth-child(17) { height: 160px; animation-delay: .64s; }
.vb-waveform-bars span:nth-child(18) { height: 175px; animation-delay: .68s; }
.vb-waveform-bars span:nth-child(19) { height: 145px; animation-delay: .72s; }
.vb-waveform-bars span:nth-child(20) { height: 130px; animation-delay: .76s; }
.vb-waveform-bars span:nth-child(21) { height: 115px; animation-delay: .80s; }
.vb-waveform-bars span:nth-child(22) { height: 95px;  animation-delay: .84s; }
.vb-waveform-bars span:nth-child(23) { height: 78px;  animation-delay: .88s; }
.vb-waveform-bars span:nth-child(24) { height: 58px;  animation-delay: .92s; }
.vb-waveform-bars span:nth-child(25) { height: 105px; animation-delay: .96s; }
.vb-waveform-bars span:nth-child(26) { height: 130px; animation-delay: 1.00s; }
.vb-waveform-bars span:nth-child(27) { height: 155px; animation-delay: 1.04s; }
.vb-waveform-bars span:nth-child(28) { height: 175px; animation-delay: 1.08s; }
.vb-waveform-bars span:nth-child(29) { height: 160px; animation-delay: 1.12s; }
.vb-waveform-bars span:nth-child(30) { height: 140px; animation-delay: 1.16s; }
.vb-waveform-bars span:nth-child(31) { height: 120px; animation-delay: 1.20s; }
.vb-waveform-bars span:nth-child(32) { height: 96px;  animation-delay: 1.24s; }
.vb-waveform-bars span:nth-child(33) { height: 72px;  animation-delay: 1.28s; }
.vb-waveform-bars span:nth-child(34) { height: 52px;  animation-delay: 1.32s; }
.vb-waveform-bars span:nth-child(35) { height: 35px;  animation-delay: 1.36s; }
.vb-waveform-bars span:nth-child(36) { height: 22px;  animation-delay: 1.40s; }
.vb-waveform-bars span:nth-child(37) { height: 42px;  animation-delay: 1.44s; }
.vb-waveform-bars span:nth-child(38) { height: 65px;  animation-delay: 1.48s; }
.vb-waveform-bars span:nth-child(39) { height: 88px;  animation-delay: 1.52s; }
.vb-waveform-bars span:nth-child(40) { height: 110px; animation-delay: 1.56s; }
.vb-waveform-bars span:nth-child(41) { height: 85px;  animation-delay: 1.60s; }
.vb-waveform-bars span:nth-child(42) { height: 60px;  animation-delay: 1.64s; }
.vb-waveform-bars span:nth-child(43) { height: 40px;  animation-delay: 1.68s; }
.vb-waveform-bars span:nth-child(44) { height: 24px;  animation-delay: 1.72s; }

/* ── Responsive ── */
@media (max-width: 1100px) {
  .vb-headline .hl-white,
  .vb-headline .hl-orange { font-size: 72px; }
  .vb-hero-inner { padding: 60px 40px 0; }
  .vb-waveform-bars span { width: 8px; gap: 4px; }
}
@media (max-width: 820px) {
  .vb-hero-content { flex-wrap: wrap; align-items: flex-start; gap: 36px; }
  .vb-hero-right { flex: 1 1 100%; }
  .vb-headline .hl-white,
  .vb-headline .hl-orange { font-size: 54px; }
}
@media (max-width: 560px) {
  .vb-hero-inner { padding: 44px 20px 0; }
  .vb-headline .hl-white,
  .vb-headline .hl-orange { font-size: 38px; letter-spacing: -1px; }
  .vb-waveform { padding: 0 10px; }
  .vb-waveform-bars span { width: 6px; }
}


/* ── Capabilities section ── */
.vb-caps-section {
  background: #F7F5F3;
  padding: 96px 0 100px;
}
.vb-caps-inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 80px;
}
.vb-caps-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 48px;
  margin-bottom: 56px;
}
.vb-caps-left { flex: 0 0 auto; }
.vb-caps-eyebrow {
  font-family: 'Inter', sans-serif;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #347F98;
  margin: 0 0 16px;
}
.vb-caps-headline {
  margin: 0;
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 500;
  font-size: 52px;
  line-height: 1.05;
  letter-spacing: -1px;
  color: #0C0F16;
}
.vb-caps-headline em {
  font-style: italic;
  color: #E7873F;
}
.vb-caps-desc {
  flex: 0 0 380px;
  margin: 44px 0 0;
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  line-height: 1.65;
  color: #347F98;
}

/* 3-col card grid */
.vb-caps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.vb-cap-card {
  background: #fff;
  border: 1px solid #D9D6D2;
  border-radius: 14px;
  padding: 28px 28px 32px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.vb-cap-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}
.vb-cap-card-icon {
  color: #347F98;
  display: flex;
  align-items: center;
}
.vb-cap-card-num {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1px;
  color: #B7B4AF;
}
.vb-cap-card-title {
  margin: 0 0 10px;
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 500;
  font-size: 22px;
  line-height: 1.15;
  color: #0C0F16;
  letter-spacing: -0.2px;
}
.vb-cap-card-desc {
  margin: 0;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  line-height: 1.62;
  color: #347F98;
}

/* ── Use Cases section ── */
.vb-usecases-section {
  background: #F7F5F3;
  border-top: 1px solid #D9D6D2;
  padding: 88px 0 96px;
}
.vb-usecases-inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 80px;
}
.vb-usecases-headline {
  margin: 0 0 40px;
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 500;
  font-size: 52px;
  line-height: 1.05;
  letter-spacing: -1px;
  color: #0C0F16;
}
.vb-usecases-headline em {
  font-style: italic;
  color: #E7873F;
}
.vb-usecases-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.vb-tag {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: #0C0F16;
  background: transparent;
  border: 1px solid #C8C4BF;
  border-radius: 999px;
  padding: 9px 20px;
  letter-spacing: 0.1px;
  white-space: nowrap;
}

/* Responsive */
@media (max-width: 1100px) {
  .vb-caps-inner,
  .vb-usecases-inner { padding: 0 40px; }
  .vb-caps-headline,
  .vb-usecases-headline { font-size: 40px; }
}
@media (max-width: 820px) {
  .vb-caps-header { flex-wrap: wrap; }
  .vb-caps-desc { flex: 1 1 100%; margin-top: 20px; }
  .vb-caps-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .vb-caps-inner,
  .vb-usecases-inner { padding: 0 20px; }
  .vb-caps-grid { grid-template-columns: 1fr; }
  .vb-caps-headline,
  .vb-usecases-headline { font-size: 32px; }
}


/* ═══════════════════════════════════════════════
   VOICE BOT PAGE — DARK NAV + HERO
═══════════════════════════════════════════════ */

/* ── Nav: dark initial state ── */
.vb-nav {
  background: #0C0F16 !important;
  border-bottom: 1px solid rgba(255,255,255,0.07) !important;
  transition: background 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}
.vb-nav .nav-links a {
  color: rgba(255,255,255,0.72) !important;
}
.vb-nav .nav-links a:hover {
  color: #fff !important;
}
.vb-nav .nav-links a.active {
  color: #E7873F !important;
  font-weight: 600;
}
.vb-nav .nav-cta {
  background: #E7873F !important;
  color: #fff !important;
}
.vb-nav .nav-cta:hover {
  background: #cf7432 !important;
}

/* ── Nav: scrolled → cream (standard) ── */
.vb-nav.is-scrolled {
  background: rgba(247,245,243,0.97) !important;
  border-bottom-color: rgba(0,0,0,0.07) !important;
  box-shadow: 0 1px 24px rgba(0,0,0,0.07) !important;
}
.vb-nav.is-scrolled .nav-links a {
  color: #5B5A5D !important;
}
.vb-nav.is-scrolled .nav-links a:hover {
  color: #0C0F16 !important;
}
.vb-nav.is-scrolled .nav-links a.active {
  color: #E7873F !important;
}
.vb-nav.is-scrolled .nav-cta {
  background: #0C0F16 !important;
  color: #fff !important;
}
.vb-nav.is-scrolled .nav-cta:hover {
  background: #347F98 !important;
}

/* ── HERO ── */
.vb-hero {
  background: #0C0F16;
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.vb-hero-inner {
  flex: 1;
  max-width: 1400px;
  margin: 0 auto;
  width: 100%;
  padding: 72px 80px 0;
  display: flex;
  flex-direction: column;
}

/* Eyebrow */
.vb-eyebrow {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 48px;
}
.vb-eyebrow-bars {
  display: flex;
  align-items: flex-end;
  gap: 3px;
  height: 22px;
}
.vb-eyebrow-bars span {
  display: block;
  width: 4px;
  border-radius: 2px;
  background: #E7873F;
  animation: vbBarPop 1.1s ease-in-out infinite alternate;
  transform-origin: bottom;
}
.vb-eyebrow-bars span:nth-child(1)  { height: 55%; animation-delay: .00s; }
.vb-eyebrow-bars span:nth-child(2)  { height: 80%; animation-delay: .08s; }
.vb-eyebrow-bars span:nth-child(3)  { height:100%; animation-delay: .16s; }
.vb-eyebrow-bars span:nth-child(4)  { height: 68%; animation-delay: .24s; }
.vb-eyebrow-bars span:nth-child(5)  { height: 88%; animation-delay: .32s; }
.vb-eyebrow-bars span:nth-child(6)  { height: 50%; animation-delay: .40s; }
.vb-eyebrow-bars span:nth-child(7)  { height: 62%; animation-delay: .48s; }
.vb-eyebrow-bars span:nth-child(8)  { height: 30%; animation-delay: .56s; }
.vb-eyebrow-bars span:nth-child(9)  { height: 22%; animation-delay: .64s; }
.vb-eyebrow-bars span:nth-child(10) { height: 26%; animation-delay: .72s; }
.vb-eyebrow-bars span:nth-child(11) { height: 46%; animation-delay: .80s; }
@keyframes vbBarPop {
  from { transform: scaleY(.35); }
  to   { transform: scaleY(1); }
}
.vb-eyebrow-text {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #E7873F;
}

/* Headline + right content row */
.vb-hero-content {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 48px;
  flex: 1;
  padding-bottom: 0;
}

.vb-headline {
  flex: 0 0 auto;
  margin: 0;
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 500;
  line-height: 0.96;
  letter-spacing: -2px;
}
.vb-headline .hl-white {
  display: block;
  font-size: 96px;
  color: #ffffff;
}
.vb-headline .hl-orange {
  display: block;
  font-size: 96px;
  font-style: italic;
  color: #E7873F;
}

/* Right side */
.vb-hero-right {
  flex: 0 0 360px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 28px;
  padding-bottom: 16px;
}
.vb-hero-desc {
  margin: 0;
  font-family: 'Inter', sans-serif;
  font-size: 17px;
  line-height: 1.65;
  color: rgba(255,255,255,0.72);
}
.vb-hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: #E7873F;
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 600;
  padding: 14px 28px;
  border-radius: 999px;
  text-decoration: none;
  transition: background .2s, transform .15s;
  letter-spacing: 0.1px;
}
.vb-hero-cta:hover { background: #cf7432; transform: translateY(-1px); }
.vb-hero-link {
  font-family: 'Inter', sans-serif;
  font-size: 13.5px;
  font-weight: 500;
  color: rgba(255,255,255,0.45);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: color .2s;
  margin-top: -10px;
}
.vb-hero-link:hover { color: rgba(255,255,255,0.75); }

/* ── Bottom Waveform ── */
.vb-waveform {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  padding: 0 40px;
  margin-top: 32px;
  overflow: hidden;
}

.vb-waveform-bars {
  display: flex;
  align-items: flex-end;
  gap: 5px;
}

.vb-waveform-bars span {
  display: block;
  width: 10px;
  border-radius: 3px 3px 0 0;
  background: #E7873F;
  animation: waveBar 1.2s ease-in-out infinite alternate;
  transform-origin: bottom;
}

@keyframes waveBar {
  from { transform: scaleY(0.3); opacity: 0.7; }
  to   { transform: scaleY(1);   opacity: 1; }
}

/* Individual bar heights & delays — mimic the screenshot waveform shape */
.vb-waveform-bars span:nth-child(1)  { height: 28px;  animation-delay: .00s; }
.vb-waveform-bars span:nth-child(2)  { height: 44px;  animation-delay: .04s; }
.vb-waveform-bars span:nth-child(3)  { height: 62px;  animation-delay: .08s; }
.vb-waveform-bars span:nth-child(4)  { height: 88px;  animation-delay: .12s; }
.vb-waveform-bars span:nth-child(5)  { height: 110px; animation-delay: .16s; }
.vb-waveform-bars span:nth-child(6)  { height: 140px; animation-delay: .20s; }
.vb-waveform-bars span:nth-child(7)  { height: 170px; animation-delay: .24s; }
.vb-waveform-bars span:nth-child(8)  { height: 148px; animation-delay: .28s; }
.vb-waveform-bars span:nth-child(9)  { height: 185px; animation-delay: .32s; }
.vb-waveform-bars span:nth-child(10) { height: 200px; animation-delay: .36s; }
.vb-waveform-bars span:nth-child(11) { height: 178px; animation-delay: .40s; }
.vb-waveform-bars span:nth-child(12) { height: 210px; animation-delay: .44s; }
.vb-waveform-bars span:nth-child(13) { height: 195px; animation-delay: .48s; }
.vb-waveform-bars span:nth-child(14) { height: 220px; animation-delay: .52s; }
.vb-waveform-bars span:nth-child(15) { height: 200px; animation-delay: .56s; }
.vb-waveform-bars span:nth-child(16) { height: 185px; animation-delay: .60s; }
.vb-waveform-bars span:nth-child(17) { height: 160px; animation-delay: .64s; }
.vb-waveform-bars span:nth-child(18) { height: 175px; animation-delay: .68s; }
.vb-waveform-bars span:nth-child(19) { height: 145px; animation-delay: .72s; }
.vb-waveform-bars span:nth-child(20) { height: 130px; animation-delay: .76s; }
.vb-waveform-bars span:nth-child(21) { height: 115px; animation-delay: .80s; }
.vb-waveform-bars span:nth-child(22) { height: 95px;  animation-delay: .84s; }
.vb-waveform-bars span:nth-child(23) { height: 78px;  animation-delay: .88s; }
.vb-waveform-bars span:nth-child(24) { height: 58px;  animation-delay: .92s; }
.vb-waveform-bars span:nth-child(25) { height: 105px; animation-delay: .96s; }
.vb-waveform-bars span:nth-child(26) { height: 130px; animation-delay: 1.00s; }
.vb-waveform-bars span:nth-child(27) { height: 155px; animation-delay: 1.04s; }
.vb-waveform-bars span:nth-child(28) { height: 175px; animation-delay: 1.08s; }
.vb-waveform-bars span:nth-child(29) { height: 160px; animation-delay: 1.12s; }
.vb-waveform-bars span:nth-child(30) { height: 140px; animation-delay: 1.16s; }
.vb-waveform-bars span:nth-child(31) { height: 120px; animation-delay: 1.20s; }
.vb-waveform-bars span:nth-child(32) { height: 96px;  animation-delay: 1.24s; }
.vb-waveform-bars span:nth-child(33) { height: 72px;  animation-delay: 1.28s; }
.vb-waveform-bars span:nth-child(34) { height: 52px;  animation-delay: 1.32s; }
.vb-waveform-bars span:nth-child(35) { height: 35px;  animation-delay: 1.36s; }
.vb-waveform-bars span:nth-child(36) { height: 22px;  animation-delay: 1.40s; }
.vb-waveform-bars span:nth-child(37) { height: 42px;  animation-delay: 1.44s; }
.vb-waveform-bars span:nth-child(38) { height: 65px;  animation-delay: 1.48s; }
.vb-waveform-bars span:nth-child(39) { height: 88px;  animation-delay: 1.52s; }
.vb-waveform-bars span:nth-child(40) { height: 110px; animation-delay: 1.56s; }
.vb-waveform-bars span:nth-child(41) { height: 85px;  animation-delay: 1.60s; }
.vb-waveform-bars span:nth-child(42) { height: 60px;  animation-delay: 1.64s; }
.vb-waveform-bars span:nth-child(43) { height: 40px;  animation-delay: 1.68s; }
.vb-waveform-bars span:nth-child(44) { height: 24px;  animation-delay: 1.72s; }

/* ── Responsive ── */
@media (max-width: 1100px) {
  .vb-headline .hl-white,
  .vb-headline .hl-orange { font-size: 72px; }
  .vb-hero-inner { padding: 60px 40px 0; }
  .vb-waveform-bars span { width: 8px; gap: 4px; }
}
@media (max-width: 820px) {
  .vb-hero-content { flex-wrap: wrap; align-items: flex-start; gap: 36px; }
  .vb-hero-right { flex: 1 1 100%; }
  .vb-headline .hl-white,
  .vb-headline .hl-orange { font-size: 54px; }
}
@media (max-width: 560px) {
  .vb-hero-inner { padding: 44px 20px 0; }
  .vb-headline .hl-white,
  .vb-headline .hl-orange { font-size: 38px; letter-spacing: -1px; }
  .vb-waveform { padding: 0 10px; }
  .vb-waveform-bars span { width: 6px; }
}


  /* ================= TRANSPARENT-TO-SOLID NAV (this page only) ================= */

  .nav-hero-dark {
    background: transparent;
    border-bottom: 1px solid rgba(255,255,255,0.10);
    transition: background 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  }

  .nav-hero-dark .nav-links a {
    color: rgba(255,255,255,0.88);
  }

  .nav-hero-dark .nav-links a:hover { color: var(--orange); }

  .nav-hero-dark .nav-cta.btn-dark {
    background: var(--orange);
  }

  .nav-hero-dark .nav-cta.btn-dark:hover {
    background: #d97935;
  }

  /* Once scrolled, fall back to the standard site header look */
  .nav-hero-dark.is-scrolled {
    background: rgba(247, 245, 243, 0.92);
    border-bottom-color: var(--grid-line);
  }

  .nav-hero-dark.is-scrolled .nav-links a {
    color: #2c2c2e;
  }

  .nav-hero-dark.is-scrolled .nav-links a:hover { color: var(--teal); }

  .nav-hero-dark.is-scrolled .nav-cta.btn-dark {
    background: var(--ink);
  }

  .nav-hero-dark.is-scrolled .nav-cta.btn-dark:hover {
    background: #1d2230;
  }

  /* ================= IGAMING HERO ================= */

  .ig-hero {
    position: relative;
    overflow: hidden;
    background:
      radial-gradient(1100px 520px at 82% 8%, rgba(231, 135, 63, 0.10), transparent 60%),
      radial-gradient(900px 500px at 6% 92%, rgba(52, 127, 152, 0.10), transparent 55%),
      linear-gradient(160deg, #0b0d13 0%, #0d1017 55%, #0a0c11 100%);
    margin-top: -79px;
    padding-top: 79px;
  }

  .ig-hero-inner {
    position: relative;
    max-width: 1400px;
    margin: 0 auto;
    padding: 118px 40px 140px;
  }

  .ig-eyebrow {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 44px;
  }

  .ig-eyebrow-text {
    font-size: 12.5px;
    font-weight: 600;
    letter-spacing: 1.6px;
    color: var(--orange);
    text-transform: uppercase;
  }

  .ig-hero-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 60px;
  }

  .ig-hero-copy { flex: 1 1 auto; min-width: 0; }

  .ig-headline {
    margin: 0;
    font-family: var(--font-display);
    font-weight: 500;
    line-height: 1.02;
    letter-spacing: -0.5px;
  }

  .ig-headline .line {
    display: block;
    white-space: nowrap;
  }

  .ig-line-white {
    font-size: 80px;
    color: #fff;
    font-weight: 500;
  }

  .ig-line-orange {
    margin-top: 6px;
    font-style: italic;
    font-weight: 500;
    font-size: 92px;
    color: var(--orange);
  }

  .ig-hero-side {
    flex: 0 0 320px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 28px;
  }

  .ig-hero-desc {
    margin: 0;
    font-size: 16.5px;
    line-height: 1.6;
    color: rgba(255,255,255,0.68);
  }

  .btn-ig-cta {
    background: var(--orange);
    color: #fff;
  }

  .btn-ig-cta:hover {
    background: #d97935;
    transform: translateY(-1px);
  }

  @media (max-width: 1180px) {
    .ig-line-white { font-size: 60px; }
    .ig-line-orange { font-size: 68px; }
  }

  @media (max-width: 980px) {
    .ig-hero-row { flex-direction: column; align-items: flex-start; gap: 44px; }
    .ig-hero-side { flex: 1 1 auto; }
  }

  @media (max-width: 640px) {
    .ig-line-white { font-size: 40px; white-space: normal; }
    .ig-line-orange { font-size: 46px; white-space: normal; }
    .ig-hero-inner { padding: 96px 24px 100px; }
  }

  /* ================= STATS STRIP ================= */

  .ig-stats-strip {
    background: #fff;
    border-top: 1px solid var(--grid-line);
    border-bottom: 1px solid var(--grid-line);
  }

  .ig-stats-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
  }

  .ig-stat {
    padding: 44px 36px;
    border-left: 1px solid var(--grid-line);
  }

  .ig-stat:first-child { border-left: none; padding-left: 0; }

  .ig-stat-num {
    margin: 0 0 12px;
    font-family: var(--font-display);
    font-weight: 500;
    font-size: 40px;
    color: var(--orange);
    letter-spacing: -0.5px;
  }

  .ig-stat-label {
    margin: 0;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    color: var(--gray-text);
    text-transform: uppercase;
  }

  @media (max-width: 900px) {
    .ig-stats-inner { grid-template-columns: repeat(2, 1fr); }
    .ig-stat:nth-child(3) { border-left: none; }
  }

  @media (max-width: 560px) {
    .ig-stats-inner { grid-template-columns: 1fr; }
    .ig-stat { border-left: none !important; border-top: 1px solid var(--grid-line); padding-left: 0; }
    .ig-stat:first-child { border-top: none; }
  }

  /* ================= SIX LIVE FLOWS ================= */

  .ig-flows-section {
    background: var(--bg);
    padding: 96px 0 100px;
  }

  .ig-flows-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
  }

  .ig-flows-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 60px;
    margin-bottom: 52px;
  }

  .ig-flows-head-left { flex: 1 1 auto; min-width: 0; }

  .ig-flows-headline {
    margin: 0;
    font-family: var(--font-display);
    font-weight: 500;
    line-height: 1.12;
    letter-spacing: -0.5px;
  }

  .ig-flows-headline .fl-dark {
    display: block;
    font-size: 44px;
    color: var(--ink);
  }

  .ig-flows-headline .fl-accent {
    display: block;
    margin-top: 2px;
    font-style: italic;
    font-size: 44px;
    color: var(--orange);
  }

  .ig-flows-desc {
    flex: 0 0 320px;
    margin: 0 0 6px;
    font-size: 15px;
    line-height: 1.65;
    color: var(--gray-text);
  }

  .ig-flows-desc em {
    font-style: normal;
    font-weight: 600;
    color: var(--teal);
  }

  @media (max-width: 1080px) {
    .ig-flows-head { flex-direction: column; align-items: flex-start; gap: 24px; }
    .ig-flows-desc { flex: 1 1 auto; }
  }

  .ig-flows-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }

  .ig-flow-card {
    background: #fff;
    border: 1px solid var(--gray-border);
    border-radius: 14px;
    padding: 28px;
    display: flex;
    flex-direction: column;
    transition: transform 0.22s ease, box-shadow 0.22s ease;
  }

  .ig-flow-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 30px rgba(20, 20, 20, 0.06);
  }

  .ig-flow-card .card-icon { color: var(--orange); }

  .ig-flow-card .card-num {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.5px;
    color: #b5b3b0;
    opacity: 1;
  }

  .ig-flow-card .card-bottom h3 {
    margin: 22px 0 10px;
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 19px;
    color: var(--ink);
  }

  .ig-flow-card .card-bottom p {
    margin: 0;
    font-size: 13.5px;
    line-height: 1.6;
    color: var(--gray-text);
  }

  @media (max-width: 1080px) {
    .ig-flows-grid { grid-template-columns: repeat(2, 1fr); }
  }

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

  /* ================= TESTIMONIAL ================= */

  .ig-quote-section {
    background: var(--bg);
    padding: 100px 0;
    border-top: 1px solid var(--grid-line);
  }

  .ig-quote-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
  }

  .ig-quote-copy { flex: 1 1 auto; max-width: 620px; }

  .ig-quote-text {
    margin: 0 0 22px;
    font-family: var(--font-display);
    font-weight: 500;
    font-size: 27px;
    line-height: 1.45;
    color: var(--ink);
    letter-spacing: -0.1px;
  }

  .ig-quote-credit {
    font-size: 11.5px;
    font-weight: 700;
    letter-spacing: 1.2px;
    color: var(--orange);
    text-transform: uppercase;
  }

  .ig-quote-visual {
    flex: 0 0 244px;
    width: 244px;
    height: 244px;
    border: 1px solid var(--gray-border);
    background: #fff;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  @media (max-width: 900px) {
    .ig-quote-inner { flex-direction: column; align-items: flex-start; gap: 40px; }
    .ig-quote-visual { align-self: center; }
  }

  @media (max-width: 640px) {
    .ig-quote-text { font-size: 21px; }
  }



