/* ============================================================
   AI Commerce Optimisation — styles
   Beaconsfield Business Solutions
   ============================================================ */

/* ===== RESET + VARIABLES ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg: #05050c;
  --bg-2: #0a0a14;
  --bg-3: #0f0f1c;
  --text: #e8e8f0;
  --text-muted: #7a7a9a;
  --border: rgba(255,255,255,0.07);
  --accent: #1d6ef5;
  --accent-light: #60a5fa;
  --accent-glow: rgba(29,110,245,0.3);
  --radius: 14px;
  --radius-lg: 20px;
}

html { scroll-behavior: smooth; }

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

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

/* ===== BUTTONS ===== */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent);
  color: #fff;
  border: none;
  border-radius: 50px;
  padding: 15px 32px;
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
  text-decoration: none;
}
.btn-primary:hover {
  transform: scale(1.04);
  box-shadow: 0 0 0 4px var(--accent-glow);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--text);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 50px;
  padding: 14px 28px;
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s;
  text-decoration: none;
}
.btn-outline:hover {
  border-color: var(--accent);
  color: var(--accent-light);
}

/* ===== SECTION WRAPPERS ===== */
.section { padding: 96px 24px; }
.section-alt { background: var(--bg-2); }
.section-dark { background: var(--bg-3); }
.section-inner { max-width: 1160px; margin: 0 auto; }

/* ===== SECTION HEADING UTILITIES ===== */
.section-label {
  display: inline-block;
  font-family: 'Syne', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}
.section-h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}
.section-lead {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 680px;
  line-height: 1.75;
}
.section-head { margin-bottom: 56px; }

/* ===== HERO ===== */
.hero {
  min-height: 92vh;
  display: flex;
  align-items: center;
  padding: 120px 24px 80px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 60% at 15% 85%, rgba(29,110,245,0.18) 0%, transparent 65%);
  pointer-events: none;
}
.hero-inner {
  max-width: 1160px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(29,110,245,0.1);
  border: 1px solid rgba(29,110,245,0.25);
  border-radius: 50px;
  padding: 6px 14px 6px 10px;
  font-family: 'Syne', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent-light);
  margin-bottom: 28px;
}
.hero-badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  animation: pulse 2s ease-in-out infinite;
  flex-shrink: 0;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.6); }
}
.hero h1 {
  font-size: clamp(2.2rem, 4.5vw, 3.8rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
}
.hero h1 .accent-word { color: var(--accent-light); }
.hero-sub {
  font-size: clamp(1rem, 1.8vw, 1.15rem);
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 36px;
  max-width: 520px;
}
.hero-ctas {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}
.hero-bullets {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.hero-bullet {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13.5px;
  color: var(--text-muted);
}
.hero-bullet::before {
  content: '';
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: rgba(29,110,245,0.12);
  border: 1px solid rgba(29,110,245,0.25);
  flex-shrink: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 18 18' fill='none'%3E%3Cpath d='M5 9l2.5 2.5L13 6' stroke='%231d6ef5' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-size: 13px;
  background-repeat: no-repeat;
  background-position: center;
}

/* ===== HERO DASHBOARD CARD ===== */
.hero-card {
  background: var(--bg-3);
  border: 1px solid rgba(29,110,245,0.18);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: 0 24px 80px rgba(0,0,0,0.5), 0 0 0 1px rgba(29,110,245,0.06);
  animation: float 5s ease-in-out infinite;
  position: relative;
  overflow: hidden;
}
.hero-card::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -80px;
  width: 240px;
  height: 240px;
  background: radial-gradient(circle, rgba(29,110,245,0.1) 0%, transparent 70%);
  pointer-events: none;
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
.hero-card-label {
  font-family: 'Syne', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 22px;
}
.score-ring-wrap {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 28px;
}
.score-ring {
  position: relative;
  width: 88px;
  height: 88px;
  flex-shrink: 0;
}
.score-ring svg { transform: rotate(-90deg); }
.score-ring-bg {
  fill: none;
  stroke: rgba(255,255,255,0.06);
  stroke-width: 6;
}
.score-ring-fill {
  fill: none;
  stroke: var(--accent);
  stroke-width: 6;
  stroke-linecap: round;
  stroke-dasharray: 227;
  stroke-dashoffset: 27;
  filter: drop-shadow(0 0 5px rgba(29,110,245,0.6));
}
.score-text {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.readiness-score {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 24px;
  font-weight: 800;
  color: var(--text);
  line-height: 1;
}
.score-denom {
  font-size: 10px;
  color: var(--text-muted);
  margin-top: 2px;
}
.score-meta h4 {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 5px;
  letter-spacing: -0.01em;
}
.score-meta p {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.55;
}
.score-rows {
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.score-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255,255,255,0.025);
  border: 1px solid var(--border);
  border-radius: 9px;
  padding: 10px 14px;
}
.score-row-label {
  font-size: 12.5px;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 8px;
}
.score-row-label::before {
  content: '';
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  flex-shrink: 0;
}
.score-status {
  font-family: 'Syne', sans-serif;
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 3px 9px;
  border-radius: 20px;
}
.score-status.pass {
  background: rgba(16,185,129,0.1);
  color: #34d399;
  border: 1px solid rgba(16,185,129,0.18);
}
.score-status.warn {
  background: rgba(245,158,11,0.1);
  color: #fcd34d;
  border: 1px solid rgba(245,158,11,0.18);
}

/* ===== MARKET SHIFT ===== */
.shift-intro {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.75;
  max-width: 700px;
  margin-bottom: 48px;
}
.shift-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.shift-col {
  border-radius: var(--radius-lg);
  padding: 36px;
  border: 1px solid var(--border);
}
.shift-col.old {
  background: var(--bg-3);
}
.shift-col.new {
  background: rgba(29,110,245,0.04);
  border-color: rgba(29,110,245,0.18);
}
.shift-col-tag {
  font-family: 'Syne', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 24px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 12px;
  border-radius: 20px;
}
.shift-col.old .shift-col-tag {
  background: rgba(255,255,255,0.04);
  color: var(--text-muted);
  border: 1px solid var(--border);
}
.shift-col.new .shift-col-tag {
  background: rgba(29,110,245,0.12);
  color: var(--accent-light);
  border: 1px solid rgba(29,110,245,0.2);
}
.shift-items {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.shift-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  line-height: 1.5;
}
.shift-col.old .shift-item { color: var(--text-muted); opacity: 0.75; }
.shift-col.new .shift-item { color: var(--text); }
.shift-icon {
  width: 34px;
  height: 34px;
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--text-muted);
}
.shift-col.old .shift-icon { background: rgba(255,255,255,0.04); }
.shift-col.new .shift-icon { background: rgba(29,110,245,0.12); color: var(--accent-light); }

/* ===== WHAT IS AIO ===== */
.aio-intro {
  font-size: 1.08rem;
  color: var(--text-muted);
  line-height: 1.8;
  max-width: 800px;
  margin-bottom: 52px;
}
.aio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 32px;
}
.aio-card {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  transition: border-color 0.2s, transform 0.2s;
}
.aio-card:hover {
  border-color: rgba(29,110,245,0.28);
  transform: translateY(-3px);
}
.aio-card-icon {
  width: 44px;
  height: 44px;
  background: rgba(29,110,245,0.1);
  border: 1px solid rgba(29,110,245,0.2);
  border-radius: 11px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}
.aio-card h3 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}
.aio-card p {
  font-size: 13.5px;
  color: var(--text-muted);
  line-height: 1.68;
}
.aio-clarifier {
  background: rgba(29,110,245,0.05);
  border: 1px solid rgba(29,110,245,0.14);
  border-left: 3px solid var(--accent);
  border-radius: var(--radius);
  padding: 20px 24px;
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.72;
  max-width: 860px;
}
.aio-clarifier strong { color: var(--text); }

/* ===== SERVICES ===== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.svc-card {
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: border-color 0.2s, transform 0.2s;
}
.svc-card:hover {
  border-color: rgba(29,110,245,0.22);
  transform: translateY(-3px);
}
.svc-card.full-width { grid-column: 1 / -1; }
.svc-card-icon {
  width: 48px;
  height: 48px;
  background: rgba(29,110,245,0.1);
  border: 1px solid rgba(29,110,245,0.2);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.svc-card h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 16px;
  letter-spacing: -0.01em;
}
.svc-card ul {
  display: flex;
  flex-direction: column;
  gap: 9px;
  margin-bottom: 22px;
}
.svc-card ul li {
  font-size: 13.5px;
  color: var(--text-muted);
  display: flex;
  align-items: flex-start;
  gap: 9px;
  line-height: 1.55;
}
.svc-card ul li::before {
  content: '→';
  color: var(--accent);
  flex-shrink: 0;
  margin-top: 0px;
  font-size: 13px;
}
.svc-benefits {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding-top: 18px;
  border-top: 1px solid var(--border);
}
.svc-tag {
  font-family: 'Syne', sans-serif;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 4px 11px;
  border-radius: 20px;
  background: rgba(29,110,245,0.08);
  color: var(--accent-light);
  border: 1px solid rgba(29,110,245,0.14);
}
.svc-card.full-width .svc-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
}
.svc-card.full-width .svc-right {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.svc-note {
  margin-top: 18px;
  font-size: 13.5px;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ===== BENEFITS ===== */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.benefit-card {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  transition: border-color 0.2s, transform 0.2s;
}
.benefit-card:hover {
  border-color: rgba(29,110,245,0.22);
  transform: translateY(-2px);
}
.benefit-icon {
  width: 42px;
  height: 42px;
  background: rgba(29,110,245,0.1);
  border: 1px solid rgba(29,110,245,0.18);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.benefit-card h3 {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 9px;
  letter-spacing: -0.01em;
}
.benefit-card p {
  font-size: 13.5px;
  color: var(--text-muted);
  line-height: 1.68;
}

/* ===== WHO IT'S FOR ===== */
.who-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 44px;
}
.who-pill {
  font-family: 'Syne', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 9px 18px;
  border-radius: 50px;
  background: rgba(29,110,245,0.07);
  border: 1px solid rgba(29,110,245,0.16);
  color: var(--accent-light);
  transition: background 0.2s, border-color 0.2s;
  cursor: default;
}
.who-pill:hover {
  background: rgba(29,110,245,0.14);
  border-color: rgba(29,110,245,0.32);
}
.who-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 28px;
}
.who-col {
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 30px;
}
.who-col-tag {
  font-family: 'Syne', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 14px;
  display: inline-block;
}
.who-col.fit .who-col-tag { color: #34d399; }
.who-col.not .who-col-tag { color: var(--text-muted); }
.who-col h3 { font-size: 15px; font-weight: 700; margin-bottom: 14px; }
.who-col ul li {
  font-size: 13.5px;
  color: var(--text-muted);
  padding: 7px 0;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: flex-start;
  gap: 9px;
  line-height: 1.5;
}
.who-col ul li:last-child { border-bottom: none; }
.who-col.fit ul li::before {
  content: '✓';
  color: #34d399;
  font-weight: 700;
  flex-shrink: 0;
  font-size: 12px;
  margin-top: 1px;
}
.who-col.not ul li::before {
  content: '○';
  color: var(--text-muted);
  flex-shrink: 0;
  font-size: 11px;
  margin-top: 1px;
}
.who-callout {
  background: rgba(29,110,245,0.05);
  border: 1px solid rgba(29,110,245,0.13);
  border-radius: var(--radius);
  padding: 22px 28px;
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.72;
  text-align: center;
  font-style: italic;
}

/* ===== PRICING ===== */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 24px;
}
.pricing-card {
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: border-color 0.2s, transform 0.2s;
}
.pricing-card:hover { transform: translateY(-4px); }
.pricing-card.popular {
  border-color: rgba(29,110,245,0.45);
  box-shadow: 0 0 0 1px rgba(29,110,245,0.15), 0 20px 56px rgba(29,110,245,0.12);
}
.popular-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: #fff;
  font-family: 'Syne', sans-serif;
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 20px;
  white-space: nowrap;
}
.pricing-card-tag {
  font-family: 'Syne', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 10px;
}
.pricing-card h3 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}
.pricing-price {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 26px;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 4px;
  line-height: 1.1;
  letter-spacing: -0.02em;
}
.pricing-card.popular .pricing-price { color: var(--accent-light); }
.pricing-tagline {
  font-size: 12px;
  color: var(--text-muted);
  margin-bottom: 20px;
  font-style: italic;
}
.pricing-divider {
  height: 1px;
  background: var(--border);
  margin-bottom: 18px;
}
.pricing-list {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 9px;
  margin-bottom: 24px;
}
.pricing-list li {
  font-size: 12.5px;
  color: var(--text-muted);
  display: flex;
  align-items: flex-start;
  gap: 8px;
  line-height: 1.55;
}
.pricing-list li::before {
  content: '✓';
  color: var(--accent);
  font-weight: 700;
  flex-shrink: 0;
  font-size: 12px;
}
.pricing-cta {
  display: block;
  text-align: center;
  background: transparent;
  color: var(--text);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 50px;
  padding: 11px 20px;
  font-family: 'Syne', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s, background 0.2s;
  text-decoration: none;
}
.pricing-cta:hover {
  border-color: var(--accent);
  color: var(--accent-light);
}
.pricing-card.popular .pricing-cta {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}
.pricing-card.popular .pricing-cta:hover {
  box-shadow: 0 0 0 3px var(--accent-glow);
}
.pricing-note {
  text-align: center;
  font-size: 12.5px;
  color: var(--text-muted);
  font-style: italic;
}
.pricing-note a { color: var(--accent-light); text-decoration: underline; text-underline-offset: 3px; }

/* ===== PROCESS ===== */
.process-steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  position: relative;
}
.process-steps::before {
  content: '';
  position: absolute;
  top: 27px;
  left: calc(10% + 16px);
  right: calc(10% + 16px);
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(29,110,245,0.35) 15%, rgba(29,110,245,0.35) 85%, transparent);
}
.process-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 14px;
}
.process-num {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: var(--bg-3);
  border: 2px solid rgba(29,110,245,0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 18px;
  font-weight: 800;
  color: var(--accent-light);
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
  flex-shrink: 0;
  transition: border-color 0.2s, background 0.2s;
}
.process-step:hover .process-num {
  border-color: var(--accent);
  background: rgba(29,110,245,0.08);
}
.process-step h3 {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}
.process-step p {
  font-size: 12.5px;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ===== WHY US ===== */
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.why-card {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  transition: border-color 0.2s, transform 0.2s;
}
.why-card:hover {
  border-color: rgba(29,110,245,0.22);
  transform: translateY(-2px);
}
.why-icon {
  width: 42px;
  height: 42px;
  background: rgba(29,110,245,0.1);
  border: 1px solid rgba(29,110,245,0.18);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.why-card h3 { font-size: 15px; font-weight: 700; margin-bottom: 10px; }
.why-card p { font-size: 13px; color: var(--text-muted); line-height: 1.68; }

/* ===== FAQ ===== */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}
.faq-item { border-bottom: 1px solid var(--border); }
.faq-item:first-child { border-top: 1px solid var(--border); }
.faq-question {
  width: 100%;
  background: none;
  border: none;
  color: var(--text);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 15px;
  font-weight: 700;
  text-align: left;
  padding: 22px 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  letter-spacing: -0.01em;
  transition: color 0.2s;
}
.faq-question:hover { color: var(--accent-light); }
.faq-icon {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--text-muted);
  transition: border-color 0.25s, background 0.25s, transform 0.3s, color 0.25s;
}
.faq-item.open .faq-icon {
  border-color: var(--accent);
  background: rgba(29,110,245,0.1);
  color: var(--accent-light);
  transform: rotate(45deg);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}
.faq-item.open .faq-answer { max-height: 600px; }
.faq-answer-inner {
  padding-bottom: 22px;
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.78;
}

/* ===== FINAL CTA ===== */
.cta-section {
  padding: 104px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
  background: var(--bg);
}
.cta-section::before {
  content: '';
  position: absolute;
  bottom: -120px;
  left: 50%;
  transform: translateX(-50%);
  width: 700px;
  height: 500px;
  background: radial-gradient(ellipse, rgba(29,110,245,0.18) 0%, transparent 65%);
  pointer-events: none;
}
.cta-inner {
  max-width: 660px;
  margin: 0 auto;
  position: relative;
}
.cta-h2 {
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}
.cta-sub {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 36px;
}
.cta-note {
  margin-top: 18px;
  font-size: 12.5px;
  color: var(--text-muted);
}

/* ===== FOOTER ===== */
.footer {
  padding: 28px 24px;
  border-top: 1px solid var(--border);
  text-align: center;
  font-size: 13px;
  color: var(--text-muted);
  background: var(--bg);
}
.footer a { color: var(--text-muted); text-decoration: underline; text-underline-offset: 3px; }
.footer a:hover { color: var(--text); }

/* ===== FADE-UP ANIMATION ===== */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 960px) {
  .hero-inner { grid-template-columns: 1fr; gap: 52px; }
  .hero-card { max-width: 500px; }
  .shift-grid { grid-template-columns: 1fr; }
  .aio-grid { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: 1fr; }
  .svc-card.full-width .svc-inner { grid-template-columns: 1fr; }
  .benefits-grid { grid-template-columns: repeat(2, 1fr); }
  .who-cols { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: repeat(2, 1fr); }
  .process-steps { grid-template-columns: 1fr; gap: 28px; }
  .process-steps::before { display: none; }
  .process-step { flex-direction: row; text-align: left; gap: 20px; align-items: flex-start; padding: 0; }
  .process-num { margin-bottom: 0; }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
  .section { padding: 68px 20px; }
  .hero { padding: 104px 20px 64px; }
  .hero-ctas { flex-direction: column; align-items: center; }
  .aio-grid { grid-template-columns: 1fr; }
  .benefits-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .section-h2 { font-size: clamp(1.6rem, 6vw, 2.2rem); }
}

/* ===== EARLY-MOVER CARD ===== */
.early-mover-card {
  border-color: rgba(250, 204, 21, 0.45) !important;
  box-shadow: 0 0 0 1px rgba(250,204,21,0.08), 0 0 28px rgba(250,204,21,0.14), inset 0 0 24px rgba(250,204,21,0.03) !important;
}
.early-mover-card .benefit-icon {
  background: rgba(250,204,21,0.1) !important;
  border-color: rgba(250,204,21,0.25) !important;
}
.early-mover-card .benefit-icon svg { filter: drop-shadow(0 0 4px rgba(250,204,21,0.4)); }

@media (max-width: 768px) {
  .benefits-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .aio-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .svc-card.full-width .svc-inner { grid-template-columns: 1fr; }
  h1, h2, h3, h4, h5, p, span, li, label, .section-label, .eyebrow, .tag {
    text-align: center !important;
  }
  .hero-ctas, .cta-group, .btn-group {
    justify-content: center !important;
    align-items: center !important;
  }
  a.btn, button, .btn, .cta-btn {
    display: block;
    margin-left: auto !important;
    margin-right: auto !important;
  }
}
