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

/* --- CSS Variables & Design System --- */
:root {
  --primary-color: #0b2545;      /* Deep Sapphire Blue */
  --primary-light: #134074;      /* Navy Blue */
  --secondary-color: #00b4d8;    /* Electric Cyan/Teal */
  --secondary-dark: #0077b6;     /* Darker Teal */
  --accent-color: #e0f2fe;        /* Ultra Light Soft Blue */
  --bg-white: #ffffff;
  --bg-light: #f4f7fc;           /* Cool Soft Slate */
  --bg-dark: #071930;            /* Dark Hero/Footer */
  --bg-dark-accent: #0f2c52;     /* Card background in dark sections */
  
  --text-dark: #0f172a;          /* Slate 900 */
  --text-medium: #334155;        /* Slate 700 */
  --text-light: #f8fafc;         /* Slate 50 */
  --text-muted: #64748b;         /* Slate 500 */
  --text-cyan: #06b6d4;          /* Cyber Cyan for highlights */
  
  --font-main: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
  
  --shadow-sm: 0 2px 4px rgba(11, 37, 69, 0.05);
  --shadow-md: 0 10px 25px -5px rgba(11, 37, 69, 0.08), 0 8px 10px -6px rgba(11, 37, 69, 0.05);
  --shadow-lg: 0 20px 40px -10px rgba(11, 37, 69, 0.12), 0 10px 15px -5px rgba(11, 37, 69, 0.08);
  --shadow-glow: 0 0 20px rgba(0, 180, 216, 0.25);
  --shadow-glow-strong: 0 0 30px rgba(0, 180, 216, 0.55);
  
  --border-radius-sm: 8px;
  --border-radius-md: 16px;
  --border-radius-lg: 24px;
  --border-radius-full: 9999px;
  
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  
  --max-width: 1200px;
}

/* --- Base & Reset Styles --- */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-main);
  background-color: var(--bg-white);
  color: var(--text-dark);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.25;
  color: var(--primary-color);
}

p {
  color: var(--text-medium);
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition-fast);
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* --- Navigation Bar --- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 80px;
  background-color: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: 1000;
  display: flex;
  align-items: center;
  border-bottom: 1px solid rgba(19, 64, 116, 0.08);
  transition: var(--transition-normal);
}

.navbar.scrolled {
  height: 70px;
  box-shadow: var(--shadow-sm);
  background-color: rgba(255, 255, 255, 0.95);
}

.nav-container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--primary-color);
  display: flex;
  align-items: center;
  gap: 8px;
}

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

.nav-links {
  display: flex;
  gap: 32px;
  align-items: center;
}

.nav-link {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-medium);
  position: relative;
}

.nav-link:hover {
  color: var(--primary-color);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--secondary-color);
  transition: var(--transition-fast);
}

.nav-link:hover::after {
  width: 100%;
}

.nav-cta {
  background-color: var(--primary-color);
  color: var(--text-light) !important;
  padding: 10px 22px;
  border-radius: var(--border-radius-full);
  font-weight: 600;
  font-size: 0.9rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid transparent;
}

.nav-cta:hover {
  background-color: var(--primary-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

/* Mobile Menu Toggle */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1001;
}

.menu-toggle span {
  display: block;
  width: 28px;
  height: 3px;
  background-color: var(--primary-color);
  border-radius: 3px;
  transition: var(--transition-normal);
}

/* --- Hero Section --- */
.hero {
  position: relative;
  padding: 180px 0 100px 0;
  background: radial-gradient(circle at 80% 20%, rgba(0, 180, 216, 0.08) 0%, rgba(255, 255, 255, 0) 60%),
              linear-gradient(135deg, #071930 0%, #0b2545 100%);
  color: var(--text-light);
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 24px 24px;
  pointer-events: none;
}

.hero-container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 48px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: rgba(0, 180, 216, 0.15);
  border: 1px solid rgba(0, 180, 216, 0.3);
  padding: 8px 16px;
  border-radius: var(--border-radius-full);
  color: var(--secondary-color);
  font-weight: 600;
  font-size: 0.85rem;
  margin-bottom: 24px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  animation: float 4s ease-in-out infinite;
}

.hero-badge span {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--secondary-color);
  box-shadow: 0 0 8px var(--secondary-color);
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.15;
  color: var(--bg-white);
  margin-bottom: 20px;
}

.hero-title span {
  background: linear-gradient(120deg, #00b4d8 0%, #a5f3fc 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-desc {
  font-size: 1.15rem;
  color: #94a3b8;
  margin-bottom: 32px;
  max-width: 600px;
  line-height: 1.6;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  margin-bottom: 40px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 32px;
  font-weight: 700;
  border-radius: var(--border-radius-md);
  font-size: 1rem;
  transition: var(--transition-normal);
  cursor: pointer;
  border: none;
}

.btn-primary {
  background: linear-gradient(135deg, var(--secondary-color) 0%, var(--secondary-dark) 100%);
  color: var(--bg-white);
  box-shadow: var(--shadow-glow);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-glow-strong);
  filter: brightness(1.1);
}

.btn-secondary {
  background-color: rgba(255, 255, 255, 0.05);
  color: var(--text-light);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.btn-secondary:hover {
  background-color: rgba(255, 255, 255, 0.1);
  transform: translateY(-3px);
  border-color: rgba(255, 255, 255, 0.3);
}

.hero-features {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.hero-feature-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: #cbd5e1;
}

.hero-feature-item svg {
  color: var(--secondary-color);
  flex-shrink: 0;
}

/* Glass Card Illustration */
.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.glass-card {
  background: rgba(15, 44, 82, 0.4);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--border-radius-lg);
  padding: 30px;
  width: 100%;
  max-width: 420px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.25);
  position: relative;
  overflow: hidden;
}

.glass-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0.2) 50%, rgba(255,255,255,0) 100%);
}

.card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
}

.card-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #ef4444;
  box-shadow: 0 0 10px rgba(239, 68, 68, 0.5);
}

.card-badge {
  background-color: rgba(255, 255, 255, 0.1);
  padding: 4px 10px;
  border-radius: 4px;
  font-size: 0.75rem;
  color: #94a3b8;
  font-family: monospace;
}

.chart-placeholder {
  height: 160px;
  margin-bottom: 20px;
  position: relative;
  display: flex;
  align-items: flex-end;
  gap: 12px;
}

.chart-line-svg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: visible;
}

.chart-bar {
  flex: 1;
  background: linear-gradient(to top, rgba(0, 180, 216, 0.2), rgba(0, 180, 216, 0.8));
  border-radius: 4px 4px 0 0;
  height: 40%;
  animation: growBar 2s ease-out forwards;
}

.chart-bar:nth-child(2) { height: 65%; animation-delay: 0.2s; }
.chart-bar:nth-child(3) { height: 50%; animation-delay: 0.4s; }
.chart-bar:nth-child(4) { height: 85%; animation-delay: 0.6s; }
.chart-bar:nth-child(5) { height: 95%; animation-delay: 0.8s; }

.card-stat {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 20px;
}

.stat-val {
  font-size: 1.5rem;
  font-weight: 800;
  color: #22c55e;
}

.stat-lbl {
  font-size: 0.8rem;
  color: #94a3b8;
}

/* Floating elements */
.float-element {
  position: absolute;
  background: rgba(11, 37, 69, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 12px 18px;
  border-radius: var(--border-radius-md);
  font-size: 0.8rem;
  font-weight: 600;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
  display: flex;
  align-items: center;
  gap: 8px;
  backdrop-filter: blur(8px);
}

.float-1 {
  top: -20px;
  right: -10px;
  border-color: rgba(34, 197, 94, 0.3);
  animation: float 5s ease-in-out infinite;
}

.float-2 {
  bottom: 20px;
  left: -40px;
  border-color: rgba(0, 180, 216, 0.3);
  animation: float 6s ease-in-out infinite 1s;
}

/* --- Global Layout Section Styles --- */
.section {
  padding: 100px 0;
  position: relative;
}

.section-bg-light {
  background-color: var(--bg-light);
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 60px auto;
}

.section-subtitle {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--secondary-color);
  letter-spacing: 0.1em;
  margin-bottom: 12px;
  display: block;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary-color);
  margin-bottom: 16px;
}

.section-desc {
  font-size: 1.05rem;
  color: var(--text-medium);
}

/* --- Problem / Reality Check Section --- */
.split-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.problem-content {
  padding-right: 20px;
}

.problem-content h3 {
  font-size: 1.8rem;
  margin-bottom: 20px;
  line-height: 1.3;
}

.problem-content p {
  font-size: 1.05rem;
  margin-bottom: 24px;
}

.problem-quote {
  border-left: 4px solid var(--secondary-color);
  padding-left: 20px;
  font-style: italic;
  font-weight: 500;
  color: var(--primary-light);
  margin: 30px 0;
}

.problem-cards {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.reality-card {
  background-color: var(--bg-white);
  border-radius: var(--border-radius-md);
  padding: 24px;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(19, 64, 116, 0.05);
  display: flex;
  gap: 20px;
  transition: var(--transition-normal);
}

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

.reality-card.danger {
  border-left: 6px solid #ef4444;
}

.reality-card.success {
  border-left: 6px solid #10b981;
}

.card-icon-box {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.reality-card.danger .card-icon-box {
  background-color: #fef2f2;
  color: #ef4444;
}

.reality-card.success .card-icon-box {
  background-color: #ecfdf5;
  color: #10b981;
}

.reality-card h4 {
  font-size: 1.15rem;
  margin-bottom: 6px;
}

.reality-card p {
  font-size: 0.92rem;
  color: var(--text-muted);
}

/* --- Timeline Section --- */
.timeline-container {
  position: relative;
  max-width: 900px;
  margin: 40px auto 0 auto;
  padding: 20px 0;
}

.timeline-line {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 4px;
  background: linear-gradient(to bottom, var(--accent-color) 0%, var(--secondary-color) 50%, var(--primary-color) 100%);
  transform: translateX(-50%);
  border-radius: 2px;
}

.timeline-item {
  position: relative;
  width: 50%;
  padding: 20px 40px;
  box-sizing: border-box;
}

.timeline-item:nth-child(odd) {
  left: 0;
  text-align: right;
}

.timeline-item:nth-child(even) {
  left: 50%;
  text-align: left;
}

.timeline-badge {
  position: absolute;
  top: 30px;
  width: 32px;
  height: 32px;
  background-color: var(--bg-white);
  border: 4px solid var(--secondary-color);
  border-radius: 50%;
  z-index: 10;
  transition: var(--transition-normal);
}

.timeline-item:nth-child(odd) .timeline-badge {
  right: -16px;
}

.timeline-item:nth-child(even) .timeline-badge {
  left: -16px;
}

.timeline-item:hover .timeline-badge {
  background-color: var(--secondary-color);
  box-shadow: 0 0 12px var(--secondary-color);
  transform: scale(1.2);
}

.timeline-content {
  background-color: var(--bg-white);
  padding: 30px;
  border-radius: var(--border-radius-md);
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(19, 64, 116, 0.05);
  transition: var(--transition-normal);
  position: relative;
}

.timeline-content:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(0, 180, 216, 0.2);
}

.timeline-year {
  display: inline-block;
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--secondary-color);
  margin-bottom: 10px;
  padding: 2px 12px;
  background-color: var(--accent-color);
  border-radius: 6px;
}

.timeline-item:nth-child(odd) .timeline-year {
  float: right;
}
.timeline-item:nth-child(even) .timeline-year {
  float: left;
}

.timeline-content h4 {
  font-size: 1.25rem;
  margin-top: 48px;
  margin-bottom: 12px;
  clear: both;
}

.timeline-content p {
  font-size: 0.95rem;
  color: var(--text-medium);
}

/* --- Curriculum Section --- */
.curriculum-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
  margin-top: 20px;
}

.curriculum-card {
  background-color: var(--bg-white);
  border-radius: var(--border-radius-md);
  padding: 36px 30px;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(19, 64, 116, 0.04);
  transition: var(--transition-normal);
  position: relative;
  overflow: hidden;
}

.curriculum-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--secondary-color), var(--primary-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: var(--transition-normal);
}

.curriculum-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(19, 64, 116, 0.08);
}

.curriculum-card:hover::after {
  transform: scaleX(1);
}

.curriculum-icon-container {
  width: 60px;
  height: 60px;
  border-radius: 16px;
  background-color: var(--accent-color);
  color: var(--primary-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  transition: var(--transition-normal);
}

.curriculum-card:hover .curriculum-icon-container {
  background-color: var(--secondary-color);
  color: var(--bg-white);
  transform: rotate(5deg) scale(1.05);
}

.curriculum-card h3 {
  font-size: 1.3rem;
  margin-bottom: 12px;
  font-weight: 700;
}

.curriculum-card p {
  font-size: 0.95rem;
  color: var(--text-medium);
}

/* Highlight / Special Card in Curriculum */
.curriculum-card.highlighted {
  background: linear-gradient(145deg, #071930 0%, #0b2545 100%);
  color: var(--text-light);
  border: 1px solid rgba(0, 180, 216, 0.2);
}

.curriculum-card.highlighted h3 {
  color: var(--text-light);
}

.curriculum-card.highlighted p {
  color: #cbd5e1;
}

.curriculum-card.highlighted .curriculum-icon-container {
  background-color: rgba(0, 180, 216, 0.15);
  color: var(--secondary-color);
}

.curriculum-card.highlighted:hover .curriculum-icon-container {
  background-color: var(--secondary-color);
  color: var(--primary-color);
}

.card-badge-live {
  position: absolute;
  top: 20px;
  right: 20px;
  background-color: #ef4444;
  color: white;
  padding: 4px 10px;
  border-radius: var(--border-radius-full);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  display: flex;
  align-items: center;
  gap: 4px;
  animation: pulseRed 2s infinite;
}

.card-badge-live span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: white;
}

/* --- Call to Action Grid Section --- */
.cta-banner {
  background: linear-gradient(135deg, #071930 0%, #0b2545 100%);
  border-radius: var(--border-radius-lg);
  padding: 60px 48px;
  color: var(--text-light);
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0,180,216,0.15) 0%, rgba(255,255,255,0) 70%);
  pointer-events: none;
}

.cta-banner h2 {
  font-size: 2.2rem;
  color: var(--text-light);
  margin-bottom: 16px;
}

.cta-banner p {
  color: #cbd5e1;
  max-width: 600px;
  margin: 0 auto 36px auto;
  font-size: 1.05rem;
}

.cta-banner .btn {
  box-shadow: 0 10px 25px rgba(0, 180, 216, 0.4);
}

/* --- FAQs Section --- */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  background-color: var(--bg-white);
  border-radius: var(--border-radius-md);
  border: 1px solid rgba(19, 64, 116, 0.06);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: var(--transition-normal);
}

.faq-item:hover {
  border-color: rgba(19, 64, 116, 0.15);
  box-shadow: var(--shadow-md);
}

.faq-question {
  padding: 24px 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  user-select: none;
}

.faq-question h4 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--primary-color);
  padding-right: 20px;
}

.faq-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background-color: var(--accent-color);
  color: var(--primary-light);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: var(--transition-normal);
}

.faq-icon svg {
  width: 14px;
  height: 14px;
  transition: var(--transition-normal);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-normal) cubic-bezier(0, 1, 0, 1);
  background-color: #fafbfc;
}

.faq-answer-content {
  padding: 0 30px 24px 30px;
  font-size: 0.95rem;
  color: var(--text-medium);
  border-top: 1px solid rgba(19, 64, 116, 0.03);
}

/* FAQ Active State */
.faq-item.active {
  border-color: rgba(0, 180, 216, 0.2);
}

.faq-item.active .faq-question {
  background-color: #fafbfc;
}

.faq-item.active .faq-icon {
  background-color: var(--secondary-color);
  color: var(--bg-white);
  transform: rotate(180deg);
}

.faq-item.active .faq-answer {
  max-height: 1000px; /* arbitrary large value */
  transition: max-height var(--transition-normal) cubic-bezier(1, 0, 1, 0);
}

/* --- Policy Content Page Styles --- */
.policy-page {
  padding-top: 120px;
}

.policy-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 40px 24px 80px 24px;
}

.policy-header {
  margin-bottom: 40px;
  border-bottom: 2px solid var(--accent-color);
  padding-bottom: 24px;
}

.policy-title {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 12px;
}

.policy-meta {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.policy-content section {
  margin-bottom: 36px;
}

.policy-content h2 {
  font-size: 1.4rem;
  margin-bottom: 16px;
  color: var(--primary-color);
}

.policy-content p {
  margin-bottom: 16px;
  font-size: 1rem;
  color: var(--text-medium);
}

.policy-content ul {
  list-style-type: disc;
  padding-left: 20px;
  margin-bottom: 20px;
  color: var(--text-medium);
}

.policy-content li {
  margin-bottom: 8px;
}

.alert-box {
  background-color: #fffbeb;
  border-left: 4px solid #f59e0b;
  padding: 16px 20px;
  border-radius: 0 var(--border-radius-sm) var(--border-radius-sm) 0;
  margin: 24px 0;
}

.alert-box.danger {
  background-color: #fef2f2;
  border-color: #ef4444;
}

.alert-title {
  font-weight: 700;
  margin-bottom: 6px;
  display: block;
}

.alert-box.danger .alert-title {
  color: #991b1b;
}

.alert-box.danger p {
  color: #b91c1c;
  margin-bottom: 0;
  font-size: 0.95rem;
}

/* --- Footer --- */
.footer {
  background-color: var(--bg-dark);
  color: var(--text-light);
  padding: 80px 0 30px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1.25fr;
  gap: 60px;
  margin-bottom: 60px;
}

.footer-about h3 {
  font-size: 1.4rem;
  color: var(--bg-white);
  margin-bottom: 20px;
}

.footer-about h3 span {
  color: var(--secondary-color);
}

.footer-about p {
  color: #94a3b8;
  margin-bottom: 24px;
  font-size: 0.95rem;
  max-width: 320px;
}

.footer-links-col h4 {
  color: var(--bg-white);
  font-size: 1.05rem;
  margin-bottom: 20px;
}

.footer-links-col ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links-col a {
  color: #94a3b8;
  font-size: 0.95rem;
}

.footer-links-col a:hover {
  color: var(--secondary-color);
  padding-left: 4px;
}

.footer-contact h4 {
  color: var(--bg-white);
  font-size: 1.05rem;
  margin-bottom: 20px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
  color: #94a3b8;
  font-size: 0.95rem;
}

.contact-item svg {
  color: var(--secondary-color);
  margin-top: 3px;
  flex-shrink: 0;
}

.contact-item a {
  color: var(--secondary-color);
  font-weight: 600;
}

.contact-item a:hover {
  text-decoration: underline;
}

.footer-bottom {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 30px 24px 0 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-copy {
  font-size: 0.85rem;
  color: #64748b;
}

.footer-legal-links {
  display: flex;
  gap: 24px;
}

.footer-legal-links a {
  font-size: 0.85rem;
  color: #64748b;
}

.footer-legal-links a:hover {
  color: var(--secondary-color);
}

/* --- Scroll Animations --- */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* --- Keyframe Animations --- */
@keyframes float {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
  100% { transform: translateY(0px); }
}

@keyframes growBar {
  from { height: 0; }
}

@keyframes pulseRed {
  0% { box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.4); }
  70% { box-shadow: 0 0 0 8px rgba(239, 68, 68, 0); }
  100% { box-shadow: 0 0 0 0 rgba(239, 68, 68, 0); }
}

/* --- Responsive Adjustments --- */
@media (max-width: 1024px) {
  .hero-container {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  
  .hero-badge, .hero-desc, .hero-features {
    margin-left: auto;
    margin-right: auto;
  }
  
  .hero-ctas {
    justify-content: center;
  }
  
  .hero-features {
    justify-content: center;
  }
  
  .hero-visual {
    margin-top: 20px;
  }
  
  .split-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .problem-content {
    padding-right: 0;
  }
}

@media (max-width: 768px) {
  h1 { font-size: 2.8rem; }
  h2 { font-size: 2rem; }
  
  .navbar {
    height: 70px;
  }
  
  .menu-toggle {
    display: flex;
  }
  
  .nav-links {
    position: fixed;
    top: 70px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 70px);
    background-color: var(--bg-white);
    flex-direction: column;
    padding: 40px 24px;
    gap: 24px;
    transition: var(--transition-normal);
    box-shadow: 0 10px 15px rgba(0,0,0,0.05);
    align-items: flex-start;
  }
  
  .nav-links.active {
    left: 0;
  }
  
  .nav-cta {
    width: 100%;
    text-align: center;
  }
  
  .hero-title {
    font-size: 2.5rem;
  }
  
  .timeline-line {
    left: 24px;
  }
  
  .timeline-item {
    width: 100%;
    padding-left: 60px;
    padding-right: 0;
    text-align: left !important;
  }
  
  .timeline-item:nth-child(even) {
    left: 0;
  }
  
  .timeline-badge {
    left: 8px !important;
    right: auto !important;
  }
  
  .timeline-item:nth-child(odd) .timeline-year {
    float: left;
  }
  
  .footer-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}
