/* ===== RESET & ROOT ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --primary: #1a7a5e;
  --primary-dark: #145f49;
  --primary-light: #e8f5f0;
  --accent: #2eb87f;
  --accent2: #f0a500;
  --text: #1c2b2b;
  --text-muted: #5a7070;
  --bg: #ffffff;
  --bg-soft: #f5faf8;
  --bg-light: #eef7f3;
  --border: #d0e8df;
  --shadow: 0 4px 24px rgba(26,122,94,0.10);
  --shadow-md: 0 8px 32px rgba(26,122,94,0.13);
  --shadow-lg: 0 16px 56px rgba(26,122,94,0.17);
  --radius: 16px;
  --radius-sm: 10px;
  --nav-h: 70px;
  --transition: 0.28s cubic-bezier(.4,0,.2,1);
}

html { scroll-behavior: smooth; overflow-x: hidden; }

body {
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background: var(--bg);
  overflow-x: hidden;
  max-width: 100vw;
  line-height: 1.65;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* FIXED: was margin-left: 40px causing right-shift */
.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== SCROLL PROGRESS BAR ===== */
.scroll-progress-bar {
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  width: 0%;
  background: linear-gradient(90deg, var(--primary), var(--accent), var(--accent2));
  z-index: 9999;
  transition: width 0.08s linear;
  border-radius: 0 2px 2px 0;
}

/* ===== SECTION LABELS & TITLES ===== */
.section-title {
  font-family: 'Lora', serif;
  font-size: clamp(1.4rem, 2.4vw, 1.9rem);
  color: var(--text);
  text-align: center;
  margin-bottom: 40px;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.01em;
}

.section-label {
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--accent);
  text-transform: uppercase;
  margin-bottom: 12px;
  display: block;
}

.section-sub {
  text-align: center;
  color: rgba(255,255,255,0.72);
  font-size: 0.92rem;
  max-width: 520px;
  margin: 0 auto 40px;
  line-height: 1.7;
}

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

/* ===== BUTTONS ===== */
.btn-primary {
  display: inline-block;
  background: linear-gradient(135deg, var(--primary) 0%, #1d8f6d 100%);
  color: #fff;
  padding: 11px 26px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.87rem;
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: all var(--transition);
  box-shadow: 0 4px 18px rgba(26,122,94,0.30);
}
.btn-primary:hover {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
  transform: translateY(-2px);
  box-shadow: 0 10px 32px rgba(26,122,94,0.38);
}
.btn-primary:active { transform: translateY(0); }

.btn-outline {
  display: inline-block;
  background: transparent;
  color: var(--primary);
  padding: 11px 26px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.87rem;
  border: 2px solid var(--primary);
  cursor: pointer;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.btn-outline:hover { background: var(--primary); color: #fff; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(26,122,94,0.25); }

.btn-lg { padding: 11px 26px; font-size: 0.87rem; }

/* Ripple wave */
.ripple-wave {
  position: absolute;
  border-radius: 50%;
  background: rgba(255,255,255,0.3);
  transform: scale(0);
  animation: rippleAnim 0.65s linear;
  pointer-events: none;
}
@keyframes rippleAnim {
  to { transform: scale(1); opacity: 0; }
}

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  z-index: 1000;
  transition: box-shadow var(--transition), background var(--transition);
}
.navbar.scrolled {
  box-shadow: 0 4px 24px rgba(26,122,94,0.12);
  background: rgba(255,255,255,0.99);
}

.nav-container {
  max-width: 1220px;
  margin: 0 auto;
  padding: 0 28px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--text);
  flex-shrink: 0;
}
.logo strong { color: var(--primary); font-weight: 800; }
.logo-icon { font-size: 1.4rem; }
.logo-icon-wrap {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.logo-icon-img { height: 165%; width: 165%; object-fit: cover; display: block; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-links a {
  font-size: 0.83rem;
  font-weight: 500;
  color: var(--text-muted);
  padding: 6px 10px;
  border-radius: 8px;
  transition: color var(--transition), background var(--transition);
  white-space: nowrap;
}
.nav-links a:hover, .nav-links a.active { color: var(--primary); background: var(--primary-light); }

.btn-nav {
  background: var(--primary) !important;
  color: #fff !important;
  padding: 9px 18px !important;
  border-radius: 50px !important;
  font-weight: 700 !important;
  font-size: 0.8rem !important;
  transition: all var(--transition) !important;
  box-shadow: 0 4px 14px rgba(26,122,94,0.3);
  margin-left: 8px;
}
.btn-nav:hover { background: var(--primary-dark) !important; transform: translateY(-1px) !important; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  border-radius: 8px;
  transition: background var(--transition);
}
.hamburger:hover { background: var(--primary-light); }
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all 0.3s ease;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  padding: calc(var(--nav-h) + 48px) 32px 64px;
  max-width: 1340px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: visible;
}

/* Background orbs */
.hero-bg-orb {
  position: fixed;
  border-radius: 50%;
  pointer-events: none;
  z-index: -1;
  will-change: transform;
}
.hero-orb-1 {
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(46,184,127,0.11) 0%, transparent 70%);
  top: -150px; right: -120px;
  animation: orbFloat 9s ease-in-out infinite;
}
.hero-orb-2 {
  width: 450px; height: 450px;
  background: radial-gradient(circle, rgba(26,122,94,0.08) 0%, transparent 70%);
  bottom: 60px; left: -100px;
  animation: orbFloat 12s ease-in-out infinite reverse;
}
.hero-orb-3 {
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(240,165,0,0.07) 0%, transparent 70%);
  top: 40%; left: 45%;
  animation: orbFloat 10s ease-in-out infinite 2s;
}
@keyframes orbFloat {
  0%, 100% { transform: translate(0,0) scale(1); }
  50% { transform: translate(18px, -28px) scale(1.06); }
}

/* Floating particles */
.hero-particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 0;
}
.hero-particle {
  position: absolute;
  border-radius: 50%;
  background: var(--primary);
  animation: particleFloat linear infinite;
}
@keyframes particleFloat {
  0% { transform: translateY(0) translateX(0) rotate(0deg); }
  33% { transform: translateY(-40px) translateX(20px) rotate(120deg); }
  66% { transform: translateY(-20px) translateX(-15px) rotate(240deg); }
  100% { transform: translateY(0) translateX(0) rotate(360deg); }
}

.hero-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
  width: 100%;
  position: relative;
  z-index: 1;
}

.hero-content {
  flex: 1;
  max-width: 580px;
  animation: fadeUp 0.7s ease both;
}

.hero-tag {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  color: var(--primary);
  text-transform: uppercase;
  margin-bottom: 24px;
  padding: 9px 20px;
  background: var(--primary-light);
  border-radius: 50px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border: 1px solid rgba(26,122,94,0.2);
  box-shadow: 0 2px 10px rgba(26,122,94,0.1);
  min-height: 36px;
}

.hero-content h2 {
  font-family: 'Lora', serif;
  font-size: clamp(1.7rem, 3.2vw, 2.5rem);
  line-height: 1.15;
  color: var(--text);
  margin-bottom: 20px;
  font-weight: 700;
  letter-spacing: -0.02em;
  animation: fadeUp 0.78s 0.08s ease both;
}
.hero-content h2 em {
  font-style: italic;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  color: var(--text-muted);
  font-size: 0.92rem;
  margin-bottom: 36px;
  max-width: 500px;
  line-height: 1.75;
  animation: fadeUp 0.8s 0.16s ease both;
}

.hero-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 44px;
  animation: fadeUp 0.85s 0.24s ease both;
}
.btn-hero { box-shadow: 0 8px 28px rgba(26,122,94,0.38) !important; }

/* Trust stats */
.hero-trust {
  display: flex;
  align-items: center;
  animation: fadeUp 0.9s 0.32s ease both;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 16px 24px;
  box-shadow: 0 4px 24px rgba(26,122,94,0.09);
  width: fit-content;
  gap: 0;
}
.trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 20px;
}
.trust-num {
  font-family: 'Lora', serif;
  font-size: 1.7rem;
  font-weight: 700;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 4px;
}
.trust-label {
  font-size: 0.74rem;
  font-weight: 600;
  color: var(--text-muted);
  white-space: nowrap;
}
.trust-divider { width: 1px; height: 38px; background: var(--border); flex-shrink: 0; }

/* Hero scroll hint */
.hero-scroll-hint {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--text-muted);
  font-size: 0.74rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  animation: fadeUp 1s 1s ease both;
  opacity: 0.6;
}
.scroll-arrow {
  display: flex;
  flex-direction: column;
  gap: 0;
  align-items: center;
}
.scroll-arrow span {
  display: block;
  width: 10px;
  height: 10px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
  animation: scrollArrow 1.6s ease-in-out infinite;
}
.scroll-arrow span:nth-child(2) { margin-top: -6px; animation-delay: 0.2s; }
@keyframes scrollArrow {
  0%, 100% { opacity: 0.3; } 50% { opacity: 1; }
}

/* ===== HERO VISUAL ===== */
.hero-visual {
  flex: 1 1 520px;
  max-width: 560px;
  animation: fadeIn 1s 0.2s ease both;
}

.hero-card-wrap {
  position: relative;
  width: 100%;
}

.hero-main-card {
  background: linear-gradient(145deg, #e8f5f0 0%, #d2ede5 50%, #c5e8d8 100%);
  border-radius: 28px;
  padding: 32px;
  box-shadow: 0 24px 72px rgba(26,122,94,0.22), 0 4px 18px rgba(26,122,94,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(26,122,94,0.14);
  position: relative;
  overflow: hidden;
}
.hero-main-card::before {
  content: '';
  position: absolute;
  top: -40px; right: -40px;
  width: 220px; height: 220px;
  background: radial-gradient(circle, rgba(255,255,255,0.45) 0%, transparent 70%);
  border-radius: 50%;
}
.hero-main-card::after {
  content: '';
  position: absolute;
  bottom: -30px; left: -30px;
  width: 160px; height: 160px;
  background: radial-gradient(circle, rgba(46,184,127,0.15) 0%, transparent 70%);
  border-radius: 50%;
}

.hero-svg {
  width: 100%;
  max-width: 310px;
  height: auto;
  filter: drop-shadow(0 8px 24px rgba(26,122,94,0.14));
  position: relative;
  z-index: 1;
}
.hero-img {
  width: 100%;
  height: auto;
  border-radius: 24px;
  display: block;
  object-fit: cover;
  filter: drop-shadow(0 16px 48px rgba(26,122,94,0.20));
}

/* Floating badges */
.float-badge {
  position: absolute;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 11px 15px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 8px 32px rgba(26,122,94,0.16);
  z-index: 10;
  min-width: 155px;
  animation: badgeFloat 4.5s ease-in-out infinite;
}
.badge-tl { top: -14px; left: -20px; animation-delay: 0s; }
.badge-br { bottom: -14px; right: -16px; animation-delay: 2.2s; }
@keyframes badgeFloat {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-7px); }
}
.badge-icon { font-size: 1.35rem; flex-shrink: 0; }
.float-badge strong { display: block; font-size: 0.8rem; font-weight: 700; color: var(--text); line-height: 1.2; }
.float-badge p { font-size: 0.71rem; color: var(--text-muted); margin: 0; line-height: 1.2; }

/* ===== STATS SECTION ===== */
.stats-section {
  background: linear-gradient(135deg, #0d5c47 0%, var(--primary) 50%, #1d8f6d 100%);
  padding: 72px 24px;
  position: relative;
  overflow: hidden;
}

.stats-bg-pattern {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 20% 50%, rgba(255,255,255,0.04) 1px, transparent 1px),
    radial-gradient(circle at 80% 50%, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
  z-index: 1;
}

.stat-item {
  text-align: center;
  padding: 36px 20px;
  border-radius: var(--radius);
  background: rgba(255,255,255,0.09);
  border: 1px solid rgba(255,255,255,0.15);
  backdrop-filter: blur(4px);
  transition: all var(--transition);
  cursor: default;
}
.stat-item:hover {
  background: rgba(255,255,255,0.16);
  transform: translateY(-5px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.15);
}

.stat-icon-wrap { font-size: 2.2rem; margin-bottom: 14px; }

.stat-number {
  font-family: 'Lora', serif;
  font-size: clamp(1.8rem, 2.8vw, 2.4rem);
  font-weight: 700;
  color: var(--accent2);
  line-height: 1;
  margin-bottom: 8px;
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 2px;
}
.stat-plus { font-size: 1.4rem; color: var(--accent2); }

.stat-label {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.82);
  font-weight: 500;
  letter-spacing: 0.02em;
}

/* ===== ABOUT ===== */
.about {
  padding: 80px 24px;
  background: var(--bg-soft);
  overflow: hidden;
}

.about-wrapper {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
  min-width: 0;
}
.about-grid > * { min-width: 0; }

.about-img-block {
  width: 100%;
  aspect-ratio: 4/3;
  border-radius: 24px;
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow-lg);
}

.about-img-inner {
  position: absolute;
  inset: 0;
  border-radius: 24px;
  overflow: hidden;
}

.about-main-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}


/* About badges */
.about-badge {
  position: absolute;
  background: #fff;
  border-radius: 14px;
  padding: 10px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: var(--shadow-md);
  font-size: 0.8rem;
  border: 1px solid var(--border);
  z-index: 10;
}
.about-badge span { font-size: 1.4rem; }
.about-badge strong { display: block; font-size: 0.82rem; font-weight: 700; }
.about-badge small { color: var(--text-muted); font-size: 0.72rem; }
.ab1 { bottom: -16px; left: -16px; animation: badgeFloat 5s ease-in-out infinite 0.5s; }
.ab2 { top: -16px; right: -16px; animation: badgeFloat 5s ease-in-out infinite 2.5s; }

.about-text h2 {
  font-family: 'Lora', serif;
  font-size: clamp(1.4rem, 2.4vw, 1.9rem);
  margin-bottom: 16px;
  color: var(--text);
  line-height: 1.25;
  letter-spacing: -0.01em;
  overflow-wrap: break-word;
  word-break: break-word;
}
.about-text { min-width: 0; }
.about-text p { color: var(--text-muted); margin-bottom: 20px; font-size: 0.97rem; line-height: 1.8; text-align: left; }
.about-para2 { margin-top: -8px; }

.about-pillars {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.pillar {
  display: flex;
  flex-direction: column;
  gap: 8px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 18px 16px 16px;
  transition: all var(--transition);
}
.pillar:hover {
  border-color: var(--accent);
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
  background: var(--primary-light);
}
.pillar-icon {
  width: 38px; height: 38px;
  background: var(--primary-light);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  flex-shrink: 0;
  transition: all var(--transition);
}
.pillar:hover .pillar-icon { background: var(--primary); color: #fff; }
.pillar-icon svg { width: 18px; height: 18px; }
.pillar strong { font-size: 0.86rem; font-weight: 700; color: var(--text); line-height: 1.3; }
.pillar p { font-size: 0.78rem; color: var(--text-muted); line-height: 1.55; margin: 0; }

/* About credibility strip on visual panel */
.about-credibility-strip {
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 12px 20px;
  display: flex;
  align-items: center;
  gap: 16px;
  box-shadow: var(--shadow-md);
  white-space: nowrap;
  z-index: 10;
}
.cred-item { text-align: center; }
.cred-num { display: block; font-size: 1rem; font-weight: 800; color: var(--primary); line-height: 1.2; }
.cred-lbl { display: block; font-size: 0.65rem; color: var(--text-muted); font-weight: 500; }
.cred-divider { width: 1px; height: 28px; background: var(--border); }

/* About closing */
.about-closing { display: flex; flex-direction: column; gap: 14px; align-items: flex-start; }
.about-closing-line {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--primary);
  font-style: italic;
}

/* ===== SERVICES ===== */
.services {
  padding: 80px 24px;
  background: #fff;
}

.srv-section-sub {
  color: var(--text-muted);
  font-size: 0.9rem;
  max-width: 520px;
  margin: -16px auto 36px;
  line-height: 1.7;
  text-align: center;
}

.srv-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.srv-card {
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: 18px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all var(--transition);
}

.srv-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--accent);
  background: #fff;
}

.srv-img-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 1/1;
  overflow: hidden;
  flex-shrink: 0;
}

.srv-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.srv-card:hover .srv-img { transform: scale(1.04); }

.srv-emoji {
  position: absolute;
  top: 10px;
  left: 10px;
  background: rgba(255,255,255,0.92);
  border-radius: 9px;
  padding: 5px 9px;
  font-size: 1.1rem;
  line-height: 1;
  box-shadow: 0 2px 8px rgba(0,0,0,0.12);
  backdrop-filter: blur(4px);
}

.srv-body {
  padding: 16px 18px 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.srv-body h4 {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1.35;
}

.srv-body p {
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin: 0;
  flex: 1;
}

/* Featured card — full-width horizontal */
.srv-card-featured {
  grid-column: 1 / -1;
  flex-direction: row;
  background: linear-gradient(135deg, #f0faf6 0%, #e6f5ef 100%);
  border-color: rgba(26,122,94,0.3);
  border-width: 1.5px;
}

.srv-card-featured .srv-img-wrap {
  flex: 0 0 42%;
  aspect-ratio: unset;
  min-height: 240px;
}

.srv-card-featured .srv-body {
  padding: 32px 36px;
  justify-content: center;
  gap: 12px;
}

.srv-card-featured .srv-body h4 {
  font-size: 1.05rem;
  color: var(--primary);
}

.srv-card-featured .srv-body p {
  font-size: 0.85rem;
  max-width: 480px;
}

.srv-featured-tag {
  display: inline-block;
  background: var(--primary);
  color: #fff;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 50px;
  width: fit-content;
}

.srv-cta-link {
  display: inline-block;
  color: var(--primary);
  font-size: 0.83rem;
  font-weight: 700;
  margin-top: 4px;
  transition: color var(--transition);
}
.srv-cta-link:hover { color: var(--accent); }

/* Services closing CTA */
.services-closing {
  text-align: center;
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}
.services-closing p {
  font-size: 0.93rem;
  color: var(--text-muted);
  max-width: 480px;
  line-height: 1.7;
}

/* ===== HOW IT WORKS ===== */
.how-it-works {
  padding: 80px 24px;
  background: linear-gradient(135deg, #0e5c46 0%, var(--primary) 60%, #1d8f6d 100%);
  color: #fff;
  position: relative;
  overflow: hidden;
}

.how-pattern {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
}

/* How It Works header */
.how-header {
  text-align: center;
  margin-bottom: 40px;
}
.how-main-title {
  font-family: 'Lora', serif;
  font-size: clamp(1.4rem, 2.4vw, 1.9rem);
  font-weight: 700;
  color: #fff;
  margin-bottom: 12px;
  letter-spacing: -0.01em;
  line-height: 1.25;
}
.how-sub {
  color: rgba(255,255,255,0.72);
  font-size: 0.92rem;
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.7;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.step-card {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 20px;
  overflow: hidden;
  transition: transform 0.32s ease, box-shadow 0.32s ease, background 0.28s ease;
  position: relative;
}
.step-card:hover {
  background: rgba(255,255,255,0.15);
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.28);
}

/* Image area */
.step-img-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 1/1;
  overflow: hidden;
}
.step-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.45s ease;
}
.step-card:hover .step-img { transform: scale(1.06); }

/* Step number badge */
.step-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  width: 38px;
  height: 38px;
  background: var(--accent2);
  color: #fff;
  border-radius: 50%;
  font-size: 1rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(240,165,0,0.55);
  z-index: 2;
}

/* Text body */
.step-body {
  padding: 20px 22px 24px;
}
.step-body h4 {
  font-size: 0.97rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
  line-height: 1.3;
}
.step-body p {
  font-size: 0.83rem;
  color: rgba(255,255,255,0.72);
  line-height: 1.7;
  margin: 0;
}

/* ===== INTERNATIONAL ===== */
.international {
  padding: 80px 24px;
  background: #fff;
}

.intl-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.intl-text h2 {
  font-family: 'Lora', serif;
  font-size: clamp(1.4rem, 2.4vw, 1.9rem);
  margin-bottom: 12px;
  color: var(--text);
  line-height: 1.25;
  letter-spacing: -0.01em;
}
.intl-text > p { color: var(--text-muted); margin-bottom: 24px; font-size: 0.9rem; line-height: 1.7; }

/* Intl Accordion */
.intl-accordion {
  display: flex;
  flex-direction: column;
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 2px 16px rgba(26,122,94,0.07);
}

.intl-item {
  border-bottom: 1px solid var(--border);
}
.intl-item:last-child { border-bottom: none; }

.intl-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 17px 20px;
  background: #fff;
  border: none;
  cursor: pointer;
  text-align: left;
  gap: 12px;
  transition: background 0.22s ease;
}
.intl-trigger:hover { background: var(--primary-light); }
.intl-item.open .intl-trigger { background: var(--primary-light); }

.intl-trigger-left {
  display: flex;
  align-items: center;
  gap: 13px;
  flex: 1;
}

.intl-check-dot {
  width: 9px;
  height: 9px;
  background: var(--primary);
  border-radius: 50%;
  flex-shrink: 0;
  box-shadow: 0 0 0 3px rgba(26,122,94,0.18);
}

.intl-trigger-title {
  font-size: 0.93rem;
  font-weight: 600;
  color: var(--text);
  line-height: 1.3;
}

.intl-plus-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1.5px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--primary);
  flex-shrink: 0;
  transition: transform 0.3s ease, background 0.22s ease, border-color 0.22s ease;
  line-height: 1;
  background: transparent;
}
.intl-item.open .intl-plus-icon {
  transform: rotate(45deg);
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
}

.intl-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.38s cubic-bezier(0.4,0,0.2,1);
}
.intl-panel-inner {
  padding: 14px 20px 18px 42px;
  background: var(--bg-soft);
  border-left: 3px solid var(--accent);
}
.intl-item.open .intl-panel { max-height: 160px; }
.intl-panel p {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin: 0;
}

/* Intl image */
.intl-support-img {
  width: 100%;
  height: 100%;
  min-height: 400px;
  object-fit: cover;
  border-radius: 24px;
  display: block;
  box-shadow: 0 16px 56px rgba(26,122,94,0.18);
}

/* ===== WHY CHOOSE ===== */
.why-choose {
  padding: 80px 24px;
  background: var(--bg-soft);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.why-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px 22px 28px;
  text-align: left;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.why-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}
.why-card:hover { border-color: transparent; box-shadow: var(--shadow-lg); transform: translateY(-6px); }
.why-card:hover::before { transform: scaleX(1); }

.w-icon-wrap {
  width: 68px; height: 68px;
  border-radius: 50%;
  background: var(--primary-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  transition: all var(--transition);
}
.why-card:hover .w-icon-wrap { background: var(--primary); transform: scale(1.1) rotate(-5deg); }
.w-icon { font-size: 2rem; }

/* Why-card image variant */
.w-img-wrap {
  width: 100%;
  aspect-ratio: 1/1;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 20px;
}
.w-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.why-card:hover .w-card-img { transform: scale(1.05); }

.why-card h4 { font-size: 0.97rem; font-weight: 700; margin-bottom: 10px; color: var(--text); text-align: left; }
.why-card p { font-size: 0.83rem; color: var(--text-muted); line-height: 1.7; text-align: left; }

/* ===== TESTIMONIALS ===== */
.testimonials {
  padding: 80px 24px;
  background: linear-gradient(135deg, #f7fdfb 0%, #eef8f4 100%);
  position: relative;
  overflow: hidden;
}
.testimonials::before {
  content: '"';
  position: absolute;
  top: -20px; left: 50%;
  transform: translateX(-50%);
  font-family: 'Lora', serif;
  font-size: 18rem;
  color: var(--primary-light);
  line-height: 1;
  pointer-events: none;
  z-index: 0;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  position: relative;
  z-index: 1;
}

.testimonial-card {
  background: #fff;
  border-radius: 20px;
  padding: 26px 24px;
  box-shadow: 0 4px 28px rgba(26,122,94,0.08);
  border: 1px solid var(--border);
  position: relative;
  transition: all 0.3s cubic-bezier(.4,0,.2,1);
  transform-style: preserve-3d;
}
.testimonial-card:hover {
  box-shadow: 0 20px 56px rgba(26,122,94,0.15);
  border-color: rgba(46,184,127,0.3);
}

.quote-mark {
  font-family: 'Lora', serif;
  font-size: 4.5rem;
  line-height: 1;
  color: var(--primary-light);
  display: block;
  margin-bottom: -18px;
  margin-left: -6px;
  user-select: none;
}

.stars {
  color: var(--accent2);
  font-size: 1rem;
  margin-bottom: 14px;
  letter-spacing: 3px;
}

.testi-text {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.78;
  margin-bottom: 24px;
  font-style: italic;
}

.patient-info {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}

.patient-avatar {
  width: 46px; height: 46px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.85rem;
  color: #fff;
  flex-shrink: 0;
}
.av1 { background: linear-gradient(135deg, #1a7a5e, #2eb87f); }
.av2 { background: linear-gradient(135deg, #6b4f9e, #a070cc); }
.av3 { background: linear-gradient(135deg, #d4640a, #f0a500); }

.patient-details strong { display: block; font-size: 0.9rem; color: var(--text); margin-bottom: 2px; font-weight: 700; }
.patient-details span { font-size: 0.76rem; color: var(--text-muted); }

/* ===== FAQ ===== */
.faq {
  padding: 80px 24px;
  background: #fff;
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all var(--transition);
}
.faq-item.open { box-shadow: var(--shadow-md); border-color: var(--accent); }

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 26px;
  background: var(--bg-soft);
  border: none;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  font-size: 0.97rem;
  font-weight: 600;
  color: var(--text);
  text-align: left;
  gap: 14px;
  transition: background var(--transition);
}
.faq-item.open .faq-question { background: var(--primary-light); color: var(--primary); }
.faq-question:hover { background: var(--primary-light); }

.faq-icon {
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--primary);
  flex-shrink: 0;
  transition: transform 0.35s cubic-bezier(.4,0,.2,1);
  display: inline-block;
  width: 28px; height: 28px;
  background: var(--primary-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
}
.faq-item.open .faq-icon { transform: rotate(45deg); background: var(--primary); color: #fff; }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.42s ease, padding 0.3s ease;
  padding: 0 26px;
  background: #fff;
}
.faq-answer p { font-size: 0.92rem; color: var(--text-muted); line-height: 1.78; }
.faq-item.open .faq-answer { max-height: 220px; padding: 18px 26px 22px; }

/* FAQ Show More */
.faq-list-more {
  display: none;
  margin-top: 0;
}
.faq-list-more.visible {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 12px;
}

.faq-toggle-wrap {
  text-align: center;
  margin-top: 28px;
}
.faq-toggle-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 28px;
  background: transparent;
  border: 2px solid var(--primary);
  color: var(--primary);
  border-radius: 50px;
  font-size: 0.92rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition);
}
.faq-toggle-btn:hover {
  background: var(--primary);
  color: #fff;
}
.faq-toggle-icon {
  font-size: 1rem;
  transition: transform 0.3s ease;
  display: inline-block;
}
.faq-toggle-btn.open .faq-toggle-icon {
  transform: rotate(180deg);
}

/* ===== CTA BANNER ===== */
.cta-banner {
  background: linear-gradient(135deg, #0e5c46 0%, var(--primary) 60%, #1d8f6d 100%);
  padding: 72px 24px;
  position: relative;
  overflow: hidden;
}
.cta-particles {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.05) 1px, transparent 1px);
  background-size: 50px 50px;
}
.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}
.cta-banner h2 {
  font-family: 'Lora', serif;
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  color: #fff;
  margin-bottom: 8px;
}
.cta-banner p { color: rgba(255,255,255,0.78); font-size: 0.97rem; }

.cta-actions { display: flex; gap: 14px; flex-wrap: wrap; }

.btn-cta-white {
  display: inline-block;
  background: #fff;
  color: var(--primary);
  padding: 14px 30px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.97rem;
  transition: all var(--transition);
  box-shadow: 0 4px 20px rgba(0,0,0,0.2);
  white-space: nowrap;
}
.btn-cta-white:hover { background: var(--bg-soft); transform: translateY(-2px); box-shadow: 0 10px 32px rgba(0,0,0,0.25); }

.btn-cta-outline {
  display: inline-block;
  background: transparent;
  color: #fff;
  padding: 13px 28px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.97rem;
  border: 2px solid rgba(255,255,255,0.5);
  transition: all var(--transition);
  white-space: nowrap;
}
.btn-cta-outline:hover { background: rgba(255,255,255,0.15); border-color: #fff; }

/* ===== CONTACT ===== */
.contact-section {
  padding: 80px 24px;
  background: var(--bg-soft);
}

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

.contact-info h3 {
  font-family: 'Lora', serif;
  font-size: 1.9rem;
  margin-bottom: 12px;
  color: var(--text);
}
.contact-info > p { color: var(--text-muted); margin-bottom: 32px; font-size: 0.97rem; }

.contact-details { display: flex; flex-direction: column; gap: 18px; }
.contact-row {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 16px;
  background: #fff;
  border-radius: 12px;
  border: 1px solid var(--border);
  transition: all var(--transition);
}
.contact-row:hover { border-color: var(--accent); box-shadow: var(--shadow); }
.contact-row-icon { font-size: 1.4rem; flex-shrink: 0; margin-top: 2px; }
.contact-row strong { font-size: 0.88rem; font-weight: 700; display: block; margin-bottom: 2px; }
.contact-row p { font-size: 0.84rem; color: var(--text-muted); }

.contact-form-wrap {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 40px 36px;
  box-shadow: var(--shadow-md);
}
.contact-form h3 {
  font-family: 'Lora', serif;
  font-size: 1.55rem;
  margin-bottom: 26px;
  color: var(--text);
}

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

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 14px;
}
.form-row > .form-group { margin-bottom: 0; }

.form-group label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text);
  letter-spacing: 0.02em;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  color: var(--text);
  background: var(--bg-soft);
  transition: all var(--transition);
  outline: none;
  appearance: none;
  -webkit-appearance: none;
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(26,122,94,0.1);
  background: #fff;
}
.contact-form textarea { resize: vertical; min-height: 100px; }
.contact-form .btn-primary { width: 100%; padding: 14px; font-size: 1rem; border-radius: 10px; margin-top: 6px; }

.form-success {
  display: none;
  margin-top: 16px;
  padding: 14px 18px;
  background: var(--primary-light);
  border: 1px solid var(--accent);
  border-radius: 10px;
  color: var(--primary);
  font-size: 0.9rem;
  font-weight: 600;
  animation: fadeUp 0.4s ease;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--text);
  color: rgba(255,255,255,0.78);
  padding: 72px 24px 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 52px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-brand .logo { color: #fff; margin-bottom: 16px; }
.footer-brand p { font-size: 0.87rem; opacity: 0.65; line-height: 1.75; margin-bottom: 22px; }

.social-links { display: flex; gap: 10px; }
.social-link {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  transition: all var(--transition);
  border: 1px solid rgba(255,255,255,0.1);
}
.social-link:hover { background: var(--primary); transform: translateY(-3px); border-color: var(--primary); }

.footer-col h5 {
  font-size: 0.84rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #fff;
  margin-bottom: 18px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li { font-size: 0.84rem; opacity: 0.65; transition: opacity var(--transition); }
.footer-col ul li a:hover, .footer-col ul li:hover { opacity: 1; }
.footer-col ul li a { transition: color var(--transition); }
.footer-col ul li a:hover { color: var(--accent); }

.footer-bottom {
  padding: 22px 0;
  text-align: center;
  font-size: 0.8rem;
  opacity: 0.45;
}
.footer-bottom a { color: inherit; }
.footer-bottom a:hover { opacity: 0.8; }

/* ===== FLOATING BUTTONS ===== */
.whatsapp-float {
  position: fixed;
  bottom: 86px;
  right: 22px;
  width: 54px; height: 54px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 28px rgba(37,211,102,0.45);
  z-index: 998;
  transition: all var(--transition);
  color: #fff;
}
.whatsapp-float svg {
  fill: #fff;
  width: 28px;
  height: 28px;
  display: block;
  flex-shrink: 0;
}
.whatsapp-float:hover {
  transform: scale(1.12) translateY(-2px);
  box-shadow: 0 12px 36px rgba(37,211,102,0.55);
}
.wa-tooltip {
  position: absolute;
  right: calc(100% + 12px);
  background: #1c2b2b;
  color: #fff;
  font-size: 0.74rem;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 8px;
  white-space: nowrap;
  opacity: 0;
  transform: translateX(8px);
  transition: all var(--transition);
  pointer-events: none;
}
.wa-tooltip::after {
  content: '';
  position: absolute;
  top: 50%; right: -6px;
  transform: translateY(-50%);
  border: 4px solid transparent;
  border-left-color: #1c2b2b;
}
.whatsapp-float:hover .wa-tooltip { opacity: 1; transform: translateX(0); }

.back-to-top {
  position: fixed;
  bottom: 22px; right: 22px;
  width: 44px; height: 44px;
  background: var(--primary);
  color: #fff;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.15rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 18px rgba(26,122,94,0.4);
  z-index: 998;
  opacity: 0;
  transform: translateY(14px) scale(0.9);
  transition: all var(--transition);
  pointer-events: none;
}
.back-to-top.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}
.back-to-top:hover {
  background: var(--primary-dark);
  transform: translateY(-3px) scale(1.08);
  box-shadow: 0 10px 28px rgba(26,122,94,0.5);
}

/* ===== REVEAL ANIMATIONS ===== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.62s ease, transform 0.62s ease;
  transition-delay: var(--delay, 0s);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== HERO ANIMATIONS ===== */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; transform: scale(0.96); }
  to { opacity: 1; transform: scale(1); }
}

/* ===== SPECIALITIES ===== */
.specialities {
  padding: 80px 24px;
  background: var(--text);
}
.specialities .section-label { color: var(--accent); }
.specialities .section-title {
  color: #fff;
  margin-bottom: 16px;
}
.spec-sub {
  color: rgba(255,255,255,0.72);
  max-width: 560px;
  margin: 0 auto 40px;
  font-size: 0.92rem;
  line-height: 1.7;
  text-align: center;
}

.spec-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.spec-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 1/1;
  box-shadow: 0 6px 32px rgba(0,0,0,0.28);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  cursor: default;
}
.spec-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 20px 56px rgba(0,0,0,0.40);
}

.spec-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.spec-card:hover .spec-img {
  transform: scale(1.07);
}

.spec-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(10,50,35,0.95) 0%,
    rgba(10,50,35,0.55) 45%,
    transparent 100%
  );
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px 20px 22px;
  transition: background 0.35s ease;
}
.spec-card:hover .spec-overlay {
  background: linear-gradient(
    to top,
    rgba(10,50,35,0.98) 0%,
    rgba(10,50,35,0.72) 55%,
    transparent 100%
  );
}

.spec-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: #fff;
  margin: 0 0 6px;
  letter-spacing: -0.01em;
  overflow-wrap: break-word;
  word-break: break-word;
}
.spec-desc {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.85);
  line-height: 1.55;
  margin: 0;
  transform: translateY(4px);
  opacity: 0.9;
  transition: opacity 0.3s ease, transform 0.3s ease;
  overflow-wrap: break-word;
  word-break: break-word;
}
.spec-card:hover .spec-desc {
  opacity: 1;
  transform: translateY(0);
}

/* ===== RESPONSIVE ===== */

/* Large tablet */
@media (max-width: 1100px) {
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .hero-visual { flex: 1 1 420px; max-width: 480px; }
}

@media (max-width: 960px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .srv-grid { grid-template-columns: repeat(2, 1fr); }
  .spec-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .srv-card-featured { flex-direction: column; }
  .srv-card-featured .srv-img-wrap { flex: none; aspect-ratio: 16/9; min-height: unset; }
  .hero-visual { flex: 1 1 360px; max-width: 420px; }
}

/* Tablet / mobile nav breakpoint */
@media (max-width: 820px) {
  :root { --nav-h: 64px; }

  .hamburger { display: flex; }

  .nav-links {
    position: fixed;
    top: var(--nav-h); left: 0; right: 0;
    background: #fff;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px 0 20px;
    border-bottom: 1px solid var(--border);
    transform: translateY(-110%);
    opacity: 0;
    transition: transform 0.35s cubic-bezier(.4,0,.2,1), opacity 0.3s ease;
    box-shadow: 0 8px 36px rgba(0,0,0,0.12);
    z-index: 999;
  }
  .nav-links.open { transform: translateY(0); opacity: 1; }
  .nav-links a {
    padding: 13px 24px;
    font-size: 0.95rem;
    border-radius: 0;
    border-bottom: 1px solid var(--border);
  }
  .nav-links a:last-child { border-bottom: none; }
  .btn-nav {
    margin: 14px 20px 0 !important;
    text-align: center !important;
    border-radius: 10px !important;
  }

  /* Hero stacks vertically on mobile */
  .hero {
    padding: calc(var(--nav-h) + 32px) 20px 48px;
    min-height: auto;
    overflow: hidden;
  }
  .hero-inner {
    flex-direction: column;
    text-align: center;
    gap: 28px;
  }
  .hero-content { max-width: 100%; order: 2; }
  .hero-visual {
    flex: none;
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    order: 1;
  }
  .hero-img {
    border-radius: 18px;
  }
  /* On mobile, push badges inside the card — no negative overflow */
  .badge-tl { left: 8px; top: 8px; animation: none; }
  .badge-br { right: 8px; bottom: 8px; animation: none; }
  .float-badge { min-width: 120px; padding: 8px 12px; box-shadow: 0 4px 16px rgba(26,122,94,0.15); }
  .hero-sub { margin: 0 auto 28px; font-size: 0.95rem; }
  .hero-btns { justify-content: center; }
  /* Hide trust stats on mobile — they appear in the stats section below */
  .hero-trust { display: none; }
  .hero-scroll-hint { display: none; }

  .about-grid { grid-template-columns: 1fr; gap: 44px; }
  .intl-grid { grid-template-columns: 1fr; gap: 44px; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .form-row { grid-template-columns: 1fr; }
  .contact-form-wrap { padding: 28px 22px; }

  .srv-grid { grid-template-columns: repeat(2, 1fr); }
  .srv-card-featured { flex-direction: column; }
  .srv-card-featured .srv-img-wrap { flex: none; aspect-ratio: 16/9; min-height: unset; }
  .srv-card-featured .srv-body { padding: 22px; }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: 1fr; }
  .about-pillars { grid-template-columns: 1fr 1fr; }
  .about-credibility-strip { position: static; transform: none; margin-top: 20px; width: 100%; justify-content: center; }
  .cta-inner { flex-direction: column; text-align: center; }
  .cta-actions { justify-content: center; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}

/* Mobile */
@media (max-width: 540px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .srv-grid { grid-template-columns: 1fr; }
  .spec-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .spec-card { aspect-ratio: 2/3; }
  .spec-overlay { padding: 18px 14px 16px; }
  .spec-title { font-size: 0.78rem; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
  .spec-desc { font-size: 0.7rem; line-height: 1.45; }
  .about-pillars { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .about-credibility-strip { position: static; transform: none; margin-top: 20px; width: 100%; justify-content: center; }
  /* On very small screens, hide badges to guarantee no horizontal overflow */
  .float-badge { display: none; }
  .contact-form-wrap { padding: 20px 14px; }
  .stat-number { font-size: 1.9rem; }
  .hero-content h1 { font-size: clamp(1.7rem, 6.5vw, 2.3rem); }
  .hero { padding: calc(var(--nav-h) + 24px) 16px 40px; }
  .whatsapp-float { bottom: 76px; right: 14px; width: 48px; height: 48px; }
  .whatsapp-float svg { width: 24px; height: 24px; }
  .back-to-top { bottom: 14px; right: 14px; width: 40px; height: 40px; font-size: 1rem; }
}

@media (max-width: 380px) {
  .hero-content h1 { font-size: 1.85rem; }
  .stats-grid { grid-template-columns: 1fr; gap: 10px; }
  .stat-item { padding: 24px 16px; }
}

/* Hero break — mobile only */
.hero-br-mobile { display: none; }
@media (max-width: 820px) { .hero-br-mobile { display: block; } }

/* ===== HERO MICROCOPY ===== */
.hero-microcopy {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-top: -28px;
  margin-bottom: 36px;
  letter-spacing: 0.02em;
  animation: fadeUp 0.9s 0.32s ease both;
}

/* ===== TRUST STRIP ===== */
.trust-strip {
  background: var(--bg-soft);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 52px 24px;
}
.trust-strip-inner {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}
.trust-strip h3 {
  font-family: 'Lora', serif;
  font-size: clamp(1.25rem, 2.5vw, 1.65rem);
  color: var(--primary);
  margin-bottom: 14px;
}
.trust-strip p {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.8;
  max-width: 640px;
  margin: 0 auto;
}

.how-cta {
  text-align: center;
  margin-top: 36px;
}

/* ===== CTA REASSURANCE ===== */
.cta-reassurance {
  margin-top: 10px;
  font-size: 0.82rem !important;
  color: rgba(255,255,255,0.55) !important;
  letter-spacing: 0.03em;
}

@media (max-width: 520px) {
  .trust-strip { padding: 36px 16px; }
}
