/* === Pragyos - Balanced Design === */
:root {
  --clr-primary: #2A9EB8;
  --clr-secondary: #04B1B8;
  --clr-accent1: #8DC0BC;
  --clr-accent2: #EDC14F;
  --clr-accent3: #FD6800;
  --clr-bg: #070A10;
  --clr-surface: #0E1219;
  --clr-surface2: #161C26;
  --clr-card: #12171F;
  --clr-border: #1E2632;
  --clr-text: #E4E8EE;
  --clr-muted: #8A95A5;
  --radius: 12px;
  --radius-lg: 20px;
  --shadow: 0 4px 24px rgba(0,0,0,0.4);
  --transition: 0.25s ease;
  --font: 'Segoe UI', system-ui, -apple-system, sans-serif;
}
[data-theme="light"] {
  --clr-bg: #F5F8FC;
  --clr-surface: #FFFFFF;
  --clr-surface2: #EDF1F7;
  --clr-card: #FFFFFF;
  --clr-border: #D5DCE6;
  --clr-text: #1A202C;
  --clr-muted: #5A6578;
  --shadow: 0 4px 24px rgba(0,0,0,0.08);
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  background: var(--clr-bg);
  color: var(--clr-text);
  line-height: 1.6;
  min-height: 100vh;
  overflow-x: hidden;
}
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

/* === BUTTONS === */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  border: 1px solid var(--clr-border);
  background: transparent;
  color: var(--clr-text);
  cursor: pointer;
  transition: var(--transition);
}
.btn:hover { background: var(--clr-surface2); border-color: var(--clr-primary); }
.btn-primary {
  background: linear-gradient(135deg, var(--clr-primary), var(--clr-secondary));
  border: none;
  color: #fff;
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(42,158,184,0.35); }
.btn-lg { padding: 16px 32px; font-size: 1rem; }
.btn-full { width: 100%; justify-content: center; }
.icon-btn {
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1px solid var(--clr-border);
  background: var(--clr-surface);
  color: var(--clr-text);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}
.icon-btn:hover { background: var(--clr-primary); color: #fff; border-color: var(--clr-primary); }
#themeToggle {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24' fill='none' stroke='%23E4E8EE' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='12' r='5'/%3E%3Cline x1='12' y1='1' x2='12' y2='3'/%3E%3Cline x1='12' y1='21' x2='12' y2='23'/%3E%3Cline x1='4.22' y1='4.22' x2='5.64' y2='5.64'/%3E%3Cline x1='18.36' y1='18.36' x2='19.78' y2='19.78'/%3E%3Cline x1='1' y1='12' x2='3' y2='12'/%3E%3Cline x1='21' y1='12' x2='23' y2='12'/%3E%3Cline x1='4.22' y1='19.78' x2='5.64' y2='18.36'/%3E%3Cline x1='18.36' y1='5.64' x2='19.78' y2='4.22'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 20px;
}
[data-theme="light"] #themeToggle {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24' fill='none' stroke='%231A202C' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M21 12.79A9 9 0 1 1 11.21 3 7 7 0 0 0 21 12.79z'/%3E%3C/svg%3E");
}

/* === NAV === */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(7,10,16,0.85);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--clr-border);
}
[data-theme="light"] .nav { background: rgba(245,248,252,0.9); }
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.15rem;
}
.brand img { width: 38px; height: 38px; border-radius: 50%; object-fit: cover; }
.nav-links { display: flex; gap: 28px; }
.nav-links a {
  font-size: 0.95rem;
  color: var(--clr-muted);
  font-weight: 500;
  position: relative;
  transition: var(--transition);
}
.nav-links a:hover, .nav-links a.active { color: var(--clr-primary); }
.nav-links a.active::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0; right: 0;
  height: 2px;
  background: var(--clr-primary);
  border-radius: 2px;
}
.actions { display: flex; align-items: center; gap: 12px; }
.hamburger { display: none; }
@media (max-width: 900px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .actions .btn { display: none; }
}

/* === MOBILE DRAWER === */
.mobile-drawer {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(0,0,0,0.6);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}
.mobile-drawer.open { opacity: 1; pointer-events: auto; }
.drawer {
  position: absolute;
  right: 0; top: 0; bottom: 0;
  width: 280px;
  background: var(--clr-surface);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transform: translateX(100%);
  transition: transform 0.3s;
}
.mobile-drawer.open .drawer { transform: translateX(0); }
.drawer-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 8px; }
.drawer a { padding: 12px 0; border-bottom: 1px solid var(--clr-border); font-size: 1.05rem; }

/* === HERO === */
.hero {
  position: relative;
  min-height: 100vh;
  padding-top: 100px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}
.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.5;
}
.orb1 {
  width: 500px; height: 500px;
  background: var(--clr-primary);
  top: -100px; left: -150px;
  animation: orbFloat 12s ease-in-out infinite;
}
.orb2 {
  width: 400px; height: 400px;
  background: var(--clr-secondary);
  bottom: 0; right: -100px;
  animation: orbFloat 10s ease-in-out infinite reverse;
}
.orb3 {
  width: 300px; height: 300px;
  background: var(--clr-accent2);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0.3;
  animation: orbFloat 14s ease-in-out infinite;
}
@keyframes orbFloat {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(30px, -30px); }
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero-content { max-width: 580px; }
.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: var(--clr-surface2);
  border-radius: 50px;
  font-size: 0.85rem;
  color: var(--clr-muted);
  margin-bottom: 24px;
}
.pulse {
  width: 8px; height: 8px;
  background: var(--clr-accent2);
  border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.4); }
}
.hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 20px;
}
.gradient-text {
  background: linear-gradient(135deg, var(--clr-primary), var(--clr-accent2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.tagline {
  font-size: 1.15rem;
  color: var(--clr-muted);
  margin-bottom: 28px;
  max-width: 500px;
}
.hero-cta { display: flex; flex-wrap: wrap; gap: 16px; margin-bottom: 32px; }

/* Pain Points */
.pain-points { display: flex; flex-wrap: wrap; gap: 12px; }
.pain {
  padding: 8px 16px;
  background: rgba(1, 37, 241, 0.15);
  border: 1px solid rgba(143, 253, 0, 0.716);
  border-radius: 8px;
  font-size: 0.85rem;
  color: var(--clr-accent3);
}
[data-theme="light"] .pain {
  background: rgba(253,104,0,0.1);
  color: rgb(0, 212, 205);
}

/* Hero Visual */
.hero-visual { position: relative; }
.hero-img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  aspect-ratio: 4/3;
  object-fit: cover;
}
.hero-stats {
  position: absolute;
  bottom: -70px; left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  background: var(--clr-surface);
  border-radius: var(--radius);
  padding: 16px 24px;
  box-shadow: var(--shadow);
  border: 1px solid var(--clr-border);
}
.hero-stat {
  text-align: center;
  padding: 0 20px;
  border-right: 1px solid var(--clr-border);
}
.hero-stat:last-child { border-right: none; }
.hero-stat strong {
  display: block;
  font-size: 1.3rem;
  color: var(--clr-primary);
}
.hero-stat span { font-size: 0.75rem; color: var(--clr-muted); }

@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; text-align: center; }
  .hero-content { max-width: 100%; }
  .tagline { margin-left: auto; margin-right: auto; }
  .hero-cta { justify-content: center; }
  .pain-points { justify-content: center; }
  .hero-stats { position: relative; bottom: 0; margin-top: 20px; flex-wrap: nowrap; justify-content: space-around; }
}

/* === SECTIONS === */
.section { padding: 100px 0; }
.section-dark { background: var(--clr-surface); }
.section-alt { background: var(--clr-surface2); }
.section-header { margin-bottom: 56px; }
.section-header.center { text-align: center; }
.section-title {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 700;
  margin-bottom: 12px;
}
.section-sub { color: var(--clr-muted); font-size: 1.1rem; max-width: 600px; }
.section-header.center .section-sub { margin: 0 auto; }

/* === PILLARS (Services) === */
.pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.pillar-card {
  background: var(--clr-card);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
}
.pillar-card:hover { transform: translateY(-8px); box-shadow: 0 20px 40px rgba(0,0,0,0.2); }
.pillar-img {
  position: relative;
  height: 200px;
  overflow: hidden;
}
.pillar-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}
.pillar-card:hover .pillar-img img { transform: scale(1.05); }
.pillar-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(7,10,16,0.8), transparent);
  display: flex;
  align-items: flex-end;
  padding: 20px;
}
.pillar-num {
  font-size: 3rem;
  font-weight: 800;
  color: var(--clr-primary);
  opacity: 0.7;
}
.pillar-body { padding: 28px; }
.pillar-body h3 {
  font-size: 1.35rem;
  margin-bottom: 12px;
  color: var(--clr-text);
}
.pillar-body > p {
  color: var(--clr-muted);
  font-size: 0.95rem;
  margin-bottom: 20px;
}
.pillar-list {
  list-style: none;
  margin-bottom: 24px;
}
.pillar-list li {
  position: relative;
  padding-left: 20px;
  font-size: 0.9rem;
  color: var(--clr-muted);
  margin-bottom: 10px;
}
.pillar-list li::before {
  content: '';
  position: absolute;
  left: 0; top: 8px;
  width: 8px; height: 8px;
  background: var(--clr-primary);
  border-radius: 50%;
}
.pillar-stats {
  display: flex;
  gap: 16px;
  padding-top: 20px;
  border-top: 1px solid var(--clr-border);
}
.pillar-stats .stat { flex: 1; }
.pillar-stats .stat strong {
  display: block;
  font-size: 1.4rem;
  color: var(--clr-primary);
}
.pillar-stats .stat span { font-size: 0.75rem; color: var(--clr-muted); }

@media (max-width: 900px) {
  .pillars { grid-template-columns: 1fr; max-width: 500px; margin: 0 auto; }
}

/* Specialties / Tags */
.specialties {
  margin-top: 56px;
  text-align: center;
}
.specialties h4 {
  font-size: 0.9rem;
  color: var(--clr-muted);
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.tags { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; }
.tag {
  padding: 10px 20px;
  background: var(--clr-surface2);
  border: 1px solid var(--clr-border);
  border-radius: 50px;
  font-size: 0.85rem;
  color: var(--clr-text);
  transition: var(--transition);
}
.tag:hover {
  background: var(--clr-primary);
  color: #fff;
  border-color: var(--clr-primary);
}

/* === DASHBOARD (Results) === */
.dashboard {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}
.stat-card {
  background: var(--clr-card);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius);
  padding: 32px 24px;
  text-align: center;
  transition: var(--transition);
}
.stat-card:hover { transform: translateY(-4px); }
.stat-card.glow {
  border-color: var(--clr-primary);
  box-shadow: 0 0 30px rgba(42,158,184,0.2);
}
.stat-num {
  display: block;
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--clr-primary);
  line-height: 1;
  margin-bottom: 8px;
}
.stat-label {
  display: block;
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 4px;
}
.stat-detail { font-size: 0.8rem; color: var(--clr-muted); }

@media (max-width: 768px) {
  .dashboard { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 500px) {
  .dashboard { grid-template-columns: 1fr; }
}

/* CTA Banner */
.cta-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: linear-gradient(135deg, var(--clr-surface2), var(--clr-card));
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  padding: 40px 48px;
}
.cta-content h3 { font-size: 1.5rem; margin-bottom: 8px; }
.cta-content p { color: var(--clr-muted); }
@media (max-width: 700px) {
  .cta-banner { flex-direction: column; text-align: center; gap: 24px; padding: 32px; }
}

/* === PROCESS === */
.process {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
}
.process-step {
  flex: 1;
  max-width: 300px;
  text-align: center;
  padding: 0 20px;
}
.step-num {
  display: inline-flex;
  width: 48px; height: 48px;
  background: linear-gradient(135deg, var(--clr-primary), var(--clr-secondary));
  color: #fff;
  font-size: 1.3rem;
  font-weight: 700;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.step-img {
  width: 100%;
  height: 160px;
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 20px;
}
.step-img img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.process-step h3 { font-size: 1.2rem; margin-bottom: 10px; }
.process-step p { color: var(--clr-muted); font-size: 0.95rem; }
.process-connector {
  width: 60px;
  height: 2px;
  background: var(--clr-border);
  margin-top: 90px;
}
@media (max-width: 768px) {
  .process { flex-direction: column; align-items: center; gap: 32px; }
  .process-connector { width: 2px; height: 40px; margin: 0; }
}

/* === TRUST === */
.trust-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.trust-content h2 { font-size: 1.8rem; margin-bottom: 16px; }
.trust-content p { color: var(--clr-muted); margin-bottom: 24px; }
.trust-logos { display: flex; flex-wrap: wrap; gap: 12px; }
.trust-logo {
  padding: 12px 24px;
  background: var(--clr-surface);
  border: 1px solid var(--clr-border);
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--clr-muted);
}
.testimonial-card {
  background: var(--clr-card);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  padding: 40px;
  position: relative;
}
.quote-icon {
  font-size: 5rem;
  color: var(--clr-primary);
  opacity: 0.2;
  line-height: 1;
  position: absolute;
  top: 16px; left: 24px;
}
blockquote { position: relative; z-index: 1; }
blockquote p {
  font-size: 1.15rem;
  font-style: italic;
  margin-bottom: 20px;
}
cite {
  font-style: normal;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
cite strong { color: var(--clr-text); }
cite span { font-size: 0.85rem; color: var(--clr-muted); }
@media (max-width: 768px) {
  .trust-grid { grid-template-columns: 1fr; }
}

/* === FAQ === */
.faq-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 48px;
  align-items: start;
}
.faq-list { display: flex; flex-direction: column; gap: 16px; }
.faq-item {
  background: var(--clr-card);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius);
  overflow: hidden;
}
.faq-q {
  width: 100%;
  padding: 20px 24px;
  background: none;
  border: none;
  color: var(--clr-text);
  font-size: 1rem;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: var(--transition);
}
.faq-q:hover { color: var(--clr-primary); }
.faq-icon {
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--clr-primary);
  transition: transform 0.3s;
}
.faq-item[data-open="true"] .faq-icon { transform: rotate(45deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  padding: 0 24px;
  color: var(--clr-muted);
  font-size: 0.95rem;
  line-height: 1.6;
  transition: all 0.3s;
}
.faq-item[data-open="true"] .faq-a {
  max-height: 200px;
  padding: 0 24px 20px;
}
.faq-cta {
  background: var(--clr-card);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.faq-cta img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}
.faq-cta-content { padding: 28px; }
.faq-cta-content h3 { margin-bottom: 8px; }
.faq-cta-content p { color: var(--clr-muted); margin-bottom: 16px; font-size: 0.95rem; }
@media (max-width: 768px) {
  .faq-grid { grid-template-columns: 1fr; }
}

/* === CONTACT === */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
}
.contact-info h2 { font-size: 2rem; margin-bottom: 12px; }
.contact-info > p { color: var(--clr-muted); margin-bottom: 28px; }
.contact-cards { display: flex; flex-direction: column; gap: 16px; margin-bottom: 24px; }
.contact-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px;
  background: var(--clr-card);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius);
  transition: var(--transition);
}
a.contact-card:hover { border-color: var(--clr-primary); transform: translateX(4px); }
.contact-icon {
  width: 48px; height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--clr-primary), var(--clr-secondary));
  border-radius: 50%;
  color: #fff;
}
.contact-card strong { display: block; font-size: 1rem; }
.contact-card span { font-size: 0.9rem; color: var(--clr-muted); }

.social-row { display: flex; gap: 16px; margin-bottom: 16px; }
.social-link {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: var(--clr-card);
  border: 1px solid var(--clr-border);
  border-radius: 8px;
  font-size: 0.9rem;
  transition: var(--transition);
}
.social-link:hover { background: var(--clr-primary); color: #fff; border-color: var(--clr-primary); }
.contact-note { font-size: 0.85rem; color: var(--clr-muted); }

/* Contact Form */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.form-row { display: flex; gap: 16px; }
.form-row > * { flex: 1; }
input, select, textarea {
  width: 100%;
  padding: 16px 20px;
  background: var(--clr-card);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius);
  color: var(--clr-text);
  font-size: 1rem;
  font-family: inherit;
  transition: var(--transition);
}
input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: var(--clr-primary);
  box-shadow: 0 0 0 3px rgba(42,158,184,0.15);
}
textarea { resize: vertical; min-height: 140px; }
select { cursor: pointer; }
@media (max-width: 768px) {
  .contact-grid { grid-template-columns: 1fr; }
  .form-row { flex-direction: column; }
  .social-row { flex-wrap: wrap; }
}

/* === FOOTER === */
.footer {
  background: var(--clr-surface);
  border-top: 1px solid var(--clr-border);
  padding: 48px 0;
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 48px;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}
.footer-brand img { border-radius: 50%; }
.footer-brand strong { display: block; font-size: 1.1rem; }
.footer-brand span { font-size: 0.8rem; color: var(--clr-muted); }
.footer-left p { max-width: 340px; font-size: 0.9rem; color: var(--clr-muted); }
.footer-right { text-align: right; }
.footer-links { display: flex; gap: 24px; margin-bottom: 16px; }
.footer-links a { color: var(--clr-muted); font-size: 0.9rem; transition: var(--transition); }
.footer-links a:hover { color: var(--clr-primary); }
.footer-copy { font-size: 0.85rem; color: var(--clr-muted); }
@media (max-width: 600px) {
  .footer-inner { flex-direction: column; text-align: center; align-items: center; }
  .footer-right { text-align: center; }
  .footer-links { justify-content: center; flex-wrap: wrap; }
}

/* === TOAST === */
.toast {
  position: fixed;
  bottom: 32px; left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: var(--clr-surface);
  color: var(--clr-text);
  padding: 16px 28px;
  border-radius: 8px;
  box-shadow: var(--shadow);
  border: 1px solid var(--clr-border);
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s;
  z-index: 3000;
}
.toast.show { opacity: 1; transform: translateX(-50%) translateY(0); pointer-events: auto; }

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