/* =============================================================
   HYDROSOLAR – Main Stylesheet
   Fonts: Space Grotesk (headings) + DM Sans (body)
============================================================= */
@font-face {
  font-family: 'NeueAachenProBlk';
  src: url('../css/fonts/NeueAachenProBlk.TTF') format('truetype');
  font-weight: 400;
  font-display: swap;
}


/* ─── 1. CSS VARIABLES & DESIGN TOKENS ─────────────────────── */
:root {
  --green-50: #e8f5e9;
  --green-100: #c8e6c9;
  --green-200: #a5d6a7;
  --green-300: #66bb6a;
  --green-400: #26a65b;
  --green-500: #11a139;
  --green-600: #0d8a4e;
  --green-700: #0a7040;
  --green-800: #075a33;
  --green-900: #04391f;

  --white: #ffffff;
  --gray-50: #f8fafc;
  --gray-100: #f1f5f9;
  --gray-200: #e2e8f0;
  --gray-300: #cbd5e1;
  --gray-400: #94a3b8;
  --gray-500: #64748b;
  --gray-600: #475569;
  --gray-700: #334155;
  --gray-800: #1e293b;
  --gray-900: #0f172a;

  --dark-bg: #03120a;
  --dark-card: #061a10;
  --dark-surface: #0a2416;

  --accent-gold: #f59e0b;
  --whatsapp: #25d366;

  --font-primary: 'Space Grotesk', system-ui, sans-serif;
  --font-body: 'DM Sans', system-ui, sans-serif;

  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.25rem;
  --space-6: 1.5rem;
  --space-7: 1.75rem;
  --space-8: 2rem;
  --space-9: 2.25rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-14: 3.5rem;
  --space-16: 4rem;
  --space-20: 5rem;
  --space-24: 6rem;

  --radius-sm: 0.375rem;
  --radius-md: 0.75rem;
  --radius-lg: 1rem;
  --radius-xl: 1.5rem;
  --radius-2xl: 2rem;
  --radius-full: 9999px;

  --shadow-sm: 0 1px 3px rgba(0, 0, 0, .12), 0 1px 2px rgba(0, 0, 0, .08);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, .15);
  --shadow-lg: 0 8px 32px rgba(0, 0, 0, .2);
  --shadow-xl: 0 16px 48px rgba(0, 0, 0, .25);
  --shadow-green: 0 8px 32px rgba(17, 161, 57, .25);
  --shadow-green-lg: 0 16px 48px rgba(17, 161, 57, .35);

  --transition-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-base: 300ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 600ms cubic-bezier(0.4, 0, 0.2, 1);

  --gradient-green: linear-gradient(135deg, #11a139 0%, #0d8a4e 50%, #075a33 100%);
  --gradient-dark-green: linear-gradient(135deg, #061a10 0%, #03120a 100%);
  --gradient-cta: linear-gradient(135deg, #0a7040 0%, #11a139 40%, #26a65b 100%);
}

.custom-font {
  margin-top: 5px !important;
  font-family: 'NeueAachenProBlk', sans-serif !important;
  font-size: 1.9rem !important;
}

/* ─── 2. RESET & BASE ──────────────────────────────────────── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background: var(--white);
  color: var(--gray-800);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition-fast);
}

ul,
ol {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

input,
textarea,
select {
  font-family: inherit;
  font-size: inherit;
}

:focus-visible {
  outline: 2px solid var(--green-500);
  outline-offset: 2px;
  border-radius: var(--radius-sm);
}

/* ─── 3. TYPOGRAPHY ────────────────────────────────────────── */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-primary);
  line-height: 1.2;
  font-weight: 700;
  color: var(--gray-900);
}

h1 {
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 700;
}

h2 {
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
}

h3 {
  font-size: clamp(1.1rem, 2vw, 1.35rem);
}

h4 {
  font-size: 1.05rem;
}

p {
  line-height: 1.75;
}

strong {
  font-weight: 600;
}

/* ─── 4. LAYOUT UTILITIES ──────────────────────────────────── */
.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 var(--space-6);
}

section {
  padding: var(--space-24) 0;
}

.section-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--green-500);
  background: rgba(17, 161, 57, .1);
  border: 1px solid rgba(17, 161, 57, .2);
  padding: .3em .9em;
  border-radius: var(--radius-full);
  margin-bottom: var(--space-4);
}

.section-title {
  color: var(--gray-900);
  margin-bottom: var(--space-5);
  letter-spacing: -.02em;
}

.section-subtitle {
  color: var(--gray-500);
  font-size: 1.05rem;
  max-width: 600px;
}

.section-header {
  margin-bottom: var(--space-16);
}

.section-header[data-reveal] {
  text-align: center;
}

.section-header[data-reveal] .section-subtitle {
  margin: 0 auto;
}

/* ─── 5. BUTTONS ────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: .75em 1.75em;
  border-radius: var(--radius-full);
  font-family: var(--font-primary);
  font-weight: 600;
  font-size: .95rem;
  letter-spacing: .01em;
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}

.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, .15);
  opacity: 0;
  transition: opacity var(--transition-fast);
}

.btn:hover::before {
  opacity: 1;
}

.btn svg,
.btn .btn-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.btn .btn-icon-right {
  width: 16px;
  height: 16px;
  margin-left: var(--space-1);
  transition: transform var(--transition-fast);
}

.btn:hover .btn-icon-right {
  transform: translateX(3px);
}

.btn-primary {
  background: var(--gradient-green);
  color: var(--white);
  box-shadow: var(--shadow-green);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-green-lg);
}

.btn-primary:active {
  transform: translateY(0);
}

.btn-ghost {
  background: rgba(255, 255, 255, .08);
  color: var(--white);
  border: 1.5px solid rgba(255, 255, 255, .25);
  backdrop-filter: blur(8px);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, .15);
  border-color: rgba(255, 255, 255, .4);
  transform: translateY(-2px);
}

.btn-glass {
  background: rgba(255, 255, 255, .08);
  color: var(--white);
  border: 1.5px solid rgba(255, 255, 255, .18);
  backdrop-filter: blur(12px);
}

.btn-glass:hover {
  background: rgba(255, 255, 255, .14);
  border-color: rgba(255, 255, 255, .32);
  transform: translateY(-2px);
}

.btn-wa {
  background: rgba(37, 211, 102, .15);
  color: #25d366;
  border: 1.5px solid rgba(37, 211, 102, .3);
  backdrop-filter: blur(12px);
}

.btn-wa:hover {
  background: rgba(37, 211, 102, .25);
  border-color: rgba(37, 211, 102, .5);
  transform: translateY(-2px);
}

.btn-hero {
  padding: .9em 2.2em;
  font-size: 1rem;
  font-weight: 700;
}

.btn-cta-primary {
  background: var(--white);
  color: var(--green-700);
  box-shadow: 0 8px 32px rgba(0, 0, 0, .2);
  font-size: 1.05rem;
  padding: .9em 2.4em;
  font-weight: 700;
}

.btn-cta-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, .3);
}

.btn-cta-whatsapp {
  background: var(--whatsapp);
  color: var(--white);
  box-shadow: 0 8px 32px rgba(37, 211, 102, .35);
  font-size: 1.05rem;
  padding: .9em 2.4em;
  font-weight: 700;
}

.btn-cta-whatsapp:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 48px rgba(37, 211, 102, .5);
}

.whatsapp-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

/* ─── 6. NAVIGATION ────────────────────────────────────────── */
.navbar {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: var(--space-4) 0;
  transition: all var(--transition-base);
}

.navbar.scrolled {
  background: rgba(3, 18, 10, .96);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid rgba(17, 161, 57, .15);
  padding: var(--space-3) 0;
  box-shadow: 0 4px 32px rgba(0, 0, 0, .3);
}

.nav-container {
  display: flex;
  align-items: center;
  gap: var(--space-8);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  flex-shrink: 0;
}

.logo-icon {
  display: flex;
  align-items: center;
  justify-content: center;

  background: rgba(17, 161, 57, .12);
  border-radius: var(--radius-md);
  border: 1px solid rgba(17, 161, 57, .25);
  transition: all var(--transition-base);
}

.nav-logo:hover .logo-icon {
  background: rgba(17, 161, 57, .2);
  transform: rotate(15deg);
}

.logo-text {
  font-family: var(--font-primary);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -.02em;
}

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

.nav-links {
  display: flex;
  align-items: center;
  gap: var(--space-1);
  margin-left: auto;
}

.nav-link {
  color: rgb(255, 255, 255);
  font-size: .9rem;
  font-weight: 500;
  padding: var(--space-2) var(--space-3);
  border-radius: var(--radius-md);
  transition: all var(--transition-fast);
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: 20px;
  height: 2px;
  background: var(--green-400);
  border-radius: var(--radius-full);
  transition: transform var(--transition-fast);
}

.nav-link:hover {
  color: var(--white);
}

.nav-link:hover::after {
  transform: translateX(-50%) scaleX(1);
}

.nav-cta {
  margin-left: var(--space-4);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: var(--space-2);
  margin-left: auto;
  border-radius: var(--radius-sm);
}

.hamburger-line {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: var(--radius-full);
  transition: all var(--transition-base);
  transform-origin: center;
}

.hamburger.active .hamburger-line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger.active .hamburger-line:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.hamburger.active .hamburger-line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: rgba(3, 18, 10, .98);
  backdrop-filter: blur(20px);
  border-top: 1px solid rgba(17, 161, 57, .1);
  padding: var(--space-4) 0 var(--space-6);
}

.mobile-menu.active {
  display: block;
}

.mobile-nav-links {
  display: flex;
  flex-direction: column;
  padding: 0 var(--space-6);
  gap: var(--space-1);
}

.mobile-nav-link {
  color: rgba(255, 255, 255, .8);
  font-size: 1rem;
  font-weight: 500;
  padding: var(--space-3) var(--space-4);
  border-radius: var(--radius-md);
  transition: all var(--transition-fast);
  display: block;
}

.mobile-nav-link:hover {
  color: var(--white);
  background: rgba(17, 161, 57, .1);
}

.mobile-cta {
  display: flex;
  justify-content: center;
  margin-top: var(--space-4);
}

/* ─── 7. HERO SECTION ──────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  background-color: #020d06;
}

.hero-bg-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero-bg-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.4) 40%, rgba(0, 0, 0, 0.9) 100%),
    linear-gradient(90deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.4) 50%, rgba(0, 0, 0, 0.8) 100%);
  z-index: 1;
}

.hero-noise {
  position: absolute;
  inset: 0;
  z-index: 2;
  opacity: .035;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 256px;
}

.hero-particles {
  position: absolute;
  inset: 0;
  z-index: 2;
  overflow: hidden;
  pointer-events: none;
}

.particle {
  position: absolute;
  border-radius: 50%;
  animation: float-particle linear infinite;
}

@keyframes float-particle {
  0% {
    transform: translateY(0) rotate(0deg);
    opacity: 0;
  }

  10% {
    opacity: 1;
  }

  90% {
    opacity: .6;
  }

  100% {
    transform: translateY(-120vh) rotate(720deg);
    opacity: 0;
  }
}

.hero-content-center {
  position: relative;
  z-index: 4;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 30px;
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
}

.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, .05);
  border: 1px solid rgba(255, 255, 255, .1);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-radius: var(--radius-full);
  padding: 6px 16px;
  margin-bottom: var(--space-8);
  color: rgb(255, 255, 255);
  font-size: 1.75rem;
  font-weight: 700;
  letter-spacing: .1em;
}

.pill-dot {
  width: 6px;
  height: 6px;
  background: var(--green-400);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--green-400);
  animation: pulse-dot 2s infinite alternate;
}

.hero-headline-new {
  font-family: var(--font-primary);
  font-size: clamp(2rem, 6vw, 4.5rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -.04em;
  color: var(--white);
  margin-bottom: var(--space-6);
  text-wrap: balance;
}

.text-glow {
  background: linear-gradient(to right, #6ee7b7, #11a139, #10b981);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 0 40px rgba(17, 161, 57, .4);
}

.hero-subtext-new {
  color: #fff;
  font-size: clamp(1.1rem, 2vw, 1.3rem);
  line-height: 1.6;
  max-width: 640px;
  margin-bottom: var(--space-10);
  font-weight: 400;
  text-wrap: balance;
}

.hero-cta-new {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-4);
}

.hero-bottom-bar {
  position: absolute;
  bottom: var(--space-6);
  left: 0;
  right: 0;
  z-index: 5;
}

.glass-stats-bar {
  display: flex;
  align-items: center;
  justify-content: space-around;
  background: rgba(255, 255, 255, .05);
  border: 1px solid rgba(255, 255, 255, .1);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-radius: var(--radius-full);
  padding: var(--space-3) var(--space-6);
  box-shadow: 0 16px 40px rgba(0, 0, 0, .5), inset 0 1px 0 rgba(255, 255, 255, .05);
  max-width: 800px;
  margin: 0 auto;
}

.stat-item-new {
  display: flex;
  flex-direction: column;
  gap: 4px;
  align-items: center;
}

.stat-val-new {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-primary);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
}

.stat-name-new {
  font-size: .65rem;
  color: rgba(255, 255, 255, .5);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .1em;
  text-align: center;
}

.sm-icon {
  width: 20px;
  height: 20px;
  color: var(--green-400);
}

.stat-divider-vertical {
  width: 1px;
  height: 30px;
  background: rgba(255, 255, 255, .1);
}


/* ─── 8. TRUST BAR ─────────────────────────────────────────── */
.trust-bar {
  background: var(--white);
  padding: var(--space-8) 0;
  border-top: 1px solid var(--gray-100);
  border-bottom: 1px solid var(--gray-100);
  box-shadow: var(--shadow-sm);
}

.trust-grid {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: var(--space-6);
}

.trust-item {
  display: flex;
  align-items: center;
  gap: var(--space-3);
}

.trust-icon-wrap {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  background: rgba(17, 161, 57, .08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green-500);
  flex-shrink: 0;
  transition: all var(--transition-fast);
}

.trust-item:hover .trust-icon-wrap {
  background: rgba(17, 161, 57, .15);
  transform: scale(1.05);
}

.trust-icon-wrap svg {
  width: 20px;
  height: 20px;
}

.trust-text {
  display: flex;
  flex-direction: column;
}

.trust-text strong {
  font-size: .9rem;
  color: var(--gray-900);
  font-weight: 700;
}

.trust-text span {
  font-size: .78rem;
  color: var(--gray-500);
}

.trust-divider {
  width: 1px;
  height: 40px;
  background: var(--gray-200);
  flex-shrink: 0;
}

/* ─── 9. ABOUT SECTION ─────────────────────────────────────── */
.about {
  background: var(--gray-50);
  overflow: hidden;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-16);
  align-items: center;
}

.about-image-wrapper {
  position: relative;
  border-radius: var(--radius-2xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.about-img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  transition: transform .6s ease;
  transform: scale(1.03);

}


.about-image-badge {
  position: absolute;
  bottom: var(--space-5);
  right: var(--space-5);
  background: rgba(255, 255, 255, .95);
  backdrop-filter: blur(10px);
  border-radius: var(--radius-lg);
  padding: var(--space-3) var(--space-4);
  display: flex;
  align-items: center;
  gap: var(--space-3);
  box-shadow: var(--shadow-lg);
}

.about-image-badge svg {
  width: 28px;
  height: 28px;
  color: var(--green-500);
}

.about-image-badge strong {
  display: block;
  font-size: 1rem;
  font-weight: 700;
  color: var(--gray-900);
}

.about-image-badge span {
  font-size: .78rem;
  color: var(--gray-500);
}

.about-desc {
  color: var(--gray-600);
  margin-bottom: var(--space-5);
  font-size: 1rem;
}

.about-features {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  margin-bottom: var(--space-8);
}

.about-feature {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  color: var(--gray-700);
  font-size: .95rem;
  font-weight: 500;
}

.feature-check {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(17, 161, 57, .1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green-600);
  flex-shrink: 0;
}

.feature-check svg {
  width: 14px;
  height: 14px;
  stroke-width: 2.5;
}

/* ─── 10. SERVICES SECTION ─────────────────────────────────── */
.services {
  background: var(--white);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(268px, 1fr));
  gap: var(--space-6);
}

.service-card {
  position: relative;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-2xl);
  padding: var(--space-8);
  transition: all var(--transition-base);
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-2xl);
  background: var(--gradient-green);
  opacity: 0;
  transition: opacity var(--transition-base);
  z-index: 0;
}

.service-card:hover {
  border-color: transparent;
  transform: translateY(-6px);
  box-shadow: var(--shadow-green-lg);
}

.service-card:hover::before {
  opacity: 1;
}

.service-card>* {
  position: relative;
  z-index: 1;
}



.service-card--featured .service-title,
.service-card--featured .service-desc,
.service-card--featured .service-features li {
  color: var(--white);
}

.service-card--featured .service-features li {
  opacity: .85;
}

.service-card--featured:hover .service-features li {
  opacity: 1;
}

.service-featured-tag {
  position: absolute;
  top: var(--space-5);
  right: var(--space-5);
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  background: var(--green-500);
  color: var(--white);
  padding: .25em .8em;
  border-radius: var(--radius-full);
  z-index: 2;
}

.service-card:hover .service-featured-tag {
  display: none;
}

.service-card-glow {
  position: absolute;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(17, 161, 57, .15) 0%, transparent 70%);
  top: -50px;
  right: -50px;
  z-index: 0;
  transition: all var(--transition-slow);
}

.service-card:hover .service-card-glow {
  transform: scale(2);
  background: radial-gradient(circle, rgba(255, 255, 255, .1) 0%, transparent 70%);
}

.service-icon-wrap {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-lg);
  background: rgba(17, 161, 57, .1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-5);
  transition: all var(--transition-base);
}

.service-card--featured .service-icon-wrap {
  background: rgba(17, 161, 57, .2);
}

.service-icon-wrap svg {
  width: 26px;
  height: 26px;
  color: var(--green-500);
}

.service-card--featured .service-icon-wrap svg {
  color: var(--green-400);
}

.service-card:hover .service-icon-wrap {
  background: rgba(255, 255, 255, .15);
  transform: scale(1.1);
}

.service-card:hover .service-icon-wrap svg {
  color: var(--white);
}

.service-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: var(--space-3);
  transition: color var(--transition-fast);
}

.service-card:hover .service-title {
  color: var(--white);
}

.service-desc {
  font-size: .9rem;
  color: var(--gray-500);
  line-height: 1.7;
  margin-bottom: var(--space-5);
  transition: color var(--transition-fast);
}

.service-card:hover .service-desc {
  color: rgba(255, 255, 255, .85);
}

.service-features {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  margin-bottom: var(--space-6);
}

.service-features li {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-size: .85rem;
  color: var(--gray-600);
  font-weight: 500;
  transition: color var(--transition-fast);
}

.service-features li svg {
  width: 16px;
  height: 16px;
  color: var(--green-500);
  flex-shrink: 0;
}

.service-card:hover .service-features li {
  color: rgba(255, 255, 255, .9);
}

.service-card:hover .service-features li svg {
  color: rgba(255, 255, 255, .8);
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-size: .9rem;
  font-weight: 600;
  color: var(--green-600);
  transition: all var(--transition-fast);
}

.service-link svg {
  width: 16px;
  height: 16px;
  transition: transform var(--transition-fast);
}

.service-link:hover svg {
  transform: translateX(4px);
}

.service-card:hover .service-link {
  color: var(--white);
}

/* ─── 11. HOW IT WORKS ─────────────────────────────────────── */
.how-it-works {
  background: var(--dark-bg);
  overflow: hidden;
}

.how-it-works .section-tag {
  color: var(--green-300);
  border-color: rgba(17, 161, 57, .3);
}

.how-it-works .section-title {
  color: var(--white);
}

.steps-wrapper {
  position: relative;
  margin-top: var(--space-12);
}

.steps-line {
  position: absolute;
  top: 60px;
  left: calc(12.5% + 28px);
  right: calc(12.5% + 28px);
  height: 2px;
  /* background: rgba(17, 161, 57, .2); */
  z-index: -990;
  overflow: hidden;
}

.steps-line::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: var(--line-width, 0%);
  height: 100%;
  background: var(--green-500);
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-6);
  position: relative;
  z-index: 1;
}

.step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: var(--space-6);
}

.step-number-wrap {
  position: relative;
  margin-bottom: var(--space-4);
}

.step-number {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--dark-surface);
  border: 2px solid rgba(17, 161, 57, .3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-primary);
  font-size: 1rem;
  font-weight: 700;
  color: var(--green-400);
  transition: all var(--transition-base);
  margin: 0 auto;
}

.step.animated .step-number,
.step:hover .step-number {
  background: var(--green-500);
  border-color: var(--green-400);
  color: var(--white);
  box-shadow: var(--shadow-green);
}

.step-icon-wrap {
  width: 64px;
  height: 64px;
  border-radius: var(--radius-xl);
  background: rgba(17, 161, 57, .08);
  border: 1px solid rgba(17, 161, 57, .15);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-5);
  transition: all var(--transition-base);
}

.step-icon-wrap svg {
  width: 28px;
  height: 28px;
  color: var(--green-400);
}

.step.animated .step-icon-wrap,
.step:hover .step-icon-wrap {
  background: rgba(17, 161, 57, .12);
  border-color: rgba(17, 161, 57, .3);
  transform: scale(1.05);
}

.step-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: var(--space-3);
}

.step-desc {
  font-size: .88rem;
  color: rgba(255, 255, 255, .55);
  line-height: 1.7;
}

/* ─── 12. BENEFITS SECTION ─────────────────────────────────── */
.benefits {
  background: var(--gray-50);
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
  gap: var(--space-6);
}

.benefit-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-2xl);
  padding: var(--space-8);
  transition: all var(--transition-base);
}

.benefit-card:hover {
  border-color: rgba(17, 161, 57, .3);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.benefit-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-lg);
  background: rgba(17, 161, 57, .08);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-5);
  color: var(--green-600);
  transition: all var(--transition-base);
}

.benefit-icon svg {
  width: 26px;
  height: 26px;
}

.benefit-card:hover .benefit-icon {
  background: var(--green-500);
  color: var(--white);
}

.benefit-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: var(--space-3);
}

.benefit-desc {
  font-size: .9rem;
  color: var(--gray-500);
  line-height: 1.7;
}

/* ─── 13. GALLERY SECTION ──────────────────────────────────── */
.gallery {
  background: var(--white);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-4);
}

.gallery-item {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  cursor: pointer;
}

.gallery-item--large {
  grid-column: span 2;
  height: 450px;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}



.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, .75) 0%, transparent 60%);
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding: var(--space-5);
  opacity: 0;
  transition: opacity var(--transition-base);
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-info {
  flex: 1;
}

.gallery-tag {
  display: inline-block;
  font-size: .7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--green-300);
  background: rgba(17, 161, 57, .2);
  border: 1px solid rgba(17, 161, 57, .3);
  padding: .2em .7em;
  border-radius: var(--radius-full);
  margin-bottom: var(--space-2);
}

.gallery-info h4 {
  color: var(--white);
  font-size: .95rem;
  font-weight: 600;
}

.gallery-zoom-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .15);
  border: 1px solid rgba(255, 255, 255, .25);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  transition: all var(--transition-fast);
  flex-shrink: 0;
}

.gallery-zoom-btn:hover {
  background: rgba(255, 255, 255, .25);
  transform: scale(1.1);
}

.gallery-zoom-btn svg {
  width: 18px;
  height: 18px;
}

/* Responsive Gallery */
@media (max-width: 768px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .gallery-item--large {
    height: 300px;
  }

  .gallery-overlay {
    opacity: 1;
    /* Always show overlay backdrop but... */
    background: linear-gradient(to top, rgba(0, 0, 0, 0.4) 0%, transparent 40%);
  }

  .gallery-info {
    display: none !important;
    /* Hide text on mobile as per user request */
  }

  .gallery-zoom-btn {
    opacity: 1;
    bottom: 15px;
    right: 15px;
  }
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox[hidden] {
  display: none;
}

.lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, .92);
  backdrop-filter: blur(8px);
}

.lightbox-container {
  position: relative;
  z-index: 1;
  max-width: 90vw;
  max-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-img {
  max-width: 90vw;
  max-height: 85vh;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
  object-fit: contain;
}

.lightbox-close {
  position: fixed;
  top: var(--space-6);
  right: var(--space-6);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .1);
  border: 1px solid rgba(255, 255, 255, .2);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-fast);
}

.lightbox-close:hover {
  background: rgba(255, 255, 255, .2);
}

.lightbox-close svg {
  width: 20px;
  height: 20px;
}

.lightbox-prev,
.lightbox-next {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .1);
  border: 1px solid rgba(255, 255, 255, .2);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-fast);
}

.lightbox-prev {
  left: var(--space-6);
}

.lightbox-next {
  right: var(--space-6);
}

.lightbox-prev:hover,
.lightbox-next:hover {
  background: rgba(255, 255, 255, .2);
}

.lightbox-prev svg,
.lightbox-next svg {
  width: 22px;
  height: 22px;
}

/* ─── 14. TESTIMONIALS ─────────────────────────────────────── */
.testimonials {
  background: var(--dark-bg);
  overflow: hidden;
}

.testimonials .section-tag {
  color: var(--green-300);
  border-color: rgba(17, 161, 57, .3);
}

.testimonials .section-title {
  color: var(--white);
}

.testimonials-slider-wrapper {
  position: relative;
  overflow: hidden;
}

.testimonials-track {
  display: flex;
  gap: var(--space-6);
}

.testimonial-card {
  min-width: 100%;
  background: rgba(255, 255, 255, .04);
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: var(--radius-2xl);
  padding: var(--space-8);
  backdrop-filter: blur(10px);
  flex-shrink: 0;
  transition: all var(--transition-base);
}

.testimonial-card:hover {
  border-color: rgba(17, 161, 57, .3);
  background: rgba(17, 161, 57, .05);
  transform: translateY(-4px);
}

.testimonial-stars {
  display: flex;
  gap: 2px;
  margin-bottom: var(--space-5);
  color: var(--accent-gold);
}

.testimonial-stars svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.testimonial-text {
  color: rgba(255, 255, 255, .8);
  font-size: .95rem;
  line-height: 1.8;
  margin-bottom: var(--space-6);
  font-style: italic;
  border: none;
  padding: 0;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: var(--space-3);
}

.author-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--gradient-green);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-primary);
  font-weight: 800;
  font-size: .85rem;
  color: var(--white);
  flex-shrink: 0;
}

.author-info strong {
  display: block;
  font-size: .9rem;
  font-weight: 700;
  color: var(--white);
}

.author-info span {
  font-size: .78rem;
  color: rgba(255, 255, 255, .5);
}

.slider-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-5);
  margin-top: var(--space-10);
}

.slider-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .15);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-fast);
}

.slider-btn:hover {
  background: rgba(17, 161, 57, .2);
  border-color: rgba(17, 161, 57, .4);
}

.slider-btn svg {
  width: 20px;
  height: 20px;
}

.slider-dots {
  display: flex;
  gap: var(--space-2);
}

.slider-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .25);
  transition: all var(--transition-base);
}

.slider-dot.active {
  background: var(--green-500);
  width: 24px;
  border-radius: var(--radius-full);
}

/* ─── 15. CTA BANNER ───────────────────────────────────────── */
.cta-banner {
  position: relative;
  overflow: hidden;
  padding: var(--space-24) 0;
}

.cta-banner-bg {
  position: absolute;
  inset: 0;
  background: var(--gradient-cta);
}

.cta-banner-bg::before {
  content: '';
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .05);
  top: -200px;
  right: -100px;
}

.cta-banner-bg::after {
  content: '';
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: rgba(0, 0, 0, .08);
  bottom: -150px;
  left: -100px;
}

.cta-content {
  position: relative;
  z-index: 1;
  text-align: center;
}

.cta-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  background: rgba(255, 255, 255, .15);
  border: 1px solid rgba(255, 255, 255, .25);
  backdrop-filter: blur(8px);
  border-radius: var(--radius-full);
  padding: var(--space-2) var(--space-5);
  margin-bottom: var(--space-5);
  color: rgba(255, 255, 255, .9);
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .02em;
}

.cta-badge svg {
  width: 16px;
  height: 16px;
}

.cta-headline {
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 700;
  color: var(--white);
  letter-spacing: -.02em;
  margin-bottom: var(--space-5);
}

.cta-subtext {
  color: rgba(255, 255, 255, .85);
  font-size: 1.05rem;
  max-width: 540px;
  margin: 0 auto var(--space-10);
  line-height: 1.8;
}

.cta-subtext strong {
  color: var(--white);
}

.cta-btn-group {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-4);
}

/* ─── 16. CONTACT SECTION ──────────────────────────────────── */
.contact {
  background: var(--gray-50);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: var(--space-10);
  align-items: start;
}

.contact-form-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-2xl);
  padding: var(--space-10);
  box-shadow: var(--shadow-md);
}

.form-title {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: var(--space-8);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: var(--space-5);
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.form-label {
  font-size: .85rem;
  font-weight: 600;
  color: var(--gray-700);
  letter-spacing: .01em;
}

.input-wrapper {
  position: relative;
  display: flex;
  align-items: flex-start;
}

.input-icon {
  position: absolute;
  left: var(--space-4);
  top: 50%;
  transform: translateY(-50%);
  width: 18px;
  height: 18px;
  color: var(--gray-400);
  pointer-events: none;
  z-index: 1;
}

.input-icon--textarea {
  top: var(--space-4);
  transform: none;
}

.form-input {
  width: 100%;
  padding: var(--space-4) var(--space-4) var(--space-4) calc(var(--space-4) + 28px);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-lg);
  font-size: .95rem;
  color: var(--gray-900);
  background: var(--white);
  transition: all var(--transition-fast);
  appearance: none;
  -webkit-appearance: none;
}

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

.form-input:focus {
  outline: none;
  border-color: var(--green-500);
  box-shadow: 0 0 0 3px rgba(17, 161, 57, .12);
}

.form-input.error {
  border-color: #ef4444;
  box-shadow: 0 0 0 3px rgba(239, 68, 68, .12);
}

.form-textarea {
  resize: vertical;
  min-height: 120px;
  padding-top: var(--space-4);
}

.form-error {
  font-size: .8rem;
  color: #ef4444;
  font-weight: 500;
  min-height: 1.2em;
}

.btn-submit {
  width: 100%;
  justify-content: center;
  padding: 1em 2em;
  font-size: 1rem;
  position: relative;
}

.btn-loader {
  display: none;
  width: 18px;
  height: 18px;
  border: 2px solid rgba(255, 255, 255, .3);
  border-top-color: var(--white);
  border-radius: 50%;
  animation: spin .8s linear infinite;
  position: absolute;
  right: 1.5rem;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.btn-submit.loading .btn-loader {
  display: block;
}

.form-note {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-size: .8rem;
  color: var(--gray-400);
  text-align: center;
  justify-content: center;
}

.form-note svg {
  width: 14px;
  height: 14px;
}

.form-success {
  text-align: center;
  padding: var(--space-12) var(--space-8);
}

.success-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: rgba(17, 161, 57, .1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-6);
  color: var(--green-500);
}

.success-icon svg {
  width: 40px;
  height: 40px;
}

.form-success h3 {
  font-size: 1.5rem;
  color: var(--gray-900);
  margin-bottom: var(--space-3);
}

.form-success p {
  color: var(--gray-500);
  margin-bottom: var(--space-6);
}

.contact-info-col {
  display: flex;
  flex-direction: column;
  gap: var(--space-5);
}

.contact-info-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-2xl);
  padding: var(--space-7);
  box-shadow: var(--shadow-sm);
}

.contact-info-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: var(--space-5);
}

.contact-method {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  padding: var(--space-4);
  border-radius: var(--radius-lg);
  text-decoration: none;
  transition: all var(--transition-fast);
  margin-bottom: var(--space-3);
  border: 1px solid transparent;
}

.contact-method:last-child {
  margin-bottom: 0;
}

.contact-method:hover {
  background: var(--gray-50);
  border-color: var(--gray-200);
}

.contact-method--whatsapp:hover {
  background: rgba(37, 211, 102, .06);
  border-color: rgba(37, 211, 102, .2);
}

.contact-method-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  background: rgba(17, 161, 57, .08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green-600);
  flex-shrink: 0;
  transition: all var(--transition-fast);
}

.contact-method--whatsapp .contact-method-icon {
  background: rgba(37, 211, 102, .1);
  color: var(--whatsapp);
}

.contact-method:hover .contact-method-icon {
  background: rgba(17, 161, 57, .15);
  transform: scale(1.05);
}

.contact-method-icon svg {
  width: 20px;
  height: 20px;
}

.contact-method-text strong {
  display: block;
  font-size: .88rem;
  font-weight: 700;
  color: var(--gray-900);
}

.contact-method-text span {
  font-size: .85rem;
  color: var(--gray-600);
}

.map-card {
  border-radius: var(--radius-2xl);
  overflow: hidden;
  border: 1px solid var(--gray-200);
  box-shadow: var(--shadow-sm);
  line-height: 0;
}

.map-card iframe {
  display: block;
}

.hours-card {
  background: var(--dark-card);
  border: 1px solid rgba(17, 161, 57, .2);
  border-radius: var(--radius-2xl);
  padding: var(--space-6);
}

.hours-title {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: var(--space-4);
}

.hours-title svg {
  width: 20px;
  height: 20px;
  color: var(--green-400);
}

.hours-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-2);
}

.hours-grid span {
  font-size: .88rem;
  padding: var(--space-2) 0;
  border-bottom: 1px solid rgba(255, 255, 255, .06);
}

.hours-grid span:nth-child(odd) {
  color: rgba(255, 255, 255, .7);
}

.hours-grid span:nth-child(even) {
  color: var(--green-300);
  font-weight: 600;
  text-align: right;
}

.hours-grid span:nth-last-child(-n+2) {
  border-bottom: none;
}

/* ─── 17. FOOTER ────────────────────────────────────────────── */
.footer {
  background: var(--dark-bg);
}

.footer-top {
  padding: var(--space-20) 0 var(--space-12);
  border-bottom: 1px solid rgba(255, 255, 255, .06);
}

.footer-top-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: var(--space-10);
}

.footer-logo {
  margin-bottom: var(--space-4);
  display: inline-flex;
}

.footer-brand-desc {
  font-size: .9rem;
  color: rgba(255, 255, 255, .5);
  line-height: 1.75;
  max-width: 300px;
  margin-bottom: var(--space-6);
}

.footer-social {
  display: flex;
  gap: var(--space-3);
}

.social-link {
  width: 38px;
  height: 38px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, .5);
  transition: all var(--transition-fast);
}

.social-link:hover {
  background: rgba(17, 161, 57, .15);
  border-color: rgba(17, 161, 57, .3);
  color: var(--green-400);
  transform: translateY(-2px);
}

.footer-col-title {
  font-size: .85rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: var(--space-5);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.footer-links a {
  font-size: .9rem;
  color: rgba(255, 255, 255, .5);
  transition: color var(--transition-fast);
}

.footer-links a:hover {
  color: var(--green-400);
}

.footer-contact-info {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  font-style: normal;
}

.footer-contact-info p {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
  font-size: .88rem;
  color: rgba(255, 255, 255, .5);
  line-height: 1.6;
}

.footer-contact-info p svg {
  width: 16px;
  height: 16px;
  color: var(--green-500);
  flex-shrink: 0;
  margin-top: 3px;
}

.footer-contact-info a {
  color: rgba(255, 255, 255, .5);
}

.footer-contact-info a:hover {
  color: var(--green-400);
}

.footer-bottom {
  padding: var(--space-5) 0;
}

.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  flex-wrap: wrap;
}

.footer-bottom-inner p {
  font-size: .82rem;
  color: rgba(255, 255, 255, .35);
}

.footer-bottom-links {
  display: flex;
  gap: var(--space-5);
}

.footer-bottom-links a {
  font-size: .82rem;
  color: rgba(255, 255, 255, .35);
  transition: color var(--transition-fast);
}

.footer-bottom-links a:hover {
  color: var(--green-400);
}

/* ─── 18. FLOATING WHATSAPP ─────────────────────────────────── */
.floating-whatsapp {
  position: fixed;
  bottom: var(--space-6);
  right: var(--space-6);
  z-index: 999;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--whatsapp);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 32px rgba(37, 211, 102, .45);
  transition: all var(--transition-base);
}

.floating-whatsapp:hover {
  transform: scale(1.08) translateY(-3px);
  box-shadow: 0 16px 48px rgba(37, 211, 102, .6);
}

.floating-whatsapp-pulse {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: var(--whatsapp);
  animation: whatsapp-pulse 2.5s ease-out infinite;
  z-index: -1;
}

@keyframes whatsapp-pulse {
  0% {
    transform: scale(1);
    opacity: .7;
  }

  100% {
    transform: scale(1.8);
    opacity: 0;
  }
}

/* ─── 19. SCROLL REVEAL ─────────────────────────────────────── */
[data-reveal],
[data-reveal-left],
[data-reveal-right],
[data-step] {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity .7s ease, transform .7s ease;
}

[data-reveal-left] {
  transform: translateX(-50px);
}

[data-reveal-right] {
  transform: translateX(50px);
}

[data-step] {
  transform: translateY(50px);
}

[data-reveal].revealed,
[data-reveal-left].revealed,
[data-reveal-right].revealed,
[data-step].revealed {
  opacity: 1;
  transform: translate(0, 0);
}

/* ─── 20. RESPONSIVE BREAKPOINTS ───────────────────────────── */

/* Large Desktop (≤ 1200px) */
@media (max-width: 1200px) {
  .hero-inner {
    grid-template-columns: 1fr 380px;
    gap: var(--space-10);
  }

  .hero-headline {
    font-size: clamp(2.8rem, 4.5vw, 4.8rem);
  }
}

/* Tablet (≤ 1024px) */
@media (max-width: 1024px) {
  section {
    padding: var(--space-20) 0;
  }

  .section-header {
    margin-bottom: var(--space-12);
  }

  .nav-links,
  .nav-cta {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    gap: var(--space-8);
    min-height: auto;
  }

  .hero-content {
    padding-top: 120px;
  }

  .hero-headline {
    font-size: clamp(2.6rem, 5vw, 4rem);
    max-width: 100%;
  }

  .hero-subtext {
    max-width: 100%;
  }

  .hero-right {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3);
    flex-direction: unset;
  }

  .hero-stats-card {
    grid-column: 1 / -1;
  }

  .hero-stats-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .hero-energy-bar {
    display: none;
  }

  .trust-divider {
    display: none;
  }

  .trust-grid {
    flex-wrap: wrap;
    justify-content: space-around;
    gap: var(--space-5);
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: var(--space-10);
  }

  .about-image-col {
    order: -1;
  }

  .about-img {
    height: 380px;
  }

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

  .steps-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-6);
  }

  .steps-line {
    display: none;
  }

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

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 240px;
  }

  .gallery-item--large {
    grid-column: 1 / -1;
  }

  .testimonial-card {
    min-width: 100%;
  }

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

  .contact-form-card {
    padding: var(--space-8);
  }

  .footer-top-grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-8);
  }

  .footer-brand {
    grid-column: 1 / -1;
  }
}

/* Mobile (≤ 768px) */
@media (max-width: 768px) {
  section {
    padding: var(--space-16) 0;
  }

  .hero-pill {
    font-size: .95rem;
  }

  .container {
    padding-left: var(--space-5);
    padding-right: var(--space-5);
  }

  .hero-content-center {
    padding-top: 70px;
  }

  .nav-links,
  .nav-cta {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  /* Hero */
  .hero-content {
    padding-top: 100px;
    padding-bottom: var(--space-10);
  }

  .hero-inner {
    grid-template-columns: 1fr;
    gap: var(--space-8);
  }

  .hero-headline {
    font-size: clamp(2rem, 7vw, 3rem);
    gap: 2px;
    letter-spacing: -0.03em;
  }

  .hero-headline-line1 {
    font-size: 0.65em;
  }

  .hero-subtext {
    font-size: 0.92rem;
    line-height: 1.75;
    margin-bottom: var(--space-7);
    max-width: 100%;
  }

  .hero-cta-group {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-2);
    flex-wrap: unset;
  }

  .btn-wa {
    grid-column: 1 / -1;
  }

  .btn-hero {
    padding: 0.75em 1.4em;
    font-size: 0.9rem;
  }

  .hero-right {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3);
    flex-direction: unset;
  }

  /* New Hero Stats */
  .hero-bottom-bar {
    position: relative;
    bottom: 0;
    margin-top: var(--space-8);
  }

  .glass-stats-bar {
    justify-content: space-around;
    padding: var(--space-4) var(--space-2);
    border-radius: var(--radius-xl);
    gap: var(--space-2);
  }

  .stat-val-new {
    font-size: 1rem;
  }

  .stat-name-new {
    font-size: 0.6rem;
  }

  .stat-divider-vertical {
    height: 30px;
  }

  .hide-mobile {
    display: none !important;
  }

  /* Keep cleanup for old stats bar */
  .hero-energy-bar {
    display: none;
  }

  .hero-proof-text span {
    font-size: 0.78rem;
  }

  .scroll-indicator {
    display: none;
  }

  /* Trust bar */
  .trust-bar {
    padding: var(--space-6) 0;
  }

  .trust-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-4);
    justify-items: start;
  }

  .trust-divider {
    display: none;
  }

  /* About */
  .about-grid {
    grid-template-columns: 1fr;
    gap: var(--space-8);
  }

  .about-image-col {
    order: -1;
  }

  .about-img {
    height: 280px;
  }

  /* Services */
  .services-grid {
    grid-template-columns: 1fr;
    gap: var(--space-4);
  }

  .service-card {
    padding: var(--space-6);
  }

  .service-card--featured {
    order: -1;
  }

  /* Steps */
  .steps-grid {
    grid-template-columns: 1fr;
    gap: var(--space-4);
  }

  .step {
    padding: var(--space-5) var(--space-4);
    flex-direction: row;
    align-items: flex-start;
    text-align: left;
    gap: var(--space-4);
  }

  .step-number-wrap {
    flex-shrink: 0;
    margin-bottom: 0;
  }

  .step-icon-wrap {
    display: none;
  }

  .steps-line {
    display: none;
  }

  /* Benefits */
  .benefits-grid {
    grid-template-columns: 1fr;
    gap: var(--space-4);
  }

  .benefit-card {
    padding: var(--space-6);
  }

  /* Gallery */
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 190px;
  }

  .gallery-item--large {
    grid-column: 1 / -1;
  }

  .gallery-overlay {
    opacity: 1;
    background: linear-gradient(to top, rgba(0, 0, 0, .7) 0%, transparent 55%);
  }

  /* Testimonials — stack on mobile */
  .testimonials-slider-wrapper {
    overflow: visible;
  }

  .testimonials-track {
    flex-direction: row;
    gap: var(--space-4);
  }

  .testimonial-card {
    min-width: calc(100% - 10px);
  }

  .slider-controls {
    display: flex;
    margin-top: var(--space-8);
  }

  /* CTA */
  .cta-headline {
    font-size: clamp(1.6rem, 5vw, 2.4rem);
  }

  .cta-subtext {
    font-size: 0.92rem;
  }

  .cta-btn-group {
    flex-direction: column;
    align-items: center;
    gap: var(--space-3);
  }

  .btn-cta-primary,
  .btn-cta-whatsapp {
    width: 100%;
    max-width: 360px;
    justify-content: center;
    font-size: 0.95rem;
  }

  /* Contact */
  .contact-grid {
    grid-template-columns: 1fr;
    gap: var(--space-6);
  }

  .contact-form-card {
    padding: var(--space-6);
  }

  .map-card iframe {
    height: 180px;
  }

  /* Footer */
  .footer-top {
    padding: var(--space-12) 0 var(--space-8);
  }

  .footer-top-grid {
    grid-template-columns: 1fr;
    gap: var(--space-8);
  }

  .footer-brand-desc {
    max-width: 100%;
  }

  .footer-bottom-inner {
    flex-direction: column;
    text-align: center;
    gap: var(--space-3);
  }

  .footer-bottom-links {
    justify-content: center;
  }
}

/* Small Mobile (≤ 480px) */
@media (max-width: 480px) {
  section {
    padding: var(--space-12) 0;
  }

  .container {
    padding-left: var(--space-4);
    padding-right: var(--space-4);
  }

  .logo-text {
    font-size: 1.1rem;
  }

  .logo-icon {
    width: 34px;
    height: 34px;
  }

  .hero-content {
    padding-top: 90px;
  }

  .hero-location {
    font-size: 0.7rem;
    padding: 5px 12px 5px 10px;
  }

  .hero-location-live {
    display: none;
  }

  .hero-headline {
    font-size: clamp(1.85rem, 8vw, 2.5rem);
  }

  .em-underline {
    height: 4px;
  }

  .hero-subtext {
    font-size: 0.88rem;
    margin-bottom: var(--space-6);
  }

  .hero-cta-group {
    grid-template-columns: 1fr;
  }

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

  .hero-right {
    grid-template-columns: 1fr;
  }

  .hero-savings-card,
  .hero-cert-card {
    display: none;
  }

  .hero-stats-grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3) var(--space-2);
  }

  .stat-number {
    font-size: 1.2rem;
  }

  .trust-grid {
    grid-template-columns: 1fr;
    gap: var(--space-3);
  }

  .section-header {
    margin-bottom: var(--space-8);
  }

  .section-title {
    font-size: clamp(1.5rem, 6vw, 2rem);
  }

  .service-card {
    padding: var(--space-5);
  }

  .benefit-card {
    padding: var(--space-5);
  }

  .gallery-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 220px;
    gap: var(--space-3);
  }

  .gallery-item--large {
    grid-column: 1;
  }

  .contact-form-card {
    padding: var(--space-5);
    border-radius: var(--radius-xl);
  }

  .contact-info-card {
    padding: var(--space-5);
  }

  .hours-card {
    padding: var(--space-5);
  }

  .form-title {
    font-size: 1.15rem;
    margin-bottom: var(--space-5);
  }

  .cta-banner {
    padding: var(--space-14) 0;
  }

  .cta-headline {
    font-size: 1.65rem;
  }

  .cta-subtext {
    font-size: 0.88rem;
  }

  .footer-top-grid {
    gap: var(--space-6);
  }

  .floating-whatsapp {
    bottom: var(--space-5);
    right: var(--space-4);
    width: 52px;
    height: 52px;
  }
}

/* Tiny Mobile (≤ 360px) */
@media (max-width: 360px) {
  .hero-headline {
    font-size: 1.7rem;
  }

  .btn-hero {
    font-size: 0.82rem;
    padding: 0.7em 1.1em;
  }

  .stat-number {
    font-size: 1.5rem;
  }

  .service-card {
    padding: var(--space-4);
  }

  .testimonial-card {
    padding: var(--space-5);
  }

  .contact-form-card {
    padding: var(--space-4);
  }

  .cta-headline {
    font-size: 1.4rem;
  }
}

/* ─── HERO v3: CINEMATIC FULL-SCREEN ───────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  background: #03100a;
}

.hero-bg-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, rgba(3, 16, 10, 0.338) 0%, rgba(3, 16, 10, .5) 45%, rgba(3, 16, 10, .88) 100%);
  z-index: 1;
}

.hero-bg-glow {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background: radial-gradient(ellipse 80% 60% at 50% 40%, rgba(17, 161, 57, .14) 0%, transparent 70%);
}

.hero-particles {
  position: absolute;
  inset: 0;
  z-index: 2;
  overflow: hidden;
  pointer-events: none;
}

.particle {
  position: absolute;
  border-radius: 50%;
  animation: float-particle linear infinite;
}

@keyframes float-particle {
  0% {
    transform: translateY(0) rotate(0deg);
    opacity: 0;
  }

  10% {
    opacity: 1;
  }

  90% {
    opacity: .6;
  }

  100% {
    transform: translateY(-120vh) rotate(720deg);
    opacity: 0;
  }
}

/* Top bar */
.hero-topbar {
  position: absolute;
  top: 90px;
  left: 0;
  right: 0;
  z-index: 5;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 var(--space-8);
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .35);
  border-bottom: 1px solid rgba(255, 255, 255, .06);
  padding-bottom: var(--space-4);
}

.hero-topbar-left,
.hero-topbar-right {
  display: flex;
  align-items: center;
  gap: var(--space-3);
}

.hero-topbar-dot {
  width: 6px;
  height: 6px;
  background: var(--green-400);
  border-radius: 50%;
  box-shadow: 0 0 6px rgba(38, 166, 91, .6);
  animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(38, 166, 91, .5);
  }

  50% {
    opacity: .8;
    transform: scale(1.2);
    box-shadow: 0 0 0 6px rgba(38, 166, 91, 0);
  }
}

.hero-topbar-sep {
  opacity: .3;
}

/* Center content */
.hero-center {
  position: relative;
  z-index: 4;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 120px var(--space-6) 140px;
  max-width: 900px;
  width: 100%;
}

/* Eyebrow */
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  background: rgba(17, 161, 57, .12);
  border: 1px solid rgba(17, 161, 57, .3);
  backdrop-filter: blur(12px);
  border-radius: var(--radius-full);
  padding: 7px 18px;
  color: var(--green-300);
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .04em;
  margin-bottom: var(--space-7);
}

.hero-eyebrow svg {
  color: var(--green-400);
  flex-shrink: 0;
}

/* Title */
.hero-title {
  font-family: var(--font-primary);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  margin-bottom: var(--space-7);
}

.hero-title-top {
  font-size: clamp(.95rem, 2vw, 1.15rem);
  font-weight: 400;
  color: rgba(255, 255, 255, .5);
  letter-spacing: .15em;
  text-transform: uppercase;
  font-family: var(--font-body);
}

.hero-title-main {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
  line-height: 1;
}

.hero-title-word {
  font-size: clamp(3.5rem, 8vw, 7.5rem);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -.04em;
  color: var(--white);
  display: block;
}

.hero-title-word.w2 {
  background: linear-gradient(135deg, #6ee7b7 0%, #34d399 40%, #11a139 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-title-word.w3 {
  color: rgba(255, 255, 255, .35);
}

.hero-title-bottom {
  font-size: clamp(.9rem, 2vw, 1.1rem);
  font-weight: 400;
  color: rgba(255, 255, 255, .5);
  letter-spacing: .02em;
  font-family: var(--font-body);
}

.hero-title-em {
  font-style: normal;
  font-weight: 700;
  color: var(--green-400);
  font-family: var(--font-primary);
}

/* Desc */
.hero-desc {
  font-size: clamp(.88rem, 1.5vw, 1.05rem);
  color: rgba(255, 255, 255, .55);
  line-height: 1.8;
  max-width: 620px;
  margin-bottom: var(--space-9);
}

.hero-br {
  display: block;
}

/* Actions */
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-3);
  margin-bottom: var(--space-10);
}

.hero-btn-primary {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  background: var(--green-500);
  color: var(--white);
  font-family: var(--font-primary);
  font-size: 1rem;
  font-weight: 700;
  padding: .9em 2.2em;
  border-radius: var(--radius-full);
  box-shadow: 0 0 0 0 rgba(17, 161, 57, 0), 0 8px 32px rgba(17, 161, 57, .4);
  transition: all .3s ease;
  text-decoration: none;
}

.hero-btn-primary:hover {
  background: var(--green-400);
  transform: translateY(-3px);
  box-shadow: 0 0 40px rgba(17, 161, 57, .5), 0 16px 40px rgba(17, 161, 57, .35);
}

.hero-btn-glow {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(255, 255, 255, .2) 0%, transparent 60%);
  pointer-events: none;
}

.hero-btn-primary svg,
.hero-btn-primary i {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.hero-btn-arrow {
  margin-left: 4px;
  transition: transform .2s ease;
}

.hero-btn-primary:hover .hero-btn-arrow {
  transform: translateX(4px);
}

.hero-btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  background: rgba(255, 255, 255, .07);
  color: var(--white);
  border: 1.5px solid rgba(255, 255, 255, .18);
  backdrop-filter: blur(12px);
  font-family: var(--font-primary);
  font-size: .95rem;
  font-weight: 600;
  padding: .88em 2em;
  border-radius: var(--radius-full);
  transition: all .3s ease;
  text-decoration: none;
}

.hero-btn-ghost:hover {
  background: rgba(255, 255, 255, .14);
  border-color: rgba(255, 255, 255, .35);
  transform: translateY(-2px);
}

.hero-btn-ghost i {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.hero-btn-wa {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  background: rgba(37, 211, 102, .1);
  color: #25d366;
  border: 1.5px solid rgba(37, 211, 102, .3);
  backdrop-filter: blur(12px);
  font-family: var(--font-primary);
  font-size: .95rem;
  font-weight: 600;
  padding: .88em 2em;
  border-radius: var(--radius-full);
  transition: all .3s ease;
  text-decoration: none;
}

.hero-btn-wa:hover {
  background: rgba(37, 211, 102, .2);
  border-color: rgba(37, 211, 102, .5);
  transform: translateY(-2px);
}

/* Social proof */
.hero-proof-strip {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  flex-wrap: wrap;
  justify-content: center;
}

.proof-avatars {
  display: flex;
  align-items: center;
}

.proof-av {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 2px solid rgba(3, 16, 10, .9);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: .62rem;
  font-weight: 800;
  color: var(--white);
  margin-left: -9px;
  flex-shrink: 0;
}

.proof-av:first-child {
  margin-left: 0;
}

.proof-stars {
  color: #fbbf24;
  font-size: .85rem;
  letter-spacing: 1px;
  margin: 0 4px;
}

.proof-label {
  font-size: .82rem;
  color: rgba(255, 255, 255, .5);
}

.proof-label strong {
  color: rgba(255, 255, 255, .85);
}

/* Stats bar - pinned to bottom */
.hero-stats-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(3, 16, 10, .75);
  backdrop-filter: blur(24px) saturate(160%);
  border-top: 1px solid rgba(255, 255, 255, .08);
  padding: var(--space-5) var(--space-8);
  gap: var(--space-8);
}

.hstat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}

.hstat-num {
  font-family: var(--font-primary);
  font-size: 1.9rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
  display: inline;
}

.hstat-suf {
  font-family: var(--font-primary);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--green-400);
  display: inline;
  margin-left: 1px;
}

.hstat-lbl {
  font-size: .68rem;
  color: rgba(255, 255, 255, .4);
  text-transform: uppercase;
  letter-spacing: .07em;
  font-weight: 500;
}

.hstat-div {
  width: 1px;
  height: 36px;
  background: rgba(255, 255, 255, .1);
  flex-shrink: 0;
}

/* scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 90px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 4;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: rgba(255, 255, 255, .3);
  font-size: .62rem;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.scroll-mouse {
  width: 22px;
  height: 36px;
  border: 1.5px solid rgba(255, 255, 255, .2);
  border-radius: 11px;
  display: flex;
  justify-content: center;
  padding-top: 5px;
}

.scroll-mouse-dot {
  width: 3px;
  height: 7px;
  background: rgba(255, 255, 255, .4);
  border-radius: 9999px;
  animation: scroll-mouse 2s ease-in-out infinite;
}

@keyframes scroll-mouse {
  0% {
    opacity: 1;
    transform: translateY(0);
  }

  50% {
    opacity: .3;
    transform: translateY(9px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ─── HERO v3 RESPONSIVE ────────────────────────────────────── */
@media (max-width: 1024px) {
  .hero-topbar {
    display: none;
  }

  .hero-title-word {
    font-size: clamp(3rem, 7vw, 5.5rem);
  }

  .hero-stats-bar {
    gap: var(--space-5);
    padding: var(--space-4) var(--space-6);
  }

  .hstat-num {
    font-size: 1.5rem;
  }
}

@media (max-width: 768px) {
  .hero-center {
    padding: 100px var(--space-5) 110px;
  }

  .hero-title-main {
    gap: 10px;
  }

  .hero-title-word {
    font-size: clamp(2.6rem, 9vw, 4rem);
  }

  .hero-actions {
    gap: var(--space-2);
  }

  .hero-btn-primary {
    font-size: .9rem;
    padding: .8em 1.8em;
  }

  .hero-btn-ghost,
  .hero-btn-wa {
    font-size: .85rem;
    padding: .78em 1.5em;
  }

  .hero-stats-bar {
    gap: var(--space-4);
    padding: var(--space-3) var(--space-4);
    flex-wrap: wrap;
  }

  .hstat-num {
    font-size: 1.35rem;
  }

  .hstat-lbl {
    font-size: .6rem;
  }

  .hstat-div {
    height: 28px;
  }

  .scroll-indicator {
    display: none;
  }

  .nav-logo img {
    width: 100px !important;
    height: auto !important;
  }

  .hero-pill {
    font-size: 0.85rem !important;
    padding: 4px 12px !important;
    margin-bottom: var(--space-4) !important;
  }

  .custom-font {
    font-size: 1.0rem !important;
    margin-top: 0 !important;
  }
}

@media (max-width: 480px) {
  .hero-center {
    padding: 90px var(--space-4) 100px;
  }

  .hero-eyebrow {
    font-size: .7rem;
    padding: 5px 14px;
  }

  .hero-title-top {
    font-size: .8rem;
    letter-spacing: .1em;
  }

  .hero-title-word {
    font-size: clamp(2.2rem, 10vw, 3rem);
  }

  .hero-title-bottom {
    font-size: .82rem;
  }

  .hero-desc {
    font-size: .85rem;
  }

  .hero-br {
    display: none;
  }

  .hero-actions {
    flex-direction: column;
    width: 100%;
    max-width: 300px;
  }

  .hero-btn-primary,
  .hero-btn-ghost,
  .hero-btn-wa {
    width: 100%;
    justify-content: center;
  }

  .hero-stats-bar {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-3);
    padding: var(--space-3) var(--space-4);
    justify-items: center;
  }

  .hstat-div {
    display: none;
  }

  .hstat-num {
    font-size: 1.4rem;
  }

  .proof-label {
    display: none;
  }
}

@media (max-width: 360px) {
  .hero-title-word {
    font-size: 2.2rem;
  }

  .hero-stats-bar {
    grid-template-columns: repeat(2, 1fr);
  }
}