/* ══════════════════════════════════════════════════════════════
   EduLift Apps — Shared Modernized Styles
   ══════════════════════════════════════════════════════════════ */
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');

:root {
  --brand-green: #1CAB6C;
  --brand-green-light: #22c97e;
  --brand-purple: #5E35B1;
  --brand-violet: #6C5CE7;
  --hero-teal: #00A896;
  --neon-lime: #BAFF47;
  --ink: #1E293B;
  --muted: #64748B;
  --paper: #FFFFFF;
  --soft: #F8FAFC;
  --line: #E2E8F0;
  --navy: #0F172A;
  --teal: #0097b2;
  --green-soft: rgba(28,171,108,0.1);
  --purple-soft: rgba(94,53,177,0.08);
  --gold-soft: rgba(245,158,11,0.12);
  --teal-soft: rgba(0,168,150,0.1);
  --shadow-sm: 0 1px 3px rgba(15,23,42,0.06);
  --shadow-md: 0 8px 30px rgba(15,23,42,0.08);
  --shadow-lg: 0 20px 50px rgba(15,23,42,0.12);
  --radius: 12px;
  --radius-lg: 20px;
  --radius-pill: 999px;
  --max: 1200px;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0; color: var(--ink); background: var(--paper);
  font-family: 'Plus Jakarta Sans', Inter, ui-sans-serif, system-ui, -apple-system, sans-serif;
  line-height: 1.65; -webkit-font-smoothing: antialiased;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }

h1, h2, h3, p { overflow-wrap: anywhere; }
h1, h2, h3 { margin: 0; line-height: 1.12; letter-spacing: -0.02em; }
h1 { font-size: clamp(2.2rem, 6vw, 3.8rem); font-weight: 800; }
h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); font-weight: 800; }
h3 { font-size: clamp(1.05rem, 2vw, 1.3rem); font-weight: 700; }

.lead { color: var(--muted); font-size: clamp(1rem, 1.8vw, 1.12rem); margin: 1rem 0 0; }

.skip-link {
  position: absolute; left: 1rem; top: -4rem; z-index: 50;
  padding: 0.6rem 0.8rem; color: var(--paper); background: var(--navy); border-radius: var(--radius);
}
.skip-link:focus { top: 1rem; }

/* ── Header ── */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,0.75);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.site-header.scrolled { border-bottom-color: var(--line); box-shadow: var(--shadow-sm); }

.nav-shell, .container, .hero-shell {
  width: min(var(--max), calc(100% - 40px)); margin: 0 auto;
}

.nav-shell {
  min-height: 72px; display: flex; align-items: center; gap: 1rem;
}

.brand { display: inline-flex; align-items: center; flex: none; }
.brand img { width: auto; height: 48px; object-fit: contain; }

.menu-toggle {
  display: none; width: 44px; height: 44px; margin-left: auto;
  border: 1px solid var(--line); border-radius: var(--radius);
  color: var(--ink); background: var(--paper); cursor: pointer; position: relative;
}
.menu-toggle span {
  display: block; width: 18px; height: 2px; margin: 4px auto;
  background: currentColor; border-radius: 2px; transition: all 0.3s var(--ease);
}

.site-nav {
  margin-left: auto; display: flex; align-items: center; gap: 0.25rem;
}
.site-nav a {
  padding: 0.6rem 0.85rem; border-radius: var(--radius);
  color: var(--ink); font-size: 0.9rem; font-weight: 600;
  white-space: nowrap;
  transition: all 0.2s ease;
}
.site-nav a:hover, .site-nav a:focus {
  color: var(--brand-green); background: var(--green-soft);
}

/* ── Buttons ── */
.button {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  min-height: 46px; padding: 0.75rem 1.5rem;
  border: 1px solid transparent; border-radius: var(--radius);
  font-weight: 700; font-size: 0.92rem; cursor: pointer;
  transition: all 0.25s var(--ease); position: relative; overflow: hidden;
}
.button:hover { transform: translateY(-2px); }

.button.primary, .site-nav .nav-cta {
  color: var(--navy); background: var(--neon-lime);
  box-shadow: 0 6px 24px rgba(186,255,71,0.3);
}
.button.primary:hover, .site-nav .nav-cta:hover {
  box-shadow: 0 10px 36px rgba(186,255,71,0.45); background: #c8ff62;
}
.button.secondary {
  color: var(--brand-green); background: var(--paper); border-color: var(--brand-green);
}
.button.secondary:hover { background: var(--green-soft); }

/* ── Hero ── */
.hero {
  overflow: hidden;
  background: linear-gradient(135deg, #087c5a 0%, #0e7c5b 40%, #0a5c3f 100%);
  position: relative;
}
.hero::before {
  content: ""; position: absolute; inset: 0;
  background-image: radial-gradient(rgba(255,255,255,0.06) 1px, transparent 1px);
  background-size: 24px 24px; opacity: 0.5;
}
.hero::after {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 80% 20%, rgba(186,255,71,0.15), transparent 50%);
}

.hero-shell {
  position: relative; z-index: 2;
  min-height: min(700px, 82svh);
  display: grid; grid-template-columns: minmax(0, 1fr) minmax(400px, 1.1fr);
  align-items: center; gap: 2.5rem; padding: 80px 0 56px;
}

.hero-copy { color: var(--paper); }
.hero h1 { color: var(--paper); text-shadow: 0 2px 16px rgba(0,0,0,0.15); }
.hero .lead { color: rgba(255,255,255,0.9); }

.eyebrow {
  display: inline-flex; align-items: center; gap: 0.5rem;
  margin: 0 0 1rem; color: var(--neon-lime);
  font-size: 0.78rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em;
}
.eyebrow::before {
  content: ""; width: 8px; height: 8px;
  background: var(--neon-lime); border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(186,255,71,0.2);
  animation: pulse-dot 2s ease infinite;
}
@keyframes pulse-dot {
  0%, 100% { box-shadow: 0 0 0 4px rgba(186,255,71,0.2); }
  50% { box-shadow: 0 0 0 8px rgba(186,255,71,0.05); }
}

.actions { display: flex; flex-wrap: wrap; gap: 0.8rem; margin-top: 2rem; }
.hero .button.secondary {
  color: var(--paper); background: transparent; border-color: rgba(255,255,255,0.3);
}
.hero .button.secondary:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.5); }

.proof-row {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.75rem; margin-top: 2rem;
}
.proof-row div {
  padding: 0.85rem; border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius); background: rgba(255,255,255,0.08);
  backdrop-filter: blur(8px);
}
.proof-row strong { display: block; color: var(--neon-lime); font-size: 1.3rem; }
.proof-row span { display: block; color: rgba(255,255,255,0.7); font-size: 0.82rem; }

/* ── Hero Media ── */
.hero-media { position: relative; min-height: 480px; display: grid; align-items: center; }

.dashboard-card {
  overflow: hidden; border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-lg); background: var(--paper);
  box-shadow: 0 24px 60px rgba(0,0,0,0.2);
  animation: float 6s ease-in-out infinite;
}
.dashboard-card img { width: 100%; height: auto; }

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

.mini-phone {
  position: absolute; right: -8px; bottom: 4px;
  width: 160px; height: 300px; padding: 0.6rem;
  border: 6px solid #1e293b; border-radius: 20px;
  background: #1e293b; box-shadow: 0 20px 50px rgba(0,0,0,0.25);
  animation: float 6s ease-in-out infinite 1s;
}
.phone-screen, .phone-dashboard {
  height: 100%; overflow: hidden; border-radius: var(--radius); background: var(--paper);
}
.phone-screen img, .phone-dashboard img {
  width: 100%; height: 100%; object-fit: cover; object-position: left top;
}

/* ── Sections ── */
.section { padding: 100px 0; }
.soft { background: var(--soft); }

.section-heading { max-width: 720px; margin: 0 auto 3rem; text-align: center; }

/* Non-hero eyebrow */
.section .eyebrow { color: var(--brand-green); }
.section .eyebrow::before { background: var(--neon-lime); }

/* ── Feature Grid ── */
.feature-grid, .role-grid, .pricing-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem;
}

.feature-card, .role-card, .price-card, .form-card,
.faq-item, .insight-card, .stacked-list article {
  border: 1px solid var(--line); border-radius: var(--radius-lg);
  background: var(--paper); box-shadow: var(--shadow-sm);
  transition: all 0.3s var(--ease);
}
.feature-card:hover, .role-card:hover, .price-card:hover {
  transform: translateY(-6px); box-shadow: var(--shadow-lg);
  border-color: rgba(28,171,108,0.2);
}

.feature-card, .role-card, .price-card { padding: 1.5rem; }
.feature-card h3, .role-card h3 { margin: 0.75rem 0 0.4rem; }

.role-card { text-align: center; }
.role-image {
  width: 64px; height: 64px; margin: 0 auto 0.75rem;
  display: grid; place-items: center;
  border-radius: 50%; background: var(--green-soft);
}
.role-image i { width: 32px; height: 32px; color: var(--brand-green); }

.feature-icon {
  width: 52px; height: 52px; display: grid; place-items: center;
  margin-bottom: 0.75rem; color: var(--brand-green);
  background: var(--green-soft); border-radius: var(--radius);
}
.feature-icon i { width: 24px; height: 24px; }
.feature-icon.green { color: #16a34a; background: rgba(22,163,74,0.1); }
.feature-icon.gold { color: #d97706; background: var(--gold-soft); }
.feature-icon.teal { color: var(--hero-teal); background: var(--teal-soft); }
.feature-icon.purple { color: var(--brand-purple); background: var(--purple-soft); }

.feature-card p, .role-card p, .price-card p,
.stacked-list span, .faq-item p { color: var(--muted); font-size: 0.9rem; }

/* ── Split Layout ── */
.split {
  display: grid; grid-template-columns: minmax(330px, 0.85fr) minmax(0, 1fr);
  align-items: center; gap: 3.5rem;
}
.split.reverse { grid-template-columns: minmax(0, 1fr) minmax(330px, 0.85fr); }

/* ── Mobile Device ── */
.mobile-device { display: grid; place-items: center; }
.phone-shell {
  position: relative; width: min(300px, 100%); height: 580px;
  padding: 0.85rem; border: 8px solid #1e293b; border-radius: 28px;
  background: #1e293b; box-shadow: 0 28px 68px rgba(0,0,0,0.2);
}
.phone-camera {
  position: absolute; left: 50%; top: 10px; z-index: 2;
  width: 70px; height: 6px; border-radius: 999px;
  background: #0f172a; transform: translateX(-50%);
}
.phone-dashboard { border-radius: 16px; }

/* ── Stacked List / Check List / Insight ── */
.stacked-list, .check-list, .insight-panel {
  display: grid; gap: 0.85rem; margin-top: 1.5rem;
}
.stacked-list article { padding: 1.1rem; }
.stacked-list strong, .stacked-list span { display: block; }
.stacked-list strong { margin-bottom: 0.2rem; }

.check-list { padding: 0; list-style: none; }
.check-list li {
  position: relative; padding: 0.4rem 0 0.4rem 1.6rem; color: var(--muted); font-size: 0.95rem;
}
.check-list li::before {
  content: ""; position: absolute; left: 0; top: 0.55rem;
  width: 18px; height: 18px; border-radius: 50%;
  background: var(--green-soft);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%231CAB6C' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6 9 17l-5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: center; background-size: 11px;
}

.insight-panel {
  padding: 1.25rem; border-radius: var(--radius-lg);
  background: linear-gradient(135deg, rgba(28,171,108,0.06), rgba(0,168,150,0.06));
}
.insight-card { padding: 1.1rem; }
.insight-card span {
  display: block; color: var(--brand-green);
  font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em;
  margin-bottom: 0.25rem;
}

/* ── Pricing ── */
.pricing-grid { align-items: stretch; }
.price-card { display: flex; flex-direction: column; gap: 1rem; }
.price-card strong { font-size: 1.4rem; color: var(--brand-green); }
.price-card .button { margin-top: auto; }
.featured {
  background: linear-gradient(135deg, var(--brand-green), #15803d);
  color: var(--paper); border-color: transparent;
}
.featured h3, .featured p, .featured strong { color: var(--paper); }
.featured .button.primary { background: var(--neon-lime); color: var(--navy); }

/* ── Demo Section ── */
.demo-section {
  color: var(--paper);
  background: linear-gradient(135deg, var(--hero-teal), var(--brand-green) 60%, #15803d);
  position: relative;
}
.demo-section::before {
  content: ""; position: absolute; inset: 0;
  background-image: radial-gradient(rgba(255,255,255,0.06) 1px, transparent 1px);
  background-size: 24px 24px;
}
.demo-section .container { position: relative; z-index: 2; }
.demo-section .lead { color: rgba(255,255,255,0.85); }
.demo-section .eyebrow { color: var(--neon-lime); }

/* ── Form ── */
.form-card { padding: 1.75rem; color: var(--ink); }
form { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; }
label { display: grid; gap: 0.35rem; font-size: 0.82rem; font-weight: 600; color: var(--ink); }
input, textarea {
  width: 100%; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 0.7rem 0.85rem; color: var(--ink); background: var(--soft); font-size: 0.9rem;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
input:focus, textarea:focus {
  outline: none; border-color: var(--brand-green);
  box-shadow: 0 0 0 3px rgba(28,171,108,0.12);
}
textarea { min-height: 100px; resize: vertical; }
.full { grid-column: 1 / -1; }
.form-status { min-height: 22px; margin: 0; color: var(--brand-green); font-weight: 600; }

/* ── FAQ ── */
.narrow { max-width: 900px; }
.faq-item { margin-top: 0.75rem; overflow: hidden; }
.faq-item button {
  width: 100%; display: flex; justify-content: space-between; align-items: center;
  gap: 1rem; padding: 1.1rem 1.25rem; border: 0;
  color: var(--ink); background: transparent; text-align: left;
  font-weight: 700; font-size: 1rem; cursor: pointer;
}
.faq-item button i {
  width: 20px; height: 20px; flex-shrink: 0;
  transition: transform 0.3s var(--ease); color: var(--muted);
}
.faq-item.is-open button i { transform: rotate(180deg); color: var(--brand-green); }
.faq-item.is-open button { color: var(--brand-green); }

.faq-item p {
  max-height: 0; overflow: hidden; margin: 0; padding: 0 1.25rem;
  color: var(--muted); font-size: 0.92rem; line-height: 1.65;
  transition: max-height 0.35s var(--ease), padding 0.35s var(--ease);
}
.faq-item.is-open p { max-height: 300px; padding: 0 1.25rem 1.1rem; }

/* ── Footer ── */
.site-footer {
  color: rgba(255,255,255,0.7); background: var(--navy); padding: 56px 0 32px;
}
.footer-shell {
  display: grid; grid-template-columns: 140px minmax(0, 1fr) auto;
  align-items: center; gap: 2rem;
}
.footer-brand img { height: 52px; }
.footer-shell p { font-size: 0.88rem; }
.whatsapp-link {
  color: var(--neon-lime); font-weight: 700;
  transition: opacity 0.2s ease;
}
.whatsapp-link:hover { opacity: 0.8; }

/* ── WhatsApp Float ── */
.whatsapp-float {
  position: fixed; right: 24px; bottom: 24px; z-index: 45;
  width: 56px; height: 56px; display: grid; place-items: center;
  color: var(--paper); background: #25D366; border-radius: 50%;
  box-shadow: 0 6px 24px rgba(37,211,102,0.35);
  transition: all 0.3s var(--ease);
  animation: slideUp 0.6s var(--ease) both 1s;
}
.whatsapp-float:hover { transform: scale(1.1); box-shadow: 0 10px 36px rgba(37,211,102,0.5); }

@keyframes slideUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ── Reveal ── */
.reveal {
  opacity: 0; transform: translateY(28px);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.reveal:nth-child(2) { transition-delay: 0.08s; }
.reveal:nth-child(3) { transition-delay: 0.16s; }
.reveal:nth-child(4) { transition-delay: 0.24s; }

/* ── Responsive ── */
@media (max-width: 1040px) {
  .hero-shell, .split, .split.reverse { grid-template-columns: 1fr; }
  .hero-shell { min-height: auto; padding-top: 56px; }
  .hero-media { min-height: 420px; }
  .feature-grid, .role-grid, .pricing-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-shell { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .site-header {
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    background: white;
  }
  .nav-shell { min-height: 68px; }
  .brand img { height: 42px; }
  
  .menu-toggle { 
    display: flex; 
    flex-direction: column; 
    justify-content: center; 
    align-items: center;
    z-index: 110 !important; 
    position: relative;
  }
  
  .site-nav {
    position: absolute !important;
    top: 100% !important;
    left: 0 !important; right: 0 !important;
    bottom: auto !important;
    z-index: 90 !important;
    flex-direction: column !important;
    justify-content: flex-start !important;
    align-items: center !important;
    gap: 0 !important;
    background: white !important;
    box-shadow: 0 12px 32px rgba(0,0,0,0.12) !important;
    padding: 0.5rem 1rem 1.5rem 1rem !important;
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;
    transition: opacity 0.25s ease !important;
  }
  
  .nav-open .site-nav {
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
  }

  .nav-open .menu-toggle span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
  .nav-open .menu-toggle span:nth-child(2) { opacity: 0; transform: scaleX(0); }
  .nav-open .menu-toggle span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }
  
  .site-nav a { font-size: 1.05rem; padding: 0.85rem 1.5rem; width: 100%; text-align: center; }
  .section { padding: 64px 0; }
  .hero-media { min-height: 340px; }
  .mini-phone { display: none; }
  .proof-row, .feature-grid, .role-grid, .pricing-grid, form { grid-template-columns: 1fr; }
  .phone-shell { width: min(260px, 100%); height: 500px; }
  .footer-brand img { height: 44px; }
}

@media (max-width: 520px) {
  .nav-shell, .container, .hero-shell { width: min(100% - 24px, var(--max)); }
  .actions { flex-direction: column; }
  .button { width: 100%; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition: none !important; }
  .reveal { opacity: 1; transform: none; }
}

/* ── Custom Hero & Nav Styles (Blended) ── */
.site-nav a.button.primary {
  color: var(--paper); background: #4F46E5;
  border-radius: var(--radius-pill);
  box-shadow: 0 4px 14px rgba(79, 70, 229, 0.4);
  padding: 0.75rem 1.75rem;
  font-weight: 600;
  transition: all 0.25s var(--ease);
}
.site-nav a.button.primary:hover {
  background: #6366F1; box-shadow: 0 6px 20px rgba(79, 70, 229, 0.5);
  transform: translateY(-2px);
}

.hero {
  position: relative; overflow: hidden;
  background: linear-gradient(135deg, #FFFFFF 0%, #F5F3FF 50%, #EEF2FF 100%);
  padding: 60px 0 100px;
}
.hero::before {
  content: ""; position: absolute; inset: 0;
  background-image: radial-gradient(var(--line) 1px, transparent 1px);
  background-size: 32px 32px; opacity: 0.4;
}
.hero-copy h1 { color: #1e1b4b; font-size: clamp(2.5rem, 6vw, 4.5rem); font-weight: 800; }
.hero-copy h1 span { color: #4F46E5; }
.hero-copy .lead { color: #475569; font-size: 1.15rem; line-height: 1.7; }

/* Fix for Hero buttons */
.hero-copy .button.primary {
  color: var(--paper); background: #4F46E5; border-radius: var(--radius-pill);
  box-shadow: 0 4px 14px rgba(79, 70, 229, 0.4);
}
.hero-copy .button.primary:hover {
  background: #6366F1; box-shadow: 0 6px 20px rgba(79, 70, 229, 0.5);
}
.hero-copy .button.secondary {
  color: #4F46E5; background: transparent; border-color: #E0E7FF; border-radius: var(--radius-pill);
}
.hero-copy .button.secondary:hover {
  background: rgba(79, 70, 229, 0.08); border-color: #4F46E5;
}

.hero-features {
  display: flex; flex-wrap: wrap; gap: 1.5rem; margin-top: 3.5rem;
}
.feature-pill {
  display: flex; flex-direction: column; align-items: center; gap: 0.5rem;
  text-align: center; max-width: 90px;
}
.feature-pill .icon {
  width: 56px; height: 56px; display: grid; place-items: center;
  background: var(--paper); border-radius: 16px;
  box-shadow: var(--shadow-sm); color: #4F46E5;
  border: 1px solid var(--line);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.feature-pill:hover .icon { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: #E0E7FF; }
.feature-pill span { font-size: 0.75rem; font-weight: 600; color: #475569; line-height: 1.3; }

.hero-visual {
  position: relative;
  display: grid; align-items: center;
}
.hero-screenshot {
  position: relative; width: 100%;
  border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: 0 40px 100px rgba(30, 27, 75, 0.15);
  animation: float 6s ease-in-out infinite;
}

/* ── New Sections CSS ── */
.schools-wheel {
  position: relative; width: 340px; height: 340px; margin: 0 auto;
  border-radius: 50%; border: 1px dashed rgba(28, 171, 108, 0.3);
  animation: orbitWheel 30s linear infinite;
}
@keyframes orbitWheel {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}
@keyframes orbitReverse {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(-360deg); }
}
.wheel-center {
  position: absolute; top: 50%; left: 50%;
  margin-top: -70px; margin-left: -70px;
  width: 140px; height: 140px; background: white; border-radius: 50%;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1); display: grid; place-items: center;
  animation: orbitReverse 30s linear infinite;
  overflow: hidden;
}
.wheel-item {
  position: absolute; width: 100px; text-align: center;
  font-size: 0.8rem; font-weight: 600; color: var(--ink);
  background: white; padding: 0.5rem; border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05); border: 1px solid var(--line);
  animation: orbitReverse 30s linear infinite;
}
.wheel-item.item-1 { top: -20px; left: 50%; margin-left: -50px; }
.wheel-item.item-2 { top: 60px; right: -40px; }
.wheel-item.item-3 { bottom: 60px; right: -40px; }
.wheel-item.item-4 { bottom: -20px; left: 50%; margin-left: -50px; }
.wheel-item.item-5 { bottom: 60px; left: -40px; }
.wheel-item.item-6 { top: 60px; left: -40px; }

/* Demo Section Override */
.demo-section.purple-tint {
  background: #F5F3FF;
  color: var(--ink);
}
.demo-section.purple-tint::before {
  display: none;
}
.demo-section.purple-tint .lead {
  color: var(--muted);
}
.demo-section.purple-tint .eyebrow {
  color: #7C3AED;
  background: rgba(124,58,237,0.1);
  display: inline-block;
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-pill);
}

.demo-section.purple-tint .button.primary {
  background: #7C3AED;
  color: #FFFFFF;
  box-shadow: 0 4px 14px rgba(124,58,237,0.4);
}
.demo-section.purple-tint .button.primary:hover {
  background: #6D28D9;
  box-shadow: 0 6px 20px rgba(124,58,237,0.5);
}
.single-pricing-card {
  max-width: 800px;
  margin: 0 auto;
  background: var(--paper);
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-lg);
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  overflow: hidden;
}

.pricing-left {
  background: linear-gradient(135deg, var(--brand-green), #15803d);
  color: white;
  padding: 3rem 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  position: relative;
}

.currency-toggle {
  display: flex;
  background: rgba(255,255,255,0.2);
  border-radius: var(--radius-pill);
  padding: 0.25rem;
  margin-bottom: 2rem;
}

.currency-toggle button {
  background: transparent;
  border: none;
  color: white;
  padding: 0.5rem 1rem;
  border-radius: var(--radius-pill);
  cursor: pointer;
  font-weight: 600;
  font-size: 0.85rem;
  transition: all 0.2s ease;
}

.currency-toggle button.active {
  background: white;
  color: var(--brand-green);
  box-shadow: var(--shadow-sm);
}

.price-display {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0.2rem;
  margin-bottom: 1rem;
}

.price-display .currency {
  font-size: 1.5rem;
  font-weight: 700;
  margin-top: 0.5rem;
}

.price-display strong {
  font-size: 3.5rem;
  line-height: 1;
  font-weight: 800;
}

.price-display .period {
  align-self: flex-end;
  font-weight: 500;
  margin-bottom: 0.8rem;
  opacity: 0.8;
}

.price-subtitle {
  font-size: 0.85rem;
  opacity: 0.9;
  margin: 0;
}

.pricing-right {
  padding: 3rem 2rem;
  display: flex;
  flex-direction: column;
  background: white;
}

.pricing-right .check-list {
  display: grid;
  gap: 1rem;
  margin: 0 0 2rem;
}

.pricing-right .check-list li {
  color: var(--ink);
  font-weight: 500;
}

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