:root {
  --bg: #0a0a0f;
  --bg-elevated: #12121a;
  --bg-card: #1a1a26;
  --fg: #e8e8f0;
  --fg-muted: #8888a0;
  --accent: #6c5ce7;
  --accent-glow: rgba(108, 92, 231, 0.15);
  --accent-light: #a29bfe;
  --green: #00d2a0;
  --orange: #ff9f43;
  --red: #ff6b6b;
  --border: rgba(255, 255, 255, 0.06);
  --radius: 16px;
  --radius-sm: 8px;
  --font-heading: 'Space Grotesk', sans-serif;
  --font-body: 'DM Sans', sans-serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.15;
}

/* === HERO === */
.hero {
  min-height: 90vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 80px 24px 60px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -200px;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, var(--accent-glow) 0%, transparent 70%);
  pointer-events: none;
}

.hero-badge {
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 3px;
  color: var(--accent-light);
  padding: 8px 20px;
  border: 1px solid rgba(108, 92, 231, 0.3);
  border-radius: 100px;
  margin-bottom: 40px;
  position: relative;
}

.hero h1 {
  font-size: clamp(3rem, 8vw, 5.5rem);
  margin-bottom: 28px;
  letter-spacing: -2px;
}

.hero h1 .accent {
  background: linear-gradient(135deg, var(--accent-light) 0%, var(--green) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.lede {
  font-size: 1.15rem;
  color: var(--fg-muted);
  max-width: 600px;
  margin-bottom: 56px;
  line-height: 1.7;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 40px;
  padding: 28px 44px;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--accent-light);
}

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

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

/* === PROBLEM === */
.problem {
  padding: 100px 24px;
}

.problem-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.section-label {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--accent-light);
  margin-bottom: 48px;
  text-align: center;
}

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

.problem-card {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 28px;
}

.problem-icon {
  font-size: 2rem;
  margin-bottom: 20px;
}

.problem-card h3 {
  font-size: 1.2rem;
  margin-bottom: 12px;
}

.problem-card p {
  color: var(--fg-muted);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* === FEATURES === */
.features {
  padding: 100px 24px;
  max-width: 1100px;
  margin: 0 auto;
}

.features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.feature-block {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 32px;
  transition: border-color 0.3s;
}

.feature-block:hover {
  border-color: rgba(108, 92, 231, 0.3);
}

.feature-large {
  grid-column: span 2;
  background: linear-gradient(135deg, var(--bg-card) 0%, var(--bg-elevated) 100%);
  border-color: rgba(108, 92, 231, 0.2);
}

.feature-tag {
  font-family: var(--font-heading);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 2px;
  color: var(--green);
  margin-bottom: 16px;
}

.feature-block h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
}

.feature-block p {
  color: var(--fg-muted);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* === HOW === */
.how {
  padding: 100px 24px;
  max-width: 800px;
  margin: 0 auto;
}

.steps {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.step {
  display: flex;
  gap: 32px;
  padding: 40px 0;
  border-bottom: 1px solid var(--border);
}

.step:last-child {
  border-bottom: none;
}

.step-number {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 700;
  color: rgba(108, 92, 231, 0.25);
  line-height: 1;
  min-width: 80px;
}

.step-content h3 {
  font-size: 1.2rem;
  margin-bottom: 8px;
}

.step-content p {
  color: var(--fg-muted);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* === CLOSING === */
.closing {
  padding: 120px 24px;
  text-align: center;
  position: relative;
}

.closing::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, var(--accent-glow) 0%, transparent 70%);
  pointer-events: none;
}

.closing-inner {
  position: relative;
  max-width: 700px;
  margin: 0 auto;
}

.closing h2 {
  font-size: clamp(2rem, 5vw, 3rem);
  margin-bottom: 20px;
  letter-spacing: -1px;
}

.closing p {
  color: var(--fg-muted);
  font-size: 1.1rem;
  line-height: 1.7;
}

.closing-cta {
  display: inline-block;
  margin-top: 36px;
  padding: 16px 36px;
  background: var(--accent);
  color: #fff;
  border-radius: 12px;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  transition: opacity 0.15s;
}
.closing-cta:hover { opacity: 0.85; }

/* === FOOTER === */
.site-footer {
  padding: 48px 24px;
  border-top: 1px solid var(--border);
  text-align: center;
}

.footer-brand {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 6px;
}

.footer-tagline {
  font-size: 0.85rem;
  color: var(--fg-muted);
}

/* === HERO SOCIAL PROOF WRAPPER === */
.hero-social-proof {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.hero-micro-copy {
  font-size: 0.82rem;
  color: var(--fg-muted);
  letter-spacing: 0.5px;
}

/* === HERO ACTIONS === */
.hero-actions {
  display: flex;
  gap: 16px;
  margin-bottom: 20px;
  position: relative;
  flex-wrap: wrap;
  justify-content: center;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  padding: 15px 36px;
  background: var(--accent);
  color: #fff;
  border-radius: 12px;
  font-weight: 700;
  font-size: 1.05rem;
  text-decoration: none;
  transition: opacity 0.15s, transform 0.15s;
  box-shadow: 0 4px 20px rgba(108, 92, 231, 0.35);
}
.btn-primary:hover {
  opacity: 0.9;
  transform: translateY(-1px);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  padding: 14px 32px;
  background: transparent;
  color: var(--fg-muted);
  border: 1px solid var(--border);
  border-radius: 12px;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  transition: border-color 0.2s, color 0.2s;
}
.btn-ghost:hover {
  border-color: var(--accent);
  color: var(--fg);
}

/* === HERO FORM === */
.hero-form-wrap {
  margin-bottom: 8px;
  position: relative;
}

.hero-form {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.hero-form-fields {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
}

.hero-form-fields input {
  padding: 14px 18px;
  background: rgba(255,255,255,0.07);
  border: 1px solid var(--border);
  border-radius: 10px;
  color: var(--fg);
  font-size: 0.95rem;
  font-family: var(--font-body);
  min-width: 200px;
  transition: border-color 0.2s, background 0.2s;
}

.hero-form-fields input:focus {
  outline: none;
  border-color: var(--accent);
  background: rgba(255,255,255,0.1);
}

.hero-form-fields input::placeholder {
  color: var(--fg-muted);
  opacity: 0.7;
}

.hero-form-fields .btn-primary {
  white-space: nowrap;
  padding: 14px 28px;
  font-size: 0.95rem;
}

.hero-form-note {
  font-size: 0.8rem;
  color: var(--fg-muted);
  text-align: center;
  min-height: 18px;
  margin: 0;
}

/* === DEMO AGENT === */
.demo-agent {
  padding: 100px 24px;
  max-width: 1100px;
  margin: 0 auto;
}

.demo-inner { text-align: center; }

.demo-title {
  font-size: clamp(2rem, 5vw, 3rem);
  margin-bottom: 16px;
  letter-spacing: -1px;
}

.demo-accent {
  background: linear-gradient(135deg, var(--accent-light) 0%, var(--green) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.demo-sub {
  color: var(--fg-muted);
  font-size: 1.05rem;
  max-width: 560px;
  margin: 0 auto 60px;
}

.demo-container {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 48px;
  align-items: start;
  max-width: 900px;
  margin: 0 auto;
}

.phone-frame {
  background: var(--bg-card);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 40px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5), 0 0 0 1px rgba(255,255,255,0.05);
  flex-shrink: 0;
}

.phone-topbar {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  background: var(--bg-elevated);
  border-bottom: 1px solid var(--border);
}

.phone-dots { display: flex; gap: 6px; }
.phone-dots span {
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--bg-card); border: 1px solid rgba(255,255,255,0.1);
}

.phone-business {
  font-family: var(--font-heading); font-weight: 700;
  font-size: 0.85rem; color: var(--fg);
  flex: 1; text-align: center;
}

.phone-status {
  display: flex; align-items: center; gap: 5px;
  font-size: 0.7rem; color: var(--green);
}

.status-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--green);
  animation: demoPulse 2s infinite;
}

@keyframes demoPulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.chat-body {
  height: 420px;
  overflow-y: auto;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  scroll-behavior: smooth;
}

.chat-body::-webkit-scrollbar { width: 4px; }
.chat-body::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.1); border-radius: 2px; }

.chat-message {
  display: flex;
  align-items: flex-end;
  gap: 10px;
}

.agent-message { align-self: flex-start; }
.user-message { align-self: flex-end; flex-direction: row-reverse; }

.agent-avatar {
  width: 28px; height: 28px; border-radius: 50%;
  background: var(--accent); color: #fff;
  font-family: var(--font-heading); font-weight: 700;
  font-size: 0.75rem;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}

.message-bubble {
  max-width: 75%;
  padding: 12px 16px;
  border-radius: 18px;
  font-size: 0.9rem;
  line-height: 1.5;
}

.agent-message .message-bubble {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  color: var(--fg);
  border-bottom-left-radius: 4px;
}

.user-message .message-bubble {
  background: var(--accent); color: #fff;
  border-bottom-right-radius: 4px;
}

.chat-input-area {
  padding: 14px 16px;
  border-top: 1px solid var(--border);
  background: var(--bg-elevated);
}

.chat-disclaimer {
  display: flex; align-items: center; gap: 5px;
  font-size: 0.7rem; color: var(--fg-muted);
  margin-bottom: 10px;
}

.chat-input-row { display: flex; gap: 10px; align-items: center; }

.demo-input {
  flex: 1;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 10px 16px;
  color: var(--fg);
  font-size: 0.9rem;
  outline: none;
  transition: border-color 0.2s;
}
.demo-input:focus { border-color: var(--accent); }
.demo-input:disabled { opacity: 0.5; }

.demo-send-btn {
  width: 38px; height: 38px; border-radius: 50%;
  background: var(--accent); border: none; color: #fff;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: opacity 0.15s;
}
.demo-send-btn:hover:not(:disabled) { opacity: 0.85; }
.demo-send-btn:disabled { opacity: 0.4; cursor: not-allowed; }

.demo-side {
  display: flex; flex-direction: column;
  padding-top: 8px;
}

.demo-side-label {
  font-size: 0.78rem; text-transform: uppercase;
  letter-spacing: 2px; color: var(--accent-light);
  margin-bottom: 28px;
}

.demo-steps {
  list-style: none; padding: 0; margin: 0 0 36px;
  display: flex; flex-direction: column; gap: 28px;
}

.demo-steps li { display: flex; gap: 16px; align-items: flex-start; }

.demo-step-icon {
  width: 36px; height: 36px; border-radius: 10px;
  background: var(--accent-glow);
  border: 1px solid rgba(108, 92, 231, 0.2);
  display: flex; align-items: center; justify-content: center;
  color: var(--accent-light); flex-shrink: 0;
}

.demo-steps strong { display: block; font-size: 0.9rem; margin-bottom: 3px; color: var(--fg); }
.demo-steps span { font-size: 0.82rem; color: var(--fg-muted); line-height: 1.5; }

.demo-cta {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 14px 28px;
  background: var(--accent); color: #fff;
  border-radius: 12px; font-weight: 700; font-size: 0.95rem;
  text-decoration: none; transition: opacity 0.15s;
  align-self: flex-start;
}
.demo-cta:hover { opacity: 0.85; }

/* === SOCIAL PROOF === */
.social-proof {
  padding: 80px 24px;
  max-width: 1100px;
  margin: 0 auto;
}

.social-proof-inner { max-width: 1100px; }

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

.industry-card {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  text-align: center;
}

.industry-icon {
  font-size: 2.2rem;
  margin-bottom: 16px;
}

.industry-name {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.05rem;
  margin-bottom: 8px;
}

.industry-use {
  font-size: 0.82rem;
  color: var(--fg-muted);
  line-height: 1.5;
}

/* === PRICING === */
.pricing {
  padding: 100px 24px;
  max-width: 1100px;
  margin: 0 auto;
}

.pricing-sub {
  text-align: center;
  color: var(--fg-muted);
  font-size: 1.05rem;
  margin-top: -32px;
  margin-bottom: 52px;
}

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

.pricing-card {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 28px;
  position: relative;
}

.pricing-featured {
  border-color: var(--accent);
  box-shadow: 0 0 40px rgba(108, 92, 231, 0.15);
}

.plan-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 16px;
  border-radius: 100px;
  white-space: nowrap;
}

.plan-name {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--fg-muted);
  margin-bottom: 12px;
}

.plan-price {
  font-family: var(--font-heading);
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--fg);
  line-height: 1;
  margin-bottom: 8px;
}

.plan-period {
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--fg-muted);
}

.plan-desc {
  font-size: 0.9rem;
  color: var(--fg-muted);
  margin-bottom: 24px;
  line-height: 1.5;
}

.plan-features {
  list-style: none;
  margin: 0 0 28px;
  padding: 0;
}

.plan-features li {
  font-size: 0.9rem;
  color: var(--fg-muted);
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
}

.plan-features li:last-child { border-bottom: none; }

.coming-soon {
  font-size: 0.78rem;
  color: var(--orange);
  opacity: 0.8;
}

.plan-cta {
  display: block;
  width: 100%;
  text-align: center;
  padding: 14px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 10px;
  color: var(--fg);
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  transition: border-color 0.2s;
}
.plan-cta:hover { border-color: var(--accent); }

.plan-cta-primary {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}
.plan-cta-primary:hover { opacity: 0.85; }

.pricing-compare {
  text-align: center;
  margin-top: 36px;
  font-size: 0.8rem;
  color: var(--fg-muted);
}

/* === INSTALL PAGE === */
.install-page {
  background: var(--bg);
}

.install-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 40px;
  border-bottom: 1px solid var(--border);
}

.install-logo {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--fg);
  text-decoration: none;
}

.install-badge {
  font-size: 0.78rem;
  color: var(--green);
  background: rgba(0, 210, 160, 0.1);
  border: 1px solid rgba(0, 210, 160, 0.2);
  padding: 4px 12px;
  border-radius: 100px;
}

.install-main {
  max-width: 1100px;
  margin: 0 auto;
  padding: 60px 40px;
}

.install-hero {
  text-align: center;
  margin-bottom: 60px;
}

.install-hero h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  letter-spacing: -1px;
  margin-bottom: 16px;
}

.install-hero p {
  color: var(--fg-muted);
  font-size: 1.05rem;
}

.install-setup {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.setup-form-area {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 40px;
}

.setup-form { display: flex; flex-direction: column; gap: 20px; }

.setup-field { display: flex; flex-direction: column; gap: 8px; }

.setup-field label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--fg-muted);
}

.setup-field input {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--fg);
  padding: 14px 16px;
  font-size: 1rem;
  outline: none;
  transition: border-color 0.2s;
}
.setup-field input:focus { border-color: var(--accent); }

.setup-btn {
  padding: 16px;
  background: var(--accent);
  border: none;
  border-radius: 10px;
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
}
.setup-btn:hover { opacity: 0.85; }
.setup-btn:disabled { opacity: 0.5; cursor: not-allowed; }

.setup-err {
  color: var(--red);
  font-size: 0.85rem;
  margin: 0;
}

.embed-result { margin-top: 8px; }

.embed-step { margin-bottom: 24px; }

.step-label {
  font-size: 0.82rem;
  color: var(--fg-muted);
  margin-bottom: 8px;
}

.step-label code {
  background: var(--bg-card);
  padding: 2px 6px;
  border-radius: 4px;
  font-size: 0.85em;
}

.code-block {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 16px;
  position: relative;
}

.code-block pre {
  font-family: 'Courier New', monospace;
  font-size: 0.82rem;
  color: var(--green);
  white-space: pre-wrap;
  word-break: break-all;
  margin: 0;
}

.copy-btn {
  position: absolute;
  top: 8px;
  right: 8px;
  padding: 4px 12px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 6px;
  color: var(--fg-muted);
  font-size: 0.75rem;
  cursor: pointer;
}
.copy-btn:hover { color: var(--fg); }

.embed-note {
  color: var(--fg-muted);
  font-size: 0.85rem;
  margin: 24px 0 16px;
  padding: 16px;
  background: rgba(0, 210, 160, 0.05);
  border: 1px solid rgba(0, 210, 160, 0.1);
  border-radius: 8px;
}

.view-pricing {
  color: var(--accent-light);
  font-size: 0.9rem;
  text-decoration: none;
}

.install-preview { display: flex; flex-direction: column; gap: 28px; }

.preview-label {
  font-size: 0.8rem;
  color: var(--fg-muted);
  text-transform: uppercase;
  letter-spacing: 2px;
}

.preview-frame {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
}

.preview-mock {
  padding: 28px;
  min-height: 240px;
  background: var(--bg);
  position: relative;
}

.mock-nav {
  display: flex;
  gap: 16px;
  font-size: 0.8rem;
  color: var(--fg-muted);
  margin-bottom: 28px;
}

.mock-logo {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.85rem;
}

.mock-hero { display: flex; flex-direction: column; gap: 8px; }

.mock-h1 {
  height: 20px;
  width: 70%;
  background: var(--bg-elevated);
  border-radius: 4px;
}

.mock-h1.short { width: 50%; }

.mock-cta {
  height: 32px;
  width: 120px;
  background: var(--accent);
  border-radius: 8px;
  margin-top: 8px;
}

.install-features {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.install-feature {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.if-icon { font-size: 1.4rem; }

.install-feature strong {
  font-size: 0.9rem;
  display: block;
  margin-bottom: 2px;
}

.install-feature p {
  font-size: 0.82rem;
  color: var(--fg-muted);
  line-height: 1.5;
}

.install-footer {
  display: flex;
  gap: 24px;
  justify-content: center;
  padding: 40px 24px;
  border-top: 1px solid var(--border);
}

.install-footer a {
  color: var(--fg-muted);
  font-size: 0.9rem;
  text-decoration: none;
}
.install-footer a:hover { color: var(--fg); }

/* === RESPONSIVE === */
@media (max-width: 768px) {
  .hero {
    min-height: auto;
    padding: 100px 20px 60px;
  }

  .hero h1 {
    letter-spacing: -1px;
  }

  .hero-actions {
    flex-direction: column;
    gap: 12px;
  }

  .hero-actions .btn-primary,
  .hero-actions .btn-ghost {
    width: 100%;
    justify-content: center;
  }

  .hero-stats {
    flex-direction: column;
    gap: 20px;
    padding: 24px 32px;
  }

  .stat-divider {
    width: 40px;
    height: 1px;
  }

  .problem-grid {
    grid-template-columns: 1fr;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .feature-large {
    grid-column: span 1;
  }

  .industry-grid {
    grid-template-columns: 1fr 1fr;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .pricing-featured {
    order: -1;
  }

  .install-setup {
    grid-template-columns: 1fr;
  }

  .install-header {
    padding: 16px 20px;
  }

  .install-main {
    padding: 40px 20px;
  }

  .step {
    flex-direction: column;
    gap: 12px;
  }

  .step-number {
    font-size: 2rem;
    min-width: auto;
  }

  .closing h2 {
    font-size: 1.8rem;
  }

  .demo-container {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .phone-frame {
    max-width: 360px;
    margin: 0 auto;
    border-radius: 32px;
  }

  .demo-side {
    text-align: left;
  }

  .demo-side-label {
    text-align: left;
  }

  .demo-cta {
    align-self: flex-start;
  }
}