﻿/* ================================================
   HOPE GLOBAL â€” Hero Section Stylesheet v2
   Design: White-first, Navy accent
   Palette: White bg Â· Navy text/panels Â· Blue accents
   Fonts: Outfit (display) + Inter (body)
   ================================================ */

/* â”€â”€ Reset & Tokens â”€â”€ */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  /* Colours */
  --navy: #0d1b4b;
  /* deep navy text/bg */
  --navy-mid: #1a2f7a;
  /* mid-blue panels   */
  --navy-light: #2541b2;
  /* lighter navy       */
  --accent: #2563eb;
  /* vivid blue CTA     */
  --accent-hover: #1d4ed8;
  --sky: #dbeafe;
  /* pale blue tint     */
  --white: #ffffff;
  --off-white: #f8faff;
  /* soft page bg       */
  --text-dark: #0d1b4b;
  --text-body: #374151;
  --text-muted: #6b7280;
  --border: #e5e9f2;

  /* Layout */
  --nav-h: 72px;
  --max-w: 1200px;
  --radius: 16px;
  --radius-sm: 10px;

  /* Motion */
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --dur: 0.3s;

  /* Fonts */
  --font-head: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background: var(--off-white);
  color: var(--text-body);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

::-webkit-scrollbar {
  width: 5px;
}

::-webkit-scrollbar-track {
  background: var(--off-white);
}

::-webkit-scrollbar-thumb {
  background: var(--navy-light);
  border-radius: 3px;
}


/* ================================================
   NAVBAR
   ================================================ */
.navbar {
  position: fixed;
  inset-block-start: 0;
  inset-inline: 0;
  height: var(--nav-h);
  z-index: 900;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow var(--dur) var(--ease),
    transform 0.4s var(--ease);
}

.navbar.scrolled {
  box-shadow: 0 4px 24px rgba(13, 27, 75, 0.08);
}

.navbar.hidden {
  transform: translateY(-100%);
}

.nav-container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 1.5rem;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

/* Logo */
.nav-logo {
  text-decoration: none;
  flex-shrink: 0;
}

.logo-img {
  height: 46px;
  width: auto;
  display: block;
  border-radius: 6px;
  transition: box-shadow var(--dur) var(--ease), transform var(--dur) var(--ease);
}

.logo-img:hover {
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.2);
  transform: translateY(-1px);
}

/* Nav links */
.nav-links {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 0.1rem;
  margin-inline-start: auto;
}

.nav-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  text-decoration: none;
  color: var(--text-body);
  font-size: 0.875rem;
  font-weight: 500;
  padding: 8px 13px;
  border-radius: 8px;
  white-space: nowrap;
  transition: color var(--dur), background var(--dur);
}

.nav-link:hover,
.nav-link.active {
  color: var(--navy);
  background: var(--sky);
}

.nav-link.active {
  color: var(--accent);
}

/* Dropdown */
.has-dropdown {
  position: relative;
}

.dropdown {
  position: absolute;
  top: 100%;          /* flush — no gap so hover state is never lost */
  left: 50%;
  transform: translateX(-50%) translateY(-6px);
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  box-shadow: 0 12px 36px rgba(13, 27, 75, 0.14);
  padding: 14px 6px 6px; /* top padding creates the visual gap without a hover dead-zone */
  list-style: none;
  min-width: 210px;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--dur) var(--ease), transform var(--dur) var(--ease);
  z-index: 200;
}

.has-dropdown:hover .dropdown,
.has-dropdown:focus-within .dropdown {
  opacity: 1;
  pointer-events: all;
  transform: translateX(-50%) translateY(0);
}

.dropdown a {
  display: block;
  text-decoration: none;
  color: var(--text-body);
  font-size: 0.85rem;
  padding: 9px 13px;
  border-radius: 6px;
  transition: background var(--dur), color var(--dur);
}

.dropdown a:hover {
  background: var(--sky);
  color: var(--navy);
}

/* Nav CTA */
.nav-cta {
  text-decoration: none;
  background: var(--navy);
  color: var(--white);
  font-size: 0.875rem;
  font-weight: 600;
  padding: 10px 22px;
  border-radius: 50px;
  white-space: nowrap;
  flex-shrink: 0;
  transition: background var(--dur), box-shadow var(--dur), transform var(--dur);
}

.nav-cta:hover {
  background: var(--navy-mid);
  box-shadow: 0 6px 20px rgba(13, 27, 75, 0.25);
  transform: translateY(-1px);
}

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  margin-inline-start: auto;
  border-radius: 8px;
  transition: background var(--dur);
}

.nav-toggle:hover {
  background: var(--sky);
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: transform var(--dur) var(--ease), opacity var(--dur);
}

.nav-toggle.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle.open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.nav-toggle.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}


/* ================================================
   HERO SECTION
   ================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  padding-top: var(--nav-h);
  background: var(--white);
  overflow: hidden;
}

/* â”€â”€ Decorative background â”€â”€ */
.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

/* Soft gradient wash */
.hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 70% 40%, rgba(37, 99, 235, 0.06) 0%, transparent 70%),
    radial-gradient(ellipse 40% 60% at 10% 80%, rgba(13, 27, 75, 0.04) 0%, transparent 60%);
}

/* Subtle dot grid */
.bg-grid {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(13, 27, 75, 0.07) 1px, transparent 1px);
  background-size: 28px 28px;
  mask-image: linear-gradient(to right, transparent, white 20%, white 80%, transparent);
}

/* No extra orbs â€” keeping it clean */

/* â”€â”€ Main grid â”€â”€ */
.hero-container {
  position: relative;
  z-index: 1;
  max-width: var(--max-w);
  width: 100%;
  margin: 0 auto;
  padding: 5rem 1.5rem 4rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  flex: 1;
}

/* â”€â”€ Left: copy â”€â”€ */
.hero-content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

/* Eyebrow badge */
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--sky);
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 7px 16px;
  border-radius: 50px;
  width: fit-content;
  animation: fadeUp 0.6s 0.1s var(--ease) both;
}

.eyebrow-dot {
  width: 7px;
  height: 7px;
  background: var(--accent);
  border-radius: 50%;
  animation: blink 2s ease-in-out infinite;
}

@keyframes blink {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.3;
  }
}

/* Heading */
.hero-heading {
  font-family: var(--font-head);
  line-height: 1.08;
  color: var(--navy);
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.heading-line {
  display: block;
  font-size: clamp(2.5rem, 4.5vw, 4.2rem);
  font-weight: 800;
  letter-spacing: -0.025em;
}

.heading-line.line-1 {
  animation: fadeUp 0.7s 0.15s var(--ease) both;
}

.heading-line.line-2 {
  animation: fadeUp 0.7s 0.25s var(--ease) both;
}

.heading-line.line-3 {
  animation: fadeUp 0.7s 0.35s var(--ease) both;
  color: var(--accent);
}

/* Sub text */
.hero-subtext {
  color: var(--text-muted);
  font-size: clamp(0.95rem, 1.4vw, 1.05rem);
  line-height: 1.8;
  max-width: 480px;
  animation: fadeUp 0.7s 0.45s var(--ease) both;
}

.hero-subtext strong {
  color: var(--text-dark);
  font-weight: 600;
}

/* Service pillars */
.hero-pillars {
  display: flex;
  align-items: stretch;
  gap: 0.75rem;
  animation: fadeUp 0.7s 0.55s var(--ease) both;
  flex-wrap: wrap;
}

.pillar {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 12px 18px;
  font-family: var(--font-head);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--navy);
  cursor: default;
  transition: border-color var(--dur), background var(--dur), transform var(--dur);
}

.pillar:hover {
  background: var(--sky);
  border-color: var(--accent);
  transform: translateY(-2px);
}

.pillar-icon {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--sky);
  border-radius: 8px;
  flex-shrink: 0;
}

.pillar-icon svg {
  width: 17px;
  height: 17px;
  stroke: var(--accent);
}

/* CTA buttons */
.hero-actions {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  flex-wrap: wrap;
  animation: fadeUp 0.7s 0.65s var(--ease) both;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  font-size: 0.925rem;
  font-weight: 600;
  padding: 13px 26px;
  border-radius: 50px;
  transition: all var(--dur) var(--ease);
  position: relative;
  overflow: hidden;
  cursor: pointer;
  white-space: nowrap;
}

.btn svg {
  width: 17px;
  height: 17px;
  flex-shrink: 0;
  transition: transform var(--dur);
}

.btn-primary {
  background: var(--navy);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(13, 27, 75, 0.25);
}

.btn-primary:hover {
  background: var(--navy-mid);
  box-shadow: 0 8px 28px rgba(13, 27, 75, 0.35);
  transform: translateY(-2px);
}

.btn-primary:hover svg {
  transform: translateX(3px);
}

.btn-outline {
  background: transparent;
  color: var(--navy);
  border: 1.5px solid var(--navy);
}

.btn-outline:hover {
  background: var(--navy);
  color: var(--white);
  transform: translateY(-2px);
}



/* â”€â”€ Right: visual panel â”€â”€ */
.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeLeft 0.8s 0.3s var(--ease) both;
}

/* Navy card panel */
.visual-card {
  position: relative;
  width: 100%;
  max-width: 480px;
  background: var(--navy);
  border-radius: 24px;
  padding: 2.5rem 2rem;
  overflow: hidden;
  box-shadow:
    0 30px 70px rgba(13, 27, 75, 0.22),
    0 10px 30px rgba(13, 27, 75, 0.14);
}

/* Inner grid pattern */
.visual-card::before {
  content: '';
  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: 36px 36px;
  border-radius: inherit;
}

/* Glow orb inside card */
.visual-card::after {
  content: '';
  position: absolute;
  top: -80px;
  right: -80px;
  width: 260px;
  height: 260px;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.35), transparent 70%);
  pointer-events: none;
}

/* Hero image — crossfade slideshow wrapper */
.hero-img-wrap {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 260px;
  margin-bottom: 1.75rem;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.hero-img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 14px;
}

/* Stack both slides in the same frame */
.hero-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-slide-1 {
  z-index: 2;
  animation: heroCrossfade 5s ease-in-out infinite;
}

.hero-slide-2 {
  z-index: 1;
  animation: heroCrossfade 5s ease-in-out infinite;
  animation-delay: -2.5s;
}

@keyframes heroCrossfade {
  0%,  40% { opacity: 1; }
  50%, 90% { opacity: 0; }
  100%     { opacity: 1; }
}

/* Dot indicators */
.slide-dots {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 6px;
  z-index: 5;
}

.slide-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
}

.slide-dot-1 {
  animation: dotActive 5s ease-in-out infinite;
}

.slide-dot-2 {
  animation: dotActive 5s ease-in-out infinite;
  animation-delay: -2.5s;
}

@keyframes dotActive {
  0%,  40% { background: rgba(255, 255, 255, 0.9); transform: scale(1.25); }
  50%, 90% { background: rgba(255, 255, 255, 0.3); transform: scale(1);    }
  100%     { background: rgba(255, 255, 255, 0.9); transform: scale(1.25); }
}

/* Stats row inside card */
.card-stats {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  overflow: hidden;
  margin-bottom: 1.5rem;
}

.card-stat {
  background: rgba(255, 255, 255, 0.04);
  padding: 1.1rem 0.75rem;
  text-align: center;
  transition: background var(--dur);
}

.card-stat:hover {
  background: rgba(255, 255, 255, 0.08);
}

.card-stat strong {
  display: block;
  font-family: var(--font-head);
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
  margin-bottom: 4px;
}

.card-stat span {
  font-size: 0.72rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.3;
}

/* Route/service chips inside card */
.card-chips {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.775rem;
  font-weight: 500;
  padding: 6px 12px;
  border-radius: 50px;
  transition: background var(--dur), border-color var(--dur);
}

.chip:hover {
  background: rgba(37, 99, 235, 0.3);
  border-color: rgba(37, 99, 235, 0.5);
  color: var(--white);
}

.chip-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
}

/* Floating badge on corner of visual card */
.cert-badge {
  position: absolute;
  top: -16px;
  right: -16px;
  background: var(--white);
  border: 2px solid var(--border);
  box-shadow: 0 8px 24px rgba(13, 27, 75, 0.14);
  border-radius: 14px;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  animation: floatBadge 4s ease-in-out infinite alternate;
  z-index: 2;
}

.cert-badge-icon {
  font-size: 1.4rem;
}

.cert-badge-text strong {
  display: block;
  font-family: var(--font-head);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1;
}

.cert-badge-text span {
  font-size: 0.7rem;
  color: var(--text-muted);
}

.cert-badge-2 {
  top: auto;
  bottom: -16px;
  right: auto;
  left: -16px;
  animation-delay: 2s;
}

@keyframes floatBadge {
  from {
    transform: translateY(0);
  }

  to {
    transform: translateY(-10px);
  }
}


/* â”€â”€ Scroll cue â”€â”€ */
.scroll-cue {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  animation: fadeUp 1s 1.2s var(--ease) both;
}

.scroll-label {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.scroll-mouse {
  width: 20px;
  height: 32px;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  display: flex;
  justify-content: center;
  padding-top: 5px;
}

.scroll-dot {
  width: 3px;
  height: 7px;
  background: var(--accent);
  border-radius: 2px;
  animation: scrollBounce 2s ease-in-out infinite;
}

@keyframes scrollBounce {

  0%,
  100% {
    transform: translateY(0);
    opacity: 1;
  }

  50% {
    transform: translateY(7px);
    opacity: 0.35;
  }
}


/* â”€â”€ Entrance keyframes â”€â”€ */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeLeft {
  from {
    opacity: 0;
    transform: translateX(32px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}


/* ================================================
   RESPONSIVE â€” Tablet  â‰¤ 1024px
   ================================================ */
@media (max-width: 1024px) {
  .hero-container {
    grid-template-columns: 1fr;
    padding: 2.5rem 1.5rem 5rem;
    gap: 2.5rem;
    text-align: center;
  }

  .hero-content {
    align-items: center;
  }

  .hero-subtext {
    max-width: 600px;
  }

  .hero-pillars {
    justify-content: center;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-trust {
    justify-content: center;
  }

  .hero-visual {
    width: 100%;
    justify-content: center;
  }

  .visual-card {
    max-width: 520px;
  }

  .cert-badge {
    top: -12px;
    right: 8px;
  }

  .cert-badge-2 {
    bottom: -12px;
    left: 8px;
  }
}


/* ================================================
   RESPONSIVE â€” Mobile  â‰¤ 768px
   ================================================ */
@media (max-width: 768px) {
  :root {
    --nav-h: 60px;
  }

  /* â”€â”€ Logo â”€â”€ */
  .logo-img {
    height: 38px;
  }

  /* â”€â”€ Mobile nav toggle â”€â”€ */
  .nav-toggle {
    display: flex;
  }

  .nav-cta {
    display: none;
  }

  .nav-links {
    position: fixed;
    top: var(--nav-h);
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 0.5rem 0.75rem 1rem;
    border-top: 1px solid var(--border);
    box-shadow: 0 16px 40px rgba(13, 27, 75, 0.12);
    transform: translateY(-110%);
    opacity: 0;
    transition: transform 0.35s var(--ease), opacity 0.25s var(--ease);
    overflow-y: auto;
    max-height: calc(100svh - var(--nav-h));
    z-index: 800;
  }

  .nav-links.open {
    transform: translateY(0);
    opacity: 1;
  }

  /* Inline dropdowns on mobile — accordion style */
  .has-dropdown {
    position: static;
  }

  .dropdown {
    position: static;
    transform: none !important;
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    pointer-events: none;
    box-shadow: none;
    border: none;
    background: var(--sky);
    border-radius: 8px;
    margin: 0 0 0 8px;
    padding: 0;
    transition: opacity 0.25s ease, max-height 0.3s ease, padding 0.2s ease, margin 0.2s ease;
  }

  /* Expanded state toggled by JS */
  .has-dropdown.dropdown-open .dropdown {
    opacity: 1;
    max-height: 500px;
    pointer-events: all;
    padding: 4px;
    margin: 2px 0 6px 8px;
  }

  /* Rotate chevron when open */
  .has-dropdown.dropdown-open > a svg {
    transform: rotate(180deg);
  }

  .has-dropdown > a svg {
    transition: transform 0.25s ease;
  }

  .nav-link {
    justify-content: space-between;
    padding: 11px 10px;
    color: var(--navy);
    font-size: 0.9rem;
    border-radius: 8px;
  }

  .nav-link:hover {
    background: var(--sky);
  }

  /* â”€â”€ Hero layout â”€â”€ */
  .hero-container {
    padding: 2rem 1.25rem 4rem;
    gap: 2rem;
  }

  /* Heading */
  .heading-line {
    font-size: clamp(1.9rem, 8vw, 2.8rem);
  }

  /* Subtext */
  .hero-subtext {
    font-size: 0.9rem;
    line-height: 1.7;
  }

  /* Pillars */
  .hero-pillars {
    gap: 0.5rem;
  }

  .pillar {
    padding: 9px 14px;
    font-size: 0.85rem;
    flex: 1 1 auto;
    justify-content: center;
  }

  /* CTAs â€” stack side by side still OK at 768; stack fully at 480 */
  .hero-actions {
    gap: 0.75rem;
  }

  /* Trust */
  .hero-trust {
    gap: 0.875rem;
  }

  /* Visual card */
  .hero-visual {
    padding: 0 0.5rem;
  }

  .visual-card {
    padding: 1.5rem 1.25rem;
    border-radius: 18px;
  }

  .globe-ring {
    width: 140px;
    height: 140px;
  }

  .globe-inner {
    width: 108px;
    height: 108px;
  }

  .globe-core {
    width: 78px;
    height: 78px;
  }

  .globe-svg {
    width: 60px;
    height: 60px;
  }

  .globe-wrap {
    margin-bottom: 1.25rem;
  }

  .card-stat strong {
    font-size: 1.25rem;
  }

  .card-stat {
    padding: 1rem 0.5rem;
  }

  /* Hide floating badges on mobile to avoid overflow */
  .cert-badge,
  .cert-badge-2 {
    display: none;
  }
}


/* ================================================
   RESPONSIVE â€” Small mobile â‰¤ 480px
   ================================================ */
@media (max-width: 480px) {
  :root {
    --nav-h: 56px;
  }

  .logo-img {
    height: 34px;
  }

  /* Hero */
  .hero-container {
    padding: 1.5rem 1rem 3.5rem;
    gap: 1.75rem;
  }

  .heading-line {
    font-size: clamp(1.75rem, 9vw, 2.4rem);
  }

  /* Buttons â€” full width stacked */
  .hero-actions {
    flex-direction: column;
    width: 100%;
  }

  .btn {
    width: 100%;
    justify-content: center;
    padding: 13px 20px;
  }

  /* Trust â€” wrap into 2 columns */
  .hero-trust {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.6rem;
    justify-items: center;
  }

  .trust-divider {
    display: none;
  }

  /* Pillars â€” all three in a row */
  .hero-pillars {
    gap: 0.4rem;
  }

  .pillar {
    flex: 1 1 0;
    padding: 8px 8px;
    font-size: 0.8rem;
  }

  .pillar-icon {
    width: 30px;
    height: 30px;
  }

  .pillar-icon svg {
    width: 14px;
    height: 14px;
  }

  /* Visual card */
  .visual-card {
    padding: 1.25rem 1rem;
    border-radius: 16px;
  }

  .globe-ring {
    width: 120px;
    height: 120px;
  }

  .globe-inner {
    width: 92px;
    height: 92px;
  }

  .globe-core {
    width: 66px;
    height: 66px;
  }

  .globe-svg {
    width: 52px;
    height: 52px;
  }

  .globe-wrap {
    margin-bottom: 1rem;
  }

  .card-stat {
    padding: 0.75rem 0.4rem;
  }

  .card-stat strong {
    font-size: 1.05rem;
  }

  .card-stat span {
    font-size: 0.62rem;
  }

  .card-chips {
    gap: 0.35rem;
  }

  .chip {
    font-size: 0.7rem;
    padding: 5px 10px;
  }
}


/* ================================================
   RESPONSIVE — Extra-small ≤ 360px
   ================================================ */
@media (max-width: 360px) {
  :root { --nav-h: 54px; }

  /* Navbar */
  .logo-img { height: 30px; }
  .nav-link { font-size: 0.85rem; padding: 9px 8px; }

  /* Hero text */
  .heading-line { font-size: 1.6rem; }
  .hero-subtext { font-size: 0.83rem; }

  /* Hero CTAs */
  .btn { font-size: 0.83rem; padding: 11px 16px; }

  /* Stats strip */
  .hero-stats { gap: 0.5rem; }
  .stat-value { font-size: 1.6rem; }
  .stat-label { font-size: 0.65rem; }

  /* Pillars */
  .pillar { font-size: 0.75rem; padding: 7px 6px; }

  /* Footer */
  .footer-top .footer-inner { gap: 1.5rem; }
  .footer-col-title { font-size: 0.78rem; }
  .footer-links a { font-size: 0.82rem; }
  .footer-copy { font-size: 0.72rem; }
}


/* ================================================
   WHATSAPP FLOATING BUTTON
   ================================================ */
.wa-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 56px;
  height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  box-shadow: 0 4px 24px rgba(37, 211, 102, 0.45);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
  text-decoration: none;
}

.wa-float:hover {
  transform: translateY(-4px) scale(1.08);
  box-shadow: 0 10px 32px rgba(37, 211, 102, 0.55);
}

.wa-float svg {
  width: 30px;
  height: 30px;
  fill: #fff;
  flex-shrink: 0;
}

/* Tooltip */
.wa-tooltip {
  position: absolute;
  right: calc(100% + 14px);
  bottom: 50%;
  transform: translateY(50%) translateX(6px);
  background: #25D366;
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  font-weight: 500;
  white-space: nowrap;
  padding: 7px 13px;
  border-radius: 20px;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.14);
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.wa-tooltip.wa-tooltip--visible {
  opacity: 1;
  transform: translateY(50%) translateX(0);
}

.wa-tooltip::after {
  content: '';
  position: absolute;
  right: -7px;
  top: 50%;
  transform: translateY(-50%);
  border: 5px solid transparent;
  border-left-color: #25D366;
  border-right-width: 0;
}

@media (max-width: 480px) {
  .wa-float {
    width: 48px;
    height: 48px;
    bottom: 1.25rem;
    right: 1.25rem;
  }
  .wa-float svg {
    width: 26px;
    height: 26px;
  }
  .wa-tooltip {
    font-size: 0.75rem;
    padding: 6px 11px;
    right: calc(100% + 10px);
  }
}
