/* === EMBLEMATIC VOZ - LANDING PAGE STYLES === */
:root {
  --bg: #05060B;
  --bg-2: #0A0C18;
  --bg-3: #10122A;
  --text: #E7EAF2;
  --muted: #8990A8;
  --muted-2: #6B7290;
  --line: rgba(255, 255, 255, 0.08);
  --line-strong: rgba(255, 255, 255, 0.14);
  --accent: #6366F1;
  --accent-2: #8B5CF6;
  --accent-soft: rgba(99, 102, 241, 0.18);
  --accent-glow: rgba(99, 102, 241, 0.45);
  --card: rgba(15, 18, 38, 0.6);
  --card-border: rgba(255, 255, 255, 0.07);
  --radius: 22px;
  --radius-lg: 28px;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--text);
  font-family: 'Creato Display', 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  font-feature-settings: 'ss01', 'cv11';
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body {
  background:
    radial-gradient(1200px 800px at 12% -10%, rgba(99, 102, 241, 0.18), transparent 55%),
    radial-gradient(1000px 700px at 95% 8%, rgba(139, 92, 246, 0.12), transparent 60%),
    radial-gradient(1200px 900px at 50% 110%, rgba(99, 102, 241, 0.16), transparent 55%),
    var(--bg);
  background-attachment: fixed;
  min-height: 100vh;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; cursor: pointer; }

.app {
  max-width: 1280px;
  margin: 0 auto;
  padding: 24px 32px 80px;
}

/* === NAV === */
.nav-pill {
  position: sticky;
  top: 16px;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin: 0 auto 56px;
  max-width: 980px;
}
.nav-inner {
  display: flex;
  align-items: center;
  gap: 24px;
  background: rgba(8, 10, 22, 0.78);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  padding: 10px 22px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.05);
}
.logo {
  font-weight: 600;
  font-size: 18px;
  letter-spacing: -0.01em;
  display: inline-flex;
  align-items: baseline;
}
.logo .dot { color: var(--accent); }
.logo-sub {
  margin-left: 4px;
  color: var(--muted);
  font-weight: 400;
  font-size: 14px;
}
.nav-link {
  color: var(--muted);
  font-size: 14px;
  font-weight: 500;
  transition: color .2s;
}
.nav-link:hover { color: var(--text); }
.nav-cta {
  display: inline-flex;
  align-items: center;
  background: linear-gradient(180deg, #14172E 0%, #0A0D1F 100%);
  border: 1px solid var(--line-strong);
  color: #fff;
  padding: 10px 18px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 500;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
}

/* === TYPE === */
.h-display {
  font-size: clamp(48px, 6.4vw, 88px);
  line-height: 0.98;
  letter-spacing: -0.035em;
  font-weight: 500;
  margin: 18px 0 22px;
  color: #fff;
  text-wrap: balance;
}
.h-section {
  font-size: clamp(36px, 4.4vw, 60px);
  line-height: 1.02;
  letter-spacing: -0.03em;
  font-weight: 500;
  margin: 14px 0 16px;
  color: #fff;
  text-wrap: balance;
}
.h-section.left { text-align: left; }
.h-section em {
  font-style: normal;
  background: linear-gradient(180deg, var(--accent) 0%, var(--accent-2) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.lead {
  color: var(--muted);
  font-size: clamp(16px, 1.2vw, 18px);
  line-height: 1.55;
  max-width: 520px;
  margin: 0 0 28px;
}
.section-sub {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.55;
  max-width: 620px;
  margin: 0 auto;
}
.section-sub.left { margin-left: 0; }
.muted { color: var(--muted); }
.small { font-size: 13px; }
.mt8 { margin-top: 8px; }

/* === Pill / eyebrow === */
.pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border-radius: 999px;
  background: var(--accent-soft);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #C5C9F5;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 4px;
}
.eyebrow .dot-live {
  width: 7px; height: 7px; border-radius: 50%;
  background: #34D8B6;
  box-shadow: 0 0 12px #34D8B6;
}

.grad-text {
  background: linear-gradient(180deg, #fff 0%, #B7BCFF 60%, var(--accent-2) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* === BUTTONS === */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(180deg, var(--accent) 0%, color-mix(in oklab, var(--accent) 70%, #000) 100%);
  color: #fff;
  border: none;
  padding: 14px 26px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -0.005em;
  box-shadow: 0 8px 28px var(--accent-glow), inset 0 1px 0 rgba(255, 255, 255, 0.18);
  transition: transform .15s ease, box-shadow .2s ease;
}
.btn-primary:hover { transform: translateY(-1px); box-shadow: 0 12px 36px var(--accent-glow); }
.btn-primary.calling { animation: pulse-btn 1.2s ease-in-out infinite; }
.btn-primary .ring {
  width: 8px; height: 8px; border-radius: 50%; background: #fff;
  animation: blink 0.8s ease-in-out infinite;
}
@keyframes blink { 0%, 100% { opacity: 1; } 50% { opacity: 0.3; } }
@keyframes pulse-btn {
  0%, 100% { box-shadow: 0 8px 28px var(--accent-glow); }
  50%      { box-shadow: 0 8px 40px var(--accent-glow), 0 0 0 8px rgba(99,102,241,0.12); }
}
.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #C5C9F5;
  font-size: 14px;
  font-weight: 500;
  padding: 10px 0;
  border: none;
  background: none;
  transition: color .2s;
}
.btn-ghost:hover { color: #fff; }

/* === HERO === */
.hero {
  position: relative;
  padding: 24px 0 64px;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 48px;
  align-items: center;
}
.hero-copy { padding-right: 16px; }
.hero-form {
  display: flex;
  gap: 10px;
  align-items: stretch;
  margin: 14px 0 8px;
  max-width: 480px;
}
.phone-input {
  flex: 1;
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  padding: 4px 4px 4px 18px;
  gap: 10px;
  transition: border-color .2s;
}
.phone-input:focus-within { border-color: var(--accent); }
.phone-input .cc {
  font-weight: 600;
  font-size: 15px;
  color: var(--muted);
  border-right: 1px solid var(--line);
  padding-right: 10px;
}
.phone-input input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  color: #fff;
  font-size: 15px;
  padding: 12px 4px;
  font-family: inherit;
}
.phone-input input::placeholder { color: var(--muted-2); }
.form-fineprint {
  font-size: 12px;
  color: var(--muted-2);
  max-width: 480px;
  margin: 4px 0 24px;
  line-height: 1.5;
}
.form-fineprint a { color: var(--muted); text-decoration: underline; }

.hero-cta-row {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
}
.trust-mini { display: flex; align-items: center; gap: 12px; }
.avatars {
  display: flex;
  position: relative;
}
.avatars .av {
  width: 32px; height: 32px;
  border-radius: 50%;
  border: 2px solid var(--bg-2);
  display: inline-block;
  margin-right: -10px;
  background-size: cover; background-position: center;
  object-fit: cover;
}
.av1 { background: linear-gradient(135deg, #FFB6A6, #E07F66); }
.av2 { background: linear-gradient(135deg, #C5C9F5, #8B5CF6); }
.av3 { background: linear-gradient(135deg, #FED28A, #C28A4A); }
.trust-text { font-size: 13px; color: var(--muted); }
.trust-text strong { color: #fff; font-weight: 600; }

/* Hero art */
.hero-art {
  position: relative;
  aspect-ratio: 1.05 / 1;
  filter: drop-shadow(0 30px 60px rgba(0, 0, 0, 0.5));
}
.call-card {
  position: absolute;
  bottom: 6%;
  left: 4%;
  right: auto;
  width: 360px;
  background: rgba(13, 16, 32, 0.78);
  backdrop-filter: blur(18px);
  border: 1px solid var(--line-strong);
  border-radius: 18px;
  padding: 18px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
}
.call-row { display: flex; gap: 12px; align-items: center; }
.call-avatar {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #fff;
  display: grid; place-items: center;
}
.call-name { font-size: 13px; font-weight: 600; color: #fff; }
.call-status {
  font-size: 12px; color: var(--muted);
  display: flex; align-items: center; gap: 6px; margin-top: 2px;
}
.live-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: #34D8B6; box-shadow: 0 0 8px #34D8B6;
  animation: blink 1.4s ease-in-out infinite;
}
.waveform {
  display: flex;
  align-items: center;
  gap: 3px;
  height: 30px;
  margin: 14px 0 12px;
}
.waveform .bar {
  flex: 1;
  background: linear-gradient(180deg, var(--accent), var(--accent-2));
  border-radius: 2px;
  height: 30%;
  animation: wbar 1.1s ease-in-out infinite alternate;
}
@keyframes wbar {
  0%   { height: 20%; opacity: 0.5; }
  100% { height: 95%; opacity: 1; }
}
.transcript { display: grid; gap: 6px; }
.t-line {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.45;
}
.t-tag {
  display: inline-block;
  font-size: 10px;
  font-weight: 600;
  padding: 2px 7px;
  border-radius: 6px;
  margin-right: 6px;
  letter-spacing: 0.06em;
}
.t-tag.user { background: rgba(255,255,255,0.08); color: #fff; }
.t-tag.ai { background: var(--accent-soft); color: #C5C9F5; }

@keyframes drift1 {
  0%   { transform: translate(0, 0) rotate(0deg); }
  100% { transform: translate(-12px, 8px) rotate(-2deg); }
}
@keyframes drift2 {
  0%   { transform: translate(0, 0) rotate(0deg); }
  100% { transform: translate(8px, -10px) rotate(2deg); }
}
@keyframes drift3 {
  0%   { transform: translate(0, 0) rotate(0deg); }
  100% { transform: translate(-6px, -4px) rotate(-1deg); }
}
@keyframes wave {
  0%   { transform: translateY(-4px); opacity: 0.6; }
  100% { transform: translateY(4px); opacity: 1; }
}

/* === LOGO STRIP === */
.logos {
  margin: 24px 0 80px;
  text-align: center;
}
.logos-label {
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--muted-2);
  margin-bottom: 28px;
  text-transform: uppercase;
}
.logos-track-wrap {
  width: 100%;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
}
.logos-track {
  display: flex;
  gap: 60px;
  align-items: center;
  width: max-content;
  animation: logo-marquee 50s linear infinite;
}
@keyframes logo-marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(calc(-100% / 3)); }
}
.logo-item {
  flex-shrink: 0;
  font-size: 18px;
  font-weight: 500;
  color: rgba(255,255,255,0.4);
  font-family: 'Creato Display', serif;
  letter-spacing: -0.01em;
  white-space: nowrap;
}

/* === SECTIONS === */
.section {
  padding: 100px 0;
  position: relative;
}
.section-head {
  margin-bottom: 56px;
}
.section-head.center {
  text-align: center;
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}

/* === STEPS === */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: stretch;
}
.step-card {
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 28px;
  position: relative;
  overflow: hidden;
  transition: transform .25s, border-color .25s;
  display: flex;
  flex-direction: column;
}
.step-card:hover {
  transform: translateY(-3px);
  border-color: rgba(255,255,255,0.14);
}
.step-art {
  min-height: 240px;
  background: rgba(0, 0, 0, 0.35);
  border-radius: 14px;
  border: 1px solid var(--line);
  margin-bottom: 22px;
  padding: 16px;
  display: flex;
  align-items: stretch;
  justify-content: center;
  flex: 1;
}
.step-num {
  font-size: 12px;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: 0.18em;
  margin-bottom: 8px;
}
.step-title {
  font-size: 22px;
  font-weight: 500;
  color: #fff;
  letter-spacing: -0.015em;
  margin: 0 0 8px;
}
.step-sub {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.5;
  margin: 0;
}

.ui-mock {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 13px;
}
.ui-mock-head {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted-2);
  margin-bottom: 4px;
}
.field {
  display: flex;
  justify-content: space-between;
  padding: 9px 12px;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--line);
  border-radius: 10px;
  align-items: center;
}
.field .label { color: var(--muted-2); font-size: 12px; }
.field .value { color: #fff; font-size: 13px; }
.field .clip { font-style: italic; color: var(--muted); }
.voice-row { display: inline-flex; align-items: center; gap: 8px; }
.voice-dot { width: 8px; height: 8px; border-radius: 50%; }

.skill {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--line);
  border-radius: 10px;
  font-size: 13px;
  color: #fff;
}
.skill.muted { color: var(--muted-2); }
.check {
  display: grid; place-items: center;
  width: 18px; height: 18px;
  border-radius: 50%;
  font-size: 11px;
  color: #fff;
  font-weight: 700;
}
.check.empty {
  background: transparent;
  border: 1px dashed var(--muted-2);
  color: var(--muted-2);
}
.skill .badge {
  margin-left: auto;
  font-size: 10px;
  padding: 2px 7px;
  background: rgba(255,255,255,0.06);
  border-radius: 6px;
  color: var(--muted);
}
.call-mock {
  align-items: center;
  text-align: center;
  justify-content: center;
}
.phone-orb {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  display: grid; place-items: center;
  margin: 16px auto 14px;
  animation: orb-pulse 2.4s ease-in-out infinite;
}
@keyframes orb-pulse {
  0%, 100% { transform: scale(1); }
  50%      { transform: scale(1.06); }
}
.phone-num { font-weight: 600; color: #fff; font-size: 16px; }
.phone-status {
  display: inline-flex; align-items: center; gap: 6px;
  margin-top: 6px; color: var(--muted); font-size: 12px;
}

/* === CASES === */
.cases-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.case-card {
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 28px;
  transition: transform .2s, border-color .2s, background .2s;
}
.case-card:hover {
  transform: translateY(-2px);
  border-color: rgba(255,255,255,0.14);
  background: rgba(15, 18, 38, 0.85);
}
.case-icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: var(--accent-soft);
  border: 1px solid rgba(255,255,255,0.06);
  color: #C5C9F5;
  display: grid; place-items: center;
  margin-bottom: 16px;
}
.case-title {
  font-size: 19px;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: #fff;
  margin: 0 0 8px;
}
.case-body {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
  margin: 0;
}

/* === INDUSTRIES === */
.industry-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 12px;
  max-width: 980px;
  margin: 0 auto;
}
.industry-chip {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  border-radius: 14px;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--line);
  font-size: 15px;
  color: var(--text);
  cursor: pointer;
  transition: all .2s;
}
.industry-chip:hover {
  background: var(--accent-soft);
  border-color: var(--accent);
  transform: translateY(-1px);
}
.industry-emoji { font-size: 18px; }
.industry-arrow {
  margin-left: auto;
  color: var(--muted-2);
  transition: transform .2s, color .2s;
}
.industry-chip:hover .industry-arrow { color: var(--accent); transform: translateX(2px); }

/* === TESTIMONIALS === */
/* === TESTIMONIALS === */
.testi-wheel-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 12px;
}
.testi-wheel {
  flex: 1;
  display: grid;
  grid-template-columns: 1fr 1.4fr 1fr;
  gap: 24px;
  align-items: center;
  min-height: 320px;
  perspective: 1200px;
}
.testi-card-center {
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 36px 38px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  min-height: 280px;
  position: relative;
  z-index: 2;
  box-shadow: 0 24px 60px rgba(0,0,0,0.4), 0 0 0 1px rgba(255,255,255,0.04);
  animation: testi-fade-in .35s ease;
}
.testi-card-side {
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 22px 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-height: 220px;
  cursor: pointer;
  opacity: 0.42;
  filter: blur(2px);
  transform: scale(0.88);
  transition: opacity .25s, filter .25s, transform .25s;
  z-index: 1;
}
.testi-card-side:hover {
  opacity: 0.65;
  filter: blur(1px);
}
.testi-side-left { transform: scale(0.88) translateX(20px); transform-origin: right center; }
.testi-side-right { transform: scale(0.88) translateX(-20px); transform-origin: left center; }
@keyframes testi-fade-in {
  from { opacity: 0; transform: translateY(8px) scale(0.98); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}
.testi-text-big {
  color: #DEE2F2;
  font-size: 20px;
  line-height: 1.45;
  margin: 0;
  flex: 1;
  font-weight: 400;
  letter-spacing: -0.01em;
  text-wrap: pretty;
}
.testi-text-side {
  color: #DEE2F2;
  font-size: 14px;
  line-height: 1.5;
  margin: 0;
  flex: 1;
  font-weight: 400;
  text-wrap: pretty;
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.testi-arrow {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--card);
  border: 1px solid var(--card-border);
  color: #DEE2F2;
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: all .18s;
  z-index: 3;
}
.testi-arrow:hover {
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.2);
  color: #fff;
  transform: scale(1.05);
}
.testi-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 28px;
}
.testi-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.18);
  border: none;
  padding: 0;
  cursor: pointer;
  transition: background .18s, width .18s;
}
.testi-dot.active {
  background: #DEE2F2;
  width: 22px;
  border-radius: 4px;
}
@media (max-width: 900px) {
  .testi-wheel { grid-template-columns: 1fr; }
  .testi-card-side { display: none; }
}
.testi-track {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 16px;
  max-width: 1200px;
  margin: 0 auto;
}
.testi-card {
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.testi-stars { color: #C5A4FF; font-size: 14px; letter-spacing: 2px; }
.testi-text {
  color: #DEE2F2;
  font-size: 15px;
  line-height: 1.55;
  margin: 0;
  flex: 1;
}
.testi-author {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 4px;
}
.testi-av {
  width: 40px; height: 40px; border-radius: 50%;
  background: linear-gradient(135deg, #FFB6A6, #E07F66);
}
.testi-av.av1 { background: linear-gradient(135deg, #FFB6A6, #E07F66); }
.testi-av.av2 { background: linear-gradient(135deg, #C5C9F5, #8B5CF6); }
.testi-av.av3 { background: linear-gradient(135deg, #FED28A, #C28A4A); }
.testi-photo {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  border: 1px solid rgba(255,255,255,0.12);
}
.testi-name { font-size: 14px; font-weight: 500; color: #fff; }
.testi-role { font-size: 12px; color: var(--muted-2); }

/* === INTEGRATIONS === */
.int-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 64px;
  align-items: center;
}
.int-cloud {
  position: relative;
  min-height: 480px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  align-content: center;
  justify-content: center;
  gap: 10px;
  padding: 60px 24px;
  background: radial-gradient(ellipse at center, rgba(255,255,255,0.04), transparent 70%);
  border-radius: 24px;
}
.int-core {
  position: relative;
  width: 100px; height: 100px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 20px;
  color: #fff;
  box-shadow: 0 0 60px var(--accent-glow), inset 0 0 30px rgba(255,255,255,0.15);
  margin: 8px;
  animation: orb-pulse 3s ease-in-out infinite;
  flex: 0 0 auto;
}
.int-chip {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 9px 16px;
  background: rgba(13, 16, 32, 0.78);
  backdrop-filter: blur(12px);
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  font-size: 13px;
  color: #DEE2F2;
  white-space: nowrap;
  box-shadow: 0 6px 20px rgba(0,0,0,0.4);
  animation: float 4s ease-in-out infinite;
  flex: 0 0 auto;
}
.int-chip .int-dot { width: 7px; height: 7px; border-radius: 50%; flex-shrink: 0; }
.int-chip:nth-child(2n)  { animation-delay: 0.5s; }
.int-chip:nth-child(3n)  { animation-delay: 1s; }
.int-chip:nth-child(4n)  { animation-delay: 1.5s; }
.int-chip:nth-child(5n)  { animation-delay: 2s; }

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

/* === COMPLIANCE === */
.comp-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.comp-card {
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 26px;
  text-align: left;
}
.comp-icon {
  width: 40px; height: 40px;
  border-radius: 10px;
  display: grid; place-items: center;
  background: var(--accent-soft);
  color: #C5C9F5;
  margin-bottom: 18px;
}
.comp-title {
  font-size: 16px;
  font-weight: 500;
  color: #fff;
  margin: 0 0 6px;
}
.comp-body {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
  margin: 0;
}

/* === FAQ === */
.faq-list {
  max-width: 760px;
  margin: 0 auto;
  display: grid;
  gap: 10px;
}
.faq-item {
  width: 100%;
  text-align: left;
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: 14px;
  padding: 18px 22px;
  color: var(--text);
  transition: all .2s;
}
.faq-item:hover { border-color: rgba(255,255,255,0.14); }
.faq-item.open {
  background: rgba(99, 102, 241, 0.06);
  border-color: rgba(99, 102, 241, 0.3);
}
.faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 16px;
  font-weight: 500;
  color: #fff;
}
.faq-plus {
  font-size: 22px;
  color: var(--muted);
  font-weight: 300;
  margin-left: 16px;
  flex-shrink: 0;
}
.faq-item.open .faq-plus { color: var(--accent); }
.faq-a {
  margin-top: 12px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
  max-width: 640px;
}

/* === FINAL CTA === */
.final-cta {
  padding: 80px 0;
}
.final-card {
  text-align: center;
  background:
    radial-gradient(800px 400px at 50% 0%, var(--accent-soft), transparent 60%),
    var(--card);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
  padding: 80px 40px;
  position: relative;
  overflow: hidden;
}
.final-card::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: var(--radius-lg);
  padding: 1px;
  background: linear-gradient(180deg, rgba(255,255,255,0.16), transparent 50%);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  mask-composite: exclude; -webkit-mask-composite: xor;
  pointer-events: none;
}
.final-buttons {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  margin-top: 28px;
  flex-wrap: wrap;
  justify-content: center;
}

/* === FOOTER === */
.footer {
  margin-top: 80px;
  border-top: 1px solid var(--line);
  padding: 64px 0 24px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1.4fr 1fr 1fr 1fr;
  gap: 32px;
  margin-bottom: 56px;
}
.footer-grid > div { display: flex; flex-direction: column; gap: 8px; }
.footer-h {
  color: var(--muted-2);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 8px;
  font-weight: 600;
}
.footer-grid a {
  font-size: 14px;
  color: var(--muted);
  transition: color .2s;
}
.footer-grid a:hover { color: #fff; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  font-size: 12px;
  color: var(--muted-2);
}
.footer-bottom .badges { display: flex; gap: 16px; flex-wrap: wrap; }
.footer-bottom .b {
  padding: 6px 12px;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--line);
  border-radius: 999px;
}

/* === NAV DROPDOWN === */
.nav-dropdown { position: relative; }
.nav-drop-btn {
  background: transparent;
  border: 0;
  font: inherit;
  color: inherit;
  cursor: pointer;
  padding: 8px 12px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.nav-drop-btn:hover { background: rgba(255,255,255,0.05); color: var(--text); }
.nav-drop-btn .caret { font-size: 10px; opacity: 0.7; }
.nav-drop-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%) translateY(-4px);
  background: rgba(14, 14, 24, 0.96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 6px;
  min-width: 220px;
  display: flex;
  flex-direction: column;
  opacity: 0;
  pointer-events: none;
  transition: opacity .18s, transform .18s;
  z-index: 100;
  box-shadow: 0 12px 40px rgba(0,0,0,0.5);
}
.nav-dropdown:hover .nav-drop-menu,
.nav-dropdown:focus-within .nav-drop-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.nav-drop-item {
  padding: 9px 14px;
  border-radius: 8px;
  font-size: 14px;
  color: var(--muted);
  text-decoration: none;
  transition: background .15s, color .15s;
}
.nav-drop-item:hover { background: rgba(255,255,255,0.05); color: var(--text); }
.nav-drop-item.active { color: var(--accent); background: rgba(255,255,255,0.04); }

/* === STATS GRID (industry pages) === */
.stats-sec { padding-top: 60px; }
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 12px;
}
.stat-card {
  padding: 28px 24px;
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: 18px;
  text-align: left;
}
.stat-num {
  font-size: 44px;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--text);
  line-height: 1.05;
  margin-bottom: 10px;
  background: linear-gradient(180deg, #ffffff 0%, var(--accent) 140%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.stat-label {
  font-size: 13.5px;
  color: var(--muted);
  line-height: 1.45;
  text-wrap: pretty;
}

/* === FEATURED QUOTE === */
.testimonial-quote {
  display: flex;
  justify-content: center;
}
.quote-card {
  max-width: 880px;
  width: 100%;
  background: linear-gradient(180deg, rgba(255,255,255,0.04) 0%, rgba(255,255,255,0.015) 100%);
  border: 1px solid var(--card-border);
  border-radius: 22px;
  padding: 56px 56px 44px;
  position: relative;
  overflow: hidden;
}
.quote-card::before {
  content: "";
  position: absolute;
  top: -40%;
  right: -10%;
  width: 60%;
  height: 140%;
  background: radial-gradient(ellipse at center, var(--accent-glow) 0%, transparent 60%);
  opacity: 0.5;
  pointer-events: none;
}
.quote-mark {
  font-family: Georgia, serif;
  font-size: 80px;
  line-height: 0.6;
  color: var(--accent);
  opacity: 0.55;
  margin-bottom: 8px;
}
.quote-text {
  font-size: 22px;
  line-height: 1.45;
  color: var(--text);
  font-weight: 400;
  letter-spacing: -0.01em;
  margin-bottom: 32px;
  text-wrap: pretty;
  position: relative;
}
.quote-author {
  display: flex;
  align-items: center;
  gap: 14px;
  position: relative;
}
.testi-av {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  flex-shrink: 0;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-2) 100%);
}
.testi-av.av1 { background: linear-gradient(135deg, #6366f1, #8b5cf6); }
.testi-av.av2 { background: linear-gradient(135deg, #14b8a6, #0ea5e9); }
.testi-av.av3 { background: linear-gradient(135deg, #f59e0b, #ef4444); }
.testi-name { font-size: 15px; font-weight: 600; color: var(--text); }
.testi-role { font-size: 13px; color: var(--muted-2); margin-top: 2px; }

/* === BEHAVIOR MOCK (Step 02) === */
.behavior-mock { min-height: 100%; }
.behavior-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 12px;
}
.behavior-row {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 14px;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--line);
  border-radius: 12px;
}
.behavior-icon {
  width: 32px;
  height: 32px;
  border-radius: 9px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.behavior-main { flex: 1; min-width: 0; }
.behavior-title {
  font-size: 13.5px;
  font-weight: 500;
  color: var(--text);
  letter-spacing: -0.005em;
}
.behavior-sub {
  font-size: 12px;
  color: var(--muted-2);
  margin-top: 2px;
}
.toggle {
  width: 32px;
  height: 18px;
  border-radius: 999px;
  background: rgba(255,255,255,0.12);
  position: relative;
  flex-shrink: 0;
  transition: background .2s;
}
.toggle > span {
  position: absolute;
  top: 2px;
  left: 2px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #fff;
  transition: transform .2s;
}
.toggle.on > span { transform: translateX(14px); }

/* === INDUSTRY CARDS (generic landing) === */
.industry-cards {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
}
@media (max-width: 1280px) {
  .industry-cards { grid-template-columns: repeat(2, 1fr); }
}
.industry-card {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 22px 20px 20px;
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: 18px;
  text-decoration: none;
  transition: transform .2s, border-color .2s, background .2s;
  position: relative;
}
.industry-card:hover {
  transform: translateY(-2px);
  border-color: rgba(255,255,255,0.16);
  background: rgba(255,255,255,0.025);
}
.industry-card-emoji {
  width: 40px;
  height: 40px;
  border-radius: 11px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--line);
  display: grid;
  place-items: center;
  font-size: 20px;
  flex-shrink: 0;
}
.industry-card-body { flex: 1; }
.industry-card-body h3 {
  font-size: 15.5px;
  font-weight: 600;
  color: var(--text);
  letter-spacing: -0.01em;
  margin: 0 0 6px;
}
.industry-card-body p {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.5;
  text-wrap: pretty;
}
.industry-card-arrow {
  font-size: 16px;
  color: var(--muted-2);
  transition: transform .2s, color .2s;
  align-self: flex-start;
}
.industry-card:hover .industry-card-arrow {
  color: var(--accent);
  transform: translateX(4px);
}

/* === PRICING === */
.pricing { padding-top: 60px; }
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  align-items: stretch;
  max-width: 1080px;
  margin: 0 auto;
}
.price-card {
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: 22px;
  padding: 36px 30px 30px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform .25s ease, border-color .25s ease, background .25s ease;
}
.price-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255,255,255,0.16);
  background: rgba(255,255,255,0.025);
}
.price-card.featured {
  background: linear-gradient(180deg, rgba(255,255,255,0.045) 0%, rgba(255,255,255,0.018) 100%);
  border: 1.5px solid var(--accent) !important;
  box-shadow: 0 0 0 6px var(--accent-glow), 0 24px 60px rgba(0,0,0,0.4);
  transform: translateY(-8px);
}
.price-card.featured:hover {
  transform: translateY(-12px);
}
.price-tag {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: linear-gradient(180deg, var(--accent) 0%, color-mix(in oklab, var(--accent) 70%, #000) 100%) !important;
  color: #fff !important;
  box-shadow: 0 6px 20px var(--accent-glow);
  white-space: nowrap;
}
.price-name {
  font-size: 26px;
  font-weight: 600;
  color: var(--text);
  letter-spacing: -0.015em;
  margin-bottom: 12px;
}
.price-amount {
  font-size: 48px;
  font-weight: 600;
  color: var(--text);
  letter-spacing: -0.02em;
  line-height: 1;
}
.price-amount span {
  font-size: 16px;
  font-weight: 400;
  color: var(--muted-2);
  margin-left: 4px;
}
.price-ideal {
  font-size: 13px;
  color: var(--muted);
  margin-top: 12px;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 22px;
}
.price-feat {
  list-style: none;
  margin: 0 0 28px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}
.price-feat li {
  font-size: 14px;
  color: var(--muted);
  padding-left: 22px;
  position: relative;
  line-height: 1.4;
}
.price-feat li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--accent-soft);
}
.price-feat li::after {
  content: "";
  position: absolute;
  left: 4px;
  top: 8px;
  width: 6px;
  height: 3px;
  border-left: 1.5px solid var(--accent);
  border-bottom: 1.5px solid var(--accent);
  transform: rotate(-45deg);
}
.btn-ghost.full,
.btn-primary.full {
  width: 100%;
  text-align: center;
  justify-content: center;
}
.btn-ghost.full {
  border: 1px solid var(--card-border);
  border-radius: 999px;
  padding: 12px 22px;
  background: rgba(255,255,255,0.025);
  transition: background .2s, border-color .2s, color .2s;
}
.btn-ghost.full:hover {
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.18);
  color: #fff;
}

/* === WHATSAPP COMING SOON === */
.whatsapp-sec {
  padding-top: 100px;
  padding-bottom: 100px;
  position: relative;
  isolation: isolate;
}
.whatsapp-sec::before {
  content: "";
  position: absolute;
  top: 50%;
  right: -10%;
  transform: translateY(-50%);
  width: 700px;
  height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(37,211,102,0.04) 0%, rgba(37,211,102,0.015) 35%, transparent 70%);
  filter: blur(80px);
  pointer-events: none;
  z-index: -1;
}
.whatsapp-sec::after {
  content: "";
  position: absolute;
  top: 30%;
  left: 5%;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(37,211,102,0.02) 0%, transparent 65%);
  filter: blur(100px);
  pointer-events: none;
  z-index: -1;
}
.wa-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 64px;
  align-items: center;
}
.wa-pill {
  background: rgba(37,211,102,0.12) !important;
  border-color: rgba(37,211,102,0.3) !important;
  color: #25D366 !important;
  display: inline-flex !important;
  align-items: center;
  gap: 8px;
}
.wa-pulse {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #25D366;
  box-shadow: 0 0 0 0 rgba(37,211,102,0.7);
  animation: wa-pulse 2s infinite;
}
@keyframes wa-pulse {
  0% { box-shadow: 0 0 0 0 rgba(37,211,102,0.7); }
  70% { box-shadow: 0 0 0 10px rgba(37,211,102,0); }
  100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); }
}
.wa-bullets {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 24px;
}
.wa-bullet {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  color: var(--muted);
  line-height: 1.4;
}
.wa-check {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(37,211,102,0.15);
  color: #25D366;
  font-size: 12px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.wa-mock {
  display: flex;
  justify-content: center;
  position: relative;
}
.wa-mock::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 480px;
  height: 480px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(37,211,102,0.10) 0%, rgba(37,211,102,0.03) 40%, transparent 70%);
  filter: blur(50px);
  z-index: 0;
  pointer-events: none;
  animation: wa-breathe 8s ease-in-out infinite;
}
.wa-mock::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 380px;
  height: 380px;
  border-radius: 50%;
  border: 1px solid rgba(37,211,102,0.12);
  z-index: 0;
  pointer-events: none;
}
@keyframes wa-breathe {
  0%, 100% { opacity: 0.85; }
  50% { opacity: 1; }
}
.wa-phone {
  position: relative;
  z-index: 1;
  width: 320px;
  height: 580px;
  background: #0b141a;
  border-radius: 36px;
  border: 8px solid #1a1a1f;
  box-shadow:
    0 30px 80px rgba(0,0,0,0.55),
    0 0 0 1px rgba(255,255,255,0.06),
    0 0 30px rgba(37,211,102,0.06);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  animation: wa-float 7s ease-in-out infinite;
}
@keyframes wa-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
.wa-phone::before {
  content: "";
  position: absolute;
  top: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 110px;
  height: 22px;
  background: #1a1a1f;
  border-radius: 0 0 14px 14px;
  z-index: 5;
}
.wa-header {
  background: #1f2c33;
  padding: 28px 14px 12px;
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.wa-back {
  color: #aebac1;
  font-size: 24px;
  line-height: 1;
}
.wa-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, #25D366, #128C7E);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.wa-h-info { flex: 1; min-width: 0; }
.wa-h-name {
  font-size: 14px;
  font-weight: 500;
  color: #e9edef;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.wa-h-status {
  font-size: 11.5px;
  color: #8696a0;
}
.wa-body {
  flex: 1;
  background: #0b141a;
  padding: 14px 12px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  overflow-y: auto;
  background-image:
    radial-gradient(rgba(255,255,255,0.015) 1px, transparent 1px);
  background-size: 18px 18px;
}
.wa-bubble {
  max-width: 78%;
  padding: 7px 10px 18px;
  border-radius: 8px;
  font-size: 12.5px;
  line-height: 1.4;
  position: relative;
  color: #e9edef;
  word-wrap: break-word;
}
.wa-bubble.in {
  align-self: flex-start;
  background: #202c33;
  border-top-left-radius: 0;
}
.wa-bubble.out {
  align-self: flex-end;
  background: #005c4b;
  border-top-right-radius: 0;
}
.wa-time {
  position: absolute;
  bottom: 4px;
  right: 8px;
  font-size: 10px;
  color: rgba(255,255,255,0.5);
}
.wa-typing {
  align-self: flex-start;
  background: #202c33;
  padding: 10px 14px;
  border-radius: 8px;
  border-top-left-radius: 0;
  display: flex;
  gap: 4px;
}
.wa-typing span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #8696a0;
  animation: wa-type 1.4s infinite;
}
.wa-typing span:nth-child(2) { animation-delay: 0.2s; }
.wa-typing span:nth-child(3) { animation-delay: 0.4s; }
@keyframes wa-type {
  0%, 60%, 100% { opacity: 0.3; transform: translateY(0); }
  30% { opacity: 1; transform: translateY(-3px); }
}
.wa-input-bar {
  background: #1f2c33;
  padding: 8px 12px;
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.wa-emoji, .wa-mic {
  font-size: 18px;
  opacity: 0.7;
  flex-shrink: 0;
}
.wa-input-pl {
  flex: 1;
  background: #2a3942;
  color: #8696a0;
  font-size: 12.5px;
  padding: 8px 14px;
  border-radius: 999px;
}

/* === RESPONSIVE === */
@media (max-width: 960px) {
  .app { padding: 16px 20px 60px; }
  .hero-grid { grid-template-columns: 1fr; gap: 32px; }
  .hero-art { aspect-ratio: 1.1 / 1; }
  .call-card { width: 90%; left: 5%; right: 5%; }
  .steps { grid-template-columns: 1fr; }
  .cases-grid { grid-template-columns: 1fr 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .quote-card { padding: 36px 28px 28px; }
  .quote-text { font-size: 19px; }
  .int-grid { grid-template-columns: 1fr; gap: 32px; }
  .comp-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .nav-pill { flex-direction: column; align-items: stretch; }
  .wa-grid { grid-template-columns: 1fr; gap: 40px; }
  .pricing-grid { grid-template-columns: 1fr; }
  .industry-cards { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .cases-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr; }
  .comp-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .nav-inner { padding: 8px 14px; gap: 12px; flex-wrap: wrap; justify-content: center; }
  .h-display { font-size: 44px; }
  .section { padding: 64px 0; }
}
