/* ============================================
   ExamGO v3 — CARTOON & PLAYFUL Design
   Bright, fun, unique — NOT like competitors
   ============================================ */

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

:root {
  /* Bright playful palette */
  --bg-body: #eefbf3;
  --bg-white: #ffffff;
  --bg-green-soft: #d4f5e2;
  --bg-green-light: #e8faf0;
  --bg-hero: linear-gradient(135deg, #d4f5e2 0%, #e8faf0 40%, #f0faf4 100%);

  --green-primary: #2ecc71;
  --green-bright: #27ae60;
  --green-dark: #1e8c4d;
  --green-deep: #166b3a;
  --green-pale: #a3ebc2;
  --neon: #00e676;

  --accent-yellow: #FFD93D;
  --accent-orange: #FF8C42;
  --accent-blue: #42C6FF;
  --accent-pink: #FF6B9D;
  --accent-purple: #A855F7;

  --text-dark: #0f3d24;
  --text-body: #1a5c38;
  --text-secondary: #3d8c61;
  --text-muted: #6aad85;
  --text-light: #9accb1;
  --text-white: #ffffff;

  --card-bg: rgba(255, 255, 255, 0.85);
  --card-border: rgba(46, 204, 113, 0.2);
  --card-border-hover: rgba(46, 204, 113, 0.5);
  --card-shadow: 0 4px 20px rgba(46, 204, 113, 0.1);
  --card-shadow-hover: 0 8px 32px rgba(46, 204, 113, 0.2);

  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Nunito', sans-serif;

  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: 3rem;
  --space-3xl: 4.5rem;
  --space-4xl: 6rem;
  --space-5xl: 8rem;

  --radius-sm: 12px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --radius-full: 9999px;

  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-fast: 0.15s ease;
  --transition-spring: 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);

  --container-max: 1240px;
  --container-pad: 1.5rem;
}

/* Reset */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

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

/* Fun background shapes */
body::before {
  content: '';
  position: fixed; inset: 0;
  background:
    radial-gradient(circle 300px at 10% 20%, rgba(46, 204, 113, 0.08) 0%, transparent 100%),
    radial-gradient(circle 400px at 90% 60%, rgba(255, 217, 61, 0.06) 0%, transparent 100%),
    radial-gradient(circle 350px at 50% 80%, rgba(66, 198, 255, 0.05) 0%, transparent 100%);
  pointer-events: none; z-index: -1;
}

a { color: var(--green-primary); text-decoration: none; transition: color var(--transition-fast); }
a:hover { color: var(--green-dark); }
img { max-width: 100%; height: auto; display: block; }
ul, ol { list-style: none; }
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 800;
  line-height: 1.15;
  color: var(--text-dark);
}
.container { max-width: var(--container-max); margin: 0 auto; padding: 0 var(--container-pad); }

/* Gradient texts */
.gradient-text {
  background: linear-gradient(135deg, var(--green-primary) 0%, var(--neon) 50%, var(--green-bright) 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.gradient-text-gold {
  background: linear-gradient(135deg, var(--accent-yellow), var(--accent-orange));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}

/* ============================================
   NAVIGATION — Bright floating bar
   ============================================ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: var(--space-md) 0; transition: all var(--transition);
}
.nav.scrolled {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.06);
  padding: var(--space-sm) 0;
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  max-width: var(--container-max); margin: 0 auto; padding: 0 var(--container-pad);
}
.nav-logo {
  display: flex; align-items: center; gap: 10px; text-decoration: none;
}
.nav-logo img { width: 44px; height: 44px; border-radius: 50%; }
.nav-logo span {
  font-family: var(--font-heading); font-weight: 900; font-size: 1.7rem;
  background: linear-gradient(135deg, var(--green-primary), var(--green-dark));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}

.nav-links { display: flex; align-items: center; gap: var(--space-xl); }
.nav-links a {
  color: var(--text-secondary); font-weight: 700; font-size: 0.92rem;
  padding: 6px 0; position: relative; transition: color var(--transition);
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -2px; left: 0; right: 0;
  height: 3px; background: var(--green-primary); border-radius: 3px;
  transform: scaleX(0); transition: transform var(--transition);
}
.nav-links a:hover { color: var(--green-primary); }
.nav-links a:hover::after { transform: scaleX(1); }

.nav-cta {
  background: var(--green-primary); color: var(--text-white) !important;
  padding: 10px 24px; border-radius: var(--radius-full);
  font-weight: 800; font-size: 0.88rem;
  transition: all var(--transition); border: none;
  box-shadow: 0 4px 15px rgba(46, 204, 113, 0.3);
}
.nav-cta:hover { background: var(--green-dark); transform: translateY(-2px); box-shadow: 0 6px 25px rgba(46, 204, 113, 0.4); }
.nav-cta::after { display: none !important; }

.nav-burger {
  display: none; flex-direction: column; gap: 5px; cursor: pointer;
  padding: 5px; background: none; border: none;
}
.nav-burger span { display: block; width: 24px; height: 2.5px; background: var(--text-dark); transition: all var(--transition); border-radius: 3px; }
.nav-burger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-burger.active span:nth-child(2) { opacity: 0; }
.nav-burger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ============================================
   HERO — Bright gradient + cartoon dino
   ============================================ */
.hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center;
  padding: 140px 0 100px; overflow: hidden;
  background: var(--bg-hero);
}
/* Decorative blobs */
.hero::before {
  content: ''; position: absolute; top: -15%; right: -10%;
  width: 600px; height: 600px; border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 217, 61, 0.15) 0%, transparent 60%);
  animation: blobFloat 15s ease-in-out infinite;
}
.hero::after {
  content: ''; position: absolute; bottom: -20%; left: -5%;
  width: 500px; height: 500px; border-radius: 50%;
  background: radial-gradient(circle, rgba(66, 198, 255, 0.1) 0%, transparent 60%);
  animation: blobFloat 12s ease-in-out infinite reverse;
}
@keyframes blobFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(20px, -30px) scale(1.05); }
  66% { transform: translate(-15px, 15px) scale(0.95); }
}

/* Hide classroom bg in bright theme */
.hero-bg { display: none; }

.hero-content {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: 1.1fr 0.9fr;
  gap: var(--space-3xl); align-items: center;
}

.hero-text { animation: heroSlideIn 0.8s ease-out; }
@keyframes heroSlideIn {
  from { opacity: 0; transform: translateX(-40px); }
  to { opacity: 1; transform: translateX(0); }
}

/* Badge hidden */
.hero-badge { display: none; }

.hero h1 {
  font-size: clamp(2.8rem, 5.5vw, 4.2rem);
  font-weight: 900; line-height: 1.08;
  margin-bottom: var(--space-lg); letter-spacing: -1px;
  color: var(--text-dark);
}

.hero-subtitle {
  font-size: 1.15rem; color: var(--text-secondary);
  margin-bottom: var(--space-2xl); max-width: 500px; line-height: 1.8;
  font-weight: 600;
}

.hero-actions { display: flex; gap: var(--space-md); flex-wrap: wrap; }

/* Dino wrapper — fun bouncy animation */
.hero-dino-wrapper {
  position: relative; display: flex; justify-content: center; align-items: center;
  animation: heroPopIn 0.8s var(--transition-spring) 0.3s both;
}
@keyframes heroPopIn {
  from { opacity: 0; transform: scale(0.5) rotate(-10deg); }
  to { opacity: 1; transform: scale(1) rotate(0deg); }
}

.dino-glow {
  position: absolute; width: 350px; height: 350px; border-radius: 50%;
  background: radial-gradient(circle, rgba(46, 204, 113, 0.15) 0%, transparent 60%);
  animation: glowPulse 4s ease-in-out infinite;
}
@keyframes glowPulse {
  0%, 100% { transform: scale(1); opacity: 0.5; }
  50% { transform: scale(1.1); opacity: 1; }
}

/* Dino character image */
.dino-character {
  position: relative; z-index: 2;
  max-width: 340px; width: 100%;
  border-radius: 50%;
  border: 4px solid var(--green-pale);
  box-shadow: 0 15px 40px rgba(46, 204, 113, 0.25);
  animation: dinoFloat 3s ease-in-out infinite;
  background: var(--bg-green-soft);
}
@keyframes dinoFloat {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  20% { transform: translateY(-10px) rotate(1.5deg); }
  40% { transform: translateY(-5px) rotate(-0.5deg); }
  60% { transform: translateY(-14px) rotate(0.8deg); }
  80% { transform: translateY(-7px) rotate(-1deg); }
}

/* ============================================
   ANIMATED SVG DINO (fallback)
   ============================================ */
.dino-scene {
  position: relative; z-index: 2;
  width: 320px; height: 350px;
}
.dino-svg {
  width: 100%; height: 100%;
  filter: drop-shadow(0 10px 25px rgba(46, 204, 113, 0.25));
}

/* Body bounce */
.dino-svg .dino-body {
  animation: bodyBounce 2.5s ease-in-out infinite;
  transform-origin: 150px 280px;
}
@keyframes bodyBounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-5px); }
}

/* Head tilt */
.dino-svg .dino-head {
  animation: headTilt 3s ease-in-out infinite;
  transform-origin: 150px 160px;
}
@keyframes headTilt {
  0%, 100% { transform: rotate(0deg) translateY(0); }
  25% { transform: rotate(2deg) translateY(-3px); }
  75% { transform: rotate(-1deg) translateY(-1px); }
}

/* Right arm waving */
.dino-svg .dino-arm-r {
  animation: armWave 1.2s ease-in-out infinite;
  transform-origin: 197px 220px;
}
@keyframes armWave {
  0%, 100% { transform: rotate(0deg); }
  25% { transform: rotate(-25deg); }
  50% { transform: rotate(5deg); }
  75% { transform: rotate(-20deg); }
}

/* Left arm slight movement */
.dino-svg .dino-arm-l {
  animation: armLeft 3s ease-in-out infinite;
  transform-origin: 94px 210px;
}
@keyframes armLeft {
  0%, 100% { transform: rotate(0deg); }
  50% { transform: rotate(5deg); }
}

/* Tail wagging */
.dino-svg .dino-tail {
  animation: tailWag 1.5s ease-in-out infinite;
  transform-origin: 80px 220px;
}
@keyframes tailWag {
  0%, 100% { transform: rotate(0deg); }
  25% { transform: rotate(-8deg); }
  75% { transform: rotate(8deg); }
}

/* Left leg bounce */
.dino-svg .dino-leg-l {
  animation: legBounceL 2.5s ease-in-out infinite;
}
@keyframes legBounceL {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-3px); }
}

/* Right leg bounce (offset) */
.dino-svg .dino-leg-r {
  animation: legBounceR 2.5s ease-in-out infinite 0.3s;
}
@keyframes legBounceR {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-3px); }
}

/* Eye blinking */
.dino-svg .dino-eyelid-l,
.dino-svg .dino-eyelid-r {
  animation: blink 4s ease-in-out infinite;
}
@keyframes blink {
  0%, 42%, 50%, 100% { ry: 0; }
  45%, 47% { ry: 19; }
}

/* Pupils looking around */
.dino-svg .dino-pupil {
  animation: lookAround 5s ease-in-out infinite;
}
@keyframes lookAround {
  0%, 100% { transform: translateX(0); }
  20% { transform: translateX(3px); }
  40% { transform: translateX(-2px); }
  60% { transform: translateX(1px); }
  80% { transform: translateX(-1px); }
}

/* Graduation cap */
.dino-svg .dino-cap {
  animation: headTilt 3s ease-in-out infinite;
  transform-origin: 150px 160px;
}

/* Tassel swinging */
.dino-svg .dino-tassel {
  animation: tasselSwing 2s ease-in-out infinite;
  transform-origin: 192px 86px;
}
@keyframes tasselSwing {
  0%, 100% { transform: rotate(0deg); }
  25% { transform: rotate(8deg); }
  75% { transform: rotate(-5deg); }
}

/* ============================================
   TG SUBSCRIBE CARD
   ============================================ */
.tg-subscribe-card {
  background: var(--card-bg);
  border: 3px solid var(--green-primary);
  border-radius: var(--radius-xl);
  padding: var(--space-2xl);
  max-width: 700px;
  margin: 0 auto;
  box-shadow: 0 8px 40px rgba(46, 204, 113, 0.15);
  position: relative;
  overflow: hidden;
}
.tg-subscribe-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 5px;
  background: linear-gradient(90deg, var(--green-primary), var(--accent-yellow), var(--accent-blue), var(--green-primary));
  background-size: 200% 100%;
  animation: gradientSlide 3s ease-in-out infinite;
}
@keyframes gradientSlide {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}
.tg-subscribe-content {
  display: flex; gap: var(--space-xl); align-items: flex-start;
}
.tg-subscribe-icon {
  font-size: 3.5rem; flex-shrink: 0;
  animation: floatBounce 3s ease-in-out infinite;
}
.tg-subscribe-info h3 {
  font-size: 1.6rem; color: var(--green-primary);
  margin-bottom: var(--space-sm);
}
.tg-subscribe-info > p {
  color: var(--text-secondary); font-weight: 600;
  margin-bottom: var(--space-lg); font-size: 0.95rem;
}
.tg-features {
  list-style: none; padding: 0; margin: 0 0 var(--space-md);
}
.tg-features li {
  padding: 6px 0; font-size: 0.92rem;
  color: var(--text-secondary); font-weight: 600;
}

.floating-items { position: absolute; inset: -30px; z-index: 3; pointer-events: none; }
.floating-item {
  position: absolute; font-size: 2rem;
  animation: floatBounce 5s ease-in-out infinite;
  filter: drop-shadow(0 3px 6px rgba(0,0,0,0.15));
}
.floating-item:nth-child(1) { top: 2%; left: 8%; animation-delay: 0s; }
.floating-item:nth-child(2) { top: 10%; right: 5%; animation-delay: 0.7s; }
.floating-item:nth-child(3) { bottom: 25%; left: -5%; animation-delay: 1.4s; }
.floating-item:nth-child(4) { bottom: 8%; right: 8%; animation-delay: 0.3s; }
.floating-item:nth-child(5) { top: 45%; left: -12%; animation-delay: 2s; }
.floating-item:nth-child(6) { top: 55%; right: -8%; animation-delay: 1s; }
.floating-item:nth-child(7) { bottom: 40%; right: 20%; animation-delay: 2.5s; font-size: 1.5rem; }
.floating-item:nth-child(8) { top: -8%; left: 45%; animation-delay: 1.8s; }

@keyframes floatBounce {
  0%, 100% { transform: translateY(0) rotate(0deg) scale(1); }
  25% { transform: translateY(-18px) rotate(10deg) scale(1.1); }
  50% { transform: translateY(-8px) rotate(-5deg) scale(0.95); }
  75% { transform: translateY(-14px) rotate(5deg) scale(1.05); }
}

/* ============================================
   BUTTONS — Rounded & playful
   ============================================ */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 8px; padding: 14px 28px; border-radius: var(--radius-full);
  font-family: var(--font-body); font-weight: 800; font-size: 0.95rem;
  cursor: pointer; border: none; transition: all var(--transition);
  text-decoration: none; white-space: nowrap; position: relative;
}
.btn-primary {
  background: var(--green-primary); color: var(--text-white);
  box-shadow: 0 6px 20px rgba(46, 204, 113, 0.35);
}
.btn-primary:hover {
  background: var(--green-dark); transform: translateY(-4px) scale(1.02);
  box-shadow: 0 10px 30px rgba(46, 204, 113, 0.4); color: var(--text-white);
}

.btn-secondary {
  background: var(--bg-white); color: var(--green-primary);
  border: 2px solid var(--card-border);
  box-shadow: 0 2px 10px rgba(0,0,0,0.04);
}
.btn-secondary:hover {
  border-color: var(--green-primary); background: var(--bg-green-light);
  transform: translateY(-3px); color: var(--green-dark);
}

.btn-large { padding: 16px 36px; font-size: 1.05rem; }
.btn-glow { /* No glow in bright theme */ }

/* ============================================
   SECTIONS
   ============================================ */
.section { padding: var(--space-5xl) 0; position: relative; }

.section-header { text-align: center; margin-bottom: var(--space-3xl); }
.section-header h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem); margin-bottom: var(--space-md);
  letter-spacing: -0.5px;
}
.section-header h2::after {
  content: '🦖'; display: block; font-size: 1.5rem;
  margin-top: var(--space-sm);
}
.section-header p { color: var(--text-secondary); font-size: 1.05rem; max-width: 560px; margin: 0 auto; font-weight: 600; }

/* ============================================
   SUBJECT CARDS — Colorful bouncy cards
   ============================================ */
.subjects-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: var(--space-lg);
}
.subject-card {
  position: relative; display: block; text-decoration: none;
  background: var(--card-bg); border: 2px solid var(--card-border);
  border-radius: var(--radius-lg); padding: var(--space-xl) var(--space-lg);
  transition: all var(--transition-spring); overflow: hidden;
  backdrop-filter: blur(10px); color: var(--text-body);
}
.subject-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, var(--green-primary), var(--accent-yellow), var(--accent-blue));
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  opacity: 0; transition: opacity var(--transition);
}
.subject-card:hover {
  transform: translateY(-8px) scale(1.02);
  border-color: var(--green-primary);
  box-shadow: var(--card-shadow-hover);
  color: var(--text-body);
}
.subject-card:hover::before { opacity: 1; }

.subject-icon {
  width: 56px; height: 56px; border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem; margin-bottom: var(--space-md);
  background: var(--bg-green-light); border: 2px solid var(--card-border);
}
.subject-card h3 { font-size: 1.1rem; font-weight: 800; margin-bottom: 6px; color: var(--text-dark); }
.subject-card p { color: var(--text-secondary); font-size: 0.88rem; line-height: 1.5; font-weight: 600; }

.exam-date {
  display: inline-flex; align-items: center; gap: 6px;
  margin-top: var(--space-md); font-size: 0.78rem; font-weight: 800;
  color: var(--green-dark); background: var(--bg-green-soft);
  padding: 6px 14px; border-radius: var(--radius-full);
  border: 1px solid var(--card-border);
}

/* ============================================
   STATS BAR — Fun colored counters
   ============================================ */
.stats-bar {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: var(--space-md); padding: var(--space-2xl);
  background: var(--card-bg); border: 2px solid var(--card-border);
  border-radius: var(--radius-xl);
  box-shadow: var(--card-shadow);
  margin-top: var(--space-3xl);
}
.stat-item { text-align: center; }
.stat-number {
  font-family: var(--font-heading); font-weight: 900;
  font-size: clamp(1.6rem, 3vw, 2.5rem);
  color: var(--green-primary);
}
.stat-label { color: var(--text-muted); font-size: 0.82rem; margin-top: 4px; font-weight: 700; }

/* ============================================
   HOW IT WORKS
   ============================================ */
.steps-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: var(--space-2xl); position: relative;
}
.steps-grid::before {
  content: ''; position: absolute; top: 42px; left: 16%; right: 16%;
  height: 3px; background: linear-gradient(90deg, var(--green-pale), var(--green-primary), var(--green-pale));
  border-radius: 3px;
}
.step { text-align: center; position: relative; }
.step-number {
  width: 64px; height: 64px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: var(--green-primary); color: var(--text-white);
  font-family: var(--font-heading); font-weight: 900; font-size: 1.5rem;
  margin: 0 auto var(--space-lg); z-index: 1; position: relative;
  box-shadow: 0 6px 20px rgba(46, 204, 113, 0.3);
}
.step h3 { font-size: 1.1rem; margin-bottom: var(--space-sm); color: var(--text-dark); }
.step p { color: var(--text-secondary); font-size: 0.92rem; font-weight: 600; }

/* ============================================
   SCHEDULE TABLE
   ============================================ */
.schedule-tabs { display: flex; gap: var(--space-sm); justify-content: center; margin-bottom: var(--space-2xl); }
.schedule-tab {
  padding: 10px 24px; border-radius: var(--radius-full);
  font-family: var(--font-body); font-weight: 800; font-size: 0.92rem;
  cursor: pointer; border: 2px solid var(--card-border);
  background: var(--bg-white); color: var(--text-secondary); transition: all var(--transition);
}
.schedule-tab.active, .schedule-tab:hover {
  background: var(--green-primary); color: var(--text-white); border-color: var(--green-primary);
}

.schedule-table {
  width: 100%; border-collapse: separate; border-spacing: 0;
  background: var(--card-bg); border: 2px solid var(--card-border);
  border-radius: var(--radius-lg); overflow: hidden;
}
.schedule-table thead { background: var(--bg-green-light); }
.schedule-table th {
  padding: var(--space-md) var(--space-lg); text-align: left;
  font-weight: 800; font-size: 0.82rem; color: var(--green-dark);
  text-transform: uppercase; letter-spacing: 1px;
}
.schedule-table td {
  padding: var(--space-md) var(--space-lg); border-top: 1px solid var(--card-border);
  font-size: 0.92rem; font-weight: 600;
}
.schedule-table tr:hover td { background: var(--bg-green-light); }
.date-badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--bg-green-soft); padding: 5px 14px;
  border-radius: var(--radius-full); font-weight: 800; font-size: 0.82rem;
  color: var(--green-dark); border: 1px solid var(--card-border);
}

/* ============================================
   PRICING
   ============================================ */
.pricing-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-xl); max-width: 900px; margin: 0 auto;
}
.pricing-card {
  position: relative; background: var(--card-bg);
  border: 2px solid var(--card-border); border-radius: var(--radius-xl);
  padding: var(--space-2xl) var(--space-xl); text-align: center;
  transition: all var(--transition); overflow: hidden;
}
.pricing-card.featured {
  border-color: var(--green-primary); border-width: 3px;
  background: linear-gradient(180deg, var(--bg-green-light) 0%, var(--bg-white) 100%);
  transform: scale(1.04);
}
.pricing-card.featured::before {
  content: '🔥 Популярный'; position: absolute; top: 18px; right: -32px;
  background: var(--green-primary); color: var(--text-white);
  font-size: 0.72rem; font-weight: 900;
  padding: 5px 44px; transform: rotate(45deg);
  text-transform: uppercase;
}
.pricing-card:hover { transform: translateY(-6px); box-shadow: var(--card-shadow-hover); }
.pricing-card.featured:hover { transform: scale(1.04) translateY(-6px); }

.pricing-card h3 { font-size: 1.2rem; margin-bottom: var(--space-md); }
.pricing-price {
  font-family: var(--font-heading); font-size: 3.2rem;
  font-weight: 900; margin-bottom: var(--space-sm); color: var(--text-dark);
}
.pricing-price .currency { font-size: 1.4rem; color: var(--text-muted); }
.pricing-period { color: var(--text-muted); font-size: 0.88rem; margin-bottom: var(--space-xl); font-weight: 700; }
.pricing-features { text-align: left; margin-bottom: var(--space-xl); }
.pricing-features li {
  display: flex; align-items: center; gap: 10px;
  padding: 8px 0; color: var(--text-secondary); font-size: 0.92rem; font-weight: 600;
}
.pricing-features li::before {
  content: '✅'; font-size: 0.85rem; flex-shrink: 0;
}

/* ============================================
   REVIEWS
   ============================================ */
.reviews-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: var(--space-lg);
}
.review-card {
  background: var(--card-bg); border: 2px solid var(--card-border);
  border-radius: var(--radius-lg); padding: var(--space-xl);
  transition: all var(--transition); position: relative;
}
.review-card::before {
  content: '💬'; position: absolute; top: 16px; right: 20px; font-size: 2rem; opacity: 0.3;
}
.review-card:hover { border-color: var(--green-primary); transform: translateY(-4px); box-shadow: var(--card-shadow-hover); }
.review-stars { color: var(--accent-yellow); font-size: 1.1rem; margin-bottom: var(--space-md); letter-spacing: 3px; }
.review-text { color: var(--text-secondary); font-size: 0.92rem; line-height: 1.8; margin-bottom: var(--space-lg); font-weight: 600; }
.review-author { display: flex; align-items: center; gap: var(--space-md); }
.review-avatar {
  width: 46px; height: 46px; border-radius: 50%;
  background: linear-gradient(135deg, var(--green-primary), var(--green-bright));
  display: flex; align-items: center; justify-content: center;
  color: var(--text-white); font-weight: 900; font-size: 1.2rem;
}
.review-info strong { display: block; font-size: 0.92rem; color: var(--text-dark); font-weight: 800; }
.review-info span { color: var(--text-muted); font-size: 0.78rem; font-weight: 700; }

/* ============================================
   FAQ
   ============================================ */
.faq-list {
  max-width: 800px; margin: 0 auto;
  display: flex; flex-direction: column; gap: var(--space-sm);
}
.faq-item {
  background: var(--card-bg); border: 2px solid var(--card-border);
  border-radius: var(--radius-md); overflow: hidden;
  transition: all var(--transition);
}
.faq-item.active { border-color: var(--green-primary); }
.faq-question {
  width: 100%; padding: var(--space-lg) var(--space-xl);
  background: none; border: none; color: var(--text-dark);
  font-family: var(--font-body); font-size: 0.98rem; font-weight: 700;
  text-align: left; cursor: pointer;
  display: flex; justify-content: space-between; align-items: center; gap: var(--space-md);
  transition: color var(--transition-fast);
}
.faq-question:hover { color: var(--green-primary); }
.faq-icon {
  font-size: 1.2rem; transition: transform var(--transition);
  color: var(--green-primary); flex-shrink: 0;
  width: 30px; height: 30px; display: flex; align-items: center; justify-content: center;
  background: var(--bg-green-light); border-radius: 50%; font-weight: 900;
}
.faq-item.active .faq-icon { transform: rotate(45deg); background: var(--green-primary); color: var(--text-white); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.5s ease; }
.faq-answer-inner {
  padding: 0 var(--space-xl) var(--space-lg);
  color: var(--text-secondary); line-height: 1.8; font-size: 0.92rem; font-weight: 600;
}

/* ============================================
   COUNTDOWN
   ============================================ */
.countdown { display: flex; gap: var(--space-md); flex-wrap: wrap; margin-top: var(--space-xl); }
.countdown-item {
  background: var(--card-bg); border: 2px solid var(--card-border);
  border-radius: var(--radius-md); padding: var(--space-md) var(--space-lg);
  text-align: center; min-width: 80px; box-shadow: var(--card-shadow);
}
.countdown-number {
  font-family: var(--font-heading); font-size: 2.2rem; font-weight: 900;
  color: var(--green-primary); line-height: 1;
}
.countdown-label {
  font-size: 0.72rem; color: var(--text-muted);
  text-transform: uppercase; letter-spacing: 1.5px; margin-top: 4px; font-weight: 800;
}

/* ============================================
   REGIONS
   ============================================ */
.regions-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: var(--space-md);
}
.region-card {
  display: flex; align-items: center; gap: var(--space-md);
  padding: var(--space-md) var(--space-lg);
  background: var(--card-bg); border: 2px solid var(--card-border);
  border-radius: var(--radius-md); transition: all var(--transition);
  text-decoration: none; color: var(--text-body);
}
.region-card:hover { border-color: var(--green-primary); transform: translateY(-2px); background: var(--bg-green-light); color: var(--text-dark); }
.region-code {
  background: var(--bg-green-soft); color: var(--green-dark);
  font-family: var(--font-heading); font-weight: 900;
  padding: 4px 10px; border-radius: var(--radius-sm); font-size: 0.82rem;
}
.region-card span:last-child { font-size: 0.88rem; font-weight: 700; }

/* ============================================
   CTA SECTION
   ============================================ */
.tg-cta {
  position: relative; padding: var(--space-3xl); text-align: center;
  border-radius: var(--radius-xl); overflow: hidden;
  background: linear-gradient(135deg, var(--green-primary), var(--green-dark));
  color: var(--text-white);
}
.tg-cta::before {
  content: '🦖'; position: absolute; top: 20px; left: 30px; font-size: 3rem; opacity: 0.2;
  animation: dinoWave 3s ease-in-out infinite;
}
.tg-cta h2 { font-size: clamp(1.5rem, 3vw, 2.2rem); margin-bottom: var(--space-md); position: relative; color: var(--text-white); }
.tg-cta h2::after { display: none; }
.tg-cta p { color: rgba(255,255,255,0.85); max-width: 500px; margin: 0 auto var(--space-xl); position: relative; font-weight: 600; }
.tg-cta .btn-primary { background: var(--text-white); color: var(--green-dark); }
.tg-cta .btn-primary:hover { background: var(--accent-yellow); color: var(--text-dark); }

/* ============================================
   BREADCRUMBS
   ============================================ */
.breadcrumbs { padding: 100px 0 var(--space-md); }
.breadcrumbs ol { display: flex; align-items: center; gap: var(--space-sm); flex-wrap: wrap; }
.breadcrumbs li { display: flex; align-items: center; gap: var(--space-sm); font-size: 0.82rem; color: var(--text-muted); font-weight: 600; }
.breadcrumbs li a { color: var(--text-secondary); }
.breadcrumbs li a:hover { color: var(--green-primary); }
.breadcrumbs li:last-child { color: var(--text-dark); }
.sep { color: var(--text-light); }

/* ============================================
   CONTENT PAGES
   ============================================ */
.content-page { padding-top: var(--space-xl); }
.content-page h1 { font-size: clamp(2rem, 4vw, 3rem); margin-bottom: var(--space-lg); letter-spacing: -0.5px; }
.content-lead {
  font-size: 1.08rem; color: var(--text-secondary);
  line-height: 1.8; max-width: 800px; margin-bottom: var(--space-2xl); font-weight: 600;
}

.content-grid { display: grid; grid-template-columns: 1fr 340px; gap: var(--space-2xl); align-items: start; }
.content-main { min-width: 0; }

.sidebar { position: sticky; top: 100px; }
.sidebar-card {
  background: var(--card-bg); border: 2px solid var(--card-border);
  border-radius: var(--radius-lg); padding: var(--space-xl);
  margin-bottom: var(--space-lg); box-shadow: var(--card-shadow);
}
.sidebar-card h3 { font-size: 1.05rem; margin-bottom: var(--space-md); padding-bottom: var(--space-md); border-bottom: 2px solid var(--card-border); color: var(--text-dark); }
.sidebar-cta { text-align: center; }
.sidebar-cta .pricing-price { font-size: 2rem; margin: var(--space-md) 0 var(--space-sm); }
.sidebar-cta p { color: var(--text-muted); font-size: 0.82rem; margin-bottom: var(--space-lg); font-weight: 600; }

.info-cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: var(--space-md); margin-bottom: var(--space-2xl); }
.info-card {
  background: var(--card-bg); border: 2px solid var(--card-border);
  border-radius: var(--radius-md); padding: var(--space-lg); box-shadow: var(--card-shadow);
}
.info-card h4 { font-size: 0.78rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: var(--space-sm); font-weight: 800; }
.info-card p { font-size: 1.05rem; font-weight: 800; color: var(--green-primary); }

.subject-detail-section {
  background: var(--card-bg); border: 2px solid var(--card-border);
  border-radius: var(--radius-lg); padding: var(--space-xl);
  margin-bottom: var(--space-xl);
}
.subject-detail-section h2 {
  font-size: 1.2rem; margin-bottom: var(--space-lg);
  padding-bottom: var(--space-md); border-bottom: 2px solid var(--card-border);
  color: var(--text-dark);
}
.subject-detail-section h2::after { display: none; }
.subject-detail-section p, .subject-detail-section li { color: var(--text-secondary); line-height: 1.8; margin-bottom: var(--space-sm); font-weight: 600; }
.subject-detail-section ul { list-style: none; padding: 0; }
.subject-detail-section li::before { content: '✅'; margin-right: var(--space-sm); }

/* ============================================
   FOOTER
   ============================================ */
.footer {
  padding: var(--space-3xl) 0 var(--space-xl);
  border-top: 2px solid var(--card-border);
  margin-top: var(--space-3xl);
  background: var(--bg-white);
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--space-2xl); margin-bottom: var(--space-2xl);
}
.footer-brand { max-width: 300px; }
.footer-brand .nav-logo { margin-bottom: var(--space-md); }
.footer-brand p { color: var(--text-muted); font-size: 0.88rem; line-height: 1.7; font-weight: 600; }
.footer h4 {
  font-size: 0.78rem; text-transform: uppercase; letter-spacing: 1.5px;
  color: var(--text-dark); margin-bottom: var(--space-lg); font-weight: 900;
}
.footer-links li { margin-bottom: 8px; }
.footer-links a { color: var(--text-secondary); font-size: 0.88rem; font-weight: 600; }
.footer-links a:hover { color: var(--green-primary); }

.footer-bottom {
  padding-top: var(--space-xl); border-top: 2px solid var(--card-border);
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: var(--space-md);
}
.footer-bottom p { color: var(--text-muted); font-size: 0.82rem; font-weight: 600; }
.footer-socials { display: flex; gap: var(--space-md); }
.footer-socials a {
  width: 42px; height: 42px; display: flex; align-items: center; justify-content: center;
  border-radius: 50%; background: var(--bg-green-light);
  border: 2px solid var(--card-border); color: var(--text-secondary);
  font-size: 1.1rem; transition: all var(--transition);
}
.footer-socials a:hover {
  background: var(--green-primary); border-color: var(--green-primary);
  color: var(--text-white); transform: translateY(-3px);
}

/* ============================================
   SCROLL REVEAL
   ============================================ */
.reveal {
  opacity: 0; transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

.schedule-content { }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .content-grid { grid-template-columns: 1fr; }
  .sidebar { position: static; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .hero { min-height: auto; padding: 120px 0 60px; }
  .hero-content { grid-template-columns: 1fr; text-align: center; }
  .hero-subtitle { margin: 0 auto var(--space-2xl); }
  .hero-actions { justify-content: center; }
  .hero-dino-wrapper { order: -1; }
  .dino-scene { width: 240px; height: 260px; margin: 0 auto; }
  .dino-character { max-width: 240px; }
  .dino-glow { width: 240px; height: 240px; }
  .countdown { justify-content: center; }
  .tg-subscribe-content { flex-direction: column; align-items: center; text-align: center; }
  .tg-subscribe-icon { font-size: 2.5rem; }

  .nav-links {
    display: none; position: fixed; inset: 0;
    flex-direction: column; justify-content: center; align-items: center; gap: var(--space-xl);
    background: rgba(255, 255, 255, 0.98); backdrop-filter: blur(20px); z-index: 999;
  }
  .nav-links.active { display: flex; }
  .nav-links a { font-size: 1.3rem; color: var(--text-dark); }
  .nav-burger { display: flex; z-index: 1001; }

  .steps-grid { grid-template-columns: 1fr; }
  .steps-grid::before { display: none; }
  .stats-bar { grid-template-columns: repeat(2, 1fr); padding: var(--space-lg); }
  .pricing-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
  .pricing-card.featured { transform: none; }
  .pricing-card.featured:hover { transform: translateY(-6px); }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .regions-grid { grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); }
}
@media (max-width: 480px) {
  :root { --container-pad: 1rem; }
  .hero h1 { font-size: 2.2rem; }
  .subjects-grid { grid-template-columns: 1fr; }
  .countdown-item { min-width: 65px; padding: var(--space-sm) var(--space-md); }
  .countdown-number { font-size: 1.6rem; }
  .reviews-grid { grid-template-columns: 1fr; }
}

/* ============================================
   BLOG INDEX — Premium card grid
   ============================================ */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: var(--space-xl);
  margin-bottom: var(--space-3xl);
}

.blog-card {
  display: flex; flex-direction: column;
  background: var(--card-bg); border: 2px solid var(--card-border);
  border-radius: var(--radius-xl); overflow: hidden;
  transition: all var(--transition-spring); text-decoration: none; color: var(--text-body);
  position: relative;
}
.blog-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, var(--green-primary), var(--accent-blue), var(--accent-yellow));
  opacity: 0; transition: opacity var(--transition);
}
.blog-card:hover {
  border-color: var(--green-primary); transform: translateY(-6px) scale(1.01);
  box-shadow: 0 20px 60px rgba(46,204,113,0.15); color: var(--text-body);
}
.blog-card:hover::before { opacity: 1; }

.blog-card-hero {
  background: linear-gradient(135deg, var(--bg-green-light) 0%, #f0fdf4 100%);
  padding: var(--space-2xl) var(--space-xl);
  display: flex; align-items: center; justify-content: center; gap: var(--space-lg);
  border-bottom: 2px solid var(--card-border);
  min-height: 120px;
}
.blog-card-icon {
  font-size: 3rem; flex-shrink: 0;
  width: 72px; height: 72px; display: flex; align-items: center; justify-content: center;
  background: var(--bg-white); border-radius: var(--radius-lg);
  border: 2px solid var(--card-border);
  box-shadow: 0 4px 14px rgba(46,204,113,0.12);
}
.blog-card-content {
  padding: var(--space-xl);
  display: flex; flex-direction: column; flex: 1;
}
.blog-card-meta {
  display: flex; gap: var(--space-md); margin-bottom: var(--space-md); flex-wrap: wrap;
}
.blog-date {
  font-size: 0.75rem; font-weight: 700; color: var(--text-muted);
  background: var(--bg-green-soft); padding: 4px 10px;
  border-radius: var(--radius-full); border: 1px solid var(--card-border);
}
.blog-readtime {
  font-size: 0.75rem; font-weight: 700; color: var(--text-muted);
  background: var(--card-bg); padding: 4px 10px;
  border-radius: var(--radius-full); border: 1px solid var(--card-border);
}
.blog-card-content h2 {
  font-size: 1.15rem; margin-bottom: var(--space-sm); color: var(--text-dark);
  line-height: 1.4; font-weight: 800;
}
.blog-card-content h2::after { display: none; }
.blog-card-content p {
  color: var(--text-secondary); font-size: 0.9rem; line-height: 1.7;
  margin-bottom: var(--space-lg); font-weight: 600; flex: 1;
}
.blog-read-more {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 0.88rem; font-weight: 800; color: var(--green-primary);
  transition: all var(--transition); margin-top: auto;
  padding: 8px 0; border-bottom: 2px solid transparent;
}
.blog-card:hover .blog-read-more {
  color: var(--green-dark); border-bottom-color: var(--green-primary);
  gap: 10px;
}

/* ============================================
   BLOG ARTICLE PAGE — Rich editorial layout
   ============================================ */
.blog-article-header {
  background: linear-gradient(135deg, var(--bg-green-light) 0%, #f9fffe 100%);
  border: 2px solid var(--card-border); border-radius: var(--radius-xl);
  padding: var(--space-2xl) var(--space-2xl) var(--space-xl);
  margin-bottom: var(--space-2xl);
  position: relative; overflow: hidden;
}
.blog-article-header::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 5px;
  background: linear-gradient(90deg, var(--green-primary), var(--accent-blue), var(--accent-yellow), var(--green-primary));
  background-size: 200% 100%;
  animation: gradientSlide 4s ease-in-out infinite;
}
.blog-article-badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--green-primary); color: var(--text-white);
  font-size: 0.72rem; font-weight: 900; text-transform: uppercase; letter-spacing: 1.5px;
  padding: 5px 14px; border-radius: var(--radius-full);
  margin-bottom: var(--space-md);
}
.blog-article-meta {
  display: flex; gap: var(--space-lg); margin-top: var(--space-md); flex-wrap: wrap;
}
.blog-article-meta .blog-date,
.blog-article-meta .blog-readtime {
  font-size: 0.82rem; font-weight: 700; color: var(--text-secondary);
  display: flex; align-items: center; gap: 5px;
}
.blog-article h1 {
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  margin: var(--space-md) 0 0; line-height: 1.25; letter-spacing: -0.5px;
}
.blog-article h1::after { display: none; }

/* Article body */
.blog-article-body {
  font-size: 1.02rem; line-height: 1.9; color: var(--text-secondary);
}
.blog-article-body > p:first-child {
  font-size: 1.12rem; color: var(--text-body); font-weight: 600;
  border-left: 4px solid var(--green-primary); padding-left: var(--space-lg);
  background: var(--bg-green-light); padding: var(--space-lg);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  margin-bottom: var(--space-xl);
}
.blog-article-body h2 {
  font-size: 1.4rem; color: var(--text-dark); font-weight: 900;
  margin: var(--space-2xl) 0 var(--space-md);
  padding-bottom: var(--space-sm);
  border-bottom: 3px solid var(--bg-green-light);
  display: flex; align-items: center; gap: var(--space-sm);
}
.blog-article-body h2::after { display: none; }
.blog-article-body h3 {
  font-size: 1.1rem; color: var(--green-dark); font-weight: 800;
  margin: var(--space-xl) 0 var(--space-sm);
  padding: var(--space-sm) var(--space-md);
  background: var(--bg-green-light); border-radius: var(--radius-sm);
  border-left: 3px solid var(--green-primary);
}
.blog-article-body h3::after { display: none; }
.blog-article-body p { margin-bottom: var(--space-lg); font-weight: 600; }
.blog-article-body ul {
  margin: var(--space-md) 0 var(--space-lg); padding: 0;
  list-style: none;
}
.blog-article-body ol {
  margin: var(--space-md) 0 var(--space-lg); padding-left: var(--space-xl);
}
.blog-article-body ul li {
  display: flex; align-items: flex-start; gap: var(--space-sm);
  margin-bottom: var(--space-sm); font-weight: 600;
  padding: var(--space-sm) var(--space-md);
  background: var(--card-bg); border: 1px solid var(--card-border);
  border-radius: var(--radius-sm);
}
.blog-article-body ul li::before {
  content: '→'; color: var(--green-primary); font-weight: 900;
  flex-shrink: 0; margin-top: 1px;
}
.blog-article-body ol li { margin-bottom: var(--space-sm); font-weight: 600; }
.blog-article-body a {
  color: var(--green-primary); font-weight: 700;
  text-decoration: none; border-bottom: 1px dashed var(--green-primary);
  transition: all var(--transition);
}
.blog-article-body a:hover {
  color: var(--green-dark); border-bottom-style: solid;
}
.blog-article-body .schedule-table {
  margin: var(--space-xl) 0;
  border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}
.blog-article-body strong { color: var(--text-dark); }
.blog-article-body em { color: var(--text-secondary); }

/* Related articles */
.blog-related {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: var(--space-md);
}
.blog-related-item {
  display: flex; align-items: center; gap: var(--space-md);
  padding: var(--space-md) var(--space-lg);
  background: var(--card-bg); border-radius: var(--radius-md);
  text-decoration: none; color: var(--text-secondary);
  font-weight: 700; font-size: 0.9rem;
  transition: all var(--transition);
  border: 2px solid var(--card-border);
}
.blog-related-item:hover {
  background: var(--bg-green-light); border-color: var(--green-primary);
  color: var(--green-dark); transform: translateX(4px);
}
.blog-related-icon {
  font-size: 1.5rem; flex-shrink: 0;
  width: 44px; height: 44px; display: flex; align-items: center; justify-content: center;
  background: var(--bg-green-light); border-radius: var(--radius-sm);
}

@media (max-width: 768px) {
  .blog-grid { grid-template-columns: 1fr; }
  .blog-article-header { padding: var(--space-xl) var(--space-lg); }
  .blog-related { grid-template-columns: 1fr; }
}

/* Utilities */
.text-center { text-align: center; }
.text-green { color: var(--green-primary); }
.mt-1 { margin-top: var(--space-md); }
.mt-2 { margin-top: var(--space-xl); }
.mt-3 { margin-top: var(--space-2xl); }
.mb-2 { margin-bottom: var(--space-xl); }
.w-full { width: 100%; }



/* ===== Subject+Region Cross-Pages ===== */
.subjects-grid.compact {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 0.6rem;
  margin: 1rem 0 2rem;
}

.subject-card-mini {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.7rem 1rem;
  background: rgba(46, 204, 113, 0.08);
  border: 1px solid rgba(46, 204, 113, 0.2);
  border-radius: 10px;
  color: var(--text-primary);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: all 0.2s ease;
}

.subject-card-mini:hover {
  background: rgba(46, 204, 113, 0.18);
  border-color: var(--green-primary);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(46, 204, 113, 0.15);
}

.regions-grid.compact {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 0.5rem;
  margin: 1rem 0 2rem;
}

.region-link-mini {
  display: block;
  padding: 0.6rem 1rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.85rem;
  transition: all 0.2s ease;
}

.region-link-mini:hover {
  background: rgba(46, 204, 113, 0.1);
  border-color: rgba(46, 204, 113, 0.3);
  color: var(--text-primary);
}

@media (max-width: 768px) {
  .subjects-grid.compact {
    grid-template-columns: repeat(2, 1fr);
  }
  .regions-grid.compact {
    grid-template-columns: repeat(2, 1fr);
  }
}
