/* SaaS SMS — Landing (blue brand + cream surfaces — matches app.css) */

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

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

:root {
  /* Matches app.css — blue brand + cream/sky surfaces */
  --blue-900: #0a3580;
  --blue-800: #0d47a1;
  --blue-700: #1565c0;
  --blue-600: #1976d2;
  --blue-500: #42a5f5;
  --blue-glow: rgba(21, 101, 192, 0.42);
  --blue-dim: rgba(21, 101, 192, 0.10);
  --cream: #f0f4f8;
  --cream-dark: #e8f4fc;
  --cream-warm: #f4f8fc;
  --sand: #dce8f4;
  --white: #ffffff;
  --text: #0f172a;
  --text-muted: #475569;
  --border: #b8cfe4;
  --radius: 18px;
  --radius-xl: 32px;
  --radius-pill: 999px;
  --shadow: 0 16px 48px rgba(13, 71, 161, 0.10);
  --shadow-lg: 0 28px 64px rgba(13, 71, 161, 0.14);
  --font: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  background: var(--cream);
  color: var(--text);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

.container { max-width: 1140px; margin: 0 auto; padding: 0 1.5rem; }
img { max-width: 100%; height: auto; display: block; }

.landing-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--blue-700);
}
.landing-icon svg { display: block; }
.hero-shell .landing-icon,
.featured-dark .landing-icon,
.cta-banner .landing-icon,
.benefit-card--dark .landing-icon,
.landing-footer .brand .landing-icon { color: var(--cream); }
.benefit-card--light .landing-icon,
.mini-card .landing-icon { color: var(--blue-700); }
.landing-icon--sm svg { width: 18px; height: 18px; }
.landing-icon--md svg { width: 22px; height: 22px; }

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  padding: 0.78rem 1.55rem;
  border-radius: var(--radius-pill);
  text-decoration: none;
  font-weight: 700;
  font-size: 0.9rem;
  transition: all 0.22s;
  border: 2px solid transparent;
  cursor: pointer;
  font-family: inherit;
  white-space: nowrap;
}
.btn-green { background: var(--blue-800); color: var(--white); border-color: var(--blue-800); }
.btn-green:hover { background: var(--blue-900); transform: translateY(-2px); box-shadow: var(--shadow); }
.btn-cream { background: var(--cream); color: var(--blue-800); border-color: var(--cream); }
.btn-cream:hover { background: var(--white); }
.btn-outline-green { background: transparent; color: var(--blue-800); border-color: var(--blue-800); }
.btn-outline-green:hover { background: var(--blue-800); color: var(--white); }
.btn-outline-cream { background: transparent; color: var(--cream); border-color: rgba(240, 244, 248, 0.5); }
.btn-outline-cream:hover { background: rgba(255, 255, 255, 0.1); border-color: var(--cream); }

/* ── Wavy dividers ── */
.wave-bottom {
  position: relative;
  padding-bottom: 5rem;
}
.wave-bottom::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  height: 90px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 90' preserveAspectRatio='none'%3E%3Cpath fill='%23f0f4f8' d='M0,50 C240,95 480,15 720,55 C960,95 1200,25 1440,60 L1440,90 L0,90 Z'/%3E%3C/svg%3E") center bottom / 100% 100% no-repeat;
  pointer-events: none;
}
.wave-top-cream::before {
  content: '';
  display: block;
  height: 70px;
  margin-top: -1px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 70' preserveAspectRatio='none'%3E%3Cpath fill='%23f0f4f8' d='M0,0 L1440,0 L1440,35 C1200,70 960,10 720,40 C480,70 240,10 0,45 Z'/%3E%3C/svg%3E") center top / 100% 100% no-repeat;
}

/* ── Nav ── */
.hero-shell {
  background: linear-gradient(165deg, var(--blue-800) 0%, var(--blue-900) 100%);
  color: var(--white);
}
.landing-nav { padding: 1.35rem 0 0; position: relative; z-index: 20; }
.landing-nav .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.brand {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--white);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.55rem;
  letter-spacing: -0.2px;
}
.brand-mark {
  width: 38px;
  height: 38px;
  border-radius: 11px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cream);
}
.nav-center { display: flex; gap: 2rem; }
.nav-center a {
  color: rgba(255, 255, 255, 0.78);
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 500;
  transition: color 0.2s;
}
.nav-center a:hover { color: var(--white); }
.nav-actions { display: flex; align-items: center; gap: 0.65rem; }
.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--white);
  cursor: pointer;
  padding: 0.35rem;
}

/* ── Hero ── */
.hero { padding: 2.5rem 0 1rem; position: relative; z-index: 2; }
.hero-topline {
  text-align: center;
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  letter-spacing: -1.5px;
  margin-bottom: 2.5rem;
  color: var(--white);
}
.hero-topline span { color: var(--cream); }

.hero-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
}

/* Orbital visual */
.orbit-stage {
  position: relative;
  width: 100%;
  max-width: 420px;
  aspect-ratio: 1;
  margin: 0 auto;
}
.orbit-glow {
  position: absolute;
  inset: 8%;
  border-radius: 50%;
  background: radial-gradient(circle, var(--blue-glow) 0%, transparent 68%);
  animation: pulse-glow 4s ease-in-out infinite;
}
@keyframes pulse-glow {
  0%, 100% { opacity: 0.6; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.04); }
}
.orbit-ring {
  position: absolute;
  inset: 5%;
  border-radius: 50%;
  border: 2px dashed rgba(232, 244, 252, 0.35);
}
.orbit-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 46%;
  height: 46%;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid rgba(232, 244, 252, 0.45);
  box-shadow: 0 0 0 12px rgba(21, 101, 192, 0.18), var(--shadow-lg);
  background: var(--blue-600);
}
.orbit-center img { width: 100%; height: 100%; object-fit: cover; }
.orbit-node {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 52px;
  height: 52px;
  margin: -26px 0 0 -26px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cream);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s, background 0.3s;
}
.orbit-node:hover { background: rgba(255, 255, 255, 0.22); }
.orbit-node:nth-child(4) { transform: rotate(0deg) translateY(-175px) rotate(0deg); }
.orbit-node:nth-child(5) { transform: rotate(60deg) translateY(-175px) rotate(-60deg); }
.orbit-node:nth-child(6) { transform: rotate(120deg) translateY(-175px) rotate(-120deg); }
.orbit-node:nth-child(7) { transform: rotate(180deg) translateY(-175px) rotate(-180deg); }
.orbit-node:nth-child(8) { transform: rotate(240deg) translateY(-175px) rotate(-240deg); }
.orbit-node:nth-child(9) { transform: rotate(300deg) translateY(-175px) rotate(-300deg); }

/* Hero benefits panel */
.hero-panel { padding: 0.5rem 0; }
.hero-panel h2 {
  font-size: 1.35rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  letter-spacing: -0.3px;
}
.hero-benefits { list-style: none; display: flex; flex-direction: column; gap: 1.1rem; margin-bottom: 2rem; }
.hero-benefit {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
}
.hero-benefit-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cream);
  flex-shrink: 0;
}
.hero-benefit strong { display: block; font-size: 0.92rem; margin-bottom: 0.15rem; }
.hero-benefit span { font-size: 0.82rem; color: rgba(255, 255, 255, 0.65); line-height: 1.5; }

/* ── Cream main block ── */
.cream-main {
  padding: 4rem 0 5rem;
  background: var(--cream);
  position: relative;
  overflow: hidden;
}
.cream-main-inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 3rem;
  align-items: center;
}
.cream-main h2 {
  font-size: clamp(2.2rem, 4.5vw, 3.2rem);
  font-weight: 800;
  letter-spacing: -1.2px;
  line-height: 1.1;
  margin-bottom: 0.35rem;
  color: var(--blue-800);
}
.cream-main h2 .accent { color: var(--blue-600); }
.cream-main .sub {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-muted);
  margin-bottom: 1.25rem;
}
.cream-main p {
  font-size: 0.95rem;
  color: var(--text-muted);
  max-width: 480px;
  margin-bottom: 2rem;
  line-height: 1.75;
}
.cream-cta { display: flex; flex-wrap: wrap; gap: 0.85rem; }
.cream-blob {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 320px;
}
.blob-shape {
  position: absolute;
  width: 90%;
  height: 85%;
  background: var(--sand);
  border-radius: 45% 55% 52% 48% / 48% 45% 55% 52%;
  opacity: 0.7;
}
.blob-card {
  position: relative;
  z-index: 2;
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 2rem;
  box-shadow: var(--shadow);
  max-width: 280px;
  text-align: center;
  border: 1px solid var(--border);
}
.blob-card .blob-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--blue-800);
  color: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}
.blob-card strong { display: block; font-size: 1.1rem; color: var(--blue-800); margin-bottom: 0.35rem; }
.blob-card span { font-size: 0.85rem; color: var(--text-muted); }

/* ── Benefit duo cards ── */
.benefits-duo {
  padding: 0 0 5rem;
  background: var(--cream);
}
.benefits-duo-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}
.benefit-card {
  border-radius: var(--radius-xl);
  padding: 1.75rem;
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  transition: transform 0.25s, box-shadow 0.25s;
}
.benefit-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.benefit-card--dark {
  background: var(--blue-800);
  color: var(--white);
}
.benefit-card--light {
  background: var(--white);
  border: 1.5px solid var(--border);
  color: var(--text);
}
.benefit-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  flex-shrink: 0;
  overflow: hidden;
  background: var(--blue-600);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cream);
  border: 2px solid rgba(255, 255, 255, 0.2);
}
.benefit-card--light .benefit-avatar {
  background: var(--cream-dark);
  color: var(--blue-700);
  border-color: var(--border);
}
.benefit-card h4 { font-size: 0.95rem; font-weight: 700; margin-bottom: 0.35rem; }
.benefit-card p { font-size: 0.85rem; line-height: 1.65; opacity: 0.85; }
.benefit-card--light p { color: var(--text-muted); opacity: 1; }
.benefit-role { font-size: 0.75rem; opacity: 0.65; margin-top: 0.5rem; font-weight: 600; }

/* ── Section heads ── */
.section { padding: 5rem 0; }
.section-head { margin-bottom: 2.5rem; }
.section-head--center { text-align: center; }
.section-head h2 {
  font-size: clamp(1.65rem, 3vw, 2.2rem);
  font-weight: 800;
  letter-spacing: -0.5px;
  color: var(--blue-800);
  margin-bottom: 0.5rem;
}
.section-head p { color: var(--text-muted); font-size: 0.95rem; max-width: 520px; }
.section-head--center p { margin: 0 auto; }

/* ── Featured modules (dark) ── */
.featured-dark {
  background: linear-gradient(160deg, var(--blue-800), var(--blue-900));
  color: var(--white);
  padding: 5rem 0;
  position: relative;
}
.featured-dark .section-head h2 { color: var(--white); }
.featured-dark .section-head p { color: rgba(255, 255, 255, 0.65); }
.featured-scroll {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.featured-card {
  background: rgba(255, 255, 255, 0.07);
  border: 1.5px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-xl);
  padding: 1.35rem;
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  transition: background 0.25s, transform 0.25s;
}
.featured-card:hover {
  background: rgba(255, 255, 255, 0.11);
  transform: translateY(-3px);
}
.featured-thumb {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(240, 244, 248, 0.14);
  color: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.featured-card h3 { font-size: 0.92rem; font-weight: 700; margin-bottom: 0.3rem; }
.featured-card p { font-size: 0.8rem; color: rgba(255, 255, 255, 0.6); line-height: 1.55; }

/* ── Essentials (sand bg) ── */
.essentials {
  background: var(--sand);
  padding: 5rem 0;
}
.essentials-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}
.essentials-list { list-style: none; display: flex; flex-direction: column; gap: 1.25rem; }
.essential-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.essential-dot {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--blue-800);
  color: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.essential-item h4 { font-size: 0.95rem; font-weight: 700; color: var(--blue-800); margin-bottom: 0.2rem; }
.essential-item p { font-size: 0.85rem; color: var(--text-muted); line-height: 1.6; }

.features-mini {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.85rem;
}
.mini-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.1rem;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  transition: box-shadow 0.2s;
}
.mini-card:hover { box-shadow: var(--shadow); }
.mini-card-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--cream);
  color: var(--blue-700);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.mini-card span { font-size: 0.82rem; font-weight: 600; color: var(--blue-800); }

/* ── Pricing ── */
.pricing-section { background: var(--cream); padding: 5rem 0; }
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 1.25rem;
  align-items: start;
}
.plan-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 2rem 1.75rem;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: box-shadow 0.25s;
}
.plan-card:hover { box-shadow: var(--shadow); }
.plan-card.featured { border-color: var(--blue-600); box-shadow: var(--shadow-lg); }
.plan-badge {
  position: absolute;
  top: -11px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--blue-800);
  color: var(--cream);
  padding: 0.3rem 0.85rem;
  border-radius: var(--radius-pill);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.plan-card h3 { font-size: 1.1rem; font-weight: 700; color: var(--blue-800); }
.plan-card .desc { font-size: 0.85rem; color: var(--text-muted); margin: 0.3rem 0 0.75rem; }
.plan-price {
  font-size: 2rem;
  font-weight: 800;
  color: var(--blue-800);
  letter-spacing: -1px;
  margin: 0.5rem 0 1rem;
}
.plan-price small { font-size: 0.8rem; color: var(--text-muted); font-weight: 500; }
.plan-card ul { list-style: none; flex: 1; margin-bottom: 1.25rem; }
.plan-card li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  padding: 0.4rem 0;
  font-size: 0.86rem;
  color: var(--text-muted);
  border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}
.plan-card li:last-child { border: none; }
.plan-card li .check { color: var(--blue-600); flex-shrink: 0; margin-top: 2px; }
.plan-card .btn { width: 100%; }

/* ── FAQ ── */
.faq-section { background: var(--white); padding: 5rem 0; }
.faq-list { max-width: 720px; margin: 0 auto; display: flex; flex-direction: column; gap: 0.6rem; }
.faq-item {
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--cream);
}
.faq-question {
  padding: 1.05rem 1.2rem;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--blue-800);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  cursor: pointer;
}
.faq-item:hover .faq-question,
.faq-item.open .faq-question { background: var(--cream-dark); }
.faq-chevron { color: var(--text-muted); transition: transform 0.3s; }
.faq-item.open .faq-chevron { transform: rotate(180deg); color: var(--blue-700); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.35s ease; }
.faq-item.open .faq-answer { max-height: 280px; }
.faq-answer p { padding: 0 1.2rem 1rem; font-size: 0.88rem; color: var(--text-muted); line-height: 1.65; }

/* ── CTA ── */
.cta-section { padding: 4rem 0 5rem; background: var(--cream); }
.cta-banner {
  background: var(--blue-800);
  border-radius: var(--radius-xl);
  padding: 3.5rem 2rem;
  text-align: center;
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--blue-glow), transparent 70%);
  top: -100px;
  right: -50px;
  pointer-events: none;
}
.cta-banner h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  margin-bottom: 0.6rem;
  position: relative;
}
.cta-banner p {
  font-size: 0.95rem;
  opacity: 0.8;
  max-width: 480px;
  margin: 0 auto 1.5rem;
  position: relative;
}

/* ── Footer ── */
.landing-footer {
  background: var(--blue-900);
  color: rgba(255, 255, 255, 0.65);
  padding: 3.5rem 0 2rem;
  font-size: 0.86rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 2.5rem;
}
.footer-brand p { margin-top: 0.75rem; line-height: 1.65; max-width: 260px; }
.footer-col h4 { color: var(--white); font-weight: 700; font-size: 0.9rem; margin-bottom: 0.85rem; }
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 0.4rem; }
.footer-col a { color: rgba(255, 255, 255, 0.6); text-decoration: none; transition: color 0.2s; }
.footer-col a:hover { color: var(--cream); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  padding-top: 1.75rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* ── Mobile drawer ── */
.mobile-drawer {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(13, 71, 161, 0.45);
  backdrop-filter: blur(4px);
}
.mobile-drawer.open { display: block; }
.mobile-drawer-panel {
  position: absolute;
  top: 0;
  right: 0;
  width: min(300px, 85vw);
  height: 100%;
  background: var(--blue-900);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.mobile-drawer-panel a {
  color: var(--white);
  text-decoration: none;
  padding: 0.75rem 0;
  font-weight: 600;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.mobile-drawer-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
  color: var(--white);
  font-weight: 800;
}
.mobile-close { background: none; border: none; color: var(--white); cursor: pointer; }

/* ── Responsive ── */
@media (max-width: 960px) {
  .hero-split { grid-template-columns: 1fr; }
  .hero-panel { text-align: center; }
  .hero-benefits { align-items: center; }
  .hero-benefit { text-align: left; max-width: 400px; }
  .cream-main-inner { grid-template-columns: 1fr; }
  .cream-blob { min-height: 260px; }
  .benefits-duo-grid { grid-template-columns: 1fr; }
  .featured-scroll { grid-template-columns: 1fr; }
  .essentials-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav-center, .nav-actions .btn-outline-cream { display: none; }
  .nav-toggle { display: flex; }
  .hero-topline { font-size: 1.75rem; margin-bottom: 1.5rem; }
  .orbit-stage { max-width: 320px; }
  .orbit-node { width: 44px; height: 44px; margin: -22px 0 0 -22px; }
  .orbit-node:nth-child(4) { transform: rotate(0deg) translateY(-130px) rotate(0deg); }
  .orbit-node:nth-child(5) { transform: rotate(72deg) translateY(-130px) rotate(-72deg); }
  .orbit-node:nth-child(6) { transform: rotate(144deg) translateY(-130px) rotate(-144deg); }
  .orbit-node:nth-child(7) { transform: rotate(216deg) translateY(-130px) rotate(-216deg); }
  .orbit-node:nth-child(8) { transform: rotate(288deg) translateY(-130px) rotate(-288deg); }
  .orbit-node:nth-child(9) { display: none; }
  .features-mini { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
}
