/* ═══════════════════════════════════════════════════════════════════════ */
/* ─── MODERN UI/UX ENHANCEMENTS — REYPUB DIGITAL 2026 ─────────────── */
/* ─── Animations, Images, Glassmorphism, Scroll Effects, Particles ── */
/* ═══════════════════════════════════════════════════════════════════════ */

/* ─── PERFORMANCE: Reduce Motion for Accessibility ─────── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}

/* ─── SMOOTH PAGE TRANSITIONS ─────── */
body { opacity: 1; transition: opacity 0.3s ease; }

/* ─── OPTIMIZED LOADER (Max 1.5s) ─────── */
.reypub-loader { transition: opacity 0.4s ease, visibility 0.4s ease; }
.loader-highlight { animation-duration: 0.25s !important; }
.loader-highlight:nth-child(1) { animation-delay: 0.05s !important; }
.loader-highlight:nth-child(2) { animation-delay: 0.15s !important; }
.loader-highlight:nth-child(3) { animation-delay: 0.25s !important; }
.loader-highlight:nth-child(4) { animation-delay: 0.35s !important; }
.loader-highlight:nth-child(5) { animation-delay: 0.45s !important; }
.loader-highlight:nth-child(6) { animation-delay: 0.55s !important; }
.loader-bar { animation: loaderProgress 1.4s ease-in-out forwards !important; }

/* ─── MODERN SCROLL ANIMATIONS ─────── */
.scroll-reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}
.scroll-reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}
.scroll-reveal-left {
  opacity: 0;
  transform: translateX(-50px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}
.scroll-reveal-left.revealed {
  opacity: 1;
  transform: translateX(0);
}
.scroll-reveal-right {
  opacity: 0;
  transform: translateX(50px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}
.scroll-reveal-right.revealed {
  opacity: 1;
  transform: translateX(0);
}
.scroll-reveal-scale {
  opacity: 0;
  transform: scale(0.9);
  transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1), transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.scroll-reveal-scale.revealed {
  opacity: 1;
  transform: scale(1);
}

/* Stagger children */
.stagger-children .scroll-reveal:nth-child(1) { transition-delay: 0s; }
.stagger-children .scroll-reveal:nth-child(2) { transition-delay: 0.08s; }
.stagger-children .scroll-reveal:nth-child(3) { transition-delay: 0.16s; }
.stagger-children .scroll-reveal:nth-child(4) { transition-delay: 0.24s; }
.stagger-children .scroll-reveal:nth-child(5) { transition-delay: 0.32s; }
.stagger-children .scroll-reveal:nth-child(6) { transition-delay: 0.4s; }
.stagger-children .scroll-reveal:nth-child(7) { transition-delay: 0.48s; }

/* ─── HERO TYPING EFFECT ─────── */
.typing-cursor::after {
  content: '|';
  animation: blinkCursor 0.7s step-end infinite;
  color: var(--primary);
  font-weight: 300;
}
@keyframes blinkCursor {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}

/* ─── GLASSMORPHISM CARDS ─────── */
.glass-card {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06);
}

/* ─── GRADIENT MESH BACKGROUNDS ─────── */
.gradient-mesh-bg {
  position: relative;
  overflow: hidden;
}
.gradient-mesh-bg::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background:
    radial-gradient(circle at 20% 20%, rgba(11, 95, 212, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(105, 65, 198, 0.06) 0%, transparent 50%),
    radial-gradient(circle at 50% 50%, rgba(16, 185, 129, 0.04) 0%, transparent 50%);
  animation: meshRotate 25s linear infinite;
  pointer-events: none;
  z-index: 0;
}
@keyframes meshRotate {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* ─── HOVER LIFT EFFECTS ─────── */
.hover-lift {
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.35s ease;
}
.hover-lift:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}

/* ─── MAGNETIC BUTTON EFFECT ─────── */
.btn-magnetic {
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.3s ease;
}
.btn-magnetic:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 10px 30px rgba(11, 95, 212, 0.3);
}

/* ─── CARD GLOW ON HOVER ─────── */
.service-card { position: relative; overflow: hidden; }
.service-card::after {
  content: '';
  position: absolute;
  top: -2px; left: -2px; right: -2px; bottom: -2px;
  background: linear-gradient(135deg, rgba(11,95,212,0.15), rgba(105,65,198,0.1), rgba(16,185,129,0.08));
  border-radius: inherit;
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: -1;
}
.service-card:hover::after {
  opacity: 1;
}

/* ─── ANIMATED GRADIENT BORDER ─────── */
@keyframes gradientBorderRotate {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* ─── PARTICLE CANVAS ─────── */
#particles-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  opacity: 0.4;
}

/* ─── HERO IMAGE PARALLAX ─────── */
.parallax-element {
  will-change: transform;
  transition: transform 0.1s linear;
}

/* ═══════════════════════════════════════════════════════════ */
/* ─── IMAGE SHOWCASE SECTION (NEW) ─────────────────────── */
/* ═══════════════════════════════════════════════════════════ */
.image-showcase {
  padding: 80px 0;
  background: var(--bg-light);
  overflow: hidden;
}
.showcase-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 40px;
}
.showcase-item {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 16/10;
  cursor: pointer;
}
.showcase-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.showcase-item:hover img {
  transform: scale(1.08);
}
.showcase-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10, 15, 30, 0.85) 0%, rgba(10, 15, 30, 0.2) 50%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
  opacity: 0;
  transition: opacity 0.4s ease;
}
.showcase-item:hover .showcase-overlay {
  opacity: 1;
}
.showcase-overlay h3 {
  color: #fff;
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 6px;
  transform: translateY(10px);
  transition: transform 0.4s ease;
}
.showcase-item:hover .showcase-overlay h3 {
  transform: translateY(0);
}
.showcase-overlay p {
  color: rgba(255,255,255,0.7);
  font-size: 0.85rem;
  transform: translateY(10px);
  transition: transform 0.4s ease 0.05s;
}
.showcase-item:hover .showcase-overlay p {
  transform: translateY(0);
}
.showcase-item.showcase-large {
  grid-column: span 2;
  grid-row: span 2;
  aspect-ratio: auto;
}

/* ═══════════════════════════════════════════════════════════ */
/* ─── ANIMATED STATS COUNTER (NEW) ─────────────────────── */
/* ═══════════════════════════════════════════════════════════ */
.animated-stats-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #0a1628, #101828, #0a1628);
  position: relative;
  overflow: hidden;
}
.animated-stats-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 50%, rgba(11,95,212,0.15) 0%, transparent 50%),
    radial-gradient(circle at 80% 50%, rgba(105,65,198,0.1) 0%, transparent 50%);
  pointer-events: none;
}
.stats-counter-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  position: relative;
  z-index: 1;
}
.counter-item {
  text-align: center;
  padding: 32px 20px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 20px;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.counter-item:hover {
  background: rgba(255,255,255,0.06);
  transform: translateY(-6px);
  border-color: rgba(11,95,212,0.2);
  box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}
.counter-icon {
  width: 60px;
  height: 60px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(11,95,212,0.15), rgba(105,65,198,0.1));
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  font-size: 1.4rem;
  color: var(--primary-light);
  transition: all 0.3s ease;
}
.counter-item:hover .counter-icon {
  background: var(--gradient);
  color: #fff;
  transform: scale(1.1) rotate(5deg);
}
.counter-number {
  display: block;
  font-size: 2.8rem;
  font-weight: 900;
  color: #fff;
  line-height: 1;
  margin-bottom: 8px;
  font-variant-numeric: tabular-nums;
}
.counter-label {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  font-weight: 500;
}

/* ═══════════════════════════════════════════════════════════ */
/* ─── SERVICE IMAGES (Enhanced Service Cards) ──────────── */
/* ═══════════════════════════════════════════════════════════ */
.service-card-img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 18px;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.service-card:hover .service-card-img {
  transform: scale(1.04);
}

/* ═══════════════════════════════════════════════════════════ */
/* ─── SCROLL PROGRESS BAR ─────────────────────────────── */
/* ═══════════════════════════════════════════════════════════ */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 0%;
  height: 3px;
  background: var(--gradient);
  z-index: 99998;
  transition: width 0.1s linear;
}

/* ═══════════════════════════════════════════════════════════ */
/* ─── ENHANCED TESTIMONIAL CARDS ──────────────────────── */
/* ═══════════════════════════════════════════════════════════ */
.testimonial-card {
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.testimonial-card::before {
  content: '\201C';
  position: absolute;
  top: -10px;
  right: 20px;
  font-size: 8rem;
  color: rgba(11, 95, 212, 0.04);
  font-family: Georgia, serif;
  line-height: 1;
  pointer-events: none;
}
.testimonial-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
}

/* ═══════════════════════════════════════════════════════════ */
/* ─── FLOATING SHAPES (Background Decoration) ──────────── */
/* ═══════════════════════════════════════════════════════════ */
.floating-shapes {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 0;
}
.f-shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.04;
  animation: floatShape 20s ease-in-out infinite;
}
.f-shape-1 {
  width: 300px;
  height: 300px;
  background: var(--primary);
  top: 10%;
  left: -5%;
  animation-delay: 0s;
}
.f-shape-2 {
  width: 200px;
  height: 200px;
  background: #6941C6;
  top: 50%;
  right: -3%;
  animation-delay: -7s;
}
.f-shape-3 {
  width: 150px;
  height: 150px;
  background: #10b981;
  bottom: 10%;
  left: 20%;
  animation-delay: -14s;
}
@keyframes floatShape {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  25% { transform: translate(30px, -30px) rotate(90deg); }
  50% { transform: translate(-20px, 20px) rotate(180deg); }
  75% { transform: translate(15px, -15px) rotate(270deg); }
}

/* ═══════════════════════════════════════════════════════════ */
/* ─── MODERN PROCESS TIMELINE ──────────────────────────── */
/* ═══════════════════════════════════════════════════════════ */
.process-step {
  position: relative;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.process-step:hover {
  transform: translateY(-8px) !important;
  background: rgba(255,255,255,0.08);
  box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}
.process-step:hover .step-num {
  color: var(--primary-light);
}

/* ═══════════════════════════════════════════════════════════ */
/* ─── ENHANCED FEATURE HIGHLIGHTS ──────────────────────── */
/* ═══════════════════════════════════════════════════════════ */
.fh-feature-item {
  transition: all 0.3s ease;
  padding: 8px 12px;
  border-radius: 8px;
  margin: -8px -12px;
}
.fh-feature-item:hover {
  background: rgba(11,95,212,0.04);
  transform: translateX(4px);
}

/* ═══════════════════════════════════════════════════════════ */
/* ─── MARQUEE / INFINITE SCROLL LOGOS ──────────────────── */
/* ═══════════════════════════════════════════════════════════ */
.trusted-logos-marquee {
  display: flex;
  overflow: hidden;
  position: relative;
  mask-image: linear-gradient(90deg, transparent, black 15%, black 85%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, black 15%, black 85%, transparent);
}
.marquee-track {
  display: flex;
  gap: 48px;
  animation: marquee 30s linear infinite;
  flex-shrink: 0;
  align-items: center;
}
@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ═══════════════════════════════════════════════════════════ */
/* ─── ENHANCED HERO SECTION WITH GLOW ──────────────────── */
/* ═══════════════════════════════════════════════════════════ */
.hero { position: relative; }
.hero::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 120px;
  background: linear-gradient(to top, var(--bg-light), transparent);
  pointer-events: none;
  z-index: 2;
}

/* Glow effect behind hero text */
.hero-title {
  text-shadow: 0 0 80px rgba(11,95,212,0.15);
}

/* ─── Hero Stats Glass Effect ─────── */
.hero-stats {
  background: rgba(255,255,255,0.04);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 16px;
  padding: 18px 8px;
}

/* ═══════════════════════════════════════════════════════════ */
/* ─── ANIMATED SECTION DIVIDERS ────────────────────────── */
/* ═══════════════════════════════════════════════════════════ */
.wave-divider {
  position: relative;
  height: 60px;
  overflow: hidden;
}
.wave-divider svg {
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 100%;
}

/* ═══════════════════════════════════════════════════════════ */
/* ─── CURSOR TRAIL EFFECT ──────────────────────────────── */
/* ═══════════════════════════════════════════════════════════ */
.cursor-dot {
  width: 8px;
  height: 8px;
  background: var(--primary);
  border-radius: 50%;
  position: fixed;
  pointer-events: none;
  z-index: 99999;
  opacity: 0;
  transition: opacity 0.3s ease;
  mix-blend-mode: difference;
}
.cursor-dot.visible {
  opacity: 0.6;
}

/* ═══════════════════════════════════════════════════════════ */
/* ─── FAQ ENHANCED ─────────────────────────────────────── */
/* ═══════════════════════════════════════════════════════════ */
.faq-item {
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.faq-item:hover {
  transform: translateX(4px);
  border-color: rgba(11,95,212,0.2);
}
.faq-item.open {
  border-color: var(--primary);
  box-shadow: 0 8px 24px rgba(11,95,212,0.08);
}
.faq-answer {
  transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1), padding 0.3s ease;
  max-height: 0;
  overflow: hidden;
  padding: 0 22px;
  display: block !important;
}
.faq-item.open .faq-answer {
  max-height: 300px;
  padding: 0 22px 18px;
}

/* ═══════════════════════════════════════════════════════════ */
/* ─── CTA SECTION ENHANCED ─────────────────────────────── */
/* ═══════════════════════════════════════════════════════════ */
.cta-section {
  background: linear-gradient(135deg, #0a1628, #101828, #0a1628);
  position: relative;
}
.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(11,95,212,0.12) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 50%, rgba(105,65,198,0.08) 0%, transparent 60%);
  pointer-events: none;
}

/* ═══════════════════════════════════════════════════════════ */
/* ─── FOOTER ENHANCED ──────────────────────────────────── */
/* ═══════════════════════════════════════════════════════════ */
.footer {
  position: relative;
}
.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(11,95,212,0.3), rgba(105,65,198,0.3), transparent);
}
.social-link {
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.social-link:hover {
  transform: translateY(-4px) scale(1.1);
}

/* ═══════════════════════════════════════════════════════════ */
/* ─── WHY SECTION IMAGE ────────────────────────────────── */
/* ═══════════════════════════════════════════════════════════ */
.why-section-image {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.1);
}
.why-section-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 400px;
}
.why-image-badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(12px);
  color: #fff;
  padding: 12px 20px;
  border-radius: 12px;
  font-size: 0.88rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
}
.why-image-badge i {
  color: var(--gold);
}

/* ═══════════════════════════════════════════════════════════ */
/* ─── NAVBAR ENHANCED ANIMATIONS ───────────────────────── */
/* ═══════════════════════════════════════════════════════════ */
.navbar {
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.navbar.scrolled {
  box-shadow: 0 4px 40px rgba(0,0,0,0.08);
}

/* ═══════════════════════════════════════════════════════════ */
/* ─── TEXT SHIMMER EFFECT ──────────────────────────────── */
/* ═══════════════════════════════════════════════════════════ */
.shimmer-text {
  background: linear-gradient(
    90deg,
    var(--primary) 0%,
    #6941C6 25%,
    var(--primary) 50%,
    #6941C6 75%,
    var(--primary) 100%
  );
  background-size: 200% 100%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmerText 4s linear infinite;
}
@keyframes shimmerText {
  0% { background-position: 0% 50%; }
  100% { background-position: 200% 50%; }
}

/* ═══════════════════════════════════════════════════════════ */
/* ─── PULSING DOT INDICATORS ───────────────────────────── */
/* ═══════════════════════════════════════════════════════════ */
.pulse-dot {
  position: relative;
}
.pulse-dot::before {
  content: '';
  position: absolute;
  top: 4px;
  left: -18px;
  width: 8px;
  height: 8px;
  background: #10b981;
  border-radius: 50%;
  animation: pulseDot 2s ease-in-out infinite;
}
@keyframes pulseDot {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.5); opacity: 0.5; }
}

/* ═══════════════════════════════════════════════════════════ */
/* ─── IMAGE HOVER ZOOM CARDS ───────────────────────────── */
/* ═══════════════════════════════════════════════════════════ */
.img-zoom-wrap {
  border-radius: 16px;
  overflow: hidden;
  position: relative;
}
.img-zoom-wrap img {
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.img-zoom-wrap:hover img {
  transform: scale(1.06);
}

/* ═══════════════════════════════════════════════════════════ */
/* ─── ANIMATED BADGE ───────────────────────────────────── */
/* ═══════════════════════════════════════════════════════════ */
.animated-badge {
  position: relative;
  overflow: hidden;
}
.animated-badge::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  animation: badgeSweep 3s ease-in-out infinite;
}
@keyframes badgeSweep {
  0% { left: -100%; }
  50%, 100% { left: 100%; }
}

/* ═══════════════════════════════════════════════════════════ */
/* ─── PAGE TRANSITIONS ─────────────────────────────────── */
/* ═══════════════════════════════════════════════════════════ */
main { animation: pageEnter 0.5s ease forwards; }
@keyframes pageEnter {
  0% { opacity: 0; transform: translateY(10px); }
  100% { opacity: 1; transform: translateY(0); }
}

/* ═══════════════════════════════════════════════════════════ */
/* ─── ABOUT IMAGE SECTION ──────────────────────────────── */
/* ═══════════════════════════════════════════════════════════ */
.about-image-section {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
}
.about-image-section img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 380px;
  border-radius: 20px;
}

/* ═══════════════════════════════════════════════════════════ */
/* ─── RESPONSIVE ADJUSTMENTS FOR MODERN EFFECTS ────────── */
/* ═══════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .stats-counter-grid { grid-template-columns: repeat(2, 1fr); }
  .showcase-grid { grid-template-columns: repeat(2, 1fr); }
  .showcase-item.showcase-large { grid-column: span 2; grid-row: span 1; }
}

@media (max-width: 768px) {
  .stats-counter-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
  .counter-number { font-size: 2.2rem; }
  .counter-item { padding: 24px 16px; }
  .showcase-grid { grid-template-columns: 1fr; }
  .showcase-item.showcase-large { grid-column: span 1; }
  .cursor-dot { display: none; }
  .scroll-progress { height: 2px; }
  .image-showcase { padding: 56px 0; }
  .animated-stats-section { padding: 56px 0; }
}

@media (max-width: 480px) {
  .stats-counter-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .counter-number { font-size: 1.8rem; }
  .counter-item { padding: 20px 12px; border-radius: 14px; }
  .counter-icon { width: 48px; height: 48px; font-size: 1.2rem; }
}
