/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: auto; }
body {
  font-family: 'Inter', sans-serif;
  background: #0b0f1a;
  color: #e8eaf0;
  line-height: 1.6;
  overflow-x: hidden;
}
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }

/* ===== TOKENS ===== */
:root {
  --teal: #00d4b4;
  --teal-dark: #00b89c;
  --navy: #0b0f1a;
  --navy-mid: #111827;
  --navy-light: #1a2235;
  --card: #141c2e;
  --border: rgba(255,255,255,0.07);
  --text: #e8eaf0;
  --muted: #8b92a5;
  --white: #ffffff;
}

.container { max-width: 1180px; margin: 0 auto; padding: 0 24px; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 28px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  transition: all 0.2s ease;
  border: none;
}
.btn-primary {
  background: var(--teal);
  color: #0b0f1a;
}
.btn-primary:hover { background: var(--teal-dark); transform: translateY(-1px); box-shadow: 0 8px 24px rgba(0,212,180,0.3); }
.btn-outline {
  background: transparent;
  color: var(--teal);
  border: 1.5px solid var(--teal);
}
.btn-outline:hover { background: rgba(0,212,180,0.08); }
.btn-lg { padding: 16px 36px; font-size: 16px; border-radius: 10px; }

/* ===== NAV ===== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(11,15,26,0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s, box-shadow 0.3s;
}
.nav.scrolled {
  border-bottom-color: var(--border);
  box-shadow: 0 4px 32px rgba(0,0,0,0.4);
}
.nav-inner {
  display: flex;
  align-items: center;
  gap: 32px;
  height: 68px;
}
.logo {
  font-size: 22px;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.5px;
}
.logo-accent { color: var(--teal); }
.logo-img { height: 48px; width: auto; display: block; }
.hero-logo { height: 80px; width: auto; margin: 0 auto 28px; display: block; filter: drop-shadow(0 4px 20px rgba(0,212,180,0.3)); }
.footer-logo-img { height: 56px; }
.nav-links {
  display: flex;
  gap: 40px;
  margin-left: auto;
}
.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--muted);
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--white); }
.nav-cta { margin-left: 24px; padding: 10px 22px; font-size: 14px; }
.hamburger {
  display: none;
  background: none;
  border: none;
  color: var(--white);
  font-size: 22px;
  cursor: pointer;
  margin-left: auto;
}
.mobile-menu {
  display: none;
  flex-direction: column;
  padding: 16px 24px 24px;
  gap: 16px;
  border-top: 1px solid var(--border);
}
.mobile-menu a { font-size: 15px; color: var(--muted); font-weight: 500; }
.mobile-menu .btn { align-self: flex-start; }
.mobile-menu.open { display: flex; }

/* ===== HERO ===== */
.hero {
  position: relative;
  padding: 160px 0 120px;
  overflow: hidden;
}
.hero-bg-photo {
  position: absolute;
  inset: 0;
  background-image: url('https://images.unsplash.com/photo-1521791136064-7986c2920216?w=1600&h=900&fit=crop&auto=format');
  background-size: cover;
  background-position: center top;
  z-index: 0;
}
.hero-bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(11,15,26,0.82) 0%,
    rgba(11,15,26,0.75) 50%,
    rgba(11,15,26,0.95) 100%
  );
  z-index: 1;
}
.hero-inner { position: relative; z-index: 2; text-align: center; }
.hero-badge {
  display: inline-block;
  background: rgba(0,212,180,0.12);
  border: 1px solid rgba(0,212,180,0.3);
  color: var(--teal);
  font-size: 13px;
  font-weight: 600;
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 28px;
  letter-spacing: 0.3px;
}
.hero h1 {
  font-size: clamp(38px, 6vw, 72px);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -2px;
  color: var(--white);
  max-width: 900px;
  margin: 0 auto 24px;
}
.highlight { color: var(--teal); }
.hero-sub {
  font-size: 18px;
  color: var(--muted);
  max-width: 620px;
  margin: 0 auto 40px;
  line-height: 1.7;
}
.hero-ctas { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin-bottom: 60px; }
.hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}
.stat { text-align: center; }
.stat-num {
  display: block;
  font-size: 36px;
  font-weight: 800;
  color: var(--teal);
  line-height: 1;
}
.stat-label { font-size: 13px; color: var(--muted); font-weight: 500; margin-top: 4px; }
.stat-divider { width: 1px; height: 48px; background: var(--border); }

/* ===== PROBLEM STRIP ===== */
.problem-strip {
  background: rgba(0,212,180,0.07);
  border-top: 1px solid rgba(0,212,180,0.15);
  border-bottom: 1px solid rgba(0,212,180,0.15);
  padding: 24px 0;
}
.strip-text {
  text-align: center;
  font-size: 16px;
  color: var(--muted);
}
.strip-text strong { color: var(--white); }

/* ===== SECTIONS ===== */
.section { padding: 96px 0; }
.section-dark { background: var(--navy-mid); }
.section-label {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--teal);
  margin-bottom: 16px;
}
.section-title {
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 800;
  color: var(--white);
  letter-spacing: -1px;
  line-height: 1.2;
  margin-bottom: 16px;
}
.section-sub {
  font-size: 17px;
  color: var(--muted);
  max-width: 560px;
  margin-bottom: 56px;
}

/* ===== STEPS ===== */
.steps {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  flex-wrap: wrap;
}
.step {
  flex: 1;
  min-width: 200px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px 28px;
}
.step-num {
  font-size: 42px;
  font-weight: 900;
  color: rgba(0,212,180,0.15);
  line-height: 1;
  margin-bottom: 16px;
}
.step h3 { font-size: 18px; font-weight: 700; color: var(--white); margin-bottom: 8px; }
.step p { font-size: 14px; color: var(--muted); line-height: 1.6; }
.step-arrow { font-size: 24px; color: var(--teal); opacity: 0.4; padding-top: 40px; flex-shrink: 0; }

/* ===== FEATURES GRID ===== */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 20px;
}
.feature-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px 28px;
  transition: border-color 0.2s, transform 0.2s;
}
.feature-card:hover { border-color: rgba(0,212,180,0.3); transform: translateY(-2px); }
.feature-icon { font-size: 32px; margin-bottom: 16px; }
.feature-icon-line { width: 32px; height: 3px; background: var(--teal); border-radius: 2px; margin-bottom: 20px; }
.feature-card h3 { font-size: 17px; font-weight: 700; color: var(--white); margin-bottom: 8px; }
.feature-card p { font-size: 14px; color: var(--muted); line-height: 1.6; }

/* ===== INDUSTRIES ===== */
.industries-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.industry-pill {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
  transition: all 0.2s;
  cursor: default;
}
.industry-pill:hover { border-color: var(--teal); color: var(--teal); background: rgba(0,212,180,0.06); }

/* ===== DEMO ===== */
.demo-card {
  max-width: 760px;
  margin: 0 auto;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
}
.demo-header {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 24px 32px;
  background: rgba(0,212,180,0.05);
  border-bottom: 1px solid var(--border);
}
.demo-avatar {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--teal);
  color: #0b0f1a;
  font-weight: 800;
  font-size: 20px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.demo-info { flex: 1; }
.demo-info strong { display: block; font-size: 16px; color: var(--white); }
.demo-info span { font-size: 13px; color: var(--muted); }
.demo-badge-live {
  font-size: 12px;
  font-weight: 700;
  color: #22c55e;
  background: rgba(34,197,94,0.1);
  border: 1px solid rgba(34,197,94,0.3);
  padding: 4px 12px;
  border-radius: 100px;
}
.demo-body { padding: 32px; }
.demo-section { margin-bottom: 28px; }
.demo-section:last-child { margin-bottom: 0; }
.demo-section h4 { font-size: 14px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: var(--teal); margin-bottom: 14px; }
.demo-section ul { display: flex; flex-direction: column; gap: 10px; }
.demo-section ul li {
  font-size: 15px;
  color: var(--muted);
  padding-left: 20px;
  position: relative;
}
.demo-section ul li::before { content: '→'; position: absolute; left: 0; color: var(--teal); font-size: 13px; }
.demo-section ul li em { color: var(--white); font-style: normal; }
.demo-section p { font-size: 15px; color: var(--muted); }
.demo-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 32px;
  background: rgba(0,212,180,0.04);
  border-top: 1px solid var(--border);
  flex-wrap: wrap;
}
.demo-footer span { font-size: 14px; color: var(--muted); }

/* ===== PRICING CTA ===== */
.pricing-cta-section {
  background: linear-gradient(135deg, rgba(0,212,180,0.08) 0%, rgba(0,184,156,0.04) 100%);
  border-top: 1px solid rgba(0,212,180,0.15);
  border-bottom: 1px solid rgba(0,212,180,0.15);
}
.pricing-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.pricing-cta-inner h2 { font-size: 28px; font-weight: 800; color: var(--white); margin-bottom: 6px; }
.pricing-cta-inner p { color: var(--muted); }

/* ===== FAQ ===== */
.faq-list { max-width: 760px; display: flex; flex-direction: column; gap: 12px; }
.faq-item { background: var(--card); border: 1px solid var(--border); border-radius: 12px; overflow: hidden; }
.faq-q {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  background: none;
  border: none;
  color: var(--white);
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  text-align: left;
  gap: 16px;
}
.faq-q span { color: var(--teal); font-size: 22px; font-weight: 300; flex-shrink: 0; }
.faq-a {
  max-height: 0;
  overflow: hidden;
  padding: 0 24px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
  transition: max-height 0.3s ease, padding 0.3s ease;
}
.faq-item.open .faq-a { max-height: 200px; padding: 0 24px 20px; }

/* ===== CONTACT ===== */
.contact-section { background: var(--navy); }
.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.contact-text h2 { font-size: 36px; font-weight: 800; color: var(--white); margin-bottom: 16px; letter-spacing: -0.5px; }
.contact-text p { font-size: 16px; color: var(--muted); margin-bottom: 28px; line-height: 1.7; }
.contact-perks { display: flex; flex-direction: column; gap: 10px; }
.contact-perks li {
  font-size: 15px;
  color: var(--text);
  padding-left: 20px;
  position: relative;
}
.contact-perks li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--teal);
}
.contact-form { display: flex; flex-direction: column; gap: 14px; }
.contact-form input,
.contact-form select {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 14px 18px;
  color: var(--white);
  font-size: 15px;
  font-family: 'Inter', sans-serif;
  outline: none;
  transition: border-color 0.2s;
}
.contact-form input:focus,
.contact-form select:focus { border-color: var(--teal); }
.contact-form select option { background: var(--navy-mid); }
.form-note { font-size: 13px; color: var(--muted); text-align: center; }

/* ===== FOOTER ===== */
.footer { background: var(--navy-mid); padding: 64px 0 0; border-top: 1px solid var(--border); }
.footer-inner {
  display: flex;
  gap: 80px;
  padding-bottom: 48px;
  flex-wrap: wrap;
}
.footer-brand { flex: 1; min-width: 220px; }
.footer-brand .logo { margin-bottom: 16px; display: inline-block; }
.footer-brand p { font-size: 14px; color: var(--muted); max-width: 280px; line-height: 1.6; }
.footer-links { display: flex; gap: 80px; flex-wrap: wrap; }
.footer-links div { display: flex; flex-direction: column; gap: 10px; }
.footer-links strong { font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: var(--white); margin-bottom: 4px; }
.footer-links a { font-size: 14px; color: var(--muted); transition: color 0.2s; }
.footer-links a:hover { color: var(--teal); }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 20px 24px;
  text-align: center;
}
.footer-bottom p { font-size: 13px; color: var(--muted); }

/* ===== PRICING PAGE ===== */
.pricing-hero {
  padding: 140px 0 80px;
  text-align: center;
  position: relative;
}
.pricing-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(0,212,180,0.1) 0%, transparent 65%);
  pointer-events: none;
}
.pricing-hero h1 { font-size: clamp(34px, 5vw, 60px); font-weight: 900; color: var(--white); letter-spacing: -1.5px; margin-bottom: 16px; }
.pricing-hero p { font-size: 18px; color: var(--muted); max-width: 520px; margin: 0 auto; }

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
  padding: 80px 0 96px;
  align-items: start;
}
.price-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 40px 36px;
  position: relative;
  transition: transform 0.2s, border-color 0.2s;
}
.price-card:hover { transform: translateY(-4px); border-color: rgba(0,212,180,0.25); }
.price-card.featured {
  border-color: var(--teal);
  background: linear-gradient(160deg, rgba(0,212,180,0.07) 0%, var(--card) 60%);
}
.price-tag-popular {
  position: absolute;
  top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--teal);
  color: #0b0f1a;
  font-size: 12px;
  font-weight: 700;
  padding: 4px 18px;
  border-radius: 100px;
  white-space: nowrap;
}
.price-card-icon { font-size: 40px; margin-bottom: 16px; }
.price-card-icon-bar { width: 40px; height: 4px; background: var(--teal); border-radius: 2px; margin-bottom: 20px; }
.price-card-name { font-size: 22px; font-weight: 800; color: var(--white); margin-bottom: 4px; }
.price-card-tagline { font-size: 14px; color: var(--muted); margin-bottom: 28px; }
.price-amount { margin-bottom: 8px; }
.price-amount .setup { font-size: 14px; color: var(--muted); margin-bottom: 4px; }
.price-amount .monthly {
  font-size: 48px;
  font-weight: 900;
  color: var(--white);
  line-height: 1;
  letter-spacing: -2px;
}
.price-amount .monthly span { font-size: 18px; font-weight: 500; color: var(--muted); }
.price-divider { border: none; border-top: 1px solid var(--border); margin: 28px 0; }
.price-label { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px; color: var(--teal); margin-bottom: 14px; }
.price-industries { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 28px; }
.price-industry-tag {
  font-size: 12px;
  background: rgba(0,212,180,0.08);
  border: 1px solid rgba(0,212,180,0.15);
  color: var(--teal);
  padding: 4px 12px;
  border-radius: 100px;
}
.price-features { display: flex; flex-direction: column; gap: 12px; margin-bottom: 36px; }
.price-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--muted);
  line-height: 1.5;
}
.price-features li::before { content: '✓'; color: var(--teal); font-weight: 700; flex-shrink: 0; margin-top: 1px; }
.price-card .btn { width: 100%; }

/* ===== HERO IMAGE STRIP ===== */
.hero-image-strip {
  display: flex;
  justify-content: center;
  gap: 16px;
  padding: 60px 24px 0;
  align-items: flex-end;
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.hero-img-card {
  border-radius: 16px;
  overflow: hidden;
  flex: 1;
  max-width: 280px;
  box-shadow: 0 24px 60px rgba(0,0,0,0.5);
  border: 1px solid var(--border);
  transform: translateY(0);
  transition: transform 0.3s;
}
.hero-img-card:hover { transform: translateY(-6px); }
.hero-img-card--tall { transform: translateY(-20px); }
.hero-img-card--tall:hover { transform: translateY(-26px); }
.hero-img-card img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* ===== PHOTO ROW ===== */
.photo-row {
  background: var(--navy-mid);
  padding: 56px 0;
  border-bottom: 1px solid var(--border);
}
.photo-row-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
}
.photo-item {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 16px 20px;
  flex: 1;
  min-width: 220px;
  max-width: 260px;
  transition: border-color 0.2s;
}
.photo-item:hover { border-color: rgba(0,212,180,0.3); }
.photo-item img {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  border: 2px solid var(--teal);
}
.testimonial-logo {
  width: auto !important;
  height: 44px !important;
  border-radius: 8px !important;
  object-fit: contain !important;
  background: #fff;
  padding: 4px 8px;
  flex-shrink: 0;
}
.testimonial-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(0,212,180,0.12);
  border: 2px solid var(--teal);
  color: var(--teal);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.photo-caption strong { display: block; font-size: 14px; color: var(--white); font-weight: 600; }
.photo-caption span { font-size: 12px; color: var(--muted); font-style: italic; margin-top: 2px; display: block; }

/* ===== COMPARE TABLE ===== */
.compare-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}
.compare-table th {
  padding: 14px 20px;
  text-align: center;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--teal);
  border-bottom: 1px solid var(--border);
}
.compare-table th:first-child { text-align: left; color: var(--muted); }
.compare-table td {
  padding: 14px 20px;
  text-align: center;
  color: var(--muted);
  border-bottom: 1px solid var(--border);
}
.compare-table td:first-child { text-align: left; color: var(--text); }
.compare-table tr:last-child td { border-bottom: none; }
.compare-table tr:hover td { background: rgba(255,255,255,0.02); }
.compare-table td:not(:first-child) { color: var(--teal); font-weight: 700; font-size: 16px; }
.compare-table td:not(:first-child):contains('—') { color: var(--border); }

/* ===== BOOK CTA STRIP ===== */
.book-cta-strip {
  background: linear-gradient(90deg, rgba(0,212,180,0.12) 0%, rgba(0,212,180,0.05) 100%);
  border-top: 1px solid rgba(0,212,180,0.2);
  border-bottom: 1px solid rgba(0,212,180,0.2);
  padding: 20px 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
}
.book-cta-strip span {
  color: var(--white);
  font-size: 16px;
  font-weight: 600;
}

/* ===== TEAM ===== */
.team-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  max-width: 800px;
  margin: 0 auto;
}
.team-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 40px 32px;
  text-align: center;
  transition: border-color 0.3s, transform 0.3s;
}
.team-card:hover {
  border-color: rgba(0,212,180,0.3);
  transform: translateY(-4px);
}
.team-avatar {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  border: 3px solid var(--teal);
  background: rgba(0,212,180,0.1);
  color: var(--teal);
  font-size: 40px;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
}
.team-name {
  font-size: 22px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 4px;
}
.team-role {
  font-size: 13px;
  font-weight: 600;
  color: var(--teal);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.team-bio {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.7;
}
.team-learn-btn {
  background: none;
  border: none;
  color: var(--teal);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  padding: 8px 0 0;
  text-align: center;
  width: 100%;
  letter-spacing: 0.5px;
}
.team-learn-btn:hover { opacity: 0.8; }
.team-learn-more {
  display: none;
  font-size: 14px;
  color: var(--muted);
  line-height: 1.7;
  padding-top: 12px;
  border-top: 1px solid var(--border);
  margin-top: 4px;
}
.team-learn-more.open { display: block; }

/* ===== PRICING GUIDE ===== */
.pricing-guide-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: stretch;
}
.pricing-guide-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 36px 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
  transition: border-color 0.3s, transform 0.3s;
}
.pricing-guide-card:hover {
  border-color: rgba(0,212,180,0.3);
  transform: translateY(-4px);
}
.pricing-guide-card.featured {
  border-color: var(--teal);
  background: linear-gradient(135deg, rgba(0,212,180,0.07) 0%, var(--card) 100%);
}
.pricing-guide-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--teal);
  color: var(--navy);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 4px 16px;
  border-radius: 20px;
  white-space: nowrap;
}
.pricing-guide-price {
  font-size: 42px;
  font-weight: 900;
  color: var(--teal);
  line-height: 1;
}
.pricing-guide-price span {
  font-size: 18px;
  font-weight: 500;
  color: var(--muted);
}
.pricing-guide-name {
  font-size: 20px;
  font-weight: 800;
  color: var(--white);
}
.pricing-guide-who {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.6;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--border);
}
.pricing-guide-points {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}
.pricing-guide-points li {
  font-size: 14px;
  color: var(--light);
  padding-left: 20px;
  position: relative;
}
.pricing-guide-points li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--teal);
  font-weight: 700;
}
.pricing-guide-setup {
  font-size: 12px;
  color: var(--muted);
  font-style: italic;
}
@media (max-width: 900px) {
  .pricing-guide-grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: block; }
  .contact-inner { grid-template-columns: 1fr; gap: 48px; }
  .steps { flex-direction: column; }
  .step-arrow { display: none; }
  .pricing-cta-inner { flex-direction: column; text-align: center; }
  .footer-inner { gap: 48px; }
  .footer-links { gap: 40px; }
}
@media (max-width: 600px) {
  .hero { padding: 120px 0 80px; }
  .section { padding: 64px 0; }
  .hero-stats { gap: 24px; }
  .stat-divider { display: none; }
  .demo-footer { flex-direction: column; align-items: flex-start; }
  .price-card { padding: 32px 24px; }
}
