/* ════════════════════════════════════════════════════════
   WEB & TOOLS — Production CSS
   Dark Premium Futuristic Design System
   ════════════════════════════════════════════════════════ */

/* ── Variables ────────────────────────────────────────── */
:root {
  --bg-base:       #0a0a0f;
  --bg-card:       #0f0f18;
  --bg-alt:        #080810;
  --bg-elevated:   #13131f;
  --cyan:          #00e5ff;
  --cyan-dim:      rgba(0, 229, 255, 0.12);
  --cyan-glow:     rgba(0, 229, 255, 0.25);
  --gold:          #f5c842;
  --gold-dim:      rgba(245, 200, 66, 0.12);
  --gold-glow:     rgba(245, 200, 66, 0.25);
  --text:          #ffffff;
  --text-muted:    #7a8499;
  --text-dim:      #4a5568;
  --border:        rgba(255, 255, 255, 0.07);
  --border-hover:  rgba(0, 229, 255, 0.3);
  --nav-h:         72px;
  --radius:        16px;
  --radius-sm:     10px;
  --shadow-card:   0 4px 32px rgba(0, 0, 0, 0.4);
  --shadow-glow:   0 0 40px rgba(0, 229, 255, 0.2);
  --font-head:     'Outfit', sans-serif;
  --font-body:     'Plus Jakarta Sans', sans-serif;
  --ease-out:      cubic-bezier(0.22, 1, 0.36, 1);
}

/* ── Reset ────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  background-color: var(--bg-base);
  color: var(--text);
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: hidden;
  cursor: none;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button { cursor: none; font-family: inherit; }
input, textarea, select { font-family: inherit; }

/* ── Custom Scrollbar ─────────────────────────────────── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg-base); }
::-webkit-scrollbar-thumb { background: var(--cyan-dim); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: rgba(0, 229, 255, 0.4); }

/* ── Custom Cursor ────────────────────────────────────── */
.cursor-dot {
  position: fixed;
  width: 8px;
  height: 8px;
  background: var(--cyan);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: width 0.2s, height 0.2s, background 0.2s;
  box-shadow: 0 0 10px var(--cyan), 0 0 20px var(--cyan);
}

.cursor-ring {
  position: fixed;
  width: 36px;
  height: 36px;
  border: 1.5px solid rgba(0, 229, 255, 0.5);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: width 0.4s var(--ease-out), height 0.4s var(--ease-out), border-color 0.3s, opacity 0.3s;
}

body.cursor-hover .cursor-dot { width: 12px; height: 12px; background: var(--gold); box-shadow: 0 0 10px var(--gold), 0 0 20px var(--gold); }
body.cursor-hover .cursor-ring { width: 50px; height: 50px; border-color: rgba(245, 200, 66, 0.4); }

@media (hover: none) {
  .cursor-dot, .cursor-ring { display: none; }
  body { cursor: auto; }
  button { cursor: pointer; }
}

/* ── Noise texture overlay ────────────────────────────── */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
  opacity: 0.025;
  pointer-events: none;
  z-index: 1;
}

/* ── Container ────────────────────────────────────────── */
.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* ── Gradient text ────────────────────────────────────── */
.gradient-text {
  background: linear-gradient(135deg, var(--cyan) 0%, var(--gold) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── Section bg gradients ─────────────────────────────── */
.section-bg-gradient {
  position: absolute;
  pointer-events: none;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.12;
}
.bg-1 { width: 600px; height: 600px; background: var(--cyan); top: -200px; right: -100px; }
.bg-2 { width: 500px; height: 500px; background: var(--gold); bottom: -100px; left: -150px; }
.bg-3 { width: 700px; height: 700px; background: var(--cyan); top: 50%; right: -200px; transform: translateY(-50%); }
.bg-4 { width: 600px; height: 600px; background: var(--gold); top: 0; left: 50%; transform: translateX(-50%); }
.bg-5 { width: 800px; height: 400px; background: var(--cyan); bottom: 0; left: 50%; transform: translateX(-50%); }
.bg-6 { width: 500px; height: 500px; background: var(--gold); top: 50%; right: -100px; transform: translateY(-50%); }

/* ══════════════════════════════════════════════════════
   NAVIGATION
   ══════════════════════════════════════════════════════ */
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: background 0.4s, backdrop-filter 0.4s, border-color 0.4s;
  border-bottom: 1px solid transparent;
}

#navbar.scrolled {
  background: rgba(10, 10, 15, 0.85);
  backdrop-filter: blur(20px);
  border-color: var(--border);
}

.nav-container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 2rem;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.logo-mark {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--cyan), var(--gold));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 0.8rem;
  color: #000;
  letter-spacing: -0.5px;
  flex-shrink: 0;
}

.logo-text {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: -0.3px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  list-style: none;
}

.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: color 0.2s;
  position: relative;
}

.nav-links a:not(.nav-cta)::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--cyan);
  transition: width 0.3s var(--ease-out);
}

.nav-links a:not(.nav-cta):hover { color: var(--text); }
.nav-links a:not(.nav-cta):hover::after { width: 100%; }

.nav-cta {
  padding: 0.5rem 1.25rem;
  background: var(--cyan-dim);
  border: 1px solid rgba(0, 229, 255, 0.25);
  border-radius: 50px;
  color: var(--cyan) !important;
  font-weight: 600;
  transition: background 0.2s, box-shadow 0.2s, border-color 0.2s !important;
}

.nav-cta:hover {
  background: rgba(0, 229, 255, 0.2) !important;
  box-shadow: 0 0 20px var(--cyan-glow);
  border-color: rgba(0, 229, 255, 0.5) !important;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 6px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}

.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  display: none;
  position: absolute;
  top: var(--nav-h);
  left: 0;
  right: 0;
  background: rgba(10, 10, 15, 0.97);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 1.5rem 2rem 2rem;
  transform: translateY(-10px);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.3s var(--ease-out), opacity 0.3s;
}

.mobile-menu.open {
  transform: translateY(0);
  opacity: 1;
  pointer-events: all;
}

.mobile-menu ul { list-style: none; display: flex; flex-direction: column; gap: 1rem; }

.mobile-link {
  display: block;
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--text-muted);
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--border);
  transition: color 0.2s;
}

.mobile-link:hover { color: var(--text); }

.mobile-cta {
  color: var(--cyan) !important;
  border-color: rgba(0, 229, 255, 0.2) !important;
}

/* ══════════════════════════════════════════════════════
   HERO
   ══════════════════════════════════════════════════════ */
#hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

#hero-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(0, 229, 255, 0.04) 0%, transparent 60%),
              radial-gradient(ellipse at 70% 80%, rgba(245, 200, 66, 0.04) 0%, transparent 60%),
              linear-gradient(to bottom, transparent 70%, var(--bg-base) 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1240px;
  margin: 0 auto;
  padding: calc(var(--nav-h) + 4rem) 2rem 6rem;
  max-width: 820px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 1rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border);
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text-muted);
  margin-bottom: 2rem;
  letter-spacing: 0.3px;
}

.badge-dot {
  width: 6px;
  height: 6px;
  background: #00ff88;
  border-radius: 50%;
  box-shadow: 0 0 6px #00ff88;
  animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.hero-headline {
  font-family: var(--font-head);
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -2px;
  margin-bottom: 1.5rem;
}

.hero-sub {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--text-muted);
  max-width: 560px;
  line-height: 1.7;
  margin-bottom: 2.5rem;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 4rem;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.9rem 2rem;
  background: linear-gradient(135deg, var(--cyan), #0099cc);
  color: #000;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.95rem;
  border-radius: 50px;
  border: none;
  transition: transform 0.2s, box-shadow 0.2s;
  letter-spacing: -0.2px;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0, 229, 255, 0.4);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.9rem 2rem;
  background: transparent;
  color: var(--text);
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: 50px;
  border: 1px solid var(--border);
  transition: border-color 0.2s, background 0.2s, transform 0.2s;
}

.btn-ghost:hover {
  border-color: rgba(255, 255, 255, 0.25);
  background: rgba(255, 255, 255, 0.05);
  transform: translateY(-2px);
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  flex-wrap: wrap;
}

.stat-item { text-align: left; }

.stat-value {
  font-family: var(--font-head);
  font-size: 2rem;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 0.3rem;
  color: var(--text);
}

.stat-suffix {
  color: var(--cyan);
  font-size: 1.5rem;
}

.stat-label {
  font-size: 0.75rem;
  color: var(--text-muted);
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: var(--border);
}

.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  z-index: 2;
  animation: float-scroll 3s ease-in-out infinite;
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--cyan), transparent);
}

.scroll-indicator span {
  font-size: 0.65rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-dim);
}

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

/* ══════════════════════════════════════════════════════
   SECTION COMMONS
   ══════════════════════════════════════════════════════ */
.section {
  position: relative;
  padding: 7rem 0;
  overflow: hidden;
}

.section-alt {
  background: var(--bg-alt);
  clip-path: polygon(0 3%, 100% 0, 100% 97%, 0 100%);
  margin: -3% 0;
  padding: 10% 0;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 1rem;
  padding: 0.3rem 1rem;
  background: var(--cyan-dim);
  border-radius: 50px;
  border: 1px solid rgba(0, 229, 255, 0.2);
}

.section-header h2 {
  font-family: var(--font-head);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 800;
  letter-spacing: -1.5px;
  line-height: 1.15;
  margin-bottom: 1rem;
}

.section-sub {
  color: var(--text-muted);
  font-size: 1.05rem;
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ══════════════════════════════════════════════════════
   SERVICES
   ══════════════════════════════════════════════════════ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.service-card {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2.5rem;
  overflow: hidden;
  transition: transform 0.4s var(--ease-out), border-color 0.3s, box-shadow 0.4s;
}

.service-card:hover {
  transform: translateY(-8px);
  border-color: var(--border-hover);
  box-shadow: 0 20px 60px rgba(0, 229, 255, 0.1);
}

.service-card.featured {
  border-color: rgba(245, 200, 66, 0.25);
  background: linear-gradient(135deg, var(--bg-card) 0%, rgba(245, 200, 66, 0.03) 100%);
}

.service-card.featured:hover {
  border-color: rgba(245, 200, 66, 0.5);
  box-shadow: 0 20px 60px rgba(245, 200, 66, 0.1);
}

.featured-badge {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--gold);
  background: var(--gold-dim);
  border: 1px solid rgba(245, 200, 66, 0.25);
  padding: 0.25rem 0.75rem;
  border-radius: 50px;
}

.service-card-number {
  font-family: var(--font-head);
  font-size: 4rem;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.04);
  line-height: 1;
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  letter-spacing: -3px;
}

.service-card.featured .service-card-number { right: 7rem; }

.service-icon-wrap {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.icon-cyan { background: var(--cyan-dim); color: var(--cyan); }
.icon-gold { background: var(--gold-dim); color: var(--gold); }

.service-card h3 {
  font-family: var(--font-head);
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: -0.5px;
  margin-bottom: 0.75rem;
  line-height: 1.2;
}

.service-card p {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.feature-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 2rem;
}

.feature-list li {
  font-size: 0.85rem;
  color: var(--text-muted);
  padding-left: 1.2rem;
  position: relative;
}

.feature-list li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--cyan);
  font-size: 0.75rem;
}

.service-card.featured .feature-list li::before { color: var(--gold); }

.card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--cyan);
  transition: gap 0.2s;
}

.service-card.featured .card-link { color: var(--gold); }
.card-link:hover { gap: 0.7rem; }

.card-glow {
  position: absolute;
  bottom: -60px;
  left: -60px;
  width: 160px;
  height: 160px;
  background: radial-gradient(circle, rgba(0, 229, 255, 0.15) 0%, transparent 70%);
  pointer-events: none;
  transition: opacity 0.4s;
  opacity: 0;
}

.gold-glow { background: radial-gradient(circle, rgba(245, 200, 66, 0.15) 0%, transparent 70%); }
.service-card:hover .card-glow { opacity: 1; }

/* ══════════════════════════════════════════════════════
   HOW IT WORKS
   ══════════════════════════════════════════════════════ */
.steps-wrapper {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 0;
  width: 100%;
}

.step {
  flex: 1 1 0;
  min-width: 0;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  text-align: center;
  transition: border-color 0.3s, transform 0.4s var(--ease-out);
}

.step:hover {
  border-color: var(--border-hover);
  transform: translateY(-4px);
}

.step-icon-wrap {
  width: 52px;
  height: 52px;
  background: var(--cyan-dim);
  border: 1px solid rgba(0, 229, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  color: var(--cyan);
}

.step-icon-wrap.gold {
  background: var(--gold-dim);
  border-color: rgba(245, 200, 66, 0.2);
  color: var(--gold);
}

.step-num {
  font-family: var(--font-head);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 2px;
  color: var(--text-dim);
  margin-bottom: 0.5rem;
}

.gold-num { color: var(--gold); }

.step h3 {
  font-family: var(--font-head);
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  letter-spacing: -0.3px;
}

.step p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.step-connector {
  flex: 0 0 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 5rem;
  gap: 4px;
}

.connector-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--cyan);
  opacity: 0.4;
  animation: connector-pulse 1.5s ease-in-out infinite;
}

.connector-dot:nth-child(2) { animation-delay: 0.2s; }
.connector-dot:nth-child(3) { animation-delay: 0.4s; }

@keyframes connector-pulse {
  0%, 100% { opacity: 0.2; transform: scale(1); }
  50% { opacity: 0.8; transform: scale(1.3); }
}

/* ══════════════════════════════════════════════════════
   TOOLS SHOWCASE
   ══════════════════════════════════════════════════════ */
.tools-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.tool-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.4s var(--ease-out), border-color 0.3s, box-shadow 0.4s;
}

.tool-card:hover {
  transform: translateY(-6px);
  border-color: var(--border-hover);
  box-shadow: 0 20px 50px rgba(0, 229, 255, 0.08);
}

.tool-mockup {
  background: #0c0c18;
  border-bottom: 1px solid var(--border);
  border-radius: var(--radius) var(--radius) 0 0;
  overflow: hidden;
}

.mock-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  background: rgba(255,255,255,0.02);
}

.mock-dots { display: flex; gap: 5px; }
.mock-dots span { width: 9px; height: 9px; border-radius: 50%; }
.mock-dots span:nth-child(1) { background: #ff5f57; }
.mock-dots span:nth-child(2) { background: #febc2e; }
.mock-dots span:nth-child(3) { background: #28c840; }

.mock-title {
  font-size: 0.75rem;
  color: var(--text-dim);
  font-weight: 500;
}

.mock-body { padding: 1.25rem; }

.mock-stats-row {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
}

.mock-stat {
  flex: 1;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 0.75rem;
  text-align: center;
}

.mock-stat-val {
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 0.25rem;
}

.mock-stat-label {
  font-size: 0.65rem;
  color: var(--text-dim);
}

.cyan { color: var(--cyan); }
.gold { color: var(--gold); }

.mock-list { display: flex; flex-direction: column; gap: 0.4rem; margin-bottom: 1rem; }

.mock-item {
  display: flex;
  justify-content: space-between;
  font-size: 0.75rem;
  padding: 0.4rem 0.5rem;
  background: rgba(255,255,255,0.02);
  border-radius: 6px;
  color: var(--text-muted);
}

.mock-btn {
  text-align: center;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.5rem;
  background: var(--cyan-dim);
  border: 1px solid rgba(0,229,255,0.2);
  border-radius: 8px;
  color: var(--cyan);
  cursor: pointer;
  transition: background 0.2s;
}

.mock-btn:hover { background: rgba(0,229,255,0.2); }

.gold-btn {
  background: var(--gold-dim) !important;
  border-color: rgba(245,200,66,0.2) !important;
  color: var(--gold) !important;
}

.mock-map {
  background: rgba(0,229,255,0.03);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 0.5rem;
  margin-bottom: 0.75rem;
}

.mock-menu {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
}

.mock-menu-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.5rem;
  background: rgba(255,255,255,0.02);
  border-radius: 8px;
  border: 1px solid var(--border);
}

.mock-menu-thumb {
  width: 36px;
  height: 36px;
  border-radius: 6px;
  background: linear-gradient(135deg, #1a1a2e, #16213e);
  flex-shrink: 0;
}

.thumb2 { background: linear-gradient(135deg, #1a2e1a, #162116); }
.thumb3 { background: linear-gradient(135deg, #2e1a1a, #211616); }

.mock-menu-details { flex: 1; }
.mock-menu-name { font-size: 0.75rem; font-weight: 500; margin-bottom: 0.2rem; }
.mock-menu-price { font-size: 0.7rem; }

.mock-add-btn {
  width: 24px;
  height: 24px;
  background: var(--cyan-dim);
  border: 1px solid rgba(0,229,255,0.2);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  color: var(--cyan);
  flex-shrink: 0;
}

.mock-chat {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
  max-height: 140px;
  overflow: hidden;
}

.mock-chat-msg { display: flex; }
.mock-chat-msg.outgoing { justify-content: flex-end; }

.chat-bubble {
  font-size: 0.7rem;
  line-height: 1.4;
  padding: 0.4rem 0.6rem;
  border-radius: 10px;
  max-width: 80%;
  background: rgba(255,255,255,0.05);
  color: var(--text-muted);
}

.chat-bubble.ai {
  background: var(--cyan-dim);
  color: var(--text);
  border: 1px solid rgba(0,229,255,0.15);
}

.mock-status {
  font-size: 0.65rem;
  color: var(--text-dim);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.status-dot {
  width: 6px;
  height: 6px;
  background: #00ff88;
  border-radius: 50%;
  box-shadow: 0 0 6px #00ff88;
  animation: pulse-dot 2s infinite;
}

.tool-info {
  padding: 1.5rem 2rem;
}

.tool-info h4 {
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: -0.3px;
  margin-bottom: 0.5rem;
}

.tool-info p {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ══════════════════════════════════════════════════════
   SOCIAL PROOF
   ══════════════════════════════════════════════════════ */
.trust-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 2rem;
}

.trust-stat {
  background: var(--bg-card);
  padding: 2.5rem 2rem;
  text-align: center;
  transition: background 0.2s;
}

.trust-stat:hover { background: var(--bg-elevated); }

.trust-num {
  font-family: var(--font-head);
  font-size: 2.8rem;
  font-weight: 900;
  letter-spacing: -2px;
  line-height: 1;
  margin-bottom: 0.5rem;
  background: linear-gradient(135deg, var(--cyan), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.trust-label {
  font-size: 0.8rem;
  color: var(--text-muted);
  letter-spacing: 0.3px;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.testimonial-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  transition: transform 0.4s var(--ease-out), border-color 0.3s;
}

.testimonial-card:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 229, 255, 0.15);
}

.stars {
  color: var(--gold);
  font-size: 0.9rem;
  letter-spacing: 2px;
  margin-bottom: 1rem;
}

.testimonial-text {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 1.5rem;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.author-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.8rem;
  flex-shrink: 0;
}

.av1 { background: linear-gradient(135deg, #1a3a4a, #0a1a2a); color: var(--cyan); border: 1px solid rgba(0,229,255,0.2); }
.av2 { background: linear-gradient(135deg, #3a2a1a, #2a1a0a); color: var(--gold); border: 1px solid rgba(245,200,66,0.2); }
.av3 { background: linear-gradient(135deg, #2a1a3a, #1a0a2a); color: #a78bfa; border: 1px solid rgba(167,139,250,0.2); }

.author-name {
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 0.2rem;
}

.author-biz {
  font-size: 0.75rem;
  color: var(--text-dim);
}

/* ══════════════════════════════════════════════════════
   PRICING
   ══════════════════════════════════════════════════════ */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  align-items: start;
}

.pricing-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2.5rem;
  position: relative;
  overflow: hidden;
  transition: transform 0.4s var(--ease-out), border-color 0.3s;
}

.pricing-card:hover { transform: translateY(-6px); }

.pricing-card.featured-pricing {
  border-color: rgba(0, 229, 255, 0.3);
  background: linear-gradient(135deg, var(--bg-card), rgba(0, 229, 255, 0.04));
  box-shadow: 0 0 60px rgba(0, 229, 255, 0.08), inset 0 1px 0 rgba(0,229,255,0.1);
}

.pricing-card.featured-pricing::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius);
  padding: 1px;
  background: linear-gradient(135deg, var(--cyan), transparent, var(--gold));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  opacity: 0.4;
}

.popular-badge {
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--cyan), #0099cc);
  color: #000;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 0.3rem 1rem;
  border-radius: 0 0 10px 10px;
}

.pricing-tier {
  font-family: var(--font-head);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 1.25rem;
}

.pricing-amount {
  font-family: var(--font-head);
  font-size: 3.5rem;
  font-weight: 900;
  letter-spacing: -3px;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.custom-price {
  font-size: 2.5rem;
  background: linear-gradient(135deg, var(--cyan), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.currency {
  font-size: 1.5rem;
  font-weight: 700;
  vertical-align: top;
  margin-top: 0.5rem;
  display: inline-block;
  color: var(--text-muted);
}

.period {
  font-size: 1rem;
  font-weight: 400;
  color: var(--text-muted);
  letter-spacing: 0;
}

.pricing-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 2rem;
  padding-top: 0.75rem;
  border-top: 1px solid var(--border);
}

.pricing-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.pricing-features li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.pricing-features li.disabled { opacity: 0.35; }

.check { color: var(--cyan); font-size: 0.85rem; }
.x { color: var(--text-dim); font-size: 0.85rem; }

.pricing-btn {
  display: block;
  text-align: center;
  padding: 0.85rem 1.5rem;
  border-radius: 50px;
  border: 1px solid var(--border);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--text);
  transition: border-color 0.2s, background 0.2s, transform 0.2s;
}

.pricing-btn:hover {
  border-color: var(--border-hover);
  background: var(--cyan-dim);
  transform: translateY(-2px);
}

.btn-featured {
  background: linear-gradient(135deg, var(--cyan), #0099cc);
  color: #000;
  border-color: transparent;
}

.btn-featured:hover {
  background: linear-gradient(135deg, #20f0ff, #00b8e6);
  border-color: transparent;
  box-shadow: 0 8px 30px rgba(0, 229, 255, 0.35);
}

.pricing-note {
  text-align: center;
  margin-top: 2.5rem;
  font-size: 0.875rem;
  color: var(--text-dim);
}

.pricing-note strong { color: var(--text-muted); }

/* ══════════════════════════════════════════════════════
   CONTACT
   ══════════════════════════════════════════════════════ */
.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 5rem;
  align-items: start;
}

.contact-info .section-tag { margin-bottom: 1.5rem; }

.contact-info h2 {
  font-family: var(--font-head);
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 800;
  letter-spacing: -1.5px;
  line-height: 1.15;
  margin-bottom: 1.25rem;
}

.contact-info > p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 2.5rem;
}

.contact-features { display: flex; flex-direction: column; gap: 1.25rem; }

.cf-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.cf-icon {
  width: 40px;
  height: 40px;
  background: var(--cyan-dim);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.cf-item div strong {
  display: block;
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 0.2rem;
}

.cf-item div span {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.contact-form {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2.5rem;
  position: relative;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.full-width { margin-top: 0; }

.form-group label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 0.3px;
}

.form-group input,
.form-group select,
.form-group textarea {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 0.75rem 1rem;
  color: var(--text);
  font-size: 0.9rem;
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
  width: 100%;
  resize: vertical;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: rgba(0, 229, 255, 0.4);
  box-shadow: 0 0 0 3px rgba(0, 229, 255, 0.08);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-dim);
}

.form-group select option {
  background: var(--bg-card);
  color: var(--text);
}

.full-width-btn {
  width: 100%;
  justify-content: center;
  margin-top: 1.25rem;
  border-radius: var(--radius-sm);
  padding: 1rem;
  font-size: 1rem;
}

.form-disclaimer {
  text-align: center;
  font-size: 0.75rem;
  color: var(--text-dim);
  margin-top: 0.75rem;
}

.form-success {
  position: absolute;
  inset: 0;
  background: var(--bg-card);
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s;
}

.form-success.visible {
  opacity: 1;
  pointer-events: all;
}

.success-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, var(--cyan), #0099cc);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: #000;
  font-weight: 900;
  margin-bottom: 1.5rem;
}

.form-success h3 {
  font-family: var(--font-head);
  font-size: 1.8rem;
  font-weight: 800;
  margin-bottom: 0.75rem;
}

.form-success p {
  color: var(--text-muted);
  font-size: 0.95rem;
  max-width: 300px;
}

/* ══════════════════════════════════════════════════════
   FOOTER
   ══════════════════════════════════════════════════════ */
#footer {
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
}

.footer-top { padding: 5rem 0 3rem; }

.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1.2fr;
  gap: 4rem;
}

.footer-brand { max-width: 320px; }

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}

.footer-brand p {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.social-links {
  display: flex;
  gap: 0.75rem;
}

.social-link {
  width: 38px;
  height: 38px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}

.social-link:hover {
  background: var(--cyan-dim);
  border-color: rgba(0, 229, 255, 0.25);
  color: var(--cyan);
}

.footer-col h4 {
  font-family: var(--font-head);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 1.25rem;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-col li a {
  font-size: 0.875rem;
  color: var(--text-muted);
  transition: color 0.2s;
}

.footer-col li a:hover { color: var(--text); }

.footer-cta {
  display: inline-block;
  padding: 0.6rem 1.25rem;
  background: var(--cyan-dim);
  border: 1px solid rgba(0, 229, 255, 0.25);
  border-radius: 50px;
  color: var(--cyan);
  font-weight: 600;
  font-size: 0.875rem;
  transition: background 0.2s, box-shadow 0.2s;
  margin-bottom: 1rem;
}

.footer-cta:hover {
  background: rgba(0, 229, 255, 0.2);
  box-shadow: 0 0 20px var(--cyan-glow);
}

.footer-contact-info a {
  font-size: 0.8rem;
  color: var(--text-muted);
  transition: color 0.2s;
}

.footer-contact-info a:hover { color: var(--cyan); }

.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 1.5rem 0;
}

.footer-bottom .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.footer-bottom p {
  font-size: 0.8rem;
  color: var(--text-dim);
}

.footer-bottom-links {
  display: flex;
  gap: 1.5rem;
}

.footer-bottom-links a {
  font-size: 0.8rem;
  color: var(--text-dim);
  transition: color 0.2s;
}

.footer-bottom-links a:hover { color: var(--text-muted); }

/* ══════════════════════════════════════════════════════
   SCROLL REVEAL ANIMATIONS
   ══════════════════════════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-up {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s var(--ease-out), transform 0.6s var(--ease-out);
}

.reveal-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }

/* ══════════════════════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: 1fr; max-width: 580px; margin: 0 auto; }
  .steps-wrapper {
    flex-wrap: wrap;
    gap: 1.5rem;
  }
  .step { flex: 1 1 calc(50% - 0.75rem); }
  .step-connector { display: none; }
  .tools-grid { grid-template-columns: 1fr; max-width: 540px; margin: 0 auto; }
  .trust-stats { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: 1fr; max-width: 520px; margin: 0 auto; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
  .contact-wrapper { grid-template-columns: 1fr; gap: 3rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 3rem; }
}

@media (max-width: 768px) {
  :root { --nav-h: 60px; }

  .nav-links { display: none; }
  .hamburger { display: flex; }
  .mobile-menu { display: block; }

  .hero-content { padding-top: calc(var(--nav-h) + 3rem); }
  .hero-headline { letter-spacing: -1.5px; }
  .hero-stats { gap: 1.5rem; }
  .stat-value { font-size: 1.6rem; }

  .section-alt {
    clip-path: polygon(0 2%, 100% 0, 100% 98%, 0 100%);
  }

  .form-row { grid-template-columns: 1fr; }

  .steps-wrapper { flex-direction: column; }
  .step { flex: 1 1 100%; }

  .trust-stats { grid-template-columns: 1fr 1fr; }

  .footer-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .footer-brand { max-width: 100%; }

  .footer-bottom .container { flex-direction: column; text-align: center; }

  .section { padding: 5rem 0; }
}

@media (max-width: 480px) {
  .hero-actions { flex-direction: column; }
  .btn-primary, .btn-ghost { width: 100%; justify-content: center; }
  .hero-stats { flex-direction: column; gap: 1rem; }
  .stat-divider { display: none; }
  .trust-stats { grid-template-columns: 1fr; }
  .container { padding: 0 1.25rem; }
}

/* ── Utility: mobile break hidden on desktop ──────── */
.mobile-break { display: none; }
@media (max-width: 600px) { .mobile-break { display: block; } }

/* ══════════════════════════════════════════════════════
   AI PHONE AGENT DEMO
   ══════════════════════════════════════════════════════ */

.bg-demo {
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(0,229,255,0.18) 0%, rgba(245,200,66,0.08) 50%, transparent 70%);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  filter: blur(80px);
  opacity: 1;
}

/* ── Scenario Toggle ───────────────────────────────── */
.demo-toggle {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.6rem;
  margin-bottom: 3rem;
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
}

.scenario-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 1.2rem;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: 50px;
  color: var(--text-muted);
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  cursor: none;
  transition: all 0.25s var(--ease-out);
}

.scenario-btn:hover {
  border-color: rgba(0,229,255,0.3);
  color: var(--text);
  background: var(--cyan-dim);
}

.scenario-btn.active {
  background: var(--cyan-dim);
  border-color: rgba(0,229,255,0.45);
  color: var(--cyan);
  box-shadow: 0 0 20px rgba(0,229,255,0.12);
}

/* ── Demo Stage ────────────────────────────────────── */
.demo-stage {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 2.5rem;
  align-items: start;
  max-width: 960px;
  margin: 0 auto 2.5rem;
}

/* ── Phone Frame ───────────────────────────────────── */
.phone-frame {
  width: 100%;
  background: #0d0d18;
  border-radius: 44px;
  border: 1px solid rgba(255,255,255,0.1);
  box-shadow:
    0 0 0 8px #080810,
    0 0 0 9px rgba(255,255,255,0.06),
    0 40px 80px rgba(0,0,0,0.7),
    0 0 60px rgba(0,229,255,0.06) inset;
  position: relative;
  overflow: hidden;
}

.phone-notch {
  width: 100px;
  height: 28px;
  background: #080810;
  border-radius: 0 0 20px 20px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.phone-inner {
  padding: 0 18px 28px;
  min-height: 520px;
  display: flex;
  flex-direction: column;
}

/* Status bar */
.phone-statusbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 4px 4px 10px;
}

.phone-time {
  font-family: var(--font-head);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: -0.3px;
}

.phone-status-icons {
  display: flex;
  align-items: center;
  gap: 5px;
  color: var(--text);
}

/* ── Phone States ──────────────────────────────────── */
.phone-state {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0.5rem 0;
}

.phone-state.hidden { display: none; }

/* --- Ringing state --- */
.call-incoming-label {
  font-size: 0.75rem;
  color: var(--text-muted);
  letter-spacing: 0.5px;
  margin-bottom: 2rem;
  text-align: center;
}

.caller-avatar-wrap {
  position: relative;
  width: 96px;
  height: 96px;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pulse-ring {
  position: absolute;
  border-radius: 50%;
  border: 1.5px solid rgba(0,229,255,0.4);
  animation: phone-ring 2s ease-out infinite;
}

.pr-1 { width: 96px;  height: 96px;  animation-delay: 0s; }
.pr-2 { width: 96px;  height: 96px;  animation-delay: 0.6s; }
.pr-3 { width: 96px;  height: 96px;  animation-delay: 1.2s; }

@keyframes phone-ring {
  0%   { transform: scale(1);   opacity: 0.7; }
  100% { transform: scale(2.2); opacity: 0; }
}

.caller-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, #1a3a4a, #0d2030);
  border: 2px solid rgba(0,229,255,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.3rem;
  color: var(--cyan);
  position: relative;
  z-index: 1;
}

.caller-name {
  font-family: var(--font-head);
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: -0.5px;
  margin-bottom: 0.25rem;
  text-align: center;
}

.caller-number {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 0.25rem;
}

.caller-biz {
  font-size: 0.72rem;
  color: var(--text-dim);
  margin-bottom: auto;
  padding-bottom: 1.5rem;
}

.phone-actions {
  display: flex;
  justify-content: center;
  gap: 3.5rem;
  width: 100%;
  padding-bottom: 0.5rem;
}

.action-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.action-col span {
  font-size: 0.7rem;
  color: var(--text-muted);
}

.phone-action-btn {
  width: 62px;
  height: 62px;
  border-radius: 50%;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: none;
  transition: transform 0.2s, box-shadow 0.2s;
}

.phone-action-btn:hover { transform: scale(1.08); }

.decline-btn {
  background: #e53935;
  color: #fff;
  transform: rotate(135deg);
}

.decline-btn:hover { box-shadow: 0 0 20px rgba(229,57,53,0.5); }

.answer-btn {
  background: #43a047;
  color: #fff;
  animation: answer-pulse 1.8s ease-in-out infinite;
}

.answer-btn:hover {
  box-shadow: 0 0 24px rgba(67,160,71,0.6);
  animation: none;
}

@keyframes answer-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(67,160,71,0.5); }
  50%       { box-shadow: 0 0 0 10px rgba(67,160,71,0); }
}

/* --- Active call state --- */
.state-active {
  padding-top: 0.25rem;
  gap: 0;
}

.live-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.25rem 0.75rem;
  background: rgba(255,50,50,0.12);
  border: 1px solid rgba(255,50,50,0.25);
  border-radius: 50px;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #ff6b6b;
  margin-bottom: 1rem;
  align-self: center;
}

.live-dot, .rec-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #ff4444;
  box-shadow: 0 0 6px #ff4444;
  animation: blink-dot 1s infinite;
  flex-shrink: 0;
}

@keyframes blink-dot {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.2; }
}

.active-avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, #1a3a4a, #0d2030);
  border: 2px solid rgba(0,229,255,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1rem;
  color: var(--cyan);
  align-self: center;
  margin-bottom: 0.75rem;
}

.active-name {
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 0.25rem;
}

.call-timer {
  font-family: var(--font-head);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-muted);
  letter-spacing: 1px;
  text-align: center;
  margin-bottom: 1.25rem;
}

.waveform-wrap {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  margin-bottom: 1.25rem;
  padding: 1rem;
  background: rgba(0,229,255,0.04);
  border: 1px solid rgba(0,229,255,0.1);
  border-radius: 14px;
}

.waveform {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3px;
  height: 40px;
}

.waveform span {
  display: block;
  width: 3px;
  min-height: 3px;
  height: 3px;
  border-radius: 2px;
  background: var(--cyan);
  transition: height 0.08s ease;
}

.speaking-who {
  font-size: 0.7rem;
  color: var(--text-dim);
  letter-spacing: 0.5px;
  text-align: center;
}

.speaking-who.customer { color: var(--text-muted); }

.phone-ctrl-row {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  width: 100%;
  margin-bottom: 1.5rem;
}

.ctrl-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
}

.ctrl-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(255,255,255,0.07);
  border: none;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: none;
  transition: background 0.2s;
}

.ctrl-btn:hover { background: rgba(255,255,255,0.12); }

.ctrl-col span {
  font-size: 0.65rem;
  color: var(--text-dim);
}

.end-call-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: #e53935;
  border: none;
  border-radius: 50px;
  color: #fff;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.875rem;
  padding: 0.75rem 2rem;
  cursor: none;
  transition: background 0.2s, box-shadow 0.2s;
  width: 80%;
  align-self: center;
}

.end-call-btn:hover {
  background: #c62828;
  box-shadow: 0 0 20px rgba(229,57,53,0.4);
}

/* --- Ended state --- */
.state-ended {
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  padding: 2rem 0;
}

.ended-icon-wrap {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(229,57,53,0.12);
  border: 1px solid rgba(229,57,53,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.5rem;
  color: #e53935;
}

.ended-label {
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-muted);
}

.ended-duration {
  font-size: 0.8rem;
  color: var(--text-dim);
  margin-bottom: 1.5rem;
}

.retry-btn {
  background: var(--cyan-dim);
  border: 1px solid rgba(0,229,255,0.25);
  border-radius: 50px;
  color: var(--cyan);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.85rem;
  padding: 0.55rem 1.5rem;
  cursor: none;
  transition: background 0.2s, box-shadow 0.2s;
}

.retry-btn:hover {
  background: rgba(0,229,255,0.2);
  box-shadow: 0 0 16px var(--cyan-glow);
}

/* ── Transcript Panel ──────────────────────────────── */
.transcript-panel-demo {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  min-height: 520px;
  overflow: hidden;
}

.transcript-header-demo {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.25rem;
  border-bottom: 1px solid var(--border);
  background: rgba(255,255,255,0.02);
  flex-shrink: 0;
}

.transcript-title-demo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--text-muted);
}

.transcript-rec {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #ff6b6b;
}

.transcript-rec.hidden { display: none; }

.transcript-messages {
  flex: 1;
  overflow-y: auto;
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  scrollbar-width: thin;
  scrollbar-color: var(--border) transparent;
}

.transcript-idle-state {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  color: var(--text-dim);
  text-align: center;
  padding: 2rem;
}

.idle-phone-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-dim);
}

.transcript-idle-state p {
  font-size: 0.85rem;
  line-height: 1.6;
  max-width: 200px;
}

/* Message bubbles */
.msg-row {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  animation: msg-enter 0.35s var(--ease-out) both;
}

@keyframes msg-enter {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}

.msg-row.customer { align-items: flex-start; }
.msg-row.agent    { align-items: flex-end; }

.msg-who {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  padding: 0 0.5rem;
}

.msg-row.customer .msg-who { color: var(--text-dim); }
.msg-row.agent    .msg-who { color: var(--cyan); }

.msg-bubble {
  max-width: 82%;
  padding: 0.65rem 0.9rem;
  border-radius: 16px;
  font-size: 0.875rem;
  line-height: 1.5;
}

.msg-row.customer .msg-bubble {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.08);
  color: var(--text);
  border-radius: 16px 16px 16px 4px;
}

.msg-row.agent .msg-bubble {
  background: rgba(0,229,255,0.1);
  border: 1px solid rgba(0,229,255,0.2);
  color: var(--text);
  border-radius: 16px 16px 4px 16px;
}

/* Typing indicator */
.typing-bubble {
  max-width: 60px;
  padding: 0.65rem 0.9rem;
  border-radius: 16px;
  display: flex;
  align-items: center;
  gap: 4px;
}

.msg-row.customer .typing-bubble {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px 16px 16px 4px;
}

.msg-row.agent .typing-bubble {
  background: rgba(0,229,255,0.1);
  border: 1px solid rgba(0,229,255,0.2);
  border-radius: 16px 16px 4px 16px;
}

.typing-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--text-dim);
  animation: typing-bounce 1.2s ease-in-out infinite;
}

.msg-row.agent .typing-dot { background: var(--cyan); opacity: 0.7; }

.typing-dot:nth-child(2) { animation-delay: 0.2s; }
.typing-dot:nth-child(3) { animation-delay: 0.4s; }

@keyframes typing-bounce {
  0%, 60%, 100% { transform: translateY(0); }
  30%            { transform: translateY(-5px); }
}

/* ── Summary Card ──────────────────────────────────── */
.demo-summary {
  max-width: 960px;
  margin: 0 auto 2.5rem;
  background: var(--bg-card);
  border: 1px solid rgba(0,229,255,0.2);
  border-radius: var(--radius);
  padding: 1.75rem 2rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  animation: msg-enter 0.5s var(--ease-out) both;
  box-shadow: 0 0 40px rgba(0,229,255,0.06);
}

.demo-summary.hidden { display: none; }

.summary-check-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--cyan), #0099cc);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000;
  flex-shrink: 0;
}

.summary-body { flex: 1; }

.summary-body h4 {
  font-family: var(--font-head);
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.summary-items {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem 1.25rem;
}

.summary-item {
  font-size: 0.82rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.summary-item span { color: var(--text); font-weight: 500; }

.summary-ai-badge {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: var(--cyan);
  background: var(--cyan-dim);
  border: 1px solid rgba(0,229,255,0.2);
  border-radius: 50px;
  padding: 0.35rem 0.9rem;
  white-space: nowrap;
  flex-shrink: 0;
}

/* ── Mute button muted state ───────────────────────── */
.ctrl-btn.muted { background: rgba(229,57,53,0.12); color: #e57373; }
.ctrl-btn.muted:hover { background: rgba(229,57,53,0.2); }

/* ── Sound note ────────────────────────────────────── */
.demo-sound-note {
  text-align: center;
  font-size: 0.78rem;
  color: var(--text-dim);
  margin: 0 auto 1.75rem;
  max-width: 500px;
  letter-spacing: 0.2px;
}

/* ── Demo CTA ──────────────────────────────────────── */
.demo-cta-wrap {
  display: flex;
  justify-content: center;
  margin-top: 1rem;
}

/* ── Responsive ────────────────────────────────────── */
@media (max-width: 860px) {
  .demo-stage {
    grid-template-columns: 1fr;
    max-width: 480px;
  }

  .phone-frame { max-width: 300px; margin: 0 auto; }

  .demo-summary { flex-direction: column; text-align: center; }
  .summary-items { justify-content: center; }
}

@media (max-width: 480px) {
  .phone-inner { min-height: 460px; }
  .demo-toggle { flex-direction: column; align-items: center; }
}

/* ═══════════════════════════════════════════════════════
   OUR WORK — Live Portfolio
   ═══════════════════════════════════════════════════════ */
.work-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-top: 3.5rem;
}

.work-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: linear-gradient(180deg, var(--bg-card) 0%, var(--bg-elevated) 100%);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  text-decoration: none;
  color: var(--text);
  transition: transform 0.5s var(--ease-out), border-color 0.4s, box-shadow 0.5s;
  isolation: isolate;
}

/* premium gradient edge on hover */
.work-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius);
  padding: 1px;
  background: linear-gradient(135deg, var(--cyan), transparent 40%, transparent 60%, var(--gold));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.5s;
  pointer-events: none;
  z-index: 2;
}

.work-card:hover {
  transform: translateY(-8px);
  border-color: transparent;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.55), 0 0 50px rgba(0, 229, 255, 0.12);
}
.work-card:hover::before { opacity: 1; }

.work-featured { grid-column: 1 / -1; }

/* browser chrome bar */
.work-chrome {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  padding: 0.65rem 1rem;
  background: rgba(255, 255, 255, 0.03);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(10px);
}

.work-url {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  font-size: 0.72rem;
  font-family: var(--font-head);
  letter-spacing: 0.3px;
  color: var(--text-muted);
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid var(--border);
  border-radius: 99px;
  padding: 0.25rem 1rem;
  max-width: 340px;
  margin: 0 auto;
  white-space: nowrap;
  overflow: hidden;
}
.work-lock { font-size: 0.6rem; opacity: 0.7; }

/* live scaled iframe preview */
.work-preview { position: relative; }

.work-iframe-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--bg-base);
}

.work-iframe-wrap iframe {
  width: 400%;
  height: 400%;
  transform: scale(0.25);
  transform-origin: 0 0;
  border: 0;
  pointer-events: none;
  display: block;
}

.work-featured .work-iframe-wrap { aspect-ratio: 21 / 9; }
.work-featured .work-iframe-wrap iframe {
  width: 250%;
  height: 250%;
  transform: scale(0.4);
}

.work-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg, rgba(10, 10, 15, 0) 30%, rgba(10, 10, 15, 0.85) 100%);
  opacity: 0;
  transition: opacity 0.4s;
  z-index: 1;
}
.work-card:hover .work-overlay { opacity: 1; }

.work-visit {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--bg-base);
  background: linear-gradient(135deg, var(--cyan), #7df9ff);
  padding: 0.7rem 1.4rem;
  border-radius: 99px;
  box-shadow: 0 0 30px var(--cyan-glow);
  transform: translateY(6px);
  transition: transform 0.4s var(--ease-out);
}
.work-card:hover .work-visit { transform: translateY(0); }

/* card info */
.work-info {
  padding: 1.5rem 1.75rem 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  flex: 1;
}

.work-title-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.work-title-row h4 {
  font-family: var(--font-head);
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: -0.3px;
}

.work-type {
  font-family: var(--font-head);
  font-size: 0.68rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: var(--cyan);
  background: var(--cyan-dim);
  border: 1px solid rgba(0, 229, 255, 0.25);
  padding: 0.3rem 0.75rem;
  border-radius: 99px;
  white-space: nowrap;
}
.work-type.gold-type {
  color: var(--gold);
  background: var(--gold-dim);
  border-color: rgba(245, 200, 66, 0.3);
}

.work-info p {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.65;
}

.work-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: auto;
  padding-top: 0.5rem;
}

.work-tags span {
  font-size: 0.72rem;
  color: var(--text-muted);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  padding: 0.25rem 0.7rem;
  border-radius: 99px;
  transition: color 0.3s, border-color 0.3s;
}
.work-card:hover .work-tags span {
  color: var(--text);
  border-color: rgba(0, 229, 255, 0.2);
}

/* "your business here" CTA card */
.work-cta-card {
  border-style: dashed;
  border-color: rgba(0, 229, 255, 0.25);
  background: radial-gradient(ellipse at 50% 0%, rgba(0, 229, 255, 0.05), transparent 70%), var(--bg-card);
  min-height: 320px;
}
.work-cta-card::before { display: none; }

.work-cta-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 0.9rem;
  padding: 2.5rem 2rem;
  flex: 1;
}

.work-cta-plus {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  font-weight: 300;
  color: var(--cyan);
  border: 1px dashed rgba(0, 229, 255, 0.4);
  border-radius: 50%;
  transition: transform 0.4s var(--ease-out), box-shadow 0.4s;
}
.work-cta-card:hover .work-cta-plus {
  transform: rotate(90deg) scale(1.08);
  box-shadow: 0 0 30px var(--cyan-glow);
}

.work-cta-inner h4 {
  font-family: var(--font-head);
  font-size: 1.25rem;
  font-weight: 700;
}

.work-cta-inner p {
  color: var(--text-muted);
  font-size: 0.9rem;
  max-width: 300px;
}

.work-cta-inner .work-visit { transform: none; opacity: 0.9; }
.work-cta-card:hover .work-visit { opacity: 1; }

@media (max-width: 900px) {
  .work-grid { grid-template-columns: 1fr; gap: 1.75rem; }
  .work-featured .work-iframe-wrap { aspect-ratio: 16 / 10; }
  .work-featured .work-iframe-wrap iframe { width: 400%; height: 400%; transform: scale(0.25); }
}

/* ═══════════════════════════════════════════════════════
   PREMIUM POLISH
   ═══════════════════════════════════════════════════════ */
::selection { background: var(--cyan); color: var(--bg-base); }

::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: var(--bg-base); }
::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, rgba(0, 229, 255, 0.35), rgba(245, 200, 66, 0.35));
  border-radius: 99px;
  border: 2px solid var(--bg-base);
}
::-webkit-scrollbar-thumb:hover { background: rgba(0, 229, 255, 0.55); }

/* fine grain over the whole page for a filmic feel */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.35;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix type='matrix' values='0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0.035 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ═══════════════════════════════════════════════════════
   VISUAL REFINEMENT PASS v2 — premium/futuristic polish
   ═══════════════════════════════════════════════════════ */

/* Hero type scale: fit the new headline cleanly on 3 lines */
.hero-headline {
  font-size: clamp(2.5rem, 5vw, 4.25rem);
  letter-spacing: -1.5px;
  line-height: 1.08;
}
@media (min-width: 920px) {
  .hero-headline .gradient-text { white-space: nowrap; }
}

/* Animated gradient shimmer on all gradient headings */
.gradient-text {
  background: linear-gradient(110deg, var(--cyan) 0%, #7df9ff 30%, var(--gold) 55%, var(--cyan) 80%, var(--gold) 100%);
  background-size: 250% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: gradientShift 9s ease-in-out infinite;
}
@keyframes gradientShift {
  0%, 100% { background-position: 0% 50%; }
  50%      { background-position: 100% 50%; }
}
@media (prefers-reduced-motion: reduce) {
  .gradient-text { animation: none; }
}

/* Aurora glow behind hero text */
#hero::after {
  content: '';
  position: absolute;
  top: 6%;
  left: 50%;
  transform: translateX(-50%);
  width: min(920px, 90vw);
  height: 520px;
  border-radius: 50%;
  background: radial-gradient(ellipse at center, rgba(0, 229, 255, 0.13) 0%, rgba(245, 200, 66, 0.05) 45%, transparent 70%);
  filter: blur(50px);
  pointer-events: none;
}
#hero .hero-content { position: relative; z-index: 2; }

/* Glassier hero badge */
.hero-badge {
  background: rgba(0, 229, 255, 0.06);
  border-color: rgba(0, 229, 255, 0.22);
  backdrop-filter: blur(12px);
  box-shadow: 0 0 24px rgba(0, 229, 255, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

/* Section tags: glowing glass pills */
.section-tag {
  background: rgba(0, 229, 255, 0.07);
  border: 1px solid rgba(0, 229, 255, 0.22);
  border-radius: 99px;
  backdrop-filter: blur(8px);
  box-shadow: 0 0 20px rgba(0, 229, 255, 0.08);
}

/* Richer ambient color in section backgrounds */
.section-bg-gradient { opacity: 0.18; }

/* Glossy primary buttons */
.btn-primary {
  background: linear-gradient(135deg, #6ff2ff 0%, var(--cyan) 35%, #0099cc 100%);
  box-shadow: 0 10px 34px rgba(0, 229, 255, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.45);
}
.btn-primary:hover {
  transform: translateY(-2px) scale(1.015);
  box-shadow: 0 16px 44px rgba(0, 229, 255, 0.45), inset 0 1px 0 rgba(255, 255, 255, 0.45);
}

/* Card depth: hairline top highlight, like light hitting glass */
.service-card, .tool-card, .pricing-card, .testimonial-card, .work-card {
  box-shadow: var(--shadow-card), inset 0 1px 0 rgba(255, 255, 255, 0.055);
}

/* Nav: frosted glass once scrolled (JS adds .scrolled) */
#navbar.scrolled {
  background: rgba(10, 10, 15, 0.65);
  backdrop-filter: blur(18px) saturate(1.4);
  -webkit-backdrop-filter: blur(18px) saturate(1.4);
  border-bottom-color: rgba(0, 229, 255, 0.1);
}
