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

/* ─── Design Tokens ─────────────────────────────────────────────────────── */
:root {
  --dark-bg:       #07090f;
  --dark-surface:  #0d1321;
  --dark-card:     #111827;
  --cyan:          #06b6d4;
  --cyan-dim:      rgba(6, 182, 212, 0.10);
  --cyan-border:   rgba(6, 182, 212, 0.22);
  --indigo:        #6366f1;
  --indigo-dim:    rgba(99, 102, 241, 0.10);
  --indigo-border: rgba(99, 102, 241, 0.22);
  --text-main:     #0f172a;
  --text-muted:    #64748b;
  --text-on-dark:  #f1f5f9;
  --text-dim:      #94a3b8;
  --border-light:  rgba(0, 0, 0, 0.06);
  --border-dark:   rgba(255, 255, 255, 0.07);
  --shadow-card:   0 4px 24px rgba(0, 0, 0, 0.06);
  --radius-sm:     8px;
  --radius-md:     14px;
  --radius-lg:     20px;
  --radius-xl:     28px;
}

/* ─── Base ───────────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', sans-serif;
  background: #ffffff;
  color: var(--text-main);
  margin: 0; padding: 0;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
h1, h2, h3, h4 {
  font-family: 'Outfit', sans-serif;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin: 0;
}

/* ─── Animations ─────────────────────────────────────────────────────────── */
@keyframes equalize {
  0%, 100% { transform: scaleY(0.3); }
  50%       { transform: scaleY(1); }
}
@keyframes pulse-dot {
  0%, 100% { opacity: 0.6; transform: scale(1); }
  50%       { opacity: 1;   transform: scale(1.25); }
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes floatY {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-10px); }
}
@keyframes shimmer {
  0%   { background-position: 200% center; }
  100% { background-position: -200% center; }
}
@keyframes typingBounce {
  0%, 60%, 100% { transform: translateY(0); opacity: 0.4; }
  30%            { transform: translateY(-5px); opacity: 1; }
}
@keyframes glowPulse {
  0%, 100% { opacity: 0.5; }
  50%       { opacity: 0.85; }
}

/* ─── Nav ────────────────────────────────────────────────────────────────── */
.site-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  background: rgba(7, 9, 15, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-dark);
}
.nav-container {
  max-width: 1200px; margin: 0 auto;
  padding: 0 1.75rem;
  height: 62px;
  display: flex; align-items: center; justify-content: space-between;
}
.logo { display: flex; align-items: center; gap: 0.5rem; text-decoration: none; }
.nav-links { display: flex; align-items: center; gap: 1.75rem; }
.nav-link {
  color: var(--text-dim); font-size: 0.875rem; font-weight: 500;
  text-decoration: none; transition: color 0.2s;
}
.nav-link:hover { color: #fff; }
.nav-cta {
  background: var(--cyan); color: #000;
  padding: 0.5rem 1.1rem; border-radius: var(--radius-sm);
  font-size: 0.875rem; font-weight: 700; text-decoration: none;
  transition: all 0.2s; white-space: nowrap;
}
.nav-cta:hover { background: #22d3ee; transform: translateY(-1px); }

/* ─── Hero ───────────────────────────────────────────────────────────────── */
.hero-section {
  background: var(--dark-bg);
  min-height: 100vh;
  display: flex; align-items: center;
  padding: 80px 0 60px;
  position: relative;
  overflow: hidden;
}
.hero-section::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 20% 50%,  rgba(6,182,212,.12) 0%, transparent 60%),
    radial-gradient(ellipse 50% 50% at 90% 20%,  rgba(99,102,241,.08) 0%, transparent 60%),
    radial-gradient(ellipse 40% 40% at 70% 90%,  rgba(6,182,212,.05) 0%, transparent 60%);
  pointer-events: none;
}
.hero-section::after {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,.06) 1px, transparent 1px);
  background-size: 32px 32px;
  pointer-events: none;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 20%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 20%, transparent 100%);
}

/* Split hero layout */
.hero-container {
  max-width: 1200px; margin: 0 auto; padding: 0 1.75rem;
  position: relative; z-index: 1; width: 100%;
}
.hero-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.hero-left {
  display: flex; flex-direction: column; align-items: flex-start;
}
.hero-right {
  display: flex; align-items: center; justify-content: center;
}

.hero-badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: var(--cyan-dim); border: 1px solid var(--cyan-border);
  color: var(--cyan); border-radius: 999px;
  padding: 0.35rem 1rem; font-size: 0.78rem; font-weight: 600;
  letter-spacing: 0.02em; margin-bottom: 1.75rem;
  animation: fadeInUp 0.5s ease-out both;
}
.hero-badge-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 8px var(--cyan);
  animation: pulse-dot 2s ease-in-out infinite;
}
.hero-title {
  font-size: clamp(2.6rem, 5.5vw, 4.5rem);
  color: #ffffff;
  margin-bottom: 1.5rem;
  letter-spacing: -0.045em;
  line-height: 1.0;
  animation: fadeInUp 0.55s 0.08s ease-out both;
}
.hero-accent {
  background: linear-gradient(125deg, var(--cyan) 0%, #a5f3fc 40%, #818cf8 100%);
  background-size: 200% auto;
  -webkit-background-clip: text; background-clip: text; color: transparent;
  animation: shimmer 4s linear infinite;
}
.hero-subtitle {
  font-size: 1.05rem;
  color: var(--text-dim);
  max-width: 480px;
  line-height: 1.75;
  margin-bottom: 2.25rem;
  animation: fadeInUp 0.55s 0.15s ease-out both;
}
.hero-ctas {
  display: flex; gap: 0.875rem; flex-wrap: wrap;
  margin-bottom: 2rem;
  animation: fadeInUp 0.55s 0.22s ease-out both;
}
.hero-industries {
  display: flex; flex-wrap: wrap; gap: 0.5rem;
  animation: fadeInUp 0.55s 0.3s ease-out both;
}
.industry-chip {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.09);
  color: rgba(255,255,255,.5);
  border-radius: 999px;
  padding: 0.25rem 0.75rem;
  font-size: 0.78rem; font-weight: 500;
  transition: all 0.2s;
}
.industry-chip:hover {
  background: rgba(255,255,255,.08);
  color: rgba(255,255,255,.75);
}
.btn-hero-primary {
  background: var(--cyan); color: #000;
  padding: 0.9rem 1.9rem; border-radius: var(--radius-md);
  font-family: 'Outfit', sans-serif;
  font-weight: 700; font-size: 1rem; text-decoration: none;
  transition: all 0.25s cubic-bezier(.16,1,.3,1);
  display: inline-flex; align-items: center; gap: 0.4rem;
  box-shadow: 0 0 28px rgba(6,182,212,.3), 0 4px 12px rgba(0,0,0,.2);
}
.btn-hero-primary:hover {
  background: #22d3ee; transform: translateY(-2px);
  box-shadow: 0 0 44px rgba(6,182,212,.45), 0 6px 20px rgba(0,0,0,.25);
}
.btn-hero-secondary {
  background: rgba(255,255,255,.05); color: rgba(255,255,255,.75);
  border: 1px solid rgba(255,255,255,.12);
  padding: 0.9rem 1.9rem; border-radius: var(--radius-md);
  font-weight: 500; font-size: 1rem; text-decoration: none;
  transition: all 0.2s;
  display: inline-flex; align-items: center;
}
.btn-hero-secondary:hover {
  background: rgba(255,255,255,.1); color: white;
  border-color: rgba(255,255,255,.25);
}

/* ─── Phone Mockup ────────────────────────────────────────────────────────── */
.phone-wrap {
  position: relative;
  animation: floatY 7s ease-in-out infinite;
}
.phone-glow {
  position: absolute;
  width: 420px; height: 420px;
  background: radial-gradient(circle, rgba(6,182,212,.15) 0%, transparent 70%);
  left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  animation: glowPulse 4s ease-in-out infinite;
}
.phone-frame {
  background: #0d1117;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,.08);
  box-shadow:
    0 40px 80px -20px rgba(0,0,0,.8),
    0 0 0 1px rgba(255,255,255,.04),
    inset 0 1px 0 rgba(255,255,255,.06);
  overflow: hidden;
  width: 340px;
  position: relative;
}
.phone-frame::before {
  content: '';
  position: absolute; inset: -1px;
  border-radius: 17px;
  background: linear-gradient(135deg, rgba(6,182,212,.25) 0%, rgba(99,102,241,.15) 50%, transparent 100%);
  z-index: -1;
}
.phone-topbar {
  background: #161b22;
  padding: 10px 14px;
  display: flex; align-items: center; gap: 6px;
  border-bottom: 1px solid rgba(255,255,255,.05);
}
.phone-dots { display: flex; gap: 5px; align-items: center; }
.pdot {
  width: 10px; height: 10px; border-radius: 50%;
}
.pdot-red    { background: #ff5f57; }
.pdot-yellow { background: #febc2e; }
.pdot-green  { background: #28c840; }
.phone-label {
  margin-left: auto;
  font-size: 10px; color: #4b5563; font-weight: 500;
}
.call-header {
  padding: 12px 14px;
  display: flex; align-items: center; gap: 10px;
  border-bottom: 1px solid rgba(255,255,255,.04);
}
.caller-avatar {
  width: 34px; height: 34px;
  background: #1e2a3a; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #64748b; flex-shrink: 0;
}
.caller-info { flex: 1; }
.caller-name { font-size: 12px; font-weight: 600; color: #f1f5f9; line-height: 1.3; }
.caller-sub  { font-size: 10px; color: #475569; margin-top: 1px; }
.call-live {
  display: flex; align-items: center; gap: 4px;
  font-size: 10px; color: #10b981; font-weight: 600;
}
.call-live-dot {
  width: 6px; height: 6px;
  background: #10b981; border-radius: 50%;
  animation: pulse-dot 1.5s ease-in-out infinite;
}
.phone-chat {
  padding: 14px 12px 10px;
  display: flex; flex-direction: column;
  gap: 10px; min-height: 190px;
}
.chat-msg {
  display: flex; align-items: flex-end; gap: 6px;
  opacity: 0; transform: translateY(8px);
  transition: opacity 0.45s ease, transform 0.45s ease;
}
.chat-msg.chat-visible { opacity: 1; transform: translateY(0); }
.chat-msg.chat-user { flex-direction: row-reverse; }
.chat-avatar-ai {
  width: 20px; height: 20px;
  background: var(--cyan); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 7px; font-weight: 800; color: #000;
  flex-shrink: 0;
}
.chat-bubble-ai {
  background: #1e2a3a;
  color: #e2e8f0;
  padding: 8px 11px;
  border-radius: 12px 12px 12px 3px;
  font-size: 11.5px;
  line-height: 1.55;
  max-width: 210px;
}
.chat-bubble-user {
  background: var(--cyan);
  color: #000;
  border-radius: 12px 12px 3px 12px;
  padding: 8px 11px;
  font-size: 11.5px; line-height: 1.55;
  max-width: 210px; font-weight: 500;
}
.typing-dots {
  display: flex; gap: 4px; align-items: center;
  padding: 10px 14px;
}
.typing-dots span {
  width: 5px; height: 5px;
  background: #64748b; border-radius: 50%;
  animation: typingBounce 1.1s ease-in-out infinite;
}
.typing-dots span:nth-child(2) { animation-delay: 0.18s; }
.typing-dots span:nth-child(3) { animation-delay: 0.36s; }
.phone-wave {
  padding: 9px 14px 11px;
  display: flex; align-items: center; gap: 8px;
  border-top: 1px solid rgba(255,255,255,.04);
  background: #161b22;
}
.phone-wave-bars {
  display: flex; gap: 2.5px; align-items: center; height: 20px;
}
.phone-wave-bars span {
  width: 2.5px; background: var(--cyan); border-radius: 2px;
  animation: equalize 1.1s ease-in-out infinite;
  transform-origin: center;
}
.phone-wave-bars span:nth-child(1)  { height: 35%; animation-delay: 0.00s; }
.phone-wave-bars span:nth-child(2)  { height: 65%; animation-delay: 0.09s; }
.phone-wave-bars span:nth-child(3)  { height: 90%; animation-delay: 0.18s; }
.phone-wave-bars span:nth-child(4)  { height: 55%; animation-delay: 0.27s; }
.phone-wave-bars span:nth-child(5)  { height: 100%;animation-delay: 0.36s; }
.phone-wave-bars span:nth-child(6)  { height: 70%; animation-delay: 0.45s; }
.phone-wave-bars span:nth-child(7)  { height: 80%; animation-delay: 0.38s; }
.phone-wave-bars span:nth-child(8)  { height: 45%; animation-delay: 0.28s; }
.phone-wave-bars span:nth-child(9)  { height: 60%; animation-delay: 0.17s; }
.phone-wave-bars span:nth-child(10) { height: 28%; animation-delay: 0.06s; }
.phone-wave-label {
  font-size: 10px; color: #4b5563; margin-left: 4px; font-weight: 500;
}

/* ─── Stats Bar ──────────────────────────────────────────────────────────── */
.stats-bar {
  background: white;
  border-bottom: 1px solid var(--border-light);
}
.stats-container {
  max-width: 900px; margin: 0 auto; padding: 0 1.75rem;
  display: flex; align-items: stretch; justify-content: center;
  flex-wrap: wrap;
}
.stat-item {
  padding: 1.5rem 2.5rem;
  text-align: center;
  display: flex; flex-direction: column; gap: 0.2rem;
}
.stat-number {
  font-family: 'Outfit', sans-serif; font-size: 1.75rem; font-weight: 700;
  color: var(--text-main); letter-spacing: -0.04em; line-height: 1;
}
.stat-label { font-size: 0.8rem; color: var(--text-muted); font-weight: 500; }
.stat-sep {
  width: 1px; background: var(--border-light);
  margin: 1rem 0; align-self: stretch;
}

/* ─── Section shared ─────────────────────────────────────────────────────── */
.section-tag {
  display: inline-block;
  font-size: 0.7rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--cyan); background: var(--cyan-dim); border: 1px solid var(--cyan-border);
  padding: 0.3rem 0.9rem; border-radius: 999px; margin-bottom: 1rem;
}
.section-heading {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  color: var(--text-main); margin-bottom: 0.65rem;
  letter-spacing: -0.035em;
}
.section-sub {
  font-size: 1rem; color: var(--text-muted);
  max-width: 500px; margin: 0 auto; line-height: 1.75;
}
.section-label-wrap { text-align: center; margin-bottom: 3.5rem; }

/* ─── How It Works ───────────────────────────────────────────────────────── */
.hiw-section {
  background: white;
  padding: 5.5rem 0 6rem;
  border-top: 1px solid var(--border-light);
}
.hiw-container {
  max-width: 1100px; margin: 0 auto; padding: 0 1.75rem;
}
.hiw-steps {
  display: flex; align-items: flex-start;
  justify-content: center; flex-wrap: wrap;
  gap: 0;
}
.hiw-step {
  flex: 1; min-width: 200px; max-width: 260px;
  padding: 1.75rem 1.5rem; text-align: center;
}
.step-num {
  font-family: 'Outfit', sans-serif;
  font-size: 3.5rem; font-weight: 900;
  color: rgba(6,182,212,.12);
  line-height: 1; margin-bottom: 0.75rem;
  letter-spacing: -0.04em;
}
.step-icon-wrap {
  width: 50px; height: 50px;
  background: var(--cyan-dim);
  border: 1px solid var(--cyan-border);
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.25rem; color: var(--cyan);
}
.step-icon-wrap svg { width: 22px; height: 22px; }
.hiw-step h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.05rem; font-weight: 700;
  color: var(--text-main); margin-bottom: 0.55rem;
}
.hiw-step p { font-size: 0.875rem; color: var(--text-muted); line-height: 1.65; }
.hiw-arrow {
  font-size: 1.4rem; color: var(--cyan); opacity: 0.4;
  display: flex; align-items: center; padding-top: 3.5rem;
  align-self: flex-start;
}

/* ─── Builder Section ────────────────────────────────────────────────────── */
.builder-section {
  background: #f8fafc;
  padding: 5rem 0 6rem;
  border-top: 1px solid var(--border-light);
}
.builder-container {
  max-width: 1100px; margin: 0 auto; padding: 0 1.75rem;
  text-align: center;
}
.builder-container .section-sub { margin-bottom: 3rem; }
.wizard-outer {
  background: white;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-xl);
  box-shadow: 0 20px 80px -20px rgba(0,0,0,.1), 0 4px 16px rgba(0,0,0,.04);
  overflow: visible;
}
/* Round the header top corners since wizard-outer no longer clips them */
.wizard-container > div:first-child {
  border-radius: var(--radius-xl) var(--radius-xl) 0 0;
}

/* ─── Industries ─────────────────────────────────────────────────────────── */
.industries-section {
  background: white;
  padding: 5.5rem 0 6rem;
  border-top: 1px solid var(--border-light);
}
.industries-container {
  max-width: 1100px; margin: 0 auto; padding: 0 1.75rem;
}
.industries-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.industry-card {
  background: #f9fafb;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  transition: all 0.3s cubic-bezier(.16,1,.3,1);
  display: flex; flex-direction: column;
}
.industry-card:hover {
  border-color: rgba(6,182,212,.3);
  transform: translateY(-3px);
  box-shadow: 0 12px 40px -8px rgba(0,0,0,.08);
  background: white;
}
.industry-icon { font-size: 2rem; margin-bottom: 1rem; }
.industry-card h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 1rem; font-weight: 700;
  color: var(--text-main); margin-bottom: 0.5rem;
}
.industry-card p {
  font-size: 0.875rem; color: var(--text-muted);
  line-height: 1.65; margin-bottom: 1rem; flex: 1;
}
.industry-tags {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-wrap: wrap; gap: 0.4rem;
}
.industry-tags li {
  background: #f1f5f9; border-radius: 999px;
  padding: 0.2rem 0.7rem;
  font-size: 0.72rem; color: var(--text-muted); font-weight: 500;
}
.industry-card-dark {
  background: var(--dark-bg);
  border-color: rgba(6,182,212,.18);
}
.industry-card-dark:hover {
  border-color: rgba(6,182,212,.45);
  background: #0d1321;
}
.industry-card-dark h3 { color: white; }
.industry-card-dark p  { color: #94a3b8; }
.industry-cta-btn {
  display: inline-flex; align-items: center;
  background: var(--cyan); color: #000;
  padding: 0.6rem 1.25rem; border-radius: var(--radius-sm);
  font-weight: 700; font-size: 0.875rem; text-decoration: none;
  transition: all 0.2s; margin-top: auto; align-self: flex-start;
}
.industry-cta-btn:hover { background: #22d3ee; transform: translateY(-1px); }

/* ─── Features ───────────────────────────────────────────────────────────── */
.features-section {
  background: #f8fafc;
  padding: 5rem 0 6rem;
  border-top: 1px solid var(--border-light);
}
.features-container {
  max-width: 1100px; margin: 0 auto; padding: 0 1.75rem;
}
.features-header { text-align: center; margin-bottom: 3.5rem; }
.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  max-width: 900px; margin: 0 auto;
}
.feature-card {
  background: white;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  transition: all 0.3s cubic-bezier(.16,1,.3,1);
}
.feature-card:hover {
  border-color: rgba(6,182,212,.3);
  transform: translateY(-3px);
  box-shadow: 0 12px 40px -8px rgba(0,0,0,.08);
}
.feature-icon {
  width: 2.5rem; height: 2.5rem;
  border-radius: var(--radius-sm);
  border: 1px solid;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.25rem;
}
.feature-icon svg { width: 1.25rem; height: 1.25rem; }
.feature-icon-cyan {
  color: var(--cyan);
  background: var(--cyan-dim);
  border-color: var(--cyan-border);
}
.feature-icon-indigo {
  color: var(--indigo);
  background: var(--indigo-dim);
  border-color: var(--indigo-border);
}
.feature-title {
  font-family: 'Outfit', sans-serif; font-size: 1rem; font-weight: 700;
  color: var(--text-main); margin-bottom: 0.4rem;
}
.feature-desc { font-size: 0.875rem; color: var(--text-muted); line-height: 1.65; }

/* ─── Pricing CTA ────────────────────────────────────────────────────────── */
.pricing-cta-section {
  background: linear-gradient(135deg, #040B1A 0%, #071022 50%, #0a1628 100%);
  padding: 5.5rem 0 5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.pricing-cta-section::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 60% at 50% 50%, rgba(6,182,212,.07) 0%, transparent 70%);
  pointer-events: none;
}
.pricing-cta-container {
  max-width: 680px; margin: 0 auto; padding: 0 1.75rem;
  position: relative; z-index: 1;
}
.pricing-cta-heading {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(2rem, 3.5vw, 3rem);
  color: white; margin-bottom: 1rem;
  letter-spacing: -0.035em;
}
.pricing-cta-sub {
  color: var(--text-dim); font-size: 1.05rem;
  line-height: 1.7; margin-bottom: 2.5rem;
}
.pricing-cta-actions {
  display: flex; flex-direction: column;
  align-items: center; gap: 1.25rem;
  margin-bottom: 1.25rem;
}
.pricing-cta-signin {
  color: #64748b; font-size: 0.875rem; text-decoration: none;
  transition: color 0.2s;
}
.pricing-cta-signin:hover { color: #94a3b8; }
.pricing-cta-fine { font-size: 0.78rem; color: #334155; }

/* ─── Buttons (shared with wizard) ──────────────────────────────────────── */
.btn-primary {
  background: #0f172a; color: white;
  padding: 0.85rem 1.75rem; border-radius: 12px;
  font-weight: 600; cursor: pointer; border: none;
  transition: all 0.3s cubic-bezier(.16,1,.3,1);
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-family: 'Inter', sans-serif; font-size: 0.95rem; text-decoration: none;
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px -5px rgba(15,23,42,.2);
  background: #1e293b;
}
.btn-primary:disabled { opacity: 0.5; cursor: not-allowed; transform: none; }
.btn-secondary {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: white; border: 1px solid rgba(0,0,0,.06);
  box-shadow: 0 2px 6px rgba(0,0,0,.04);
  color: var(--text-main);
  padding: 0.875rem 1.75rem; border-radius: 999px;
  font-weight: 500; font-size: 1rem; font-family: 'Inter', sans-serif;
  text-decoration: none; cursor: pointer;
  transition: all 0.25s ease;
}
.btn-secondary:hover { background: #f1f5f9; border-color: #cbd5e1; }

/* ─── Wizard container ───────────────────────────────────────────────────── */
.wizard-container {
  background: white; border: none; border-radius: 0;
  padding: 0; width: 100%; max-width: 100%; margin: 0;
  overflow: visible; box-shadow: none;
}
.wizard-container:hover { border-color: transparent; box-shadow: none; }
.step-header {
  font-family: 'Outfit', sans-serif; font-size: 1.1rem;
  color: var(--text-main); font-weight: 600; margin: 0;
}
.step-desc { color: var(--text-muted); font-size: 0.95rem; margin-bottom: 1.5rem; }
.input-field {
  width: 100%; background: white; border: 1px solid #e2e8f0;
  color: var(--text-main); padding: 0.75rem 1rem;
  border-radius: var(--radius-sm); font-family: 'Inter', sans-serif;
  font-size: 0.95rem; margin-bottom: 1rem; transition: border-color 0.2s;
}
.input-field:focus { outline: none; border-color: var(--cyan); }

/* Template grid */
.template-grid {
  display: grid !important;
  grid-template-columns: repeat(2, 1fr) !important;
  gap: 0.5rem !important; margin-top: 0.75rem;
}
@media (min-width: 900px) {
  .template-grid { grid-template-columns: repeat(5, 1fr) !important; }
}
.template-card {
  background: #f8fafc; border: 1px solid #e2e8f0;
  border-radius: 0.75rem; padding: 1.25rem 0.75rem !important;
  cursor: pointer; height: 160px;
  display: flex !important; flex-direction: column !important;
  align-items: center !important; justify-content: center !important;
  text-align: center !important; gap: 0.6rem !important;
  min-width: 0; overflow: visible !important;
  position: relative !important; transition: all 0.2s ease;
}
.template-card:hover {
  border-color: var(--cyan); transform: translateY(-2px);
  box-shadow: 0 8px 20px -4px rgba(6,182,212,.18);
  z-index: 50 !important; overflow: visible !important;
}
.template-card.active {
  border-color: var(--cyan); background: rgba(6,182,212,.05); border-width: 2px;
}
.tpl-icon {
  font-size: 2.5rem !important; line-height: 1 !important;
  display: flex !important; align-items: center !important;
  justify-content: center !important; width: 100% !important;
}
.template-card h3 {
  font-size: 0.78rem !important; margin: 0 !important;
  color: var(--text-main); font-weight: 700 !important;
  white-space: normal !important; overflow: hidden !important;
  line-height: 1.25 !important; display: block !important;
  max-width: 100% !important;
}
.template-card .card-hint {
  position: absolute; bottom: calc(100% + 1rem);
  left: 50% !important; margin-left: -140px !important;
  width: 280px !important; min-height: 160px !important;
  background: #0f172a; color: white;
  padding: 1.5rem !important; display: flex; flex-direction: column;
  justify-content: center; border-radius: 1.25rem;
  border: 1px solid rgba(6,182,212,.4);
  box-shadow: 0 30px 60px -12px rgba(0,0,0,.7);
  z-index: 2000 !important; pointer-events: none;
}
@media (max-width: 640px) {
  .template-card .card-hint { width: 240px !important; margin-left: -120px !important; }
}
.template-card:hover .card-hint { pointer-events: auto; }
.template-card .card-hint .hint-desc {
  font-size: 0.8rem !important; line-height: 1.5 !important;
  margin-bottom: 1rem !important; color: rgba(255,255,255,.9) !important;
  display: block !important; white-space: normal !important;
  overflow: visible !important;
}
.hint-cta {
  font-size: 0.65rem; font-weight: 700; color: var(--cyan);
  text-transform: uppercase; letter-spacing: 0.05em;
}

/* Progress bar */
.progress-bar-container {
  width: 100%; height: 6px; background: #e2e8f0;
  border-radius: 4px; overflow: hidden; margin: 1.5rem 0;
}
.progress-bar-fill {
  height: 100%; background: var(--cyan); transition: width 0.3s ease-out;
}
.progress-status {
  font-size: 0.875rem; color: var(--text-muted);
  text-align: center; font-family: 'Inter', sans-serif;
}

/* ─── Footer ─────────────────────────────────────────────────────────────── */
.landing-footer {
  background: white;
  border-top: 1px solid var(--border-light);
  padding: 3.5rem 0 2rem;
}
.footer-inner {
  max-width: 1100px; margin: 0 auto; padding: 0 1.75rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 2.5rem; margin-bottom: 2.5rem;
}
.footer-brand p {
  font-size: 0.875rem; color: var(--text-muted);
  max-width: 300px; line-height: 1.65; margin-top: 0.85rem;
}
.footer-col h4 {
  font-size: 0.7rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.1em;
  color: var(--text-main); margin-bottom: 1rem;
}
.footer-col ul {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 0.65rem;
}
.footer-col ul li a {
  font-size: 0.875rem; color: var(--text-muted);
  text-decoration: none; transition: color 0.2s;
}
.footer-col ul li a:hover { color: var(--text-main); }
.footer-bottom {
  border-top: 1px solid var(--border-light);
  padding-top: 1.5rem;
  display: flex; justify-content: space-between;
  align-items: center; flex-wrap: wrap; gap: 1rem;
}
.footer-bottom p { font-size: 0.75rem; color: #94a3b8; }
.footer-email {
  font-size: 0.75rem; color: #94a3b8;
  display: flex; align-items: center; gap: 0.4rem;
}

/* ─── Responsive ─────────────────────────────────────────────────────────── */
@media (max-width: 960px) {
  .hero-split {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 3rem;
  }
  .hero-left { align-items: center; }
  .hero-subtitle { max-width: 520px; text-align: center; }
  .hero-right {
    order: -1;
    transform: scale(0.9);
  }
  .industries-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: span 2; }
}
@media (max-width: 768px) {
  .hero-title { font-size: 2.9rem; }
  .hero-ctas { justify-content: center; }
  .features-grid { grid-template-columns: 1fr; }
  .stats-container { gap: 0; }
  .stat-item { padding: 1.25rem 1.5rem; }
  .stat-sep { display: none; }
  .nav-links .nav-link:not(:last-child):not(.nav-cta) { display: none; }
  .hiw-steps { flex-direction: column; align-items: center; }
  .hiw-arrow { transform: rotate(90deg); padding-top: 0; }
  .hiw-step { max-width: 320px; }
}
@media (max-width: 600px) {
  .industries-grid { grid-template-columns: 1fr; }
  .hero-right { transform: scale(0.82); transform-origin: center top; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-brand { grid-column: unset; }
}
@media (max-width: 480px) {
  .hero-title { font-size: 2.3rem; }
  .hero-badge { font-size: 0.72rem; }
  .phone-frame { width: 300px; }
}
