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

/* ── Variables ───────────────────────────────────────── */
:root {
  --bg:            #07071a;
  --bg-2:          #0d0d28;
  --bg-card:       rgba(255,255,255,.04);
  --border:        rgba(255,255,255,.08);
  --border-hover:  rgba(255,255,255,.14);
  --purple:        #6366f1;
  --purple-light:  #818cf8;
  --cyan:          #22d3ee;
  --pink:          #f472b6;
  --text:          #ffffff;
  --text-2:        rgba(255,255,255,.6);
  --text-3:        rgba(255,255,255,.35);
  --radius:        12px;
  --radius-lg:     18px;
  --radius-xl:     24px;
  --grad-text:     linear-gradient(135deg, #818cf8, #c084fc, #22d3ee);
  --grad-btn:      linear-gradient(135deg, #6366f1, #8b5cf6);
  --shadow-glow:   0 0 40px rgba(99,102,241,.25);
  --shadow-card:   0 8px 32px rgba(0,0,0,.4);
}

/* ── Reset ───────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul { list-style: none; }
button { font-family: inherit; }

/* ── Container ───────────────────────────────────────── */
.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── Animations ──────────────────────────────────────── */
@keyframes drift {
  0%   { transform: translate(0, 0) scale(1); }
  33%  { transform: translate(40px, -30px) scale(1.08); }
  66%  { transform: translate(-30px, 20px) scale(.95); }
  100% { transform: translate(0, 0) scale(1); }
}

@keyframes drift2 {
  0%   { transform: translate(0, 0) scale(1); }
  40%  { transform: translate(-50px, 40px) scale(1.12); }
  80%  { transform: translate(30px, -20px) scale(.93); }
  100% { transform: translate(0, 0) scale(1); }
}

@keyframes float {
  0%, 100% { transform: translateY(0px) rotate(-1deg); }
  50%       { transform: translateY(-18px) rotate(1deg); }
}

@keyframes scroll-logos {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@keyframes pulse-dot {
  0%, 100% { box-shadow: 0 0 0 0 rgba(34,211,238,.5); }
  50%       { box-shadow: 0 0 0 6px rgba(34,211,238,0); }
}

@keyframes gradient-shift {
  0%, 100% { background-position: 0% 50%; }
  50%       { background-position: 100% 50%; }
}

/* ── Reveal animation ────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
  transition: opacity .6s ease, transform .6s ease;
}

/* ── Gradient text ───────────────────────────────────── */
.grad-text {
  background: var(--grad-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── Buttons ─────────────────────────────────────────── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--grad-btn);
  color: #fff;
  border: none;
  border-radius: var(--radius);
  padding: 11px 22px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: opacity .2s, transform .15s, box-shadow .2s;
  white-space: nowrap;
}
.btn-primary:hover {
  opacity: .9;
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(99,102,241,.4);
}

.btn-primary-lg {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--grad-btn);
  color: #fff;
  border: none;
  border-radius: var(--radius);
  padding: 15px 32px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: opacity .2s, transform .15s, box-shadow .2s;
}
.btn-primary-lg:hover {
  opacity: .9;
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(99,102,241,.45);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: transparent;
  color: var(--text-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: border-color .2s, color .2s, background .2s;
}
.btn-ghost:hover {
  border-color: var(--border-hover);
  color: var(--text);
  background: rgba(255,255,255,.04);
}

.btn-demo {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(37,211,102,.12);
  border: 1px solid rgba(37,211,102,.35);
  color: #25d366;
  padding: 8px 18px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: background .2s, border-color .2s;
}
.btn-demo:hover {
  background: rgba(37,211,102,.22);
  border-color: rgba(37,211,102,.55);
}

.btn-ghost-lg {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--text-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 14px 28px;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  transition: border-color .2s, color .2s, background .2s;
}
.btn-ghost-lg:hover {
  border-color: rgba(99,102,241,.4);
  color: var(--text);
  background: rgba(99,102,241,.06);
}

.btn-outline-purple {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--purple-light);
  border: 1px solid rgba(99,102,241,.5);
  border-radius: var(--radius);
  padding: 14px 28px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: border-color .2s, background .2s, box-shadow .2s;
}
.btn-outline-purple:hover {
  border-color: var(--purple);
  background: rgba(99,102,241,.1);
  box-shadow: 0 0 20px rgba(99,102,241,.2);
}

.btn-primary-full {
  display: block;
  background: var(--grad-btn);
  color: #fff;
  border: none;
  border-radius: var(--radius);
  padding: 12px 20px;
  font-size: 15px;
  font-weight: 700;
  text-align: center;
  margin-top: 8px;
  transition: opacity .2s;
}
.btn-primary-full:hover { opacity: .9; }

.btn-cta-white {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  color: #07071a;
  border-radius: var(--radius);
  padding: 16px 36px;
  font-size: 16px;
  font-weight: 700;
  transition: box-shadow .2s, transform .15s;
}
.btn-cta-white:hover {
  box-shadow: 0 12px 40px rgba(255,255,255,.25);
  transform: translateY(-2px);
}

/* ── Webinar Banner ──────────────────────────────────── */
.webinar-banner {
  background: rgba(99,102,241,.15);
  border-bottom: 1px solid rgba(99,102,241,.25);
  color: var(--text-2);
  font-size: 13.5px;
  text-align: center;
  padding: 11px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}
.webinar-banner strong { color: var(--text); }
.webinar-banner a {
  color: var(--cyan);
  font-weight: 600;
  white-space: nowrap;
  border-bottom: 1px solid rgba(34,211,238,.3);
  transition: border-color .2s;
}
.webinar-banner a:hover { border-color: var(--cyan); }

/* ── Navbar ──────────────────────────────────────────── */
.navbar {
  position: sticky;
  top: 0;
  z-index: 200;
  background: rgba(7,7,26,.8);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow .3s;
}
.navbar.scrolled {
  box-shadow: 0 8px 32px rgba(0,0,0,.4);
  border-bottom-color: rgba(255,255,255,.06);
}

.nav-inner {
  display: flex;
  align-items: center;
  height: 64px;
  gap: 32px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.logo-mark {
  width: 34px; height: 34px;
  background: var(--grad-btn);
  border-radius: 9px;
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  font-weight: 900;
  font-size: 16px;
  box-shadow: 0 0 16px rgba(99,102,241,.4);
}
.logo-text {
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -0.5px;
  color: var(--text);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  flex: 1;
}
.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-2);
  transition: color .2s;
}
.nav-links a:hover { color: var(--text); }

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

/* Mobile nav */
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px; height: 36px;
  background: none;
  border: 1px solid var(--border);
  cursor: pointer;
  padding: 7px;
  border-radius: 8px;
  margin-left: auto;
}
.nav-hamburger span {
  display: block;
  height: 1.5px;
  background: var(--text-2);
  border-radius: 2px;
}

.nav-mobile {
  display: none;
  flex-direction: column;
  padding: 16px 0 20px;
  border-top: 1px solid var(--border);
  gap: 2px;
  background: rgba(7,7,26,.95);
}
.nav-mobile.open { display: flex; }
.nav-mobile a {
  padding: 10px 4px;
  font-size: 15px;
  font-weight: 500;
  color: var(--text-2);
  border-radius: 8px;
}
.nav-mobile a:hover { color: var(--text); }
.nav-mobile hr {
  border: none;
  border-top: 1px solid var(--border);
  margin: 10px 0;
}

/* ── Section shared ──────────────────────────────────── */
section { padding: 96px 0; }

.section-tag {
  display: inline-block;
  background: rgba(99,102,241,.12);
  color: var(--purple-light);
  font-size: 11.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 18px;
  border: 1px solid rgba(99,102,241,.2);
}

.section-title {
  font-size: 42px;
  font-weight: 800;
  letter-spacing: -1px;
  line-height: 1.15;
  color: var(--text);
  margin-bottom: 16px;
}

.section-sub {
  font-size: 17px;
  color: var(--text-2);
  max-width: 560px;
  line-height: 1.65;
}

.section-header { text-align: center; margin-bottom: 60px; }
.section-header .section-sub { margin: 0 auto; }

/* ── Hero ────────────────────────────────────────────── */
.hero {
  min-height: auto;
  padding: 48px 0 80px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
}

/* Orbs */
.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: .45;
  pointer-events: none;
}
.hero-orb-1 {
  width: 520px; height: 520px;
  background: radial-gradient(circle, #6366f1, transparent 70%);
  top: -120px; left: -100px;
  animation: drift 18s ease-in-out infinite;
}
.hero-orb-2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, #8b5cf6, transparent 70%);
  top: 20%; right: -60px;
  animation: drift2 22s ease-in-out infinite;
}
.hero-orb-3 {
  width: 320px; height: 320px;
  background: radial-gradient(circle, #22d3ee, transparent 70%);
  bottom: 5%; left: 35%;
  opacity: .3;
  animation: drift 26s ease-in-out infinite reverse;
}

/* Grid overlay */
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.028) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.028) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
}
/* Fade edges */
.hero-grid::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, transparent 30%, var(--bg) 80%);
}

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

.hero-left { }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(99,102,241,.1);
  color: var(--purple-light);
  font-size: 13px;
  font-weight: 600;
  padding: 6px 16px;
  border-radius: 20px;
  margin-bottom: 28px;
  border: 1px solid rgba(99,102,241,.25);
}
.pulse-dot {
  width: 7px; height: 7px;
  background: var(--cyan);
  border-radius: 50%;
  animation: pulse-dot 2s ease-in-out infinite;
  flex-shrink: 0;
}

.hero h1 {
  font-size: 58px;
  font-weight: 900;
  letter-spacing: -2px;
  line-height: 1.06;
  margin-bottom: 24px;
  color: var(--text);
}

.hero-sub {
  font-size: 19px;
  color: var(--text-2);
  margin-bottom: 44px;
  font-weight: 400;
  line-height: 1.65;
}

.hero-demo {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  margin-bottom: 28px;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}
.demo-label {
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 14px;
}
.phone-form {
  display: flex;
  gap: 10px;
  margin-bottom: 10px;
}
.phone-input {
  flex: 1;
  padding: 12px 16px;
  background: rgba(255,255,255,.06);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: 14px;
  font-family: inherit;
  color: var(--text);
  outline: none;
  transition: border-color .2s, box-shadow .2s;
}
.phone-input::placeholder { color: var(--text-3); }
.phone-input:focus {
  border-color: rgba(99,102,241,.5);
  box-shadow: 0 0 0 3px rgba(99,102,241,.12);
}
.demo-note {
  font-size: 12px;
  color: var(--text-3);
  line-height: 1.5;
}

.hero-ctas {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

/* ── CSS Phone Mockup ─────────────────────────────────── */
.hero-right {
  display: flex;
  justify-content: center;
  align-items: center;
}

.phone-mockup {
  width: 260px;
  height: 520px;
  border-radius: 36px;
  background: linear-gradient(160deg, #0e0e2a, #12122e);
  border: 2px solid rgba(99,102,241,.4);
  box-shadow:
    0 0 0 1px rgba(255,255,255,.06),
    0 0 60px rgba(99,102,241,.3),
    0 32px 80px rgba(0,0,0,.6);
  position: relative;
  overflow: hidden;
  animation: float 5s ease-in-out infinite;
  flex-shrink: 0;
}

.phone-notch {
  width: 80px; height: 22px;
  background: #07071a;
  border-radius: 0 0 14px 14px;
  margin: 0 auto 0;
  position: relative;
  z-index: 2;
}

.phone-screen {
  padding: 8px 16px 16px;
  height: calc(100% - 22px);
  display: flex;
  flex-direction: column;
  gap: 0;
}

.phone-header {
  font-size: 11px;
  font-weight: 700;
  color: var(--text-2);
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 8px 0 12px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.phone-header span { color: var(--cyan); }

.call-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 8px;
  border-radius: 10px;
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.05);
  margin-bottom: 8px;
  transition: background .2s;
}

.call-avatar {
  width: 32px; height: 32px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 11px;
  font-weight: 700;
  flex-shrink: 0;
}
.call-avatar.a1 { background: linear-gradient(135deg, #6366f1, #8b5cf6); }
.call-avatar.a2 { background: linear-gradient(135deg, #22d3ee, #06b6d4); color: #07071a; }
.call-avatar.a3 { background: linear-gradient(135deg, #f472b6, #ec4899); }
.call-avatar.a4 { background: linear-gradient(135deg, #34d399, #10b981); color: #07071a; }

.call-info { flex: 1; min-width: 0; }
.call-name {
  font-size: 11.5px;
  font-weight: 600;
  color: var(--text);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.call-sub {
  font-size: 10px;
  color: var(--text-3);
  margin-top: 1px;
}

.call-badge {
  font-size: 9px;
  font-weight: 700;
  padding: 2px 7px;
  border-radius: 20px;
  white-space: nowrap;
  flex-shrink: 0;
}
.call-badge.done  { background: rgba(34,211,238,.12); color: var(--cyan); border: 1px solid rgba(34,211,238,.2); }
.call-badge.live  { background: rgba(52,211,153,.12); color: #34d399; border: 1px solid rgba(52,211,153,.2); }
.call-badge.queue { background: rgba(99,102,241,.12); color: var(--purple-light); border: 1px solid rgba(99,102,241,.2); }

.phone-stat {
  margin-top: auto;
  background: rgba(99,102,241,.1);
  border: 1px solid rgba(99,102,241,.2);
  border-radius: 10px;
  padding: 10px 12px;
  text-align: center;
}
.phone-stat-num {
  font-size: 22px;
  font-weight: 800;
  background: var(--grad-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.phone-stat-label {
  font-size: 9.5px;
  color: var(--text-3);
  text-transform: uppercase;
  letter-spacing: .07em;
  margin-top: 2px;
}

/* ── Contact bubble ──────────────────────────────────── */
.contact-bubble {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  text-align: center;
  max-width: 440px;
  margin: 48px auto 0;
  backdrop-filter: blur(20px);
}
.contact-bubble h3 { font-size: 20px; font-weight: 700; margin-bottom: 8px; }
.contact-bubble p { font-size: 14px; color: var(--text-2); margin-bottom: 20px; }
.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #25d366;
  color: #fff;
  border-radius: var(--radius);
  padding: 11px 22px;
  font-size: 14px;
  font-weight: 600;
  transition: background .2s, box-shadow .2s;
}
.btn-whatsapp:hover {
  background: #1ebe5d;
  box-shadow: 0 8px 24px rgba(37,211,102,.3);
}

/* ── Clients ─────────────────────────────────────────── */
.clients {
  padding: 48px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
  background: rgba(255,255,255,.015);
}
.clients-track {
  display: flex;
  gap: 56px;
  white-space: nowrap;
  animation: scroll-logos 32s linear infinite;
}
.clients-track:hover { animation-play-state: paused; }
.client-logo {
  font-size: 13px;
  font-weight: 700;
  color: var(--text-3);
  flex-shrink: 0;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color .2s;
}
.client-logo:hover { color: var(--text-2); }

/* ── Stats ───────────────────────────────────────────── */
.social-proof { padding: 80px 0; text-align: center; }
.proof-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 80px;
  flex-wrap: wrap;
}
.proof-number {
  display: block;
  font-size: 58px;
  font-weight: 900;
  letter-spacing: -2px;
  background: var(--grad-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.proof-label  { display: block; font-size: 15px; color: var(--text-2); font-weight: 500; margin-top: 6px; }
.proof-stars  { font-size: 28px; color: #fbbf24; letter-spacing: 2px; }
.proof-platforms { font-size: 13px; color: var(--text-3); margin-top: 6px; }
.proof-divider {
  width: 1px; height: 72px;
  background: linear-gradient(to bottom, transparent, var(--border), transparent);
}

/* ── How it works ────────────────────────────────────── */
.how-it-works { background: var(--bg-2); }

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

.bento-cell {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  position: relative;
  overflow: hidden;
  transition: border-color .3s, box-shadow .3s;
}
.bento-cell:hover {
  border-color: rgba(99,102,241,.25);
  box-shadow: 0 0 30px rgba(99,102,241,.08);
}

/* Wide cell spans 2 columns */
.bento-cell.wide {
  grid-column: span 2;
  min-height: 260px;
  padding: 0;
}
.bento-cell.wide .cell-image {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: .35;
}
.bento-cell.wide .cell-content {
  position: relative;
  z-index: 2;
  padding: 36px 32px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background: linear-gradient(to top, rgba(7,7,26,.9) 0%, transparent 100%);
}

.step-number {
  width: 38px; height: 38px;
  background: rgba(99,102,241,.15);
  color: var(--purple-light);
  border: 1px solid rgba(99,102,241,.25);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 18px;
  flex-shrink: 0;
}

.bento-cell h3 { font-size: 16px; font-weight: 700; margin-bottom: 10px; color: var(--text); }
.bento-cell p  { font-size: 14px; color: var(--text-2); line-height: 1.65; }

/* ── Use Cases ───────────────────────────────────────── */
.use-cases-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.use-case-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  cursor: default;
  min-height: 300px;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--border);
  transition: border-color .3s, box-shadow .3s, transform .3s;
}
.use-case-card:hover {
  border-color: rgba(99,102,241,.3);
  box-shadow: 0 16px 48px rgba(0,0,0,.4);
  transform: translateY(-4px);
}

.use-case-photo {
  flex: 1;
  background-size: cover;
  background-position: center;
  position: relative;
  min-height: 180px;
}
.use-case-photo::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(7,7,26,.2) 0%, rgba(7,7,26,.7) 100%);
}

.use-case-text {
  background: var(--bg-card);
  backdrop-filter: blur(20px);
  padding: 20px 22px;
  border-top: 1px solid var(--border);
}
.use-case-text h3 { font-size: 15px; font-weight: 700; margin-bottom: 6px; color: var(--text); }
.use-case-text p  { font-size: 13px; color: var(--text-2); line-height: 1.55; }

.use-cases-cta { text-align: center; margin-top: 48px; }

/* ── Infrastructure ──────────────────────────────────── */
.infrastructure { background: var(--bg-2); }

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

.infra-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 30px;
  backdrop-filter: blur(20px);
  transition: border-color .3s, box-shadow .3s;
}
.infra-card:hover {
  border-color: rgba(99,102,241,.2);
  box-shadow: var(--shadow-glow);
}

.infra-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(99,102,241,.12);
  color: var(--purple-light);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 5px 12px;
  border-radius: 20px;
  margin-bottom: 18px;
  border: 1px solid rgba(99,102,241,.2);
}
.infra-card h3 { font-size: 17px; font-weight: 700; margin-bottom: 12px; color: var(--text); }
.infra-card p  { font-size: 14px; color: var(--text-2); line-height: 1.7; }

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

.testimonial-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 30px;
  backdrop-filter: blur(20px);
  position: relative;
  transition: border-color .3s, box-shadow .3s;
}
.testimonial-card:hover {
  border-color: rgba(99,102,241,.2);
  box-shadow: 0 0 32px rgba(99,102,241,.1);
}
.testimonial-card::before {
  content: '\201C';
  position: absolute;
  top: 20px;
  left: 28px;
  font-size: 72px;
  color: rgba(99,102,241,.2);
  font-family: Georgia, serif;
  line-height: 1;
}

.testimonial-text {
  font-size: 15px;
  color: var(--text-2);
  line-height: 1.7;
  margin-bottom: 28px;
  padding-top: 24px;
  font-style: italic;
}

.testimonial-footer {
  display: flex;
  align-items: center;
  gap: 12px;
}
.testimonial-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
}
.avatar-pu { background: linear-gradient(135deg, #6366f1, #8b5cf6); }
.avatar-mk { background: linear-gradient(135deg, #22d3ee, #06b6d4); color: #07071a; }
.avatar-ns { background: linear-gradient(135deg, #f472b6, #ec4899); }

.testimonial-author { font-size: 14px; font-weight: 700; color: var(--text); }
.testimonial-role   { font-size: 12.5px; color: var(--text-3); margin-top: 2px; }

/* ── Pricing ─────────────────────────────────────────── */
.pricing { background: var(--bg-2); }

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

.pricing-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 36px 30px;
  position: relative;
  backdrop-filter: blur(20px);
  transition: border-color .3s, box-shadow .3s;
}
.pricing-card:hover {
  border-color: rgba(255,255,255,.14);
}

.pricing-card.popular {
  border: 1px solid rgba(99,102,241,.5);
  box-shadow: 0 0 40px rgba(99,102,241,.2);
  background: rgba(99,102,241,.06);
}

.pricing-badge-popular {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--grad-btn);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 20px;
  white-space: nowrap;
}

.pricing-plan {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--text-3);
  margin-bottom: 16px;
}
.pricing-card.popular .pricing-plan { color: var(--purple-light); }

.pricing-price {
  font-size: 48px;
  font-weight: 900;
  letter-spacing: -2px;
  color: var(--text);
  line-height: 1;
  margin-bottom: 4px;
}
.pricing-price .currency {
  font-size: 22px;
  font-weight: 600;
  vertical-align: top;
  margin-top: 10px;
  display: inline-block;
  color: var(--text-2);
}
.pricing-price .period {
  font-size: 15px;
  font-weight: 400;
  color: var(--text-3);
  letter-spacing: 0;
}

.pricing-desc {
  font-size: 13.5px;
  color: var(--text-2);
  margin: 12px 0 28px;
  line-height: 1.55;
}

.pricing-divider {
  height: 1px;
  background: var(--border);
  margin: 24px 0;
}

.pricing-features {
  display: flex;
  flex-direction: column;
  gap: 13px;
  margin-bottom: 32px;
}
.pricing-feature {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--text-2);
  line-height: 1.45;
}
.pricing-feature svg {
  flex-shrink: 0;
  margin-top: 1px;
}

.pricing-cta { width: 100%; justify-content: center; }

/* ── Integrations ────────────────────────────────────── */
.integrations { }

.integrations-subtitle {
  font-size: 16px;
  color: var(--text-2);
  text-align: center;
  max-width: 580px;
  margin: 0 auto 48px;
  line-height: 1.65;
}

.integrations-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  max-width: 900px;
  margin: 0 auto;
}
.integration-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 12px;
  text-align: center;
  font-size: 12px;
  font-weight: 600;
  color: var(--text-2);
  transition: border-color .2s, box-shadow .2s, background .2s;
  backdrop-filter: blur(20px);
}
.integration-item:hover {
  border-color: rgba(99,102,241,.3);
  box-shadow: 0 0 20px rgba(99,102,241,.1);
  background: rgba(99,102,241,.05);
  color: var(--text);
}
.integration-icon { font-size: 22px; margin-bottom: 8px; }

/* ── Partner ─────────────────────────────────────────── */
.partner { background: var(--bg-2); }

.partner-inner {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid rgba(99,102,241,.3);
  background: linear-gradient(135deg, rgba(99,102,241,.08), rgba(139,92,246,.06), rgba(34,211,238,.04));
}

.partner-bg-photo {
  position: absolute;
  inset: 0;
  background-image: url('https://images.unsplash.com/photo-1560472354-b33ff0c44a43?w=1200&h=500&fit=crop&q=80&auto=format');
  background-size: cover;
  background-position: center;
  opacity: .08;
}

.partner-content {
  position: relative;
  z-index: 2;
  padding: 80px 60px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 48px;
  align-items: center;
}

.partner-tag {
  display: inline-block;
  background: rgba(34,211,238,.1);
  color: var(--cyan);
  font-size: 11.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 18px;
  border: 1px solid rgba(34,211,238,.2);
}

.partner-title {
  font-size: 38px;
  font-weight: 800;
  letter-spacing: -1px;
  line-height: 1.15;
  margin-bottom: 16px;
  color: var(--text);
}

.partner-desc {
  font-size: 16px;
  color: var(--text-2);
  line-height: 1.65;
  max-width: 520px;
}

.partner-perks {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 24px;
}
.partner-perk {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--text-2);
}
.perk-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--cyan);
  flex-shrink: 0;
}

.partner-cta-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.partner-note {
  font-size: 12px;
  color: var(--text-3);
  text-align: center;
}

/* ── FAQ ─────────────────────────────────────────────── */
.faq { }

.faq-list {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--bg-card);
  backdrop-filter: blur(20px);
  transition: border-color .2s;
}
.faq-item:hover { border-color: rgba(99,102,241,.2); }
.faq-item[open] { border-color: rgba(99,102,241,.35); }

.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
  cursor: pointer;
  list-style: none;
  gap: 16px;
  user-select: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  font-size: 22px;
  font-weight: 300;
  color: var(--purple-light);
  flex-shrink: 0;
  transition: transform .25s;
}
.faq-item[open] summary::after { transform: rotate(45deg); }

.faq-body {
  padding: 0 24px 24px;
  font-size: 14.5px;
  color: var(--text-2);
  line-height: 1.75;
}
.faq-body a { color: var(--purple-light); font-weight: 500; }
.faq-body a:hover { color: var(--cyan); }

/* ── Final CTA ───────────────────────────────────────── */
.final-cta {
  padding: 100px 0;
  text-align: center;
  background: linear-gradient(135deg, rgba(99,102,241,.2) 0%, rgba(139,92,246,.15) 50%, rgba(34,211,238,.1) 100%);
  border-top: 1px solid rgba(99,102,241,.2);
  border-bottom: 1px solid rgba(99,102,241,.2);
  position: relative;
  overflow: hidden;
}
.final-cta::before {
  content: '';
  position: absolute;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(99,102,241,.15), transparent 70%);
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}
.final-cta h2 {
  position: relative;
  font-size: 46px;
  font-weight: 900;
  color: var(--text);
  letter-spacing: -1.5px;
  margin-bottom: 18px;
}
.final-cta p {
  position: relative;
  font-size: 18px;
  color: var(--text-2);
  max-width: 560px;
  margin: 0 auto 44px;
  line-height: 1.65;
}
.final-cta-btns {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* ── Footer ──────────────────────────────────────────── */
footer {
  background: rgba(0,0,0,.4);
  border-top: 1px solid var(--border);
  color: var(--text-2);
  padding: 72px 0 44px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 56px;
}
.footer-brand .logo-text { color: var(--text); font-size: 18px; }
.footer-brand .logo-mark {
  background: var(--grad-btn);
  box-shadow: 0 0 12px rgba(99,102,241,.3);
}
.footer-tagline { font-size: 13.5px; margin-top: 12px; line-height: 1.55; color: var(--text-2); }
.footer-contact { margin-top: 18px; font-size: 13px; }
.footer-contact a { display: block; color: var(--text-2); margin-bottom: 5px; transition: color .2s; }
.footer-contact a:hover { color: var(--text); }

.footer-col h4 {
  color: var(--text);
  font-size: 12px;
  font-weight: 700;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col li a { font-size: 13.5px; color: var(--text-2); transition: color .2s; }
.footer-col li a:hover { color: var(--text); }

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-bottom p { font-size: 12.5px; color: var(--text-3); }
.footer-bottom p a { color: var(--text-3); transition: color .2s; }
.footer-bottom p a:hover { color: var(--text-2); }

.footer-badges {
  display: flex;
  gap: 10px;
  align-items: center;
  flex-wrap: wrap;
}
.footer-badge {
  background: rgba(255,255,255,.04);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 5px 11px;
  font-size: 11px;
  font-weight: 600;
  color: var(--text-3);
  white-space: nowrap;
}

/* ── Auth pages ──────────────────────────────────────── */
.auth-page {
  min-height: 100vh;
  background: var(--bg);
  display: flex;
  flex-direction: column;
}
.auth-nav {
  padding: 20px 32px;
  display: flex;
  align-items: center;
  gap: 12px;
  border-bottom: 1px solid var(--border);
  background: rgba(7,7,26,.9);
  backdrop-filter: blur(20px);
}
.auth-main {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 24px;
  background: radial-gradient(ellipse at top, rgba(99,102,241,.1) 0%, transparent 60%);
}
.auth-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 44px 40px;
  width: 100%;
  max-width: 440px;
  backdrop-filter: blur(24px);
}
.auth-card h1 {
  font-size: 26px;
  font-weight: 800;
  letter-spacing: -0.5px;
  margin-bottom: 6px;
  color: var(--text);
}
.auth-card .auth-sub { font-size: 14px; color: var(--text-2); margin-bottom: 32px; }
.auth-form-group { margin-bottom: 18px; }
.auth-form-group label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 7px;
}
.auth-input {
  width: 100%;
  padding: 12px 16px;
  background: rgba(255,255,255,.05);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: 15px;
  font-family: inherit;
  color: var(--text);
  outline: none;
  transition: border-color .2s, box-shadow .2s;
}
.auth-input::placeholder { color: var(--text-3); }
.auth-input:focus {
  border-color: rgba(99,102,241,.5);
  box-shadow: 0 0 0 3px rgba(99,102,241,.12);
}
.auth-submit {
  width: 100%;
  background: var(--grad-btn);
  color: #fff;
  border: none;
  border-radius: var(--radius);
  padding: 13px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  font-family: inherit;
  transition: opacity .2s, box-shadow .2s;
  margin-top: 8px;
}
.auth-submit:hover {
  opacity: .9;
  box-shadow: 0 8px 24px rgba(99,102,241,.35);
}
.auth-footer { text-align: center; margin-top: 24px; font-size: 13.5px; color: var(--text-2); }
.auth-footer a { color: var(--purple-light); font-weight: 600; }
.auth-error {
  background: rgba(239,68,68,.1);
  border: 1px solid rgba(239,68,68,.25);
  color: #f87171;
  border-radius: var(--radius);
  padding: 10px 14px;
  font-size: 13.5px;
  margin-bottom: 20px;
}
.auth-divider {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 20px 0;
  color: var(--text-3);
  font-size: 13px;
}
.auth-divider::before, .auth-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border);
}

/* ── Responsive ──────────────────────────────────────── */
@media (max-width: 1024px) {
  .infra-grid        { grid-template-columns: 1fr 1fr; }
  .testimonials-grid { grid-template-columns: 1fr 1fr; }
  .pricing-grid      { grid-template-columns: 1fr 1fr; }
  .integrations-grid { grid-template-columns: repeat(4, 1fr); }
  .bento-grid        { grid-template-columns: repeat(3, 1fr); }
  .hero-inner        { gap: 40px; }
  .hero h1           { font-size: 48px; }
  .partner-content   { grid-template-columns: 1fr; }
  .partner-cta-wrap  { align-items: flex-start; }
}

@media (max-width: 768px) {
  section { padding: 72px 0; }

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

  .hero { padding: 60px 0 72px; min-height: auto; }
  .hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .hero-right { display: none; }
  .hero h1 { font-size: 38px; letter-spacing: -1.2px; }
  .hero-sub { font-size: 16px; }
  .phone-form { flex-direction: column; }
  .hero-ctas { flex-direction: column; align-items: stretch; }
  .btn-primary-lg, .btn-ghost-lg { justify-content: center; }

  .section-title { font-size: 30px; }
  .section-header { margin-bottom: 40px; }

  .bento-grid        { grid-template-columns: 1fr 1fr; }
  .use-cases-grid    { grid-template-columns: 1fr; gap: 16px; }
  .infra-grid        { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .pricing-grid      { grid-template-columns: 1fr; }
  .integrations-grid { grid-template-columns: repeat(2, 1fr); }

  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }

  .proof-divider { display: none; }
  .proof-inner { gap: 40px; }
  .proof-number { font-size: 46px; }

  .final-cta h2 { font-size: 32px; }
  .final-cta p  { font-size: 16px; }
  .final-cta-btns { flex-direction: column; align-items: stretch; }
  .btn-cta-white { justify-content: center; }

  .auth-card { padding: 32px 24px; }

  .partner-content { padding: 48px 28px; }
  .partner-title { font-size: 28px; }

  .pricing-card.popular { margin: 0; }
}

@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
  .hero h1 { font-size: 32px; }
  .section-title { font-size: 26px; }
  .integrations-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-badges { gap: 8px; }
}
