/* ==========================================================
   Easy Prayogshala — Marketing Website Styles
   Brand: teal #008B8B | Gold #D4A017 | Nepal Red #B8001F
   ========================================================== */

/* ── Variables ───────────────────────────────────────────── */
:root {
  --ep-50:   #E0F7F7;
  --ep-100:  #B2EBEB;
  --ep-400:  #26C6C6;
  --ep-500:  #008B8B;
  --ep-600:  #007A7A;
  --ep-700:  #006464;
  --ep-800:  #004F4F;
  --ep-900:  #003B3B;
  --gold:    #D4A017;
  --nepred:  #B8001F;
  --dark:    #1C2B2B;
  --ease:    cubic-bezier(0.4,0,0.2,1);
}

/* ── Resets & Globals ────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Inter', sans-serif; color: #1a2b2b; }
a { text-decoration: none; }
img { display: block; }

/* ── Keyframes ───────────────────────────────────────────── */
/* Ken Burns — slow zoom + drift on hero photo */
@keyframes kenBurns {
  0%   { transform: scale(1)    translate(0%,    0%); }
  25%  { transform: scale(1.07) translate(-1%,  -0.8%); }
  50%  { transform: scale(1.12) translate(0.6%, -0.5%); }
  75%  { transform: scale(1.08) translate(1%,    0.6%); }
  100% { transform: scale(1)    translate(0%,    0%); }
}
/* Slow pan for prayer flags strip */
@keyframes flagPan {
  0%   { background-position: 0% center; }
  100% { background-position: 100% center; }
}
/* Sketch stroke-draw for SVG overlay on dharahara */
@keyframes drawStroke {
  from { stroke-dashoffset: 2000; opacity: 0; }
  to   { stroke-dashoffset: 0;    opacity: 1; }
}
@keyframes sketchPop {
  from { opacity: 0; transform: scale(0.92) translateY(12px); }
  to   { opacity: 1; transform: scale(1)    translateY(0); }
}
/* Mandala slow spin */
@keyframes mandalaRotate {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}
@keyframes heroGradient {
  0%,100% { background-position: 0% 50%; }
  50%      { background-position: 100% 50%; }
}
@keyframes flagWave {
  0%,100% { transform: rotate(-6deg) scaleY(1); }
  50%      { transform: rotate(6deg) scaleY(0.96); }
}
@keyframes mountainDrift {
  0%,100% { transform: translateX(0); }
  50%      { transform: translateX(-8px); }
}
@keyframes floatCard {
  0%,100% { transform: translateY(0)   rotate(-1.5deg); }
  50%      { transform: translateY(-14px) rotate(-1.5deg); }
}
@keyframes scrollBounce {
  0%,100% { transform: translateY(0); opacity: 1; }
  50%      { transform: translateY(10px); opacity: 0.4; }
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(32px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInLeft {
  from { opacity: 0; transform: translateX(-40px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes fadeInRight {
  from { opacity: 0; transform: translateX(40px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes pulse {
  0%,100% { box-shadow: 0 0 0 0 rgba(0,139,139,.45); }
  50%      { box-shadow: 0 0 0 14px rgba(0,139,139,0); }
}
@keyframes barGrow {
  from { height: 0 !important; }
  to   { height: var(--rh); }
}
@keyframes widthGrow {
  from { width: 0 !important; }
  to   { width: var(--fw, var(--pw, var(--iw, 100%))); }
}
@keyframes badgeFloat {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(-6px); }
}
@keyframes shimmer {
  0%   { background-position: -200% center; }
  100% { background-position:  200% center; }
}
@keyframes countUp { /* handled by JS — placeholder */ }
@keyframes spinGlow {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

/* ── Scroll-Reveal Classes ───────────────────────────────── */
.reveal-up, .reveal-left, .reveal-right, .reveal-fade {
  opacity: 0;
  transition: opacity .6s var(--ease), transform .6s var(--ease);
  transition-delay: var(--d, 0s);
}
.reveal-up    { transform: translateY(32px); }
.reveal-left  { transform: translateX(-40px); }
.reveal-right { transform: translateX(40px); }
.reveal-fade  { transform: none; }

.revealed .reveal-up,
.revealed .reveal-left,
.revealed .reveal-right,
.revealed .reveal-fade,
.reveal-up.in-view,
.reveal-left.in-view,
.reveal-right.in-view,
.reveal-fade.in-view {
  opacity: 1;
  transform: none !important;
}

/* ── Section Headings ────────────────────────────────────── */
.sec-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--ep-500);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.sec-label::before {
  content: '';
  display: block;
  width: 22px; height: 2px;
  background: var(--ep-500);
  border-radius: 2px;
}
.sec-label.center { display: flex; justify-content: center; }
.sec-label.center::before { display: none; }
.sec-label-light { @apply sec-label; color: var(--ep-400); }
.sec-label-light { color: var(--ep-400); font-size: .72rem; font-weight: 700; letter-spacing:.16em; text-transform:uppercase; margin-bottom:10px; display:flex; align-items:center; gap:8px; }

.sec-title {
  font-size: clamp(1.75rem, 3vw, 2.4rem);
  font-weight: 800;
  color: #0d1f1f;
  line-height: 1.2;
  margin-bottom: 10px;
}
.sec-sub {
  color: #5a7070;
  font-size: .95rem;
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.7;
}

.section-alt { background: #f4fafa; }

/* ═══════════════════════════════════════════════
   NAVBAR
════════════════════════════════════════════════ */
#navbar {
  background: transparent;
}
#navbar.scrolled {
  background: linear-gradient(110deg, rgba(0,122,122,.95) 0%, rgba(0,100,100,.96) 100%);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 18px rgba(0,80,80,.28);
}

.nav-link {
  font-size: .875rem;
  font-weight: 500;
  color: rgba(255,255,255,.85);
  transition: color .2s;
  position: relative;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0; right: 0;
  height: 2px;
  background: var(--ep-400);
  transform: scaleX(0);
  transition: transform .25s var(--ease);
}
.nav-link:hover { color: #fff; }
.nav-link:hover::after, .nav-link.active::after { transform: scaleX(1); }

.btn-outline-nav {
  font-size: .8rem;
  font-weight: 600;
  color: rgba(255,255,255,.85);
  border: 1.5px solid rgba(255,255,255,.4);
  padding: 6px 16px;
  border-radius: 50px;
  transition: all .2s;
}
.btn-outline-nav:hover {
  color: #fff;
  border-color: rgba(255,255,255,.8);
  background: rgba(255,255,255,.1);
}
.btn-solid-nav {
  font-size: .8rem;
  font-weight: 600;
  color: #fff;
  background: var(--ep-500);
  padding: 6px 18px;
  border-radius: 50px;
  transition: all .2s;
  animation: pulse 3s infinite;
}
.btn-solid-nav:hover {
  background: var(--ep-600);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(0,139,139,.45);
}

.mobile-link {
  font-size: .9rem;
  font-weight: 500;
  color: #334;
  padding: 4px 0;
  display: block;
  transition: color .2s;
}
.mobile-link:hover { color: var(--ep-500); }

/* ═══════════════════════════════════════════════
   HERO
════════════════════════════════════════════════ */
#hero {
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

/* Real Mount Everest photo — Ken Burns zoom */
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}
/* Real Mount Everest photo — ~90% natural, slow Ken Burns zoom */
.hero-bg-photo {
  position: absolute;
  inset: -5%;
  background-image: url('../images/mount-everest.jpg');
  background-size: cover;
  background-position: center 32%;
  /* keep it natural — only a touch of depth; slightly darker so white text pops */
  filter: saturate(1.06) contrast(1.06) brightness(0.9);
  animation: kenBurns 30s ease-in-out infinite alternate;
  will-change: transform;
}
/* Overlay: darker behind the left-side copy, clear over the peak */
.hero-bg-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(100deg,
      rgba(2,20,26,0.88) 0%,
      rgba(2,24,30,0.66) 28%,
      rgba(2,28,34,0.26) 56%,
      rgba(2,32,38,0.08) 80%,
      rgba(2,32,38,0.02) 100%),
    linear-gradient(180deg,
      rgba(0,18,24,0.34) 0%,
      rgba(0,18,24,0) 32%,
      rgba(0,16,20,0) 68%,
      rgba(0,14,18,0.42) 100%);
}

#particles-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
  opacity: 0.4;
}

/* Prayer flags */
.prayer-flags-bar {
  position: absolute;
  top: 64px;
  left: 0; right: 0;
  z-index: 3;
  overflow: hidden;
  height: 36px;
}
.flags-rope {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.3) 20%, rgba(255,255,255,.3) 80%, transparent);
}
.flags-container {
  display: flex;
  align-items: flex-start;
  padding-top: 2px;
}
.prayer-flag {
  width: 18px;
  height: 24px;
  clip-path: polygon(0 0, 100% 0, 50% 100%);
  flex-shrink: 0;
  transform-origin: top center;
}
.prayer-flag:nth-child(5n+1) { background: #003F87; animation: flagWave 2.2s ease-in-out infinite; }
.prayer-flag:nth-child(5n+2) { background: rgba(255,255,255,.85); animation: flagWave 2.2s ease-in-out infinite .12s; }
.prayer-flag:nth-child(5n+3) { background: #B8001F; animation: flagWave 2.2s ease-in-out infinite .24s; }
.prayer-flag:nth-child(5n+4) { background: #1a6b1a; animation: flagWave 2.2s ease-in-out infinite .36s; }
.prayer-flag:nth-child(5n+5) { background: #D4A017; animation: flagWave 2.2s ease-in-out infinite .48s; }

/* Illustrated range hidden — real Everest photo is the hero background now */
.mountains-wrap { display: none; }
.everest-svg { display: block; width: 100%; height: 100%; }

/* Sun glow pulse */
.ev-sun-glow { animation: evSunPulse 6s ease-in-out infinite; transform-box: fill-box; transform-origin: center; }
.ev-sun      { animation: evSunPulse 6s ease-in-out infinite .3s; transform-box: fill-box; transform-origin: center; }
@keyframes evSunPulse {
  0%,100% { opacity: .85; transform: scale(1); }
  50%     { opacity: 1;   transform: scale(1.06); }
}

/* Atmospheric haze gentle breathe */
.ev-haze { animation: evHazeBreathe 14s ease-in-out infinite; }
@keyframes evHazeBreathe {
  0%,100% { opacity: 1; }
  50%     { opacity: .82; }
}

/* Snow couloirs subtle shimmer */
.ev-streaks { animation: evShimmer 5s ease-in-out infinite; }
@keyframes evShimmer {
  0%,100% { opacity: .5; }
  50%     { opacity: .85; }
}

/* Everest summit plume drifts and fades */
.ev-plume {
  transform-box: fill-box;
  transform-origin: right center;
  animation: evPlumeDrift 7s ease-in-out infinite;
}
@keyframes evPlumeDrift {
  0%,100% { opacity: .55; transform: translateX(0) scaleX(1); }
  50%     { opacity: .85; transform: translateX(-14px) scaleX(1.12); }
}

/* Hero copy */
.hero-copy { position: relative; z-index: 10; }

.nepali-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(212,160,23,.15);
  border: 1px solid rgba(212,160,23,.35);
  padding: 6px 14px;
  border-radius: 50px;
  margin-bottom: 22px;
  animation: fadeInUp .7s var(--ease) both;
}
.badge-dot {
  width: 7px; height: 7px;
  background: var(--gold);
  border-radius: 50%;
  animation: pulse 2s infinite;
  box-shadow: 0 0 0 0 rgba(212,160,23,.5);
}
.nepali-badge span:last-child {
  font-size: .78rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: .03em;
}

.hero-h1 {
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  line-height: 1.12;
  color: #fff;
  margin-bottom: 16px;
  animation: fadeInUp .8s var(--ease) .15s both;
}
.hero-accent {
  background: linear-gradient(90deg, #26C6C6, var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-tagline {
  font-size: 1rem;
  font-weight: 600;
  color: rgba(178,235,235,.9);
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-bottom: 14px;
  animation: fadeInUp .8s var(--ease) .25s both;
}

.hero-desc {
  font-size: .95rem;
  color: rgba(200,240,240,.8);
  max-width: 440px;
  line-height: 1.75;
  margin-bottom: 32px;
  animation: fadeInUp .8s var(--ease) .35s both;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 32px;
  animation: fadeInUp .8s var(--ease) .45s both;
}

.btn-hero-primary {
  display: inline-flex;
  align-items: center;
  background: var(--ep-500);
  color: #fff;
  font-weight: 700;
  font-size: .95rem;
  padding: 13px 28px;
  border-radius: 50px;
  transition: all .25s;
  animation: pulse 3s infinite 1s;
}
.btn-hero-primary:hover {
  background: var(--ep-600);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(0,139,139,.5);
}

.btn-hero-outline {
  display: inline-flex;
  align-items: center;
  border: 2px solid rgba(255,255,255,.5);
  color: #fff;
  font-weight: 600;
  font-size: .95rem;
  padding: 12px 26px;
  border-radius: 50px;
  transition: all .25s;
}
.btn-hero-outline:hover {
  border-color: #fff;
  background: rgba(255,255,255,.12);
  transform: translateY(-2px);
}

.hero-trust {
  display: flex;
  align-items: center;
  gap: 20px;
  animation: fadeInUp .8s var(--ease) .55s both;
}
.trust-item { text-align: center; }
.trust-num {
  display: block;
  font-family: 'Poppins', sans-serif;
  font-size: 1.4rem;
  font-weight: 800;
  color: #fff;
}
.trust-lbl { font-size: .7rem; color: rgba(200,240,240,.7); }
.trust-sep { width: 1px; height: 36px; background: rgba(255,255,255,.2); }

/* Dharahara tower — illustrated SVG, stands behind the dashboard card */
.dharahara-illus {
  position: absolute;
  right: 0;
  bottom: -30px;
  z-index: 1;
  filter: drop-shadow(0 12px 28px rgba(0,0,0,.3));
  animation: fadeInUp 1.2s var(--ease) .5s both;
}
.dharahara-illus svg { display: block; }
/* gold finial glint */
.dh-glint {
  animation: dhGlint 3.2s ease-in-out infinite;
  transform-origin: center;
}
@keyframes dhGlint {
  0%,100% { opacity: .5; r: 3.2px; }
  50%     { opacity: 1;  r: 4.4px; }
}
.dh-spire { animation: fadeIn 1s ease 1.4s both; }

/* Dashboard card */
.dash-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 32px 80px rgba(0,0,0,.35), 0 0 0 1px rgba(0,0,0,.08);
  width: 320px;
  overflow: hidden;
  animation: floatCard 5s ease-in-out infinite, fadeInRight 1s var(--ease) .6s both;
  position: relative;
  z-index: 5;
}
.dash-card-chrome {
  background: #f0f0f0;
  padding: 10px 14px;
  display: flex;
  align-items: center;
  gap: 8px;
  border-bottom: 1px solid #e0e0e0;
}
.chrome-dots { display: flex; gap: 5px; }
.dot { width: 10px; height: 10px; border-radius: 50%; }
.dot.red    { background: #ff5f57; }
.dot.yellow { background: #febc2e; }
.dot.green  { background: #28c840; }
.chrome-title { font-size: .68rem; color: #888; }

.dash-card-body { padding: 12px; }
.dc-kpis { display: grid; grid-template-columns: repeat(3,1fr); gap: 8px; margin-bottom: 12px; }
.dc-kpi {
  background: #f9f9f9;
  border-radius: 10px;
  padding: 8px;
  text-align: center;
  border: 1px solid #eee;
}
.dc-kpi-ico { font-size: .9rem; margin-bottom: 4px; padding: 4px; border-radius: 6px; display: inline-block; }
.dc-kpi-val { font-family: 'Poppins',sans-serif; font-size: .75rem; font-weight: 700; color: #1a2b2b; }
.dc-kpi-name { font-size: .58rem; color: #888; margin-top: 2px; }
.dc-kpi-tr { font-size: .6rem; font-weight: 600; margin-top: 3px; }
.dc-kpi-tr.up { color: #16a34a; }

.dc-chart { margin-bottom: 10px; }
.dc-chart-lbl { font-size: .65rem; color: #888; margin-bottom: 6px; font-weight: 600; }
.dc-bars {
  display: flex;
  align-items: flex-end;
  gap: 3px;
  height: 50px;
}
.dc-bar {
  flex: 1;
  background: var(--ep-100);
  border-radius: 3px 3px 0 0;
  height: var(--h);
  transition: height .8s var(--ease);
}
.dc-bar.active { background: var(--ep-500); }

.dc-funnel { }
.dc-f-row {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 4px;
  font-size: .62rem;
  color: #555;
}
.dc-f-row span:first-child { width: 52px; flex-shrink: 0; }
.dc-f-bar {
  height: 12px;
  background: var(--ep-500);
  border-radius: 3px;
  width: var(--w);
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding-right: 4px;
  color: #fff;
  font-size: .55rem;
  font-weight: 700;
  min-width: 18px;
  flex: 1;
}

/* Scroll cue */
.scroll-cue {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
}
.scroll-dot-anim {
  width: 26px; height: 42px;
  border: 2px solid rgba(255,255,255,.5);
  border-radius: 13px;
  position: relative;
}
.scroll-dot-anim::after {
  content: '';
  position: absolute;
  top: 6px; left: 50%;
  transform: translateX(-50%);
  width: 5px; height: 5px;
  background: #fff;
  border-radius: 50%;
  animation: scrollBounce 1.8s ease-in-out infinite;
}

/* ═══════════════════════════════════════════════
   STATS BAR
════════════════════════════════════════════════ */
.stats-bar {
  background: linear-gradient(135deg, var(--ep-600), var(--ep-700));
  padding: 42px 16px;
}
.stat-item { }
.stat-num {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 800;
  color: #fff;
}
.stat-lbl {
  font-size: .78rem;
  color: rgba(200,240,240,.75);
  margin-top: 4px;
}

/* ═══════════════════════════════════════════════
   ABOUT
════════════════════════════════════════════════ */
.about-visual { position: relative; min-height: 360px; }

/* ── Boudhanath stupa — bold illustration ── */
.stupa-illus-wrap {
  position: relative;
  width: 340px;
  max-width: 100%;
  filter: drop-shadow(0 18px 44px rgba(0,139,139,.22));
  animation: fadeInUp 1s var(--ease) both;
}
.stupa-illus { display: block; width: 100%; height: auto; overflow: visible; }

/* Buddha eyes gentle blink-glow */
.st-eyes  { animation: stEyeGlow 4s ease-in-out infinite; }
@keyframes stEyeGlow {
  0%,100% { opacity: 1; }
  50%     { opacity: .82; }
}
/* Pinnacle jewel sparkle */
.st-jewel { animation: dhGlint 3s ease-in-out infinite; transform-origin: center; }

/* Prayer flag streamers sway */
.st-flags-l { transform-origin: 160px 40px; animation: stSwayL 5s ease-in-out infinite; }
.st-flags-r { transform-origin: 160px 40px; animation: stSwayR 5s ease-in-out infinite; }
@keyframes stSwayL {
  0%,100% { transform: rotate(0deg); }
  50%     { transform: rotate(-1.6deg); }
}
@keyframes stSwayR {
  0%,100% { transform: rotate(0deg); }
  50%     { transform: rotate(1.6deg); }
}
/* each flag pops in on reveal */
.stupa-illus .st-flags-l rect,
.stupa-illus .st-flags-r rect {
  animation: sketchPop .5s ease both;
}
.stupa-illus .st-flags-l rect:nth-child(1),
.stupa-illus .st-flags-r rect:nth-child(1) { animation-delay: .5s; }
.stupa-illus .st-flags-l rect:nth-child(2),
.stupa-illus .st-flags-r rect:nth-child(2) { animation-delay: .65s; }
.stupa-illus .st-flags-l rect:nth-child(3),
.stupa-illus .st-flags-r rect:nth-child(3) { animation-delay: .8s; }
.stupa-illus .st-flags-l rect:nth-child(4),
.stupa-illus .st-flags-r rect:nth-child(4) { animation-delay: .95s; }
.stupa-illus .st-flags-l rect:nth-child(5),
.stupa-illus .st-flags-r rect:nth-child(5) { animation-delay: 1.1s; }

.about-badge {
  position: absolute;
  background: #fff;
  border: 1px solid var(--ep-100);
  border-radius: 50px;
  padding: 8px 18px;
  font-size: .8rem;
  font-weight: 600;
  color: var(--ep-700);
  box-shadow: 0 4px 16px rgba(0,139,139,.12);
  white-space: nowrap;
  z-index: 5;
}
.ab1 { top: 8%;  left: -5%;  animation: badgeFloat 3.5s ease-in-out infinite; }
.ab2 { top: 50%; right: -8%; animation: badgeFloat 4s ease-in-out infinite .6s; }
.ab3 { bottom: 8%; left: 5%; animation: badgeFloat 3.8s ease-in-out infinite 1.2s; }

.feature-pills { display: flex; flex-wrap: wrap; gap: 10px; }
.pill {
  background: var(--ep-50);
  color: var(--ep-700);
  font-size: .78rem;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 50px;
  border: 1px solid var(--ep-100);
}

/* ═══════════════════════════════════════════════
   PRAYER FLAGS STRIP — cultural divider
════════════════════════════════════════════════ */
.flags-strip {
  position: relative;
  height: 150px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg, #e7f6f6 0%, #ffffff 100%);
  border-top: 1px solid #d8efef;
  border-bottom: 1px solid #d8efef;
}
/* Illustrated flags SVG fills the strip */
.flags-strip-svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
/* Label text */
.flags-strip-label {
  position: relative;
  z-index: 4;
  margin-top: 70px;
  color: var(--ep-700);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  background: rgba(255,255,255,0.82);
  padding: 6px 20px;
  border-radius: 50px;
  border: 1px solid var(--ep-100);
  pointer-events: none;
}

/* ═══════════════════════════════════════════════
   FEATURES
════════════════════════════════════════════════ */
.feat-card {
  background: #fff;
  border-radius: 16px;
  padding: 28px;
  border: 1px solid #e8f4f4;
  transition: all .3s var(--ease);
  cursor: default;
  position: relative;
  overflow: hidden;
}
.feat-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--ep-50) 0%, transparent 60%);
  opacity: 0;
  transition: opacity .3s;
}
.feat-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0,139,139,.12);
  border-color: var(--ep-200, var(--ep-100));
}
.feat-card:hover::before { opacity: 1; }

.feat-icon-wrap {
  width: 48px; height: 48px;
  background: var(--ep-50);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ep-600);
  margin-bottom: 16px;
  transition: all .3s;
  position: relative;
}
.feat-card:hover .feat-icon-wrap {
  background: var(--ep-500);
  color: #fff;
  transform: scale(1.1);
}

.feat-title {
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: #0d1f1f;
  margin-bottom: 8px;
}
.feat-desc {
  font-size: .865rem;
  color: #5a7070;
  line-height: 1.7;
}

/* ═══════════════════════════════════════════════
   HOW IT WORKS
════════════════════════════════════════════════ */
.steps-wrap { position: relative; }
.steps-connector {
  display: none;
}
@media (min-width: 1024px) {
  .steps-connector {
    display: block;
    position: absolute;
    top: 48px;
    left: 10%; right: 10%;
    height: 2px;
    background: linear-gradient(90deg, var(--ep-100), var(--ep-500), var(--ep-100));
    z-index: 0;
  }
}

.step-card {
  position: relative;
  z-index: 1;
  background: #fff;
  border-radius: 16px;
  padding: 28px 20px;
  text-align: center;
  border: 1px solid #e8f4f4;
  transition: all .3s var(--ease);
}
.step-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 40px rgba(0,139,139,.1);
}

.step-num {
  position: absolute;
  top: -14px; left: 50%;
  transform: translateX(-50%);
  width: 28px; height: 28px;
  background: var(--ep-500);
  color: #fff;
  border-radius: 50%;
  font-family: 'Poppins',sans-serif;
  font-size: .75rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 3px 10px rgba(0,139,139,.4);
}

.step-ico {
  font-size: 2.2rem;
  margin: 10px 0 12px;
  display: block;
}

.step-title {
  font-family: 'Poppins',sans-serif;
  font-size: .92rem;
  font-weight: 700;
  color: #0d1f1f;
  margin-bottom: 8px;
}
.step-desc {
  font-size: .8rem;
  color: #5a7070;
  line-height: 1.6;
}

/* ═══════════════════════════════════════════════
   MODULES
════════════════════════════════════════════════ */
.mod-tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-bottom: 28px;
}
.mod-tab {
  padding: 8px 18px;
  border-radius: 50px;
  border: 1.5px solid #d0e8e8;
  background: #fff;
  color: var(--ep-600);
  font-size: .82rem;
  font-weight: 600;
  cursor: pointer;
  transition: all .22s;
}
.mod-tab:hover {
  background: var(--ep-50);
  border-color: var(--ep-500);
}
.mod-tab.active {
  background: var(--ep-500);
  color: #fff;
  border-color: var(--ep-500);
  box-shadow: 0 4px 16px rgba(0,139,139,.3);
}

.mod-panels { position: relative; }
.mod-panel {
  display: none;
  animation: fadeIn .35s var(--ease);
}
.mod-panel.active { display: block; }

.mod-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  background: #fff;
  border-radius: 20px;
  padding: 32px;
  border: 1px solid #e8f4f4;
  box-shadow: 0 4px 24px rgba(0,0,0,.06);
}
@media (min-width: 768px) {
  .mod-grid { grid-template-columns: 1fr 1fr; }
}

.mod-title {
  font-family: 'Poppins',sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: #0d1f1f;
  margin-bottom: 10px;
}
.mod-desc { font-size: .88rem; color: #5a7070; line-height: 1.7; margin-bottom: 16px; }
.mod-list { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.mod-list li { font-size: .85rem; color: #334; display: flex; align-items: flex-start; gap: 8px; }

/* Module preview widgets */
.mod-preview {
  display: flex;
  align-items: center;
  justify-content: center;
}

.prev-inv-card {
  background: #f7fcfc;
  border-radius: 14px;
  padding: 20px;
  border: 1px solid #d0e8e8;
  width: 100%;
  max-width: 280px;
}
.prev-header {
  font-family: 'Poppins',sans-serif;
  font-weight: 700;
  font-size: .9rem;
  color: var(--ep-700);
  margin-bottom: 12px;
  padding-bottom: 8px;
  border-bottom: 1px dashed #c0dada;
}
.prev-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 5px 0;
  font-size: .8rem;
  color: #555;
  border-bottom: 1px solid #f0f0f0;
}
.prev-row:last-child { border: none; }
.prev-val { font-weight: 700; color: var(--ep-600); }
.prev-paid { font-weight: 700; color: #16a34a; }
.badge-cash {
  background: #E8F5E9;
  color: #16a34a;
  font-size: .68rem;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 50px;
}

.prev-funnel { width: 100%; max-width: 280px; }
.pf-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
  font-size: .78rem;
  color: #555;
}
.pf-row span:first-child { width: 100px; flex-shrink: 0; font-weight: 600; }
/* Track = full remaining width; fill = only var(--pw) of it */
.pf-track {
  flex: 1;
  height: 22px;
  background: rgba(0,139,139,.1);
  border-radius: 5px;
  overflow: hidden;
}
.pf-bar {
  height: 100%;
  background: linear-gradient(90deg, var(--ep-600), var(--ep-400));
  border-radius: 5px;
  width: var(--pw);   /* e.g. 69% of the TRACK, not the whole row */
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding-right: 8px;
  color: #fff;
  font-size: .68rem;
  font-weight: 700;
  transition: width 1s var(--ease);
  min-width: 28px;
}

.prev-hierarchy { width: 100%; max-width: 300px; }
.h-row {
  padding: 7px 10px;
  border-radius: 8px;
  margin-bottom: 4px;
  font-size: .78rem;
  color: #334;
  font-weight: 500;
}
.h-row.l0 { background: var(--ep-500); color: #fff; font-weight: 700; }
.h-row.l1 { background: var(--ep-50);  color: var(--ep-700); margin-left: 14px; }
.h-row.l2 { background: #f7f7f7; color: #555; margin-left: 28px; border: 1px solid #eee; }

.prev-roles { width: 100%; max-width: 280px; }
.role-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
  font-size: .8rem;
  color: #444;
}
.r-badge {
  background: var(--ep-50);
  color: var(--ep-700);
  font-size: .66rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 50px;
  border: 1px solid var(--ep-100);
  white-space: nowrap;
}

.prev-settings { width: 100%; max-width: 280px; }
.ps-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
  border-bottom: 1px solid #f0f0f0;
  font-size: .82rem;
  color: #555;
}
.ps-toggle {
  background: #eee;
  color: #888;
  font-size: .7rem;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 50px;
}
.ps-toggle.on { background: var(--ep-50); color: var(--ep-600); }
.ps-themes { display: flex; gap: 6px; }
.ps-th {
  width: 32px; height: 20px;
  border-radius: 5px;
  background: #ddd;
  border: 2px solid transparent;
}
.ps-th.active { background: var(--ep-500); border-color: var(--ep-700); }

/* ═══════════════════════════════════════════════
   FULL DASHBOARD MOCKUP
════════════════════════════════════════════════ */
.full-dash {
  background: #f8fafa;
  border-radius: 20px;
  border: 1px solid #d8eded;
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(0,0,0,.08);
}

.fd-topbar {
  background: #fff;
  border-bottom: 1px solid #e8f0f0;
  padding: 12px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
}
.fd-title { font-family: 'Poppins',sans-serif; font-weight: 700; font-size: .9rem; color: #0d1f1f; }
.fd-filters { display: flex; gap: 4px; }
.fd-f {
  padding: 4px 12px;
  border-radius: 50px;
  border: 1px solid #d8e8e8;
  background: #fff;
  font-size: .72rem;
  font-weight: 600;
  color: #5a7070;
  cursor: pointer;
  transition: all .2s;
}
.fd-f.active, .fd-f:hover { background: var(--ep-500); color: #fff; border-color: var(--ep-500); }

.fd-kpis {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 1px;
  background: #d8eded;
  border-bottom: 1px solid #d8eded;
}
@media (min-width: 640px)  { .fd-kpis { grid-template-columns: repeat(3,1fr); } }
@media (min-width: 1024px) { .fd-kpis { grid-template-columns: repeat(6,1fr); } }

.fd-kpi {
  background: #fff;
  padding: 16px 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.fd-kpi-ico { font-size: 1.4rem; flex-shrink: 0; }
.fd-kpi-v {
  font-family: 'Poppins',sans-serif;
  font-size: .85rem;
  font-weight: 800;
  color: #0d1f1f;
}
.fd-kpi-n { font-size: .65rem; color: #888; }
.fd-kpi-t { font-size: .68rem; font-weight: 700; white-space: nowrap; }
.fd-kpi-t.up  { color: #16a34a; }
.fd-kpi-t.dn  { color: #dc2626; }
.fd-kpi-t.neu { color: #888; }

.fd-charts {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  background: #d8eded;
  border-bottom: 1px solid #d8eded;
}
@media (min-width: 768px) { .fd-charts { grid-template-columns: 3fr 2fr; } }

.fd-chart-card {
  background: #fff;
  padding: 20px;
}
.fd-chart-ttl {
  font-family: 'Poppins',sans-serif;
  font-weight: 700;
  font-size: .85rem;
  color: #0d1f1f;
  margin-bottom: 16px;
}
.fd-chart-sub { font-size: .68rem; color: #888; font-weight: 400; margin-left: 6px; }

/* Revenue chart */
.fd-rev-bars {
  display: flex;
  align-items: flex-end;
  gap: 6px;
  height: 100px;
}
.fd-rg {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  height: 100%;
  justify-content: flex-end;
}
.fd-rb {
  width: 100%;
  border-radius: 3px 3px 0 0;
  height: 0;
  transition: height 1.2s var(--ease);
}
.fd-rb.paid { background: var(--ep-500); }
.fd-rb.out  { background: #D4A017; opacity: .6; }
.fd-rl { font-size: .58rem; color: #aaa; margin-top: 3px; }
.fd-legend { display: flex; gap: 14px; margin-top: 8px; font-size: .7rem; }
.leg-paid { color: var(--ep-500); font-weight: 600; }
.leg-out  { color: #D4A017; font-weight: 600; }

/* Funnel */
.fd-wf { display: flex; flex-direction: column; gap: 10px; }
.fd-wf-row {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .75rem;
}
.fd-wf-lbl { width: 120px; flex-shrink: 0; color: #555; font-weight: 500; }
/* Track fills remaining width; fill bar respects --fw % */
.fd-wf-track {
  flex: 1;
  height: 24px;
  background: rgba(0,139,139,.1);
  border-radius: 5px;
  overflow: hidden;
}
.fd-wf-b {
  height: 100%;
  background: linear-gradient(90deg, var(--ep-700), var(--ep-400));
  border-radius: 5px;
  display: flex;
  align-items: center;
  padding-left: 8px;
  color: #fff;
  font-size: .68rem;
  font-weight: 700;
  width: 0;           /* animated by JS to var(--fw) of the TRACK */
  transition: width 1.2s var(--ease);
  overflow: hidden;
  white-space: nowrap;
}
.fd-wf-pct { font-size: .72rem; font-weight: 700; color: var(--ep-600); width: 38px; text-align: right; flex-shrink: 0; }

/* Investigations */
.fd-investigations { padding: 20px; }
.fd-inv-list { display: flex; flex-direction: column; gap: 10px; }
.fd-inv-row {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .78rem;
  color: #444;
}
.fd-inv-row span:first-child { width: 175px; flex-shrink: 0; }
/* Track takes remaining row width; fill respects --iw % */
.fd-inv-track {
  flex: 1;
  height: 16px;
  background: rgba(0,139,139,.1);
  border-radius: 4px;
  overflow: hidden;
}
.fd-inv-b {
  height: 100%;
  background: linear-gradient(90deg, var(--ep-600), var(--ep-400));
  border-radius: 4px;
  width: 0;           /* animated to var(--iw) % of the TRACK */
  transition: width 1.2s var(--ease);
}
.fd-inv-n { width: 30px; text-align: right; font-weight: 700; color: #333; flex-shrink: 0; }

/* ═══════════════════════════════════════════════
   TESTIMONIALS
════════════════════════════════════════════════ */
/* Testimonials — illustrated mandala watermark background */
.testi-bg {
  position: relative;
  background: linear-gradient(135deg, #eefafa, #f6fdfd);
  overflow: hidden;
}
.testi-mandala {
  position: absolute;
  top: 50%; left: 50%;
  width: 720px; height: 720px;
  transform: translate(-50%, -50%);
  transform-origin: center;
  animation: mandalaRotate 90s linear infinite;
  opacity: 0.10;
  z-index: 0;
  pointer-events: none;
}
.testi-bg > .max-w-7xl { position: relative; z-index: 1; }

.testi-card {
  background: #fff;
  border-radius: 20px;
  padding: 30px;
  border: 1px solid #daf0f0;
  box-shadow: 0 4px 20px rgba(0,139,139,.07);
  transition: all .3s var(--ease);
  position: relative;
}
.testi-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 40px rgba(0,139,139,.12);
}
.testi-q {
  font-family: 'Poppins',sans-serif;
  font-size: 3rem;
  font-weight: 800;
  color: var(--ep-100);
  line-height: 1;
  margin-bottom: -8px;
}
.testi-txt { font-size: .88rem; color: #4a6060; line-height: 1.75; margin-bottom: 20px; }
.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-av {
  width: 44px; height: 44px;
  background: var(--ep-500);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Poppins',sans-serif;
  font-weight: 700;
  font-size: .85rem;
  flex-shrink: 0;
}
.testi-name { font-weight: 700; font-size: .85rem; color: #0d1f1f; }
.testi-role { font-size: .73rem; color: #888; }

/* ═══════════════════════════════════════════════
   PRICING
════════════════════════════════════════════════ */
.price-card {
  background: #fff;
  border-radius: 24px;
  padding: 44px 40px;
  border: 2px solid var(--ep-100);
  box-shadow: 0 8px 40px rgba(0,139,139,.1);
  position: relative;
  max-width: 560px;
  margin: 0 auto;
  text-align: left;
}
.price-badge {
  position: absolute;
  top: -14px; left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(90deg, var(--ep-500), #26C6C6);
  color: #fff;
  font-size: .72rem;
  font-weight: 700;
  padding: 5px 18px;
  border-radius: 50px;
  letter-spacing: .06em;
}
.price-title {
  font-family: 'Poppins',sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  color: #0d1f1f;
  margin-bottom: 6px;
}
.price-val {
  font-family: 'Poppins',sans-serif;
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--ep-500);
  margin-bottom: 10px;
}
.price-note { font-size: .82rem; color: #888; margin-bottom: 20px; line-height: 1.6; }
.price-feats {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 28px;
}
.price-feats li { font-size: .88rem; color: #334; display: flex; align-items: center; gap: 8px; }

.btn-pricing {
  display: block;
  background: var(--ep-500);
  color: #fff;
  text-align: center;
  font-weight: 700;
  font-size: 1rem;
  padding: 14px;
  border-radius: 12px;
  transition: all .25s;
  animation: pulse 3s infinite 2s;
}
.btn-pricing:hover {
  background: var(--ep-600);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(0,139,139,.4);
}

/* ═══════════════════════════════════════════════
   CONTACT
════════════════════════════════════════════════ */
/* Contact — moody dark teal with illustrated mountain silhouette */
.contact-section {
  position: relative;
  overflow: hidden;
  background: linear-gradient(160deg, #023238 0%, #044a4f 45%, #012528 100%);
}
/* Illustrated mountain range silhouette anchored to the bottom (inline SVG) */
.contact-section::before {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 46%;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 340' preserveAspectRatio='xMidYMax slice'%3E%3Cpath fill='%23021c1f' d='M0,340 L0,210 L120,120 L210,170 L320,70 L430,150 L520,90 L640,180 L720,60 L820,160 L930,100 L1040,180 L1140,90 L1260,170 L1360,110 L1440,160 L1440,340Z'/%3E%3Cpath fill='%23063b40' opacity='0.7' d='M0,340 L0,250 L130,190 L250,240 L360,170 L480,235 L600,180 L720,240 L840,175 L960,235 L1080,185 L1200,240 L1320,190 L1440,235 L1440,340Z'/%3E%3Cg fill='%23ffffff' opacity='0.85'%3E%3Cpath d='M720,60 L700,95 L740,95Z'/%3E%3Cpath d='M320,70 L305,100 L335,100Z'/%3E%3C/g%3E%3C/svg%3E") no-repeat bottom center;
  background-size: cover;
  z-index: 0;
}
/* subtle star/snow dots via radial gradients on top */
.contact-section::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(1.5px 1.5px at 18% 22%, rgba(255,255,255,.5), transparent),
    radial-gradient(1.5px 1.5px at 72% 16%, rgba(255,255,255,.4), transparent),
    radial-gradient(1.5px 1.5px at 45% 30%, rgba(255,255,255,.35), transparent),
    radial-gradient(1.5px 1.5px at 88% 40%, rgba(255,255,255,.3), transparent);
  z-index: 1;
}
/* Push all content above the pseudo-element overlays */
.contact-section > * { position: relative; z-index: 2; }

.contact-items { display: flex; flex-direction: column; gap: 18px; }
.contact-item { display: flex; align-items: flex-start; gap: 14px; }
.ci-icon { font-size: 1.3rem; margin-top: 2px; }
.ci-lbl { font-size: .72rem; color: rgba(178,235,235,.7); text-transform: uppercase; letter-spacing: .08em; margin-bottom: 2px; }
.ci-val { font-size: .9rem; color: #fff; font-weight: 500; }
.ci-link { transition: color .2s; }
.ci-link:hover { color: var(--ep-100); }

.contact-form-box {
  background: rgba(255,255,255,.06);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 32px;
  border: 1px solid rgba(255,255,255,.15);
}

.form-row { display: grid; grid-template-columns: 1fr; gap: 16px; }
@media (min-width: 480px) { .form-row { grid-template-columns: 1fr 1fr; } }

.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.form-group label {
  font-size: .78rem;
  font-weight: 600;
  color: rgba(200,240,240,.8);
  text-transform: uppercase;
  letter-spacing: .05em;
}
.form-group input,
.form-group select,
.form-group textarea {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 10px;
  padding: 10px 14px;
  color: #fff;
  font-size: .9rem;
  font-family: inherit;
  transition: border-color .2s, background .2s;
  outline: none;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(200,240,240,.4); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: rgba(255,255,255,.5);
  background: rgba(255,255,255,.12);
}
.form-group select option { background: var(--ep-800); color: #fff; }
.form-group textarea { resize: vertical; min-height: 80px; }

.form-btn {
  width: 100%;
  background: var(--ep-500);
  color: #fff;
  font-weight: 700;
  font-size: .95rem;
  padding: 13px;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  transition: all .25s;
  font-family: inherit;
  display: flex;
  align-items: center;
  justify-content: center;
}
.form-btn:hover {
  background: var(--ep-600);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,.3);
}
.form-ok, .form-error {
  margin-top: 14px;
  padding: 12px 16px;
  border-radius: 8px;
  font-size: .88rem;
  font-weight: 600;
}
.form-ok {
  background: rgba(22,163,74,.2);
  border: 1px solid rgba(22,163,74,.4);
  color: #86efac;
}
.form-error {
  background: rgba(220,38,38,.2);
  border: 1px solid rgba(220,38,38,.4);
  color: #fca5a5;
}
.hidden { display: none !important; }

/* ═══════════════════════════════════════════════
   FOOTER
════════════════════════════════════════════════ */
.site-footer {
  background: linear-gradient(135deg, var(--ep-700) 0%, var(--ep-800) 100%);
  color: rgba(224,247,247,.85);
}

/* Footer logo — colorful logo on a raised white 3D card */
.footer-logo-card {
  display: inline-block;
  background: linear-gradient(145deg, #ffffff 0%, #eef7f7 100%);
  border-radius: 20px;
  padding: 22px 30px;
  box-shadow:
    0 22px 48px rgba(0,0,0,.38),
    0 6px 14px rgba(0,0,0,.22),
    inset 0 1px 0 rgba(255,255,255,.9),
    inset 0 -2px 6px rgba(0,80,80,.10);
  transform: perspective(700px) rotateX(0deg);
  transition: transform .4s var(--ease), box-shadow .4s var(--ease);
  animation: footerLogoFloat 5s ease-in-out infinite;
}
.footer-logo-card:hover {
  transform: perspective(700px) translateY(-5px) rotateX(5deg) scale(1.02);
  box-shadow:
    0 32px 64px rgba(0,0,0,.45),
    0 10px 20px rgba(0,0,0,.28),
    inset 0 1px 0 rgba(255,255,255,.9);
}
.footer-logo-img {
  height: 100px;
  width: auto;
  display: block;
}
@keyframes footerLogoFloat {
  0%,100% { transform: perspective(700px) translateY(0)    rotateX(0deg); }
  50%     { transform: perspective(700px) translateY(-7px) rotateX(3deg); }
}
@media (max-width: 640px) {
  .footer-logo-img { height: 100px; }
  .footer-logo-card { padding: 18px 22px; }
}

.footer-divider {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 0;
  border-top: 1px solid rgba(255,255,255,.18);
}
.footer-divider::before,
.footer-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: rgba(255,255,255,.18);
}

.footer-lnk {
  display: block;
  font-size: .82rem;
  color: rgba(214,240,240,.82);
  transition: color .2s;
}
.footer-lnk:hover { color: #ffffff; }

.footer-cta-btn {
  display: inline-block;
  background: var(--ep-500);
  color: #fff;
  font-weight: 700;
  font-size: .82rem;
  padding: 9px 20px;
  border-radius: 50px;
  transition: all .2s;
}
.footer-cta-btn:hover {
  background: var(--ep-600);
  transform: translateY(-1px);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
  padding: 16px 0 8px;
  border-top: 1px solid rgba(255,255,255,.15);
}

/* ═══════════════════════════════════════════════
   RESPONSIVE
════════════════════════════════════════════════ */
@media (max-width: 768px) {
  .about-badge { display: none; }
  .sec-sub { max-width: 100%; }
  .hero-trust { flex-wrap: wrap; gap: 12px; }
  .trust-sep { display: none; }
  .mod-grid { padding: 20px; }
  .price-card { padding: 36px 24px; }
  .contact-form-box { padding: 24px; }
  .full-dash { border-radius: 12px; }
}

@media (max-width: 480px) {
  .hero-ctas { flex-direction: column; }
  .btn-hero-primary, .btn-hero-outline { justify-content: center; }
}
