:root {
  --bg-deep: #050508;
  --bg-primary: #0a0a0f;
  --bg-surface: #111118;
  --bg-elevated: #18181f;
  --bg-card: #1a1a24;

  --text-primary: #f0f0f5;
  --text-secondary: #a0a0b0;
  --text-muted: #606070;

  --accent-cyan: #00e5ff;
  --accent-violet: #a855f7;
  --accent-amber: #f59e0b;
  --accent-green: #22c55e;

  --gradient-primary: linear-gradient(135deg, var(--accent-cyan), var(--accent-violet));
  --gradient-warm: linear-gradient(135deg, var(--accent-amber), #ef4444);
  --gradient-glow: linear-gradient(135deg, var(--accent-cyan) 0%, var(--accent-violet) 50%, var(--accent-amber) 100%);

  --font-heading: 'Sora', sans-serif;
  --font-body: 'DM Sans', sans-serif;
  --font-ml: 'Noto Sans Malayalam', sans-serif;
  --font-mono: 'JetBrains Mono', monospace;

  --nav-height: 72px;
  --container-max: 1200px;
  --section-pad: clamp(80px, 10vw, 140px);

  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-elastic: cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background: var(--bg-deep);
  color: var(--text-primary);
  line-height: 1.7;
  overflow-x: hidden;
}

::selection {
  background: rgba(0, 229, 255, 0.3);
  color: #fff;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s;
}

img {
  max-width: 100%;
  display: block;
}

ul { list-style: none; }

.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 40px);
}

/* ==================== PRELOADER ==================== */
#preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--bg-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.6s var(--ease-out), visibility 0.6s;
}

#preloader.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.preloader-inner {
  text-align: center;
}

.preloader-logo {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 800;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 24px;
  animation: preloaderPulse 1.5s ease-in-out infinite;
}

.preloader-bar {
  width: 200px;
  height: 3px;
  background: var(--bg-elevated);
  border-radius: 3px;
  overflow: hidden;
}

.preloader-progress {
  height: 100%;
  background: var(--gradient-primary);
  border-radius: 3px;
  animation: preloaderFill 1.8s var(--ease-out) forwards;
}

@keyframes preloaderPulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

@keyframes preloaderFill {
  0% { width: 0; }
  100% { width: 100%; }
}

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

/* ==================== NAVIGATION ==================== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0 clamp(20px, 4vw, 40px);
  transition: background 0.4s, backdrop-filter 0.4s, box-shadow 0.4s;
}

.nav.scrolled {
  background: rgba(5, 5, 8, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.05);
}

.nav-container {
  max-width: var(--container-max);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--nav-height);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 1001;
}

.logo-mark {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: var(--gradient-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1rem;
  color: var(--bg-deep);
}

.logo-name {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1.1rem;
  letter-spacing: -0.02em;
}

.logo-accent {
  color: var(--accent-cyan);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-link {
  font-family: var(--font-heading);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-secondary);
  transition: color 0.3s;
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent-cyan);
  transition: width 0.3s var(--ease-out);
}

.nav-link:hover,
.nav-link.active {
  color: var(--text-primary);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.nav-cta-link {
  color: var(--bg-deep) !important;
  background: var(--gradient-primary);
  padding: 8px 20px;
  border-radius: 8px;
  font-weight: 600;
}

.nav-cta-link::after { display: none; }

/* ==================== NAV DROPDOWN ==================== */
.nav-has-drop {
  position: relative;
}

/* Transparent bridge fills the gap so moving mouse into dropdown keeps :hover active */
.nav-has-drop::after {
  content: '';
  position: absolute;
  bottom: -16px;
  left: -20px;
  right: -20px;
  height: 16px;
}

.nav-drop {
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  transform: translateX(-50%);
  background: rgba(5, 5, 12, 0.96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(0, 229, 255, 0.12);
  border-radius: 14px;
  padding: 10px 8px;
  min-width: 220px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateX(-50%) translateY(-8px);
  /* Delay hide by 120ms — gives mouse time to cross the gap */
  transition: opacity 0.25s ease 0.12s, transform 0.25s ease 0.12s, visibility 0.25s 0.12s;
  z-index: 200;
  list-style: none;
}

.nav-drop::before {
  content: '';
  position: absolute;
  top: -6px;
  left: 50%;
  transform: translateX(-50%);
  width: 10px; height: 10px;
  background: rgba(5, 5, 12, 0.96);
  border-left: 1px solid rgba(0, 229, 255, 0.12);
  border-top: 1px solid rgba(0, 229, 255, 0.12);
  transform: translateX(-50%) rotate(45deg);
}

.nav-has-drop:hover .nav-drop,
.nav-has-drop:focus-within .nav-drop {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
  transform: translateX(-50%) translateY(0);
  /* No delay when showing */
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0s;
}

.nav-drop li a {
  display: block;
  padding: 9px 14px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-secondary);
  border-radius: 8px;
  transition: background 0.2s, color 0.2s;
  font-family: var(--font-heading);
  white-space: nowrap;
}

.nav-drop li a:hover {
  background: rgba(0, 229, 255, 0.08);
  color: var(--accent-cyan);
}

.nav-drop li a::after { display: none; }

.nav-cta-link:hover {
  opacity: 0.9;
  transform: translateY(-1px);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: 1001;
}

.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}

.nav-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ==================== BUTTONS ==================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 12px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.3s var(--ease-out);
  cursor: pointer;
  border: none;
  white-space: nowrap;
}

.btn-primary {
  background: var(--gradient-primary);
  color: var(--bg-deep);
  box-shadow: 0 4px 24px rgba(0, 229, 255, 0.25);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(0, 229, 255, 0.35);
}

.btn-ghost {
  color: var(--text-primary);
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.03);
}

.btn-ghost:hover {
  border-color: var(--accent-cyan);
  background: rgba(0, 229, 255, 0.05);
  transform: translateY(-2px);
}

.btn-whatsapp {
  background: #25D366;
  color: #fff;
}

.btn-whatsapp:hover {
  background: #20bd5a;
  transform: translateY(-2px);
}

.btn-lg {
  padding: 16px 36px;
  font-size: 1.05rem;
}

.btn-full {
  width: 100%;
  justify-content: center;
}

/* ==================== SECTION COMMON ==================== */
.section-tag {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--accent-cyan);
  margin-bottom: 16px;
}

.section-tag.center { display: block; text-align: center; }

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
}

.section-title.center { text-align: center; }

.section-desc {
  font-size: 1.1rem;
  color: var(--text-secondary);
  max-width: 600px;
  margin-bottom: 48px;
}

.section-desc.center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

/* ==================== MALAYALAM TEXT ==================== */
.ml-text,
.ml-glow,
.ml-inline {
  font-family: var(--font-ml);
  font-weight: 600;
}

.ml-glow {
  background: var(--gradient-glow);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  background-size: 200% 100%;
  animation: mlGlow 4s ease-in-out infinite;
}

.ml-inline {
  color: var(--accent-cyan);
  font-size: 0.95em;
}

.ml-sub {
  display: block;
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 400;
  margin-top: 4px;
}

@keyframes mlGlow {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

/* ==================== HERO ==================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding-top: var(--nav-height);
}

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

.hero-gradient {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 20% 50%, rgba(0, 229, 255, 0.12) 0%, transparent 60%),
    radial-gradient(ellipse 60% 80% at 80% 20%, rgba(168, 85, 247, 0.08) 0%, transparent 60%),
    radial-gradient(ellipse 70% 50% at 50% 90%, rgba(245, 158, 11, 0.06) 0%, transparent 60%);
  animation: heroGradientMove 12s ease-in-out infinite alternate;
}

@keyframes heroGradientMove {
  0% { transform: scale(1) translate(0, 0); }
  100% { transform: scale(1.1) translate(-2%, 3%); }
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at center, black 20%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 20%, transparent 70%);
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  animation: orbFloat 8s ease-in-out infinite;
}

.orb-1 {
  width: 400px;
  height: 400px;
  background: rgba(0, 229, 255, 0.08);
  top: 10%;
  left: 10%;
}

.orb-2 {
  width: 300px;
  height: 300px;
  background: rgba(168, 85, 247, 0.06);
  top: 60%;
  right: 10%;
  animation-delay: -3s;
}

.orb-3 {
  width: 250px;
  height: 250px;
  background: rgba(245, 158, 11, 0.05);
  bottom: 10%;
  left: 40%;
  animation-delay: -5s;
}

@keyframes orbFloat {
  0%, 100% { transform: translate(0, 0); }
  33% { transform: translate(30px, -20px); }
  66% { transform: translate(-20px, 30px); }
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 900px;
  padding: 60px 20px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  border-radius: 50px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.85rem;
  color: var(--text-secondary);
  margin-bottom: 32px;
}

.badge-pulse {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent-green);
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.6); }
  50% { box-shadow: 0 0 0 8px rgba(34, 197, 94, 0); }
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.04em;
  margin-bottom: 24px;
}

.hero-title .word {
  display: inline-block;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s var(--ease-out), transform 0.6s var(--ease-out);
}

.hero-title .word.visible {
  opacity: 1;
  transform: translateY(0);
}

.hero-malayalam {
  font-family: var(--font-ml);
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  font-weight: 600;
  margin-bottom: 24px;
}

.hero-malayalam .ml-text {
  background: var(--gradient-glow);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  background-size: 200% 100%;
  animation: mlGlow 4s ease-in-out infinite;
}

.hero-sub {
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: var(--text-secondary);
  max-width: 650px;
  margin: 0 auto 40px;
  line-height: 1.8;
}

.hero-ctas {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--text-muted);
  font-size: 0.75rem;
  font-family: var(--font-mono);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--accent-cyan), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 1; height: 40px; }
  50% { opacity: 0.3; height: 20px; }
}

/* ==================== MARQUEE ==================== */
.marquee {
  padding: 0;
  height: 72px;
  display: flex;
  align-items: center;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  background: var(--bg-primary);
  overflow: hidden;
  flex-shrink: 0;
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: marqueeScroll 30s linear infinite;
}

.marquee-content {
  display: flex;
  align-items: center;
  gap: 0;
  flex-shrink: 0;
}

.marquee-item {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-secondary);
  padding: 0 24px;
  white-space: nowrap;
  transition: color 0.3s;
}

.marquee-dot {
  color: var(--accent-cyan);
  font-size: 0.7rem;
  opacity: 0.5;
}

.marquee:hover .marquee-track {
  animation-play-state: paused;
}

.marquee:hover .marquee-item {
  color: var(--text-primary);
}

@keyframes marqueeScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ==================== STATS ==================== */
.stats {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--bg-primary);
  position: relative;
  overflow: hidden;
}

.stats::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 50% at 50% 50%, rgba(0,229,255,0.04), transparent 70%);
  pointer-events: none;
}

.stats .container { position: relative; z-index: 1; width: 100%; }

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  max-width: 900px;
  margin: 0 auto;
}

.stat-card {
  text-align: center;
  padding: clamp(40px, 6vw, 80px) 24px;
  border-radius: 20px;
  background: var(--bg-surface);
  border: 1px solid rgba(255, 255, 255, 0.04);
  transition: transform 0.3s var(--ease-out), border-color 0.3s;
}

.stat-card:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 229, 255, 0.15);
}

.stat-num {
  font-family: var(--font-heading);
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 800;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

.stat-plus {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 700;
  color: var(--accent-cyan);
}

.stat-label {
  display: block;
  font-size: clamp(0.9rem, 1.5vw, 1.05rem);
  color: var(--text-muted);
  margin-top: 16px;
  font-family: var(--font-heading);
  letter-spacing: 0.01em;
}

/* ==================== ABOUT ==================== */
.about {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 80px 0;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: center;
  width: 100%;
}

.about-visual {
  position: relative;
}

.about-image-wrap {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  aspect-ratio: 4/5;
  transition: transform 0.6s var(--ease-out);
}

.about-avatar {
  width: 100%;
  height: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-surface);
}

.avatar-gradient {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 30% 40%, rgba(0, 229, 255, 0.15), transparent 60%),
    radial-gradient(circle at 70% 60%, rgba(168, 85, 247, 0.1), transparent 60%);
}

.avatar-initials {
  font-family: var(--font-heading);
  font-size: 6rem;
  font-weight: 800;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
  z-index: 1;
}

.about-badge-float {
  position: absolute;
  bottom: 24px;
  right: -24px;
  background: var(--bg-elevated);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 16px 24px;
  text-align: center;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.4);
  animation: floatBadge 4s ease-in-out infinite;
}

.float-rating {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--accent-amber);
}

.float-text {
  font-size: 0.75rem;
  color: var(--text-muted);
}

@keyframes floatBadge {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.about-ml {
  text-align: center;
  margin-top: 32px;
  font-size: 1.1rem;
}

.about-text p {
  color: var(--text-secondary);
  margin-bottom: 16px;
  font-size: 1.05rem;
}

.about-text p strong {
  color: var(--text-primary);
}

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

.tag {
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-family: var(--font-heading);
  font-weight: 500;
  background: rgba(0, 229, 255, 0.08);
  border: 1px solid rgba(0, 229, 255, 0.15);
  color: var(--accent-cyan);
  transition: all 0.3s;
}

.tag:hover {
  background: rgba(0, 229, 255, 0.15);
  transform: translateY(-2px);
}

/* ==================== SERVICES ==================== */
.services {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 0 40px;
  background: var(--bg-primary);
}

.services-scroll-wrapper {
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  margin-top: 48px;
  padding: 20px 0;
  cursor: grab;
}

.services-scroll-wrapper::-webkit-scrollbar {
  display: none;
}

.services-scroll-wrapper:active {
  cursor: grabbing;
}

.services-track {
  display: flex;
  gap: 24px;
  padding: 0 max(20px, calc((100vw - var(--container-max)) / 2 + 20px));
  width: max-content;
}

.service-card {
  width: 380px;
  flex-shrink: 0;
  padding: 40px 32px;
  border-radius: 20px;
  background: var(--bg-surface);
  border: 1px solid rgba(255, 255, 255, 0.04);
  transition: all 0.4s var(--ease-out);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient-primary);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s var(--ease-out);
}

.service-card:hover {
  transform: translateY(-8px);
  border-color: rgba(0, 229, 255, 0.12);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.3);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: rgba(0, 229, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  color: var(--accent-cyan);
  transition: transform 0.6s var(--ease-out);
}

.service-icon svg {
  width: 28px;
  height: 28px;
}

.service-card h3 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}

.service-card p {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 20px;
}

.service-features {
  margin-bottom: 24px;
}

.service-features li {
  font-size: 0.85rem;
  color: var(--text-secondary);
  padding: 6px 0;
  padding-left: 20px;
  position: relative;
}

.service-features li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--accent-cyan);
  font-size: 0.8rem;
}

.service-link {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--accent-cyan);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.3s var(--ease-out);
}

.service-link:hover {
  gap: 12px;
}

/* ==================== PROCESS ==================== */
.process {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 80px 0;
}

.process-timeline {
  position: relative;
  margin-top: 60px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.process-line {
  position: absolute;
  left: 32px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: rgba(255, 255, 255, 0.06);
}

.process-line-fill {
  width: 100%;
  height: 0%;
  background: var(--gradient-primary);
  transition: height 0.1s linear;
}

.process-step {
  display: flex;
  gap: 32px;
  padding: 32px 0;
  position: relative;
}

.step-number {
  flex-shrink: 0;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--bg-surface);
  border: 2px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--accent-cyan);
  transition: all 0.4s var(--ease-out);
  position: relative;
  z-index: 1;
}

.process-step.active .step-number {
  background: var(--gradient-primary);
  color: var(--bg-deep);
  border-color: transparent;
  box-shadow: 0 0 24px rgba(0, 229, 255, 0.3);
}

.step-content h3 {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}

.step-content p {
  color: var(--text-secondary);
  font-size: 1rem;
  line-height: 1.7;
}

/* ==================== VALUE SECTION ==================== */
.value-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 80px 0;
  background: var(--bg-primary);
}

.value-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.value-card {
  padding: 36px 28px;
  border-radius: 20px;
  background: var(--bg-surface);
  border: 1px solid rgba(255, 255, 255, 0.04);
  transition: all 0.4s var(--ease-out);
}

.value-card:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 229, 255, 0.1);
}

.value-num {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: var(--accent-cyan);
  margin-bottom: 16px;
}

.value-card h3 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 10px;
  letter-spacing: -0.02em;
}

.value-card p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* ==================== INSIGHTS ==================== */
.insights {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 80px 0;
}

.insights-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.insight-card {
  padding: 36px 28px;
  border-radius: 20px;
  background: var(--bg-surface);
  border: 1px solid rgba(255, 255, 255, 0.04);
  transition: all 0.4s var(--ease-out);
}

.insight-card:hover {
  transform: translateY(-4px);
  border-color: rgba(168, 85, 247, 0.15);
}

.insight-tag {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent-violet);
  background: rgba(168, 85, 247, 0.1);
  padding: 4px 12px;
  border-radius: 6px;
  margin-bottom: 16px;
}

.insight-card h3 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 12px;
  line-height: 1.3;
  letter-spacing: -0.02em;
}

.insight-card p {
  color: var(--text-secondary);
  font-size: 0.92rem;
  line-height: 1.7;
  margin-bottom: 20px;
}

.insight-stats {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.insight-stats span {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.insight-stats strong {
  color: var(--accent-amber);
  font-family: var(--font-heading);
}

/* ==================== TESTIMONIALS ==================== */
.testimonials {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 0 60px;
  background: var(--bg-primary);
  overflow: hidden;
}

.testimonial-marquee {
  margin-top: 48px;
  overflow: hidden;
}

.testimonial-track {
  display: flex;
  gap: 24px;
  width: max-content;
  animation: testimonialScroll 40s linear infinite;
}

.testimonial-track:hover {
  animation-play-state: paused;
}

@keyframes testimonialScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.testimonial-card {
  width: 420px;
  flex-shrink: 0;
  padding: 32px;
  border-radius: 20px;
  background: var(--bg-surface);
  border: 1px solid rgba(255, 255, 255, 0.04);
  transition: border-color 0.3s;
}

.testimonial-card:hover {
  border-color: rgba(245, 158, 11, 0.2);
}

.testimonial-stars {
  color: var(--accent-amber);
  font-size: 1rem;
  margin-bottom: 16px;
  letter-spacing: 2px;
}

.testimonial-card blockquote p {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 20px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--gradient-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--bg-deep);
  flex-shrink: 0;
}

.testimonial-author strong {
  display: block;
  font-size: 0.95rem;
}

.testimonial-author span {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* ==================== FAQ ==================== */
.faq {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 80px 0;
}

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

.faq-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0;
  cursor: pointer;
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text-primary);
  transition: color 0.3s;
  list-style: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary:hover {
  color: var(--accent-cyan);
}

.faq-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  color: var(--accent-cyan);
  transition: transform 0.3s var(--ease-out);
}

.faq-item[open] .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  padding: 0 0 24px;
  animation: faqOpen 0.3s var(--ease-out);
}

.faq-answer p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.8;
}

.faq-answer p strong {
  color: var(--text-primary);
}

@keyframes faqOpen {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ==================== CTA SECTION ==================== */
.cta-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 80px 0;
  overflow: hidden;
}

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

.cta-gradient {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 50%, rgba(0, 229, 255, 0.08) 0%, transparent 60%),
    radial-gradient(ellipse 60% 80% at 80% 80%, rgba(168, 85, 247, 0.06) 0%, transparent 60%);
}

.cta-content {
  position: relative;
  text-align: center;
  max-width: 700px;
}

.cta-ml {
  font-family: var(--font-ml);
  font-size: clamp(1rem, 2.5vw, 1.3rem);
  font-weight: 700;
  background: var(--gradient-glow);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  background-size: 200% 100%;
  animation: mlGlow 4s ease-in-out infinite;
  margin-bottom: 16px;
}

.cta-content h2 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.03em;
  margin-bottom: 16px;
}

.cta-content > p {
  color: var(--text-secondary);
  font-size: 1.1rem;
  margin-bottom: 36px;
}

.cta-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ==================== CONTACT ==================== */
.contact {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 80px 0;
  background: var(--bg-primary);
}

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

.contact-info .section-title {
  margin-bottom: 12px;
}

.contact-ml {
  font-size: 1.1rem;
  margin-bottom: 16px;
}

.contact-info > p {
  color: var(--text-secondary);
  margin-bottom: 32px;
}

.contact-methods {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-method {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 20px;
  border-radius: 14px;
  background: var(--bg-surface);
  border: 1px solid rgba(255, 255, 255, 0.04);
  transition: all 0.3s var(--ease-out);
}

.contact-method:hover {
  border-color: rgba(0, 229, 255, 0.15);
  transform: translateX(4px);
}

.contact-method svg {
  color: var(--accent-cyan);
  flex-shrink: 0;
}

.contact-method strong {
  display: block;
  font-size: 0.85rem;
  margin-bottom: 2px;
}

.contact-method span {
  font-size: 0.9rem;
  color: var(--text-secondary);
}

/* ==================== FORM ==================== */
.contact-form {
  padding: 40px;
  border-radius: 24px;
  background: var(--bg-surface);
  border: 1px solid rgba(255, 255, 255, 0.04);
}

.form-group {
  margin-bottom: 20px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group label {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 500;
  margin-bottom: 8px;
  color: var(--text-secondary);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: var(--bg-elevated);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: border-color 0.3s, box-shadow 0.3s;
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--accent-cyan);
  box-shadow: 0 0 0 3px rgba(0, 229, 255, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-muted);
}

.form-group select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23606070' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.form-note {
  text-align: center;
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 12px;
}

/* ==================== FOOTER ==================== */
.footer {
  padding: 60px 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

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

.footer-brand p {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-top: 16px;
  line-height: 1.7;
}

.footer-ml {
  font-family: var(--font-ml);
  font-weight: 600;
  color: var(--accent-cyan);
  font-size: 0.9rem;
  margin-top: 12px !important;
}

.footer-links h4 {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 16px;
}

.footer-links ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  font-size: 0.85rem;
  color: var(--text-muted);
  transition: color 0.3s, transform 0.3s;
  display: inline-block;
}

.footer-links a:hover {
  color: var(--accent-cyan);
  transform: translateX(4px);
}

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

.footer-bottom p {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.back-to-top {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--bg-surface);
  border: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  transition: all 0.3s var(--ease-out);
}

.back-to-top:hover {
  background: var(--accent-cyan);
  color: var(--bg-deep);
  transform: translateY(-2px);
}

/* ==================== WHATSAPP FLOAT ==================== */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999;
  box-shadow: 0 4px 24px rgba(37, 211, 102, 0.4);
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s;
  animation: whatsappBounce 3s ease-in-out infinite;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 32px rgba(37, 211, 102, 0.5);
}

@keyframes whatsappBounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

/* ==================== SECTION DIVIDER ==================== */
.stats,
.about,
.services,
.process,
.value-section,
.insights,
.testimonials,
.faq,
.cta-section,
.contact {
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

/* Ensure inner containers stretch full width inside flex parents */
.value-grid,
.insights-grid,
.process-timeline {
  width: 100%;
}

/* ==================== REVEAL ANIMATIONS ==================== */
[data-reveal] {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
  animation: revealFallback 0s 3s forwards;
}

[data-reveal].revealed {
  opacity: 1;
  transform: translateY(0);
  animation: none;
}

@keyframes revealFallback {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Respect reduced motion preference */
@media (prefers-reduced-motion: reduce) {
  [data-reveal] {
    opacity: 1;
    transform: none;
    animation: none;
    transition: none;
  }
}

[data-reveal-words] {
  opacity: 1;
}

/* Full-width containers inside flex sections */
.stats > .container,
.about > .container,
.services > .container,
.process > .container,
.value-section > .container,
.insights > .container,
.testimonials > .container,
.faq > .container,
.cta-section > .container,
.contact > .container {
  width: 100%;
}

/* ==================== RESPONSIVE ==================== */
@media (max-width: 1024px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .about-visual {
    max-width: 400px;
    margin: 0 auto;
  }

  .value-grid,
  .insights-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  /* On tablet keep sections screen-fit */
  .stats,
  .about,
  .process,
  .value-section,
  .insights,
  .faq,
  .cta-section,
  .contact {
    min-height: 100vh;
    padding: 60px 0;
  }
}

@media (max-width: 768px) {
  /* On small mobile, allow scroll-through if content overflows */
  .stats,
  .about,
  .process,
  .services,
  .value-section,
  .insights,
  .testimonials,
  .faq,
  .cta-section,
  .contact {
    min-height: 100svh;
    padding: 60px 0;
  }

  .nav-menu {
    position: fixed;
    inset: 0;
    z-index: 999;
    background: rgba(5, 5, 8, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 24px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s, visibility 0.4s;
  }

  .nav-menu.open {
    opacity: 1;
    visibility: visible;
  }

  .nav-menu .nav-link {
    font-size: 1.25rem;
  }

  .nav-toggle {
    display: flex;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .service-card {
    width: 320px;
  }

  .value-grid,
  .insights-grid {
    grid-template-columns: 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .contact-form {
    padding: 28px 20px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }

  .hero-title {
    font-size: clamp(2rem, 8vw, 3rem);
  }

  .about-badge-float {
    right: 8px;
    bottom: 8px;
  }

  .process-step {
    gap: 20px;
  }

  .step-number {
    width: 48px;
    height: 48px;
    font-size: 0.9rem;
  }

  .process-line {
    left: 23px;
  }

  .testimonial-card {
    width: 320px;
  }
}

/* ==================== SHARED FOOTER (g-footer) ==================== */
.g-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: 64px;
  font-family: var(--font-body);
  position: relative;
}

.g-footer::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0, 229, 255, 0.4) 30%, rgba(168, 85, 247, 0.4) 60%, transparent);
}

.g-footer-grid {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 48px) 48px;
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 48px;
}

.g-footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}

.g-footer-brand-desc {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.4);
  line-height: 1.75;
  margin-bottom: 10px;
}

.g-footer-ml {
  font-family: var(--font-ml);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--accent-cyan);
  margin-bottom: 20px;
  display: block;
}

.g-footer-contact-list {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.g-footer-contact-list a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.45);
  transition: color 0.3s;
}

.g-footer-contact-list a:hover {
  color: var(--accent-cyan);
}

.g-footer-contact-icon {
  width: 26px;
  height: 26px;
  border-radius: 7px;
  background: rgba(0, 229, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  flex-shrink: 0;
}

.g-footer-col h4 {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255, 255, 255, 0.45);
  margin-bottom: 16px;
}

.g-footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
  list-style: none;
}

.g-footer-col a {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.45);
  transition: color 0.3s, padding-left 0.3s;
  display: inline-block;
}

.g-footer-col a:hover {
  color: var(--accent-cyan);
  padding-left: 4px;
}

.g-footer-bottom {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 20px clamp(20px, 4vw, 48px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  flex-wrap: wrap;
  gap: 14px;
}

.g-footer-bottom p {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.3);
}

.g-footer-bottom-links {
  display: flex;
  gap: 18px;
}

.g-footer-bottom-links a {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.3);
  transition: color 0.3s;
}

.g-footer-bottom-links a:hover {
  color: var(--accent-cyan);
}

.g-back-top {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: rgba(0, 229, 255, 0.08);
  border: 1px solid rgba(0, 229, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-cyan);
  font-size: 0.95rem;
  transition: all 0.3s;
  flex-shrink: 0;
}

.g-back-top:hover {
  background: var(--accent-cyan);
  color: var(--bg-deep);
  transform: translateY(-2px);
}

@media (max-width: 1024px) {
  .g-footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
}

@media (max-width: 640px) {
  .g-footer-grid {
    grid-template-columns: 1fr;
  }

  .g-footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

/* ==================== NAV RIGHT GROUP (Inner Pages) ==================== */
.nav-right-group {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-wa-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  flex-shrink: 0;
  transition: transform 0.3s, box-shadow 0.3s;
  box-shadow: 0 2px 12px rgba(37, 211, 102, 0.3);
}

.nav-wa-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.5);
}

@media (max-width: 480px) {
  .stats-grid {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  .stat-card {
    padding: 20px 12px;
  }

  .hero-ctas {
    flex-direction: column;
    width: 100%;
  }

  .hero-ctas .btn {
    width: 100%;
    justify-content: center;
  }

  .cta-actions {
    flex-direction: column;
    align-items: center;
  }

  .cta-actions .btn {
    width: 100%;
    justify-content: center;
  }
}
