/* ── Thingzapp Landing Page — style.css ─────────────────────────────────────
   Design System v1.0 — May 2026
   Font: Outfit (Google Fonts)
   Colors: Derived from brand template
   ─────────────────────────────────────────────────────────────────────────── */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&display=swap');

/* ── CSS Variables ────────────────────────────────────────────────────────── */
:root {
  --color-navy:        #0E2841;
  --color-blue:        #156082;
  --color-orange:      #E97132;
  --color-white:       #FFFFFF;
  --color-off-white:   #F5F7FA;
  --color-border:      #E8E8E8;
  --color-text:        #444444;
  --color-text-muted:  #888888;
  --color-success:     #196B24;
  --color-error:       #C0392B;

  --font-primary: 'Outfit', system-ui, sans-serif;
  --font-mono:    'Consolas', 'Courier New', monospace;

  --space-1:  4px;
  --space-2:  8px;
  --space-3:  12px;
  --space-4:  16px;
  --space-6:  24px;
  --space-8:  32px;
  --space-12: 48px;
  --space-16: 64px;
  --space-24: 96px;

  --radius-sm:   4px;
  --radius-md:   8px;
  --radius-lg:   12px;
  --radius-xl:   16px;
  --radius-full: 9999px;

  --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
  --shadow-md: 0 2px 8px rgba(0,0,0,0.06);
  --shadow-lg: 0 4px 16px rgba(0,0,0,0.10);
  --shadow-xl: 0 8px 32px rgba(0,0,0,0.12);

  --transition-fast:   150ms ease-out;
  --transition-normal: 200ms ease-out;
  --transition-slow:   300ms ease-out;

  --max-width: 1200px;
}

/* ── Reset ────────────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }

body {
  font-family: var(--font-primary);
  font-size: 16px;
  line-height: 1.6;
  color: var(--color-text);
  background: var(--color-white);
  overflow-x: hidden;
}

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

/* ── Layout helpers ───────────────────────────────────────────────────────── */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-8);
}

@media (max-width: 768px) {
  .container { padding: 0 var(--space-4); }
}

/* ── Buttons ──────────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: 12px 28px;
  font-family: var(--font-primary);
  font-size: 15px;
  font-weight: 600;
  border-radius: var(--radius-md);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition-fast);
  white-space: nowrap;
}

.btn-primary {
  background: var(--color-orange);
  color: var(--color-white);
  border-color: var(--color-orange);
}
.btn-primary:hover {
  background: #d4621f;
  border-color: #d4621f;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(233,113,50,0.35);
}

.btn-secondary {
  background: var(--color-blue);
  color: var(--color-white);
  border-color: var(--color-blue);
}
.btn-secondary:hover {
  background: #0f4a63;
  border-color: #0f4a63;
  transform: translateY(-1px);
}

.btn-outline {
  background: transparent;
  color: var(--color-white);
  border-color: rgba(255,255,255,0.4);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.7);
}

.btn-ghost {
  background: transparent;
  color: var(--color-blue);
  border-color: transparent;
  padding: 12px 16px;
}
.btn-ghost:hover {
  background: var(--color-off-white);
}

.btn-lg {
  padding: 16px 36px;
  font-size: 17px;
}

/* ── Navigation ───────────────────────────────────────────────────────────── */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--color-navy);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  backdrop-filter: blur(8px);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.nav-logo {
  font-size: 22px;
  font-weight: 800;
  color: var(--color-white);
  letter-spacing: -0.03em;
}

.nav-logo span {
  color: var(--color-orange);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: var(--space-6);
}

.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,0.7);
  transition: color var(--transition-fast);
}

.nav-links a:hover {
  color: var(--color-white);
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: var(--space-3);
}

@media (max-width: 768px) {
  .nav-links { display: none; }
}

/* ── Hero ─────────────────────────────────────────────────────────────────── */
.hero {
  background: var(--color-navy);
  padding: var(--space-24) 0 var(--space-16);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(21,96,130,0.3) 0%, transparent 70%);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -100px;
  left: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(233,113,50,0.12) 0%, transparent 70%);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 780px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: 6px 14px;
  background: rgba(233,113,50,0.15);
  border: 1px solid rgba(233,113,50,0.3);
  border-radius: var(--radius-full);
  font-size: 13px;
  font-weight: 600;
  color: var(--color-orange);
  margin-bottom: var(--space-6);
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.hero-badge::before {
  content: '●';
  font-size: 8px;
  animation: pulse 2s infinite;
}

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

.hero-headline {
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: var(--color-white);
  margin-bottom: var(--space-6);
}

.hero-headline .accent {
  color: var(--color-orange);
}

.hero-subheadline {
  font-size: clamp(17px, 2vw, 20px);
  font-weight: 400;
  line-height: 1.6;
  color: rgba(255,255,255,0.65);
  max-width: 600px;
  margin-bottom: var(--space-8);
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  flex-wrap: wrap;
}

.hero-note {
  font-size: 13px;
  color: rgba(255,255,255,0.4);
  margin-top: var(--space-4);
}

.hero-note strong {
  color: rgba(255,255,255,0.6);
}

/* ── Social proof strip ───────────────────────────────────────────────────── */
.social-proof {
  background: var(--color-off-white);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  padding: var(--space-6) 0;
}

.social-proof-inner {
  display: flex;
  align-items: center;
  gap: var(--space-8);
  flex-wrap: wrap;
}

.social-proof-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  white-space: nowrap;
}

.social-proof-items {
  display: flex;
  align-items: center;
  gap: var(--space-8);
  flex-wrap: wrap;
}

.social-proof-item {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-size: 14px;
  font-weight: 500;
  color: var(--color-text);
}

.social-proof-item .icon {
  width: 20px;
  height: 20px;
  background: var(--color-navy);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ── Section base ─────────────────────────────────────────────────────────── */
.section {
  padding: var(--space-24) 0;
}

.section-alt {
  background: var(--color-off-white);
}

.section-dark {
  background: var(--color-navy);
  color: var(--color-white);
}

.section-label {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-orange);
  margin-bottom: var(--space-3);
}

.section-title {
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--color-navy);
  margin-bottom: var(--space-4);
}

.section-dark .section-title {
  color: var(--color-white);
}

.section-subtitle {
  font-size: 18px;
  line-height: 1.6;
  color: var(--color-text-muted);
  max-width: 560px;
}

.section-dark .section-subtitle {
  color: rgba(255,255,255,0.6);
}

.section-header {
  margin-bottom: var(--space-12);
}

.section-header.centered {
  text-align: center;
}

.section-header.centered .section-subtitle {
  margin: 0 auto;
}

/* ── Problem section ──────────────────────────────────────────────────────── */
.problem-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
}

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

.problem-card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-8);
  transition: box-shadow var(--transition-normal);
}

.problem-card:hover {
  box-shadow: var(--shadow-lg);
}

.problem-icon {
  width: 48px;
  height: 48px;
  background: rgba(14,40,65,0.06);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: var(--space-4);
}

.problem-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--color-navy);
  margin-bottom: var(--space-2);
  line-height: 1.3;
}

.problem-card p {
  font-size: 15px;
  line-height: 1.6;
  color: var(--color-text-muted);
}

/* ── How it works ─────────────────────────────────────────────────────────── */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-8);
  position: relative;
}

.steps::before {
  content: '';
  position: absolute;
  top: 28px;
  left: calc(16.67% + 28px);
  right: calc(16.67% + 28px);
  height: 2px;
  background: linear-gradient(90deg, var(--color-orange), var(--color-blue));
  opacity: 0.3;
}

@media (max-width: 768px) {
  .steps { grid-template-columns: 1fr; }
  .steps::before { display: none; }
}

.step {
  text-align: center;
  position: relative;
}

.step-number {
  width: 56px;
  height: 56px;
  background: var(--color-navy);
  color: var(--color-white);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 800;
  margin: 0 auto var(--space-4);
  position: relative;
  z-index: 1;
}

.step:nth-child(2) .step-number {
  background: var(--color-blue);
}

.step:nth-child(3) .step-number {
  background: var(--color-orange);
}

.step h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--color-navy);
  margin-bottom: var(--space-2);
}

.step p {
  font-size: 15px;
  line-height: 1.6;
  color: var(--color-text-muted);
}

/* ── Integrations ─────────────────────────────────────────────────────────── */
.integrations-grid {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
  justify-content: center;
  margin-top: var(--space-8);
}

.integration-badge {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  padding: 10px 20px;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-full);
  font-size: 14px;
  font-weight: 600;
  color: var(--color-navy);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-normal);
}

.integration-badge:hover {
  border-color: var(--color-blue);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.integration-badge .dot {
  width: 8px;
  height: 8px;
  background: var(--color-success);
  border-radius: var(--radius-full);
}

/* ── Pricing ──────────────────────────────────────────────────────────────── */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
  align-items: start;
}

@media (max-width: 900px) {
  .pricing-grid { grid-template-columns: 1fr; max-width: 440px; margin: 0 auto; }
}

.pricing-card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: var(--space-8);
  position: relative;
  transition: box-shadow var(--transition-normal);
}

.pricing-card:hover {
  box-shadow: var(--shadow-xl);
}

.pricing-card.featured {
  border-color: var(--color-blue);
  border-width: 2px;
  box-shadow: var(--shadow-lg);
}

.pricing-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--color-orange);
  color: var(--color-white);
  font-size: 12px;
  font-weight: 700;
  padding: 4px 16px;
  border-radius: var(--radius-full);
  white-space: nowrap;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.pricing-tier {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-text-muted);
  margin-bottom: var(--space-3);
}

.pricing-price {
  display: flex;
  align-items: baseline;
  gap: var(--space-1);
  margin-bottom: var(--space-2);
}

.pricing-price .amount {
  font-size: 42px;
  font-weight: 800;
  color: var(--color-navy);
  letter-spacing: -0.03em;
  line-height: 1;
}

.pricing-price .currency {
  font-size: 20px;
  font-weight: 600;
  color: var(--color-navy);
  align-self: flex-start;
  margin-top: 6px;
}

.pricing-price .period {
  font-size: 14px;
  color: var(--color-text-muted);
  font-weight: 400;
}

.pricing-annual {
  font-size: 13px;
  color: var(--color-text-muted);
  margin-bottom: var(--space-4);
}

.pricing-annual strong {
  color: var(--color-success);
}

.pricing-desc {
  font-size: 14px;
  color: var(--color-text-muted);
  line-height: 1.5;
  margin-bottom: var(--space-6);
  padding-bottom: var(--space-6);
  border-bottom: 1px solid var(--color-border);
}

.pricing-features {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  margin-bottom: var(--space-8);
}

.pricing-feature {
  display: flex;
  align-items: flex-start;
  gap: var(--space-2);
  font-size: 14px;
  color: var(--color-text);
  line-height: 1.4;
}

.pricing-feature::before {
  content: '✓';
  color: var(--color-success);
  font-weight: 700;
  font-size: 14px;
  flex-shrink: 0;
  margin-top: 1px;
}

.pricing-cta {
  width: 100%;
  justify-content: center;
}

.pricing-note {
  text-align: center;
  margin-top: var(--space-8);
  font-size: 14px;
  color: var(--color-text-muted);
}

.pricing-note a {
  color: var(--color-blue);
  font-weight: 600;
  text-decoration: underline;
}

/* ── Early bird banner ────────────────────────────────────────────────────── */
.early-bird {
  background: linear-gradient(135deg, rgba(14,40,65,0.05), rgba(21,96,130,0.08));
  border: 1px solid rgba(21,96,130,0.2);
  border-radius: var(--radius-lg);
  padding: var(--space-6) var(--space-8);
  display: flex;
  align-items: center;
  gap: var(--space-4);
  margin-bottom: var(--space-12);
  flex-wrap: wrap;
}

.early-bird-icon {
  font-size: 28px;
  flex-shrink: 0;
}

.early-bird-text h4 {
  font-size: 16px;
  font-weight: 700;
  color: var(--color-navy);
  margin-bottom: 2px;
}

.early-bird-text p {
  font-size: 14px;
  color: var(--color-text-muted);
}

/* ── CTA section ──────────────────────────────────────────────────────────── */
.cta-section {
  background: var(--color-navy);
  padding: var(--space-24) 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(21,96,130,0.4) 0%, transparent 70%);
  pointer-events: none;
}

.cta-section .container {
  position: relative;
  z-index: 1;
}

.cta-section h2 {
  font-size: clamp(30px, 4vw, 48px);
  font-weight: 800;
  color: var(--color-white);
  letter-spacing: -0.02em;
  margin-bottom: var(--space-4);
}

.cta-section p {
  font-size: 18px;
  color: rgba(255,255,255,0.6);
  margin-bottom: var(--space-8);
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

.cta-actions {
  display: flex;
  justify-content: center;
  gap: var(--space-4);
  flex-wrap: wrap;
}

.cta-note {
  margin-top: var(--space-4);
  font-size: 13px;
  color: rgba(255,255,255,0.35);
}

/* ── Footer ───────────────────────────────────────────────────────────────── */
.footer {
  background: #07192b;
  color: rgba(255,255,255,0.5);
  padding: var(--space-12) 0 var(--space-8);
}

.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--space-8);
  margin-bottom: var(--space-8);
  padding-bottom: var(--space-8);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

@media (max-width: 768px) {
  .footer-inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 480px) {
  .footer-inner { grid-template-columns: 1fr; }
}

.footer-brand .logo {
  font-size: 20px;
  font-weight: 800;
  color: var(--color-white);
  letter-spacing: -0.02em;
  margin-bottom: var(--space-3);
}

.footer-brand .logo span { color: var(--color-orange); }

.footer-brand p {
  font-size: 14px;
  line-height: 1.6;
  max-width: 260px;
}

.footer-col h4 {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.7);
  margin-bottom: var(--space-4);
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.footer-col ul li a {
  font-size: 14px;
  color: rgba(255,255,255,0.45);
  transition: color var(--transition-fast);
}

.footer-col ul li a:hover {
  color: var(--color-white);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-4);
  flex-wrap: wrap;
}

.footer-bottom p {
  font-size: 13px;
}

.footer-legal {
  display: flex;
  gap: var(--space-6);
}

.footer-legal a {
  font-size: 13px;
  color: rgba(255,255,255,0.4);
  transition: color var(--transition-fast);
}

.footer-legal a:hover {
  color: rgba(255,255,255,0.7);
}

/* ── Animations ───────────────────────────────────────────────────────────── */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-up:nth-child(2) { transition-delay: 0.1s; }
.fade-up:nth-child(3) { transition-delay: 0.2s; }
.fade-up:nth-child(4) { transition-delay: 0.3s; }

/* ── Utility ──────────────────────────────────────────────────────────────── */
.text-orange { color: var(--color-orange); }
.text-muted  { color: var(--color-text-muted); }
.fw-800      { font-weight: 800; }

/* ── Tagline strip ────────────────────────────────────────────────────────── */
.tagline-strip {
  background: var(--color-navy);
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: var(--space-6) 0;
  text-align: center;
}

.tagline-quote {
  font-size: clamp(14px, 1.5vw, 17px);
  font-style: italic;
  font-weight: 400;
  color: rgba(255,255,255,0.5);
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.6;
}

/* ── Core insight section ─────────────────────────────────────────────────── */
.insight-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-16);
  align-items: center;
}

@media (max-width: 768px) {
  .insight-grid { grid-template-columns: 1fr; gap: var(--space-8); }
}

.insight-right {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}

.insight-quote {
  background: rgba(255,255,255,0.05);
  border-left: 3px solid var(--color-orange);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  padding: var(--space-4) var(--space-6);
}

.insight-quote p {
  font-size: 16px;
  font-style: italic;
  color: rgba(255,255,255,0.75);
  line-height: 1.6;
}

/* ── Scenario ─────────────────────────────────────────────────────────────── */
.scenario {
  margin-top: var(--space-16);
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: var(--space-8);
  box-shadow: var(--shadow-md);
}

.scenario-header {
  margin-bottom: var(--space-6);
}

.scenario-header h3 {
  font-size: 22px;
  font-weight: 700;
  color: var(--color-navy);
  margin-bottom: var(--space-2);
}

.scenario-header p {
  font-size: 15px;
  color: var(--color-text-muted);
  line-height: 1.6;
}

.scenario-companies {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  flex-wrap: wrap;
}

.scenario-company {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  background: var(--color-off-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-3) var(--space-4);
}

.scenario-company div {
  display: flex;
  flex-direction: column;
}

.scenario-company strong {
  font-size: 14px;
  font-weight: 700;
  color: var(--color-navy);
}

.scenario-company span {
  font-size: 12px;
  color: var(--color-text-muted);
}

.company-dot {
  width: 12px;
  height: 12px;
  border-radius: var(--radius-full);
  flex-shrink: 0;
}

.scenario-arrow {
  font-size: 20px;
  color: var(--color-border);
  font-weight: 300;
}

/* ── Two modes ────────────────────────────────────────────────────────────── */
.modes-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-6);
}

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

.mode-card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: var(--space-8);
  position: relative;
}

.mode-card-featured {
  border-color: var(--color-blue);
  border-width: 2px;
  background: linear-gradient(135deg, rgba(21,96,130,0.03), rgba(14,40,65,0.02));
}

.mode-badge {
  display: inline-block;
  background: var(--color-blue);
  color: var(--color-white);
  font-size: 11px;
  font-weight: 700;
  padding: 3px 12px;
  border-radius: var(--radius-full);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: var(--space-4);
}

.mode-icon {
  font-size: 32px;
  margin-bottom: var(--space-4);
}

.mode-card h3 {
  font-size: 22px;
  font-weight: 700;
  color: var(--color-navy);
  margin-bottom: var(--space-3);
}

.mode-desc {
  font-size: 15px;
  line-height: 1.6;
  color: var(--color-text-muted);
  margin-bottom: var(--space-6);
}

.mode-features {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.mode-features li {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-size: 14px;
  color: var(--color-text);
}

.mode-features li::before {
  content: '✓';
  color: var(--color-success);
  font-weight: 700;
  font-size: 13px;
}

/* ── Integrations categories ──────────────────────────────────────────────── */
.integrations-categories {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-8);
  margin-top: var(--space-8);
}

@media (max-width: 768px) {
  .integrations-categories { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 480px) {
  .integrations-categories { grid-template-columns: 1fr; }
}

.integrations-category h4 {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-text-muted);
  margin-bottom: var(--space-3);
}

.integrations-group {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.integrations-group .integration-badge {
  border-radius: var(--radius-md);
  justify-content: flex-start;
}