:root {
  --bg: #0d1421;
  --bg-2: #111827;
  --bg-card: #131c2e;
  --fg: #f9fafb;
  --fg-2: #9ca3af;
  --fg-3: #6b7280;
  --accent: #f59e0b;
  --accent-dim: #b45309;
  --green: #10b981;
  --red: #ef4444;
  --indigo: #818cf8;
  --border: rgba(255,255,255,0.07);
  --card-border: rgba(255,255,255,0.06);
}

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

body {
  font-family: 'DM Sans', system-ui, sans-serif;
  background: var(--bg);
  color: var(--fg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ---- HERO ---- */
.hero {
  position: relative;
  overflow: hidden;
  padding: 80px 0 100px;
  min-height: 90vh;
  display: flex;
  align-items: center;
}

.hero-bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(245,158,11,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(245,158,11,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 40%, transparent 100%);
}

.hero-glow {
  position: absolute;
  top: -20%;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 600px;
  background: radial-gradient(ellipse at center, rgba(245,158,11,0.08) 0%, transparent 70%);
  pointer-events: none;
}

.hero-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  border: 1px solid rgba(245,158,11,0.3);
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 24px;
}

.hero-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(56px, 7vw, 96px);
  line-height: 0.95;
  letter-spacing: 0.02em;
  color: var(--fg);
  margin-bottom: 24px;
}

.hero-sub {
  font-size: 17px;
  color: var(--fg-2);
  line-height: 1.7;
  max-width: 440px;
  margin-bottom: 40px;
}

.hero-stat-row {
  display: flex;
  align-items: center;
  gap: 24px;
}

.hero-stat {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.hero-stat-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 28px;
  color: var(--accent);
  letter-spacing: 0.05em;
}

.hero-stat-label {
  font-size: 11px;
  color: var(--fg-3);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.hero-stat-sep {
  width: 1px;
  height: 36px;
  background: var(--border);
}

/* ---- PHONE MOCKUP ---- */
.hero-phone-mockup {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.phone-frame {
  background: #1a2436;
  border-radius: 32px;
  padding: 3px;
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 32px 64px rgba(0,0,0,0.5), 0 0 0 1px rgba(245,158,11,0.1), inset 0 1px 0 rgba(255,255,255,0.05);
}

.phone-notch {
  width: 80px;
  height: 24px;
  background: #1a2436;
  border-radius: 0 0 14px 14px;
  margin: 0 auto;
  position: relative;
  top: -2px;
}

.phone-screen {
  background: #0f1829;
  border-radius: 28px;
  padding: 12px;
  min-height: 360px;
  display: flex;
  flex-direction: column;
}

.wa-header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 4px 12px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  margin-bottom: 8px;
}

.wa-avatar {
  width: 32px;
  height: 32px;
  background: var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  color: #0d1421;
}

.wa-name {
  font-size: 14px;
  font-weight: 600;
  flex: 1;
}

.wa-online {
  font-size: 10px;
  color: var(--green);
  background: rgba(16,185,129,0.1);
  padding: 2px 8px;
  border-radius: 100px;
}

.wa-messages {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 6px;
  overflow: hidden;
}

.wa-msg {
  font-size: 11px;
  line-height: 1.5;
  padding: 8px 10px;
  border-radius: 14px;
  max-width: 85%;
}

.wa-msg-in {
  background: #1e2d45;
  align-self: flex-start;
  color: #d1d5db;
}

.wa-msg-out {
  background: rgba(245,158,11,0.15);
  color: var(--accent);
  align-self: flex-end;
  border: 1px solid rgba(245,158,11,0.2);
}

.wa-input {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #1e2d45;
  border-radius: 24px;
  padding: 10px 16px;
  margin-top: 8px;
}

.wa-input-text {
  flex: 1;
  font-size: 11px;
  color: var(--fg-3);
}

.wa-mic {
  color: var(--fg-3);
}

/* ---- DASHBOARD MINI ---- */
.dashboard-mini {
  background: var(--bg-card);
  border: 1px solid var(--card-border);
  border-radius: 16px;
  padding: 16px;
}

.dash-header {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--fg-3);
  margin-bottom: 12px;
}

.dash-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 14px;
}

.dash-metric {
  background: rgba(255,255,255,0.03);
  border-radius: 10px;
  padding: 10px;
}

.dash-metric-label {
  font-size: 10px;
  color: var(--fg-3);
  margin-bottom: 2px;
}

.dash-metric-val {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 20px;
  color: var(--fg);
}

.dash-metric-trend {
  font-size: 10px;
  font-weight: 600;
  margin-top: 2px;
}

.dash-metric-trend.up { color: var(--green); }
.dash-metric-trend.neutral { color: var(--fg-3); }

.dash-goal {
  background: rgba(255,255,255,0.03);
  border-radius: 10px;
  padding: 10px;
}

.dash-goal-label {
  font-size: 10px;
  color: var(--fg-3);
  margin-bottom: 6px;
}

.dash-bar {
  height: 6px;
  background: rgba(255,255,255,0.08);
  border-radius: 100px;
  overflow: hidden;
  margin-bottom: 4px;
}

.dash-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--accent), #fbbf24);
  border-radius: 100px;
}

.dash-goal-pct {
  font-size: 10px;
  color: var(--accent);
  font-weight: 600;
}

/* ---- SECTIONS ---- */
.section-label {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}

.section-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(36px, 4vw, 56px);
  line-height: 1.05;
  letter-spacing: 0.02em;
  color: var(--fg);
  margin-bottom: 56px;
}

/* ---- FEATURES ---- */
.features {
  padding: 100px 0;
  background: var(--bg);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
}

.feature-card {
  background: var(--bg-card);
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.feature-icon {
  width: 48px;
  height: 48px;
  background: rgba(245,158,11,0.1);
  border: 1px solid rgba(245,158,11,0.2);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  margin-bottom: 8px;
}

.feature-title {
  font-size: 20px;
  font-weight: 600;
  color: var(--fg);
}

.feature-desc {
  font-size: 14px;
  color: var(--fg-2);
  line-height: 1.7;
  flex: 1;
}

.feature-visual {
  margin-top: 20px;
  border-radius: 12px;
  overflow: hidden;
  background: rgba(0,0,0,0.3);
  border: 1px solid rgba(255,255,255,0.05);
}

/* WA CREW */
.wa-crew {
  padding: 14px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.wa-chat-bubble {
  font-size: 11px;
  padding: 7px 10px;
  border-radius: 10px;
  line-height: 1.5;
}

.wa-chat-bubble.ai {
  background: rgba(245,158,11,0.1);
  color: #fbbf24;
  border-left: 2px solid rgba(245,158,11,0.4);
}

.wa-chat-bubble.own {
  background: rgba(255,255,255,0.05);
  color: var(--fg-2);
  align-self: flex-end;
}

/* P&L */
.pl-visual {
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.pl-row {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
}

.pl-row span:first-child {
  color: var(--fg-2);
  width: 70px;
  flex-shrink: 0;
}

.pl-bar-row {
  flex: 1;
  height: 6px;
  background: rgba(255,255,255,0.05);
  border-radius: 100px;
  overflow: hidden;
}

.pl-bar {
  height: 100%;
  border-radius: 100px;
}

.pl-val {
  font-weight: 600;
  color: var(--fg);
  width: 55px;
  text-align: right;
}

.pl-net {
  margin-top: 4px;
  padding-top: 10px;
  border-top: 1px solid rgba(255,255,255,0.05);
}

/* CAMERAS */
.cam-visual {
  padding: 14px;
}

.cam-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 6px;
}

.cam-feed {
  background: #0a1525;
  border-radius: 8px;
  padding: 10px 10px 8px;
  position: relative;
  aspect-ratio: 16/9;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
}

.cam-feed.active { border: 1px solid rgba(16,185,129,0.3); }
.cam-feed.alert { border: 1px solid rgba(239,68,68,0.4); }

.cam-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(16,185,129,0.1) 0%, transparent 60%);
}

.cam-feed.alert .cam-overlay {
  background: linear-gradient(135deg, rgba(239,68,68,0.15) 0%, transparent 60%);
}

.cam-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--fg-3);
  position: absolute;
  top: 8px;
  left: 8px;
}

.active-dot {
  background: var(--green);
  box-shadow: 0 0 6px rgba(16,185,129,0.5);
}

.alert-dot {
  background: var(--red);
  box-shadow: 0 0 6px rgba(239,68,68,0.5);
  animation: pulse 1.5s infinite;
}

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

.cam-label {
  font-size: 10px;
  font-weight: 600;
  color: var(--fg-2);
  position: relative;
  z-index: 1;
}

.cam-status {
  font-size: 9px;
  color: var(--fg-3);
  position: relative;
  z-index: 1;
}

/* CALLS */
.call-visual {
  padding: 14px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.call-bubble {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(245,158,11,0.08);
  border: 1px solid rgba(245,158,11,0.15);
  border-radius: 10px;
  padding: 10px 12px;
}

.call-icon {
  color: var(--accent);
  animation: ring 2s infinite;
}

@keyframes ring {
  0%, 100% { transform: rotate(0deg); }
  10%, 30% { transform: rotate(-15deg); }
  20% { transform: rotate(15deg); }
  40% { transform: rotate(0deg); }
}

.call-text {
  font-size: 11px;
  color: var(--fg-2);
}

.call-log {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.call-log-item {
  display: grid;
  grid-template-columns: 50px 60px 1fr;
  align-items: center;
  font-size: 11px;
  gap: 6px;
}

.cl-time { color: var(--fg-3); }
.cl-name { color: var(--fg-2); font-weight: 500; }
.cl-status { font-size: 10px; }
.cl-status.ok { color: var(--green); }
.cl-status.no { color: var(--red); }

/* ---- HOW IT WORKS ---- */
.howitworks {
  padding: 100px 0;
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.howitworks .section-title {
  text-align: center;
}

.steps-row {
  display: flex;
  align-items: flex-start;
  gap: 0;
  max-width: 960px;
  margin: 0 auto;
  padding: 0 40px;
}

.step {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.step-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 48px;
  color: var(--accent);
  line-height: 1;
  letter-spacing: 0.05em;
  margin-bottom: 12px;
}

.step-line {
  width: 2px;
  height: 60px;
  background: linear-gradient(to bottom, var(--accent), transparent);
  margin-bottom: 20px;
}

.step-content h3 {
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 10px;
}

.step-content p {
  font-size: 13px;
  color: var(--fg-2);
  line-height: 1.7;
}

.step-arrow {
  display: flex;
  align-items: center;
  padding-top: 20px;
  color: var(--fg-3);
  flex-shrink: 0;
}

/* ---- PRICING ---- */
.pricing {
  padding: 100px 0;
  background: var(--bg);
}

.pricing .section-title {
  text-align: center;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 40px;
}

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

.pricing-card.featured {
  border-color: rgba(245,158,11,0.4);
  background: linear-gradient(180deg, rgba(245,158,11,0.06) 0%, var(--bg-card) 60%);
}

.pricing-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: #0d1421;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 14px;
  border-radius: 100px;
  white-space: nowrap;
}

.pricing-tier {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 24px;
  letter-spacing: 0.1em;
  color: var(--fg);
  margin-bottom: 12px;
}

.pricing-price {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 56px;
  color: var(--fg);
  line-height: 1;
  margin-bottom: 4px;
}

.pricing-per {
  font-size: 20px;
  color: var(--fg-3);
}

.pricing-for {
  font-size: 13px;
  color: var(--fg-3);
  margin-bottom: 24px;
  line-height: 1.6;
}

.pricing-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.pricing-features li {
  font-size: 14px;
  color: var(--fg-2);
  display: flex;
  align-items: center;
  gap: 8px;
}

.pricing-features li::before {
  content: '';
  width: 16px;
  height: 16px;
  background: rgba(16,185,129,0.15);
  border-radius: 50%;
  background-image: url("data:image/svg+xml,%3Csvg width='10' height='8' viewBox='0 0 10 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 4L3.5 6.5L9 1' stroke='%2310b981' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  flex-shrink: 0;
}

/* ---- CLOSING ---- */
.closing {
  padding: 120px 0;
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  text-align: center;
}

.closing-inner {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 40px;
}

.closing h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(36px, 4vw, 52px);
  line-height: 1.1;
  letter-spacing: 0.02em;
  color: var(--fg);
  margin-bottom: 24px;
}

.closing p {
  font-size: 17px;
  color: var(--fg-2);
  margin-bottom: 48px;
  line-height: 1.7;
}

.closing-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  margin-bottom: 48px;
  padding: 36px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.cs-item {
  display: flex;
  flex-direction: column;
  gap: 6px;
  align-items: center;
}

.cs-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 36px;
  color: var(--accent);
  letter-spacing: 0.05em;
}

.cs-label {
  font-size: 12px;
  color: var(--fg-3);
  max-width: 140px;
  line-height: 1.5;
}

.cs-sep {
  width: 1px;
  height: 50px;
  background: var(--border);
}

.closing-sub {
  font-size: 15px;
  color: var(--fg-2);
  margin-bottom: 0;
}

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

.footer-logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 20px;
  letter-spacing: 0.1em;
  color: var(--fg);
  margin-bottom: 8px;
}

.footer-tagline {
  font-size: 13px;
  color: var(--fg-3);
  margin-bottom: 24px;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-bottom: 16px;
}

.footer-links span {
  font-size: 12px;
  color: var(--fg-3);
  cursor: pointer;
}

.footer-links span:hover {
  color: var(--fg-2);
}

.footer-copy {
  font-size: 11px;
  color: var(--fg-3);
}

/* ---- FLYWHEEL SECTION ---- */
.flywheel-section {
  padding: 100px 0;
  background: #06090f;
  position: relative;
  overflow: hidden;
}

.flywheel-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.flywheel-text .section-label { color: #f59e0b; }
.flywheel-text .section-title { color: #fff; }

.flywheel-sub {
  font-size: 15px;
  color: #9ca3af;
  line-height: 1.7;
  margin-bottom: 36px;
}

.flywheel-steps {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.flywheel-step {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.flywheel-step-num {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(245,158,11,0.12);
  border: 1px solid rgba(245,158,11,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 600;
  color: #f59e0b;
  flex-shrink: 0;
}

.flywheel-step-text h4 {
  font-size: 15px;
  font-weight: 600;
  color: #f9fafb;
  margin-bottom: 4px;
}

.flywheel-step-text p {
  font-size: 13px;
  color: #9ca3af;
  line-height: 1.6;
}

.flywheel-visual {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.flywheel-img-wrap {
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.06);
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}

.flywheel-img-wrap img {
  width: 100%;
  display: block;
  aspect-ratio: 4/3;
  object-fit: cover;
}

.flywheel-diagram {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 16px;
  padding: 28px;
  text-align: center;
}

.flywheel-diagram h4 {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #f59e0b;
  margin-bottom: 20px;
}

.flywheel-loop {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
}

.flywheel-node {
  background: rgba(245,158,11,0.1);
  border: 1px solid rgba(245,158,11,0.25);
  border-radius: 10px;
  padding: 10px 14px;
  font-size: 12px;
  font-weight: 600;
  color: #f59e0b;
  white-space: nowrap;
}

.flywheel-arrow-right {
  color: rgba(245,158,11,0.4);
  font-size: 18px;
  padding: 0 10px;
}

/* ---- ROLES SECTION ---- */
.roles-section {
  padding: 100px 0;
  background: #fff;
}

.roles-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 40px;
}

.roles-inner .section-label { color: #111827; }
.roles-inner .section-title { color: #111827; }

.roles-sub {
  font-size: 16px;
  color: #6b7280;
  margin-bottom: 60px;
  line-height: 1.7;
  max-width: 560px;
}

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

.role-card {
  background: #f9fafb;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: transform 0.2s, box-shadow 0.2s;
}

.role-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.08);
}

.role-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: #f3f4f6;
  border: 1px solid #e5e7eb;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #374151;
  margin-bottom: 8px;
}

.role-name {
  font-size: 16px;
  font-weight: 600;
  color: #111827;
}

.role-desc {
  font-size: 13px;
  color: #6b7280;
  line-height: 1.6;
  flex: 1;
}

.role-price-tag {
  margin-top: 12px;
  font-size: 13px;
  font-weight: 600;
  color: #111827;
  display: flex;
  align-items: center;
  gap: 6px;
}

.role-price-tag span {
  font-size: 11px;
  font-weight: 400;
  color: #9ca3af;
}

/* ---- COMPARISON TABLE ---- */
.comparison-section {
  padding: 100px 0;
  background: #f9fafb;
}

.comparison-inner {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 40px;
}

.comparison-inner .section-label { color: #111827; }
.comparison-inner .section-title { color: #111827; }

.comp-table-wrap {
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  overflow: hidden;
  background: #fff;
}

.comp-table {
  width: 100%;
  border-collapse: collapse;
}

.comp-table th {
  background: #111827;
  color: #fff;
  padding: 18px 20px;
  font-size: 14px;
  font-weight: 600;
  text-align: left;
}

.comp-table th:not(:first-child) {
  text-align: center;
}

.comp-table th .tier-name {
  display: block;
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 2px;
}

.comp-table th .tier-price {
  font-size: 12px;
  font-weight: 400;
  color: #9ca3af;
}

.comp-table th.featured-col {
  background: #f59e0b;
  color: #111827;
}

.comp-table th.featured-col .tier-price { color: #92400e; }

.comp-table td {
  padding: 14px 20px;
  font-size: 13px;
  color: #374151;
  border-bottom: 1px solid #f3f4f6;
  vertical-align: middle;
}

.comp-table td:not(:first-child) {
  text-align: center;
}

.comp-table tr:last-child td {
  border-bottom: none;
}

.comp-table tr:hover td {
  background: #f9fafb;
}

.check-icon { color: #10b981; font-size: 18px; }
.cross-icon { color: #e5e7eb; font-size: 18px; }
.feature-row-label {
  font-weight: 600;
  color: #111827;
  background: #f3f4f6;
}

/* ---- CTA BUTTONS ---- */
.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #f59e0b;
  color: #111827;
  font-size: 15px;
  font-weight: 600;
  padding: 14px 28px;
  border-radius: 100px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
}

.cta-btn:hover {
  background: #d97706;
  transform: translateY(-1px);
}

.cta-btn-light {
  background: #111827;
  color: #fff;
}

.cta-btn-light:hover {
  background: #1f2937;
}

/* ---- APPLE DNA SECTION ---- */
.apple-dna {
  padding: 120px 0;
  background: #fff;
  text-align: center;
}

.apple-dna-inner {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 40px;
}

.apple-dna-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #6b7280;
  border: 1px solid #e5e7eb;
  padding: 5px 14px;
  border-radius: 100px;
  margin-bottom: 32px;
}

.apple-dna h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(40px, 5vw, 64px);
  line-height: 1.05;
  letter-spacing: 0.02em;
  color: #111827;
  margin-bottom: 28px;
}

.apple-dna p {
  font-size: 18px;
  color: #6b7280;
  line-height: 1.7;
  margin-bottom: 48px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.apple-dna-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  padding: 40px 0;
  border-top: 1px solid #e5e7eb;
  border-bottom: 1px solid #e5e7eb;
  margin-bottom: 48px;
}

.apple-dna-logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 20px;
  letter-spacing: 0.08em;
  color: #d1d5db;
}

.apple-dna-logo span { color: #6b7280; }

/* ---- FOOTER REDESIGN ---- */
.footer-new {
  padding: 60px 40px 40px;
  background: #f9fafb;
  border-top: 1px solid #e5e7eb;
}

.footer-new-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto auto auto;
  gap: 60px;
  align-items: start;
  padding-bottom: 40px;
  border-bottom: 1px solid #e5e7eb;
  margin-bottom: 24px;
}

.footer-brand-name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 22px;
  letter-spacing: 0.1em;
  color: #111827;
  margin-bottom: 8px;
}

.footer-brand-tag {
  font-size: 13px;
  color: #9ca3af;
  line-height: 1.6;
  max-width: 260px;
}

.footer-col h4 {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #374151;
  margin-bottom: 16px;
}

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

.footer-col ul li span {
  font-size: 13px;
  color: #9ca3af;
  cursor: pointer;
}

.footer-col ul li span:hover { color: #374151; }

.footer-bottom {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-bottom p {
  font-size: 12px;
  color: #9ca3af;
}

/* ---- RESPONSIVE ---- */
@media (max-width: 900px) {
  .hero-content { grid-template-columns: 1fr; gap: 48px; }
  .feature-grid { grid-template-columns: 1fr; }
  .steps-row { flex-direction: column; align-items: center; gap: 32px; }
  .step-arrow { transform: rotate(90deg); }
  .pricing-grid { grid-template-columns: 1fr; }
  .closing-stats { flex-direction: column; gap: 20px; }
  .cs-sep { width: 40px; height: 1px; }
  .flywheel-inner { grid-template-columns: 1fr; gap: 40px; }
  .roles-grid { grid-template-columns: 1fr 1fr; }
  .footer-new-inner { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
}

@media (max-width: 600px) {
  .roles-grid { grid-template-columns: 1fr; }
}
