/* ═══════════════════════════════════════
   ELMO 2026 — Dark Premium Design System
   Math Olympiad | Gold & Navy Theme
   ═══════════════════════════════════════ */

:root {
  --gold: #f59e0b;
  --gold-light: #fbbf24;
  --gold-dark: #d97706;
  --gold-glow: rgba(245, 158, 11, 0.25);
  --navy: #f8fafc;
  --navy-light: #f1f5f9;
  --navy-card: #ffffff;
  --navy-border: rgba(0, 0, 0, 0.08);
  --blue: #3b82f6;
  --cyan: #22d3ee;
  --emerald: #10b981;
  --rose: #f43f5e;
  --text: #1e293b;
  --text-secondary: #475569;
  --text-muted: #94a3b8;
  --radius: 16px;
  --radius-sm: 10px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 16px 48px rgba(0, 0, 0, 0.08);
  --shadow-gold: 0 8px 32px rgba(245, 158, 11, 0.15);
  --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
}

body {
  font-family: 'Plus Jakarta Sans', -apple-system, sans-serif;
  color: var(--text);
  background: var(--navy);
  line-height: 1.6;
  overflow-x: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ═══ BUTTONS ═══ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  transition: var(--transition);
  cursor: pointer;
  border: none;
  font-family: inherit;
  letter-spacing: 0.2px;
}

.btn-glow {
  background: linear-gradient(135deg, var(--accent, #10b981), var(--accent-dark, #059669));
  color: #fff;
  box-shadow: 0 8px 32px rgba(16, 185, 129, 0.2);
}
.btn-glow:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(16, 185, 129, 0.35);
}

.btn-outline {
  background: transparent;
  color: var(--text);
  border: 1.5px solid var(--navy-border);
}
.btn-outline:hover {
  border-color: var(--emerald);
  color: var(--emerald);
  background: rgba(16, 185, 129, 0.05);
}

.btn-primary {
  background: rgba(245, 158, 11, 0.1);
  color: var(--gold);
  border: 1px solid rgba(245, 158, 11, 0.2);
}
.btn-primary:hover {
  background: var(--gold);
  color: #fff;
  transform: translateY(-2px);
}

.btn-white {
  background: white;
  color: #1e293b;
  box-shadow: 0 4px 16px rgba(0,0,0,0.2);
}
.btn-white:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,0.3); }

.btn-outline-light {
  background: transparent;
  color: var(--text);
  border: 1.5px solid var(--navy-border);
}
.btn-outline-light:hover { border-color: var(--emerald); background: rgba(16,185,129,0.05); }

.btn-sm { padding: 10px 22px; font-size: 13px; }
.btn-md { padding: 14px 30px; font-size: 14px; }
.btn-lg { padding: 18px 40px; font-size: 16px; border-radius: var(--radius); }

/* ═══ SECTION TAGS ═══ */
.section-tag {
  display: inline-block;
  padding: 6px 16px;
  background: rgba(245, 158, 11, 0.08);
  border: 1px solid rgba(245, 158, 11, 0.15);
  border-radius: 100px;
  font-size: 12px;
  font-weight: 800;
  color: var(--gold);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.section-tag.light {
  background: rgba(16,185,129,0.08);
  border-color: rgba(16,185,129,0.15);
  color: var(--emerald);
}

.section-header {
  text-align: center;
  margin-bottom: 56px;
}

.section-header h2 {
  font-size: 42px;
  font-weight: 900;
  letter-spacing: -1px;
  margin-top: 8px;
}

/* ═══ NAVIGATION ═══ */
#nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 16px 0;
  transition: var(--transition);
}

#nav.scrolled {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--navy-border);
  padding: 10px 0;
}

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

.logo {
  display: flex;
  align-items: baseline;
  gap: 6px;
  text-decoration: none;
}
.logo-text {
  font-size: 24px;
  font-weight: 900;
  letter-spacing: 2px;
  color: var(--gold);
}
.logo-year {
  font-size: 14px;
  font-weight: 800;
  color: var(--text-muted);
  letter-spacing: 1px;
}

.nav-links {
  display: flex;
  gap: 32px;
}
.nav-links a {
  text-decoration: none;
  color: var(--text-secondary);
  font-size: 13px;
  font-weight: 600;
  transition: var(--transition);
  letter-spacing: 0.3px;
}
.nav-links a:hover { color: var(--gold); }

.nav-actions { display: flex; align-items: center; gap: 12px; }

.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.mobile-toggle span {
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: var(--transition);
}

/* ═══ HERO ═══ */
#hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 120px 0 60px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
}

.hero-orbs {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 50% 40% at 30% 30%, rgba(16, 185, 129, 0.06) 0%, transparent 60%),
    radial-gradient(ellipse 40% 50% at 70% 60%, rgba(59, 130, 246, 0.04) 0%, transparent 50%),
    radial-gradient(ellipse 60% 30% at 50% 90%, rgba(245, 158, 11, 0.03) 0%, transparent 40%);
}

#mathCanvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0.12;
}

.hero-content {
  position: relative;
  z-index: 1;
}

.hero-center {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.hero-edition {
  display: inline-block;
  padding: 8px 24px;
  background: rgba(245, 158, 11, 0.08);
  border: 1px solid rgba(245, 158, 11, 0.2);
  border-radius: 100px;
  font-size: 13px;
  font-weight: 800;
  color: var(--gold);
  letter-spacing: 3px;
  margin-bottom: 32px;
  animation: fadeDown 0.8s ease;
}

.hero-small {
  display: block;
  font-size: 18px;
  font-weight: 500;
  color: var(--text-secondary);
  letter-spacing: 4px;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.hero-big {
  display: block;
  font-size: 100px;
  font-weight: 900;
  letter-spacing: -3px;
  line-height: 1;
  background: linear-gradient(135deg, var(--gold-light), var(--gold), var(--gold-dark));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: fadeUp 0.8s ease 0.2s both;
}

.hero-big em {
  font-style: normal;
  -webkit-text-fill-color: var(--text);
  opacity: 0.3;
  font-weight: 300;
}

.hero-desc {
  font-size: 17px;
  color: var(--text-secondary);
  line-height: 1.8;
  margin: 28px auto 36px;
  max-width: 600px;
  animation: fadeUp 0.8s ease 0.3s both;
}

.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-bottom: 56px;
  animation: fadeUp 0.8s ease 0.4s both;
}

.hero-stats-row {
  display: flex;
  justify-content: center;
  gap: 48px;
  animation: fadeUp 0.8s ease 0.5s both;
}

.hero-stat { text-align: center; }
.hero-stat-num {
  font-size: 36px;
  font-weight: 900;
  color: var(--gold);
  letter-spacing: -1px;
}
.hero-stat-num.special {
  font-size: 42px;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero-stat-label {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 4px;
  letter-spacing: 0.5px;
}

.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}

.scroll-indicator {
  width: 24px;
  height: 40px;
  border: 2px solid rgba(0,0,0,0.12);
  border-radius: 12px;
  position: relative;
}

.scroll-indicator::after {
  content: '';
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 3px;
  height: 8px;
  background: var(--gold);
  border-radius: 2px;
  animation: scrollBounce 2s ease-in-out infinite;
}

@keyframes scrollBounce {
  0%, 100% { opacity: 1; transform: translateX(-50%) translateY(0); }
  50% { opacity: 0.3; transform: translateX(-50%) translateY(10px); }
}

/* ═══ PARTNERS ═══ */
#partners {
  padding: 28px 0;
  border-top: 1px solid var(--navy-border);
  border-bottom: 1px solid var(--navy-border);
}

.partners-inner {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.partner-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-secondary);
}
.partner-icon { font-size: 18px; }
.partner-divider {
  color: var(--text-muted);
  opacity: 0.3;
  font-size: 12px;
}

/* ═══ ABOUT ═══ */
#about {
  padding: 100px 0;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.about-text .section-tag { margin-bottom: 12px; }

.about-text h2 {
  font-size: 40px;
  font-weight: 900;
  margin-bottom: 24px;
  letter-spacing: -1px;
}

.about-text p {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 16px;
}

.about-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.about-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  background: var(--navy-card);
  border: 1px solid var(--navy-border);
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-secondary);
}

.about-visual {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.about-card {
  padding: 24px;
  background: var(--navy-card);
  border: 1px solid var(--navy-border);
  border-radius: var(--radius);
  transition: var(--transition);
}
.about-card:hover {
  border-color: rgba(245, 158, 11, 0.2);
  transform: translateX(6px);
}

.ac-icon { font-size: 28px; margin-bottom: 10px; }
.ac-label {
  font-size: 11px;
  font-weight: 800;
  color: var(--gold);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 6px;
}
.ac-text {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ═══ HIGHLIGHTS ═══ */
#highlights {
  padding: 100px 0;
  background: linear-gradient(180deg, var(--navy) 0%, var(--navy-light) 50%, var(--navy) 100%);
}

.highlights-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.highlight-card {
  padding: 32px 24px;
  border-radius: var(--radius-lg);
  text-align: center;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.highlight-card:hover { transform: translateY(-6px); }

.highlight-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  border: 1px solid transparent;
  transition: var(--transition);
}

.hc-gold { background: rgba(245, 158, 11, 0.06); }
.hc-gold::before { border-color: rgba(245, 158, 11, 0.12); }
.hc-gold:hover { box-shadow: 0 12px 40px rgba(245, 158, 11, 0.12); }

.hc-blue { background: rgba(59, 130, 246, 0.06); }
.hc-blue::before { border-color: rgba(59, 130, 246, 0.12); }
.hc-blue:hover { box-shadow: 0 12px 40px rgba(59, 130, 246, 0.12); }

.hc-green { background: rgba(16, 185, 129, 0.06); }
.hc-green::before { border-color: rgba(16, 185, 129, 0.12); }
.hc-green:hover { box-shadow: 0 12px 40px rgba(16, 185, 129, 0.12); }

.hc-pink { background: rgba(244, 63, 94, 0.06); }
.hc-pink::before { border-color: rgba(244, 63, 94, 0.12); }
.hc-pink:hover { box-shadow: 0 12px 40px rgba(244, 63, 94, 0.12); }

.hc-icon { font-size: 40px; margin-bottom: 16px; }
.highlight-card h3 { font-size: 17px; font-weight: 800; margin-bottom: 8px; }
.highlight-card p { font-size: 13px; color: var(--text-secondary); line-height: 1.6; }

/* ═══ STRUCTURE ═══ */
#structure {
  padding: 100px 0;
}

.structure-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}

.structure-card {
  padding: 32px;
  background: var(--navy-card);
  border: 1px solid var(--navy-border);
  border-radius: var(--radius-lg);
  display: flex;
  gap: 20px;
  transition: var(--transition);
}
.structure-card:hover {
  border-color: rgba(245, 158, 11, 0.15);
  transform: translateY(-4px);
}

.sc-num {
  font-size: 48px;
  font-weight: 900;
  color: var(--gold);
  opacity: 0.3;
  line-height: 1;
  flex-shrink: 0;
}

.sc-info { flex: 1; }
.sc-info h3 { font-size: 17px; font-weight: 800; margin-bottom: 8px; }
.sc-info p { font-size: 13px; color: var(--text-secondary); line-height: 1.6; margin-bottom: 14px; }

.sc-bar {
  width: 100%;
  height: 4px;
  background: rgba(0,0,0,0.03);
  border-radius: 2px;
  overflow: hidden;
  margin-bottom: 8px;
}
.sc-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  border-radius: 2px;
  transition: width 1s ease;
}

.sc-count {
  font-size: 12px;
  font-weight: 800;
  color: var(--gold);
  letter-spacing: 0.5px;
}

.structure-topics {
  text-align: center;
  padding: 28px;
  background: var(--navy-card);
  border: 1px solid var(--navy-border);
  border-radius: var(--radius);
}

.structure-topics h4 {
  font-size: 13px;
  font-weight: 800;
  color: var(--text-muted);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.topics-row {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
}

.topic {
  padding: 6px 16px;
  background: rgba(245, 158, 11, 0.06);
  border: 1px solid rgba(245, 158, 11, 0.1);
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  color: var(--gold);
}

/* ═══ TIMELINE ═══ */
#timeline {
  padding: 100px 0;
  background: linear-gradient(180deg, var(--navy) 0%, var(--navy-light) 100%);
}

.timeline {
  max-width: 700px;
  margin: 0 auto;
  position: relative;
  padding-left: 40px;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 11px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, var(--gold), var(--navy-border));
}

.tl-item {
  position: relative;
  padding-bottom: 40px;
}
.tl-item:last-child { padding-bottom: 0; }

.tl-dot {
  position: absolute;
  left: -34px;
  top: 4px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--navy-card);
  border: 2px solid var(--text-muted);
  z-index: 1;
}

.tl-item.active .tl-dot {
  background: var(--gold);
  border-color: var(--gold);
  box-shadow: 0 0 20px var(--gold-glow);
}

.tl-card {
  padding: 24px;
  background: var(--navy-card);
  border: 1px solid var(--navy-border);
  border-radius: var(--radius);
  transition: var(--transition);
}
.tl-card:hover { border-color: rgba(245, 158, 11, 0.15); }

.tl-item.active .tl-card {
  border-color: rgba(245, 158, 11, 0.2);
  background: rgba(245, 158, 11, 0.04);
}

.tl-date {
  font-size: 12px;
  font-weight: 800;
  color: var(--gold);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.tl-card h3 { font-size: 17px; font-weight: 800; margin-bottom: 6px; }
.tl-card p { font-size: 14px; color: var(--text-secondary); line-height: 1.6; }

/* ═══ REGISTER ═══ */
#register {
  padding: 80px 0;
}

.register-card {
  background: linear-gradient(135deg, #1a1040, #0d1b3e, #0f1c2e);
  border: 1px solid rgba(245, 158, 11, 0.12);
  border-radius: var(--radius-xl);
  padding: 60px;
  position: relative;
  overflow: hidden;
}

.register-card::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(245, 158, 11, 0.08) 0%, transparent 60%);
  border-radius: 50%;
}

.register-content { position: relative; z-index: 1; }
.register-content h2 {
  font-size: 36px;
  font-weight: 900;
  margin-bottom: 12px;
  letter-spacing: -1px;
}
.register-content > p {
  font-size: 16px;
  color: var(--text-secondary);
  margin-bottom: 36px;
}

.register-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 32px;
}

.register-method {
  padding: 28px;
  background: rgba(0,0,0,0.02);
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: var(--radius);
  text-align: center;
}
.rm-icon { font-size: 36px; margin-bottom: 12px; }
.register-method h4 { font-size: 17px; font-weight: 800; margin-bottom: 6px; }
.register-method p { font-size: 13px; color: var(--text-secondary); margin-bottom: 16px; }

.register-info {
  padding: 24px;
  background: rgba(0,0,0,0.01);
  border: 1px solid rgba(0,0,0,0.04);
  border-radius: var(--radius);
}
.register-info h4 {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--text-secondary);
}
.info-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.info-chips span {
  padding: 6px 14px;
  background: rgba(245, 158, 11, 0.06);
  border: 1px solid rgba(245, 158, 11, 0.12);
  border-radius: 100px;
  font-size: 12px;
  font-weight: 600;
  color: var(--gold);
}

/* ═══ PREPARATION ═══ */
#preparation {
  padding: 100px 0;
}

.prep-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.prep-card {
  padding: 32px;
  background: var(--navy-card);
  border: 1px solid var(--navy-border);
  border-radius: var(--radius-lg);
  text-align: center;
  transition: var(--transition);
}
.prep-card:hover {
  border-color: rgba(245, 158, 11, 0.15);
  transform: translateY(-6px);
}

.prep-icon { font-size: 40px; margin-bottom: 16px; }
.prep-card h3 { font-size: 17px; font-weight: 800; margin-bottom: 8px; }
.prep-card p { font-size: 13px; color: var(--text-secondary); line-height: 1.6; margin-bottom: 20px; }

/* ═══ PRESS ═══ */
#press {
  padding: 100px 0;
  background: var(--navy-light);
}

.press-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.press-card {
  padding: 28px;
  background: var(--navy-card);
  border: 1px solid var(--navy-border);
  border-radius: var(--radius);
  text-decoration: none;
  color: var(--text);
  transition: var(--transition);
}
.press-card:hover {
  border-color: rgba(245, 158, 11, 0.2);
  transform: translateY(-4px);
}

.press-source {
  font-size: 12px;
  font-weight: 800;
  color: var(--gold);
  letter-spacing: 0.5px;
  margin-bottom: 10px;
}
.press-card h3 {
  font-size: 15px;
  font-weight: 700;
  line-height: 1.5;
  color: var(--text-secondary);
}
.press-card:hover h3 { color: var(--text); }

/* ═══ FAQ ═══ */
#faq {
  padding: 100px 0;
}

.faq-list {
  max-width: 750px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--navy-border);
}

.faq-q {
  width: 100%;
  padding: 20px 0;
  background: none;
  border: none;
  color: var(--text);
  font-family: inherit;
  font-size: 16px;
  font-weight: 700;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: var(--transition);
}
.faq-q::after {
  content: '+';
  font-size: 22px;
  color: var(--gold);
  font-weight: 300;
  transition: var(--transition);
  flex-shrink: 0;
  margin-left: 16px;
}
.faq-item.open .faq-q::after {
  content: '−';
}
.faq-q:hover { color: var(--gold); }

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
}
.faq-item.open .faq-a {
  max-height: 300px;
  padding-bottom: 20px;
}
.faq-a p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ═══ FOOTER ═══ */
#footer {
  padding: 60px 0 24px;
  border-top: 1px solid var(--navy-border);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-brand p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
  margin: 12px 0;
}

.footer-org {
  font-size: 13px;
  color: var(--text-muted);
}
.footer-org strong { color: var(--gold); }

.footer-links h4 {
  font-size: 14px;
  font-weight: 800;
  margin-bottom: 16px;
  color: var(--text-secondary);
  letter-spacing: 0.3px;
}
.footer-links a {
  display: block;
  color: var(--text-muted);
  text-decoration: none;
  font-size: 13px;
  padding: 5px 0;
  transition: var(--transition);
}
.footer-links a:hover { color: var(--gold); padding-left: 4px; }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  padding-top: 20px;
  border-top: 1px solid var(--navy-border);
  font-size: 12px;
  color: var(--text-muted);
}

/* ═══ ANIMATIONS ═══ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeDown {
  from { opacity: 0; transform: translateY(-20px); }
  to { opacity: 1; transform: translateY(0); }
}

[data-aos] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
[data-aos].visible {
  opacity: 1;
  transform: translateY(0);
}

/* ═══ RESPONSIVE ═══ */
@media (max-width: 1024px) {
  .about-grid { grid-template-columns: 1fr; }
  .highlights-grid { grid-template-columns: repeat(2, 1fr); }
  .structure-grid { grid-template-columns: 1fr; }
  .register-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .hero-big { font-size: 72px; }
  .hero-stats-row { gap: 32px; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .mobile-toggle { display: flex; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--navy);
    padding: 20px 24px;
    border-bottom: 1px solid var(--navy-border);
    gap: 16px;
  }
  .hero-big { font-size: 56px; }
  .hero-small { font-size: 14px; letter-spacing: 2px; }
  .hero-desc { font-size: 15px; }
  .hero-buttons { flex-direction: column; align-items: center; }
  .hero-stats-row { flex-wrap: wrap; gap: 24px; }
  .section-header h2 { font-size: 30px; }
  .highlights-grid { grid-template-columns: 1fr 1fr; }
  .prep-grid { grid-template-columns: 1fr; }
  .press-grid { grid-template-columns: 1fr; }
  .about-text h2 { font-size: 30px; }
  .register-card { padding: 32px; }
  .register-content h2 { font-size: 28px; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
}

@media (max-width: 480px) {
  .hero-big { font-size: 44px; letter-spacing: -1px; }
  .hero-stats-row { gap: 16px; }
  .hero-stat-num { font-size: 28px; }
  .highlights-grid { grid-template-columns: 1fr; }
  .partners-inner { flex-direction: column; gap: 12px; }
  .partner-divider { display: none; }
  .topics-row { justify-content: flex-start; }
}

/* ═══════════════════════════════════════════
   TUDY MAIN PAGE STYLES
   ═══════════════════════════════════════════ */

/* ── Accent color: Emerald for TUDY ── */
.page-tudy {
  --accent: #10b981;
  --accent-light: #34d399;
  --accent-dark: #059669;
  --accent-glow: rgba(16, 185, 129, 0.25);
  --shadow-accent: 0 8px 32px rgba(16, 185, 129, 0.2);
}

.page-tudy .section-tag.accent {
  background: rgba(16, 185, 129, 0.08);
  border-color: rgba(16, 185, 129, 0.15);
  color: var(--accent);
}

.page-tudy .logo-icon { font-size: 22px; }
.page-tudy .tudy-logo { color: var(--accent); letter-spacing: 3px; }

.btn-accent {
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  color: white;
  box-shadow: var(--shadow-accent);
}
.btn-accent:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(16, 185, 129, 0.35);
}

.page-tudy .btn-outline:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: rgba(16, 185, 129, 0.05);
}

.page-tudy .nav-links a:hover { color: var(--accent); }
.nav-elmo {
  color: var(--gold) !important;
  font-weight: 700 !important;
}
.nav-home {
  color: var(--emerald) !important;
  font-weight: 700 !important;
}

.section-subtitle {
  font-size: 16px;
  color: var(--text-secondary);
  margin-top: 8px;
  max-width: 550px;
  margin-left: auto;
  margin-right: auto;
}

/* ── TUDY Hero ── */
.hero-tudy {
  min-height: 100vh;
  padding: 120px 0 80px;
}

.hero-tudy .hero-edition {
  background: rgba(16, 185, 129, 0.08);
  border-color: rgba(16, 185, 129, 0.2);
  color: var(--accent);
  letter-spacing: 4px;
  font-size: 12px;
}

.tudy-orbs {
  background:
    radial-gradient(ellipse 50% 40% at 20% 30%, rgba(16, 185, 129, 0.07) 0%, transparent 60%),
    radial-gradient(ellipse 40% 50% at 80% 50%, rgba(59, 130, 246, 0.05) 0%, transparent 50%),
    radial-gradient(ellipse 60% 30% at 50% 80%, rgba(245, 158, 11, 0.03) 0%, transparent 40%) !important;
}

.hero-grid-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0,0,0,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,0,0,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  opacity: 0.5;
}

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

.hero-left { animation: fadeUp 0.8s ease; }

.hero-left h1 {
  font-size: 48px;
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: -1.5px;
  margin-bottom: 20px;
}

.hero-line-1 { display: block; }
.hero-line-1 em {
  font-style: normal;
  background: linear-gradient(135deg, var(--accent-light), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-line-2 {
  display: block;
  color: var(--text-secondary);
  font-size: 40px;
  font-weight: 700;
}

.hero-left .hero-desc {
  text-align: left;
  margin: 0 0 28px 0;
  max-width: none;
}

.hero-left .hero-buttons {
  justify-content: flex-start;
  margin-bottom: 28px;
}

.hero-trust {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  color: var(--text-muted);
}

.trust-avatars {
  display: flex;
  margin-right: -4px;
}
.trust-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--navy-card);
  border: 2px solid var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  margin-right: -8px;
}

.hero-right { animation: fadeUp 0.8s ease 0.2s both; }

.hero-feature-stack {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.feature-float {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 22px;
  background: var(--navy-card);
  border: 1px solid var(--navy-border);
  border-radius: var(--radius);
  transition: var(--transition);
  animation: fadeRight 0.6s ease both;
}
.feature-float:hover {
  border-color: rgba(16, 185, 129, 0.2);
  transform: translateX(8px);
}

.f1 { animation-delay: 0.2s; }
.f2 { animation-delay: 0.35s; }
.f3 { animation-delay: 0.5s; }
.f4 { animation-delay: 0.65s; }

.ff-icon {
  font-size: 28px;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(16, 185, 129, 0.06);
  border-radius: 12px;
  flex-shrink: 0;
}

.feature-float strong {
  display: block;
  font-size: 14px;
  margin-bottom: 2px;
}
.feature-float small {
  font-size: 12px;
  color: var(--text-muted);
}

@keyframes fadeRight {
  from { opacity: 0; transform: translateX(-20px); }
  to { opacity: 1; transform: translateX(0); }
}

/* ── ELMO Banner ── */
#elmo-banner {
  padding: 20px 0;
}

.elmo-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 32px;
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.08), rgba(245, 158, 11, 0.03));
  border: 1px solid rgba(245, 158, 11, 0.15);
  border-radius: var(--radius-lg);
  text-decoration: none;
  color: var(--text);
  transition: var(--transition);
}
.elmo-cta:hover {
  border-color: rgba(245, 158, 11, 0.3);
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.12), rgba(245, 158, 11, 0.05));
  transform: translateY(-2px);
}

.elmo-badge {
  display: inline-block;
  padding: 4px 12px;
  background: var(--gold);
  color: var(--navy);
  border-radius: 100px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.5px;
  margin-bottom: 6px;
}

.elmo-cta h3 { font-size: 18px; font-weight: 800; margin-bottom: 4px; }
.elmo-cta p { font-size: 13px; color: var(--text-secondary); }

/* ── Dynamic Banners (same size as ELMO) ── */
.dyn-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 32px;
  background: var(--dyn-bg, linear-gradient(135deg, rgba(245,158,11,.08), rgba(245,158,11,.03)));
  border: 1px solid rgba(200,200,200,0.25);
  border-radius: var(--radius-lg);
  text-decoration: none;
  color: var(--text);
  transition: var(--transition);
  margin-top: 16px;
  position: relative;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  min-height: 80px;
  max-height: 200px;
}
.dyn-banner.has-bg-image {
  color: #fff;
  border-color: rgba(200,200,200,0.25);
  -webkit-mask-image: -webkit-radial-gradient(white, black);
  isolation: isolate;
}
.dyn-banner.has-bg-image::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0,0,0,.55) 0%, rgba(0,0,0,.25) 60%, transparent 100%);
  border-radius: inherit;
  z-index: 0;
}
.dyn-banner.has-bg-image > * { position: relative; z-index: 1; }
.dyn-banner.has-bg-image h3 { color: #fff; }
.dyn-banner.has-bg-image p { color: rgba(255,255,255,.85); }
.dyn-banner:hover {
  border-color: rgba(200,200,200,0.4);
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(0,0,0,.06);
}
.dyn-banner.has-bg-image:hover { border-color: rgba(200,200,200,0.4); }
.dyn-banner h3 { font-size: 18px; font-weight: 800; margin-bottom: 4px; }
.dyn-banner p { font-size: 13px; color: var(--text-secondary); margin: 0; }
.dyn-badge {
  display: inline-block;
  padding: 4px 12px;
  background: var(--gold);
  color: var(--navy);
  border-radius: 100px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.5px;
  margin-bottom: 6px;
}

/* ── Services ── */
#services { padding: 100px 0; }

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.service-card {
  padding: 32px;
  background: var(--navy-card);
  border: 1px solid var(--navy-border);
  border-radius: var(--radius-lg);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.service-card:hover {
  transform: translateY(-6px);
  border-color: rgba(16, 185, 129, 0.15);
}

.sc-icon-wrap {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  font-size: 28px;
  margin-bottom: 20px;
}

.sc-math .sc-icon-wrap { background: rgba(16, 185, 129, 0.08); }
.sc-eng .sc-icon-wrap { background: rgba(59, 130, 246, 0.08); }
.sc-hw .sc-icon-wrap { background: rgba(245, 158, 11, 0.08); }

.sc-tag {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1.5px;
  color: var(--accent);
  margin-bottom: 8px;
}
.sc-eng .sc-tag { color: var(--blue); }
.sc-hw .sc-tag { color: var(--gold); }

.service-card h3 { font-size: 20px; font-weight: 800; margin-bottom: 12px; }
.service-card p { font-size: 14px; color: var(--text-secondary); line-height: 1.7; margin-bottom: 16px; }

.sc-link {
  font-size: 13px;
  font-weight: 700;
  color: var(--accent);
  text-decoration: none;
  transition: var(--transition);
}
.sc-link:hover { color: var(--accent-light); }
.sc-eng .sc-link { color: var(--blue); }
.sc-hw .sc-link { color: var(--gold); }

/* ── Blog / Parenting Hub ── */
#blog { padding: 100px 0; }

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.blog-card {
  display: flex;
  background: var(--navy-card);
  border: 1px solid var(--navy-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}
.blog-card:hover {
  border-color: rgba(16,185,129,0.25);
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.blog-card-img {
  width: 140px;
  min-height: 100%;
  object-fit: cover;
  flex-shrink: 0;
}

.blog-card-body {
  padding: 20px;
  flex: 1;
  min-width: 0;
}

.bc-tag {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1.5px;
  color: var(--emerald);
  margin-bottom: 8px;
  text-transform: uppercase;
}

.blog-card h3 {
  font-size: 15px;
  font-weight: 800;
  line-height: 1.4;
  margin-bottom: 8px;
  color: var(--text);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  word-break: break-word;
}

.blog-card p {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  word-break: break-word;
}

.blog-more {
  text-align: center;
  margin-top: 28px;
}

/* ── Why TUDY ── */
#why-tudy {
  padding: 100px 0;
  background: linear-gradient(180deg, var(--navy) 0%, var(--navy-light) 50%, var(--navy) 100%);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.why-card {
  padding: 32px;
  background: var(--navy-card);
  border: 1px solid var(--navy-border);
  border-radius: var(--radius-lg);
  transition: var(--transition);
}
.why-card:hover {
  border-color: rgba(16, 185, 129, 0.15);
  transform: translateY(-4px);
}

.wc-num {
  font-size: 36px;
  font-weight: 900;
  color: var(--accent);
  opacity: 0.25;
  margin-bottom: 12px;
}

.why-card h3 { font-size: 18px; font-weight: 800; margin-bottom: 10px; }
.why-card p { font-size: 14px; color: var(--text-secondary); line-height: 1.7; }

/* ── Stats Bar ── */
.stats-bar {
  display: flex;
  justify-content: center;
  gap: 48px;
  margin-top: 56px;
  padding: 36px 40px;
  background: linear-gradient(135deg, var(--dark) 0%, #1a2a3a 100%);
  border-radius: 20px;
  position: relative;
  overflow: hidden;
}
.stats-bar::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: radial-gradient(circle at 20% 50%, rgba(212, 175, 55, 0.08), transparent 60%),
              radial-gradient(circle at 80% 50%, rgba(212, 175, 55, 0.05), transparent 60%);
  pointer-events: none;
}
.stat-item {
  text-align: center;
  position: relative;
  z-index: 1;
}
.stat-num {
  font-size: 36px;
  font-weight: 900;
  color: var(--gold);
  letter-spacing: -1px;
  line-height: 1.2;
}
.stat-label {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 6px;
  font-weight: 500;
  letter-spacing: 0.3px;
}

/* ── Verification ── */
#verification { padding: 80px 0; }

.verify-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  padding: 48px;
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.04), rgba(59, 130, 246, 0.03));
  border: 1px solid rgba(16, 185, 129, 0.1);
  border-radius: var(--radius-xl);
  align-items: center;
}

.verify-left h2 {
  font-size: 32px;
  font-weight: 900;
  margin-bottom: 12px;
  letter-spacing: -0.5px;
}
.verify-left p { font-size: 14px; color: var(--text-secondary); }

.verify-steps {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.vs-step {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 18px;
  background: rgba(0,0,0,0.01);
  border: 1px solid rgba(0,0,0,0.04);
  border-radius: var(--radius-sm);
  transition: var(--transition);
}
.vs-step:hover {
  background: rgba(16, 185, 129, 0.04);
  border-color: rgba(16, 185, 129, 0.12);
}

.vs-icon { font-size: 22px; flex-shrink: 0; }
.vs-text { font-size: 14px; font-weight: 600; }

/* ── Eye Level ── */
#eye-level { padding: 100px 0; }

.el-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.el-card {
  padding: 36px;
  background: var(--navy-card);
  border: 1px solid var(--navy-border);
  border-radius: var(--radius-lg);
  transition: var(--transition);
}
.el-card:hover {
  border-color: rgba(16, 185, 129, 0.15);
  transform: translateY(-4px);
}

.el-icon { font-size: 40px; margin-bottom: 16px; }
.el-card h3 { font-size: 22px; font-weight: 800; margin-bottom: 12px; }
.el-card p { font-size: 14px; color: var(--text-secondary); line-height: 1.7; margin-bottom: 20px; }

.el-features {
  list-style: none;
  padding: 0;
}
.el-features li {
  padding: 8px 0;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-secondary);
  border-bottom: 1px solid var(--navy-border);
  display: flex;
  gap: 8px;
  align-items: center;
}
.el-features li:last-child { border-bottom: none; }
.el-features li::before {
  content: '✦';
  color: var(--accent);
  font-size: 10px;
}

/* ── App Section ── */
#app { padding: 80px 0; }

.app-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  padding: 48px;
  background: linear-gradient(135deg, #f1f5f9, #e2e8f0);
  border: 1px solid var(--navy-border);
  border-radius: var(--radius-xl);
  align-items: center;
}

.app-left h2 {
  font-size: 32px;
  font-weight: 900;
  margin-bottom: 28px;
  letter-spacing: -0.5px;
}

.app-features {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 28px;
}

.af-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.af-item span { font-size: 24px; flex-shrink: 0; margin-top: 2px; }
.af-item strong { display: block; font-size: 14px; margin-bottom: 2px; }
.af-item small { font-size: 12px; color: var(--text-muted); }

.app-stores {
  display: flex;
  gap: 12px;
}

.store-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 22px;
  background: rgba(0,0,0,0.03);
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: var(--radius-sm);
  text-decoration: none;
  color: var(--text);
  transition: var(--transition);
}
.store-btn:hover {
  background: rgba(0,0,0,0.06);
  border-color: rgba(0,0,0,0.1);
}
.store-icon { font-size: 24px; }
.store-btn small { font-size: 10px; color: var(--text-muted); display: block; }
.store-btn strong { font-size: 14px; display: block; }

/* ── App Mockup ── */
.app-mockup {
  display: flex;
  justify-content: center;
}

.mockup-screen {
  width: 280px;
  padding: 24px;
  background: linear-gradient(180deg, #ffffff, #f1f5f9);
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: 28px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.1);
}

.ms-header {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  font-weight: 800;
  margin-bottom: 20px;
}

.ms-greeting {
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 4px;
}
.ms-subtitle {
  font-size: 12px;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.ms-class {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px;
  background: rgba(0,0,0,0.02);
  border: 1px solid rgba(0,0,0,0.04);
  border-radius: 14px;
  margin-bottom: 10px;
}
.msc-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}
.ms-class strong { font-size: 13px; display: block; }
.ms-class small { font-size: 11px; color: var(--text-muted); }
.msc-badge {
  margin-left: auto;
  font-size: 10px;
  font-weight: 800;
  padding: 4px 10px;
  border-radius: 100px;
  background: rgba(59, 130, 246, 0.15);
  color: var(--blue);
  flex-shrink: 0;
}
.msc-badge.live {
  background: rgba(16, 185, 129, 0.15);
  color: var(--accent);
  animation: pulse-glow 2s ease-in-out infinite;
}

@keyframes pulse-glow {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

/* ── Reviews ── */
#reviews { padding: 100px 0 60px; }

/* ── Partners ── */
#partners-section { padding: 60px 0 100px; }

/* ── Blog ── */
#blog {
  padding: 100px 0;
  background: var(--navy-light);
}

/* ── Eye Level Illustration ── */
.el-illustration {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  overflow: hidden;
}
.el-illustration img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-lg);
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.blog-card {
  padding: 28px;
  background: var(--navy-card);
  border: 1px solid var(--navy-border);
  border-radius: var(--radius);
  text-decoration: none;
  color: var(--text);
  transition: var(--transition);
}
.blog-card:hover {
  border-color: rgba(16, 185, 129, 0.15);
  transform: translateY(-4px);
}

.bc-tag {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1.5px;
  color: var(--accent);
  margin-bottom: 10px;
}

.blog-card h3 {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: 10px;
}
.blog-card p {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.6;
}

.blog-more {
  text-align: center;
  margin-top: 32px;
}

/* ── TUDY Responsive ── */
@media (max-width: 1024px) {
  .hero-split { grid-template-columns: 1fr; gap: 40px; }
  .hero-left h1 { font-size: 40px; }
  .hero-line-2 { font-size: 32px; }
  .services-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .verify-card { grid-template-columns: 1fr; }
  .el-grid { grid-template-columns: 1fr; }
  .app-card { grid-template-columns: 1fr; }
  .elmo-cta { flex-direction: column; gap: 16px; text-align: center; }
  .dyn-banner { flex-direction: column; gap: 16px; text-align: center; }
  .stats-bar { flex-wrap: wrap; gap: 24px 40px; padding: 28px 24px; }
  .stat-num { font-size: 28px; }
}

@media (max-width: 768px) {
  .hero-left h1 { font-size: 34px; }
  .hero-line-2 { font-size: 28px; }
  .hero-left .hero-buttons { flex-direction: column; }
  .services-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr !important; }
  .blog-card { flex-direction: column; }
  .blog-card-img { width: 100% !important; height: 160px !important; }
  .app-card { padding: 28px; }
  .verify-card { padding: 28px; }
  .app-stores { flex-direction: column; }
  .register-card { padding: 28px; }
}
