/* ============================================================
   BALANCEFLOW SERVICES — MAIN STYLESHEET
   ============================================================ */

/* ---- Reset & Variables ---- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  /* Brand Colours — provided by client */
  --primary:        #45b8ae;   /* teal */
  --primary-dark:   #2e8a81;   /* darkened teal for gradients */
  --primary-light:  #52a09f;   /* muted teal */
  --slate:          #566f73;   /* slate/dark accent */
  --slate-dark:     #3a4e51;   /* darker slate */
  --accent:         #45b8ae;   /* use teal as accent too */
  --accent-light:   #7dd4ce;   /* lighter teal */
  --accent-pale:    #e8f7f6;   /* very pale teal */

  /* Backgrounds */
  --bg-white:       #FFFFFF;
  --bg-light:       #f4fafa;
  --bg-dark:        #1e3336;   /* dark slate-teal for dark sections */

  /* Text */
  --text-dark:      #0d1f21;
  --text-mid:       #566f73;
  --text-light:     #8dadb0;

  /* UI */
  --border:         #c8e6e4;
  --shadow-sm:      0 2px 8px rgba(69,184,174,0.10);
  --shadow-md:      0 6px 24px rgba(69,184,174,0.14);
  --shadow-lg:      0 12px 48px rgba(69,184,174,0.20);
  --radius-sm:      6px;
  --radius:         14px;
  --radius-lg:      22px;
  --transition:     all 0.28s ease;
  --section-pad:    5.5rem 1.5rem;
  --max-width:      1180px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--text-dark);
  background: var(--bg-white);
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a  { text-decoration: none; color: inherit; transition: var(--transition); }
ul { list-style: none; }

/* ---- Typography ---- */
h1, h2, h3, h4 {
  font-family: 'Montserrat', sans-serif;
  line-height: 1.2;
  color: var(--text-dark);
}
h1 { font-size: clamp(2.2rem, 5vw,  3.8rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); }
h3 { font-size: clamp(1.1rem, 2vw,  1.35rem); }
p  { color: var(--text-mid); line-height: 1.8; }

/* ---- Utilities ---- */
.container { max-width: var(--max-width); margin: 0 auto; padding: 0 1.5rem; }
.text-center { text-align: center; }

.section-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--accent-pale);
  border: 1px solid rgba(201,168,76,0.3);
  padding: 0.35rem 1rem;
  border-radius: 50px;
  margin-bottom: 1rem;
}

.section-header { margin-bottom: 3.5rem; }
.section-header p { font-size: 1.05rem; max-width: 580px; }
.section-header.text-center p { margin: 0 auto; }

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  border-radius: var(--radius-sm);
  font-size: 0.93rem;
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: var(--primary-dark);
  color: #fff;
  border-color: var(--primary-dark);
}
.btn-primary:hover {
  background: var(--primary);
  border-color: var(--primary);
  transform: translateY(-2px);
  box-shadow: 0 6px 22px rgba(201,168,76,0.4);
}

.btn-outline {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.55);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.1);
  border-color: #fff;
}

.btn-outline-dark {
  background: transparent;
  color: var(--primary);
  border-color: var(--primary);
}
.btn-outline-dark:hover {
  background: var(--primary);
  color: #fff;
}


/* ============================================================
   HEADER / NAV
   ============================================================ */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 200;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: var(--transition);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.nav-logo img {
  height: 42px;
  width: auto;
  object-fit: contain;
}
.nav-logo:hover { opacity: 0.8; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.2rem;
}
.nav-links a {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-mid);
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 2px;
  background: var(--accent);
  transition: width 0.3s ease;
}
.nav-links a:hover { color: var(--primary); }
.nav-links a:hover::after { width: 100%; }

.nav-cta { padding: 0.6rem 1.5rem; font-size: 0.88rem; color: #fff; }
/* Specificity fix — .nav-links a overrides .nav-cta; this wins */
a.btn.nav-cta, a.btn-primary.nav-cta { color: #fff; }

/* Mobile toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 6px;
}
.nav-toggle span {
  display: block;
  width: 25px; height: 2px;
  background: var(--primary);
  border-radius: 2px;
  transition: var(--transition);
}


/* ============================================================
   HERO
   ============================================================ */
.hero {
  padding: 9rem 1.5rem 5rem;
  background: linear-gradient(140deg, var(--primary) 0%, var(--primary-dark) 55%, var(--slate-dark) 100%);
  position: relative;
  overflow: hidden;
  min-height: 92vh;
  display: flex;
  align-items: center;
}

/* decorative blobs */
.hero::before {
  content: '';
  position: absolute; top: -20%; right: -8%;
  width: 650px; height: 650px; border-radius: 50%;
  background: radial-gradient(circle, rgba(201,168,76,0.14) 0%, transparent 68%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute; bottom: -25%; left: -5%;
  width: 500px; height: 500px; border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,0.05) 0%, transparent 70%);
  pointer-events: none;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  background: rgba(201,168,76,0.18);
  border: 1px solid rgba(201,168,76,0.4);
  color: var(--accent-light);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.4rem 1rem;
  border-radius: 50px;
  margin-bottom: 1.5rem;
}

.hero h1 { color: #fff; margin-bottom: 1.25rem; }
.hero h1 em { color: rgba(255,255,255,0.70); font-style: normal; font-weight: 300; }

.hero-subtitle {
  font-size: 1.08rem;
  color: rgba(255,255,255,0.76);
  max-width: 470px;
  margin-bottom: 2.25rem;
  line-height: 1.85;
}

.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

.hero-stats {
  display: flex;
  gap: 2.5rem;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.14);
}
.hero-stat strong {
  display: block;
  font-size: 1.8rem;
  font-family: 'Montserrat', sans-serif;
  color: var(--accent-light);
  line-height: 1;
  margin-bottom: 0.3rem;
}
.hero-stat span { font-size: 0.8rem; color: rgba(255,255,255,0.78); }

/* Hero image */
.hero-image-col { position: relative; }
.hero-image-col img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.hero-float-badge {
  position: absolute;
  bottom: 2rem; left: -1.5rem;
  background: #fff;
  border-radius: var(--radius);
  padding: 1rem 1.25rem;
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 0.8rem;
}
.hfb-icon {
  width: 44px; height: 44px;
  background: var(--accent-pale);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}
.hfb-text strong { display: block; font-size: 0.9rem; color: var(--text-dark); }
.hfb-text small  { font-size: 0.73rem; color: var(--text-light); }


/* ============================================================
   WHY BALANCEFLOW
   ============================================================ */
.why-us { padding: var(--section-pad); background: var(--bg-white); }

.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}

.trust-card {
  padding: 2rem;
  background: var(--bg-light);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  transition: var(--transition);
}
.trust-card:hover {
  border-color: var(--primary-light);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.trust-icon {
  width: 50px; height: 50px;
  background: linear-gradient(135deg, var(--slate), var(--primary));
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.35rem;
  margin-bottom: 1.25rem;
}

.trust-card h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.trust-card p { font-size: 0.88rem; }


/* ============================================================
   CLIENT PROCESS
   ============================================================ */
.process {
  padding: var(--section-pad);
  background: linear-gradient(140deg, var(--primary-dark), var(--primary));
}
.process .section-tag {
  background: rgba(255,255,255,0.15);
  border-color: rgba(255,255,255,0.3);
  color: #fff;
}
.process .section-header h2 { color: #fff; }
.process .section-header p   { color: rgba(255,255,255,0.82); }

.process-steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  position: relative;
}
.process-steps::before {
  content: '';
  position: absolute;
  top: 27px; left: 9%; right: 9%;
  height: 2px;
  background: rgba(201,168,76,0.25);
  z-index: 0;
}

.process-step {
  text-align: center;
  padding: 0 0.75rem;
  position: relative;
  z-index: 1;
}

.step-num {
  width: 54px; height: 54px;
  border-radius: 50%;
  background: #fff;
  color: var(--primary-dark);
  font-size: 1.1rem;
  font-weight: 700;
  font-family: 'Montserrat', sans-serif;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.25rem;
  box-shadow: 0 4px 16px rgba(0,0,0,0.18);
}

.process-step h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.92rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.45rem;
}
.process-step p {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.78);
  line-height: 1.65;
}


/* ============================================================
   SERVICES
   ============================================================ */
.services { padding: var(--section-pad); background: var(--bg-light); }

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.75rem;
}

.service-card {
  background: var(--bg-white);
  border-radius: var(--radius);
  padding: 2.25rem;
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  transition: var(--transition);
}
.service-card:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.service-icon {
  width: 58px; height: 58px;
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 1.5rem;
}
.icon-teal { background: linear-gradient(135deg, #d4f0ee 0%, #9ed8d3 100%); }
.icon-gold { background: linear-gradient(135deg, #fdf0c8 0%, #eed98a 100%); }
.icon-navy { background: linear-gradient(135deg, #dae5f5 0%, #adc5e8 100%); }
.icon-sage { background: linear-gradient(135deg, #d8edd8 0%, #a8d1a8 100%); }

.service-card h3 {
  font-size: 1.18rem;
  margin-bottom: 0.65rem;
}
.service-card > p {
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
  flex: 1;
}
.service-list { display: flex; flex-direction: column; gap: 0.45rem; }
.service-list li {
  font-size: 0.86rem;
  color: var(--text-mid);
  display: flex; align-items: flex-start; gap: 0.6rem;
}
.service-list li::before {
  content: '✓';
  color: var(--primary);
  font-weight: 800;
  flex-shrink: 0;
  margin-top: 0.05rem;
}
.service-rate {
  display: inline-block;
  margin-top: 1.5rem;
  font-size: 0.8rem;
  font-weight: 700;
  color: #9a6038;
  background: var(--sand-pale);
  border: 1px solid rgba(201,149,106,0.28);
  padding: 0.35rem 0.85rem;
  border-radius: 50px;
}


/* ============================================================
   PACKAGES
   ============================================================ */
.packages { padding: var(--section-pad); background: var(--bg-white); }

.packages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
  align-items: start;
}

.package-card {
  background: var(--bg-light);
  border: 2px solid var(--border);
  border-radius: var(--radius);
  padding: 2.25rem;
  text-align: center;
  position: relative;
  transition: var(--transition);
}
.package-card:hover { box-shadow: var(--shadow-md); }

.package-card.featured {
  background: var(--primary);
  border-color: var(--primary);
  transform: scale(1.04);
  box-shadow: var(--shadow-lg);
}

.pkg-badge {
  position: absolute;
  top: -0.85rem; left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: var(--bg-dark);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.3rem 1.1rem;
  border-radius: 50px;
  white-space: nowrap;
}

.package-card h3 {
  font-size: 1.3rem;
  margin-bottom: 0.4rem;
  color: var(--text-dark);
}
.package-card.featured h3 { color: #fff; }

.pkg-ideal {
  font-size: 0.8rem;
  color: var(--text-light);
  margin-bottom: 1.75rem;
  min-height: 2.5em;
}
.package-card.featured .pkg-ideal { color: rgba(255,255,255,0.94); }

.pkg-price { margin-bottom: 1.75rem; }
.pkg-price .from {
  font-size: 0.72rem;
  color: var(--text-light);
  display: block;
  margin-bottom: 0.2rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.package-card.featured .pkg-price .from { color: rgba(255,255,255,0.90); }
.pkg-price strong {
  font-size: 2.4rem;
  font-family: 'Montserrat', sans-serif;
  color: var(--primary);
  font-weight: 700;
  line-height: 1;
}
.package-card.featured .pkg-price strong { color: #ffffff; }
.pkg-price .period { font-size: 0.82rem; color: var(--text-light); }
.package-card.featured .pkg-price .period { color: rgba(255,255,255,0.92); }

.pkg-divider {
  border: none;
  border-top: 1px solid var(--border);
  margin: 0 0 1.5rem;
}
.package-card.featured .pkg-divider { border-color: rgba(255,255,255,0.18); }

.pkg-features {
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  margin-bottom: 2rem;
}
.pkg-features li {
  font-size: 0.87rem;
  color: var(--text-mid);
  display: flex; align-items: flex-start; gap: 0.55rem;
}
.pkg-features li::before {
  content: '✓';
  color: var(--primary-light);
  font-weight: 800;
  flex-shrink: 0;
  margin-top: 0.05rem;
}
.package-card.featured .pkg-features li { color: #fff; }
.package-card.featured .pkg-features li::before { color: var(--accent-light); }

.pkg-note {
  font-size: 0.75rem;
  font-style: italic;
  color: var(--text-light);
  text-align: center;
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px dashed var(--border);
}


/* ============================================================
   INDUSTRIES
   ============================================================ */
.industries { padding: var(--section-pad); background: var(--bg-light); }

.industries-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin-top: 2.5rem;
}

.industry-pill {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  background: var(--bg-white);
  border: 1.5px solid var(--border);
  border-radius: 50px;
  padding: 0.7rem 1.5rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-dark);
  transition: var(--transition);
  cursor: default;
}
.industry-pill:hover {
  border-color: var(--primary);
  color: var(--primary);
  box-shadow: var(--shadow-sm);
  transform: translateY(-2px);
}
.industry-pill .pill-icon { font-size: 1.1rem; }


/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-banner {
  padding: 5.5rem 1.5rem;
  background: linear-gradient(140deg, var(--primary-dark), var(--slate-dark) 80%);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 900px; height: 900px;
  background: radial-gradient(circle, rgba(201,168,76,0.1) 0%, transparent 65%);
  pointer-events: none;
}
.cta-banner h2 { color: #fff; position: relative; z-index: 1; margin-bottom: 1rem; }
.cta-banner > .container > p {
  color: rgba(255,255,255,0.82);
  max-width: 480px;
  margin: 0 auto 2rem;
  font-size: 1rem;
  position: relative; z-index: 1;
}
.cta-actions {
  display: flex; gap: 1rem; justify-content: center;
  flex-wrap: wrap; position: relative; z-index: 1;
}
.cta-contact-strip {
  display: flex; gap: 2.5rem; justify-content: center;
  flex-wrap: wrap; margin-top: 2.5rem;
  position: relative; z-index: 1;
}
.cta-contact-item {
  display: flex; align-items: center; gap: 0.5rem;
  color: rgba(255,255,255,0.82); font-size: 0.9rem;
}
.cta-contact-item svg { stroke: rgba(255,255,255,0.60); flex-shrink: 0; }
.cta-contact-item a { color: var(--accent-light); }
.cta-contact-item a:hover { text-decoration: underline; }


/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--bg-dark);
  padding: 4rem 1.5rem 1.75rem;
  border-top: none;
  position: relative;
}
.site-footer::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent 0%, var(--sand) 40%, var(--sand-light) 50%, var(--sand) 60%, transparent 100%);
  opacity: 0.75;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  margin-bottom: 1.75rem;
}
.footer-logo img {
  height: 36px;
  width: auto;
  filter: brightness(0) invert(1);
  opacity: 0.85;
  margin-bottom: 1rem;
}
.footer-brand p {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.68);
  line-height: 1.75;
  max-width: 290px;
}
.footer-socials { display: flex; gap: 0.75rem; margin-top: 1.5rem; }
.social-link {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: rgba(255,255,255,0.10);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.80);
  transition: var(--transition);
  border: 1px solid rgba(255,255,255,0.12);
}
.social-link svg { width: 18px; height: 18px; }
.social-link:hover {
  background: var(--accent-light);
  border-color: var(--accent-light);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(69,184,174,0.35);
}

.footer-col h4 {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  margin-bottom: 1.25rem;
}
.footer-links { display: flex; flex-direction: column; gap: 0.6rem; }
.footer-links a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.70);
}
.footer-links a:hover { color: var(--accent-light); }

.footer-contact-list { display: flex; flex-direction: column; gap: 0.85rem; }
.footer-contact-list li {
  display: flex; align-items: flex-start; gap: 0.6rem;
  font-size: 0.86rem; color: rgba(255,255,255,0.70);
}
.footer-contact-list li span:first-child { flex-shrink: 0; margin-top: 0.25rem; }
.footer-contact-icon {
  width: 34px; height: 34px;
  border-radius: 50%;
  background: rgba(69,184,174,0.18);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.footer-contact-icon svg {
  stroke: rgba(255,255,255,0.80);
  width: 15px; height: 15px;
}
.footer-contact-list li > div {
  display: flex; flex-direction: column; gap: 0.1rem;
}
.footer-contact-list strong {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: rgba(255,255,255,0.40);
}
.footer-contact-list a { color: rgba(255,255,255,0.72); }
.footer-contact-list a:hover { color: var(--accent-light); }

.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 1rem;
}
.footer-bottom p { font-size: 0.78rem; color: rgba(255,255,255,0.28); }
.footer-credit { width: 100%; text-align: center; margin-top: 0.25rem; }
.footer-credit a {
  color: rgba(255,255,255,0.32);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-credit a:hover { color: var(--accent-light); }


/* ============================================================
   CONTACT PAGE
   ============================================================ */

/* Slim page hero */
.page-hero {
  position: relative;
  padding: 8rem 1.5rem 4rem;
  background: linear-gradient(140deg, var(--primary), var(--primary-dark));
  text-align: center;
  overflow: hidden;
}
.page-hero h1 { color: #fff; margin-bottom: 0.9rem; }
.page-hero p {
  color: rgba(255,255,255,0.68);
  font-size: 1.05rem;
  max-width: 460px;
  margin: 0 auto;
}

/* Contact layout */
.contact-section { padding: var(--section-pad); background: var(--bg-light); }
.contact-grid {
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  gap: 3rem;
  align-items: start;
}

/* Form card */
.form-card {
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  padding: 2.75rem;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
}
.form-card h2 { font-size: 1.7rem; margin-bottom: 0.5rem; }
.form-card > p { font-size: 0.92rem; margin-bottom: 2rem; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { margin-bottom: 1.25rem; }
.form-group label {
  display: block;
  font-size: 0.83rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.45rem;
  letter-spacing: 0.02em;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.78rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 0.92rem;
  font-family: inherit;
  color: var(--text-dark);
  background: var(--bg-white);
  transition: var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--primary-light);
  box-shadow: 0 0 0 3px rgba(26,92,92,0.1);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text-light); }
.form-group input.field-error,
.form-group select.field-error,
.form-group textarea.field-error {
  border-color: #e74c3c;
  box-shadow: 0 0 0 3px rgba(231,76,60,0.12);
}
.form-group textarea { min-height: 130px; resize: vertical; }
.form-group select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%234A6161' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.75rem;
}
.btn-submit { width: 100%; justify-content: center; padding: 1rem; font-size: 1rem; }

/* Info side */
.contact-info-side { display: flex; flex-direction: column; gap: 1.5rem; }
.info-card {
  background: var(--bg-white);
  border-radius: var(--radius);
  padding: 1.85rem;
  border: 1px solid var(--border);
}
.info-card h3 {
  font-size: 1.1rem;
  margin-bottom: 1.25rem;
}
.detail-list { display: flex; flex-direction: column; gap: 1.1rem; }
.detail-item { display: flex; align-items: flex-start; gap: 1rem; }
.detail-icon {
  width: 46px; height: 46px;
  background: linear-gradient(135deg, #d4f0ee 0%, #9ed8d3 100%);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.detail-icon svg {
  stroke: var(--primary-dark);
  width: 20px; height: 20px;
  stroke-width: 2;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.detail-item strong {
  display: block;
  font-size: 0.73rem;
  color: var(--text-light);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  margin-bottom: 0.25rem;
}
.detail-item a,
.detail-item span { font-size: 0.9rem; color: var(--text-dark); }
.detail-item a:hover { color: var(--primary); }

.social-row { display: flex; flex-direction: column; gap: 0.6rem; }
.social-pill {
  display: flex; align-items: center; gap: 0.65rem;
  padding: 0.65rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 0.88rem; font-weight: 500;
  color: var(--text-mid);
  transition: var(--transition);
}
.social-pill:hover { border-color: var(--primary); color: var(--primary); background: var(--bg-light); }

/* Next steps */
.next-steps { padding: var(--section-pad); background: var(--bg-white); }
.next-steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.next-step-card {
  text-align: center;
  padding: 2.25rem 1.75rem;
  border-radius: var(--radius);
  background: var(--bg-light);
  border: 1px solid var(--border);
  transition: var(--transition);
}
.next-step-card:hover { border-color: var(--primary-light); box-shadow: var(--shadow-sm); }
.ns-num {
  width: 54px; height: 54px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--slate), var(--primary));
  color: #fff;
  font-size: 1.1rem; font-weight: 700;
  font-family: 'Montserrat', sans-serif;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.25rem;
}
.next-step-card h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem; font-weight: 700;
  margin-bottom: 0.6rem;
}
.next-step-card p { font-size: 0.88rem; }


/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .hero-inner         { grid-template-columns: 1fr; gap: 2.5rem; }
  .hero-image-col     { max-width: 580px; margin: 0 auto; }
  .trust-grid         { grid-template-columns: repeat(2, 1fr); }
  .process-steps      { grid-template-columns: repeat(3, 1fr); gap: 2rem; }
  .process-steps::before { display: none; }
  .footer-inner       { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  :root { --section-pad: 3.5rem 1.25rem; }

  /* Mobile nav */
  .nav-links {
    display: none;
    position: fixed;
    top: 72px; left: 0; right: 0;
    background: var(--bg-white);
    flex-direction: column;
    gap: 0;
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-md);
  }
  .nav-links.open { display: flex; }
  .nav-links li    { width: 100%; }
  .nav-links a     { display: block; padding: 0.9rem 1.5rem; }
  .nav-links a::after { display: none; }
  .nav-cta-li { padding: 0.75rem 1.5rem; border-top: 1px solid var(--border); }
  .nav-toggle { display: flex; }

  .hero               { min-height: 100svh; padding: 7rem 1.25rem 4rem; }
  .hero-float-badge   { left: 0; }
  .hero-stats         { gap: 1.5rem; }
  .hero-actions       { flex-direction: column; }

  .trust-grid         { grid-template-columns: 1fr; }
  .process-steps      { grid-template-columns: 1fr; gap: 1.5rem; }
  .services-grid      { grid-template-columns: 1fr; }
  .packages-grid      { grid-template-columns: 1fr; }
  .package-card.featured { transform: none; }

  .contact-grid       { grid-template-columns: 1fr; }
  .form-row           { grid-template-columns: 1fr; }
  .next-steps-grid    { grid-template-columns: 1fr; }

  .footer-inner       { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom      { flex-direction: column; text-align: center; }
  .cta-actions        { flex-direction: column; align-items: center; }
  .cta-contact-strip  { gap: 1.25rem; }
}


/* ============================================================
   HERO GRADIENT — lighter teal dominant
   ============================================================ */
.hero {
  background: linear-gradient(
    140deg,
    #72d0ca 0%,
    var(--primary) 30%,
    var(--primary-dark) 65%,
    var(--slate-dark) 100%
  );
}


/* ============================================================
   SCROLL ANIMATIONS
   ============================================================ */
.fade-up {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in {
  opacity: 0;
  transition: opacity 0.7s ease;
}
.fade-in.visible { opacity: 1; }

.fade-left {
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.fade-left.visible { opacity: 1; transform: translateX(0); }

.fade-right {
  opacity: 0;
  transform: translateX(30px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.fade-right.visible { opacity: 1; transform: translateX(0); }

/* Stagger delays for card grids */
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
.delay-5 { transition-delay: 0.5s; }
.delay-6 { transition-delay: 0.6s; }

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce) {
  .fade-up, .fade-in, .fade-left, .fade-right {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}


/* ============================================================
   MODERN SVG ICONS
   ============================================================ */
.icon-wrap {
  width: 54px; height: 54px;
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  margin-bottom: 1.25rem;
}
.icon-wrap svg {
  width: 26px; height: 26px;
  stroke-width: 1.75;
}

/* Trust icon tiles */
.trust-icon {
  width: 54px; height: 54px;
  background: linear-gradient(135deg, var(--slate), var(--primary));
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.25rem;
}
.trust-icon svg {
  width: 26px; height: 26px;
  stroke: #fff;
  fill: none;
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* Service icon tiles */
.service-icon svg {
  width: 28px; height: 28px;
  fill: none;
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.icon-teal svg   { stroke: var(--primary); }
.icon-gold svg   { stroke: #b8860b; }
.icon-navy svg   { stroke: var(--slate); }
.icon-sage svg   { stroke: #3a7a4e; }

/* Blog card */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}
.blog-card {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}
.blog-card:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}
.blog-card-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}
.blog-card-img-placeholder {
  width: 100%; height: 200px;
  display: flex; align-items: center; justify-content: center;
  font-size: 3rem;
}
.blog-card-body { padding: 1.5rem; flex: 1; display: flex; flex-direction: column; }
.blog-cat {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--primary);
  background: var(--accent-pale);
  padding: 0.25rem 0.7rem;
  border-radius: 50px;
  margin-bottom: 0.85rem;
}
.blog-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 0.65rem;
  line-height: 1.4;
  font-family: 'Montserrat', sans-serif;
}
.blog-card p { font-size: 0.87rem; flex: 1; margin-bottom: 1.25rem; }
.blog-meta {
  font-size: 0.78rem;
  color: var(--text-light);
  display: flex; align-items: center; gap: 0.5rem;
  margin-bottom: 1rem;
}
.blog-read-more {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--primary);
  display: inline-flex; align-items: center; gap: 0.35rem;
  margin-top: auto;
}
.blog-read-more:hover { color: var(--primary-dark); gap: 0.55rem; }

@media (max-width: 768px) {
  .blog-grid { grid-template-columns: 1fr; }
}


/* ============================================================
   WHATSAPP FLOATING BUTTON
   ============================================================ */
.whatsapp-fab {
  position: fixed;
  bottom: 1.75rem;
  right: 1.75rem;
  z-index: 500;
  width: 58px; height: 58px;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.45);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  cursor: pointer;
  text-decoration: none;
}
.whatsapp-fab:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 28px rgba(37,211,102,0.6);
}
.whatsapp-fab svg {
  width: 30px; height: 30px;
  fill: #fff;
}
.whatsapp-tooltip {
  position: absolute;
  right: 70px;
  background: var(--bg-dark);
  color: #fff;
  font-size: 0.8rem;
  font-weight: 600;
  padding: 0.45rem 0.9rem;
  border-radius: var(--radius-sm);
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
}
.whatsapp-tooltip::after {
  content: '';
  position: absolute;
  top: 50%; right: -6px;
  transform: translateY(-50%);
  border: 6px solid transparent;
  border-right: none;
  border-left-color: var(--bg-dark);
}
.whatsapp-fab:hover .whatsapp-tooltip { opacity: 1; }


/* ============================================================
   PRIVACY POLICY PAGE
   ============================================================ */
.policy-section { padding: var(--section-pad); background: var(--bg-white); }
.policy-content {
  max-width: 780px;
  margin: 0 auto;
}
.policy-content h2 {
  font-size: 1.4rem;
  margin: 2.5rem 0 0.75rem;
  color: var(--text-dark);
}
.policy-content h2:first-child { margin-top: 0; }
.policy-content p { margin-bottom: 1rem; font-size: 0.95rem; }
.policy-content ul {
  list-style: disc;
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}
.policy-content ul li {
  font-size: 0.95rem;
  color: var(--text-mid);
  margin-bottom: 0.4rem;
  line-height: 1.7;
}
.policy-content a { color: var(--primary); }
.policy-content a:hover { text-decoration: underline; }
.policy-last-updated {
  font-size: 0.82rem;
  color: var(--text-light);
  margin-bottom: 2.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--border);
}


/* ============================================================
   AWARD-WINNING ENHANCEMENTS — 2026
   ============================================================ */

/* ---- Scroll Progress Bar ---- */
#scrollProgress {
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  width: 0%;
  background: linear-gradient(90deg, var(--accent-light), var(--primary), var(--primary-dark));
  z-index: 9999;
  pointer-events: none;
  border-radius: 0 3px 3px 0;
  box-shadow: 0 0 10px rgba(69,184,174,0.65);
  transition: none;
}


/* ---- Grain Texture Overlay ---- */
.grain-overlay {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.72' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 220px;
  opacity: 0.038;
  pointer-events: none;
  z-index: 1;
  mix-blend-mode: screen;
}

/* ---- Floating Hero Orbs ---- */
.hero-orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
  filter: blur(60px);
  will-change: transform;
}
.hero-orb-1 {
  width: 440px; height: 440px;
  top: -12%; right: 3%;
  background: radial-gradient(circle, rgba(125,212,206,0.20) 0%, transparent 70%);
  animation: orb-drift 10s ease-in-out infinite;
}
.hero-orb-2 {
  width: 300px; height: 300px;
  bottom: 3%; left: -4%;
  background: radial-gradient(circle, rgba(255,255,255,0.07) 0%, transparent 70%);
  animation: orb-drift 13s ease-in-out infinite reverse;
}
.hero-orb-3 {
  width: 200px; height: 200px;
  top: 58%; right: 22%;
  background: radial-gradient(circle, rgba(201,168,76,0.14) 0%, transparent 70%);
  filter: blur(40px);
  animation: orb-drift 8s ease-in-out infinite 1.5s;
}
@keyframes orb-drift {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33%       { transform: translate(16px, -22px) scale(1.04); }
  66%       { transform: translate(-12px, 10px) scale(0.97); }
}

/* ---- Nav: shrink on scroll ---- */
.site-header.scrolled .nav-inner { height: 60px; }

/* ---- Hero h1 Line Reveal ---- */
.hero-headline { color: #fff; margin-bottom: 1.25rem; display: block; }
.hero-headline .reveal-line {
  display: block;
  overflow: hidden;
  line-height: 1.15;
}
.hero-headline .reveal-line .inner {
  display: block;
  transform: translateY(105%);
  opacity: 0;
  transition: transform 0.85s cubic-bezier(0.16, 1, 0.3, 1),
              opacity   0.4s  ease;
}
.hero-headline.revealed .reveal-line:nth-child(1) .inner { transform: translateY(0); opacity: 1; transition-delay: 0.08s; }
.hero-headline.revealed .reveal-line:nth-child(2) .inner { transform: translateY(0); opacity: 1; transition-delay: 0.22s; }
.hero-headline em { color: rgba(255,255,255,0.70); font-style: normal; font-weight: 300; }

/* ---- Hero Badge (glassmorphism) ---- */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.55rem 1.2rem;
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.22);
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.90);
  margin-bottom: 1.75rem;
}

/* ---- Hero Float Badge (glassmorphism upgrade) ---- */
.hero-float-badge {
  background: rgba(255,255,255,0.14) !important;
  backdrop-filter: blur(22px) !important;
  -webkit-backdrop-filter: blur(22px) !important;
  border: 1px solid rgba(255,255,255,0.25) !important;
  box-shadow: 0 8px 32px rgba(0,0,0,0.14) !important;
}

/* ---- Hero Scroll Indicator ---- */
.hero-scroll-indicator {
  position: absolute;
  bottom: 2rem; left: 50%;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 0.35rem;
  color: rgba(255,255,255,0.45);
  font-size: 0.65rem; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase;
  z-index: 2;
  animation: indicator-bob 2.2s ease-in-out infinite;
}
.hero-scroll-indicator svg { stroke: rgba(255,255,255,0.45); }
@keyframes indicator-bob {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(7px); }
}
@media (max-width: 768px) { .hero-scroll-indicator { display: none; } }

/* ---- Button Shimmer on hover ---- */
.btn-primary {
  position: relative;
  overflow: hidden;
}
.btn-primary::after {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 55%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.28), transparent);
  transform: skewX(-18deg);
  transition: left 0.55s ease;
  pointer-events: none;
}
.btn-primary:hover::after { left: 160%; }

/* ---- Magnetic button ---- */
.magnetic {
  will-change: transform;
}

/* ---- Enhanced card hover: trust cards ---- */
.trust-card {
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1),
              box-shadow 0.4s ease,
              border-color 0.3s ease;
  will-change: transform;
  transform-style: preserve-3d;
}
.trust-card:hover {
  box-shadow: 0 22px 50px rgba(69,184,174,0.18), 0 0 0 1px rgba(69,184,174,0.15);
  border-color: rgba(69,184,174,0.35);
}

/* ---- Enhanced card hover: service cards ---- */
.service-card {
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1),
              box-shadow 0.4s ease,
              border-color 0.3s ease;
  will-change: transform;
  transform-style: preserve-3d;
}
.service-card:hover {
  box-shadow: 0 28px 60px rgba(69,184,174,0.15);
  border-color: rgba(69,184,174,0.30);
}

/* ---- Package card hover ---- */
.package-card { transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.4s ease; }
.package-card:not(.featured):hover { transform: translateY(-8px); box-shadow: 0 18px 44px rgba(69,184,174,0.14); }
.package-card.featured:hover { transform: scale(1.04); box-shadow: 0 32px 70px rgba(69,184,174,0.28); }

/* ---- Process step number pulse ---- */
@keyframes step-pulse {
  0%, 100% { box-shadow: 0 4px 16px rgba(0,0,0,0.18); }
  50%       { box-shadow: 0 4px 22px rgba(255,255,255,0.35), 0 0 0 7px rgba(255,255,255,0.10); }
}
.process-step.step-active .step-num {
  animation: step-pulse 2.8s ease-in-out infinite;
}

/* ---- Section tag pop animation ---- */
@keyframes tag-pop {
  from { transform: scale(0.82); opacity: 0; }
  to   { transform: scale(1);    opacity: 1; }
}
.section-tag.tag-visible {
  animation: tag-pop 0.45s cubic-bezier(0.34, 1.56, 0.64, 1) both;
}

/* ---- Industries: scrolling marquee ---- */
.industries-marquee {
  position: relative;
  margin-top: 2.5rem;
}
/* Inner clip — keeps overflow:hidden away from the fixed cursor layer */
.industries-clip {
  overflow: hidden;
}
.industries-marquee::before,
.industries-marquee::after {
  content: '';
  position: absolute; top: 0; bottom: 0;
  width: 80px; z-index: 1; pointer-events: none;
}
.industries-marquee::before { left: 0;  background: linear-gradient(to right, var(--bg-light), transparent); }
.industries-marquee::after  { right: 0; background: linear-gradient(to left,  var(--bg-light), transparent); }
.industries-track {
  display: flex;
  gap: 1rem;
  width: max-content;
  animation: marquee-scroll 28s linear infinite;
}
.industries-marquee:hover .industries-track { animation-play-state: paused; }
.industries-track .industry-pill { flex-shrink: 0; }
@keyframes marquee-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ---- Number counter tabular nums ---- */
[data-count] { font-variant-numeric: tabular-nums; }

/* ---- Reduced motion overrides ---- */
@media (prefers-reduced-motion: reduce) {
  .hero-orb, .hero-scroll-indicator, .industries-track,
  .process-step .step-num { animation: none !important; }
  .hero-headline .reveal-line .inner { transform: none !important; opacity: 1 !important; transition: none !important; }
  .btn-primary::after { display: none; }
  #scrollProgress { display: none !important; }
}

/* ============================================================
   HERO REDESIGN — Centred Glass Panel + Animated BG Charts
   ============================================================ */

/* Centred hero layout */
.hero-centered {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 100vh;
  padding-top: 90px; /* clear fixed nav */
}
.hero-centered .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  position: relative;
  z-index: 2;
}

/* Glass panel */
.hero-glass-panel {
  max-width: 800px;
  width: 100%;
  background: rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border: 1px solid rgba(255, 255, 255, 0.20);
  border-radius: 28px;
  padding: 0;
  text-align: center;
  box-shadow:
    0 24px 80px rgba(0, 0, 0, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.22),
    inset 0 -1px 0 rgba(255, 255, 255, 0.06);
  position: relative;
}

/* Content wrapper inside the glass panel */
.hero-panel-content {
  padding: 3.5rem 3.5rem 2.75rem;
  text-align: center;
}

@media (max-width: 600px) {
  .hero-panel-content { padding: 2.25rem 1.5rem 2rem; }
  .hero-glass-panel   { border-radius: 20px; overflow: visible; }
  .hero-glass-panel .hero-headline { font-size: clamp(1.5rem, 6.5vw, 2.1rem); }
}

/* Hero stats row inside glass panel */
.hero-glass-panel .hero-stats {
  justify-content: center;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  padding-top: 1.75rem;
  margin-top: 1.75rem;
  gap: 2.5rem;
}
.hero-glass-panel .hero-stats .hero-stat {
  display: flex; flex-direction: column; align-items: center; gap: 0.2rem;
}
@media (max-width: 480px) {
  .hero-glass-panel .hero-stats { gap: 1.25rem; flex-wrap: wrap; }
}

/* Actions row — centred */
.hero-glass-panel .hero-actions { justify-content: center; }

/* Badge inside glass panel */
.hero-glass-panel .hero-badge { margin-bottom: 1.5rem; }

/* Subtitle: centre the block itself, not just its text */
.hero-glass-panel .hero-subtitle {
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 2rem;
}

/* ---- Animated Background Charts ---- */
.hero-charts {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}
.hero-chart {
  position: absolute;
  opacity: 0.13;
}

/* Shared float keyframes */
@keyframes chart-float-a {
  0%,100% { transform: translate(0, 0)   rotate(0deg); }
  25%      { transform: translate(8px,-12px)  rotate(0.8deg); }
  50%      { transform: translate(14px, 4px)  rotate(-0.5deg); }
  75%      { transform: translate(-5px, 10px) rotate(0.6deg); }
}
@keyframes chart-float-b {
  0%,100% { transform: translate(0, 0)   rotate(0deg); }
  30%      { transform: translate(-10px, 8px) rotate(-1deg); }
  60%      { transform: translate(6px,-14px)  rotate(0.7deg); }
}
@keyframes chart-float-c {
  0%,100% { transform: translateY(-50%) translate(0, 0); }
  40%      { transform: translateY(-50%) translate(10px,-8px); }
  70%      { transform: translateY(-50%) translate(-8px, 6px); }
}
@keyframes chart-float-d {
  0%,100% { transform: translate(0, 0); }
  35%      { transform: translate(-6px,-10px); }
  65%      { transform: translate(10px, 6px); }
}

/* Line chart — bottom-left */
.hero-chart-line {
  bottom: 4%;
  left: -2%;
  width: clamp(260px, 35vw, 480px);
  opacity: 0.44;
  animation: chart-float-a 14s ease-in-out infinite;
}
/* Bar chart — top-right */
.hero-chart-bars {
  top: 5%;
  right: 0%;
  width: clamp(190px, 26vw, 340px);
  opacity: 0.42;
  animation: chart-float-b 11s ease-in-out infinite;
}
/* Donut — mid-left */
.hero-chart-donut {
  top: 50%;
  left: 1%;
  transform: translateY(-50%);
  width: clamp(110px, 14vw, 185px);
  opacity: 0.40;
  animation: chart-float-c 16s ease-in-out infinite;
}
/* Scatter — bottom-right */
.hero-chart-scatter {
  bottom: 10%;
  right: 2%;
  width: clamp(120px, 16vw, 200px);
  opacity: 0.36;
  animation: chart-float-d 12s ease-in-out infinite;
}

/* ---- Live chart animations — continuous real-time effect ---- */

/* LINE CHART: continuously redraws like streaming data */
.chart-line-path {
  stroke-dasharray: 1400;
  stroke-dashoffset: 1400;
  animation: line-live 5s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}
@keyframes line-live {
  0%   { stroke-dashoffset: 1400; opacity: 0.4; }
  4%   { opacity: 1; }
  70%  { stroke-dashoffset: 0;    opacity: 1; }
  86%  { stroke-dashoffset: 0;    opacity: 0.9; }
  92%  { stroke-dashoffset: 0;    opacity: 0.3; }
  93%  { stroke-dashoffset: 1400; opacity: 0; }
  96%  { opacity: 0; }
  100% { stroke-dashoffset: 1400; opacity: 0.4; }
}

/* BAR CHART: each bar cycles heights independently — live data effect */
.hero-chart-bars rect { transform-origin: inherit; }

.hero-chart-bars rect:nth-of-type(1) {
  animation: bar-live-1 7.2s ease-in-out infinite;
}
.hero-chart-bars rect:nth-of-type(2) {
  animation: bar-live-2 6.1s ease-in-out infinite 0.8s;
}
.hero-chart-bars rect:nth-of-type(3) {
  animation: bar-live-3 8.4s ease-in-out infinite 0.3s;
}
.hero-chart-bars rect:nth-of-type(4) {
  animation: bar-live-4 5.8s ease-in-out infinite 1.1s;
}
.hero-chart-bars rect:nth-of-type(5) {
  animation: bar-live-5 7.6s ease-in-out infinite 0.5s;
}

@keyframes bar-live-1 {
  0%    { transform: scaleY(0); }
  8%    { transform: scaleY(1.00); }
  24%   { transform: scaleY(0.70); }
  42%   { transform: scaleY(1.18); }
  60%   { transform: scaleY(0.85); }
  78%   { transform: scaleY(1.28); }
  92%   { transform: scaleY(0.92); }
  100%  { transform: scaleY(1.00); }
}
@keyframes bar-live-2 {
  0%    { transform: scaleY(0); }
  8%    { transform: scaleY(1.00); }
  20%   { transform: scaleY(1.22); }
  38%   { transform: scaleY(0.62); }
  55%   { transform: scaleY(1.15); }
  72%   { transform: scaleY(0.78); }
  88%   { transform: scaleY(1.05); }
  100%  { transform: scaleY(1.00); }
}
@keyframes bar-live-3 {
  0%    { transform: scaleY(0); }
  8%    { transform: scaleY(1.00); }
  22%   { transform: scaleY(0.78); }
  40%   { transform: scaleY(1.20); }
  58%   { transform: scaleY(0.88); }
  76%   { transform: scaleY(1.10); }
  90%   { transform: scaleY(0.95); }
  100%  { transform: scaleY(1.00); }
}
@keyframes bar-live-4 {
  0%    { transform: scaleY(0); }
  8%    { transform: scaleY(1.00); }
  26%   { transform: scaleY(1.30); }
  44%   { transform: scaleY(0.72); }
  62%   { transform: scaleY(1.18); }
  80%   { transform: scaleY(0.85); }
  94%   { transform: scaleY(1.08); }
  100%  { transform: scaleY(1.00); }
}
@keyframes bar-live-5 {
  0%    { transform: scaleY(0); }
  8%    { transform: scaleY(1.00); }
  18%   { transform: scaleY(0.68); }
  36%   { transform: scaleY(1.25); }
  54%   { transform: scaleY(0.80); }
  70%   { transform: scaleY(1.15); }
  86%   { transform: scaleY(0.90); }
  100%  { transform: scaleY(1.00); }
}

/* DONUT: arc cycles percentage like a live KPI gauge */
.chart-donut-arc {
  stroke-dasharray: 283;
  stroke-dashoffset: 283;
  animation: donut-live 9s ease-in-out infinite;
}
@keyframes donut-live {
  0%    { stroke-dashoffset: 283; } /* 0%   — starts empty */
  12%   { stroke-dashoffset: 88;  } /* 69%  */
  28%   { stroke-dashoffset: 68;  } /* 76%  */
  44%   { stroke-dashoffset: 54;  } /* 81%  */
  60%   { stroke-dashoffset: 74;  } /* 74%  */
  75%   { stroke-dashoffset: 60;  } /* 79%  */
  90%   { stroke-dashoffset: 70;  } /* 75%  */
  100%  { stroke-dashoffset: 68;  } /* 76%  */
}

/* SCATTER: dots pulse in/out at staggered intervals — live readings */
.chart-scatter-dot {
  r: 0;
  animation: dot-live 4.5s ease-in-out infinite;
}
.hero-chart-scatter circle:nth-of-type(1) { animation-duration: 4.5s; animation-delay: 0s; }
.hero-chart-scatter circle:nth-of-type(2) { animation-duration: 5.2s; animation-delay: 0.6s; }
.hero-chart-scatter circle:nth-of-type(3) { animation-duration: 4.0s; animation-delay: 1.1s; }
.hero-chart-scatter circle:nth-of-type(4) { animation-duration: 6.0s; animation-delay: 0.3s; }
.hero-chart-scatter circle:nth-of-type(5) { animation-duration: 4.8s; animation-delay: 1.5s; }
.hero-chart-scatter circle:nth-of-type(6) { animation-duration: 5.5s; animation-delay: 0.8s; }
.hero-chart-scatter circle:nth-of-type(7) { animation-duration: 3.8s; animation-delay: 1.9s; }
.hero-chart-scatter circle:nth-of-type(8) { animation-duration: 5.0s; animation-delay: 0.4s; }
@keyframes dot-live {
  0%,100% { r: 0;   opacity: 0; }
  12%     { r: 5;   opacity: 1; }
  55%     { r: 5;   opacity: 0.90; }
  72%     { r: 6.5; opacity: 1; }
  88%     { r: 4;   opacity: 0.65; }
  96%     { r: 0;   opacity: 0; }
}

/* Chart grid lines */
.chart-grid-line {
  stroke: rgba(255, 255, 255, 0.30);
  stroke-width: 1;
  stroke-dasharray: 4 4;
}

/* ---- Why Us section: 2-col intro with photo ---- */
.why-us-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  margin-bottom: 5rem;
}
.why-us-intro-image {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(69, 184, 174, 0.15);
}
.why-us-intro-image img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  object-position: center 22%;
  display: block;
  border-radius: 20px;
}
@media (max-width: 900px) {
  .why-us-intro-image img { height: 300px; object-position: center 18%; }
}
@media (max-width: 480px) {
  .why-us-intro-image img { height: 240px; object-position: center 15%; }
}
.why-us-intro-badge {
  position: absolute;
  bottom: 1.5rem;
  right: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.85rem 1.25rem;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.90);
  border-radius: 14px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
}
.why-us-intro-badge .hfb-icon {
  width: 40px; height: 40px;
  background: var(--accent-pale);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.why-us-intro-badge .hfb-text strong { display: block; font-size: 0.82rem; font-weight: 700; color: var(--text-dark); }
.why-us-intro-badge .hfb-text small  { font-size: 0.72rem; color: var(--text-light); }
.why-us-intro-copy { }
.why-us-intro-copy .section-tag { display: inline-block; margin-bottom: 1rem; }
.why-us-intro-copy h2 { margin-bottom: 1rem; }
.why-us-intro-copy p { color: var(--text-body); line-height: 1.75; margin-bottom: 1.5rem; }
.why-us-intro-copy .btn { margin-top: 0.5rem; }
@media (max-width: 900px) {
  .why-us-intro { grid-template-columns: 1fr; gap: 2.5rem; }
  /* height handled by the responsive rules above for this image */
}

/* ---- Why Us: glass effect on light bg ---- */
.why-us { background: linear-gradient(160deg, rgba(232,247,246,0.9) 0%, rgba(244,250,250,0.6) 50%, var(--bg-white) 100%); }
.trust-card {
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.92);
}

/* ---- Industry pill: SVG icon ---- */
.pill-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 18px; height: 18px;
}
.pill-icon svg {
  width: 16px; height: 16px;
  stroke: var(--primary-dark);
  fill: none;
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* Reduced motion: show charts static, no animation */
@media (prefers-reduced-motion: reduce) {
  .chart-line-path                     { animation: none; stroke-dashoffset: 0; }
  .hero-chart-bars rect                { animation: none !important; transform: scaleY(1); }
  .chart-donut-arc                     { animation: none; stroke-dashoffset: 68; }
  .chart-scatter-dot                   { animation: none; r: 5; }
  .hero-chart, .section-chart          { animation: none !important; }
}

/* ============================================================
   SITE-WIDE CHART BACKGROUNDS — carrying the live data theme
   ============================================================ */

/* Base container: works inside any section with position:relative */
.section-charts {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 0;
}
.section-chart {
  position: absolute;
}

/* Ensure section containers sit above the chart layer */
.process > .container,
.services > .container,
.packages > .container,
.why-us > .container,
.industries > .container {
  position: relative;
  z-index: 1;
}
/* cta-banner uses direct children, not .container */
.cta-banner > * { position: relative; z-index: 1; }
.cta-banner .section-charts { position: absolute; inset: 0; z-index: 0; }

/* ---- Process section (dark bg — more prominent) ---- */
.process { position: relative; }
/* Line chart replaced by bokeh — no rule needed */
.process .section-chart-donut {
  top: 8%; right: 3%;
  width: clamp(90px, 10vw, 145px);
  opacity: 1;
}
.process .section-chart-scatter {
  bottom: 10%; left: 3%;
  width: clamp(80px, 9vw, 130px);
  opacity: 1;
}

/* ---- CTA Banner (dark bg — prominent) ---- */
.cta-banner .section-chart-bars {
  bottom: 0; right: 4%;
  width: clamp(130px, 16vw, 210px);
  opacity: 1; /* colours are pre-tuned in SVG for this dark bg */
}
/* CTA line chart replaced by bokeh — no rule needed */
.cta-banner .section-chart-scatter {
  top: 8%; left: 3%;
  width: clamp(90px, 10vw, 140px);
  opacity: 1;
}

/* ---- Services section (light bg — subtle) ---- */
.services { position: relative; }

.services .section-chart-line {
  bottom: 0; right: 0;
  width: 42%; height: 38%;
  opacity: 0.018;
}
.services .section-chart-scatter {
  top: 6%; left: 1%;
  width: clamp(70px, 8vw, 110px);
  opacity: 0.018;
}

/* ---- Packages section (light bg — subtle) ---- */
.packages { position: relative; }

.packages .section-chart-line {
  bottom: 0; left: 0;
  width: 38%; height: 35%;
  opacity: 0.015;
}
.packages .section-chart-bars {
  top: 5%; right: 2%;
  width: clamp(70px, 8vw, 110px);
  opacity: 0.015;
}

/* ---- Why Us section (light gradient — very subtle) ---- */
.why-us .section-chart-scatter {
  bottom: 8%; right: 2%;
  width: clamp(80px, 9vw, 120px);
  opacity: 0.018;
}
.why-us .section-chart-donut {
  top: 12%; right: 2%;
  width: clamp(60px, 7vw, 100px);
  opacity: 0.018;
}

/* Mobile: hide section charts on small screens to avoid clutter */
@media (max-width: 768px) {
  .section-charts { display: none; }
}

/* ---- Service card warm accent bar ---- */
.service-card::before {
  content: '';
  display: block;
  height: 3px;
  border-radius: var(--radius) var(--radius) 0 0;
  background: linear-gradient(90deg, var(--primary-light), var(--sand-light));
  opacity: 0;
  transition: opacity 0.3s ease;
  margin: -2.25rem -2.25rem 2.25rem;
}
.service-card:hover::before { opacity: 0.7; }

/* ============================================================
   EARTHY ACCENT — sandy/warm beach palette
   ============================================================ */
:root {
  --sand:        #c9956a;   /* warm terracotta sand */
  --sand-light:  #e8c9a8;   /* pale warm sand */
  --sand-pale:   #f5ede4;   /* almost-white warm tint */
}

/* Warm variant section-tag */
.section-tag.warm {
  background: linear-gradient(135deg, rgba(201,149,106,0.14) 0%, rgba(232,201,168,0.10) 100%);
  color: #a06840;
  border: 1px solid rgba(201,149,106,0.30);
}

/* Abacus decorative image in services section */
.services-deco {
  position: absolute;
  bottom: 0;
  right: 0;
  width: clamp(140px, 16vw, 220px);
  pointer-events: none;
  z-index: 0;
  border-radius: 20px 0 0 0;
  overflow: hidden;
  opacity: 0.22;
}
.services-deco img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
@media (max-width: 768px) { .services-deco { display: none; } }

/* ============================================================
   BEACH FEATURE STRIP
   ============================================================ */
.beach-strip {
  position: relative;
  height: clamp(220px, 30vw, 380px);
  overflow: hidden;
}
.beach-strip-bg {
  position: absolute;
  inset: 0;
}
.beach-strip-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  display: block;
}
.beach-strip-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(46, 138, 129, 0.72) 0%,
    rgba(58, 78, 81, 0.55) 45%,
    rgba(201, 149, 106, 0.40) 100%
  );
}
.beach-strip-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem 1.5rem;
}
.beach-strip-quote {
  max-width: 640px;
}
.beach-strip-quote p {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(1.25rem, 3vw, 1.9rem);
  font-weight: 600;
  color: #ffffff;
  line-height: 1.45;
  letter-spacing: -0.01em;
  margin-bottom: 0.75rem;
  text-shadow: 0 2px 16px rgba(0,0,0,0.22);
}
.beach-strip-quote cite {
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.72);
  font-style: normal;
}
.beach-strip-deco {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
  color: var(--sand-light);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 600;
}
.beach-strip-deco::before,
.beach-strip-deco::after {
  content: '';
  display: inline-block;
  width: 28px;
  height: 1px;
  background: var(--sand-light);
  opacity: 0.7;
}
@media (max-width: 600px) {
  .beach-strip { height: 200px; }
  .beach-strip-quote p { font-size: 1.15rem; }
}

/* ============================================================
   BOKEH AMBIENT EFFECT
   Replaces full-width line charts in Process + CTA sections.
   Soft glowing orbs float and breathe — never touch the text.
   ============================================================ */
.bokeh-container {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 0;
}
.bokeh-orb {
  position: absolute;
  border-radius: 50%;
  will-change: transform, opacity;
}

/* ---- Movement keyframes (4 organic variants) ---- */
@keyframes bk-float-a {
  0%,100% { transform: translate(0,0)       scale(1);    }
  30%      { transform: translate(20px,-24px) scale(1.10); }
  65%      { transform: translate(-14px,16px) scale(0.93); }
}
@keyframes bk-float-b {
  0%,100% { transform: translate(0,0)        scale(1);    }
  40%      { transform: translate(-22px,-18px) scale(1.12); }
  72%      { transform: translate(12px, 22px)  scale(0.91); }
}
@keyframes bk-float-c {
  0%,100% { transform: translate(0,0)        scale(1);    }
  25%      { transform: translate(16px, 20px)  scale(1.07); }
  60%      { transform: translate(-20px,-12px) scale(0.95); }
}
@keyframes bk-float-d {
  0%,100% { transform: translate(0,0)        scale(1);    }
  45%      { transform: translate(-10px,-28px) scale(1.09); }
  80%      { transform: translate(18px,  10px) scale(0.92); }
}

/* ---- Opacity pulse keyframes (4 phase offsets) ---- */
@keyframes bk-pulse-a {
  0%,100% { opacity: 0.08; }
  20%      { opacity: 0.72; }
  75%      { opacity: 0.55; }
  95%      { opacity: 0.10; }
}
@keyframes bk-pulse-b {
  0%,100% { opacity: 0.12; }
  30%      { opacity: 0.65; }
  70%      { opacity: 0.48; }
  90%      { opacity: 0.14; }
}
@keyframes bk-pulse-c {
  0%,100% { opacity: 0.06; }
  15%      { opacity: 0.58; }
  65%      { opacity: 0.70; }
  92%      { opacity: 0.08; }
}
@keyframes bk-pulse-d {
  0%,100% { opacity: 0.10; }
  35%      { opacity: 0.80; }
  78%      { opacity: 0.42; }
  96%      { opacity: 0.12; }
}

/* ============================================================
   PROCESS section bokeh — white/teal/gold on dark teal bg
   Orbs are spread across all quadrants, avoiding centre text
   ============================================================ */
.process .bokeh-orb.b1  {
  width: 90px; height: 90px; top: 8%;  left: 5%;
  background: radial-gradient(circle, rgba(255,255,255,0.70) 0%, transparent 68%);
  filter: blur(20px);
  animation: bk-float-a 13s ease-in-out infinite 0s, bk-pulse-a 13s ease-in-out infinite 0s;
}
.process .bokeh-orb.b2  {
  width: 42px; height: 42px; top: 72%; left: 12%;
  background: radial-gradient(circle, rgba(125,212,206,0.80) 0%, transparent 68%);
  filter: blur(10px);
  animation: bk-float-c 9s ease-in-out infinite 1.8s, bk-pulse-c 9s ease-in-out infinite 1.8s;
}
.process .bokeh-orb.b3  {
  width: 60px; height: 60px; top: 20%; left: 28%;
  background: radial-gradient(circle, rgba(255,255,255,0.60) 0%, transparent 68%);
  filter: blur(14px);
  animation: bk-float-b 16s ease-in-out infinite 3.2s, bk-pulse-b 16s ease-in-out infinite 3.2s;
}
.process .bokeh-orb.b4  {
  width: 22px; height: 22px; top: 65%; left: 40%;
  background: radial-gradient(circle, rgba(201,168,76,0.85) 0%, transparent 68%);
  filter: blur(6px);
  animation: bk-float-d 8s ease-in-out infinite 0.6s, bk-pulse-d 8s ease-in-out infinite 0.6s;
}
.process .bokeh-orb.b5  {
  width: 75px; height: 75px; top: 6%;  left: 60%;
  background: radial-gradient(circle, rgba(255,255,255,0.50) 0%, transparent 68%);
  filter: blur(18px);
  animation: bk-float-c 18s ease-in-out infinite 5s, bk-pulse-c 18s ease-in-out infinite 5s;
}
.process .bokeh-orb.b6  {
  width: 30px; height: 30px; top: 55%; left: 72%;
  background: radial-gradient(circle, rgba(201,168,76,0.75) 0%, transparent 68%);
  filter: blur(8px);
  animation: bk-float-a 10s ease-in-out infinite 2.4s, bk-pulse-a 10s ease-in-out infinite 2.4s;
}
.process .bokeh-orb.b7  {
  width: 55px; height: 55px; top: 30%; left: 86%;
  background: radial-gradient(circle, rgba(125,212,206,0.65) 0%, transparent 68%);
  filter: blur(13px);
  animation: bk-float-b 14s ease-in-out infinite 6.5s, bk-pulse-b 14s ease-in-out infinite 6.5s;
}
.process .bokeh-orb.b8  {
  width: 18px; height: 18px; top: 82%; left: 88%;
  background: radial-gradient(circle, rgba(255,255,255,0.75) 0%, transparent 68%);
  filter: blur(5px);
  animation: bk-float-d 7s ease-in-out infinite 4s, bk-pulse-d 7s ease-in-out infinite 4s;
}
.process .bokeh-orb.b9  {
  width: 50px; height: 50px; top: 78%; left: 55%;
  background: radial-gradient(circle, rgba(255,255,255,0.55) 0%, transparent 68%);
  filter: blur(12px);
  animation: bk-float-a 15s ease-in-out infinite 7s, bk-pulse-a 15s ease-in-out infinite 7s;
}
.process .bokeh-orb.b10 {
  width: 35px; height: 35px; top: 48%; left: 4%;
  background: radial-gradient(circle, rgba(125,212,206,0.70) 0%, transparent 68%);
  filter: blur(9px);
  animation: bk-float-c 12s ease-in-out infinite 1s, bk-pulse-c 12s ease-in-out infinite 1s;
}

/* ============================================================
   CTA BANNER bokeh — white/teal/gold on dark gradient bg
   ============================================================ */
.cta-banner .bokeh-orb.b1 {
  width: 80px; height: 80px; top: 10%; left: 8%;
  background: radial-gradient(circle, rgba(255,255,255,0.60) 0%, transparent 68%);
  filter: blur(18px);
  animation: bk-float-b 14s ease-in-out infinite 0s, bk-pulse-b 14s ease-in-out infinite 0s;
}
.cta-banner .bokeh-orb.b2 {
  width: 32px; height: 32px; top: 75%; left: 18%;
  background: radial-gradient(circle, rgba(201,168,76,0.80) 0%, transparent 68%);
  filter: blur(8px);
  animation: bk-float-a 9s ease-in-out infinite 2.2s, bk-pulse-a 9s ease-in-out infinite 2.2s;
}
.cta-banner .bokeh-orb.b3 {
  width: 55px; height: 55px; top: 15%; left: 38%;
  background: radial-gradient(circle, rgba(125,212,206,0.65) 0%, transparent 68%);
  filter: blur(13px);
  animation: bk-float-d 16s ease-in-out infinite 4s, bk-pulse-d 16s ease-in-out infinite 4s;
}
.cta-banner .bokeh-orb.b4 {
  width: 22px; height: 22px; top: 65%; left: 52%;
  background: radial-gradient(circle, rgba(255,255,255,0.70) 0%, transparent 68%);
  filter: blur(6px);
  animation: bk-float-c 8s ease-in-out infinite 1.4s, bk-pulse-c 8s ease-in-out infinite 1.4s;
}
.cta-banner .bokeh-orb.b5 {
  width: 65px; height: 65px; top: 20%; left: 68%;
  background: radial-gradient(circle, rgba(255,255,255,0.45) 0%, transparent 68%);
  filter: blur(16px);
  animation: bk-float-a 17s ease-in-out infinite 5.5s, bk-pulse-a 17s ease-in-out infinite 5.5s;
}
.cta-banner .bokeh-orb.b6 {
  width: 20px; height: 20px; top: 80%; left: 72%;
  background: radial-gradient(circle, rgba(201,168,76,0.75) 0%, transparent 68%);
  filter: blur(5px);
  animation: bk-float-b 7s ease-in-out infinite 3s, bk-pulse-b 7s ease-in-out infinite 3s;
}
.cta-banner .bokeh-orb.b7 {
  width: 42px; height: 42px; top: 55%; left: 30%;
  background: radial-gradient(circle, rgba(125,212,206,0.60) 0%, transparent 68%);
  filter: blur(11px);
  animation: bk-float-c 12s ease-in-out infinite 6s, bk-pulse-c 12s ease-in-out infinite 6s;
}
.cta-banner .bokeh-orb.b8 {
  width: 28px; height: 28px; top: 8%; left: 55%;
  background: radial-gradient(circle, rgba(255,255,255,0.65) 0%, transparent 68%);
  filter: blur(7px);
  animation: bk-float-d 11s ease-in-out infinite 0.8s, bk-pulse-d 11s ease-in-out infinite 0.8s;
}

/* ============================================================
   CONTACT PAGE HERO — image background variant
   ============================================================ */
.page-hero--image {
  position: relative;
  padding: 10rem 1.5rem 5rem;
  text-align: center;
  overflow: hidden;
  background: none;
}
.page-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.page-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 60%;
}
.page-hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    160deg,
    rgba(46,138,129,0.82) 0%,
    rgba(46,138,129,0.70) 50%,
    rgba(30,60,62,0.80) 100%
  );
}
.page-hero-content {
  position: relative;
  z-index: 2;
}

/* ============================================================
   WHY US BADGE — enhanced glassmorphism + 3D float animation
   ============================================================ */
@keyframes badge-float {
  0%   { transform: perspective(600px) rotateX(2deg) rotateY(-3deg) translateY(0px); }
  33%  { transform: perspective(600px) rotateX(-1deg) rotateY(3deg) translateY(-6px); }
  66%  { transform: perspective(600px) rotateX(3deg) rotateY(-1deg) translateY(-3px); }
  100% { transform: perspective(600px) rotateX(2deg) rotateY(-3deg) translateY(0px); }
}

.why-us-intro-badge {
  position: absolute;
  bottom: 1.5rem;
  right: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.85rem 1.25rem;
  background: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 16px;
  box-shadow:
    0 8px 32px rgba(0, 0, 0, 0.18),
    0 2px 8px rgba(0, 0, 0, 0.10),
    inset 0 1px 0 rgba(255, 255, 255, 0.50);
  animation: badge-float 7s ease-in-out infinite;
  transform-style: preserve-3d;
}
.why-us-intro-badge .hfb-icon {
  width: 40px; height: 40px;
  background: rgba(69, 184, 174, 0.22);
  border: 1px solid rgba(69, 184, 174, 0.35);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.why-us-intro-badge .hfb-text strong {
  display: block;
  font-size: 0.82rem;
  font-weight: 700;
  color: #fff;
  text-shadow: 0 1px 3px rgba(0,0,0,0.25);
}
.why-us-intro-badge .hfb-text small {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.80);
}

/* ============================================================
   GROWTH PACKAGE — fix button hover (white-on-teal invisible bug)
   ============================================================ */
.package-card.featured .btn-primary:hover {
  background: var(--sand);
  border-color: var(--sand);
  color: #fff;
  box-shadow: 0 6px 22px rgba(201,149,106,0.45);
}

/* ============================================================
   BLOG HERO — animated version matching home hero
   ============================================================ */
.page-hero--animated {
  position: relative;
  overflow: hidden;
  min-height: 320px;
  display: flex;
  align-items: center;
}
.page-hero--animated .container {
  position: relative;
  z-index: 2;
  width: 100%;
}

/* Reuse hero-orb inside blog hero */
.page-hero--animated .hero-orb-1 {
  width: 380px; height: 380px;
  top: -15%; right: 2%;
}
.page-hero--animated .hero-orb-2 {
  width: 260px; height: 260px;
  bottom: -10%; left: -3%;
}
.page-hero--animated .hero-orb-3 {
  width: 180px; height: 180px;
  top: 55%; right: 25%;
}

/* Chart layer inside blog hero */
.page-hero--animated .hero-charts {
  opacity: 0.9;
}
.page-hero--animated .hero-chart {
  opacity: 0.11;
}

/* ============================================================
   SIGN-UP POPUP MODAL
   ============================================================ */
.popup-overlay {
  position: fixed;
  inset: 0;
  z-index: 20000;
  background: rgba(20,45,48,0.55);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}
.popup-overlay.popup-visible {
  opacity: 1;
  pointer-events: all;
}
.popup-panel {
  position: relative;
  background: rgba(255,255,255,0.96);
  border-radius: 24px;
  padding: 2.75rem 2.5rem 2.25rem;
  max-width: 440px;
  width: 100%;
  box-shadow:
    0 24px 64px rgba(0,0,0,0.22),
    0 4px 16px rgba(0,0,0,0.10),
    inset 0 1px 0 rgba(255,255,255,0.9);
  transform: translateY(20px) scale(0.97);
  transition: transform 0.4s cubic-bezier(0.34,1.56,0.64,1);
  text-align: center;
}
.popup-overlay.popup-visible .popup-panel {
  transform: translateY(0) scale(1);
}
.popup-close {
  position: absolute;
  top: 1rem; right: 1rem;
  width: 34px; height: 34px;
  background: rgba(69,184,174,0.10);
  border: none;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  color: var(--text-mid);
  transition: background 0.2s, color 0.2s;
}
.popup-close:hover { background: rgba(69,184,174,0.22); color: var(--primary-dark); }
.popup-icon {
  width: 60px; height: 60px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  border-radius: 18px;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.25rem;
  box-shadow: 0 6px 20px rgba(69,184,174,0.35);
}
.popup-icon svg { stroke: #fff; }
.popup-panel h2 {
  font-size: 1.45rem;
  color: var(--text-dark);
  margin-bottom: 0.6rem;
}
.popup-panel > p {
  font-size: 0.92rem;
  color: var(--text-mid);
  max-width: 320px;
  margin: 0 auto 1.5rem;
  line-height: 1.65;
}
.popup-field {
  margin-bottom: 0.85rem;
  text-align: left;
}
.popup-field input {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1.5px solid #d8e8e7;
  border-radius: 10px;
  font-family: inherit;
  font-size: 0.93rem;
  color: var(--text-dark);
  background: #f7fdfc;
  transition: border-color 0.2s, box-shadow 0.2s;
  box-sizing: border-box;
}
.popup-field input:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(69,184,174,0.15);
}
.popup-field input::placeholder { color: #9bb8b6; }
.popup-form .btn-primary {
  width: 100%;
  margin-top: 0.35rem;
  font-size: 0.96rem;
}
.popup-skip {
  display: block;
  width: 100%;
  margin-top: 0.85rem;
  background: none;
  border: none;
  font-family: inherit;
  font-size: 0.83rem;
  color: var(--text-mid);
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color 0.2s;
}
.popup-skip:hover { color: var(--primary-dark); }
.popup-success {
  padding: 0.5rem 0;
}
.popup-success-icon {
  width: 56px; height: 56px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.1rem;
}
.popup-success-icon svg { stroke: #fff; }
.popup-success h3 { font-size: 1.25rem; color: var(--text-dark); margin-bottom: 0.5rem; }
.popup-success p  { font-size: 0.9rem; color: var(--text-mid); margin-bottom: 1.25rem; }
@media (max-width: 480px) {
  .popup-panel { padding: 2.25rem 1.5rem 1.75rem; }
}
