@import url('https://fonts.googleapis.com/css2?family=Syne:wght@400;600;700;800&family=DM+Sans:ital,wght@0,300;0,400;0,500;0,600;1,400&display=swap');

:root {
  --teal: #1B8F85;
  --teal-dark: #136b63;
  --teal-light: #e8f5f4;
  --lime: #8BD80A;
  --lime-dark: #6db000;
  --white: #ffffff;
  --off-white: #f8faf9;
  --light-grey: #f2f4f3;
  --mid-grey: #e0e4e3;
  --text-dark: #0d1f1e;
  --text-mid: #3a4f4d;
  --text-light: #6b8280;
  --gradient: linear-gradient(135deg, #1B8F85 0%, #136b63 100%);
  --gradient-lime: linear-gradient(135deg, #8BD80A 0%, #6db000 100%);
  --shadow-sm: 0 2px 12px rgba(27,143,133,0.08);
  --shadow-md: 0 8px 32px rgba(27,143,133,0.12);
  --shadow-lg: 0 24px 64px rgba(27,143,133,0.18);
  --radius: 16px;
  --radius-sm: 8px;
  --radius-full: 100px;
}

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

html { scroll-behavior: smooth; font-size: 16px; }

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

h1, h2, h3, h4, h5 {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  line-height: 1.15;
  color: var(--text-dark);
}

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

/* ─── UTILITY ─────────────────────────────── */
.container { max-width: 1160px; margin: 0 auto; padding: 0 24px; }
.section-tag {
  display: inline-block;
  background: var(--teal-light);
  color: var(--teal);
  font-family: 'Syne', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: var(--radius-full);
  margin-bottom: 18px;
}
.section-title { font-size: clamp(28px, 4vw, 42px); margin-bottom: 16px; }
.section-sub { font-size: 17px; color: var(--text-mid); max-width: 560px; line-height: 1.7; }
.text-center { text-align: center; }
.text-center .section-sub { margin: 0 auto; }

/* ─── BUTTONS ─────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius-full);
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: all 0.28s cubic-bezier(0.34,1.56,0.64,1);
  white-space: nowrap;
}
.btn-primary {
  background: var(--gradient);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(27,143,133,0.35);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(27,143,133,0.45); }
.btn-lime {
  background: var(--lime);
  color: var(--text-dark);
  box-shadow: 0 4px 20px rgba(139,216,10,0.35);
}
.btn-lime:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(139,216,10,0.45); background: var(--lime-dark); }
.btn-outline {
  background: transparent;
  color: var(--teal);
  border: 2px solid var(--teal);
}
.btn-outline:hover { background: var(--teal); color: var(--white); transform: translateY(-2px); }
.btn-white {
  background: var(--white);
  color: var(--teal);
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}
.btn-white:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(0,0,0,0.15); }
.btn-lg { padding: 18px 36px; font-size: 16px; }
.btn-sm { padding: 10px 20px; font-size: 14px; }

/* ─── NAVBAR ──────────────────────────────── */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--mid-grey);
  transition: box-shadow 0.3s;
}
.navbar.scrolled { box-shadow: var(--shadow-md); }
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.logo {
  font-family: 'Syne', sans-serif;
  font-size: 24px;
  font-weight: 800;
  color: var(--text-dark);
  display: flex;
  align-items: center;
  gap: 4px;
}
.logo span { color: var(--teal); }
.logo-dot { color: var(--lime); font-size: 28px; line-height: 1; }

/* ─── LOGO IMAGE ──────────────────────────────── */
.logo-img-link {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  text-decoration: none;
}
.logo-img {
  height: 42px;
  width: auto;
  max-width: 210px;
  display: block;
  object-fit: contain;
  object-position: left center;
  transition: opacity 0.2s;
}
.logo-img:hover { opacity: 0.82; }
/* Footer version — white on dark */
.logo-img-footer {
  height: 38px;
  filter: brightness(0) invert(1);
}
.nav-links { display: flex; align-items: center; gap: 36px; }
.nav-links a {
  font-size: 15px;
  font-weight: 500;
  color: var(--text-mid);
  transition: color 0.2s;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 2px;
  background: var(--teal);
  transition: width 0.3s;
  border-radius: 2px;
}
.nav-links a:hover { color: var(--teal); }
.nav-links a:hover::after { width: 100%; }
.nav-links a.active { color: var(--teal); }
.nav-links a.active::after { width: 100%; }
.nav-cta { display: flex; align-items: center; gap: 12px; }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 8px; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--text-dark); border-radius: 2px; transition: all 0.3s; }
.mobile-menu {
  display: none;
  position: fixed;
  top: 72px; left: 0; right: 0;
  background: var(--white);
  border-bottom: 1px solid var(--mid-grey);
  padding: 24px;
  z-index: 999;
  flex-direction: column;
  gap: 20px;
  box-shadow: var(--shadow-md);
}
.mobile-menu a { font-size: 17px; font-weight: 500; color: var(--text-dark); padding: 8px 0; border-bottom: 1px solid var(--mid-grey); }
.mobile-menu.open { display: flex; }

/* ─── HERO ────────────────────────────────── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
  position: relative;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 60% at 100% 50%, rgba(27,143,133,0.07) 0%, transparent 70%),
              radial-gradient(ellipse 40% 40% at 10% 80%, rgba(139,216,10,0.06) 0%, transparent 60%);
  pointer-events: none;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--teal-light);
  color: var(--teal);
  font-size: 13px;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: var(--radius-full);
  margin-bottom: 24px;
}
.hero-badge-dot { width: 8px; height: 8px; background: var(--lime); border-radius: 50%; animation: pulse-dot 2s infinite; }
@keyframes pulse-dot { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:0.6;transform:scale(1.3)} }
.hero h1 {
  font-size: clamp(36px, 5.5vw, 62px);
  line-height: 1.08;
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}
.hero h1 .highlight {
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-sub {
  font-size: 18px;
  color: var(--text-mid);
  line-height: 1.7;
  margin-bottom: 40px;
  max-width: 480px;
}
.hero-ctas { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.hero-stats { display: flex; gap: 36px; margin-top: 48px; flex-wrap: wrap; }
.hero-stat-num {
  font-family: 'Syne', sans-serif;
  font-size: 28px;
  font-weight: 800;
  color: var(--teal);
}
.hero-stat-label { font-size: 13px; color: var(--text-light); font-weight: 500; }

/* Hero Animation */
.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-anim-wrap {
  width: 100%;
  max-width: 520px;
  aspect-ratio: 1/1;
  position: relative;
}
.anim-card {
  position: absolute;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  padding: 16px;
  animation: float-card 6s ease-in-out infinite;
}
.anim-card:nth-child(1) { top:4%; left:8%; width:54%; animation-delay:0s; }
.anim-card:nth-child(2) { top:24%; right:2%; width:42%; animation-delay:1.5s; }
.anim-card:nth-child(3) { bottom:18%; left:2%; width:38%; animation-delay:0.8s; }
.anim-card:nth-child(4) { bottom:4%; right:8%; width:48%; animation-delay:2.2s; }
@keyframes float-card {
  0%,100%{transform:translateY(0px)}
  50%{transform:translateY(-12px)}
}
.anim-browser { border-radius: 12px; overflow: hidden; }
.anim-browser-bar { background: #f0f0f0; padding: 8px 12px; display:flex; gap:6px; align-items:center; }
.anim-browser-dot { width:8px; height:8px; border-radius:50%; }
.anim-browser-dot:nth-child(1){background:#ff5f57}
.anim-browser-dot:nth-child(2){background:#febc2e}
.anim-browser-dot:nth-child(3){background:#28c840}
.anim-browser-content { background: var(--light-grey); padding: 12px; }
.anim-wire { height: 8px; background: var(--mid-grey); border-radius: 4px; margin-bottom: 6px; }
.anim-wire.short { width: 60%; }
.anim-wire.shorter { width: 40%; }
.anim-logo-demo { display: flex; align-items: center; gap: 10px; }
.anim-logo-icon { width: 36px; height: 36px; background: var(--gradient); border-radius: 8px; display:flex; align-items:center; justify-content:center; }
.anim-logo-text { display:flex; flex-direction:column; gap:4px; }
.anim-social-grid { display: grid; grid-template-columns:1fr 1fr; gap: 6px; }
.anim-social-post { border-radius: 8px; aspect-ratio:1/1; }
.anim-ui { display:flex; flex-direction:column; gap:8px; }
.anim-ui-btn { height:28px; background: var(--gradient); border-radius:6px; }
.anim-ui-inputs { display:flex; flex-direction:column; gap:4px; }
.anim-ui-input { height:18px; background:var(--mid-grey); border-radius:4px; }

/* ─── SERVICES ────────────────────────────── */
.services { padding: 100px 0; background: var(--off-white); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 56px;
}
.service-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px 28px;
  border: 1px solid var(--mid-grey);
  transition: all 0.3s cubic-bezier(0.34,1.56,0.64,1);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gradient);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}
.service-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); border-color: transparent; }
.service-card:hover::before { transform: scaleX(1); }
.service-icon {
  width: 56px; height: 56px;
  background: var(--teal-light);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 24px;
  font-size: 24px;
  transition: background 0.3s;
}
.service-card:hover .service-icon { background: var(--gradient); }
.service-card h3 { font-size: 19px; margin-bottom: 12px; }
.service-card p { font-size: 15px; color: var(--text-mid); line-height: 1.65; }

/* ─── PROCESS ─────────────────────────────── */
.process { padding: 100px 0; }
.process-steps {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 0;
  margin-top: 56px;
  position: relative;
}
.process-steps::before {
  content:'';
  position:absolute;
  top: 40px; left: 15%; right: 15%;
  height: 2px;
  background: linear-gradient(90deg, var(--teal), var(--lime));
  z-index: 0;
}
.process-step {
  text-align: center;
  padding: 0 20px;
  position: relative;
  z-index: 1;
}
.step-num {
  width: 80px; height: 80px;
  background: var(--gradient);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Syne', sans-serif;
  font-size: 24px;
  font-weight: 800;
  color: var(--white);
  margin: 0 auto 24px;
  box-shadow: 0 8px 24px rgba(27,143,133,0.3);
  position: relative;
}
.process-step h3 { font-size: 18px; margin-bottom: 10px; }
.process-step p { font-size: 14px; color: var(--text-mid); }

/* ─── FORMS (Lead Capture) ─────────────────── */
.lead-section { padding: 100px 0; background: var(--light-grey); }
.audit-section { padding: 100px 0; background: var(--white); }
.form-wrapper {
  background: var(--white);
  border-radius: 24px;
  padding: 48px;
  box-shadow: var(--shadow-lg);
  max-width: 680px;
  margin: 0 auto;
}
.form-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { display: flex; flex-direction: column; gap: 8px; margin-bottom: 20px; }
.form-group label { font-size: 14px; font-weight: 600; color: var(--text-dark); }
.form-group input,
.form-group select,
.form-group textarea {
  padding: 14px 18px;
  border: 1.5px solid var(--mid-grey);
  border-radius: var(--radius-sm);
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  color: var(--text-dark);
  background: var(--off-white);
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
  width: 100%;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(27,143,133,0.1);
  background: var(--white);
}
.form-group textarea { resize: vertical; min-height: 100px; }
.form-success {
  display: none;
  text-align: center;
  padding: 32px;
  color: var(--teal);
}
.form-success-icon { font-size: 48px; margin-bottom: 16px; }
.form-success h3 { font-size: 22px; margin-bottom: 8px; }
.form-success p { color: var(--text-mid); }
.form-title { font-size: 28px; margin-bottom: 8px; }
.form-sub { font-size: 15px; color: var(--text-mid); margin-bottom: 32px; }

/* ─── FINAL CTA ───────────────────────────── */
.final-cta {
  padding: 100px 0;
  background: var(--gradient);
  position: relative;
  overflow: hidden;
  text-align: center;
}
.final-cta::before {
  content:'';
  position:absolute;
  width: 600px; height: 600px;
  background: rgba(255,255,255,0.05);
  border-radius: 50%;
  top: -300px; right: -200px;
}
.final-cta::after {
  content:'';
  position:absolute;
  width: 400px; height: 400px;
  background: rgba(139,216,10,0.1);
  border-radius: 50%;
  bottom: -200px; left: -100px;
}
.final-cta h2 { color: var(--white); font-size: clamp(28px,4vw,46px); margin-bottom: 16px; position:relative; z-index:1; }
.final-cta p { color: rgba(255,255,255,0.8); font-size: 18px; margin-bottom: 36px; position:relative; z-index:1; }
.final-cta-btns { display:flex; gap:16px; justify-content:center; flex-wrap:wrap; position:relative; z-index:1; }

/* ─── ABOUT PAGE ──────────────────────────── */
.about-hero {
  padding: 160px 0 80px;
  background: var(--off-white);
  text-align: center;
}
.about-hero h1 { font-size: clamp(36px,5vw,56px); margin-bottom: 20px; }
.about-hero p { font-size: 18px; color: var(--text-mid); max-width: 580px; margin: 0 auto; }
.founders-section { padding: 100px 0; }
.founders-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; margin-top: 56px; }
.founder-card {
  background: var(--white);
  border-radius: 24px;
  padding: 48px 36px 40px;
  border: 1.5px solid var(--mid-grey);
  position: relative;
  overflow: visible;
  transition: all 0.35s ease;
  text-align: center;
}
.founder-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); border-color: var(--teal); }

/* Teal gradient bar at top */
.founder-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--gradient);
  border-radius: 24px 24px 0 0;
}

/* ── Circular photo frame with teal ring ── */
.founder-photo-wrap {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  margin: 0 auto 28px;
  position: relative;
  /* White gap then solid teal ring then soft outer glow */
  box-shadow:
    0 0 0 4px var(--white),
    0 0 0 8px var(--teal),
    0 0 0 14px rgba(27,143,133,0.18),
    0 8px 28px rgba(27,143,133,0.25);
  flex-shrink: 0;
  overflow: hidden;  /* keep photo clipped to circle */
}

/* Animated dashed lime ring appears on hover */
.founder-photo-wrap::before {
  content: '';
  position: absolute;
  inset: -18px;
  border-radius: 50%;
  border: 2px dashed var(--lime);
  opacity: 0;
  transition: opacity 0.4s ease;
  animation: spin-ring 7s linear infinite;
  z-index: 2;
  pointer-events: none;
}
.founder-card:hover .founder-photo-wrap::before { opacity: 1; }
@keyframes spin-ring {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

.founder-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  border-radius: 50%;
  display: block;
  transition: transform 0.5s ease;
}
.founder-card:hover .founder-photo { transform: scale(1.07); }

.founder-card-body { }
.founder-card h3 { font-size: 22px; margin-bottom: 6px; }
.founder-role {
  color: var(--teal);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 16px;
  display: block;
}
.founder-card p { color: var(--text-mid); line-height: 1.75; font-size: 15px; }
.story-section { padding: 100px 0; background: var(--off-white); }
.story-inner { max-width: 760px; margin: 0 auto; }
.story-inner p { font-size: 17px; color: var(--text-mid); line-height: 1.8; margin-bottom: 20px; }
.story-inner h2 { font-size: clamp(26px,4vw,38px); margin-bottom: 32px; }
.values-section { padding: 100px 0; }
.values-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; margin-top: 56px; }
.value-card {
  padding: 36px 28px;
  border: 1.5px solid var(--mid-grey);
  border-radius: var(--radius);
  transition: all 0.3s ease;
}
.value-card:hover { border-color: var(--teal); box-shadow: var(--shadow-md); }
.value-icon { font-size: 32px; margin-bottom: 16px; }
.value-card h3 { font-size: 19px; margin-bottom: 10px; }
.value-card p { color: var(--text-mid); font-size: 15px; }

/* ─── SERVICES PAGE ───────────────────────── */
.services-hero {
  padding: 160px 0 80px;
  background: var(--off-white);
  text-align: center;
}
.service-detail {
  padding: 80px 0;
  border-bottom: 1px solid var(--mid-grey);
}
.service-detail:nth-child(even) { background: var(--off-white); }
.service-detail-inner {
  display: flex;
  flex-direction: row;
  gap: 64px;
  align-items: center;
}
.service-detail-inner > * { flex: 1; min-width: 0; }
.service-detail:nth-child(even) .service-detail-inner {
  flex-direction: row-reverse;
}
.service-detail:nth-child(even) .service-detail-inner > * { direction: ltr; }
.service-detail-tag { margin-bottom: 12px; }
.service-detail h2 { font-size: clamp(26px,3.5vw,38px); margin-bottom: 16px; }
.service-detail p { font-size: 16px; color: var(--text-mid); margin-bottom: 24px; line-height: 1.7; }
.benefit-list { margin-bottom: 32px; }
.benefit-item { display: flex; align-items: flex-start; gap: 12px; margin-bottom: 12px; font-size: 15px; }
.benefit-check {
  width: 22px; height: 22px;
  background: var(--teal-light);
  color: var(--teal);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 12px;
  flex-shrink: 0;
  margin-top: 2px;
}
.service-visual {
  background: var(--light-grey);
  border-radius: 24px;
  height: 320px;
  display: flex; align-items: center; justify-content: center;
  font-size: 80px;
  position: relative;
  overflow: hidden;
}
.service-visual::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(27,143,133,0.08) 0%, transparent 70%);
}

/* ─── SERVICE PHOTO (real images) ────────────── */
.service-visual-img {
  border-radius: 24px;
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow-lg);
  /* Subtle teal border glow */
  outline: 3px solid transparent;
  transition: outline 0.3s ease, transform 0.4s ease, box-shadow 0.4s ease;
}
.service-visual-img:hover {
  outline: 3px solid var(--teal);
  transform: translateY(-6px) scale(1.01);
  box-shadow: 0 32px 80px rgba(27,143,133,0.22);
}
/* Teal overlay on hover */
.service-visual-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(27,143,133,0.18) 0%,
    rgba(139,216,10,0.06) 100%
  );
  border-radius: 24px;
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}
.service-visual-img:hover::after { opacity: 1; }
.service-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  border-radius: 24px;
  transition: transform 0.5s ease;
  aspect-ratio: 16/10;
}
.service-visual-img:hover .service-photo { transform: scale(1.04); }

/* ─── CONTACT PAGE ────────────────────────── */
.contact-hero {
  padding: 160px 0 80px;
  background: var(--off-white);
  text-align: center;
}
.contact-section { padding: 80px 0 100px; }
.contact-inner { display: grid; grid-template-columns: 1fr 1.5fr; gap: 64px; align-items: start; }
.contact-info h2 { font-size: clamp(24px,3vw,32px); margin-bottom: 16px; }
.contact-info p { color: var(--text-mid); font-size: 16px; margin-bottom: 36px; line-height: 1.7; }
.contact-methods { display: flex; flex-direction: column; gap: 20px; }
.contact-method { display: flex; align-items: center; gap: 16px; }
.contact-method-icon {
  width: 48px; height: 48px;
  background: var(--teal-light);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}
.contact-method-text span { display: block; font-size: 12px; color: var(--text-light); font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 4px; }
.contact-method-text a { font-size: 15px; font-weight: 600; color: var(--text-dark); }
.whatsapp-btn-large {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #25D366;
  color: var(--white);
  padding: 14px 24px;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 15px;
  margin-top: 24px;
  transition: all 0.3s;
  box-shadow: 0 4px 16px rgba(37,211,102,0.3);
}
.whatsapp-btn-large:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(37,211,102,0.4); }

/* ─── LANDING PAGES ───────────────────────── */
.lp-hero {
  padding: 160px 0 100px;
  background: var(--gradient);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.lp-hero::before {
  content:'';
  position:absolute;
  inset: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%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.lp-hero h1 { color: var(--white); font-size: clamp(32px,5vw,56px); margin-bottom: 20px; position:relative; z-index:1; }
.lp-hero p { color: rgba(255,255,255,0.85); font-size: 18px; margin-bottom: 36px; max-width: 560px; margin-left:auto; margin-right:auto; position:relative; z-index:1; }
.lp-hero-form { background:var(--white); border-radius:24px; padding:40px; max-width:560px; margin:0 auto; position:relative; z-index:1; box-shadow:var(--shadow-lg); }
.audit-includes { padding: 80px 0; }
.audit-grid { display:grid; grid-template-columns:repeat(2,1fr); gap:24px; margin-top:48px; max-width:760px; margin-left:auto; margin-right:auto; }
.audit-item {
  display: flex; align-items: flex-start; gap: 16px;
  background: var(--white);
  border: 1.5px solid var(--mid-grey);
  border-radius: var(--radius);
  padding: 24px;
  transition: all 0.3s;
}
.audit-item:hover { border-color: var(--teal); box-shadow: var(--shadow-sm); }
.audit-item-icon {
  width: 44px; height: 44px;
  background: var(--teal-light);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}
.audit-item h4 { font-size: 16px; margin-bottom: 6px; }
.audit-item p { font-size: 14px; color: var(--text-mid); }

/* ─── FOOTER ──────────────────────────────── */
footer {
  background: var(--text-dark);
  color: var(--white);
  padding: 72px 0 0;
}
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 48px; padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,0.1); }
.footer-brand .logo { color: var(--white); margin-bottom: 16px; }
.footer-brand p { color: rgba(255,255,255,0.6); font-size: 14px; line-height: 1.7; margin-bottom: 24px; }
.footer-social { display: flex; gap: 12px; }
.footer-social-icon {
  width: 36px; height: 36px;
  background: rgba(255,255,255,0.1);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 16px;
  transition: background 0.2s;
}
.footer-social-icon:hover { background: var(--teal); }
.footer-col h4 { font-family: 'Syne', sans-serif; font-size: 15px; font-weight: 700; margin-bottom: 20px; color: var(--white); }
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col a { font-size: 14px; color: rgba(255,255,255,0.6); transition: color 0.2s; }
.footer-col a:hover { color: var(--lime); }
.footer-bottom {
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p { font-size: 13px; color: rgba(255,255,255,0.4); }
.footer-bottom a { color: var(--lime); }

/* ─── WHATSAPP FLOAT ──────────────────────── */
.wa-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 60px; height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 28px;
  color: var(--white);
  box-shadow: 0 4px 20px rgba(37,211,102,0.45);
  z-index: 9999;
  animation: wa-bounce 3s ease-in-out infinite;
  transition: transform 0.3s;
  text-decoration: none;
}
.wa-float:hover { transform: scale(1.15); animation: none; }
@keyframes wa-bounce { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-8px)} }
.wa-tooltip {
  position: absolute;
  right: 72px;
  background: var(--text-dark);
  color: var(--white);
  font-size: 13px;
  font-weight: 600;
  padding: 8px 14px;
  border-radius: var(--radius-full);
  white-space: nowrap;
  opacity: 0;
  transition: opacity 0.3s;
  pointer-events: none;
}
.wa-float:hover .wa-tooltip { opacity: 1; }

/* ─── SCROLL ANIMATIONS ───────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible { opacity: 1; transform: none; }
/* Safety fallback — if JS fails, show content after 1.5s via animation */
.reveal { animation: reveal-fallback 0s 1.5s forwards; }
@keyframes reveal-fallback { to { opacity: 1; transform: none; } }
/* Once JS adds .visible, animation is no longer needed */
.reveal.visible { animation: none; }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ─── PAGE HEADER (inner pages) ───────────── */
.page-header {
  padding: 140px 0 60px;
  background: linear-gradient(160deg, var(--off-white) 0%, var(--teal-light) 100%);
  text-align: center;
}
.page-header h1 { font-size: clamp(32px,5vw,52px); margin-bottom: 16px; }
.page-header p { font-size: 18px; color: var(--text-mid); max-width: 520px; margin: 0 auto; }

/* ─── RESPONSIVE ──────────────────────────── */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2,1fr); }
  .process-steps { grid-template-columns: repeat(2,1fr); gap: 32px; }
  .process-steps::before { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .hero-grid { gap: 40px; }
}

@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .hero { min-height: auto; padding: 120px 0 60px; text-align: center; }
  .hero-sub, .hero-ctas { margin-left: auto; margin-right: auto; }
  .hero-ctas { justify-content: center; }
  .hero-stats { justify-content: center; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .process-steps { grid-template-columns: 1fr 1fr; }
  .form-grid-2 { grid-template-columns: 1fr; }
  .founders-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .service-detail-inner { flex-direction: column !important; }
  .service-detail:nth-child(even) .service-detail-inner { flex-direction: column !important; }
  .contact-inner { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .form-wrapper { padding: 32px 24px; }
  .audit-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .services-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .final-cta-btns { flex-direction: column; align-items: center; }
}
