:root {
  --bg: #fafbfd;
  --bg-deep: #f2f4f8;
  --bg-elevated: #ffffff;
  --surface: #ffffff;
  --surface-strong: #ffffff;
  --surface-soft: #f5f7fa;
  --text: #1c2333;
  --text-muted: #667085;
  --heading: #10131c;
  --accent: #3457ff;
  --accent-dark: #2743d6;
  --accent-soft: rgba(52, 87, 255, 0.08);
  --accent-soft-border: rgba(52, 87, 255, 0.22);
  --border: rgba(16, 19, 28, 0.08);
  --border-light: rgba(16, 19, 28, 0.12);
  --shadow: 0 20px 50px rgba(16, 19, 28, 0.06);
  --shadow-hover: 0 22px 44px rgba(52, 87, 255, 0.16);
  --radius-sm: 12px;
  --radius-md: 18px;
  --radius-lg: 20px;
  --radius-xl: 26px;
  --content-width: min(1200px, calc(100% - 2.8rem));
  --transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition-smooth: 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 18px; }
body {
  margin: 0; min-height: 100%;
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  line-height: 1.6; color: var(--text); background: var(--bg);
  text-rendering: optimizeLegibility; -webkit-font-smoothing: antialiased;
}

/* ── Full-page canvas (particle network) ── */
#bgCanvas {
  position: fixed; inset: 0; width: 100%; height: 100%;
  pointer-events: none; z-index: -3;
}
h1, h2, h3 { font-family: 'Poppins', 'Inter', sans-serif; color: var(--heading); margin: 0 0 0.6em; }
p { color: var(--text-muted); margin: 0 0 1em; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul { list-style: none; margin: 0; padding: 0; }
.background-overlay {
  position: fixed; inset: 0; pointer-events: none; z-index: -2;
  overflow: hidden;
  /* dot grid pattern */
  background-image:
    radial-gradient(circle at 85% -5%, rgba(52,87,255,0.09), transparent 32%),
    radial-gradient(circle at -5% 30%, rgba(52,87,255,0.05), transparent 30%),
    radial-gradient(circle, rgba(52,87,255,0.18) 1px, transparent 1px);
  background-size: auto, auto, 36px 36px;
}

/* ── Orb 1 — large top-left ── */
.background-overlay::before {
  content: '';
  position: absolute;
  width: 620px; height: 620px;
  border-radius: 50%;
  filter: blur(90px);
  background: radial-gradient(circle, rgba(52,87,255,0.22), rgba(124,109,255,0.10));
  top: -160px; left: -140px;
  animation: orb1Move 20s ease-in-out infinite;
}

/* ── Orb 2 — medium bottom-right ── */
.background-overlay::after {
  content: '';
  position: absolute;
  width: 480px; height: 480px;
  border-radius: 50%;
  filter: blur(80px);
  background: radial-gradient(circle, rgba(60,140,255,0.18), rgba(100,60,255,0.06));
  bottom: -100px; right: -80px;
  animation: orb2Move 26s ease-in-out infinite;
}

/* ── Orb 3 — accent center-right (extra div) ── */
.bg-orb3 {
  position: fixed;
  width: 360px; height: 360px;
  border-radius: 50%;
  filter: blur(100px);
  background: radial-gradient(circle, rgba(100,200,255,0.13), rgba(52,87,255,0.04));
  top: 40%; right: 5%;
  pointer-events: none;
  z-index: -2;
  animation: orb3Move 30s ease-in-out infinite;
}

/* ── Aurora wave strip ── */
.bg-aurora {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -2;
  overflow: hidden;
}
.bg-aurora::before {
  content: '';
  position: absolute;
  left: -20%; top: 28%;
  width: 140%; height: 260px;
  border-radius: 50%;
  background: linear-gradient(135deg,
    rgba(52,87,255,0.07) 0%,
    rgba(124,109,255,0.10) 40%,
    rgba(60,200,255,0.07) 70%,
    transparent 100%);
  filter: blur(40px);
  animation: auroraShift 14s ease-in-out infinite alternate;
  transform-origin: center;
}

@keyframes orb1Move {
  0%,100% { transform: translate(0, 0)   scale(1);    opacity: 0.85; }
  33%      { transform: translate(60px, 40px)  scale(1.10); opacity: 1; }
  66%      { transform: translate(20px, 80px)  scale(0.95); opacity: 0.7; }
}
@keyframes orb2Move {
  0%,100% { transform: translate(0, 0)    scale(1);    opacity: 0.75; }
  40%     { transform: translate(-50px,-40px) scale(1.12); opacity: 1; }
  70%     { transform: translate(-20px, 20px) scale(0.92); opacity: 0.6; }
}
@keyframes orb3Move {
  0%,100% { transform: translateY(0)    scale(1);    opacity: 0.65; }
  50%     { transform: translateY(-60px) scale(1.15); opacity: 0.9; }
}
@keyframes auroraShift {
  0%   { transform: scaleX(1)    translateY(0);   opacity: 0.8; }
  50%  { transform: scaleX(1.08) translateY(30px);opacity: 1;   }
  100% { transform: scaleX(0.95) translateY(-20px);opacity: 0.6;}
}
.container { width: var(--content-width); margin: 0 auto; }
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255, 255, 255, 0.85); backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; padding: 0.9rem 0; gap: 1.5rem; }
.brand-logo { height: 42px; width: auto; border-radius: 10px; }
.menu-toggle {
  display: none; flex-direction: column; justify-content: center; gap: 5px;
  width: 40px; height: 40px; background: transparent; border: 1px solid var(--border-light);
  border-radius: 10px; cursor: pointer; padding: 0;
}
.menu-toggle span { display: block; width: 18px; height: 2px; margin: 0 auto; background: var(--text); transition: var(--transition); }
.menu-toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle.is-open span:nth-child(2) { opacity: 0; }
.menu-toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.navbar { display: flex; align-items: center; gap: 1.6rem; flex-wrap: wrap; }
.navbar a { font-size: 0.92rem; font-weight: 500; color: var(--text-muted); padding: 0.4rem 0.1rem; position: relative; transition: color var(--transition); }
.navbar a::after { content: ''; position: absolute; left: 0; right: 0; bottom: -4px; height: 2px; background: var(--accent); transform: scaleX(0); transform-origin: left; transition: transform var(--transition); }
.navbar a:hover, .navbar a.active { color: var(--heading); }
.navbar a:hover::after, .navbar a.active::after { transform: scaleX(1); }
.page-section { padding: clamp(3rem, 6vw, 5.5rem) 0; position: relative; }
.page-section.alt { background: var(--bg-deep); }
.page-section .container { text-align: center; max-width: 880px; }
.section-tag {
  display: inline-block; font-size: 0.78rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--accent); background: var(--accent-soft); border: 1px solid var(--accent-soft-border);
  padding: 0.35rem 0.9rem; border-radius: 999px; margin-bottom: 1rem;
}
.page-section h2 { font-size: clamp(1.6rem, 3vw, 2.3rem); }
.page-section p { font-size: 1.02rem; max-width: 640px; margin-left: auto; margin-right: auto; }
/* ── Image wrapper: glow border + hover zoom + shine sweep ── */
.image {
  margin: 1.8rem auto 0;
  max-width: 640px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--surface-soft);
  box-shadow: var(--shadow);
  position: relative;
  transition: box-shadow 0.5s ease, transform 0.5s cubic-bezier(0.25,0.46,0.45,0.94), border-color 0.4s ease;
  animation: imgFloat 6s ease-in-out infinite;
}
/* Floating bob */
@keyframes imgFloat {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(-8px); }
}
/* Glowing border pulse */
.image::before {
  content: '';
  position: absolute; inset: 0;
  border-radius: var(--radius-lg);
  box-shadow: 0 0 0 0 rgba(52,87,255,0.45);
  animation: imgGlowPulse 3.5s ease-in-out infinite;
  pointer-events: none;
  z-index: 2;
}
@keyframes imgGlowPulse {
  0%,100% { box-shadow: 0 0 0   0   rgba(52,87,255,0.30); }
  50%      { box-shadow: 0 0 22px 8px rgba(52,87,255,0.18); }
}
/* Shine sweep overlay */
.image::after {
  content: '';
  position: absolute;
  top: -60%; left: -80%;
  width: 55%; height: 220%;
  background: linear-gradient(120deg, transparent, rgba(255,255,255,0.55), transparent);
  transform: skewX(-18deg);
  transition: left 0.7s ease;
  pointer-events: none;
  z-index: 3;
}
.image:hover::after { left: 130%; }
/* Hover: lift + deep glow */
.image:hover {
  transform: translateY(-6px) scale(1.012);
  box-shadow: 0 28px 60px rgba(52,87,255,0.18), 0 4px 16px rgba(52,87,255,0.10);
  border-color: var(--accent-soft-border);
  animation-play-state: paused;
}
/* Inner img: zoom + enhance on hover */
.image img {
  display: block;
  width: 100%;
  transition: transform 0.6s cubic-bezier(0.25,0.46,0.45,0.94), filter 0.5s ease;
  filter: brightness(1) saturate(1);
}
.image:hover img {
  transform: scale(1.05);
  filter: brightness(1.04) saturate(1.10);
}
.hero-section { padding-top: clamp(3rem, 7vw, 6rem); overflow: hidden; }
.hero-inner { display: grid; grid-template-columns: 1.05fr 0.95fr; align-items: center; gap: 2.5rem; text-align: left; max-width: none; }
.hero-copy .eyebrow { display: inline-block; font-size: 0.8rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--accent); margin-bottom: 0.9rem; }
.hero-copy h1 { font-size: clamp(2.1rem, 4.4vw, 3.4rem); line-height: 1.12; max-width: 14ch; color: var(--heading); }
.hero-copy h1 em {
  font-style: normal;
  background: linear-gradient(90deg, var(--accent) 0%, #7c6dff 40%, var(--accent) 80%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmerText 3s linear infinite;
}
@keyframes shimmerText {
  0%   { background-position: 200% center; }
  100% { background-position: -200% center; }
}
.hero-copy p { max-width: 46ch; margin-left: 0; }
.hero-actions { display: flex; gap: 1rem; margin: 1.6rem 0 2rem; flex-wrap: wrap; }
.button {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 0.85rem 1.6rem; border-radius: var(--radius-md);
  font-weight: 600; font-size: 0.95rem; border: 1px solid transparent;
  transition: var(--transition); cursor: pointer;
  position: relative; overflow: hidden;
}
/* Ripple layer */
.button .ripple {
  position: absolute; border-radius: 50%;
  background: rgba(255,255,255,0.35);
  transform: scale(0); animation: ripple 0.55s linear;
  pointer-events: none;
}
@keyframes ripple {
  to { transform: scale(4); opacity: 0; }
}
.button.primary { background: var(--accent); color: #fff; box-shadow: 0 14px 30px rgba(52, 87, 255, 0.28); }
.button.secondary { background: var(--surface); border-color: var(--border-light); color: var(--text); }
.button.primary:hover, .button.primary:focus-visible { background: var(--accent-dark); transform: translateY(-2px); }
.button.secondary:hover, .button.secondary:focus-visible { border-color: var(--accent); color: var(--accent); transform: translateY(-2px); }
.hero-stats { display: flex; gap: 2rem; flex-wrap: wrap; }
.hero-stats li { display: flex; flex-direction: column; gap: 0.15rem; }
.hero-stats strong {
  font-size: 1.15rem; color: var(--accent); font-family: 'Poppins', sans-serif;
  display: inline-block;
  transition: transform 0.3s cubic-bezier(.34,1.56,.64,1);
}
.hero-stats li:hover strong { transform: scale(1.15); }
.hero-stats span { font-size: 0.8rem; color: var(--text-muted); }
.hero-visual { display: flex; justify-content: center; }
.scene {
  position: relative; width: 100%; max-width: 360px;
  border-radius: var(--radius-xl); padding: 1.2rem;
  background: var(--surface); border: 1px solid var(--border);
  box-shadow: var(--shadow);
  transform-style: preserve-3d;
  transition: transform var(--transition-smooth), box-shadow var(--transition-smooth);
  will-change: transform;
}
/* Glow ring */
.scene::before {
  content: '';
  position: absolute; inset: -3px;
  border-radius: calc(var(--radius-xl) + 3px);
  background: conic-gradient(from var(--glow-angle, 0deg), transparent 60%, rgba(52,87,255,0.55) 80%, transparent 100%);
  animation: glowSpin 4s linear infinite;
  z-index: -1;
  opacity: 0.6;
}
@property --glow-angle { syntax: '<angle>'; initial-value: 0deg; inherits: false; }
@keyframes glowSpin { to { --glow-angle: 360deg; } }
.cube { border-radius: var(--radius-lg); transition: transform var(--transition-smooth); display: block; }
.scene:hover { box-shadow: 0 30px 70px rgba(52,87,255,0.22); }
.cube:hover { transform: scale(1.02) rotate(-1deg); }
.features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 1.2rem; margin-top: 2rem; text-align: left; }
.feature {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 1.5rem; transition: var(--transition);
  position: relative; overflow: hidden;
}
/* Sweep shine on hover */
.feature::after {
  content: '';
  position: absolute; top: -50%; left: -75%;
  width: 50%; height: 200%;
  background: linear-gradient(120deg, transparent, rgba(255,255,255,0.5), transparent);
  transform: skewX(-20deg);
  transition: left 0.55s ease;
  pointer-events: none;
}
.feature:hover::after { left: 150%; }
.feature:hover { border-color: var(--accent-soft-border); transform: translateY(-4px); box-shadow: var(--shadow-hover); }
.feature-icon { font-size: 1.6rem; display: block; margin-bottom: 0.6rem; transition: transform 0.35s cubic-bezier(.34,1.56,.64,1); }
.feature:hover .feature-icon { transform: scale(1.25) rotate(-8deg); }
.feature h3 { font-size: 1.05rem; margin-bottom: 0.4rem; }
.feature p { font-size: 0.92rem; margin: 0; }
.benefits-list { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 0.8rem; margin-top: 1.6rem; text-align: left; }
.benefits-list li { background: var(--surface-soft); border: 1px solid var(--border); border-radius: var(--radius-sm); padding: 0.8rem 1rem; font-size: 0.92rem; color: var(--text); transition: var(--transition); }
.benefits-list li:hover { border-color: var(--accent-soft-border); background: var(--surface); }
.footer { border-top: 1px solid var(--border); background: var(--heading); padding: 3rem 0 1.5rem; }
.footer-container { width: var(--content-width); margin: 0 auto; display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; text-align: left; }
.footer-logo { font-size: 1.15rem; color: #fff; }
.footer-col h3 { font-size: 0.95rem; letter-spacing: 0.04em; text-transform: uppercase; color: #8fa0ff; }
.footer-col p { font-size: 0.88rem; color: rgba(255,255,255,0.65); }
.footer-col ul li { margin-bottom: 0.5rem; }
.footer-col ul li a { font-size: 0.88rem; color: rgba(255,255,255,0.65); transition: color var(--transition); }
.footer-col ul li a:hover { color: #fff; }
.footer-bottom { width: var(--content-width); margin: 2rem auto 0; padding-top: 1.2rem; border-top: 1px solid rgba(255,255,255,0.12); text-align: center; font-size: 0.8rem; color: rgba(255,255,255,0.55); }
.back-to-top { position: fixed; right: 1.4rem; bottom: 1.4rem; width: 44px; height: 44px; border-radius: 50%; border: 1px solid var(--border-light); background: var(--surface); color: var(--text); font-size: 1.1rem; cursor: pointer; opacity: 0; pointer-events: none; transform: translateY(10px); transition: var(--transition); z-index: 40; box-shadow: var(--shadow); }
.back-to-top.visible { opacity: 1; pointer-events: auto; transform: translateY(0); }
.back-to-top:hover { border-color: var(--accent); color: var(--accent); }
[data-reveal] { opacity: 0; transform: translateY(24px); transition: opacity 0.7s ease, transform 0.7s ease; }
[data-reveal].is-visible { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) {
  [data-reveal] { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
  .background-overlay::before, .background-overlay::after { animation: none; opacity: 0.5; }
  .bg-orb3  { animation: none; opacity: 0.4; }
  .bg-aurora::before { animation: none; opacity: 0.5; }
  .scene::before { animation: none; }
  .hero-copy h1 em { animation: none; background-position: 0 center; }
  .image { animation: none; }
  .image::before { animation: none; }
  .image img { transition: none; }
}
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; text-align: center; }
  .hero-copy h1 { max-width: none; margin-left: auto; margin-right: auto; }
  .hero-copy p { margin-left: auto; margin-right: auto; }
  .hero-actions, .hero-stats { justify-content: center; }
  .footer-container { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 720px) {
  .menu-toggle { display: flex; }
  .navbar { position: absolute; top: 100%; left: 0; right: 0; flex-direction: column; align-items: flex-start; gap: 0.2rem; background: #fff; border-bottom: 1px solid var(--border); padding: 0.6rem 1.4rem 1.2rem; max-height: 0; overflow: hidden; transition: max-height var(--transition); }
  .navbar.is-open { max-height: 480px; padding-top: 1rem; }
  .navbar a { width: 100%; padding: 0.6rem 0; }
}
@media (max-width: 560px) { .footer-container { grid-template-columns: 1fr; } }

/* Stats grid (About) */
.stats-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 1.2rem; margin: 2rem 0; }
.stat { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 1.6rem 1rem; text-align: center; transition: var(--transition); }
.stat:hover { border-color: var(--accent-soft-border); box-shadow: var(--shadow-hover); transform: translateY(-4px); }
.stat h3 { color: var(--accent); font-size: 1.5rem; margin-bottom: 0.2rem; }
.stat p { margin: 0; font-size: 0.88rem; }

/* Initiative banner */
.initiative { display: flex; align-items: center; justify-content: center; gap: 0.6rem; margin-top: 1rem; }
.initiative-icon { font-size: 1.6rem; }
.initiative h2 { margin: 0; font-size: 1.3rem; }

/* Testimonials */
.testimonial-slider { max-width: 640px; margin: 1.8rem auto 0; }
.testimonial {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: 2rem; margin: 0; box-shadow: var(--shadow); transition: opacity 0.4s ease;
}
.testimonial p { font-size: 1.05rem; color: var(--text); font-style: italic; }
.testimonial cite { display: block; margin-top: 0.8rem; font-size: 0.88rem; color: var(--accent); font-style: normal; font-weight: 600; }

/* CTA actions */
.cta-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; margin-top: 1.6rem; }

/* Services grid (Services page) */
.services-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.2rem; margin-top: 2rem; text-align: left;
}
.service-card {
  display: block; background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 1.6rem; transition: var(--transition);
}
.service-card:hover { border-color: var(--accent-soft-border); transform: translateY(-4px); box-shadow: var(--shadow-hover); }
.service-icon { font-size: 1.8rem; display: block; margin-bottom: 0.6rem; }
.service-card h3 { font-size: 1.05rem; margin-bottom: 0.4rem; }
.service-card p { font-size: 0.92rem; margin: 0; }

/* Features list (checklist) */
.features-list {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1rem; margin-top: 2rem; text-align: left;
}
.feature-item {
  display: flex; align-items: flex-start; gap: 0.7rem;
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius-md); padding: 1rem 1.2rem;
}
.feature-check {
  flex-shrink: 0; width: 24px; height: 24px; border-radius: 50%;
  background: var(--accent-soft); color: var(--accent); font-weight: 700;
  display: flex; align-items: center; justify-content: center; font-size: 0.85rem;
}
.feature-item p { margin: 0; font-size: 0.94rem; color: var(--text); }

/* Verification & auth forms */
.verification-box, .auth-container {
  max-width: 520px; margin: 0 auto; background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 2rem; box-shadow: var(--shadow); text-align: left;
}
.verification-box h2, .auth-container h2 { text-align: center; font-size: 1.2rem; }
.form-group { margin-bottom: 1.1rem; }
.form-group label { display: block; font-size: 0.85rem; font-weight: 600; color: var(--text); margin-bottom: 0.4rem; }
.form-group input {
  width: 100%; padding: 0.7rem 0.9rem; border-radius: var(--radius-sm); border: 1px solid var(--border-light);
  background: var(--surface-soft); color: var(--text); font-size: 0.95rem; font-family: inherit;
}
.form-group input:focus { outline: none; border-color: var(--accent); background: #fff; }
.verify-form .button, .login-form > .button { width: 100%; margin-top: 0.4rem; }
.login-actions-row { display: flex; align-items: center; justify-content: space-between; margin-bottom: 1rem; gap: 0.8rem; flex-wrap: wrap; }
.login-actions-row .button { width: auto; margin-top: 0; flex: 1; }
.forgot-link { background: none; border: none; color: var(--accent); font-size: 0.85rem; cursor: pointer; padding: 0; }
.demo-note { text-align: center; font-size: 0.8rem; margin-top: 1rem; }

.verification-card, .verification-error {
  margin-top: 1.4rem; border-radius: var(--radius-md); padding: 1.2rem 1.4rem; text-align: left;
}
.verification-card { background: rgba(34, 197, 94, 0.08); border: 1px solid rgba(34, 197, 94, 0.3); }
.verification-error { background: rgba(239, 68, 68, 0.08); border: 1px solid rgba(239, 68, 68, 0.28); }
.verification-details p { margin: 0.2rem 0; font-size: 0.92rem; color: var(--text); }

/* Certificates grid (Download) */
.user-header { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1rem; margin-bottom: 2rem; text-align: left; }
.certificates-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 1.2rem; text-align: left; }
.certificate-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 1.4rem; }
.cert-icon { font-size: 1.6rem; margin-bottom: 0.5rem; }
.cert-details p { font-size: 0.85rem; margin: 0.15rem 0; }
.download-btn { width: 100%; margin-top: 0.8rem; }

/* Contact page */
.contact-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 1.2rem; text-align: center; }
.contact-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 1.6rem; }
.contact-icon { font-size: 1.8rem; margin-bottom: 0.6rem; }
.contact-link { color: var(--accent); font-weight: 600; }
.map-embed-wrapper { border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--border); box-shadow: var(--shadow); }
.map-embed-wrapper iframe { width: 100%; height: 320px; border: 0; display: block; }

/* FAQ accordion */
.faq-list { max-width: 720px; margin: 1.6rem auto 0; text-align: left; display: flex; flex-direction: column; gap: 0.7rem; }
.faq-item { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-md); padding: 1rem 1.2rem; }
.faq-item summary { cursor: pointer; font-weight: 600; color: var(--heading); list-style: none; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::before { content: '+ '; color: var(--accent); font-weight: 700; }
.faq-item[open] summary::before { content: '– '; }
.faq-item p { margin: 0.7rem 0 0; font-size: 0.92rem; }

/* Larger base text size */
@media (max-width: 560px) {
  html { font-size: 17px; }
}

/* ══════════════════════════════════════════
   TREE PLANTATION PAGE — VISUAL EFFECTS
══════════════════════════════════════════ */

/* Leaf canvas sits above particle canvas, below content */
#leafCanvas {
  position: fixed; inset: 0; width: 100%; height: 100%;
  pointer-events: none; z-index: -1;
}

/* ── Green ambient orbs ── */
.bg-tree-orb {
  position: fixed; border-radius: 50%;
  pointer-events: none; z-index: -2;
}
.bg-tree-orb--1 {
  width: 560px; height: 560px;
  background: radial-gradient(circle, rgba(56,142,60,0.18), rgba(27,94,32,0.06));
  filter: blur(90px);
  top: -140px; left: -100px;
  animation: treeOrb1 22s ease-in-out infinite;
}
.bg-tree-orb--2 {
  width: 420px; height: 420px;
  background: radial-gradient(circle, rgba(124,179,66,0.14), rgba(56,142,60,0.05));
  filter: blur(80px);
  bottom: -80px; right: -60px;
  animation: treeOrb2 28s ease-in-out infinite;
}
.bg-tree-orb--3 {
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(100,221,23,0.10), rgba(56,142,60,0.03));
  filter: blur(70px);
  top: 45%; left: 60%;
  animation: treeOrb3 18s ease-in-out infinite;
}
@keyframes treeOrb1 {
  0%,100% { transform: translate(0,0)    scale(1);   opacity: 0.80; }
  40%      { transform: translate(50px,40px) scale(1.1); opacity: 1; }
  70%      { transform: translate(20px,70px) scale(0.9); opacity: 0.65; }
}
@keyframes treeOrb2 {
  0%,100% { transform: translate(0,0)      scale(1);   opacity: 0.70; }
  50%     { transform: translate(-40px,-50px) scale(1.12); opacity: 0.95; }
}
@keyframes treeOrb3 {
  0%,100% { transform: translateY(0)    scale(1);   opacity: 0.60; }
  50%     { transform: translateY(-50px) scale(1.15); opacity: 0.90; }
}

/* ── Hero section with tree scene ── */
.tree-hero-section {
  position: relative;
  overflow: hidden;
  padding-bottom: clamp(4rem, 8vw, 8rem);
}

/* ── SVG Tree scene ── */
.tree-scene {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 1.5rem;
  pointer-events: none;
  z-index: 0;
}

/* Swaying animation for trees */
.tree {
  display: block;
  transform-origin: bottom center;
  filter: drop-shadow(0 8px 24px rgba(27,94,32,0.35));
}
.tree--lg {
  height: clamp(120px, 18vw, 200px);
  animation: treeSway 5s ease-in-out infinite;
}
.tree--md {
  height: clamp(90px, 14vw, 160px);
  animation: treeSway 6.5s ease-in-out infinite reverse;
  animation-delay: -2s;
}
.tree--sm {
  height: clamp(70px, 10vw, 130px);
  animation: treeSway 4s ease-in-out infinite;
  animation-delay: -1s;
}
@keyframes treeSway {
  0%,100% { transform: rotate(-2.5deg); }
  50%      { transform: rotate(2.5deg);  }
}

/* Glow pulse on each tree */
.tree--lg { filter: drop-shadow(0 0 18px rgba(67,160,71,0.55)) drop-shadow(0 8px 16px rgba(27,94,32,0.30)); }
.tree--md { filter: drop-shadow(0 0 12px rgba(56,142,60,0.45)) drop-shadow(0 6px 12px rgba(27,94,32,0.25)); animation-name: treeSway, treeGlow; animation-duration: 6.5s, 3s; }
.tree--sm { filter: drop-shadow(0 0  8px rgba(124,179,66,0.40)); }
@keyframes treeGlow {
  0%,100% { filter: drop-shadow(0 0 10px rgba(56,142,60,0.35)) drop-shadow(0 6px 12px rgba(27,94,32,0.2)); }
  50%     { filter: drop-shadow(0 0 22px rgba(76,175,80,0.70)) drop-shadow(0 6px 12px rgba(27,94,32,0.3)); }
}

/* Green grass ground strip */
.tree-ground {
  position: absolute;
  bottom: 0; left: -5%; right: -5%;
  height: 28px;
  background: linear-gradient(to bottom, #4caf50, #2e7d32);
  border-radius: 50% 50% 0 0 / 80% 80% 0 0;
  box-shadow: 0 -4px 24px rgba(56,142,60,0.30);
}

/* ── Living-frame image ── */
.tree-living-frame {
  position: relative;
  max-width: 640px;
  margin: 2rem auto 2rem;
  border-radius: var(--radius-lg);
  overflow: visible;
}
.tree-living-frame img {
  display: block;
  width: 100%;
  border-radius: var(--radius-lg);
  border: 2px solid rgba(76,175,80,0.4);
  box-shadow: 0 0 0 0 rgba(76,175,80,0.5);
  animation: framePulse 3s ease-in-out infinite;
}
@keyframes framePulse {
  0%,100% { box-shadow: 0 0  0   0   rgba(76,175,80,0.40), 0 20px 50px rgba(27,94,32,0.12); }
  50%     { box-shadow: 0 0 28px 8px rgba(76,175,80,0.30), 0 20px 50px rgba(27,94,32,0.18); }
}

/* Corner leaf pips orbit the image */
.leaf-pip {
  position: absolute;
  font-size: 1.8rem;
  line-height: 1;
  pointer-events: none;
  animation: leafOrbit 4s ease-in-out infinite;
  filter: drop-shadow(0 2px 6px rgba(27,94,32,0.35));
}
.leaf-pip--tl { top:  -18px; left:  -18px; animation-delay: 0s; }
.leaf-pip--tr { top:  -18px; right: -18px; animation-delay: -1s; }
.leaf-pip--bl { bottom: -18px; left: -18px; animation-delay: -2s; }
.leaf-pip--br { bottom: -18px; right:-18px; animation-delay: -3s; }
@keyframes leafOrbit {
  0%,100% { transform: translateY(0)    rotate(0deg)   scale(1);    }
  25%     { transform: translateY(-8px)  rotate(12deg)  scale(1.15); }
  50%     { transform: translateY(-4px)  rotate(-6deg)  scale(1.08); }
  75%     { transform: translateY(-10px) rotate(8deg)   scale(1.2);  }
}

/* ── Reduced motion overrides ── */
@media (prefers-reduced-motion: reduce) {
  .tree, .tree--md { animation: none; }
  .bg-tree-orb { animation: none; }
  .tree-living-frame img { animation: none; box-shadow: 0 20px 50px rgba(27,94,32,0.12); }
  .leaf-pip { animation: none; }
}

/* ══════════════════════════════════════════
   HELLO USERS SECTION — RICH EFFECTS
══════════════════════════════════════════ */

/* Section base */
.users-section {
  position: relative;
  overflow: hidden;
}

/* ── Mouse-tracked spotlight ── */
.users-spotlight {
  position: absolute;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(52,87,255,0.10) 0%, transparent 70%);
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 0;
  transition: left 0.12s ease, top 0.12s ease;
  filter: blur(10px);
}

/* ── Floating emoji particles ── */
.users-particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}
.uparticle {
  position: absolute;
  font-size: 1.4rem;
  opacity: 0;
  animation: uParticleFloat 8s ease-in-out infinite;
  filter: drop-shadow(0 2px 6px rgba(52,87,255,0.25));
}
.uparticle:nth-child(1) { left: 5%;  top: 15%; animation-delay: 0s;    animation-duration: 9s;  }
.uparticle:nth-child(2) { left: 20%; top: 70%; animation-delay: -2s;   animation-duration: 11s; }
.uparticle:nth-child(3) { left: 40%; top: 8%;  animation-delay: -4s;   animation-duration: 7s;  }
.uparticle:nth-child(4) { left: 60%; top: 80%; animation-delay: -1s;   animation-duration: 10s; }
.uparticle:nth-child(5) { left: 75%; top: 20%; animation-delay: -3s;   animation-duration: 8.5s;}
.uparticle:nth-child(6) { left: 88%; top: 55%; animation-delay: -5s;   animation-duration: 12s; }
.uparticle:nth-child(7) { left: 30%; top: 40%; animation-delay: -0.5s; animation-duration: 9.5s;}
.uparticle:nth-child(8) { left: 55%; top: 50%; animation-delay: -6s;   animation-duration: 10s; }
@keyframes uParticleFloat {
  0%   { opacity: 0;    transform: translateY(0)    rotate(0deg)   scale(1); }
  20%  { opacity: 0.7; }
  50%  { opacity: 0.9;  transform: translateY(-30px) rotate(20deg)  scale(1.1); }
  80%  { opacity: 0.7; }
  100% { opacity: 0;    transform: translateY(0)    rotate(0deg)   scale(1); }
}

/* ── Avatar row ── */
.users-avatar-row {
  display: flex;
  justify-content: center;
  gap: 0.6rem;
  margin-bottom: 1.2rem;
}
.uavatar {
  width: 52px; height: 52px;
  border-radius: 50%;
  font-size: 1.6rem;
  display: flex; align-items: center; justify-content: center;
  background: var(--surface);
  border: 2px solid var(--accent-soft-border);
  box-shadow: 0 0 0 4px rgba(52,87,255,0.10);
  animation: avatarPop 0.5s cubic-bezier(0.34,1.56,0.64,1) both,
             avatarPulse 3s ease-in-out infinite;
  position: relative;
  z-index: 1;
}
.uavatar--1 { animation-delay: 0s,    0s;   }
.uavatar--2 { animation-delay: 0.1s,  -1s;  }
.uavatar--3 { animation-delay: 0.2s,  -2s;  }
.uavatar--4 { animation-delay: 0.3s,  -0.5s;}
.uavatar--5 { animation-delay: 0.4s,  -1.5s;}
@keyframes avatarPop {
  0%   { opacity: 0; transform: scale(0) translateY(20px); }
  100% { opacity: 1; transform: scale(1) translateY(0); }
}
@keyframes avatarPulse {
  0%,100% { box-shadow: 0 0 0 4px rgba(52,87,255,0.10); }
  50%     { box-shadow: 0 0 0 8px rgba(52,87,255,0.22), 0 0 20px rgba(52,87,255,0.15); }
}
.uavatar:hover {
  transform: scale(1.2) translateY(-4px);
  z-index: 2;
  transition: transform 0.3s cubic-bezier(0.34,1.56,0.64,1);
}

/* ── Typed text shimmer ── */
.users-typed {
  background: linear-gradient(90deg, var(--accent) 0%, #a78bfa 45%, var(--accent) 90%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmerText 2.8s linear infinite;
  display: inline-block;
  border-right: 3px solid var(--accent);
  padding-right: 3px;
  animation: shimmerText 2.8s linear infinite, typedBlink 0.8s step-end infinite;
}
@keyframes typedBlink {
  0%,100% { border-color: var(--accent); }
  50%     { border-color: transparent; }
}

/* ── Glowing benefit cards ── */
.users-benefits {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 0.9rem;
  margin-top: 2rem;
  list-style: none;
  padding: 0;
  text-align: left;
}
.ubenefit {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 0.9rem 1.1rem;
  font-size: 0.93rem;
  color: var(--text);
  position: relative;
  overflow: hidden;
  transition: transform 0.35s cubic-bezier(0.25,0.46,0.45,0.94),
              border-color 0.35s ease,
              box-shadow 0.35s ease;
  cursor: default;
}
/* Shine sweep */
.ubenefit::after {
  content: '';
  position: absolute;
  top: -50%; left: -80%;
  width: 50%; height: 200%;
  background: linear-gradient(120deg, transparent, rgba(255,255,255,0.45), transparent);
  transform: skewX(-18deg);
  transition: left 0.5s ease;
  pointer-events: none;
}
.ubenefit:hover::after { left: 140%; }
.ubenefit:hover {
  transform: translateY(-4px) scale(1.03);
  border-color: var(--accent-soft-border);
  box-shadow: 0 8px 28px rgba(52,87,255,0.15), 0 0 0 1px rgba(52,87,255,0.12);
}
/* Icon */
.ubenefit-icon {
  font-size: 1.4rem;
  flex-shrink: 0;
  transition: transform 0.35s cubic-bezier(0.34,1.56,0.64,1);
  filter: drop-shadow(0 2px 4px rgba(52,87,255,0.20));
}
.ubenefit:hover .ubenefit-icon {
  transform: scale(1.3) rotate(-10deg);
}

/* Container override for users */
.users-inner {
  position: relative;
  z-index: 1;
  max-width: 880px;
  text-align: center;
}
.users-greeting { margin-bottom: 0.5rem; }

/* ── Reduced motion ── */
@media (prefers-reduced-motion: reduce) {
  .uparticle       { animation: none; opacity: 0.5; }
  .uavatar         { animation: none; }
  .users-typed     { animation: none; border-color: var(--accent); }
  .ubenefit::after { transition: none; }
  .users-spotlight { transition: none; }
}

/* ══════════════════════════════════════════
   E-CERTIFICATE EFFECTS
══════════════════════════════════════════ */

/* ── Shared cert hero section ── */
.cert-hero-section {
  position: relative;
  overflow: hidden;
  padding-bottom: clamp(4rem, 8vw, 7rem);
}

/* ══ VERIFY PAGE: Certificate Mockup ══ */
.cert-mockup-wrap {
  position: absolute;
  right: 4%;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
  pointer-events: none;
}
.cert-mockup {
  width: clamp(180px, 20vw, 260px);
  perspective: 900px;
  animation: certFloat 5s ease-in-out infinite;
}
@keyframes certFloat {
  0%,100% { transform: translateY(0) rotateY(-6deg) rotateX(4deg); }
  50%     { transform: translateY(-18px) rotateY(6deg) rotateX(-2deg); }
}
.cert-mockup-inner {
  background: linear-gradient(135deg, #fff 0%, #f0f4ff 50%, #e8eeff 100%);
  border-radius: 16px;
  padding: 1.4rem;
  border: 1.5px solid rgba(52,87,255,0.25);
  box-shadow:
    0 30px 60px rgba(52,87,255,0.20),
    0 0 0 1px rgba(52,87,255,0.10),
    inset 0 1px 0 rgba(255,255,255,0.9);
  position: relative;
  overflow: hidden;
  transform-style: preserve-3d;
}

/* Holographic rainbow strip */
.cert-holo-strip {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 7px;
  background: linear-gradient(90deg,
    #ff6b6b, #ffa94d, #ffd43b, #69db7c, #4dabf7, #9775fa, #f783ac, #ff6b6b);
  background-size: 200% auto;
  animation: holoShift 3s linear infinite;
  border-radius: 16px 16px 0 0;
}
@keyframes holoShift {
  0%   { background-position: 0% center; }
  100% { background-position: 200% center; }
}

/* VERIFIED ribbon */
.cert-ribbon {
  position: absolute;
  top: 16px; right: -22px;
  background: linear-gradient(135deg, var(--accent), #6c63ff);
  color: #fff;
  font-size: 0.6rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  padding: 0.25rem 2rem;
  transform: rotate(35deg);
  box-shadow: 0 4px 12px rgba(52,87,255,0.40);
}

/* Gold seal */
.cert-seal {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: conic-gradient(#ffd700, #ffec8b, #ffd700, #ffb700, #ffd700);
  display: flex; align-items: center; justify-content: center;
  margin: 0.6rem auto 0.8rem;
  box-shadow: 0 0 0 4px rgba(255,215,0,0.25), 0 4px 16px rgba(255,183,0,0.4);
  animation: sealSpin 8s linear infinite;
  position: relative;
  z-index: 1;
}
@keyframes sealSpin {
  to { filter: hue-rotate(30deg) brightness(1.05); }
}
.cert-seal-inner {
  font-size: 1.4rem;
  font-weight: 900;
  color: #7a4f00;
  text-shadow: 0 1px 2px rgba(0,0,0,0.15);
}

/* Skeleton text lines */
.cert-lines { display: flex; flex-direction: column; gap: 0.45rem; margin-bottom: 0.8rem; }
.cert-line {
  height: 8px; border-radius: 4px;
  background: linear-gradient(90deg, #dde3ff, #b8c3ff, #dde3ff);
  background-size: 200% auto;
  animation: lineShimmer 2s linear infinite;
}
@keyframes lineShimmer {
  0%   { background-position: 200% center; }
  100% { background-position: -200% center; }
}
.cert-line--lg  { width: 100%; animation-delay: 0s; }
.cert-line--md  { width: 75%;  animation-delay: 0.2s; }
.cert-line--sm  { width: 55%;  animation-delay: 0.4s; }
.cert-line--xs  { width: 35%;  animation-delay: 0.6s; }

/* QR code area */
.cert-qr {
  position: relative;
  width: 44px; height: 44px;
  margin: 0 auto;
  display: flex; align-items: center; justify-content: center;
}
.cert-qr-inner {
  font-size: 2rem;
  line-height: 1;
  filter: grayscale(1) opacity(0.7);
}
.cert-qr-ring {
  position: absolute; inset: -6px;
  border-radius: 50%;
  border: 2px solid transparent;
  border-top-color: var(--accent);
  border-right-color: rgba(52,87,255,0.4);
  animation: qrSpin 1.8s linear infinite;
}
@keyframes qrSpin { to { transform: rotate(360deg); } }

/* ══ VERIFY FORM: Scan-line + glow ══ */
.cert-verify-box {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--accent-soft-border) !important;
  box-shadow: 0 0 0 0 rgba(52,87,255,0.3), var(--shadow) !important;
  animation: boxPulse 4s ease-in-out infinite;
}
@keyframes boxPulse {
  0%,100% { box-shadow: 0 0 0   0   rgba(52,87,255,0.20), var(--shadow); }
  50%     { box-shadow: 0 0 28px 6px rgba(52,87,255,0.14), var(--shadow); }
}
.cert-scan-line {
  position: absolute;
  left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(52,87,255,0.6), transparent);
  top: 0;
  animation: scanDown 3s ease-in-out infinite;
  pointer-events: none;
  z-index: 2;
}
@keyframes scanDown {
  0%   { top: 0%;   opacity: 1; }
  90%  { top: 100%; opacity: 1; }
  100% { top: 100%; opacity: 0; }
}

/* ══ CERTIFICATE CARDS: Holographic sheen ══ */
.certificate-card {
  position: relative;
  overflow: hidden;
  transition: transform 0.4s cubic-bezier(0.25,0.46,0.45,0.94),
              box-shadow 0.4s ease, border-color 0.4s ease;
}
.certificate-card::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg,
    transparent 40%,
    rgba(52,87,255,0.06) 50%,
    rgba(124,109,255,0.08) 60%,
    transparent 70%);
  background-size: 200% 200%;
  animation: cardHolo 4s ease-in-out infinite;
  pointer-events: none;
  z-index: 1;
  border-radius: inherit;
}
@keyframes cardHolo {
  0%,100% { background-position: 0% 0%; }
  50%     { background-position: 100% 100%; }
}
.certificate-card::after {
  content: '';
  position: absolute;
  top: -50%; left: -80%;
  width: 50%; height: 200%;
  background: linear-gradient(120deg, transparent, rgba(255,255,255,0.40), transparent);
  transform: skewX(-18deg);
  transition: left 0.6s ease;
  pointer-events: none;
  z-index: 2;
}
.certificate-card:hover::after  { left: 140%; }
.certificate-card:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 20px 50px rgba(52,87,255,0.18);
  border-color: var(--accent-soft-border);
}

/* ══ DOWNLOAD PAGE: Floating cert badges ══ */
.cert-badges-wrap {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  overflow: hidden;
}
.cert-badge {
  position: absolute;
  display: flex; flex-direction: column; align-items: center; gap: 0.3rem;
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(8px);
  border: 1px solid var(--accent-soft-border);
  border-radius: var(--radius-md);
  padding: 0.7rem 1rem;
  font-size: 1.6rem;
  box-shadow: 0 8px 24px rgba(52,87,255,0.14);
  animation: badgeFloat 6s ease-in-out infinite;
}
.cert-badge span {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  font-family: 'Inter', sans-serif;
}
.cert-badge--1 { top: 18%; left: 5%;  animation-delay: 0s;   }
.cert-badge--2 { top: 55%; right: 6%; animation-delay: -2s;  }
.cert-badge--3 { top: 10%; right: 8%; animation-delay: -4s;  }
@keyframes badgeFloat {
  0%,100% { transform: translateY(0)    rotate(-2deg); }
  50%     { transform: translateY(-14px) rotate(2deg);  }
}

/* ── Reduced motion ── */
@media (prefers-reduced-motion: reduce) {
  .cert-mockup        { animation: none; }
  .cert-holo-strip    { animation: none; }
  .cert-seal          { animation: none; }
  .cert-line          { animation: none; }
  .cert-qr-ring       { animation: none; }
  .cert-scan-line     { animation: none; display: none; }
  .cert-verify-box    { animation: none; }
  .certificate-card::before { animation: none; }
  .cert-badge         { animation: none; }
}

/* ══════════════════════════════════════════
   HELLO ORGANIZERS SECTION
══════════════════════════════════════════ */
.org-section {
  position: relative;
  overflow: hidden;
}

/* ── Network Background ── */
.org-network {
  position: absolute;
  inset: 0;
  background-image: 
    radial-gradient(circle at center, rgba(52,87,255,0.08) 0%, transparent 60%),
    linear-gradient(rgba(52,87,255,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(52,87,255,0.05) 1px, transparent 1px);
  background-size: 100% 100%, 40px 40px, 40px 40px;
  background-position: center, center, center;
  z-index: 0;
  opacity: 0.6;
  pointer-events: none;
  animation: bgPan 20s linear infinite;
}
@keyframes bgPan {
  0%   { background-position: center, 0px 0px, 0px 0px; }
  100% { background-position: center, 40px 40px, 40px 40px; }
}

/* ── Floating Tech Elements ── */
.org-elements {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}
.org-el {
  position: absolute;
  font-size: 1.8rem;
  opacity: 0;
  filter: drop-shadow(0 4px 12px rgba(52,87,255,0.25));
  animation: orgFloat 10s ease-in-out infinite;
}
.org-el--1 { left: 10%; top: 20%; animation-delay: 0s;   animation-duration: 9s;  }
.org-el--2 { right: 12%; top: 30%; animation-delay: -2s; animation-duration: 11s; }
.org-el--3 { left: 15%; top: 70%; animation-delay: -4s;  animation-duration: 10s; }
.org-el--4 { right: 18%; top: 65%; animation-delay: -1s; animation-duration: 12s; }
.org-el--5 { left: 45%; top: 12%; animation-delay: -5s;  animation-duration: 9.5s; }
@keyframes orgFloat {
  0%   { opacity: 0;   transform: translateY(0) scale(1) rotate(0deg); }
  20%  { opacity: 0.8; }
  50%  { opacity: 1;   transform: translateY(-25px) scale(1.1) rotate(15deg); }
  80%  { opacity: 0.8; }
  100% { opacity: 0;   transform: translateY(0) scale(1) rotate(0deg); }
}

/* ── Container Override ── */
.org-inner {
  position: relative;
  z-index: 1;
}

/* ── Greeting Pulse Ring ── */
.org-greeting { margin-bottom: 0.5rem; text-align: center; }
.org-pulse-ring {
  width: 64px; height: 64px;
  border-radius: 50%;
  margin: 0 auto 1.5rem;
  background: var(--surface);
  border: 2px solid var(--accent);
  display: flex; align-items: center; justify-content: center;
  position: relative;
  box-shadow: 0 0 0 0 rgba(52,87,255,0.3);
  animation: orgPulseRing 2.5s infinite cubic-bezier(0.66, 0, 0, 1);
}
.org-icon {
  font-size: 1.8rem;
  z-index: 2;
  animation: iconBounce 3s ease-in-out infinite;
}
@keyframes orgPulseRing {
  to { box-shadow: 0 0 0 25px rgba(52,87,255,0); }
}
@keyframes iconBounce {
  0%,100% { transform: translateY(0); }
  50%     { transform: translateY(-3px); }
}

/* ── Typed text shimmer ── */
.org-typed {
  background: linear-gradient(90deg, #3457ff 0%, #00d2ff 45%, #3457ff 90%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-block;
  border-right: 3px solid var(--accent);
  padding-right: 3px;
  animation: shimmerText 2.8s linear infinite, typedBlink 0.8s step-end infinite;
}

/* ── Glowing benefit cards (reused structure from .users-benefits) ── */
.org-benefits {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
  margin-top: 2.5rem;
  list-style: none;
  padding: 0;
  text-align: left;
}
.obenefit {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1rem 1.2rem;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text);
  position: relative;
  overflow: hidden;
  transition: transform 0.35s cubic-bezier(0.25,0.46,0.45,0.94),
              border-color 0.35s ease,
              box-shadow 0.35s ease;
  cursor: default;
}
.obenefit::after {
  content: '';
  position: absolute;
  top: -50%; left: -80%;
  width: 50%; height: 200%;
  background: linear-gradient(120deg, transparent, rgba(52,87,255,0.15), transparent);
  transform: skewX(-18deg);
  transition: left 0.5s ease;
  pointer-events: none;
}
.obenefit:hover::after { left: 140%; }
.obenefit:hover {
  transform: translateY(-5px) scale(1.02);
  border-color: var(--accent);
  box-shadow: 0 10px 30px rgba(52,87,255,0.15), 0 0 0 1px rgba(52,87,255,0.2);
}
.obenefit-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
  transition: transform 0.35s cubic-bezier(0.34,1.56,0.64,1);
  filter: drop-shadow(0 2px 4px rgba(52,87,255,0.15));
}
.obenefit:hover .obenefit-icon {
  transform: scale(1.25) rotate(5deg);
}

@media (prefers-reduced-motion: reduce) {
  .org-network      { animation: none; opacity: 0.3; }
  .org-el           { animation: none; opacity: 0.5; }
  .org-pulse-ring   { animation: none; }
  .org-icon         { animation: none; }
  .org-typed        { animation: none; border-color: var(--accent); }
  .obenefit::after  { transition: none; }
}

/* ══════════════════════════════════════════
   CERTIFICATES WITH PURPOSE SECTION
══════════════════════════════════════════ */
.purpose-section {
  position: relative;
  overflow: hidden;
  background: var(--bg-deep);
}
.purpose-inner {
  position: relative;
  z-index: 2;
  text-align: center;
}

/* ── Green Ambient Orbs ── */
.purpose-bg-orbs {
  position: absolute; inset: 0;
  pointer-events: none; z-index: 0;
  overflow: hidden;
}
.purpose-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.15;
  animation: purposeOrbFloat 12s ease-in-out infinite alternate;
}
.purpose-orb--1 {
  width: 40vw; height: 40vw;
  background: #2e7d32;
  top: -10%; left: -10%;
}
.purpose-orb--2 {
  width: 35vw; height: 35vw;
  background: #4caf50;
  bottom: -5%; right: -5%;
  animation-delay: -5s;
}
@keyframes purposeOrbFloat {
  0%   { transform: translate(0, 0) scale(1); }
  100% { transform: translate(8vw, 8vw) scale(1.1); }
}

/* ── Floating Leaves ── */
.purpose-leaves {
  position: absolute; inset: 0;
  pointer-events: none; z-index: 1;
}
.pleaf {
  position: absolute;
  font-size: 1.5rem;
  opacity: 0;
  filter: drop-shadow(0 4px 8px rgba(46,125,50,0.3));
  animation: pleafFloat 10s ease-in-out infinite;
}
.pleaf--1 { left: 15%; top: 25%; animation-delay: 0s;   animation-duration: 9s; }
.pleaf--2 { right: 20%; top: 15%; animation-delay: -2s; animation-duration: 11s; }
.pleaf--3 { left: 10%; top: 75%; animation-delay: -4s;  animation-duration: 10s; }
.pleaf--4 { right: 12%; top: 80%; animation-delay: -1s; animation-duration: 12s; }
.pleaf--5 { left: 50%; top: 10%; animation-delay: -5s;  animation-duration: 8.5s; }
@keyframes pleafFloat {
  0%   { opacity: 0;   transform: translateY(0) rotate(0deg) scale(0.9); }
  20%  { opacity: 0.8; }
  50%  { opacity: 1;   transform: translateY(40px) rotate(35deg) scale(1.1); }
  80%  { opacity: 0.8; }
  100% { opacity: 0;   transform: translateY(80px) rotate(70deg) scale(0.9); }
}

/* ── Typography & Tags ── */
.section-tag--green {
  color: #2e7d32;
  background: rgba(46,125,50,0.1);
  border-color: rgba(46,125,50,0.2);
}
.purpose-glow {
  background: linear-gradient(90deg, #2e7d32 0%, #4caf50 50%, #2e7d32 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmerText 3s linear infinite;
  display: inline-block;
}

/* ── Frame Adjustments ── */
.purpose-image-frame {
  margin-top: 3rem;
  margin-bottom: 2.5rem;
}

/* ── Green Button ── */
.button--green {
  background: #2e7d32;
  box-shadow: 0 14px 30px rgba(46,125,50,0.25);
}
.button--green:hover, .button--green:focus-visible {
  background: #1b5e20;
  box-shadow: 0 18px 40px rgba(46,125,50,0.3);
}
.button--green .ripple {
  background: rgba(255,255,255,0.4);
}

/* ── Reduced motion ── */
@media (prefers-reduced-motion: reduce) {
  .purpose-orb   { animation: none; opacity: 0.1; }
  .pleaf         { animation: none; opacity: 0.4; }
  .purpose-glow  { animation: none; }
}

/* ══════════════════════════════════════════
   HERO SECTION UPGRADES
══════════════════════════════════════════ */
.hero-section { position: relative; }
.hero-glow-bg {
  position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background: radial-gradient(circle at 70% 30%, rgba(52,87,255,0.15) 0%, transparent 50%),
              radial-gradient(circle at 30% 70%, rgba(124,109,255,0.1) 0%, transparent 50%);
  filter: blur(40px);
  animation: heroGlowPan 15s ease-in-out infinite alternate;
}
@keyframes heroGlowPan {
  0% { transform: scale(1) translate(0,0); }
  100% { transform: scale(1.1) translate(-20px, 20px); }
}
.hero-inner { position: relative; z-index: 1; }
.hero-em-fx {
  background: linear-gradient(90deg, var(--accent), #7c6dff, var(--accent));
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shimmerText 3s linear infinite;
  display: inline-block; font-style: normal;
}
.hero-stats-fx .hstat {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: var(--radius-sm);
  padding: 0.5rem 1rem;
}
.hero-stats-fx .hstat:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 24px rgba(52,87,255,0.15);
  border-color: var(--accent-soft-border);
}
.hero-scene-fx { position: relative; }
.hero-holo-ring {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 120%; height: 120%;
  border-radius: 50%;
  border: 2px solid transparent;
  border-top-color: rgba(52,87,255,0.4);
  border-bottom-color: rgba(124,109,255,0.2);
  animation: ringSpin 8s linear infinite;
  z-index: 0; pointer-events: none;
}
@keyframes ringSpin { to { transform: translate(-50%, -50%) rotate(360deg); } }
.hero-img-fx {
  position: relative; z-index: 1;
  animation: heroImgFloat 6s ease-in-out infinite;
  filter: drop-shadow(0 20px 40px rgba(52,87,255,0.2));
}
@keyframes heroImgFloat {
  0%,100% { transform: translateY(0) rotate(-2deg); }
  50%     { transform: translateY(-20px) rotate(2deg); }
}

/* ══════════════════════════════════════════
   APP PREVIEW SECTION
══════════════════════════════════════════ */
.app-preview-section { position: relative; overflow: hidden; }
.app-spotlight-bg {
  position: absolute; width: 100vw; height: 100vw;
  left: 50%; top: 50%; transform: translate(-50%, -50%);
  background: conic-gradient(from 180deg at 50% 50%, transparent 0deg, rgba(52,87,255,0.08) 180deg, transparent 360deg);
  animation: spotlightRotate 20s linear infinite;
  pointer-events: none; z-index: 0;
}
@keyframes spotlightRotate { to { transform: translate(-50%, -50%) rotate(360deg); } }

.app-mockup-wrapper {
  position: relative;
  max-width: 900px; margin: 3rem auto 0;
  perspective: 1000px; z-index: 1;
}
.app-mockup-frame {
  background: var(--surface);
  border-radius: 16px;
  padding: 8px;
  border: 1px solid var(--border);
  box-shadow: 0 30px 60px rgba(0,0,0,0.12), 0 0 0 1px rgba(52,87,255,0.1);
  position: relative; overflow: hidden;
  transform: rotateX(5deg);
  transition: transform 0.5s ease;
}
.app-mockup-wrapper:hover .app-mockup-frame { transform: rotateX(0deg); }
.app-mockup-img {
  border-radius: 12px; width: 100%; display: block;
}
.app-mockup-glare {
  position: absolute; inset: 0; z-index: 2; pointer-events: none;
  background: linear-gradient(105deg, transparent 20%, rgba(255,255,255,0.4) 25%, transparent 30%);
  background-size: 200% 200%;
  animation: glareSweep 5s infinite;
}
@keyframes glareSweep {
  0%,20% { background-position: 200% 0%; }
  100%   { background-position: -200% 0%; }
}
.app-float-ui {
  position: absolute;
  background: rgba(255,255,255,0.9); backdrop-filter: blur(10px);
  padding: 0.6rem 1.2rem; border-radius: 30px;
  font-weight: 600; font-size: 0.9rem; color: var(--accent);
  box-shadow: 0 10px 30px rgba(52,87,255,0.15);
  border: 1px solid var(--accent-soft-border);
  animation: floatUI 6s ease-in-out infinite; z-index: 3;
}
.app-float-ui--1 { top: -20px; left: -20px; animation-delay: 0s; }
.app-float-ui--2 { bottom: 40px; right: -30px; animation-delay: -3s; }
@keyframes floatUI {
  0%,100% { transform: translateY(0); }
  50%     { transform: translateY(-15px); }
}

/* ══════════════════════════════════════════
   WHY CHOOSE US SECTION
══════════════════════════════════════════ */
.why-us-section { position: relative; }
.why-bg-pattern {
  position: absolute; inset: 0; z-index: 0; pointer-events: none; opacity: 0.3;
  background-image: radial-gradient(var(--accent-soft-border) 1px, transparent 1px);
  background-size: 30px 30px;
}
.why-image-wrapper {
  position: relative; display: inline-block; margin-bottom: 2rem; z-index: 1;
}
.why-center-img {
  position: relative; z-index: 2;
  animation: whyImgBob 5s ease-in-out infinite alternate;
}
@keyframes whyImgBob { to { transform: translateY(-10px); } }
.why-pulse-ring {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 100%; height: 100%; border-radius: 50%;
  background: radial-gradient(circle, rgba(52,87,255,0.15) 0%, transparent 70%);
  filter: blur(20px); animation: whyPulse 4s ease-in-out infinite alternate; z-index: 0;
}
@keyframes whyPulse { to { transform: translate(-50%, -50%) scale(1.3); opacity: 0.5; } }

.features-grid { position: relative; z-index: 1; }
.wfeature {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  transition: transform 0.4s cubic-bezier(0.25,0.46,0.45,0.94), box-shadow 0.4s ease, border-color 0.4s ease;
  position: relative; overflow: hidden;
}
.wfeature::before {
  content: ''; position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background: radial-gradient(circle at top right, rgba(52,87,255,0.05), transparent 70%);
  opacity: 0; transition: opacity 0.4s ease;
}
.wfeature-icon-wrap {
  width: 50px; height: 50px; border-radius: 12px;
  background: rgba(52,87,255,0.05); border: 1px solid var(--accent-soft-border);
  display: flex; align-items: center; justify-content: center; margin: 0 auto 1rem;
  transition: transform 0.4s cubic-bezier(0.34,1.56,0.64,1), background 0.4s ease;
}
.wfeature-icon { font-size: 1.6rem; transition: transform 0.4s ease; display: block; }

.wfeature:hover {
  transform: translateY(-8px); border-color: var(--accent-soft-border);
  box-shadow: 0 15px 35px rgba(52,87,255,0.12);
}
.wfeature:hover::before { opacity: 1; }
.wfeature:hover .wfeature-icon-wrap {
  background: rgba(52,87,255,0.1); transform: scale(1.1) rotate(5deg);
}
.wfeature:hover .wfeature-icon { transform: scale(1.2); }

@media (prefers-reduced-motion: reduce) {
  .hero-glow-bg, .hero-holo-ring, .hero-img-fx { animation: none; }
  .app-spotlight-bg, .app-mockup-glare, .app-float-ui { animation: none; }
  .why-center-img, .why-pulse-ring { animation: none; }
}

/* ══════════════════════════════════════════
   ACCESS SECTION UPGRADES
══════════════════════════════════════════ */
.access-section { position: relative; overflow: hidden; }
.access-inner { position: relative; z-index: 1; text-align: center; max-width: 900px; }

.access-glow-bg {
  position: absolute; inset: 0; pointer-events: none; z-index: 0;
  background: radial-gradient(circle at 50% 50%, rgba(52,87,255,0.08) 0%, transparent 60%);
  filter: blur(30px);
  animation: accessGlowPulse 8s ease-in-out infinite alternate;
}
@keyframes accessGlowPulse {
  0% { transform: scale(1); opacity: 0.6; }
  100% { transform: scale(1.3); opacity: 1; }
}

.access-floating-icons { position: absolute; inset: 0; pointer-events: none; z-index: 0; }
.aicon {
  position: absolute; font-size: 2rem; opacity: 0;
  filter: drop-shadow(0 4px 12px rgba(52,87,255,0.25));
  animation: aiconFloat 12s ease-in-out infinite;
}
.aicon--1 { left: 15%; top: 20%; animation-delay: 0s; }
.aicon--2 { right: 15%; top: 40%; animation-delay: -4s; animation-duration: 15s; }
.aicon--3 { left: 25%; bottom: 15%; animation-delay: -8s; animation-duration: 10s; }
@keyframes aiconFloat {
  0%   { opacity: 0;   transform: translateY(0) scale(0.9) rotate(-10deg); }
  20%  { opacity: 0.8; }
  50%  { opacity: 1;   transform: translateY(-30px) scale(1.1) rotate(10deg); }
  80%  { opacity: 0.8; }
  100% { opacity: 0;   transform: translateY(0) scale(0.9) rotate(-10deg); }
}

.access-highlight {
  background: linear-gradient(90deg, var(--accent), #00d2ff);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmerText 3s linear infinite;
}

.access-image-wrapper {
  position: relative; margin: 3rem auto 0; max-width: 800px;
  perspective: 1000px; z-index: 1;
  transition: transform 0.5s cubic-bezier(0.25,0.46,0.45,0.94);
}
.access-image-glow {
  position: absolute; inset: 0; border-radius: 16px; pointer-events: none; z-index: 0;
  box-shadow: 0 0 50px rgba(52,87,255,0.3);
  opacity: 0; transition: opacity 0.5s ease;
}
.access-main-img {
  position: relative; z-index: 1; width: 100%; display: block; border-radius: 16px;
  border: 1px solid var(--accent-soft-border);
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
  transform: rotateX(4deg); transition: transform 0.5s ease;
}
.access-image-wrapper:hover { transform: translateY(-10px); }
.access-image-wrapper:hover .access-image-glow { opacity: 1; }
.access-image-wrapper:hover .access-main-img { transform: rotateX(0deg); border-color: var(--accent); }

.access-badge {
  position: absolute; z-index: 2;
  background: rgba(255,255,255,0.9); backdrop-filter: blur(10px);
  padding: 0.8rem 1.4rem; border-radius: 30px;
  font-weight: 600; font-size: 0.95rem; color: var(--text);
  box-shadow: 0 10px 25px rgba(52,87,255,0.15);
  border: 1px solid var(--accent-soft-border);
  display: flex; align-items: center; gap: 0.5rem;
  animation: accessBadgeFloat 5s ease-in-out infinite;
}
.access-badge::before {
  content: '✓'; color: var(--accent); font-weight: 800; font-size: 1.1rem;
}
.access-badge--tl { top: -25px; left: -25px; animation-delay: 0s; }
.access-badge--br { bottom: -25px; right: -25px; animation-delay: -2.5s; }
@keyframes accessBadgeFloat {
  0%,100% { transform: translateY(0); }
  50%     { transform: translateY(-12px); }
}

@media (prefers-reduced-motion: reduce) {
  .access-glow-bg, .aicon, .access-badge { animation: none; }
  .access-highlight { animation: none; }
}

/* ══════════════════════════════════════════
   SERVICES 'WHY CHOOSE US' UPGRADES
══════════════════════════════════════════ */
.s-why-us-section { position: relative; overflow: hidden; }
.s-why-inner { position: relative; z-index: 1; text-align: center; max-width: 900px; }

.s-why-bg-pattern {
  position: absolute; inset: 0; z-index: 0; pointer-events: none; opacity: 0.2;
  background-image: 
    linear-gradient(45deg, var(--accent-soft-border) 25%, transparent 25%, transparent 75%, var(--accent-soft-border) 75%, var(--accent-soft-border)),
    linear-gradient(45deg, var(--accent-soft-border) 25%, transparent 25%, transparent 75%, var(--accent-soft-border) 75%, var(--accent-soft-border));
  background-size: 60px 60px;
  background-position: 0 0, 30px 30px;
  animation: sWhyBgPan 30s linear infinite;
}
@keyframes sWhyBgPan { to { background-position: 60px 60px, 90px 90px; } }

.s-why-float-icons { position: absolute; inset: 0; pointer-events: none; z-index: 0; }
.sw-icon {
  position: absolute; font-size: 2.2rem; opacity: 0;
  filter: drop-shadow(0 4px 12px rgba(52,87,255,0.25));
  animation: swIconFloat 10s ease-in-out infinite;
}
.sw-icon--1 { left: 10%; top: 15%; animation-delay: 0s; }
.sw-icon--2 { right: 12%; top: 50%; animation-delay: -3s; animation-duration: 12s; }
.sw-icon--3 { left: 20%; bottom: 10%; animation-delay: -6s; animation-duration: 9s; }
@keyframes swIconFloat {
  0%   { opacity: 0;   transform: translateY(0) scale(0.9) rotate(-15deg); }
  20%  { opacity: 0.6; }
  50%  { opacity: 0.9; transform: translateY(-40px) scale(1.1) rotate(15deg); }
  80%  { opacity: 0.6; }
  100% { opacity: 0;   transform: translateY(0) scale(0.9) rotate(-15deg); }
}

.s-why-highlight {
  background: linear-gradient(90deg, #3457ff 0%, #a78bfa 50%, #3457ff 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmerText 3s linear infinite;
}

.s-features-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem; margin-top: 3rem; text-align: left;
}
.s-feature-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  display: flex; align-items: center; gap: 1rem;
  transition: transform 0.4s cubic-bezier(0.25,0.46,0.45,0.94), box-shadow 0.4s ease, border-color 0.4s ease;
  position: relative; overflow: hidden;
}
.s-feature-item::after {
  content: ''; position: absolute;
  top: -50%; left: -80%; width: 50%; height: 200%;
  background: linear-gradient(120deg, transparent, rgba(52,87,255,0.1), transparent);
  transform: skewX(-18deg); transition: left 0.5s ease; pointer-events: none;
}
.s-feature-icon-wrap {
  flex-shrink: 0; width: 44px; height: 44px; border-radius: 50%;
  background: rgba(52,87,255,0.08); border: 1px solid var(--accent-soft-border);
  display: flex; align-items: center; justify-content: center;
  transition: transform 0.4s cubic-bezier(0.34,1.56,0.64,1), background 0.4s ease, box-shadow 0.4s ease;
}
.s-feature-check {
  color: var(--accent); font-weight: 800; font-size: 1.2rem;
  transition: transform 0.4s ease;
}

.s-feature-item:hover {
  transform: translateY(-6px); border-color: var(--accent-soft-border);
  box-shadow: 0 12px 30px rgba(52,87,255,0.12);
}
.s-feature-item:hover::after { left: 140%; }
.s-feature-item:hover .s-feature-icon-wrap {
  background: rgba(52,87,255,0.15); transform: scale(1.15);
  box-shadow: 0 0 15px rgba(52,87,255,0.2);
}
.s-feature-item:hover .s-feature-check { transform: scale(1.2); }

@media (prefers-reduced-motion: reduce) {
  .s-why-bg-pattern, .sw-icon { animation: none; }
  .s-why-highlight { animation: none; }
  .s-feature-item::after { transition: none; }
}

/* ══════════════════════════════════════════
   EXTREME WHY CHOOSE US EFFECTS
══════════════════════════════════════════ */

/* Shimmer title */
.why-highlight-fx {
  background: linear-gradient(90deg, #00d2ff 0%, #3a7bd5 50%, #00d2ff 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmerText 3s linear infinite;
}

/* Floating tech shapes */
.why-floating-shapes { position: absolute; inset: 0; pointer-events: none; z-index: 0; }
.wshape {
  position: absolute; border: 2px solid rgba(52,87,255,0.15); border-radius: 4px;
  animation: wshapeFloat 15s linear infinite;
}
.wshape--cube {
  width: 40px; height: 40px; left: 10%; top: 20%;
  border-radius: 8px; transform: rotate(45deg);
}
.wshape--sphere {
  width: 60px; height: 60px; right: 15%; top: 40%;
  border-radius: 50%; border-style: dashed;
  animation-duration: 20s; animation-direction: reverse;
}
.wshape--pyramid {
  width: 0; height: 0; left: 80%; bottom: 15%;
  border-left: 20px solid transparent; border-right: 20px solid transparent;
  border-bottom: 35px solid rgba(124,109,255,0.15);
  border-top: 0; border-radius: 0; background: transparent;
  animation-duration: 12s;
}
.wshape--ring {
  width: 80px; height: 80px; left: 20%; bottom: 10%;
  border-radius: 50%; border-width: 4px; border-color: rgba(0, 210, 255, 0.1);
  animation-duration: 18s; animation-direction: alternate;
}
@keyframes wshapeFloat {
  0% { transform: translateY(0) rotate(0deg); opacity: 0; }
  20% { opacity: 1; }
  80% { opacity: 1; }
  100% { transform: translateY(-100px) rotate(360deg); opacity: 0; }
}

/* Image Holographic Glow & Orbiters */
.why-holo-glow {
  position: absolute; inset: -20px; z-index: 1; pointer-events: none;
  background: radial-gradient(circle, rgba(124,109,255,0.2) 0%, transparent 60%);
  filter: blur(20px); border-radius: 50%;
  animation: whyHoloPulse 5s ease-in-out infinite alternate;
}
@keyframes whyHoloPulse {
  0% { transform: scale(0.8); opacity: 0.5; }
  100% { transform: scale(1.1); opacity: 1; }
}

.why-orbiter {
  position: absolute; width: 12px; height: 12px; border-radius: 50%;
  background: var(--accent); box-shadow: 0 0 10px var(--accent);
  z-index: 3; top: 50%; left: 50%;
}
.why-orbiter--1 {
  animation: orbit1 6s linear infinite;
}
.why-orbiter--2 {
  background: #00d2ff; box-shadow: 0 0 10px #00d2ff;
  animation: orbit2 8s linear infinite reverse;
}
@keyframes orbit1 {
  0% { transform: rotate(0deg) translateX(140px) rotate(0deg); }
  100% { transform: rotate(360deg) translateX(140px) rotate(-360deg); }
}
@keyframes orbit2 {
  0% { transform: rotate(0deg) translateX(180px) rotate(0deg); }
  100% { transform: rotate(360deg) translateX(180px) rotate(-360deg); }
}

@media (prefers-reduced-motion: reduce) {
  .why-highlight-fx, .wshape, .why-holo-glow, .why-orbiter { animation: none; display: none; }
}

/* ══════════════════════════════════════════
   GLOBAL FOOTER PREMIUM EFFECTS
══════════════════════════════════════════ */

/* Base container setup for pseudo-elements */
.footer {
  position: relative;
  overflow: hidden;
  z-index: 10;
  background: linear-gradient(135deg, #10131c 0%, #050608 100%);
  color: #a0aabf;
  border-top: 1px solid rgba(52,87,255,0.2);
}

.footer h2, .footer h3 { color: #ffffff; }
.footer p { color: #a0aabf; }

/* ── 1. Animated Neon Sweeping Top Border ── */
.footer::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, transparent 0%, var(--accent) 20%, #00d2ff 50%, var(--accent) 80%, transparent 100%);
  background-size: 200% auto;
  animation: footerBorderSweep 6s linear infinite;
  z-index: 1;
}
@keyframes footerBorderSweep {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

/* ── 2. Ambient Deep Glow at Bottom ── */
.footer::after {
  content: '';
  position: absolute;
  bottom: -150px; left: 50%; transform: translateX(-50%);
  width: 80%; max-width: 1000px; height: 300px;
  background: radial-gradient(ellipse at bottom, rgba(52,87,255,0.15) 0%, transparent 70%);
  filter: blur(40px);
  pointer-events: none;
  z-index: 0;
  animation: footerGlowPulse 8s ease-in-out infinite alternate;
}
@keyframes footerGlowPulse {
  0% { opacity: 0.5; transform: translateX(-50%) scaleY(0.8); }
  100% { opacity: 1; transform: translateX(-50%) scaleY(1.2); }
}

/* Ensure inner content sits above ambient effects */
.footer-container, .footer-bottom {
  position: relative;
  z-index: 2;
}

/* ── 3. Logo Continuous Shimmer ── */
.footer-logo {
  background: linear-gradient(90deg, #fff 0%, #a78bfa 45%, #fff 90%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmerText 4s linear infinite;
  display: inline-block;
}

/* ── 4. Interactive Floating Columns ── */
.footer-col {
  transition: transform 0.4s cubic-bezier(0.25,0.46,0.45,0.94);
}
.footer-col:hover {
  transform: translateY(-5px);
}

/* ── 5. Sliding & Glowing Links ── */
.footer-col ul li a {
  position: relative;
  display: inline-block;
  color: #d1d5db;
  transition: transform 0.3s ease, color 0.3s ease, text-shadow 0.3s ease;
}
.footer-col ul li a::before {
  content: '→';
  position: absolute;
  left: -20px;
  opacity: 0;
  color: var(--accent);
  transition: left 0.3s ease, opacity 0.3s ease;
}
.footer-col ul li a:hover {
  transform: translateX(20px);
  color: #fff;
  text-shadow: 0 0 12px rgba(52,87,255,0.6);
}
.footer-col ul li a:hover::before {
  opacity: 1;
  left: -18px;
}

/* ── Reduced Motion ── */
@media (prefers-reduced-motion: reduce) {
  .footer::before, .footer::after, .footer-logo, .footer-col, .footer-col ul li a, .footer-col ul li a::before {
    animation: none;
    transition: none;
    transform: none;
  }
}

/* ══════════════════════════════════════════
   GLOBAL HEADER / NAVBAR PREMIUM EFFECTS
══════════════════════════════════════════ */

/* ── 1. Glassmorphism & Animated Bottom Border ── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.85) !important;
  backdrop-filter: blur(16px) saturate(180%);
  -webkit-backdrop-filter: blur(16px) saturate(180%);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.site-header::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent 0%, #3457ff 25%, #a78bfa 50%, #3457ff 75%, transparent 100%);
  background-size: 200% auto;
  animation: headerBorderSweep 5s linear infinite;
  opacity: 0.7;
}
@keyframes headerBorderSweep {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

/* ── 2. Interactive Logo Hover ── */
.brand-logo {
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), filter 0.4s ease;
}
.brand:hover .brand-logo {
  transform: scale(1.08) rotate(-2deg);
  filter: drop-shadow(0 8px 16px rgba(52,87,255,0.3));
}

/* ── 3. Navbar Links Dynamic Hover ── */
.navbar a {
  position: relative;
  font-weight: 600;
  transition: color 0.3s ease, text-shadow 0.3s ease;
  padding: 0.5rem 0;
}
/* The animated underline */
.navbar a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #3457ff, #a78bfa);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transform: translateX(-50%);
  border-radius: 2px;
  box-shadow: 0 0 8px rgba(52,87,255,0.6);
  opacity: 0;
}
.navbar a:hover, .navbar a.active {
  color: var(--accent);
  text-shadow: 0 0 1px rgba(52,87,255,0.4);
}
.navbar a:hover::after, .navbar a.active::after {
  width: 100%;
  opacity: 1;
}

/* Active link pulse indicator */
.navbar a.active::before {
  content: '';
  position: absolute;
  top: -4px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 6px var(--accent);
  animation: activeNavPulse 2s ease-in-out infinite;
}
@keyframes activeNavPulse {
  0%, 100% { opacity: 0.5; transform: translateX(-50%) scale(1); }
  50% { opacity: 1; transform: translateX(-50%) scale(1.5); }
}

@media (prefers-reduced-motion: reduce) {
  .site-header::after, .navbar a.active::before, .brand-logo, .navbar a::after {
    animation: none; transition: none; transform: none;
  }
}

/* ══════════════════════════════════════════
   CONTACT US EFFECTS
══════════════════════════════════════════ */
.contact-hero-section { position: relative; overflow: hidden; }
.contact-glow-bg {
  position: absolute; inset: 0; pointer-events: none; z-index: 0;
  background: radial-gradient(circle at 50% -20%, rgba(52,87,255,0.15) 0%, transparent 60%);
  filter: blur(40px);
  animation: contactGlowPulse 6s ease-in-out infinite alternate;
}
@keyframes contactGlowPulse {
  0% { transform: scale(1); opacity: 0.7; }
  100% { transform: scale(1.1); opacity: 1; }
}

.contact-highlight-fx {
  background: linear-gradient(90deg, var(--accent), #7c6dff, var(--accent));
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmerText 3s linear infinite;
}

.contact-float-icons { position: absolute; inset: 0; pointer-events: none; z-index: 0; }
.cfloat {
  position: absolute; font-size: 2.5rem; opacity: 0;
  filter: drop-shadow(0 10px 20px rgba(52,87,255,0.2));
  animation: cFloatAnim 10s ease-in-out infinite;
}
.cfloat--1 { left: 15%; top: 20%; animation-delay: 0s; }
.cfloat--2 { right: 10%; top: 45%; animation-delay: -3s; animation-duration: 14s; }
.cfloat--3 { left: 25%; bottom: 10%; animation-delay: -6s; animation-duration: 12s; }
@keyframes cFloatAnim {
  0%, 100% { opacity: 0; transform: translateY(0) rotate(-15deg); }
  20%, 80% { opacity: 0.8; }
  50% { opacity: 1; transform: translateY(-40px) rotate(15deg); }
}

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

.contact-grid-section { position: relative; }
.contact-grid-pattern {
  position: absolute; inset: 0; z-index: 0; pointer-events: none; opacity: 0.4;
  background-image: linear-gradient(45deg, rgba(52,87,255,0.03) 25%, transparent 25%, transparent 75%, rgba(52,87,255,0.03) 75%, rgba(52,87,255,0.03)), 
                    linear-gradient(45deg, rgba(52,87,255,0.03) 25%, transparent 25%, transparent 75%, rgba(52,87,255,0.03) 75%, rgba(52,87,255,0.03));
  background-size: 40px 40px;
  background-position: 0 0, 20px 20px;
  animation: cGridPan 20s linear infinite;
}
@keyframes cGridPan { to { background-position: 40px 40px, 60px 60px; } }

.c-features-grid { position: relative; z-index: 1; display: grid; gap: 2rem; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.c-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 2rem;
  transition: transform 0.4s cubic-bezier(0.25,0.46,0.45,0.94), box-shadow 0.4s ease, border-color 0.4s ease;
  position: relative; overflow: hidden; text-align: center;
}
.c-card-glow {
  position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background: radial-gradient(circle at top right, rgba(52,87,255,0.06), transparent 70%);
  opacity: 0; transition: opacity 0.4s ease;
}
.c-icon-wrap {
  width: 60px; height: 60px; border-radius: 50%; margin: 0 auto 1.5rem;
  background: rgba(52,87,255,0.06); border: 1px solid var(--accent-soft-border);
  display: flex; align-items: center; justify-content: center;
  transition: transform 0.4s cubic-bezier(0.34,1.56,0.64,1), background 0.4s ease, box-shadow 0.4s ease;
  position: relative; z-index: 1;
}
.c-icon { font-size: 1.8rem; transition: transform 0.4s ease; }
.c-card h3, .c-card p { position: relative; z-index: 1; }

.c-card:hover {
  transform: translateY(-8px); border-color: var(--accent-soft-border);
  box-shadow: 0 15px 35px rgba(52,87,255,0.12);
}
.c-card:hover .c-card-glow { opacity: 1; }
.c-card:hover .c-icon-wrap {
  background: rgba(52,87,255,0.12); transform: scale(1.15);
  box-shadow: 0 0 20px rgba(52,87,255,0.2);
}
.c-card:hover .c-icon { transform: scale(1.15) rotate(5deg); }

@media (prefers-reduced-motion: reduce) {
  .contact-glow-bg, .contact-highlight-fx, .cfloat, .contact-grid-pattern { animation: none; }
}

/* ══════════════════════════════════════════
   TREE PLANTATION HERO EFFECTS
══════════════════════════════════════════ */
.tree-hero-section {
  position: relative;
  overflow: hidden;
}
.tree-glow-bg {
  position: absolute; inset: 0; pointer-events: none; z-index: 0;
  background: radial-gradient(circle at 70% 30%, rgba(76, 175, 80, 0.15) 0%, transparent 60%),
              radial-gradient(circle at 30% 70%, rgba(129, 199, 132, 0.1) 0%, transparent 50%);
  filter: blur(40px);
  animation: treeGlowPulse 8s ease-in-out infinite alternate;
}
@keyframes treeGlowPulse {
  0% { transform: scale(1) translateY(0); opacity: 0.6; }
  100% { transform: scale(1.1) translateY(-20px); opacity: 1; }
}

.tree-highlight-fx {
  background: linear-gradient(90deg, #2e7d32 0%, #66bb6a 50%, #2e7d32 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmerText 3.5s linear infinite;
}

.tree-hero-content {
  position: relative;
  z-index: 2; /* sits above the scene and glow */
}
.tree-hero-glass {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: 0 15px 35px rgba(46, 125, 50, 0.1);
  transform: translateY(0);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.tree-hero-glass:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 45px rgba(46, 125, 50, 0.15);
}
.tree-hero-bold {
  font-weight: 700;
  color: #2e7d32;
  font-size: 1.1rem;
  margin-top: 1.5rem;
}

/* Floating leaf particles */
.leaf-particles {
  position: absolute; inset: 0; pointer-events: none; z-index: 1;
}
.leaf {
  position: absolute; font-size: 1.5rem; opacity: 0;
  filter: drop-shadow(0 4px 8px rgba(46, 125, 50, 0.2));
  animation: leafTumble 12s linear infinite;
}
.leaf--1 { left: 10%; top: -10%; animation-delay: 0s; font-size: 2rem; }
.leaf--2 { right: 20%; top: -10%; animation-delay: 3s; animation-duration: 15s; }
.leaf--3 { left: 50%; top: -10%; animation-delay: 7s; animation-duration: 10s; }
.leaf--4 { left: 80%; top: -10%; animation-delay: 1s; animation-duration: 14s; font-size: 1.2rem; }

@keyframes leafTumble {
  0% { transform: translateY(-10vh) rotate(0deg) translateX(0); opacity: 0; }
  10% { opacity: 0.8; }
  50% { transform: translateY(50vh) rotate(180deg) translateX(50px); opacity: 0.8; }
  90% { opacity: 0.8; }
  100% { transform: translateY(110vh) rotate(360deg) translateX(-50px); opacity: 0; }
}

@media (prefers-reduced-motion: reduce) {
  .tree-glow-bg, .tree-highlight-fx, .leaf { animation: none; display: none; }
  .tree-hero-glass { transition: none; transform: none; }
}

/* ══════════════════════════════════════════
   TREE PLANTATION GRID EFFECTS
══════════════════════════════════════════ */
.t-features-grid {
  position: relative; z-index: 1; display: grid; gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}
.t-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1.8rem;
  transition: transform 0.4s cubic-bezier(0.25,0.46,0.45,0.94), box-shadow 0.4s ease, border-color 0.4s ease;
  position: relative; overflow: hidden; text-align: left;
}
.t-card-glow {
  position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background: radial-gradient(circle at top right, rgba(46, 125, 50, 0.08), transparent 70%);
  opacity: 0; transition: opacity 0.4s ease;
}
.t-icon-wrap {
  width: 54px; height: 54px; border-radius: 12px; margin-bottom: 1.2rem;
  background: rgba(46, 125, 50, 0.08); border: 1px solid rgba(46, 125, 50, 0.2);
  display: flex; align-items: center; justify-content: center;
  transition: transform 0.4s cubic-bezier(0.34,1.56,0.64,1), background 0.4s ease, box-shadow 0.4s ease;
  position: relative; z-index: 1;
}
.t-icon { font-size: 1.6rem; transition: transform 0.4s ease; display: block; }
.t-card h3, .t-card p { position: relative; z-index: 1; }

.t-card:hover {
  transform: translateY(-8px); border-color: rgba(46, 125, 50, 0.3);
  box-shadow: 0 15px 35px rgba(46, 125, 50, 0.12);
}
.t-card:hover .t-card-glow { opacity: 1; }
.t-card:hover .t-icon-wrap {
  background: rgba(46, 125, 50, 0.15); transform: scale(1.1);
  box-shadow: 0 0 15px rgba(46, 125, 50, 0.25);
}
.t-card:hover .t-icon { transform: scale(1.2); }

/* ══════════════════════════════════════════
   TREE PLANTATION CTA EFFECTS
══════════════════════════════════════════ */
.tree-cta-section {
  position: relative; overflow: hidden;
  text-align: center;
  padding: 6rem 0;
}
.tree-cta-glow-bg {
  position: absolute; inset: 0; pointer-events: none; z-index: 0;
  background: radial-gradient(circle at 50% 50%, rgba(76, 175, 80, 0.12) 0%, transparent 70%);
  filter: blur(50px);
  animation: ctaGlowPulse 6s ease-in-out infinite alternate;
}
@keyframes ctaGlowPulse {
  0% { transform: scale(0.9); opacity: 0.7; }
  100% { transform: scale(1.2); opacity: 1; }
}

/* The central living frame */
.tree-living-frame {
  position: relative;
  display: inline-block;
  margin: 3rem auto;
  border-radius: var(--radius-lg);
  padding: 1rem;
  background: rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.6);
  box-shadow: 0 20px 50px rgba(46, 125, 50, 0.15);
  animation: floatFrame 8s ease-in-out infinite;
}
.tree-frame-glow {
  position: absolute; inset: -2px; z-index: -1;
  background: linear-gradient(45deg, #2e7d32, #81c784, #2e7d32);
  background-size: 200% auto;
  border-radius: calc(var(--radius-lg) + 2px);
  filter: blur(8px);
  opacity: 0.4;
  animation: shimmerText 5s linear infinite;
}
.tree-living-frame img {
  border-radius: var(--radius-md);
  display: block;
  max-width: 100%;
  height: auto;
  position: relative; z-index: 1;
}
@keyframes floatFrame {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-15px); }
}

/* The pip leaves around the image */
.leaf-pip {
  position: absolute; font-size: 1.8rem; z-index: 2;
  filter: drop-shadow(0 4px 6px rgba(0,0,0,0.1));
}
.leaf-pip--tl { top: -15px; left: -15px; animation: pipSpin1 6s infinite ease-in-out; }
.leaf-pip--tr { top: -10px; right: -20px; animation: pipSpin2 7s infinite ease-in-out; }
.leaf-pip--bl { bottom: -15px; left: -10px; animation: pipSpin1 8s infinite ease-in-out reverse; }
.leaf-pip--br { bottom: -10px; right: -15px; animation: pipSpin2 5s infinite ease-in-out reverse; }

@keyframes pipSpin1 {
  0%, 100% { transform: rotate(-10deg) scale(1); }
  50% { transform: rotate(15deg) scale(1.15); }
}
@keyframes pipSpin2 {
  0%, 100% { transform: rotate(10deg) scale(1); }
  50% { transform: rotate(-15deg) scale(1.15); }
}

/* Glow Buttons */
.tree-cta-actions { margin-top: 2rem; }
.btn-glow {
  background: linear-gradient(90deg, #2e7d32, #4caf50);
  border: none;
  color: white;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.btn-glow:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(46, 125, 50, 0.4);
}
.btn-outline-glow {
  background: transparent;
  border: 2px solid #4caf50;
  color: #2e7d32;
  transition: all 0.3s ease;
}
.btn-outline-glow:hover {
  background: rgba(76, 175, 80, 0.1);
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(76, 175, 80, 0.2);
}

@media (prefers-reduced-motion: reduce) {
  .tree-cta-glow-bg, .tree-frame-glow, .tree-living-frame, .leaf-pip { animation: none; }
}

/* ══════════════════════════════════════════
   APP PREVIEW VIDEO EFFECTS
══════════════════════════════════════════ */
.app-mockup-video {
  display: block;
  width: 100%;
  height: auto;
  border-radius: var(--radius-md);
  box-shadow: 0 10px 30px rgba(52,87,255,0.15);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  position: relative;
  z-index: 1;
  background: #000;
}

/* Custom Video Player Wrapper & Overlay */
.premium-video-player {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(52,87,255,0.15);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.premium-video-player:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(52,87,255,0.25);
}

.video-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(16, 19, 28, 0.4);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 2;
  transition: opacity 0.5s ease, visibility 0.5s ease;
  border-radius: var(--radius-md);
}
.video-overlay.is-playing {
  opacity: 0;
  visibility: hidden;
  pointer-events: none; /* Let clicks pass through to pause if native controls were on, but we handle it via JS */
}

.video-play-btn {
  background: rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 0 20px rgba(52, 87, 255, 0.3);
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), background 0.3s ease, box-shadow 0.3s ease;
  animation: playPulse 2s infinite;
}
.video-play-btn:hover {
  transform: scale(1.15);
  background: rgba(255, 255, 255, 0.3);
  box-shadow: 0 0 30px rgba(52, 87, 255, 0.5);
  animation: none;
}
.play-icon {
  color: white;
  font-size: 2rem;
  margin-left: 6px; /* optical alignment for play triangle */
  text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

@keyframes playPulse {
  0% { box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4); }
  70% { box-shadow: 0 0 0 20px rgba(255, 255, 255, 0); }
  100% { box-shadow: 0 0 0 0 rgba(255, 255, 255, 0); }
}

@media (prefers-reduced-motion: reduce) {
  .video-play-btn { animation: none; transition: none; }
}
/* --------------------------------- */
.hero-stats{
    display:flex;
    justify-content:center;   /* Center all items */
    align-items:center;
    gap:20px;
    margin-top:2rem;
    padding:0;
    list-style:none;
    flex-wrap:nowrap;         /* Keep in one line */
}

.hstat{
    flex:1;
    max-width:180px;
    text-align:center;
    background:#fff;
    border-radius:16px;
    padding:18px 15px;
    box-shadow:0 10px 25px rgba(0,0,0,.08);
}

.hstat strong{
    display:block;
    font-size:1.4rem;
    font-weight:700;
    color:var(--heading);
    margin-bottom:6px;
}

.hstat span{
    display:block;
    font-size:.9rem;
    color:var(--text-light);
    line-height:1.4;
}
/* ------------------- */
/* Hero Buttons */
.hero-actions{
    display:flex;
    align-items:center;
    justify-content:flex-start;
    gap:20px;
    margin:2rem 0;
    flex-wrap:wrap;
}

.hero-actions .button{
    display:flex;
    align-items:center;
    justify-content:center;
    min-width:180px;
    height:58px;
    padding:0 28px;
    border-radius:18px;
    font-size:1rem;
    font-weight:700;
    text-decoration:none;
    transition:all .35s ease;
    cursor:pointer;
    box-shadow:0 10px 25px rgba(0,0,0,.12);
}

.hero-actions .button.primary{
    background:linear-gradient(135deg,#4b63ff,#2f54eb);
    color:#fff;
    border:none;
}

.hero-actions .button.primary:hover{
    transform:translateY(-4px);
    box-shadow:0 18px 35px rgba(47,84,235,.35);
}

.hero-actions .button.secondary{
    background:#fff;
    color:#1f2937;
    border:1px solid #e5e7eb;
}

.hero-actions .button.secondary:hover{
    background:#f8fafc;
    transform:translateY(-4px);
    box-shadow:0 18px 35px rgba(0,0,0,.15);
}

.hero-actions .button:active{
    transform:scale(.98);
}

@media (max-width:768px){
    .hero-actions{
        justify-content:center;
        flex-direction:column;
        width:100%;
    }

    .hero-actions .button{
        width:100%;
        max-width:320px;
    }
}