/* ==========================================================================
   VARIABLES
   ========================================================================== */
:root {
  /* Brand Gradients */
  --grad-primary: linear-gradient(135deg, #8B00FF 0%, #FF69B4 100%);
  --grad-secondary: linear-gradient(135deg, #4169E1 0%, #00CED1 100%);
  
  /* Brand Colors */
  --purple: #8B00FF;
  --pink: #FF69B4;
  --blue: #4169E1;
  --cyan: #00CED1;
  
  /* Deep Accents */
  --hero-right-bg: linear-gradient(135deg, #A855F7 0%, #F472B6 100%);
  --footer-bg: #1A0033;
  --text-main: #2D3748;
  --text-muted: #718096;
  
  /* Background */
  --bg-soft-start: #FAF7FF;
  --bg-soft-end: #FFF5EE;

  /* Typography */
  --font-family: 'Poppins', system-ui, -apple-system, sans-serif;
  
  /* UI Elements */
  --radius-card: 20px;
  --radius-pill: 999px;
  --shadow-soft: 0 10px 30px rgba(139, 0, 255, 0.08);
  --shadow-hover: 0 20px 40px rgba(139, 0, 255, 0.15);
  --shadow-mockup: 0 25px 50px rgba(0, 0, 0, 0.25);
  
  /* Transitions */
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-smooth: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* ==========================================================================
   BASE STYLES
   ========================================================================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-family);
  color: var(--text-main);
  background: linear-gradient(180deg, var(--bg-soft-start) 0%, var(--bg-soft-end) 100%);
  overflow-x: hidden;
  line-height: 1.6;
}

.skip-link {
  position: fixed;
  left: 1rem;
  top: 1rem;
  z-index: 10000;
  transform: translateY(-150%);
  border-radius: var(--radius-pill);
  background: #fff;
  color: var(--purple);
  font-weight: 800;
  padding: 0.75rem 1rem;
  box-shadow: var(--shadow-hover);
  transition: transform var(--transition-fast);
}

.skip-link:focus {
  transform: translateY(0);
}

#particle-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: -1;
  pointer-events: none;
}

/* ==========================================================================
   TYPOGRAPHY
   ========================================================================== */
h1 {
  font-size: clamp(3rem, 5vw, 4.5rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 1rem;
  color: #1A0033;
}

h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
}

h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

p {
  font-size: 1.125rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

/* ==========================================================================
   COMPONENTS
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-pill);
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  transition: all var(--transition-fast);
  cursor: pointer;
  border: none;
}

.btn-large {
  padding: 1rem 2rem;
  font-size: 1.125rem;
}

.btn-primary {
  background: var(--grad-primary);
  color: white;
  box-shadow: 0 8px 20px rgba(139, 0, 255, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 12px 25px rgba(139, 0, 255, 0.4);
}

.btn-secondary {
  background: var(--grad-secondary);
  color: white;
  box-shadow: 0 8px 20px rgba(65, 105, 225, 0.3);
}

.btn-secondary:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 12px 25px rgba(65, 105, 225, 0.4);
}

.btn-outline {
  background: transparent;
  color: var(--purple);
  border: 2px solid var(--purple);
}

.btn-outline:hover {
  background: rgba(139, 0, 255, 0.05);
  transform: translateY(-2px);
}

.btn-white {
  background: white;
  color: var(--purple);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.btn-white:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
}

.btn-block {
  display: flex;
  width: 100%;
}

.card {
  background: white;
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-soft);
  transition: transform var(--transition-smooth), box-shadow var(--transition-smooth);
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
}

/* ==========================================================================
   LAYOUT & SECTIONS
   ========================================================================== */

/* Navbar */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  padding: 1.5rem 0;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(12px);
  z-index: 100;
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 1.5rem;
  font-weight: 800;
  background: var(--grad-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.nav-links {
  display: flex;
  gap: 2rem;
}

.nav-links a {
  text-decoration: none;
  color: var(--text-main);
  font-weight: 600;
  transition: color var(--transition-fast);
}

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

.nav-cta {
  display: flex;
  gap: 1rem;
}

/* Hero Section */
.hero-section {
  padding-top: 5rem;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.hero-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  width: 100%;
}

.hero-text {
  padding: 6rem 4rem 6rem 10vw;
  background: transparent;
  display: flex;
  flex-col;
  justify-content: center;
  flex-direction: column;
}

.badge {
  display: inline-block;
  padding: 0.5rem 1rem;
  background: rgba(139, 0, 255, 0.1);
  color: var(--purple);
  border-radius: var(--radius-pill);
  font-weight: 700;
  font-size: 0.875rem;
  margin-bottom: 1.5rem;
  width: fit-content;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
}

.hero-visual {
  background: var(--hero-right-bg);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  clip-path: polygon(10% 0, 100% 0, 100% 100%, 0 100%);
}

.floating-cards-container {
  position: relative;
  width: 500px;
  height: 500px;
}

.floating-card {
  position: absolute;
  background: white;
  padding: 1.5rem;
  animation: float 6s ease-in-out infinite;
}

.card-main {
  width: 350px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-2deg);
  z-index: 3;
  box-shadow: var(--shadow-mockup);
}

.card-sub1 {
  width: 200px;
  top: 15%;
  left: 4%;
  transform: rotate(-10deg);
  z-index: 5;
  font-weight: 700;
  animation-delay: -2s;
  box-shadow: var(--shadow-mockup);
}

.card-sub2 {
  width: 180px;
  bottom: 12%;
  right: 10%;
  transform: rotate(5deg);
  z-index: 4;
  font-weight: 700;
  color: #38A169;
  animation-delay: -4s;
  box-shadow: var(--shadow-mockup);
}

/* Mockup Internals */
.card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
}

.avatar {
  width: 40px;
  height: 40px;
  background: var(--grad-secondary);
  border-radius: 50%;
}

.streak {
  font-weight: 700;
  color: #DD6B20;
  background: #FEEBC8;
  padding: 0.25rem 0.75rem;
  border-radius: 1rem;
  font-size: 0.875rem;
}

.daily-goal span {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-muted);
}

.progress-bar {
  height: 12px;
  background: #EDF2F7;
  border-radius: 6px;
  margin-top: 0.5rem;
  overflow: hidden;
}

.progress {
  height: 100%;
  background: var(--grad-primary);
  border-radius: 6px;
}

.subjects {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
  margin-top: 1.5rem;
}

.subject-card {
  padding: 1rem 0.5rem;
  border-radius: 12px;
  text-align: center;
  font-weight: 700;
  font-size: 0.875rem;
  color: white;
}

.reading { background: #3B82F6; }
.spag { background: #22C55E; }
.maths { background: #F97316; }

@keyframes float {
  0% { transform: translate(-50%, -50%) rotate(-2deg) translateY(0px); }
  50% { transform: translate(-50%, -50%) rotate(-2deg) translateY(-20px); }
  100% { transform: translate(-50%, -50%) rotate(-2deg) translateY(0px); }
}

.card-sub1 {
  animation: floatSub1 7s ease-in-out infinite;
}

.card-sub2 {
  animation: floatSub2 5s ease-in-out infinite;
}

@keyframes floatSub1 {
  0% { transform: rotate(-10deg) translateY(0px); }
  50% { transform: rotate(-10deg) translateY(-15px); }
  100% { transform: rotate(-10deg) translateY(0px); }
}

@keyframes floatSub2 {
  0% { transform: rotate(5deg) translateY(0px); }
  50% { transform: rotate(5deg) translateY(-10px); }
  100% { transform: rotate(5deg) translateY(0px); }
}


/* Feature Strip Section */
.feature-strip-section {
  background: rgba(250, 247, 255, 0.9);
  padding: 2rem 0;
  border-top: 1px solid rgba(139, 0, 255, 0.1);
  border-bottom: 1px solid rgba(139, 0, 255, 0.1);
  backdrop-filter: blur(5px);
}

.feature-strip {
  max-width: 1200px;
  margin: 0 auto;
  overflow: hidden;
  padding: 0.25rem 2rem;
  -webkit-mask-image: linear-gradient(to right, transparent, #000 10%, #000 90%, transparent);
  mask-image: linear-gradient(to right, transparent, #000 10%, #000 90%, transparent);
}

.feature-strip-track {
  display: flex;
  width: max-content;
  flex-wrap: nowrap;
  animation: marquee 32s linear infinite;
}

.feature-strip-track:hover {
  animation-play-state: paused;
}

.feature-strip-group {
  display: flex;
  flex-wrap: nowrap;
  gap: 1rem;
  padding-right: 1rem;
}

.feature-card {
  min-width: 220px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
  background: #fff;
  border: 1px solid rgba(226, 232, 240, 0.95);
  border-radius: 0.75rem;
  transition: border-color var(--transition-fast), transform var(--transition-fast);
}

.feature-card:hover {
  border-color: #cbd5e1;
  transform: translateY(-1px);
}

.feature-card-icon-shell {
  width: 38px;
  height: 38px;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.5rem;
}

.feature-card-icon {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.feature-card-icon-shell.teal {
  background: #f0fdfa;
  color: #0f766e;
}

.feature-card-icon-shell.blue {
  background: #eff6ff;
  color: #1d4ed8;
}

.feature-card-icon-shell.amber {
  background: #fffbeb;
  color: #b45309;
}

.feature-card-icon-shell.purple {
  background: #faf5ff;
  color: #7e22ce;
}

.feature-card-icon-shell.green {
  background: #f0fdf4;
  color: #15803d;
}

.feature-card-icon-shell.pink {
  background: #fdf2f8;
  color: #be185d;
}

.feature-card-copy {
  min-width: 0;
}

.feature-card-label {
  display: block;
  color: #0f172a;
  font-size: 0.875rem;
  font-weight: 600;
  line-height: 1.2;
}

.feature-card-subtitle {
  display: block;
  margin-top: 0.25rem;
  color: #64748b;
  font-size: 0.75rem;
  line-height: 1.35;
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

/* Feature Rows */
.features-section {
  padding: 6rem 0;
  max-width: 1200px;
  margin: 0 auto;
}

.feature-row {
  display: flex;
  align-items: center;
  padding: 6rem 2rem;
  gap: 4rem;
}

.feature-row.reverse {
  flex-direction: row-reverse;
}

.feature-visual, .feature-content {
  flex: 1;
}

/* Mockup Cards within Features */
.mockup-card {
  padding: 2rem;
  border: 1px solid rgba(0,0,0,0.05);
  box-shadow: var(--shadow-mockup);
}

.mockup-left {
  transform: perspective(1000px) rotateY(5deg);
}

.mockup-right {
  transform: perspective(1000px) rotateY(-5deg);
}

.mockup-header {
  font-weight: 800;
  font-size: 1.25rem;
  color: var(--purple);
  margin-bottom: 1rem;
}

.passage {
  padding: 1rem;
  background: #F7FAFC;
  border-left: 4px solid var(--blue);
  border-radius: 4px;
  font-style: italic;
  margin-bottom: 1.5rem;
  color: var(--text-main);
}

.question-box {
  background: white;
}

.options {
  margin-top: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.option {
  padding: 1rem;
  border: 2px solid #E2E8F0;
  border-radius: 12px;
  font-weight: 600;
  cursor: pointer;
  position: relative;
  overflow: visible;
  transition: all var(--transition-fast);
}

.option:hover,
.option:focus-visible {
  border-color: var(--purple);
  outline: none;
  transform: translateX(4px);
}

.option.selected.correct,
.option.is-correct {
  border-color: #48BB78;
  background: #F0FFF4;
  color: #2F855A;
  animation: correctPulse 650ms ease-out;
}

.question-box .option.selected.wrong,
.question-box .option.is-wrong {
  border-color: #F56565;
  background: #FFF5F5;
  color: #C53030;
  transform: translateX(4px);
}

.answer-confetti {
  position: absolute;
  top: 50%;
  right: 0.75rem;
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 999px;
  background: var(--confetti-color, var(--pink));
  pointer-events: none;
  opacity: 0;
  animation: answerConfetti 850ms ease-out forwards;
}

@keyframes correctPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(72, 187, 120, 0.28);
  }

  100% {
    box-shadow: 0 0 0 12px rgba(72, 187, 120, 0);
  }
}

@keyframes answerConfetti {
  0% {
    opacity: 1;
    transform: translate(0, -50%) scale(1) rotate(0deg);
  }

  100% {
    opacity: 0;
    transform: translate(var(--confetti-x), var(--confetti-y)) scale(0.4) rotate(180deg);
  }
}

/* Gamification Card */
.gamification-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid #E2E8F0;
}

.task-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background: #F7FAFC;
  border-radius: 12px;
  margin-bottom: 1rem;
}

.task-item .icon {
  font-size: 1.5rem;
  background: white;
  padding: 0.5rem;
  border-radius: 50%;
  box-shadow: 0 4px 6px rgba(0,0,0,0.05);
}

/* Teacher Card */
.teacher-card h3 {
  margin-bottom: 1.5rem;
}

.weak-areas {
  background: #FFF5F5;
  padding: 1rem;
  border-radius: 12px;
  margin-bottom: 1.5rem;
}

.weak-tag {
  display: inline-block;
  background: #FED7D7;
  color: #C53030;
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-pill);
  font-size: 0.75rem;
  font-weight: 700;
  margin: 0.5rem 0.25rem 0;
}

.chart-mockup {
  display: flex;
  align-items: flex-end;
  gap: 1rem;
  height: 150px;
  padding-top: 2rem;
  border-bottom: 2px solid #E2E8F0;
}

.bar {
  flex: 1;
  background: var(--grad-secondary);
  border-radius: 4px 4px 0 0;
  transition: height 1s ease-out;
}

/* Student Card */
.student-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
}

.student-avatar {
  width: 50px;
  height: 50px;
  background: var(--grad-primary);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
}

.mastery-bars {
  margin-bottom: 2rem;
}

.mastery-item {
  margin-bottom: 1rem;
}

.mastery-item span {
  display: block;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.bar-bg {
  height: 12px;
  background: #EDF2F7;
  border-radius: 6px;
}

.bar-fill {
  height: 100%;
  background: var(--grad-primary);
  border-radius: 6px;
}

.badges {
  display: flex;
  gap: 1rem;
  justify-content: center;
  padding-top: 1.5rem;
  border-top: 1px solid #E2E8F0;
}

.badge-icon {
  font-size: 2rem;
  background: #FEFCBF;
  padding: 0.5rem;
  border-radius: 50%;
}

/* How It Works */
.how-it-works {
  padding: 6rem 2rem;
  text-align: center;
  background: white;
}

.steps-container {
  max-width: 1200px;
  margin: 4rem auto 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.step-card {
  padding: 3rem 2rem;
  text-align: center;
  background: #FAF7FF;
  border: none;
}

.step-number {
  width: 48px;
  height: 48px;
  background: var(--grad-primary);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 800;
  margin: 0 auto 1.5rem;
}

/* Pricing Section */
.pricing-section {
  padding: 6rem 2rem;
  text-align: center;
}

.pricing-container {
  max-width: 900px;
  margin: 4rem auto 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.pricing-card {
  padding: 3rem;
  text-align: left;
  display: flex;
  flex-direction: column;
}

.pricing-header {
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 1rem;
}

.schools .pricing-header { color: var(--purple); }
.parents .pricing-header { color: var(--blue); }

.price {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 1rem;
}

.price span {
  font-size: 1.25rem;
  color: var(--text-muted);
  font-weight: 600;
}

.pricing-desc {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 2rem;
}

.pricing-features {
  margin-bottom: 3rem;
  flex-grow: 1;
}

.pricing-features p {
  color: var(--text-main);
  font-weight: 500;
  margin-bottom: 1rem;
}

/* Final CTA */
.final-cta {
  padding: 6rem 2rem;
  background: var(--grad-primary);
  color: white;
  text-align: center;
}

.cta-content {
  max-width: 800px;
  margin: 0 auto;
}

.final-cta h2 {
  color: white;
}

.final-cta p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.25rem;
  margin-bottom: 2rem;
}

/* Footer */
footer {
  background: var(--footer-bg);
  color: white;
  padding: 4rem 2rem;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 2rem;
}

.footer-logo {
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
}

.copyright {
  color: rgba(255, 255, 255, 0.5);
  margin: 0;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-weight: 600;
  transition: color var(--transition-fast);
}

.footer-links a:hover {
  color: white;
}

/* Safety FAQ Modal */
.safety-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}

.safety-modal.is-open {
  display: flex;
}

.safety-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.72);
  backdrop-filter: blur(8px);
}

.safety-modal-panel {
  position: relative;
  width: min(1100px, 100%);
  height: min(86vh, 900px);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 28px;
  background: white;
  box-shadow: 0 30px 90px rgba(15, 23, 42, 0.35);
}

.safety-modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.25rem;
  border-bottom: 1px solid #E2E8F0;
  background: #F8FAFC;
}

.safety-modal-kicker {
  margin: 0 0 0.15rem;
  color: #1D4ED8;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.safety-modal-header h2 {
  margin: 0;
  color: #0F172A;
  font-size: 1.25rem;
}

.safety-modal-close {
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 50%;
  background: #E2E8F0;
  color: #0F172A;
  cursor: pointer;
  font-size: 1.75rem;
  font-weight: 700;
  line-height: 1;
  transition: all var(--transition-fast);
}

.safety-modal-close:hover,
.safety-modal-close:focus-visible {
  background: #CBD5E1;
  outline: none;
  transform: scale(1.04);
}

.safety-modal-body {
  width: 100%;
  height: calc(100% - 76px);
  overflow-y: auto;
  padding: 1.5rem;
  background: #F8FAFC;
}

.faq-category {
  margin-bottom: 1rem;
  padding: 1rem;
  border: 1px solid #E2E8F0;
  border-radius: 20px;
  background: white;
}

.faq-category h3 {
  margin: 0;
  color: #0F172A;
  font-size: 1.15rem;
}

.faq-category > p {
  margin: 0.15rem 0 1rem;
  color: #475569;
  font-size: 0.9rem;
  font-weight: 600;
}

.faq-item {
  border-top: 1px solid #E2E8F0;
}

.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 0;
  color: #0F172A;
  cursor: pointer;
  font-weight: 700;
  list-style: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #DBEAFE;
  color: #1D4ED8;
  flex-shrink: 0;
  font-size: 1.1rem;
}

.faq-item[open] summary::after {
  content: "-";
}

.faq-item p {
  margin: 0 0 1rem;
  color: #475569;
  font-size: 0.98rem;
  line-height: 1.7;
}

.faq-footer-note {
  margin: 1rem 0 0;
  padding: 1rem;
  border-radius: 16px;
  background: #E0F2FE;
  color: #0F172A;
  font-size: 0.92rem;
  line-height: 1.6;
}

body.safety-modal-open {
  overflow: hidden;
}

/* ==========================================================================
   ANIMATIONS & RESPONSIVE
   ========================================================================== */

.fade-in-section {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
  will-change: opacity, visibility;
}

.fade-in-section.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 992px) {
  .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .hero-text {
    padding: 8rem 2rem 4rem;
    align-items: center;
  }
  
  .hero-visual {
    clip-path: none;
    padding: 4rem 0;
  }
  
  .feature-row, .feature-row.reverse {
    flex-direction: column;
    text-align: center;
    gap: 3rem;
  }
  
  .mockup-left, .mockup-right {
    transform: none;
  }
  
  .pricing-container {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .nav-links, .nav-cta .btn-outline {
    display: none;
  }
  
  .steps-container {
    grid-template-columns: 1fr;
  }
  
  .hero-buttons {
    flex-direction: column;
    width: 100%;
  }
}
