/* JAWSAI911 Shark SuperSite */
:root {
  --bg-dark: #0a0e17;
  --bg-card: #111827;
  --bg-elevated: #1a2332;
  --accent: #00b4ff;
  --accent-glow: rgba(0, 180, 255, 0.25);
  --accent-2: #0077cc;
  --text: #e8eef7;
  --text-muted: #94a3b8;
  --border: rgba(255, 255, 255, 0.12);
  --border-strong: rgba(255, 255, 255, 0.22);
  --panel-glow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
  --success: #22c55e;
  --radius: 12px;
  --font: Inter, system-ui, -apple-system, sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  background: var(--bg-dark);
  color: var(--text);
  line-height: 1.6;
  min-height: 100vh;
}
a { color: var(--accent); text-decoration: none; transition: color 0.2s; }
a:hover { color: #5cc8ff; }

.container { width: 100%; max-width: 1120px; margin: 0 auto; padding: 0 24px; }

.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(10, 14, 23, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  box-shadow: inset 0 -1px 0 rgba(255, 255, 255, 0.04);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between; height: 72px;
}
.logo {
  display: flex; align-items: center; gap: 10px;
  font-weight: 700; font-size: 1.15rem; color: var(--text);
}
.logo span { color: var(--accent); }
.nav { display: flex; align-items: center; gap: 28px; }
.nav a { color: var(--text-muted); font-size: 0.95rem; font-weight: 500; }
.nav a:hover, .nav a.active { color: var(--text); }

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 12px 22px; border-radius: 8px; font-weight: 600; font-size: 0.95rem;
  border: none; cursor: pointer; transition: all 0.2s;
}
.btn-primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #fff; box-shadow: 0 4px 20px var(--accent-glow);
}
.btn-primary:hover {
  transform: translateY(-1px); box-shadow: 0 6px 28px var(--accent-glow); color: #fff;
}
.btn-outline {
  background: transparent; color: var(--text); border: 1px solid var(--border);
}
.btn-outline:hover { border-color: var(--accent); color: var(--accent); }
.btn-lg { padding: 16px 28px; font-size: 1.05rem; }

.nav-toggle {
  display: none; background: none; border: none; color: var(--text);
  font-size: 1.5rem; cursor: pointer;
}
@media (max-width: 860px) {
  .nav {
    display: none; position: absolute; top: 72px; left: 0; right: 0;
    background: var(--bg-card); flex-direction: column; padding: 20px; gap: 16px;
    border-bottom: 1px solid var(--border);
  }
  .nav.open { display: flex; }
  .nav-toggle { display: block; }
}

.hero {
  padding: 80px 0 60px; text-align: center; position: relative; overflow: hidden;
}
.hero-compact { padding-bottom: 40px; }
.hero::before {
  content: ""; position: absolute; top: -20%; left: 50%; transform: translateX(-50%);
  width: 800px; height: 600px;
  background: radial-gradient(ellipse, var(--accent-glow) 0%, transparent 70%);
  pointer-events: none;
}
.hero-badge {
  display: inline-block; padding: 6px 14px; background: var(--bg-elevated);
  border: 1px solid var(--border); border-radius: 100px; font-size: 0.85rem;
  color: var(--accent); margin-bottom: 24px; letter-spacing: 0.03em;
  box-shadow: var(--panel-glow);
}
.hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.4rem); font-weight: 800; line-height: 1.15;
  margin-bottom: 20px; letter-spacing: -0.02em;
}
.hero h1 .highlight {
  background: linear-gradient(135deg, var(--accent), #5cc8ff);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.hero-sub {
  font-size: 1.2rem; color: var(--text-muted); max-width: 640px; margin: 0 auto 36px;
}
.hero-ctas { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.hero-proof {
  margin-top: 48px; display: flex; gap: 40px; justify-content: center; flex-wrap: wrap;
  color: var(--text-muted); font-size: 0.95rem;
}
.hero-proof strong {
  color: var(--text); display: block; font-size: 1.4rem; font-weight: 700;
}

section { padding: 80px 0; }
.section-label {
  font-size: 0.85rem; font-weight: 600; color: var(--accent);
  text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 12px;
}
.section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.4rem); font-weight: 700;
  margin-bottom: 16px; letter-spacing: -0.02em;
}
.section-sub {
  color: var(--text-muted); font-size: 1.1rem; max-width: 560px; margin-bottom: 48px;
}
.section-band {
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.03), inset 0 -1px 0 rgba(255,255,255,0.03);
}

.card-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px;
}
.card {
  background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 28px; transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
  box-shadow: var(--panel-glow);
}
.card:hover { border-color: rgba(255, 255, 255, 0.3); transform: translateY(-2px); box-shadow: var(--panel-glow), 0 12px 30px rgba(0,0,0,0.18); }
.card-icon {
  width: 48px; height: 48px; background: var(--bg-elevated); border: 1px solid rgba(255,255,255,0.12); border-radius: 10px;
  display: flex; align-items: center; justify-content: center; font-size: 1.4rem; margin-bottom: 18px;
}
.card h3 { font-size: 1.15rem; margin-bottom: 10px; }
.card p { color: var(--text-muted); font-size: 0.95rem; }

.stack-visual {
  display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin: 48px 0;
}
@media (max-width: 700px) { .stack-visual { grid-template-columns: 1fr; } }
.stack-layer {
  background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 32px; position: relative; box-shadow: var(--panel-glow);
}
.stack-layer.front {
  border-color: rgba(255, 255, 255, 0.28); box-shadow: var(--panel-glow), 0 0 40px var(--accent-glow);
}
.stack-label {
  position: absolute; top: -12px; left: 20px; background: var(--bg-dark);
  padding: 4px 12px; font-size: 0.75rem; font-weight: 700; color: var(--accent);
  border: 1px solid var(--border-strong); border-radius: 6px; letter-spacing: 0.05em;
}
.stack-layer h3 { margin-bottom: 12px; font-size: 1.3rem; }
.stack-copy { color: var(--text-muted); font-size: 0.95rem; }
.stack-layer ul { list-style: none; margin-top: 16px; }
.stack-layer li {
  padding: 8px 0; color: var(--text-muted); font-size: 0.95rem;
  border-bottom: 1px solid var(--border);
}
.stack-layer li:last-child { border-bottom: none; }
.stack-layer li::before { content: "→ "; color: var(--accent); }

.compare { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
@media (max-width: 700px) { .compare { grid-template-columns: 1fr; } }
.compare-box {
  background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius); padding: 28px; box-shadow: var(--panel-glow);
}
.compare-box.good { border-color: rgba(255, 255, 255, 0.28); }
.compare-box h3 { margin-bottom: 16px; font-size: 1.1rem; }
.compare-box ul { list-style: none; }
.compare-box li { padding: 8px 0; color: var(--text-muted); font-size: 0.95rem; }
.compare-box.good li::before { content: "✓ "; color: var(--success); }
.compare-box.bad li::before { content: "✗ "; color: #ef4444; }

.pricing-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 24px;
}
.price-card {
  background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 32px 28px; display: flex; flex-direction: column;
}
.price-card.featured {
  border-color: var(--accent); box-shadow: 0 0 40px var(--accent-glow); position: relative;
}
.price-card.featured::before {
  content: "MOST POPULAR"; position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: var(--accent); color: #fff; font-size: 0.7rem; font-weight: 700;
  padding: 4px 12px; border-radius: 100px; letter-spacing: 0.05em;
}
.price-card h3 { font-size: 1.2rem; margin-bottom: 8px; }
.price-card .price { font-size: 1.8rem; font-weight: 800; margin: 12px 0; }
.price-card .price span {
  font-size: 0.95rem; font-weight: 500; color: var(--text-muted);
}
.price-card p {
  color: var(--text-muted); font-size: 0.9rem; margin-bottom: 20px; flex-grow: 1;
}
.price-card ul { list-style: none; margin-bottom: 24px; }
.price-card li { padding: 6px 0; font-size: 0.9rem; color: var(--text-muted); }
.price-card li::before { content: "✓ "; color: var(--success); }
.price-btn { width: 100%; }

.pricing-summary { margin-bottom: 40px; }
.summary-price {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--accent);
  margin: 8px 0;
}
.summary-price span {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-muted);
}
.roi-card {
  border-color: var(--accent);
  box-shadow: 0 0 40px var(--accent-glow);
  max-width: 800px;
  margin: 0 auto;
}
.roi-label { margin-bottom: 8px; }
.roi-card h3 { margin-bottom: 12px; }
.roi-copy { color: var(--text-muted); font-size: 1.05rem; line-height: 1.7; }
.roi-copy strong { color: var(--text); }
.included-block { margin-top: 48px; }
.included-title { margin-bottom: 20px; text-align: center; }

.ccm-section {
  background:
    radial-gradient(circle at top, rgba(0, 180, 255, 0.12), transparent 38%),
    linear-gradient(180deg, #08111d 0%, #050913 100%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.ccm-inner { max-width: 1120px; }
.ccm-header { text-align: center; margin-bottom: 44px; }
.ccm-label {
  color: #67e8f9;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  font-weight: 700;
  margin-bottom: 16px;
}
.ccm-title {
  font-size: clamp(1.9rem, 4.2vw, 3rem);
  font-weight: 800;
  line-height: 1.18;
  margin-bottom: 16px;
}
.ccm-title span { color: var(--accent); }
.ccm-sub {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.7;
  max-width: 720px;
  margin: 0 auto;
}
.ccm-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 48px;
}
.ccm-stat,
.ccm-tier {
  background: rgba(17, 24, 39, 0.82);
  border: 1px solid var(--border);
  box-shadow: var(--panel-glow);
}
.ccm-stat {
  border-radius: 12px;
  padding: 20px 14px;
  text-align: center;
}
.ccm-stat .stat-value {
  font-size: 1.6rem;
  font-weight: 800;
  color: #67e8f9;
  margin-bottom: 6px;
}
.ccm-stat .stat-label {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.4;
}
.ccm-tiers {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-bottom: 48px;
}
.ccm-tier {
  position: relative;
  border-radius: 14px;
  padding: 28px 22px;
  display: flex;
  flex-direction: column;
}
.ccm-tier.featured {
  border-color: var(--accent);
  box-shadow: 0 0 0 1px rgba(0, 180, 255, 0.45), 0 16px 40px rgba(0, 180, 255, 0.16);
}
.tier-badge {
  position: absolute;
  top: -10px;
  right: 16px;
  background: var(--accent);
  color: #fff;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  padding: 4px 10px;
  border-radius: 100px;
}
.tier-num {
  font-size: 0.75rem;
  font-weight: 700;
  color: #67e8f9;
  letter-spacing: 0.06em;
  margin-bottom: 8px;
}
.ccm-tier h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--text);
}
.tier-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 18px;
  line-height: 1.5;
}
.ccm-tier ul {
  list-style: none;
  padding: 0;
  margin: 4px 0 0;
  flex: 1;
}
.ccm-tier li {
  font-size: 0.88rem;
  color: #cbd5e1;
  padding: 5px 0 5px 1.25em;
  position: relative;
  line-height: 1.45;
}
.ccm-tier li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--success);
  font-weight: 700;
}
.ccm-cta { text-align: center; }
.ccm-cta p {
  color: var(--text-muted);
  margin-bottom: 16px;
  font-size: 1rem;
}
@media (max-width: 900px) {
  .ccm-stats { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .ccm-tiers {
    grid-template-columns: 1fr;
    max-width: 440px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 48px;
  }
}
@media (max-width: 560px) {
  .ccm-stats { grid-template-columns: 1fr; }
}

.bio-grid {
  display: grid; grid-template-columns: 1fr 1.5fr; gap: 48px; align-items: start;
}
@media (max-width: 800px) { .bio-grid { grid-template-columns: 1fr; } }
.bio-title { font-size: 1.6rem; }
.bio-copy { color: var(--text-muted); margin-bottom: 20px; }
.subhead { margin-bottom: 12px; }
.stat-row { display: flex; gap: 32px; flex-wrap: wrap; margin: 32px 0; }
.stat { text-align: center; }
.stat strong {
  display: block; font-size: 1.8rem; font-weight: 800; color: var(--accent);
}
.stat span { font-size: 0.85rem; color: var(--text-muted); }

.cta-band {
  background: linear-gradient(135deg, #0c1929 0%, #111827 100%);
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  text-align: center; padding: 64px 0;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.03), inset 0 -1px 0 rgba(255,255,255,0.03);
}
.cta-band h2 { font-size: 1.8rem; margin-bottom: 12px; }
.cta-band p { color: var(--text-muted); margin-bottom: 28px; }
.cta-note { margin-top: 16px; font-size: 0.9rem; }

.site-footer {
  padding: 48px 0 32px; border-top: 1px solid var(--border);
  color: var(--text-muted); font-size: 0.9rem;
}
.footer-inner {
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 24px;
}
.footer-links { display: flex; gap: 24px; }
.footer-links a { color: var(--text-muted); }
.footer-links a:hover { color: var(--text); }

.mt-48 { margin-top: 48px; }

.flow-steps { display: grid; gap: 20px; counter-reset: step; }
.flow-step {
  display: flex; gap: 20px; align-items: flex-start;
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 24px;
}
.flow-step::before {
  counter-increment: step; content: counter(step); flex-shrink: 0;
  width: 36px; height: 36px; background: var(--accent); color: #fff;
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 0.95rem;
}
.flow-step h4 { margin-bottom: 6px; }
.flow-step p { color: var(--text-muted); font-size: 0.95rem; }

.shark-portal-trigger {
  position: fixed; bottom: 20px; right: 20px; z-index: 50;
  width: 44px; height: 44px; border-radius: 50%;
  background: transparent; border: none; cursor: pointer;
  font-size: 1.6rem; opacity: 0.35; transition: opacity 0.2s, transform 0.2s;
  display: flex; align-items: center; justify-content: center;
}
.shark-portal-trigger:hover { opacity: 0.9; transform: scale(1.1); }

.portal-modal {
  display: none; position: fixed; inset: 0; z-index: 200;
  background: rgba(0, 0, 0, 0.75); align-items: center; justify-content: center; padding: 24px;
}
.portal-modal.open { display: flex; }
.portal-box {
  background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 32px; width: 100%; max-width: 380px; text-align: center; box-shadow: var(--panel-glow), 0 20px 60px rgba(0,0,0,0.35);
}
.portal-box h3 { margin-bottom: 8px; }
.portal-box p { color: var(--text-muted); font-size: 0.9rem; margin-bottom: 20px; }
.portal-box input {
  width: 100%; padding: 12px 14px; border-radius: 8px; border: 1px solid var(--border);
  background: var(--bg-dark); color: var(--text); font-size: 1rem; margin-bottom: 16px;
}
.portal-box .error {
  color: #ef4444; font-size: 0.85rem; margin-bottom: 12px; display: none;
}
.portal-actions { display: flex; gap: 12px; justify-content: center; }

/* Dealership Blueprint */
.blueprint-section {
  background: var(--bg-dark, #0a0e17);
  padding: 80px 0;
  border-top: 1px solid var(--border, #1e293b);
}

.bp-block { margin-bottom: 40px; }

.bp-header {
  background: #0f172a;
  color: #e2e8f0;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  padding: 12px 18px;
  border-radius: 8px 8px 0 0;
  margin-bottom: 0;
}

.bp-grid {
  display: grid;
  gap: 12px;
  background: #111827;
  padding: 16px;
  border-radius: 0 0 10px 10px;
  border: 1px solid #1e293b;
  border-top: none;
}

.bp-grid.four { grid-template-columns: repeat(4, 1fr); }
.bp-grid.five { grid-template-columns: repeat(5, 1fr); }
.bp-grid.seven { grid-template-columns: repeat(7, 1fr); }

@media (max-width: 900px) {
  .bp-grid.four,
  .bp-grid.five,
  .bp-grid.seven { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 520px) {
  .bp-grid.four,
  .bp-grid.five,
  .bp-grid.seven { grid-template-columns: 1fr; }
}

.bp-card {
  background: #0f172a;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 10px;
  padding: 18px 14px;
  text-align: center;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.04);
}

.bp-card.compact { padding: 14px 10px; }

.bp-icon {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  margin: 0 auto 12px;
  font-weight: 700;
}

.bp-icon.red { background: #450a0a; color: #f87171; }
.bp-icon.purple { background: #2e1065; color: #c084fc; }
.bp-icon.orange { background: #431407; color: #fb923c; }
.bp-icon.green { background: #052e16; color: #4ade80; }
.bp-icon.blue { background: #0c4a6e; color: #38bdf8; }

.bp-card h4 {
  font-size: 0.9rem;
  margin-bottom: 6px;
  color: #f1f5f9;
}

.bp-card p {
  font-size: 0.8rem;
  color: #94a3b8;
  line-height: 1.4;
  margin: 0;
}

.bp-stat {
  background: #0f172a;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 10px;
  padding: 20px 12px;
  text-align: center;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.04);
}

.stat-num {
  font-size: 1.5rem;
  font-weight: 800;
  color: #22d3ee;
  margin-bottom: 6px;
}

.stat-label {
  font-size: 0.8rem;
  color: #94a3b8;
}

.blueprint-cta {
  text-align: center;
  margin-top: 40px;
}

.blueprint-cta p {
  color: #94a3b8;
  margin-bottom: 16px;
}

/* Compliance Lock */
.compliance-section {
  background: #0a0e17;
  padding: 80px 0;
  border-top: 1px solid #1e293b;
}

.compliance-demo {
  max-width: 520px;
  margin: 40px auto;
  text-align: center;
}

.compliance-screen {
  background: #0f172a;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  min-height: 260px;
  transition: background 0.4s, border-color 0.4s;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.04);
}

.compliance-screen.locked {
  background: #450a0a;
  border-color: #ef4444;
  box-shadow: 0 0 0 1px #ef4444, 0 0 40px rgba(239, 68, 68, 0.35);
}

.compliance-screen.unlocked {
  border-color: #22c55e;
  box-shadow: 0 0 0 1px rgba(34, 197, 94, 0.5);
}

.screen-header {
  background: #1e293b;
  padding: 10px 16px;
  font-size: 0.8rem;
  font-weight: 600;
  color: #94a3b8;
}

.compliance-screen.locked .screen-header {
  background: #7f1d1d;
  color: #fecaca;
}

.screen-body {
  padding: 20px 16px;
  text-align: left;
}

.screen-line {
  font-size: 0.9rem;
  color: #e2e8f0;
  margin-bottom: 10px;
}

.screen-line.muted { color: #64748b; }

.screen-line.warning {
  color: #fbbf24;
  font-weight: 600;
}

.screen-lock {
  display: none;
  position: absolute;
  inset: 0;
  background: rgba(127, 29, 29, 0.97);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 24px;
  text-align: center;
}

.compliance-screen.locked .screen-lock {
  display: flex;
}

.lock-icon { font-size: 2.2rem; margin-bottom: 8px; }
.lock-title {
  font-size: 1.2rem;
  font-weight: 800;
  color: #fecaca;
  letter-spacing: 0.06em;
  margin-bottom: 8px;
}
.lock-text {
  font-size: 0.9rem;
  color: #fca5a5;
  max-width: 300px;
  margin-bottom: 16px;
}
.lock-required {
  margin-top: 8px;
  padding: 12px 14px;
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(254, 202, 202, 0.35);
  border-radius: 8px;
  max-width: 320px;
  text-align: left;
}
.lock-required-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #fca5a5;
  margin-bottom: 6px;
}
.lock-required-text {
  font-size: 0.8rem;
  color: #fecaca;
  line-height: 1.45;
  font-style: italic;
}
.screen-unlocked-banner {
  display: none;
  padding: 12px 16px;
  background: rgba(34, 197, 94, 0.15);
  color: #86efac;
  font-size: 0.85rem;
  font-weight: 600;
  text-align: center;
}
.compliance-screen.unlocked .screen-unlocked-banner {
  display: block;
}

.compliance-points {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 48px;
}

.compliance-btn { margin-top: 20px; }

@media (max-width: 700px) {
  .compliance-points { grid-template-columns: 1fr; }
}

/* Growth OS Pricing */
.pricing-section {
  background: #030712;
  color: #f8fafc;
  padding: 80px 24px 60px;
  font-family: Inter, system-ui, -apple-system, sans-serif;
}
.pricing-inner { max-width: 1100px; margin: 0 auto; }
.pricing-header { text-align: center; margin-bottom: 48px; }
.pricing-brand { font-weight: 700; font-size: 0.95rem; }
.pricing-label { color: #22d3ee; font-size: 0.8rem; margin: 6px 0 20px; letter-spacing: 0.06em; }
.pricing-title { font-size: clamp(1.8rem, 4vw, 2.4rem); font-weight: 800; line-height: 1.2; margin-bottom: 16px; }
.pricing-title span { color: #06b6d4; }
.pricing-sub { color: #94a3b8; font-size: 1rem; line-height: 1.6; max-width: 580px; margin: 0 auto; }
.pricing-sub strong { color: #67e8f9; font-weight: 500; }

.pricing-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 56px;
}
@media (max-width: 860px) {
  .pricing-cards { grid-template-columns: 1fr; max-width: 380px; margin-left: auto; margin-right: auto; }
}

.growth-price-card {
  background: #fff;
  border: 1px solid rgba(255,255,255,0.35);
  border-radius: 14px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 8px 30px rgba(0,0,0,0.35);
}
.growth-price-card.featured {
  transform: scale(1.03);
  box-shadow: 0 12px 40px rgba(6,182,212,0.25);
}
.card-top { padding: 20px 20px 16px; text-align: center; }
.card-top.dark { background: #0f172a; }
.card-top.cyan { background: #06b6d4; }
.card-top h3 { margin: 0 0 4px; font-size: 1.25rem; font-weight: 700; color: #fff; }
.card-tag { font-size: 0.65rem; letter-spacing: 0.04em; color: #94a3b8; }
.card-top.cyan .card-tag { color: #a5f3fc; }

.card-body { padding: 24px 22px 28px; display: flex; flex-direction: column; flex: 1; color: #0f172a; }
.card-price { font-size: 2rem; font-weight: 800; text-align: center; line-height: 1; }
.card-price span { font-size: 0.9rem; font-weight: 500; color: #94a3b8; }
.card-setup { text-align: center; font-size: 0.8rem; color: #94a3b8; margin: 8px 0 18px; }

.card-body ul { list-style: none; padding: 0; margin: 0 0 20px; flex: 1; }
.card-body li {
  font-size: 0.9rem; color: #334155; padding: 5px 0; padding-left: 1.3em; position: relative;
}
.card-body li::before { content: "✓"; position: absolute; left: 0; color: #10b981; font-weight: 700; }

.card-badge {
  text-align: center; font-size: 0.7rem; font-weight: 700; letter-spacing: 0.04em;
  padding: 8px 12px; border-radius: 6px; margin-bottom: 14px; color: #fff;
}
.card-badge.dark { background: #0f172a; }
.card-badge.pink { background: #f43f5e; }

.card-btn {
  display: block; text-align: center; padding: 14px 16px; border-radius: 8px;
  font-weight: 700; font-size: 0.9rem; text-decoration: none;
  transition: transform 0.15s;
}
.card-btn:hover { transform: translateY(-1px); }
.card-btn.teal { background: #14b8a6; color: #fff; }
.card-btn.dark { background: #0f172a; color: #f8fafc; }

.includes-block { text-align: center; margin-bottom: 32px; }
.includes-label { color: #f43f5e; font-size: 0.75rem; font-weight: 700; letter-spacing: 0.08em; margin-bottom: 8px; }
.includes-block h2 { font-size: 1.4rem; margin-bottom: 8px; }
.includes-sub { color: #94a3b8; font-size: 0.9rem; margin-bottom: 28px; }

.includes-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px;
  background: #0f172a; border-radius: 12px; padding: 28px 24px; text-align: left;
}
@media (max-width: 700px) { .includes-grid { grid-template-columns: 1fr; } }
.includes-grid ul { list-style: none; padding: 0; margin: 0; }
.includes-grid li {
  font-size: 0.85rem; color: #e2e8f0; padding: 5px 0; padding-left: 1.3em; position: relative;
}
.includes-grid li::before { content: "✓"; position: absolute; left: 0; color: #10b981; font-weight: 700; }

.usage-note {
  background: #0f172a; border-radius: 10px; padding: 20px 24px; margin-bottom: 32px;
  font-size: 0.9rem; color: #94a3b8; line-height: 1.6;
}
.usage-note strong { color: #f8fafc; }
.usage-note p { margin-bottom: 8px; }
.usage-note p:last-child { margin-bottom: 0; }

.pricing-footer { text-align: center; color: #94a3b8; font-size: 0.85rem; line-height: 1.6; }
.pricing-footer strong { color: #f8fafc; }
.pricing-footer a { color: #06b6d4; text-decoration: none; }
