:root {
  --sage: #7aad8f;
  --sage-light: #a8c5b5;
  --sage-pale: #e8f2ec;
  --sage-dark: #4a7c5f;
  --sage-deep: #2d5c42;
  --cream: #faf8f5;
  --cream-warm: #f5f0e8;
  --text-dark: #1a2e22;
  --text-mid: #3d5a47;
  --text-soft: #6b8575;
  --text-light: #9ab5a5;
  --white: #ffffff;
  --shadow-sm: 0 2px 12px rgba(42, 90, 60, 0.08);
  --shadow-md: 0 8px 32px rgba(42, 90, 60, 0.12);
  --shadow-lg: 0 20px 60px rgba(42, 90, 60, 0.16);
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 32px;
  --radius-xl: 48px;
  --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--cream);
  color: var(--text-dark);
  overflow-x: hidden;
  line-height: 1.6;
}

/* ─── UTILITY ─────────────────────────────────────── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.tag {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--sage-pale); color: var(--sage-dark);
  font-family: 'DM Sans', sans-serif; font-size: 12px; font-weight: 500;
  letter-spacing: 0.08em; text-transform: uppercase;
  padding: 6px 14px; border-radius: 50px;
  border: 1px solid rgba(122, 173, 143, 0.3);
}
.tag::before { content: "●"; font-size: 8px; color: var(--sage); }

.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: 'DM Sans', sans-serif; font-weight: 500; font-size: 15px;
  padding: 16px 32px; border-radius: 50px; border: none; cursor: pointer;
  text-decoration: none; transition: var(--transition);
  position: relative; overflow: hidden;
}
.btn::after {
  content: ''; position: absolute; inset: 0;
  background: rgba(255,255,255,0.15);
  transform: translateX(-100%); transition: transform 0.4s ease;
}
.btn:hover::after { transform: translateX(0); }

.btn-primary {
  background: linear-gradient(135deg, var(--sage-dark) 0%, var(--sage-deep) 100%);
  color: white; box-shadow: 0 8px 24px rgba(74, 124, 95, 0.35);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 32px rgba(74, 124, 95, 0.45); }

.btn-outline {
  background: transparent; color: var(--sage-dark);
  border: 1.5px solid var(--sage-light);
}
.btn-outline:hover { background: var(--sage-pale); border-color: var(--sage-dark); }

.btn-white {
  background: white; color: var(--sage-deep);
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}
.btn-white:hover { transform: translateY(-2px); box-shadow: 0 12px 32px rgba(0,0,0,0.18); }

.whatsapp-icon { width: 20px; height: 20px; fill: currentColor; }

/* ─── FADE IN ANIMATION ─────────────────────────────── */
.fade-in {
  opacity: 0; transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-in.visible { opacity: 1; transform: translateY(0); }
.fade-in-delay-1 { transition-delay: 0.1s; }
.fade-in-delay-2 { transition-delay: 0.2s; }
.fade-in-delay-3 { transition-delay: 0.3s; }
.fade-in-delay-4 { transition-delay: 0.4s; }

/* ─── NAVBAR ────────────────────────────────────────── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 20px 0;
  transition: all 0.4s ease;
  background: white;
}
nav.scrolled {
  backdrop-filter: blur(12px);
  padding: 12px 0;
  box-shadow: 0 1px 0 rgba(122, 173, 143, 0.2), var(--shadow-sm);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
}
.nav-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px; font-weight: 600; color: var(--text-dark);
  text-decoration: none; letter-spacing: -0.01em;
}
.nav-logo span { color: var(--sage-dark); font-style: italic; }
.nav-links {
  display: flex; align-items: center; gap: 36px; list-style: none;
}
.nav-links a {
  font-size: 14px; font-weight: 400; color: var(--text-mid);
  text-decoration: none; transition: color 0.2s;
  position: relative;
}
.nav-links .btn-primary {
  color: white;
}
.nav-links .btn-primary:hover {
  color: white;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -4px; left: 0; right: 0;
  height: 1px; background: var(--sage);
  transform: scaleX(0); transition: transform 0.3s ease;
}
.nav-links a:hover { color: var(--sage-dark); }
.nav-links a:hover::after { transform: scaleX(1); }
.nav-cta {
  animation: pulseCTA 2.5s infinite;
}
@keyframes pulseCTA {
  0% { box-shadow: 0 0 0 0 rgba(74, 124, 95, 0.5); }
  70% { box-shadow: 0 0 0 12px rgba(74, 124, 95, 0); }
  100% { box-shadow: 0 0 0 0 rgba(74, 124, 95, 0); }
}

.hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 4px;
}
.hamburger span {
  width: 24px; height: 2px; background: var(--text-dark);
  border-radius: 2px; transition: var(--transition);
}
.hamburger.open span {
  background: var(--text-dark);
}
.hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.hamburger.open span:nth-child(2) {
  opacity: 0;
}
.hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ─── MOBILE NAV ────────────────────────────────────── */
.mobile-nav {
  position: fixed; top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(26, 46, 34, 0.97);
  backdrop-filter: blur(20px);
  display: flex; flex-direction: column; gap: 1rem;
  padding: 80px 24px 32px;
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  overflow-y: auto;
}
.mobile-nav.open {
  opacity: 1;
  visibility: visible;
}
.mobile-nav a {
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
  font-size: 16px;
  color: rgba(255, 255, 255, 0.8);
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  text-decoration: none;
  transition: color 0.2s ease;
}
.mobile-nav a:hover {
  color: white;
}
.mobile-nav .btn-primary {
  margin-top: 16px;
  border-bottom: none;
  width: 100%;
  animation: pulseCTA 2.5s infinite;
  padding: 16px 24px;
}

/* ─── HERO ──────────────────────────────────────────── */
#hero {
  min-height: 100vh;
  background: linear-gradient(160deg, #f0f7f3 0%, var(--cream) 50%, #fdf9f4 100%);
  display: flex; align-items: center;
  padding: 120px 0 80px;
  position: relative; overflow: hidden;
}
#hero::before {
  content: '';
  position: absolute; top: -200px; right: -200px;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(122, 173, 143, 0.12) 0%, transparent 70%);
  pointer-events: none;
}
#hero::after {
  content: '';
  position: absolute; bottom: -150px; left: -100px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(168, 197, 181, 0.1) 0%, transparent 70%);
  pointer-events: none;
}
.hero-inner {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 60px; align-items: center;
}
.hero-content { position: relative; z-index: 1; }
.hero-tag { margin-bottom: 24px; }
.hero-headline {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(44px, 5.5vw, 68px);
  font-weight: 600; line-height: 1.1;
  color: var(--text-dark); letter-spacing: -0.02em;
  margin-bottom: 20px;
}
.hero-headline em {
  font-style: italic; color: var(--sage-dark);
  position: relative;
}
.hero-sub {
  font-size: 17px; font-weight: 300; color: var(--text-soft);
  line-height: 1.7; max-width: 480px; margin-bottom: 40px;
}
.hero-cta-group { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }
.hero-trust {
  display: flex; align-items: center; gap: 8px;
  color: var(--text-soft); font-size: 13px;
}
.hero-trust-dots { display: flex; gap: -4px; }
.hero-trust-dot {
  width: 28px; height: 28px; border-radius: 50%;
  background: linear-gradient(135deg, var(--sage-light), var(--sage));;
  border: 2px solid white;
  margin-left: -8px; display: flex; align-items: center; justify-content: center;
  font-size: 11px; color: white; font-weight: 600;
}
.hero-trust-dot:first-child { margin-left: 0; }

.hero-image-wrap {
  position: relative; display: flex; justify-content: center;
}
.hero-image-card {
  position: relative; border-radius: var(--radius-xl);
  overflow: hidden; width: 100%; max-width: 520px;
  aspect-ratio: 1/1.05;
  box-shadow: var(--shadow-lg);
}
.hero-image-card img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 6s ease;
}
.hero-image-card:hover img { transform: scale(1.03); }
.hero-badge {
  position: absolute; bottom: 32px; left: -20px;
  background: white; border-radius: var(--radius-md);
  padding: 16px 20px; box-shadow: var(--shadow-md);
  display: flex; align-items: center; gap: 12px;
  animation: float 3s ease-in-out infinite;
}
@keyframes float { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-8px)} }
.badge-icon {
  width: 42px; height: 42px; border-radius: 12px;
  background: var(--sage-pale); display: flex;
  align-items: center; justify-content: center;
}
.badge-icon svg { width: 22px; height: 22px; }
.badge-text { font-size: 12px; color: var(--text-soft); }
.badge-text strong { display: block; font-size: 18px; color: var(--text-dark); font-weight: 600; margin-bottom: 1px; }

.hero-badge-2 {
  position: absolute; top: 40px; right: -16px;
  background: linear-gradient(135deg, var(--sage-dark), var(--sage-deep));
  border-radius: var(--radius-md);
  padding: 14px 20px; box-shadow: var(--shadow-md);
  color: white;
  animation: float 3s ease-in-out infinite 1.5s;
}
.hero-badge-2 .b2-num { font-family: 'Cormorant Garamond', serif; font-size: 28px; font-weight: 600; }
.hero-badge-2 .b2-label { font-size: 11px; opacity: 0.8; text-transform: uppercase; letter-spacing: 0.06em; }

/* ─── SOCIAL PROOF BAR ──────────────────────────────── */
#proof-bar {
  background: var(--text-dark);
  padding: 32px 0;
}
.proof-bar-inner {
  display: flex; justify-content: center; align-items: center;
  gap: 0; flex-wrap: wrap;
}
.proof-stat {
  text-align: center; padding: 0 48px;
  position: relative;
}
.proof-stat + .proof-stat::before {
  content: ''; position: absolute; left: 0; top: 50%;
  transform: translateY(-50%);
  width: 1px; height: 40px;
  background: rgba(255,255,255,0.12);
}
.proof-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 42px; font-weight: 600; color: white;
  line-height: 1; letter-spacing: -0.02em;
}
.proof-num span { color: var(--sage-light); }
.proof-label {
  font-size: 13px; color: rgba(255,255,255,0.5);
  margin-top: 4px; font-weight: 300;
}

/* ─── SECTION LAYOUT ────────────────────────────────── */
section { padding: 100px 0; }

.section-tag { margin-bottom: 16px; }
.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(36px, 4vw, 52px); font-weight: 600;
  color: var(--text-dark); line-height: 1.15; letter-spacing: -0.02em;
  margin-bottom: 16px;
}
.section-title em { font-style: italic; color: var(--sage-dark); }
.section-sub {
  font-size: 16px; color: var(--text-soft);
  font-weight: 300; line-height: 1.7; max-width: 520px;
}

/* ─── ABOUT ─────────────────────────────────────────── */
#about {
  background: var(--cream-warm);
  position: relative; overflow: hidden;
}
#about::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='30' cy='30' r='1' fill='%237aad8f' fill-opacity='0.08'/%3E%3C/svg%3E");
  pointer-events: none;
}
.about-inner {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center; position: relative;
}
.about-image-wrap { position: relative; }
.about-image-frame {
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 3/4;
  max-height: 560px;
  box-shadow: var(--shadow-lg);
  position: relative;
}
.about-image-frame img { width: 100%; height: 100%; object-fit: cover; }
.about-image-frame::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, transparent 60%, rgba(42,90,60,0.2));
}
.about-shape {
  position: absolute; top: -24px; right: -24px;
  width: 120px; height: 120px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--sage-pale), var(--sage-light));
  z-index: -1;
}
.about-shape-2 {
  position: absolute; bottom: 40px; left: -32px;
  width: 180px; height: 180px;
  border-radius: 50%;
  border: 2px solid rgba(122,173,143,0.2);
  z-index: -1;
}

.about-quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px; font-style: italic; color: var(--sage-dark);
  line-height: 1.5; margin: 28px 0;
  padding-left: 24px;
  border-left: 3px solid var(--sage-light);
}
.about-body { font-size: 16px; color: var(--text-soft); line-height: 1.8; margin-bottom: 16px; font-weight: 300; }
.about-pills { display: flex; flex-wrap: wrap; gap: 10px; margin: 32px 0; }
.pill {
  background: white; border: 1px solid rgba(122,173,143,0.25);
  border-radius: 50px; padding: 8px 16px;
  font-size: 13px; color: var(--text-mid); font-weight: 400;
  box-shadow: var(--shadow-sm);
  display: flex; align-items: center; gap: 6px;
}
.pill svg { width: 14px; height: 14px; color: var(--sage); }

/* ─── SERVICES ──────────────────────────────────────── */
#services {
  background: var(--cream);
}
.services-header { text-align: center; margin-bottom: 64px; }
.services-header .section-sub { margin: 0 auto; }
.services-grid {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.service-card {
  background: white; border-radius: var(--radius-lg);
  padding: 40px; border: 1px solid rgba(122,173,143,0.12);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  position: relative; overflow: hidden;
  cursor: default;
}
.service-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--sage-light), var(--sage-dark));
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.4s ease;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(122,173,143,0.25);
}
.service-card:hover::before { transform: scaleX(1); }
.service-icon {
  width: 56px; height: 56px; border-radius: 16px;
  background: var(--sage-pale);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 24px; transition: var(--transition);
}
.service-card:hover .service-icon {
  background: linear-gradient(135deg, var(--sage-dark), var(--sage-deep));
}
.service-icon svg { width: 28px; height: 28px; color: var(--sage-dark); transition: color 0.3s; }
.service-card:hover .service-icon svg { color: white; }
.service-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px; font-weight: 600; color: var(--text-dark);
  margin-bottom: 12px; letter-spacing: -0.01em;
}
.service-desc { font-size: 15px; color: var(--text-soft); line-height: 1.7; font-weight: 300; }
.service-arrow {
  margin-top: 24px; color: var(--sage-dark);
  font-size: 13px; font-weight: 500; display: flex; align-items: center; gap: 6px;
  opacity: 0; transform: translateX(-8px); transition: var(--transition);
}
.service-card:hover .service-arrow { opacity: 1; transform: translateX(0); }

/* ─── TESTIMONIALS ──────────────────────────────────── */
#testimonials {
  background: linear-gradient(160deg, var(--sage-deep) 0%, #1a4030 100%);
  position: relative; overflow: hidden;
}
#testimonials::before {
  content: '';
  position: absolute; top: -200px; right: -200px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(122,173,143,0.15) 0%, transparent 60%);
}
.testimonials-header { text-align: center; margin-bottom: 64px; }
.testimonials-header .section-title { color: white; }
.testimonials-header .section-sub { color: rgba(255,255,255,0.5); margin: 0 auto; }
.testimonials-header .tag { background: rgba(255,255,255,0.1); color: rgba(255,255,255,0.7); border-color: rgba(255,255,255,0.15); }
.testimonials-header .tag::before { color: var(--sage-light); }
.testimonials-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testimonial-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: 36px;
  transition: var(--transition);
  backdrop-filter: blur(8px);
  position: relative;
}
.testimonial-card:hover {
  background: rgba(255,255,255,0.1);
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}
.testimonial-stars {
  display: flex; gap: 4px; margin-bottom: 20px;
}
.star { color: #f5c842; font-size: 16px; }
.testimonial-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px; font-style: italic; color: rgba(255,255,255,0.9);
  line-height: 1.6; margin-bottom: 28px;
}
.testimonial-author { display: flex; align-items: center; gap: 14px; }
.author-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: linear-gradient(135deg, var(--sage-light), var(--sage));
  display: flex; align-items: center; justify-content: center;
  font-weight: 600; color: white; font-size: 16px;
  flex-shrink: 0;
}
.author-name { font-size: 14px; font-weight: 500; color: rgba(255,255,255,0.8); }
.author-detail { font-size: 12px; color: rgba(255,255,255,0.4); margin-top: 2px; }

/* ─── CTA SECTION ───────────────────────────────────── */
#cta {
  background: var(--cream-warm); padding: 100px 0;
  position: relative; overflow: hidden;
}
#cta::before {
  content: '';
  position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='40' cy='40' r='1.5' fill='%237aad8f' fill-opacity='0.1'/%3E%3C/svg%3E");
}
.cta-box {
  background: linear-gradient(135deg, var(--sage-dark) 0%, var(--sage-deep) 60%, #1a3828 100%);
  border-radius: var(--radius-xl);
  padding: 80px; text-align: center;
  position: relative; overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.cta-box::before {
  content: '';
  position: absolute; top: -100px; left: 50%; transform: translateX(-50%);
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(255,255,255,0.06) 0%, transparent 60%);
}
.cta-tag { margin-bottom: 24px; background: rgba(255,255,255,0.12); color: rgba(255,255,255,0.8); border-color: rgba(255,255,255,0.2); }
.cta-tag::before { color: var(--sage-light); }
.cta-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(36px, 4vw, 52px); font-weight: 600; color: white;
  line-height: 1.15; letter-spacing: -0.02em; margin-bottom: 20px;
}
.cta-sub { font-size: 17px; color: rgba(255,255,255,0.65); font-weight: 300; margin-bottom: 48px; max-width: 500px; margin-left: auto; margin-right: auto; }
.cta-trust-row {
  display: flex; justify-content: center; align-items: center; gap: 32px;
  margin-top: 32px; flex-wrap: wrap;
}
.cta-trust-item { display: flex; align-items: center; gap: 8px; color: rgba(255,255,255,0.5); font-size: 13px; }
.cta-trust-item svg { width: 16px; height: 16px; color: var(--sage-light); }

/* ─── FOOTER ────────────────────────────────────────── */
footer {
  background: var(--text-dark); padding: 60px 0 32px;
}
.footer-inner {
  display: grid; grid-template-columns: 2fr 1fr 1fr;
  gap: 60px; padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand .nav-logo { font-size: 24px; color: white; margin-bottom: 16px; display: block; }
.footer-brand p { font-size: 14px; color: rgba(255,255,255,0.4); line-height: 1.7; font-weight: 300; max-width: 280px; }
.footer-col h4 {
  font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase;
  color: rgba(255,255,255,0.3); margin-bottom: 20px;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 12px; }
.footer-col a { color: rgba(255,255,255,0.55); font-size: 14px; text-decoration: none; transition: color 0.2s; }
.footer-col a:hover { color: var(--sage-light); }
.footer-contact-item { display: flex; align-items: center; gap: 10px; color: rgba(255,255,255,0.55); font-size: 14px; margin-bottom: 14px; }
.footer-contact-item svg { width: 16px; height: 16px; color: var(--sage-light); flex-shrink: 0; }
.footer-bottom {
  padding-top: 28px; display: flex; justify-content: space-between;
  align-items: center; flex-wrap: gap;
}
.footer-copy { font-size: 13px; color: rgba(255,255,255,0.25); }
.footer-dev-creds { font-size: 13px; color: rgba(255,255,255,0.25); }
.footer-dev-creds a { color: var(--sage-light); text-decoration: none; font-weight: 500; transition: color 0.2s; }
.footer-dev-creds a:hover { color: white; }
.footer-creds { font-size: 13px; color: rgba(255,255,255,0.25); }

/* ─── FLOATING WHATSAPP ─────────────────────────────── */
#whatsapp-float {
  position: fixed; bottom: 32px; right: 32px; z-index: 9999;
}
.wf-btn {
  width: 60px; height: 60px; border-radius: 50%;
  background: #25D366;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
  cursor: pointer; text-decoration: none;
  transition: var(--transition);
  position: relative;
}
.wf-btn:hover { transform: scale(1.1); box-shadow: 0 12px 32px rgba(37, 211, 102, 0.5); }
.wf-btn svg { width: 32px; height: 32px; fill: white; }
.wf-pulse {
  position: absolute; inset: -4px; border-radius: 50%;
  border: 2px solid rgba(37, 211, 102, 0.4);
  animation: pulse-ring 2s ease-out infinite;
}
@keyframes pulse-ring {
  0% { transform: scale(1); opacity: 1; }
  100% { transform: scale(1.4); opacity: 0; }
}
.wf-tooltip {
  position: absolute; right: calc(100% + 12px); top: 50%; transform: translateY(-50%);
  background: var(--text-dark); color: white; font-size: 13px; font-weight: 500;
  padding: 8px 14px; border-radius: 8px; white-space: nowrap;
  opacity: 0; pointer-events: none;
  transition: opacity 0.2s ease;
}
.wf-tooltip::after {
  content: '';
  position: absolute; left: 100%; top: 50%; transform: translateY(-50%);
  border: 6px solid transparent; border-left-color: var(--text-dark);
}
#whatsapp-float:hover .wf-tooltip { opacity: 1; }

/* MOBILE MENU */
@media (max-width: 768px) {

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 75%;
    height: 100vh;

    background: var(--cream);
    flex-direction: column;
    align-items: flex-start;
    padding: 100px 30px;
    gap: 20px;

    transition: 0.3s ease;
    z-index: 999;
  }

  .nav-links.active {
    right: 0;
  }

  .hamburger {
    display: flex;
    z-index: 1001;
  }
}

/* ─── RESPONSIVE ────────────────────────────────────── */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .hero-image-wrap { order: -1; }
  .hero-image-card { max-width: 400px; margin: 0 auto; }
  .about-inner { grid-template-columns: 1fr; gap: 48px; }
  .about-image-wrap { max-width: 400px; }
  .services-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 40px; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .proof-bar-inner { gap: 0; }
  .proof-stat { padding: 12px 24px; }
  .proof-stat + .proof-stat::before { display: none; }
  .cta-box { padding: 48px 32px; }
  nav.mobile-open .nav-links {
    display: flex; flex-direction: column;
    position: fixed; top: 0; left: 0; right: 0; bottom: 0;
    background: var(--cream); align-items: center; justify-content: center;
    gap: 32px; z-index: 999;
  }
  nav.mobile-open .nav-links a { font-size: 24px; }
}
@media (max-width: 600px) {
  section { padding: 72px 0; }
  .hero-badge { left: 0; bottom: 20px; }
  .hero-badge-2 { right: 0; top: 20px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
}