/* ============================================================
   STUTI DIGITAL — style.css
   Design tokens
   bg-0 #08090B   bg-1 #0F1114   bg-2 #15171B
   line #1C1F24   line-2 #262A31
   ink-0 #ECEAE4  ink-1 #9CA0A8  ink-2 #6B7280
   signal (blue) #4F7CFF    confirm (green) #3DDC84
   ============================================================ */

/* ---- Reset & box model ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; font-family: inherit; }

/* ---- Custom properties ---- */
:root {
  --bg0: #08090B;
  --bg1: #0F1114;
  --bg2: #15171B;
  --line: #1C1F24;
  --line2: #262A31;
  --ink0: #ECEAE4;
  --ink1: #9CA0A8;
  --ink2: #6B7280;
  --signal: #4F7CFF;
  --signal-dim: rgba(79,124,255,0.12);
  --confirm: #3DDC84;
  --confirm-dim: rgba(61,220,132,0.10);
  --section-py: 120px;
  --container: 1240px;
  --radius-card: 14px;
  --radius-btn: 8px;
}

/* ---- Base ---- */
body {
  background: var(--bg0);
  color: var(--ink0);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 15px;
  line-height: 1.6;
  overflow-x: hidden;
  padding-bottom: 0;
}

.serif { font-family: 'Instrument Serif', serif; }
.serif-italic { font-family: 'Instrument Serif', serif; font-style: italic; }
.mono { font-family: 'JetBrains Mono', monospace; }

::selection { background: var(--signal); color: #08090B; }

/* ---- Container ---- */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 28px;
}

/* ---- Keyframes ---- */
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}
@keyframes wave {
  0%, 100% { transform: scaleY(0.25); }
  50% { transform: scaleY(1); }
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}
@keyframes countUp {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes pipelineReveal {
  from { opacity: 0; transform: translateX(-24px) scale(0.95); }
  to   { opacity: 1; transform: translateX(0) scale(1); }
}
@keyframes glow-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(79,124,255,0); }
  50% { box-shadow: 0 0 24px 4px rgba(79,124,255,0.18); }
}

/* ---- Reveal (Intersection Observer driven) ---- */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.7s cubic-bezier(.22,.61,.36,1), transform 0.7s cubic-bezier(.22,.61,.36,1);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: inherit;
  font-weight: 600;
  font-size: 14px;
  padding: 12px 22px;
  border-radius: var(--radius-btn);
  border: none;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, border-color 0.25s ease;
  white-space: nowrap;
}
.btn-primary {
  background: var(--signal);
  color: #fff;
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px -8px rgba(79,124,255,0.5);
}
.btn-primary:active { transform: scale(0.98); }
.btn-outline {
  background: transparent;
  border: 1px solid var(--line2);
  color: var(--ink0);
}
.btn-outline:hover {
  border-color: var(--signal);
  background: rgba(79,124,255,0.06);
}
.btn-lg { font-size: 14.5px; padding: 16px 28px; }
.btn-block { display: block; width: 100%; text-align: center; margin-top: 30px; }
.btn-wa { gap: 10px; }
.btn-wa i { font-size: 18px; }

/* ---- Eyebrow ---- */
.eyebrow {
  font-size: 11.5px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--signal);
  font-weight: 500;
  margin-bottom: 16px;
}

/* ---- Divider ---- */
.divider {
  height: 1px;
  background: var(--line);
  margin: 24px 0;
}

/* ---- Section layouts ---- */
.section { padding: var(--section-py) 0; }
.section-bg {
  background: var(--bg1);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.section-py { padding: var(--section-py) 0; }

/* ---- Section head ---- */
.section-head { margin-bottom: 56px; }
.section-head--center { text-align: center; }
.section-title {
  font-size: clamp(28px, 4vw, 46px);
  font-weight: 800;
  letter-spacing: -1.2px;
  line-height: 1.1;
  color: var(--ink0);
  max-width: 640px;
}
.section-head--center .section-title {
  max-width: 720px;
  margin: 0 auto;
}
.section-sub {
  font-size: 16px;
  color: var(--ink1);
  margin-top: 18px;
  max-width: 520px;
  line-height: 1.7;
}
.section-sub--center {
  max-width: 580px;
  margin: 18px auto 0;
}

/* ---- Service section header ---- */
.service-section-header {
  margin-bottom: 64px;
}
.ssh-eyebrow {
  font-size: 11.5px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--signal);
  font-weight: 500;
  margin-bottom: 14px;
}
.ssh-title {
  font-size: clamp(30px, 4.5vw, 50px);
  font-weight: 800;
  letter-spacing: -1.4px;
  line-height: 1.08;
  max-width: 760px;
  margin-bottom: 14px;
}

/* ---- Two column grid ---- */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.two-col--wide-left { grid-template-columns: 1.1fr 0.9fr; }
.two-col--narrow-left { grid-template-columns: 0.85fr 1.15fr; }
.two-col--reverse { direction: rtl; }
.two-col--reverse > * { direction: ltr; }

/* ============================================================
   NAV
   ============================================================ */
#nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(8,9,11,0.6);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid transparent;
  transition: background 0.4s ease, border-color 0.4s ease;
}
#nav.scrolled {
  background: rgba(8,9,11,0.92);
  border-bottom-color: var(--line);
}
.nav-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 28px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

/* Wordmark — no logo image */
.nav-wordmark {
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--ink0);
  transition: color 0.3s;
}
.nav-wordmark span {
  color: var(--signal);
  font-weight: 500;
}
.nav-logo:hover .nav-wordmark { color: #fff; }

.nav-links { display: flex; align-items: center; gap: 30px; }
.nav-link {
  font-size: 13.5px;
  color: var(--ink1);
  font-weight: 500;
  position: relative;
  transition: color 0.3s;
}
.nav-link::after {
  content: '';
  position: absolute;
  left: 0; right: 100%; bottom: -2px;
  height: 1px;
  background: var(--signal);
  transition: right 0.3s ease;
}
.nav-link:hover { color: var(--ink0); }
.nav-link:hover::after { right: 0; }

.nav-cta { font-size: 13.5px; padding: 10px 20px; }

/* Hamburger */
.hamburger {
  display: none;
  background: none;
  border: none;
  padding: 4px;
  width: 36px;
  height: 36px;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
}
.hamburger span {
  display: block;
  width: 20px;
  height: 1.5px;
  background: var(--ink0);
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile menu */
.mobile-menu {
  display: none;
  flex-direction: column;
  background: rgba(8,9,11,0.98);
  border-top: 1px solid var(--line);
  padding: 8px 24px 24px;
}
.mobile-menu.open { display: flex; }
.mobile-link {
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  font-size: 15px;
  color: var(--ink1);
  font-weight: 500;
}
.mobile-cta { margin-top: 16px; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 64px;
}

/* Map background */
.hero-map-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}
.hero-map-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.08;
  filter: grayscale(100%) brightness(0.6);
}

/* Canvas for particles */
#hero-canvas {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 2;
  padding-top: 80px;
  padding-bottom: 80px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 40px;
  max-width: var(--container);
}

/* Hero H1 typewriter */
.hero-h1 {
  font-size: clamp(40px, 7vw, 88px);
  font-weight: 800;
  letter-spacing: -2.5px;
  line-height: 1.0;
  color: var(--ink0);
  max-width: 900px;
}
.typewriter-wrap {
  display: block;
}
.typewriter-line {
  display: block;
  overflow: hidden;
  white-space: nowrap;
}
.typewriter-cursor {
  display: inline-block;
  width: 3px;
  height: 1em;
  vertical-align: text-bottom;
  background: var(--signal);
  margin-left: 4px;
  animation: blink 0.9s step-end infinite;
}
.typewriter-italic {
  font-family: 'Instrument Serif', serif;
  font-style: italic;
  color: var(--signal);
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* ============================================================
   TRUST STRIP
   ============================================================ */
.trust-strip {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--bg1);
}
.trust-grid {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 28px;
  display: grid;
}
.trust-grid--3 {
  grid-template-columns: repeat(3, 1fr);
}
.trust-grid--4 {
  grid-template-columns: repeat(4, 1fr);
}
.trust-cell {
  padding: 44px 32px;
  border-right: 1px solid var(--line);
  position: relative;
}
.trust-cell--last { border-right: none; }
.trust-num {
  font-size: clamp(44px, 6vw, 72px);
  font-weight: 700;
  letter-spacing: -2px;
  line-height: 1;
  color: var(--ink0);
  animation: countUp 0.6s ease both;
}
.trust-label {
  font-size: 14px;
  font-weight: 600;
  color: var(--ink1);
  margin-top: 8px;
}
.trust-sublabel {
  font-size: 11px;
  color: var(--signal);
  margin-top: 4px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* ============================================================
   LEAD GEN — Process list & card
   ============================================================ */
.process-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.process-item {
  display: flex;
  gap: 20px;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
  align-items: flex-start;
  transition: background 0.3s;
}
.process-item:last-child { border-bottom: none; }
.process-num {
  font-size: 11px;
  color: var(--signal);
  min-width: 24px;
  padding-top: 2px;
}
.process-title {
  font-size: 14.5px;
  font-weight: 700;
  color: var(--ink0);
  margin-bottom: 4px;
}
.process-desc {
  font-size: 13.5px;
  color: var(--ink2);
  line-height: 1.65;
}

/* Sticky info card */
.sticky-card {
  position: sticky;
  top: 84px;
}
.leadgen-info-card {
  background: var(--bg1);
  border: 1px solid var(--line2);
  border-radius: var(--radius-card);
  padding: 30px 28px;
}
.leadgen-timeline {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.lt-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 14px 0;
}
.lt-badge {
  border-radius: 6px;
  padding: 4px 8px;
  font-size: 11px;
  flex-shrink: 0;
}
.lt-badge--signal {
  background: var(--signal-dim);
  color: var(--signal);
}
.lt-badge--confirm {
  background: var(--confirm-dim);
  color: var(--confirm);
}
.lt-title { font-size: 13.5px; font-weight: 700; color: var(--ink0); margin-bottom: 2px; }
.lt-desc { font-size: 12px; color: var(--ink2); }
.lt-connector {
  width: 1px;
  height: 14px;
  background: var(--line2);
  margin-left: 28px;
}
.leadgen-highlights {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.lh-item {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 13px;
  color: var(--ink1);
}
.lh-item i { color: var(--confirm); font-size: 15px; margin-top: 1px; flex-shrink: 0; }
.pricing-note {
  margin-top: 18px;
  font-size: 12px;
  color: var(--ink2);
  text-align: center;
  font-style: italic;
}

/* ============================================================
   PIPELINE CARDS
   ============================================================ */
.pipeline-cards-wrap {
  overflow-x: auto;
  padding-bottom: 12px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: var(--line2) transparent;
}
.pipeline-cards-wrap::-webkit-scrollbar { height: 4px; }
.pipeline-cards-wrap::-webkit-scrollbar-track { background: transparent; }
.pipeline-cards-wrap::-webkit-scrollbar-thumb { background: var(--line2); border-radius: 2px; }

.pipeline-cards {
  display: flex;
  align-items: center;
  gap: 0;
  min-width: max-content;
  padding: 8px 0;
}
.pipeline-card {
  background: var(--bg0);
  border: 1px solid var(--line2);
  border-radius: var(--radius-card);
  padding: 24px 20px;
  width: 148px;
  flex-shrink: 0;
  position: relative;
  transition: border-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
  opacity: 0;
  transform: translateX(-20px);
}
.pipeline-card.pc-visible {
  opacity: 1;
  transform: translateX(0);
  animation: pipelineReveal 0.45s cubic-bezier(.22,.61,.36,1) both;
}
.pipeline-card:hover {
  border-color: var(--signal);
  transform: translateY(-4px);
  box-shadow: 0 16px 40px -12px rgba(79,124,255,0.2);
}
.pipeline-card--last {
  border-color: var(--confirm);
  background: var(--confirm-dim);
}
.pipeline-card--last .pc-title { color: var(--confirm); }
.pipeline-card--last i { color: var(--confirm); }
.pipeline-card--last:hover { border-color: var(--confirm); box-shadow: 0 16px 40px -12px rgba(61,220,132,0.2); }

.pc-num {
  font-size: 10px;
  color: var(--signal);
  margin-bottom: 10px;
}
.pipeline-card--last .pc-num { color: var(--confirm); }
.pipeline-card i {
  font-size: 22px;
  color: var(--signal);
  margin-bottom: 10px;
}
.pc-title { font-size: 13px; font-weight: 700; color: var(--ink0); margin-bottom: 5px; }
.pc-desc { font-size: 11.5px; color: var(--ink2); line-height: 1.5; }

.pc-arrow {
  font-size: 18px;
  color: var(--line2);
  padding: 0 8px;
  flex-shrink: 0;
  font-weight: 300;
  transition: color 0.4s;
}
.pc-arrow.pc-arrow-lit { color: var(--signal); }

/* ============================================================
   INDUSTRIES
   ============================================================ */
.industries-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.industry-card {
  background: var(--bg1);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 18px 16px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  transition: border-color 0.3s, transform 0.3s;
}
.industry-card:hover {
  border-color: var(--signal);
  transform: translateY(-3px);
}
.industry-card i { font-size: 22px; color: var(--signal); }
.industry-card span { font-size: 13px; font-weight: 600; color: var(--ink1); }

/* ============================================================
   COUNTRIES
   ============================================================ */
.countries-new-wrap {
  display: flex;
  flex-direction: column;
  gap: 36px;
}
.countries-map-img-wrap {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--line2);
  background: var(--bg0);
}
.countries-map-full {
  width: 100%;
  max-height: 360px;
  object-fit: cover;
  opacity: 0.18;
  filter: grayscale(80%) brightness(0.7) contrast(1.2);
  display: block;
}
.map-overlay-grid {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, transparent 60%, var(--bg1) 100%),
    linear-gradient(to right, var(--bg1) 0%, transparent 8%, transparent 92%, var(--bg1) 100%);
}

.countries-pills-new {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}
.country-pill-new {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  background: var(--bg2);
  border: 1px solid var(--line2);
  border-radius: 8px;
  font-size: 13px;
  color: var(--ink1);
  font-weight: 500;
  transition: border-color 0.3s, color 0.3s;
}
.country-pill-new:hover { border-color: var(--signal); color: var(--ink0); }
.country-pill-new i { font-size: 8px; color: var(--signal); flex-shrink: 0; }
.country-pill-new--more {
  border-style: dashed;
  color: var(--ink2);
  font-style: italic;
  font-size: 12px;
}
.country-pill-new--more i { color: var(--confirm); }

/* ============================================================
   AI AGENTS
   ============================================================ */
.voice-demo {
  background: var(--bg1);
  border: 1px solid var(--line2);
  border-radius: 16px;
  padding: 36px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  margin-bottom: 56px;
  animation: glow-pulse 3s ease-in-out infinite;
}
.voice-icon-wrap {
  width: 56px; height: 56px;
  background: var(--signal-dim);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: pulse 2s ease-in-out infinite;
}
.voice-icon-wrap i { font-size: 26px; color: var(--signal); }
.voice-wave {
  display: flex;
  align-items: center;
  gap: 3px;
  height: 40px;
}
.voice-wave span {
  display: inline-block;
  width: 3px;
  background: var(--signal);
  border-radius: 2px;
  animation: wave 1s ease-in-out infinite;
  min-height: 4px;
}
.voice-wave span:nth-child(1)  { height: 12px; animation-delay: 0.0s; }
.voice-wave span:nth-child(2)  { height: 20px; animation-delay: 0.05s; }
.voice-wave span:nth-child(3)  { height: 28px; animation-delay: 0.10s; }
.voice-wave span:nth-child(4)  { height: 36px; animation-delay: 0.15s; }
.voice-wave span:nth-child(5)  { height: 28px; animation-delay: 0.20s; }
.voice-wave span:nth-child(6)  { height: 36px; animation-delay: 0.25s; }
.voice-wave span:nth-child(7)  { height: 40px; animation-delay: 0.30s; }
.voice-wave span:nth-child(8)  { height: 36px; animation-delay: 0.35s; }
.voice-wave span:nth-child(9)  { height: 28px; animation-delay: 0.40s; }
.voice-wave span:nth-child(10) { height: 20px; animation-delay: 0.45s; }
.voice-wave span:nth-child(11) { height: 28px; animation-delay: 0.50s; }
.voice-wave span:nth-child(12) { height: 36px; animation-delay: 0.55s; }
.voice-wave span:nth-child(13) { height: 40px; animation-delay: 0.60s; }
.voice-wave span:nth-child(14) { height: 28px; animation-delay: 0.65s; }
.voice-wave span:nth-child(15) { height: 20px; animation-delay: 0.70s; }
.voice-wave span:nth-child(16) { height: 28px; animation-delay: 0.75s; }
.voice-wave span:nth-child(17) { height: 36px; animation-delay: 0.80s; }
.voice-wave span:nth-child(18) { height: 28px; animation-delay: 0.85s; }
.voice-wave span:nth-child(19) { height: 20px; animation-delay: 0.90s; }
.voice-wave span:nth-child(20) { height: 12px; animation-delay: 0.95s; }
.voice-wave span:nth-child(21) { height: 8px;  animation-delay: 1.00s; }
.voice-wave span:nth-child(22) { height: 14px; animation-delay: 1.05s; }
.voice-wave span:nth-child(23) { height: 10px; animation-delay: 1.10s; }
.voice-wave span:nth-child(24) { height: 6px;  animation-delay: 1.15s; }
.voice-status {
  font-size: 12px;
  color: var(--confirm);
  letter-spacing: 1px;
  text-transform: uppercase;
}

.agents-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}
.agent-card {
  background: var(--bg1);
  border: 1px solid var(--line2);
  border-radius: 12px;
  padding: 24px 18px;
  transition: border-color 0.3s, transform 0.3s;
}
.agent-card:hover {
  border-color: var(--signal);
  transform: translateY(-4px);
}
.agent-card i { font-size: 22px; color: var(--signal); margin-bottom: 12px; }
.agent-title { font-size: 13.5px; font-weight: 700; color: var(--ink0); margin-bottom: 6px; }
.agent-desc { font-size: 12.5px; color: var(--ink2); line-height: 1.55; }

/* ============================================================
   CALL CENTER — Services grid
   ============================================================ */
.services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.service-card {
  background: var(--bg0);
  border: 1px solid var(--line2);
  border-radius: 10px;
  padding: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13.5px;
  color: var(--ink1);
  font-weight: 500;
  transition: border-color 0.3s, color 0.3s;
}
.service-card:hover { border-color: var(--signal); color: var(--ink0); }
.service-card i { font-size: 18px; color: var(--signal); flex-shrink: 0; }

/* ============================================================
   ADS CHANNELS
   ============================================================ */
.ads-channels {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.ads-channel-card {
  background: var(--bg1);
  border: 1px solid var(--line2);
  border-radius: 14px;
  padding: 30px 22px;
  transition: border-color 0.3s, transform 0.3s;
}
.ads-channel-card:hover {
  transform: translateY(-5px);
  border-color: var(--signal);
}
.ads-channel-icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.ads-channel-icon i { font-size: 24px; }
.ads-channel-icon--google { background: rgba(66,133,244,0.12); }
.ads-channel-icon--google i { color: #4285F4; }
.ads-channel-icon--meta { background: rgba(24,119,242,0.12); }
.ads-channel-icon--meta i { color: #1877F2; }
.ads-channel-icon--social { background: rgba(79,124,255,0.12); }
.ads-channel-icon--social i { color: var(--signal); }
.ads-channel-icon--influencer { background: rgba(61,220,132,0.10); }
.ads-channel-icon--influencer i { color: var(--confirm); }
.ads-channel-name { font-size: 15px; font-weight: 700; color: var(--ink0); margin-bottom: 8px; }
.ads-channel-desc { font-size: 13px; color: var(--ink2); line-height: 1.55; }

/* ============================================================
   WEBSITE DEV
   ============================================================ */
.webdev-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.webdev-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
}
.webdev-item:last-child { border-bottom: none; }
.webdev-item i { font-size: 20px; color: var(--signal); flex-shrink: 0; margin-top: 2px; }
.webdev-label { font-size: 14.5px; font-weight: 700; color: var(--ink0); margin-bottom: 4px; }
.webdev-sub { font-size: 13px; color: var(--ink2); line-height: 1.55; }

/* ============================================================
   PRODUCTS
   ============================================================ */
.product-row { align-items: start; }
.product-img-wrap {
  position: relative;
  border-radius: var(--radius-card);
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--bg1);
  border: 1px solid var(--line2);
}
.product-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.product-badge {
  position: absolute;
  bottom: 14px; left: 14px; right: 14px;
  background: rgba(8,9,11,0.85);
  border: 1px solid var(--line2);
  border-radius: 10px;
  padding: 12px 14px;
  display: flex;
  align-items: center;
  gap: 12px;
  backdrop-filter: blur(10px);
}
.star-row { color: #FFB800; font-size: 14px; letter-spacing: 1px; }
.product-badge span:last-child { font-size: 12px; color: var(--ink1); }
.product-title { font-size: 20px; font-weight: 700; margin-bottom: 6px; }
.product-pricing {
  display: flex;
  gap: 24px;
  margin-bottom: 24px;
  align-items: center;
}
.product-price-block { text-align: center; }
.product-price { font-size: 36px; color: var(--ink0); }
.product-currency { font-size: 12px; color: var(--ink2); margin-top: 2px; }
.product-divider-v { width: 1px; height: 60px; background: var(--line); }
.feature-list { display: flex; flex-direction: column; gap: 0; margin-bottom: 28px; }
.feature-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 0;
  border-top: 1px solid var(--line);
}
.feature-item:first-child { border-top: none; }
.feature-item i { font-size: 16px; color: var(--confirm); }
.feature-item span { font-size: 14px; color: var(--ink1); }

/* Marquee */
.marquee-wrap { margin: 64px 0; }
.marquee-eyebrow {
  font-size: 11px;
  color: var(--ink2);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 18px;
  text-align: center;
}
.marquee-track-wrap {
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
  mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}
.marquee-track {
  display: flex;
  gap: 16px;
  width: max-content;
  animation: marquee 28s linear infinite;
}
.marquee-track img {
  height: 190px;
  width: 240px;
  object-fit: cover;
  border-radius: 12px;
  border: 1px solid var(--line2);
  flex-shrink: 0;
}

/* NFC banner — horizontal card + image */
.nfc-banner {
  border: 1px solid var(--line2);
  border-radius: 18px;
  background: linear-gradient(160deg, #0F1320, #0B0C10);
  display: flex;
  gap: 48px;
  align-items: center;
  overflow: hidden;
}
.nfc-banner-left {
  flex-shrink: 0;
  width: 280px;
}
.nfc-card-img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  display: block;
}
.nfc-banner-right {
  padding: 40px 40px 40px 0;
  flex: 1;
}
.nfc-title { font-size: 22px; font-weight: 700; margin-bottom: 8px; }
.nfc-sub { font-size: 14px; color: var(--ink1); margin-bottom: 20px; line-height: 1.6; }
.nfc-features {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 28px;
}
.nfc-feat {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13.5px;
  color: var(--ink1);
}
.nfc-feat i { font-size: 15px; color: var(--confirm); }

/* ============================================================
   WHY US
   ============================================================ */
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}
.why-icon {
  width: 44px; height: 44px;
  border-radius: 10px;
  background: var(--signal-dim);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}
.why-icon i { font-size: 20px; color: var(--signal); }
.why-title { font-size: 15.5px; font-weight: 700; margin-bottom: 8px; }
.why-desc { font-size: 13.5px; color: var(--ink2); line-height: 1.65; }

/* ============================================================
   CTA
   ============================================================ */
.cta-section {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: linear-gradient(160deg, rgba(79,124,255,0.05), transparent);
  padding: 120px 28px;
  text-align: center;
}
.cta-inner { display: flex; flex-direction: column; align-items: center; }
.cta-title {
  font-size: clamp(28px, 4.5vw, 52px);
  font-weight: 800;
  letter-spacing: -1.4px;
  max-width: 720px;
  line-height: 1.1;
  margin: 18px 0 0;
}
.cta-sub {
  font-size: 16px;
  color: var(--ink1);
  max-width: 520px;
  margin: 20px auto 0;
  line-height: 1.7;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: #050506;
  padding: 60px 28px 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 50px;
  padding-bottom: 36px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 28px;
}
.footer-brand {
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 12px;
  color: var(--ink0);
}
.footer-brand span { color: var(--signal); font-weight: 500; }
.footer-desc { font-size: 13.5px; color: var(--ink2); line-height: 1.8; max-width: 360px; }
.footer-contact-head {
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--signal);
  margin-bottom: 18px;
  font-weight: 600;
}
.footer-contacts { display: flex; flex-direction: column; gap: 12px; }
.footer-contact {
  display: flex;
  gap: 10px;
  font-size: 13.5px;
  color: var(--ink1);
  align-items: flex-start;
  transition: color 0.3s;
}
.footer-contact:hover { color: var(--ink0); }
.footer-contact i { font-size: 15px; margin-top: 1px; flex-shrink: 0; }
.footer-copy {
  text-align: center;
  font-size: 12.5px;
  color: var(--ink2);
}

/* ============================================================
   STICKY MOBILE BAR
   ============================================================ */
.sticky-mobile {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 998;
  background: rgba(8,9,11,0.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-top: 1px solid var(--line2);
  padding: 10px 14px;
  gap: 10px;
}
.sticky-wa {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid var(--line2);
  color: var(--ink0);
  font-weight: 600;
  font-size: 13.5px;
  padding: 13px;
  border-radius: 8px;
  transition: background 0.25s ease;
}
.sticky-wa:hover { background: rgba(255,255,255,0.04); }
.sticky-wa i { font-size: 16px; }
.sticky-book {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--signal);
  color: #fff;
  font-weight: 600;
  font-size: 13.5px;
  padding: 13px;
  border-radius: 8px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.sticky-book:hover { transform: translateY(-1px); box-shadow: 0 8px 24px -6px rgba(79,124,255,0.4); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1100px) {
  .agents-grid { grid-template-columns: repeat(3, 1fr); }
  .ads-channels { grid-template-columns: repeat(2, 1fr); }
  .countries-pills-new { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 900px) {
  body { padding-bottom: 80px; }

  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }

  .two-col,
  .two-col--wide-left,
  .two-col--narrow-left,
  .two-col--reverse {
    grid-template-columns: 1fr;
    direction: ltr;
    gap: 40px;
  }
  .two-col--reverse > * { direction: ltr; }

  .trust-grid--3 { grid-template-columns: 1fr 1fr 1fr; }
  .trust-cell { border-right: none; border-bottom: 1px solid var(--line); padding: 30px 20px; }
  .trust-cell:nth-child(odd) { border-right: 1px solid var(--line); }
  .trust-cell--last { border-bottom: none; }

  .agents-grid { grid-template-columns: 1fr 1fr; }
  .ads-channels { grid-template-columns: 1fr 1fr; }
  .why-grid { grid-template-columns: 1fr 1fr; }
  .countries-pills-new { grid-template-columns: repeat(2, 1fr); }

  .sticky-mobile { display: flex; }
  .sticky-card { position: static; }

  .footer-grid { grid-template-columns: 1fr; gap: 32px; }

  .nfc-banner { flex-direction: column; }
  .nfc-banner-left { width: 100%; }
  .nfc-card-img { height: 220px; }
  .nfc-banner-right { padding: 28px; }

  .industries-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 600px) {
  :root { --section-py: 80px; }

  .trust-grid--3 { grid-template-columns: 1fr; }
  .trust-cell { border-right: none !important; border-bottom: 1px solid var(--line); }

  .agents-grid { grid-template-columns: 1fr; }
  .ads-channels { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .industries-grid { grid-template-columns: 1fr 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .countries-pills-new { grid-template-columns: 1fr 1fr; }

  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }

  .two-col.product-row { gap: 28px; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .reveal { opacity: 1 !important; transform: none !important; }
  .pipeline-card { opacity: 1 !important; transform: none !important; }
}

/* ============================================================
   BOOKING MODAL
   ============================================================ */
.bm-overlay {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.bm-overlay[hidden] { display: none !important; }

.bm-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(5,5,6,0.82);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  opacity: 0;
  transition: opacity 0.28s ease;
}
.bm-open .bm-backdrop { opacity: 1; }

.bm-panel {
  position: relative;
  z-index: 1;
  background: var(--bg1);
  border: 1px solid var(--line2);
  border-radius: 20px;
  padding: 40px 36px 32px;
  width: 100%;
  max-width: 520px;
  max-height: 90vh;
  overflow-y: auto;
  transform: translateY(28px) scale(0.97);
  opacity: 0;
  transition: transform 0.3s cubic-bezier(.22,.61,.36,1), opacity 0.3s ease;
  scrollbar-width: thin;
  scrollbar-color: var(--line2) transparent;
}
.bm-open .bm-panel {
  transform: translateY(0) scale(1);
  opacity: 1;
}

.bm-close {
  position: absolute;
  top: 16px; right: 16px;
  background: var(--bg2);
  border: 1px solid var(--line2);
  border-radius: 8px;
  width: 34px; height: 34px;
  display: flex; align-items: center; justify-content: center;
  color: var(--ink1);
  font-size: 16px;
  transition: color 0.2s, border-color 0.2s;
}
.bm-close:hover { color: var(--ink0); border-color: var(--ink2); }

.bm-eyebrow {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--signal);
  margin-bottom: 10px;
}
.bm-title {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.5px;
  color: var(--ink0);
  margin-bottom: 8px;
}
.bm-sub {
  font-size: 13.5px;
  color: var(--ink2);
  margin-bottom: 28px;
  line-height: 1.6;
}

.bm-field-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--ink1);
  margin-bottom: 12px;
}
.bm-optional { color: var(--ink2); font-weight: 400; text-transform: none; letter-spacing: 0; }

/* Service buttons */
.bm-services {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}
.bm-svc-btn {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 12px 14px;
  background: var(--bg0);
  border: 1px solid var(--line2);
  border-radius: 10px;
  color: var(--ink1);
  font-size: 13px;
  font-weight: 500;
  text-align: left;
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s, background 0.2s;
}
.bm-svc-btn i { font-size: 16px; color: var(--ink2); flex-shrink: 0; transition: color 0.2s; }
.bm-svc-btn:hover { border-color: var(--signal); color: var(--ink0); background: var(--signal-dim); }
.bm-svc-btn:hover i { color: var(--signal); }
.bm-svc-btn.active {
  border-color: var(--signal);
  background: var(--signal-dim);
  color: var(--ink0);
}
.bm-svc-btn.active i { color: var(--signal); }

/* Country search */
.bm-country-search-wrap {
  position: relative;
}
.bm-search-icon {
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--ink2);
  font-size: 15px;
  pointer-events: none;
}
.bm-country-input {
  width: 100%;
  background: var(--bg0);
  border: 1px solid var(--line2);
  border-radius: 10px;
  padding: 12px 14px 12px 38px;
  font-size: 14px;
  color: var(--ink0);
  font-family: inherit;
  outline: none;
  transition: border-color 0.2s;
}
.bm-country-input:focus { border-color: var(--signal); }
.bm-country-input::placeholder { color: var(--ink2); }

.bm-country-dropdown {
  background: var(--bg0);
  border: 1px solid var(--line2);
  border-top: none;
  border-radius: 0 0 10px 10px;
  overflow: hidden;
  max-height: 220px;
  overflow-y: auto;
}
.bm-country-dropdown[hidden] { display: none; }
.bm-dd-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  font-size: 13.5px;
  color: var(--ink1);
  cursor: pointer;
  transition: background 0.15s, color 0.15s;
}
.bm-dd-item i { font-size: 13px; color: var(--ink2); }
.bm-dd-item:hover,
.bm-dd-item.focused { background: var(--signal-dim); color: var(--ink0); }

.bm-country-selected {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 8px;
  padding: 10px 14px;
  background: var(--confirm-dim);
  border: 1px solid rgba(61,220,132,0.25);
  border-radius: 10px;
  font-size: 13.5px;
  color: var(--ink0);
}
.bm-country-selected[hidden] { display: none; }
.bm-country-selected > i { color: var(--confirm); font-size: 16px; }
.bm-country-selected > span { flex: 1; font-weight: 600; }
.bm-clear-country {
  background: none;
  border: none;
  color: var(--ink2);
  font-size: 14px;
  padding: 2px;
  cursor: pointer;
  transition: color 0.2s;
}
.bm-clear-country:hover { color: var(--ink0); }

/* Name input */
.bm-text-input {
  width: 100%;
  background: var(--bg0);
  border: 1px solid var(--line2);
  border-radius: 10px;
  padding: 12px 14px;
  font-size: 14px;
  color: var(--ink0);
  font-family: inherit;
  outline: none;
  transition: border-color 0.2s;
}
.bm-text-input:focus { border-color: var(--signal); }
.bm-text-input::placeholder { color: var(--ink2); }

/* Submit */
.bm-submit {
  width: 100%;
  justify-content: center;
  margin-top: 28px;
  padding: 15px;
  font-size: 15px;
  gap: 10px;
  border-radius: 10px;
  transition: transform 0.25s ease, box-shadow 0.25s ease, opacity 0.2s;
}
.bm-submit i { font-size: 20px; }
.bm-submit:disabled {
  opacity: 0.38;
  cursor: not-allowed;
  transform: none !important;
  box-shadow: none !important;
}
.bm-note {
  font-size: 12px;
  color: var(--ink2);
  text-align: center;
  margin-top: 12px;
  line-height: 1.5;
}

@media (max-width: 540px) {
  .bm-panel { padding: 28px 20px 24px; border-radius: 16px; }
  .bm-services { grid-template-columns: 1fr; }
}
