/* =========================================
   SAFE CIRCLE — Premium White + Blue Theme
   ========================================= */

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

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800;900&family=Sora:wght@300;400;500;600;700;800&display=swap');

:root {
  /* Core Blue Palette */
  --blue-950:  #050e2b;
  --blue-900:  #0a1a4a;
  --blue-800:  #0f2870;
  --blue-700:  #1340a0;
  --blue-600:  #1a56c8;
  --blue-500:  #2563eb;
  --blue-400:  #3b82f6;
  --blue-300:  #60a5fa;
  --blue-200:  #93c5fd;
  --blue-100:  #dbeafe;
  --blue-50:   #eff6ff;

  /* Sky / Cyan Accents */
  --sky-500:   #0ea5e9;
  --sky-400:   #38bdf8;
  --cyan-400:  #22d3ee;

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

  /* Semantic */
  --text-primary:   #0f172a;
  --text-secondary: #334155;
  --text-muted:     #64748b;
  --text-light:     #94a3b8;
  --border:         #e2e8f0;
  --border-blue:    rgba(37,99,235,0.2);

  /* Gradients */
  --grad-primary:  linear-gradient(135deg, #1a56c8 0%, #2563eb 50%, #0ea5e9 100%);
  --grad-hero:     linear-gradient(135deg, #0a1a4a 0%, #0f2870 40%, #1340a0 80%, #1a56c8 100%);
  --grad-section:  linear-gradient(180deg, #eff6ff 0%, #ffffff 100%);
  --grad-card:     linear-gradient(145deg, #ffffff 0%, #f8faff 100%);
  --grad-blue-soft: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);

  /* Glass effects */
  --glass-white:    rgba(255,255,255,0.85);
  --glass-blue:     rgba(37,99,235,0.08);
  --glass-border:   rgba(255,255,255,0.6);

  /* Shadows */
  --shadow-sm:    0 1px 3px rgba(15,23,42,0.08), 0 1px 2px rgba(15,23,42,0.04);
  --shadow-md:    0 4px 16px rgba(15,23,42,0.08), 0 2px 6px rgba(15,23,42,0.04);
  --shadow-lg:    0 12px 40px rgba(15,23,42,0.10), 0 4px 12px rgba(15,23,42,0.06);
  --shadow-xl:    0 24px 64px rgba(15,23,42,0.12), 0 8px 24px rgba(15,23,42,0.06);
  --shadow-blue:  0 8px 32px rgba(37,99,235,0.25), 0 2px 8px rgba(37,99,235,0.15);
  --shadow-blue-lg: 0 16px 60px rgba(37,99,235,0.3), 0 6px 20px rgba(37,99,235,0.15);

  --radius:     14px;
  --radius-lg:  20px;
  --radius-xl:  28px;

  --ff-head: 'Sora', sans-serif;
  --ff-body: 'Plus Jakarta Sans', sans-serif;
}

html { scroll-behavior: smooth; }

body {
  background: var(--white);
  color: var(--text-primary);
  font-family: var(--ff-body);
  font-size: 17px;
  line-height: 1.65;
  overflow-x: hidden;
}

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

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}


/* ── NAVBAR ── */
.navbar {
  position: fixed;
  top: 14px;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 48px);
  max-width: 1280px;
  z-index: 1000;
  border-radius: 18px;
  background: rgba(255,255,255,0.88);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(226,232,240,0.8);
  box-shadow: 0 4px 24px rgba(15,23,42,0.08), 0 1px 4px rgba(15,23,42,0.04);
  transition: all 0.4s ease;
}

.nav-inner {
  display: flex;
  align-items: center;
  gap: 2rem;
  padding: 12px 24px;
  transition: all 0.4s ease;
}

.navbar.scrolled {
  background: rgba(255,255,255,0.97);
  box-shadow: 0 8px 40px rgba(15,23,42,0.10);
  border-color: var(--border);
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}

.logo-icon {
  width: 38px;
  height: 38px;
  flex-shrink: 0;
}

.logo-text {
  font-family: var(--ff-head);
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--text-primary);
  letter-spacing: -0.03em;
}

.logo-accent {
  background: var(--grad-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-left: auto;
}

.nav-links a {
  font-family: var(--ff-body);
  font-size: 0.91rem;
  font-weight: 600;
  color: var(--text-secondary);
  letter-spacing: 0.01em;
  transition: color 0.2s;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0; right: 0;
  height: 2px;
  background: var(--grad-primary);
  border-radius: 2px;
  transform: scaleX(0);
  transition: transform 0.25s ease;
}

.nav-links a:hover { color: var(--blue-600); }
.nav-links a:hover::after { transform: scaleX(1); }

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.btn-phone {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 9px 18px;
  border-radius: 50px;
  border: 1.5px solid var(--border);
  background: var(--white);
  color: var(--text-secondary);
  font-size: 0.87rem;
  font-weight: 700;
  transition: all 0.25s;
  white-space: nowrap;
}

.btn-phone:hover {
  background: var(--blue-50);
  border-color: var(--blue-300);
  color: var(--blue-600);
}

.btn-whatsapp {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 9px 18px;
  border-radius: 50px;
  background: linear-gradient(135deg, #25d366, #128c7e);
  color: white;
  font-size: 0.87rem;
  font-weight: 700;
  transition: all 0.25s;
  white-space: nowrap;
  box-shadow: 0 4px 16px rgba(37,211,102,0.3);
}

.btn-whatsapp:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(37,211,102,0.45);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  margin-left: auto;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 4px;
  transition: all 0.3s ease;
}

/* Mobile Menu */
.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 0;
  background: rgba(255,255,255,0.99);
  border-top: 1px solid var(--border);
  padding: 0;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
  border-radius: 0 0 18px 18px;
}

.mobile-menu.open {
  max-height: 500px;
  padding: 16px 0;
  display: flex;
}

.mobile-menu a {
  padding: 14px 28px;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text-secondary);
  border-bottom: 1px solid var(--gray-100);
  transition: all 0.2s;
}

.mobile-menu a:hover { color: var(--blue-600); background: var(--blue-50); }

.mobile-cta {
  margin: 8px 16px 4px !important;
  padding: 14px 20px !important;
  border-radius: 12px !important;
  border: 1.5px solid var(--border) !important;
  text-align: center;
  font-weight: 700 !important;
  background: var(--gray-50) !important;
  border-bottom: 1.5px solid var(--border) !important;
  color: var(--text-primary) !important;
}

.mobile-cta.whatsapp {
  background: linear-gradient(135deg, rgba(37,211,102,0.1), rgba(18,140,126,0.1)) !important;
  border-color: rgba(37,211,102,0.4) !important;
  color: #065f46 !important;
}


/* ── BUTTONS ── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 14px 28px;
  border-radius: 50px;
  background: var(--grad-primary);
  color: white;
  font-family: var(--ff-head);
  font-size: 0.97rem;
  font-weight: 700;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-blue);
  border: none;
  cursor: pointer;
  white-space: nowrap;
  letter-spacing: -0.01em;
}

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

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 14px 28px;
  border-radius: 50px;
  background: rgba(255,255,255,0.15);
  border: 1.5px solid rgba(255,255,255,0.4);
  color: white;
  font-family: var(--ff-head);
  font-size: 0.97rem;
  font-weight: 600;
  transition: all 0.3s ease;
  white-space: nowrap;
  backdrop-filter: blur(10px);
  letter-spacing: -0.01em;
}

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

.btn-submit {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 32px;
  border-radius: 50px;
  background: var(--grad-primary);
  color: white;
  font-family: var(--ff-head);
  font-size: 1rem;
  font-weight: 700;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-blue);
  letter-spacing: -0.01em;
}

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

.btn-submit:disabled { opacity: 0.7; cursor: not-allowed; transform: none; }

.btn-learn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--blue-500);
  font-size: 0.91rem;
  font-weight: 700;
  margin-top: 20px;
  transition: gap 0.2s, color 0.2s;
}

.btn-learn:hover { gap: 12px; color: var(--blue-700); }

.btn-service {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 9px 20px;
  border-radius: 50px;
  background: var(--grad-primary);
  color: white;
  font-size: 0.85rem;
  font-weight: 700;
  transition: all 0.25s;
  margin-top: 12px;
  box-shadow: 0 4px 14px rgba(37,99,235,0.3);
}

.btn-service:hover { transform: translateY(-2px); box-shadow: var(--shadow-blue); }

.btn-facebook {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: 50px;
  background: rgba(37,99,235,0.08);
  border: 1.5px solid rgba(37,99,235,0.2);
  color: var(--blue-600);
  font-size: 0.88rem;
  font-weight: 700;
  margin-top: 18px;
  transition: all 0.25s;
}

.btn-facebook:hover { background: var(--blue-50); transform: translateY(-2px); }


/* ── SECTION HEADERS ── */
.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-tag {
  display: inline-block;
  padding: 6px 18px;
  border-radius: 50px;
  background: var(--blue-50);
  border: 1.5px solid var(--blue-100);
  color: var(--blue-600);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.section-header h2 {
  font-family: var(--ff-head);
  font-size: clamp(1.9rem, 4vw, 2.9rem);
  font-weight: 800;
  color: var(--text-primary);
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin-bottom: 16px;
}

.section-header p {
  font-size: 1.05rem;
  color: var(--gray-600);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.75;
}

/* Light variant (used on dark blue sections) */
.section-header.light h2 { color: white; }
.section-header.light p { color: rgba(255,255,255,0.72); }
.section-tag.light {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.25);
  color: rgba(255,255,255,0.85);
}


/* ── HERO ── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--grad-hero);
  padding: 120px 0 80px;
}

/* Background atmosphere */
.hero-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

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

.hero-orb-1 {
  width: 650px; height: 650px;
  background: radial-gradient(circle, rgba(59,130,246,0.4), transparent 65%);
  top: -150px; left: -150px;
  opacity: 0.8;
  animation-delay: 0s;
}

.hero-orb-2 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(14,165,233,0.35), transparent 65%);
  bottom: 40px; left: 35%;
  opacity: 0.5;
  animation-delay: -4s;
}

.hero-orb-3 {
  width: 380px; height: 380px;
  background: radial-gradient(circle, rgba(96,165,250,0.3), transparent 65%);
  top: 25%; right: 40%;
  opacity: 0.4;
  animation-delay: -7s;
}

@keyframes orbFloat {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-28px) scale(1.04); }
}

/* Subtle grid pattern */
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 60% 80% at 20% 50%, black 10%, transparent 80%);
}

/* Diagonal fade right */
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(10,26,74,0.0)  0%,
    rgba(10,26,74,0.0)  45%,
    rgba(10,26,74,0.6)  68%,
    rgba(10,26,74,0.94) 100%
  );
  pointer-events: none;
  z-index: 1;
}

.hero-layout {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  gap: 0;
}

.hero-content { max-width: 600px; }

.hero-visual {
  position: absolute;
  top: 0; right: 0;
  width: 50%;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.hero-visual::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right,
      rgba(10,26,74,1)    0%,
      rgba(10,26,74,0.85) 20%,
      rgba(15,40,112,0.5) 48%,
      rgba(15,40,112,0.18) 80%,
      rgba(15,40,112,0.08) 100%
    ),
    linear-gradient(160deg,
      rgba(15,40,112,0.65) 0%,
      rgba(26,86,200,0.45) 50%,
      rgba(10,26,74,0.5) 100%
    );
  z-index: 2;
  pointer-events: none;
}

.hero-visual::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom,
      rgba(10,26,74,0.75)  0%,
      transparent       18%,
      transparent       80%,
      rgba(10,26,74,0.85) 100%
    );
  z-index: 3;
  pointer-events: none;
}

.hero-photo-wrap {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-photo-glow {
  position: absolute;
  width: 420px; height: 520px;
  border-radius: 40% 60% 55% 45% / 45% 40% 60% 55%;
  background: radial-gradient(ellipse, rgba(37,99,235,0.4) 0%, transparent 70%);
  filter: blur(50px);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  z-index: 0;
  animation: glowPulse 6s ease-in-out infinite;
}

@keyframes glowPulse {
  0%, 100% { opacity: 0.7; transform: translate(-50%, -50%) scale(1); }
  50% { opacity: 1; transform: translate(-50%, -50%) scale(1.08); }
}

.hero-photo {
  position: absolute;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 32px 80px rgba(0,0,0,0.55), 0 0 0 1px rgba(255,255,255,0.08);
}

.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  filter: brightness(1.05) contrast(1.04) saturate(1.1);
}

.hero-photo-main {
  width: 420px;
  height: 540px;
  right: 60px;
  top: 50%;
  transform: translateY(-50%) rotate(1deg);
  z-index: 1;
}

/* Floating badges */
.hero-trust-badge {
  position: absolute;
  bottom: 28%;
  right: 68px;
  z-index: 5;
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,0.14);
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 14px;
  padding: 12px 16px;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.35), 0 0 0 1px rgba(255,255,255,0.08);
  animation: floatBadge 5s ease-in-out infinite;
  pointer-events: none;
}

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

.trust-badge-icon {
  width: 36px; height: 36px;
  border-radius: 10px;
  background: linear-gradient(135deg, rgba(37,99,235,0.6), rgba(14,165,233,0.5));
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  flex-shrink: 0;
}

.trust-badge-text strong {
  display: block;
  font-size: 0.87rem;
  font-weight: 700;
  color: white;
  font-family: var(--ff-head);
  line-height: 1.2;
}

.trust-badge-text span {
  display: block;
  font-size: 0.74rem;
  color: rgba(255,255,255,0.55);
  margin-top: 1px;
}

.hero-active-pill {
  position: absolute;
  top: 26%;
  right: 72px;
  z-index: 5;
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 50px;
  padding: 8px 16px 8px 12px;
  font-size: 0.81rem;
  font-weight: 600;
  color: rgba(255,255,255,0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 8px 28px rgba(0,0,0,0.3);
  animation: floatBadge 6s ease-in-out infinite reverse;
  pointer-events: none;
}

.active-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #22c55e;
  flex-shrink: 0;
  box-shadow: 0 0 0 3px rgba(34,197,94,0.3);
  animation: activePulse 2s ease-in-out infinite;
}

@keyframes activePulse {
  0%, 100% { box-shadow: 0 0 0 3px rgba(34,197,94,0.3); }
  50% { box-shadow: 0 0 0 7px rgba(34,197,94,0.1); }
}

/* Hero text */
.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 28px;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 16px;
  border-radius: 50px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.18);
  color: rgba(255,255,255,0.8);
  font-size: 0.81rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.badge-glow {
  background: rgba(37,99,235,0.3);
  border-color: rgba(96,165,250,0.5);
  color: var(--blue-200);
  box-shadow: 0 0 20px rgba(37,99,235,0.2);
}

.hero-heading {
  font-family: var(--ff-head);
  font-size: clamp(2.5rem, 5vw, 4.4rem);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -0.04em;
  color: white;
  margin-bottom: 22px;
}

.hero-heading em {
  font-style: normal;
  color: rgba(255,255,255,0.45);
  font-weight: 300;
}

.gradient-text {
  background: linear-gradient(120deg, #93c5fd 0%, #60a5fa 40%, #38bdf8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  font-size: 1.08rem;
  color: rgba(255,255,255,0.78);
  max-width: 500px;
  line-height: 1.75;
  margin-bottom: 36px;
}

.hero-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 52px;
}

/* Stats bar */
.hero-stats {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: 0;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 18px;
  padding: 20px 28px;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  width: fit-content;
  max-width: 100%;
  box-shadow: 0 8px 40px rgba(0,0,0,0.25), inset 0 1px 0 rgba(255,255,255,0.07);
}

.stat {
  display: flex;
  flex-direction: column;
  padding: 0 22px;
}

.stat:first-child { padding-left: 0; }
.stat:last-child  { padding-right: 0; }

.stat-num {
  font-family: var(--ff-head);
  font-size: 1.7rem;
  font-weight: 900;
  color: white;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.stat-label {
  font-size: 0.76rem;
  color: rgba(255,255,255,0.45);
  font-weight: 500;
  margin-top: 3px;
  white-space: nowrap;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.12);
  flex-shrink: 0;
}

/* Scroll hint */
.hero-scroll-hint {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 4;
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(147,197,253,0.8), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

.hero-scroll-hint span {
  font-size: 0.74rem;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.35);
  text-transform: uppercase;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.5; transform: scaleY(1); }
  50%       { opacity: 1;   transform: scaleY(1.2); }
}


/* ── SERVICES ── */
.services-section {
  padding: 100px 0;
  background: var(--white);
  position: relative;
  border-bottom: 1px solid var(--gray-200);
}

.services-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), transparent);
}

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

.service-card {
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
  position: relative;
  display: flex;
  flex-direction: column;
  box-shadow: 0 2px 8px rgba(15,23,42,0.07), 0 1px 3px rgba(15,23,42,0.05);
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 28px 70px rgba(15,23,42,0.14), 0 8px 24px rgba(37,99,235,0.12);
  border-color: var(--blue-300);
}

.service-img {
  position: relative;
  height: 210px;
  overflow: hidden;
  flex-shrink: 0;
}

.service-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease, filter 0.5s ease;
  filter: brightness(1.02) saturate(1.05);
}

.service-card:hover .service-img img { transform: scale(1.06); filter: brightness(1.08) saturate(1.1); }

.service-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(10,26,74,0.0), rgba(10,26,74,0.35));
}

.service-body {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.service-icon {
  width: 48px;
  height: 48px;
  border-radius: 13px;
  background: var(--blue-50);
  border: 1.5px solid var(--blue-100);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  color: var(--blue-500);
  transition: all 0.3s;
}

.service-card:hover .service-icon {
  background: var(--blue-500);
  border-color: var(--blue-500);
  color: white;
  box-shadow: 0 6px 20px rgba(37,99,235,0.3);
}

.service-body h3 {
  font-family: var(--ff-head);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 10px;
  letter-spacing: -0.02em;
}

.service-body p {
  font-size: 0.91rem;
  color: var(--gray-600);
  line-height: 1.65;
  margin-bottom: 14px;
}

.feature-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 7px;
  flex: 1;
  margin-bottom: 20px;
}

.feature-list li {
  font-size: 0.87rem;
  color: var(--gray-700);
  padding-left: 20px;
  position: relative;
}

.feature-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue-500), var(--sky-500));
}


/* ── PRODUCT SECTION ── */
.product-section {
  padding: 100px 0;
  background: linear-gradient(160deg, #eef4ff 0%, #f0f7ff 50%, #e8f2ff 100%);
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--blue-100);
  border-bottom: 1px solid var(--blue-100);
}

/* Decorative blobs */
.product-bg-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}

.product-orb-1 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(37,99,235,0.1), transparent 70%);
  top: -100px; right: -80px;
}

.product-orb-2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(14,165,233,0.08), transparent 70%);
  bottom: -60px; left: -60px;
}

.product-card {
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 60px;
  align-items: center;
  background: var(--white);
  border: 1.5px solid var(--blue-200);
  border-radius: var(--radius-xl);
  padding: 56px 60px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 16px 56px rgba(37,99,235,0.1), 0 4px 16px rgba(15,23,42,0.08);
  transition: border-color 0.3s, box-shadow 0.3s;
}

.product-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(37,99,235,0.025), transparent 60%);
  pointer-events: none;
}

.product-card:hover {
  border-color: var(--blue-200);
  box-shadow: var(--shadow-xl);
}

.product-img-wrap {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  background: linear-gradient(145deg, var(--blue-50), var(--gray-50));
  border-radius: 24px;
  border: 1.5px solid var(--blue-100);
  padding: 40px 28px 28px;
  min-height: 420px;
  overflow: visible;
}

.product-img-wrap::after {
  content: '';
  position: absolute;
  bottom: 0px; left: 10%; right: 10%;
  height: 60px;
  background: radial-gradient(ellipse, rgba(37,99,235,0.2), rgba(14,165,233,0.08) 50%, transparent 75%);
  filter: blur(18px);
  pointer-events: none;
  z-index: 0;
}

.product-img-glow { display: none; }

.product-img-wrap img {
  max-height: 380px;
  width: auto;
  object-fit: contain;
  position: relative;
  z-index: 1;
  filter:
    drop-shadow(0 4px 16px rgba(220,38,38,0.25))
    drop-shadow(0 16px 48px rgba(37,99,235,0.35))
    drop-shadow(0 32px 64px rgba(0,0,0,0.15));
  transition: transform 0.5s cubic-bezier(0.34,1.56,0.64,1), filter 0.5s ease;
  transform-origin: bottom center;
}

.product-card:hover .product-img-wrap img {
  transform: translateY(-14px) scale(1.05);
  filter:
    drop-shadow(0 4px 16px rgba(220,38,38,0.35))
    drop-shadow(0 20px 60px rgba(37,99,235,0.45))
    drop-shadow(0 40px 80px rgba(0,0,0,0.2));
}

.product-content { display: flex; flex-direction: column; }

.product-label {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--blue-600);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.product-title {
  font-family: var(--ff-head);
  font-size: clamp(1.9rem, 3.5vw, 2.7rem);
  font-weight: 800;
  color: var(--text-primary);
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 20px;
}

.product-accent {
  background: var(--grad-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.product-desc {
  font-size: 0.99rem;
  color: var(--gray-600);
  line-height: 1.78;
  margin-bottom: 32px;
  border-left: 3px solid var(--blue-400);
  padding-left: 18px;
}

.product-features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 28px;
}

.pfeature {
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 13px 15px;
  background: var(--blue-50);
  border: 1.5px solid #bfdbfe;
  border-radius: 12px;
  transition: all 0.25s ease;
  cursor: default;
}

.pfeature:hover {
  background: var(--blue-100);
  border-color: var(--blue-200);
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(37,99,235,0.12);
}

.pfeature-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--blue-500), var(--sky-500));
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: white;
}

.pfeature span {
  font-size: 0.86rem;
  font-weight: 700;
  color: var(--gray-800);
  line-height: 1.3;
}

@media (max-width: 480px) {
  .product-features-grid { grid-template-columns: 1fr; }
}


/* ── WHY CHOOSE US ── */
.why-section {
  position: relative;
  padding: 100px 0;
  background: var(--grad-hero);
  overflow: hidden;
}

.why-bg { position: absolute; inset: 0; overflow: hidden; }

.why-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.3;
}

.why-orb-1 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, #3b82f6, transparent 70%);
  top: -100px; right: 0;
}

.why-orb-2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, #0ea5e9, transparent 70%);
  bottom: -50px; left: -50px;
}

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

.why-card {
  padding: 32px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(20px);
  transition: all 0.35s ease;
}

.why-card:hover {
  transform: translateY(-6px);
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.25);
  box-shadow: 0 20px 50px rgba(0,0,0,0.25);
}

.why-icon {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(59,130,246,0.4), rgba(14,165,233,0.3));
  border: 1px solid rgba(96,165,250,0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--blue-200);
}

.why-card h4 {
  font-family: var(--ff-head);
  font-size: 1.08rem;
  font-weight: 700;
  color: white;
  margin-bottom: 10px;
  letter-spacing: -0.02em;
}

.why-card p {
  font-size: 0.93rem;
  color: rgba(255,255,255,0.78);
  line-height: 1.65;
}


/* ── HOW IT WORKS ── */
.how-section {
  padding: 100px 0;
  background: linear-gradient(180deg, var(--gray-50) 0%, var(--white) 100%);
  position: relative;
  border-top: 1px solid var(--gray-200);
  border-bottom: 1px solid var(--gray-200);
}

.steps-row {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
  position: relative;
  z-index: 1;
}

.step {
  flex: 1;
  max-width: 240px;
  text-align: center;
  position: relative;
}

.step-num {
  font-family: var(--ff-head);
  font-size: 3.5rem;
  font-weight: 900;
  color: var(--blue-200);
  line-height: 1;
  margin-bottom: -10px;
  letter-spacing: -0.04em;
}

.step-icon-wrap {
  width: 72px;
  height: 72px;
  border-radius: 22px;
  background: var(--blue-50);
  border: 1.5px solid var(--blue-100);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: var(--blue-500);
  transition: all 0.3s;
}

.step:hover .step-icon-wrap {
  background: var(--blue-500);
  border-color: var(--blue-500);
  color: white;
  transform: scale(1.08);
  box-shadow: var(--shadow-blue);
}

.step h4 {
  font-family: var(--ff-head);
  font-size: 1.08rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 10px;
  letter-spacing: -0.02em;
}

.step p {
  font-size: 0.91rem;
  color: var(--gray-600);
  line-height: 1.65;
}

.step-connector {
  display: flex;
  align-items: flex-start;
  padding-top: 62px;
  flex-shrink: 0;
  width: 60px;
}

.step-line {
  flex: 1;
  height: 2px;
  background: linear-gradient(90deg, var(--blue-300), var(--sky-400));
  opacity: 0.5;
  border-radius: 2px;
}


/* ── SERVICE AREAS ── */
.areas-section {
  padding: 100px 0;
  background: linear-gradient(160deg, #0f2870 0%, #1340a0 50%, #1a56c8 100%);
  position: relative;
  overflow: hidden;
}

.areas-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

.areas-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}

.area-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--white);
  border: 1.5px solid rgba(255,255,255,0.2);
  transition: all 0.35s;
  box-shadow: 0 8px 32px rgba(0,0,0,0.25), 0 2px 8px rgba(0,0,0,0.15);
}

.area-card:hover {
  transform: translateY(-8px);
  border-color: rgba(255,255,255,0.6);
  box-shadow: 0 20px 60px rgba(0,0,0,0.35), 0 4px 16px rgba(0,0,0,0.2);
}

.area-img {
  height: 160px;
  overflow: hidden;
}

.area-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
  filter: brightness(0.92) saturate(1.05);
}

.area-card:hover .area-img img { transform: scale(1.08); filter: brightness(1.05) saturate(1.1); }

.area-body {
  padding: 18px 20px 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  background: var(--white);
}

.area-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 8px rgba(34,197,94,0.5);
  margin-bottom: 8px;
}

.area-body h4 {
  font-family: var(--ff-head);
  font-size: 1.12rem;
  font-weight: 800;
  color: var(--gray-900);
  margin-bottom: 4px;
  letter-spacing: -0.02em;
}

.area-body span {
  font-size: 0.8rem;
  color: var(--gray-500);
  font-weight: 500;
  margin-bottom: 6px;
}


/* ── TESTIMONIALS ── */
.testimonials-section {
  position: relative;
  padding: 100px 0;
  background: linear-gradient(180deg, #f8faff 0%, var(--white) 100%);
  overflow: hidden;
  border-top: 1px solid var(--gray-200);
}

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

.testimonials-orb {
  position: absolute;
  width: 700px; height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(37,99,235,0.07), transparent 70%);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  filter: blur(60px);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr 1fr;
  gap: 20px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.testimonial-card {
  padding: 32px;
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-lg);
  box-shadow: 0 4px 20px rgba(15,23,42,0.08), 0 1px 4px rgba(15,23,42,0.05);
  transition: all 0.35s;
}

.testimonial-featured {
  background: linear-gradient(145deg, #e8f2ff 0%, #dbeafe 100%);
  border-color: var(--blue-300);
  box-shadow: 0 16px 48px rgba(37,99,235,0.15), 0 4px 16px rgba(37,99,235,0.1);
  transform: scale(1.04);
}

.testimonial-card:hover {
  transform: translateY(-6px);
  border-color: var(--blue-200);
  box-shadow: var(--shadow-xl);
}

.testimonial-featured:hover { transform: scale(1.03) translateY(-6px); }

.stars {
  color: #f59e0b;
  font-size: 1.1rem;
  letter-spacing: 2px;
  margin-bottom: 16px;
}

.review-text {
  font-size: 0.99rem;
  color: var(--gray-700);
  line-height: 1.78;
  margin-bottom: 24px;
  font-style: italic;
}

.reviewer {
  display: flex;
  align-items: center;
  gap: 14px;
}

.reviewer-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--grad-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--ff-head);
  font-size: 1.1rem;
  font-weight: 800;
  color: white;
  flex-shrink: 0;
}

.reviewer strong {
  display: block;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--gray-900);
}

.reviewer-city {
  display: block;
  font-size: 0.8rem;
  color: var(--text-light);
  margin-top: 2px;
}


/* ── CTA BANNER ── */
.cta-banner {
  position: relative;
  padding: 80px 0;
  background: var(--grad-hero);
  overflow: hidden;
}

.cta-bg { position: absolute; inset: 0; }
.cta-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.35;
}
.cta-orb-1 { width: 400px; height: 400px; background: var(--blue-500); top: -100px; left: -50px; }
.cta-orb-2 { width: 350px; height: 350px; background: var(--sky-500); bottom: -80px; right: 0; }

.cta-inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}

.cta-text h2 {
  font-family: var(--ff-head);
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  font-weight: 800;
  color: white;
  letter-spacing: -0.03em;
  margin-bottom: 8px;
}

.cta-text p { font-size: 1.02rem; color: rgba(255,255,255,0.68); }

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


/* ── CONTACT ── */
.contact-section {
  padding: 100px 0;
  background: linear-gradient(160deg, #f0f7ff 0%, #f8fafc 60%, #eef4ff 100%);
  border-top: 1px solid var(--blue-100);
}

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

.contact-info-card, .inquiry-card, .location-card {
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: 0 6px 24px rgba(15,23,42,0.08), 0 2px 8px rgba(15,23,42,0.05);
  margin-bottom: 20px;
}

.location-card { margin-bottom: 0; }

.contact-info-card h3, .inquiry-card h3, .location-card h3 {
  font-family: var(--ff-head);
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--gray-900);
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 8px;
  letter-spacing: -0.02em;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid var(--gray-100);
  transition: all 0.2s;
  color: inherit;
}

.contact-item:last-child { border-bottom: none; }
.contact-item:hover { opacity: 0.82; }

.contact-item-icon {
  width: 44px;
  height: 44px;
  border-radius: 13px;
  background: var(--blue-50);
  border: 1.5px solid var(--blue-100);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue-500);
  flex-shrink: 0;
}

.whatsapp-icon {
  background: linear-gradient(135deg, rgba(37,211,102,0.12), rgba(18,140,126,0.1)) !important;
  border-color: rgba(37,211,102,0.3) !important;
  color: #16a34a !important;
}

.contact-item small {
  display: block;
  font-size: 0.72rem;
  color: var(--text-light);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 3px;
  font-weight: 700;
}

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

.location-card p { color: var(--gray-600); font-size: 0.93rem; margin-bottom: 16px; }

.map-container { border-radius: 14px; overflow: hidden; }

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

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

.form-group label {
  display: block;
  font-size: 0.84rem;
  font-weight: 700;
  color: var(--gray-700);
  margin-bottom: 8px;
  letter-spacing: 0.01em;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 13px 17px;
  background: var(--white);
  border: 1.5px solid var(--gray-300);
  border-radius: 12px;
  color: var(--gray-900);
  font-family: var(--ff-body);
  font-size: 0.96rem;
  transition: all 0.25s;
  outline: none;
  -webkit-appearance: none;
}

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

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--blue-400);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(37,99,235,0.1);
}

.form-group select option { background: var(--white); color: var(--text-primary); }
.form-group textarea { resize: vertical; min-height: 120px; }


/* ── FOOTER ── */
.footer {
  background: var(--gray-900);
  border-top: 1px solid rgba(255,255,255,0.06);
  position: relative;
  overflow: hidden;
}

.footer-glow {
  position: absolute;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(37,99,235,0.1), transparent 70%);
  top: -100px; left: 50%;
  transform: translateX(-50%);
  filter: blur(60px);
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1fr;
  gap: 48px;
  padding: 64px 24px 48px;
  position: relative;
  z-index: 1;
}

.footer-brand .logo { margin-bottom: 16px; }

/* Logo text in footer: white */
.footer .logo-text { color: white; }

.footer-brand p {
  font-size: 0.91rem;
  color: var(--gray-300);
  line-height: 1.72;
  max-width: 280px;
}

.footer-col h5 {
  font-family: var(--ff-head);
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--gray-100);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 18px;
}

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

.footer-col ul li {
  font-size: 0.91rem;
  color: var(--gray-400);
  line-height: 1.5;
}

.footer-col ul li a {
  color: var(--gray-400);
  transition: color 0.2s;
}

.footer-col ul li a:hover { color: var(--blue-300); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.05);
  padding: 20px 24px;
  text-align: center;
  position: relative;
  z-index: 1;
}

.footer-bottom p { font-size: 0.84rem; color: var(--gray-600); }

/* Footer buttons */
.footer .btn-facebook {
  background: rgba(59,130,246,0.12);
  border-color: rgba(59,130,246,0.25);
  color: var(--blue-300);
}

.footer .btn-facebook:hover { background: rgba(59,130,246,0.22); }


/* ── REVEAL ANIMATION ── */
.revealed {
  opacity: 1 !important;
  transform: translateY(0) !important;
}


/* ── FLOATING WHATSAPP BUTTON ── */
.float-whatsapp {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 9999;
  display: flex;
  align-items: center;
  gap: 10px;
  background: #25D366;
  color: white;
  padding: 14px 20px 14px 16px;
  border-radius: 50px;
  box-shadow: 0 6px 28px rgba(37,211,102,0.45), 0 2px 8px rgba(0,0,0,0.2);
  font-family: var(--ff-body);
  font-size: 0.91rem;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.34,1.56,0.64,1);
  overflow: hidden;
  max-width: 200px;
}

.float-whatsapp:hover {
  transform: translateY(-4px) scale(1.04);
  box-shadow: 0 12px 40px rgba(37,211,102,0.6), 0 4px 16px rgba(0,0,0,0.2);
  background: #20c45e;
}

.float-whatsapp svg { flex-shrink: 0; }
.float-whatsapp-label { white-space: nowrap; }

.float-whatsapp::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50px;
  border: 2px solid rgba(37,211,102,0.7);
  animation: wa-pulse 2.2s ease-out infinite;
}

@keyframes wa-pulse {
  0%   { transform: scale(1);   opacity: 0.8; }
  70%  { transform: scale(1.12); opacity: 0; }
  100% { transform: scale(1.12); opacity: 0; }
}

/* Hero WhatsApp button */
.btn-whatsapp-hero {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 50px;
  background: #25D366;
  color: white;
  font-family: var(--ff-body);
  font-size: 0.98rem;
  font-weight: 700;
  text-decoration: none;
  border: none;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  transition: all 0.25s ease;
  letter-spacing: -0.01em;
}

.btn-whatsapp-hero:hover {
  background: #20c45e;
  transform: translateY(-3px);
  box-shadow: 0 8px 32px rgba(37,211,102,0.55);
}


/* ── RESPONSIVE ── */
@media (max-width: 1100px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .areas-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 32px; }

  .hero-photo-main { width: 300px; height: 420px; right: 30px; }
  .hero-trust-badge { right: 36px; bottom: 26%; }
  .hero-active-pill { right: 40px; top: 24%; }
}

@media (max-width: 960px) {
  .product-card {
    grid-template-columns: 1fr;
    padding: 36px 28px;
    gap: 36px;
  }
  .product-img-wrap { min-height: 280px; }
}

@media (max-width: 900px) {
  .nav-links, .nav-actions { display: none; }
  .hamburger { display: flex; }
  .nav-inner { padding: 14px 20px; }
  .mobile-menu { display: flex; }

  .why-grid { grid-template-columns: 1fr 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .testimonial-featured { transform: none; }
  .contact-grid { grid-template-columns: 1fr; }
  .cta-inner { flex-direction: column; text-align: center; }
  .cta-actions { justify-content: center; }

  .steps-row {
    flex-direction: column;
    align-items: center;
    gap: 32px;
  }
  .step-connector { display: none; }
  .step { max-width: 100%; text-align: center; }

  .hero {
    padding: 130px 0 80px;
    min-height: auto;
  }
  .hero-visual { display: none; }
  .hero::after { display: none; }
  .hero-content { max-width: 100%; }
  .hero-heading { font-size: clamp(2.3rem, 6vw, 3.6rem); }
  .hero-sub { max-width: 100%; }
  .hero-stats { flex-wrap: wrap; gap: 16px; }
}

@media (max-width: 700px) {
  .services-grid { grid-template-columns: 1fr; }
  .areas-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: 1fr; }
  .hero-stats {
    width: 100%;
    flex-wrap: wrap;
    gap: 16px;
    padding: 18px 20px;
  }
  .stat { padding: 0 12px; }
  .stat:first-child { padding-left: 0; }
  .hero-btns { flex-direction: column; }
  .hero-btns .btn-primary,
  .hero-btns .btn-ghost { width: 100%; justify-content: center; }
  .footer-inner { grid-template-columns: 1fr; gap: 28px; }
  .form-row { grid-template-columns: 1fr; }
  body { font-size: 16px; }
}

@media (max-width: 480px) {
  .areas-grid { grid-template-columns: 1fr; }
  .hero-heading { font-size: clamp(2.1rem, 8vw, 2.8rem); }
  .container { padding: 0 18px; }
  .stat-divider { width: 1px; height: 28px; }
  .float-whatsapp {
    padding: 14px;
    border-radius: 50%;
    max-width: 60px;
  }
  .float-whatsapp-label { display: none; }
  .float-whatsapp::before { border-radius: 50%; }
}

/* ── CONTRAST & POLISH ADDITIONS ── */

/* Cleaner section top borders for rhythm */
.services-section { border-top: 1px solid var(--gray-200); }
.testimonials-section { border-bottom: 1px solid var(--gray-200); }

/* Why section — stronger card contrast */
.why-card h4 { font-size: 1.12rem; }
.why-orb-1 { opacity: 0.45; }
.why-orb-2 { opacity: 0.35; }

/* How section step numbers — more visible ───*/
.step-num { color: #bfdbfe; }

/* Section headers on dark blue (why, areas, cta, hero) */
.why-section .section-header h2,
.areas-section .section-header h2,
.cta-banner .cta-text h2 { color: #ffffff; letter-spacing: -0.03em; }

.why-section .section-header p,
.areas-section .section-header p { color: rgba(255,255,255,0.75); }

/* Areas section — decorative top edge shimmer */
.areas-section::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
  pointer-events: none;
}

/* Stronger area card image height for visual impact */
.area-img { height: 170px; }

/* area card btn — clean on white */
.area-body .btn-service {
  font-size: 0.83rem;
  padding: 8px 18px;
  margin-top: 10px;
}

/* Product section header text — dark (on light bg) */
.product-section .section-header h2 { color: var(--gray-900); }
.product-section .section-header p  { color: var(--gray-600); }
.product-section .section-tag { background: var(--blue-50); border-color: #bfdbfe; color: var(--blue-700); }

/* Service section header text */
.services-section .section-header h2 { color: var(--gray-900); }
.services-section .section-header p  { color: var(--gray-600); }

/* Testimonials section header text */
.testimonials-section .section-header h2 { color: var(--gray-900); }
.testimonials-section .section-header p  { color: var(--gray-600); }

/* Contact section header */
.contact-section .section-header h2 { color: var(--gray-900); }
.contact-section .section-header p  { color: var(--gray-600); }

/* How section header */
.how-section .section-header h2 { color: var(--gray-900); }
.how-section .section-header p  { color: var(--gray-600); }

/* Step icon wrap — stronger contrast */
.step-icon-wrap { box-shadow: 0 2px 8px rgba(37,99,235,0.12); }

/* Step connector line — more vivid */
.step-line { opacity: 0.65; }

/* Testimonial card h2/text — ensure dark */
.testimonials-section .section-header h2 { color: var(--gray-900) !important; }
.testimonials-section .section-header p { color: var(--gray-600) !important; }

/* Contact item small — a bit darker */
.contact-item small { color: var(--blue-500); }

/* Nav active state readable on white */
.nav-links a.active { color: var(--blue-600) !important; }

/* Ensure footer logo text is bright */
.footer .logo-text { color: #f1f5f9; }
.footer .logo-accent { -webkit-text-fill-color: unset; color: var(--blue-300); }

/* CTA section — stronger text */
.cta-text p { color: rgba(255,255,255,0.78); }

/* Why card hover — brighter border */
.why-card:hover { border-color: rgba(255,255,255,0.35); }

/* product-img-wrap border — visible on tinted bg */
.product-img-wrap { border-color: var(--blue-200); }

/* Stronger service icon color on hover */
.service-card:hover .service-icon svg { stroke: white; }

/* Hero stat numbers — ensure bright */
.stat-num { font-size: 1.8rem; }

/* Mobile menu items darker */
.mobile-menu a { color: var(--gray-700); }

/* ── SOCIAL BUTTONS (Footer) ── */
.footer-social-row {
  display: flex;
  gap: 10px;
  margin-top: 4px;
  flex-wrap: wrap;
}

.btn-social-icon {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 18px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.25s ease;
  border: 1.5px solid transparent;
  white-space: nowrap;
}

.btn-social-fb {
  background: rgba(24,119,242,0.12);
  border-color: rgba(24,119,242,0.3);
  color: #1877f2;
}
.btn-social-fb svg { color: #1877f2; }
.btn-social-fb:hover {
  background: #1877f2;
  border-color: #1877f2;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(24,119,242,0.35);
}
.btn-social-fb:hover svg { color: white; }

.btn-social-ig {
  background: rgba(225,48,108,0.10);
  border-color: rgba(225,48,108,0.28);
  color: #e1306c;
}
.btn-social-ig:hover {
  background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
  border-color: transparent;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(225,48,108,0.35);
}

/* ── INSTAGRAM ICON IN NAVBAR ── */
.btn-nav-ig {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: rgba(225,48,108,0.10);
  border: 1.5px solid rgba(225,48,108,0.25);
  color: #e1306c;
  transition: all 0.25s ease;
  flex-shrink: 0;
}
.btn-nav-ig:hover {
  background: linear-gradient(135deg, #f09433, #dc2743, #bc1888);
  border-color: transparent;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 4px 14px rgba(225,48,108,0.35);
}

/* ── 4th TESTIMONIAL — Full-width premium highlight ── */
.testimonial-featured-row {
  margin-top: 24px;
}

.testimonial-highlight {
  position: relative;
  background: linear-gradient(135deg, #1d4ed8 0%, #1e40af 40%, #0ea5e9 100%) !important;
  border-color: transparent !important;
  box-shadow: 0 20px 60px rgba(37,99,235,0.30), 0 4px 16px rgba(37,99,235,0.15) !important;
  padding: 40px 48px !important;
  overflow: hidden;
}

.testimonial-highlight::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(255,255,255,0.10), transparent 70%);
  pointer-events: none;
}

.testimonial-highlight .review-text {
  color: rgba(255,255,255,0.95) !important;
  font-size: 1.08rem !important;
  line-height: 1.82 !important;
}

.testimonial-highlight .reviewer strong {
  color: white !important;
  font-size: 1rem !important;
}

.testimonial-highlight .reviewer-city {
  color: rgba(255,255,255,0.75) !important;
}

.testimonial-quote-icon {
  color: rgba(255,255,255,0.25);
  margin-bottom: 20px;
}

.review-text-lg {
  font-size: 1.08rem;
}

.reviewer-avatar-lg {
  width: 52px !important;
  height: 52px !important;
  font-size: 1.3rem !important;
  background: rgba(255,255,255,0.2) !important;
  border: 2px solid rgba(255,255,255,0.4) !important;
}

.stars-right {
  margin-left: auto;
  font-size: 1.2rem !important;
  color: #fbbf24 !important;
  letter-spacing: 3px;
}

/* Mobile tweaks */
@media (max-width: 768px) {
  .testimonial-highlight {
    padding: 28px 24px !important;
  }
  .stars-right { display: none; }
  .btn-nav-ig { display: none; }
  .footer-social-row { gap: 8px; }
  .btn-social-icon { padding: 8px 14px; font-size: 0.8rem; }
}

/* ── FACEBOOK ICON IN NAVBAR ── */
.btn-nav-fb {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: rgba(24,119,242,0.10);
  border: 1.5px solid rgba(24,119,242,0.25);
  color: #1877f2;
  transition: all 0.25s ease;
  flex-shrink: 0;
}
.btn-nav-fb:hover {
  background: #1877f2;
  border-color: #1877f2;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 4px 14px rgba(24,119,242,0.35);
}

@media (max-width: 768px) {
  .btn-nav-fb { display: none; }
}
