/* Global: no underlines */
a, a:hover, a:focus, a:visited, a:active {
  text-decoration: none !important;
  background-image: none !important;
}

/* ================================================================
   Vasify technologies — Apple-like Cinematic UI
   Clean · Minimal · Smooth · Premium
   All values reference design tokens from webflow.css
================================================================ */

/* ── Apple easing curves ── */
:root {
  --apple-ease:        cubic-bezier(0.25, 0.1, 0.25, 1);
  --apple-ease-out:    cubic-bezier(0, 0, 0.2, 1);
  --apple-ease-in-out: cubic-bezier(0.42, 0, 0.58, 1);
  --apple-spring:      cubic-bezier(0.34, 1.2, 0.64, 1);
  --apple-dur-xs:  120ms;
  --apple-dur-sm:  240ms;
  --apple-dur-md:  400ms;
  --apple-dur-lg:  600ms;
  --apple-dur-xl:  900ms;
  --apple-dur-2xl: 1200ms;
}

/* ================================================================
   0. MASTER TEXT VISIBILITY RESET
   Prevents -webkit-text-fill-color: transparent from bleeding
   into buttons, nav links, footer, and card text.
   Must come before all other rules.
================================================================ */

/* Reset gradient-text bleed on all interactive & structural elements */


/* Now re-apply gradient text ONLY to the specific elements that need it */
.sov-hero-title,
.hero .main-heading h1 .sov-hero-title,
/* Explicit white text on all buttons */
a.btn,
button.btn,
.btn-getstarted,
.header .btn-getstarted,
.cta-btn-primary,
.service-btn,
.btn-submit,
.sov-sg-cta-btn-primary,
.hero .cta-button .btn {
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
}

/* Explicit white text on footer */
.footer,
.footer * {
  -webkit-text-fill-color: currentColor !important;
}

.footer a,

.footer a:hover,

.footer p,
.footer li,
.footer span {
  color: rgba(255,255,255,0.65) !important;
  -webkit-text-fill-color: rgba(255,255,255,0.65) !important;
}


/* Nav links — always visible */
.navmenu a,
.navmenu a:focus {
  color: var(--text-700) !important;
  -webkit-text-fill-color: var(--text-700) !important;
}
.navmenu a:hover,
.navmenu .active,
.navmenu .active:focus {
  color: var(--color-primary) !important;
  -webkit-text-fill-color: var(--color-primary) !important;
}

/* Card body text — always dark on light bg */
.service-card h3,
.sov-sg-card-body 
.service-card h3 span,
.sov-sg-card-body h3 span {
  color: var(--color-primary) !important;
  -webkit-text-fill-color: var(--color-primary) !important;
}
.service-card p,
.sov-sg-card-body p {
  color: var(--text-500) !important;
  -webkit-text-fill-color: var(--text-500) !important;
}

/* Page title — white on dark bg */
.page-title h1 {
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
}

.breadcrumbs ol li,
.breadcrumbs ol li a {
  color: rgba(255,255,255,0.65) !important;
  -webkit-text-fill-color: rgba(255,255,255,0.65) !important;
}
.breadcrumbs ol li.current {
  color: rgba(255,255,255,0.9) !important;
  -webkit-text-fill-color: rgba(255,255,255,0.9) !important;
}

/* Service detail page body text */
.service-details-page .service-main-content p,
.service-details-page .service-main-content li,
.service-details-page .content-block p,
.service-details-page .timeline-content p,
.service-details-page .benefit-card p,
.service-details-page .lead {
  color: var(--text-body-dark) !important;
  -webkit-text-fill-color: var(--text-body-dark) !important;
}
.service-details-page h1,
.service-details-page h2,
.service-details-page h3,
.service-details-page h4,
.service-details-page h5 {
  color: var(--text-dark) !important;
  -webkit-text-fill-color: var(--text-dark) !important;
}

/* CTA dark section text */
.sov-cta-section h2,
.sov-sg-cta-card-inner h3,
.call-to-action .advertise-1 h2 {
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
}
.sov-cta-sub,
.call-to-action .advertise-1 p {
  color: rgba(255,255,255,0.65) !important;
  -webkit-text-fill-color: rgba(255,255,255,0.65) !important;
}

/* ================================================================
   2. HEADER — frosted glass, Apple nav style
================================================================ */
.header {
  transition: padding var(--apple-dur-md) var(--apple-ease) !important;
}
.header .header-container {
  background: rgba(255,255,255,0.80) !important;
  backdrop-filter: saturate(180%) blur(24px) !important;
  -webkit-backdrop-filter: saturate(180%) blur(24px) !important;
  border: 1px solid rgba(255,255,255,0.5) !important;
  box-shadow: 0 1px 0 rgba(0,0,0,0.06), 0 4px 24px rgba(0,0,0,0.06) !important;
  transition: all var(--apple-dur-md) var(--apple-ease) !important;
}
body.scrolled .header .header-container {
  background: rgba(255,255,255,0.95) !important;
  box-shadow: 0 1px 0 rgba(0,0,0,0.08), 0 8px 32px rgba(0,0,0,0.08) !important;
}
.navmenu a {
  transition: color var(--apple-dur-sm) var(--apple-ease) !important;
}
.header .btn-getstarted {
  transition: all var(--apple-dur-sm) var(--apple-ease) !important;
  animation: none !important;
}
.header .btn-getstarted:hover {
  transform: scale(1.04) !important;
}

/* ================================================================
   3. HERO — clean white
================================================================ */
.hero {
  background: #ffffff !important;
  overflow: hidden;
}

/* Staggered word-by-word reveal on hero heading */

/* ── Hero heading — use sov-line-reveal, not CSS animation ── */
.hero .main-heading h1 {
  opacity: 1 !important;
  animation: none !important;
  transform: none !important;
}

/* ── sov-hero-title: cinematic line-by-line reveal ── */
/* Each word group slides up from behind a clip mask */
.sov-hero-title {
  opacity: 1 !important;
  animation: none !important;
  transform: none !important;
  /* gradient text applied here, not on child spans */
  background: none;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  background-clip: text !important;
}

/* The clip wrapper — hides the inner span before it slides up */
.sov-hero-title .sov-title-line {
  display: block;
  overflow: hidden;
  line-height: 1.15;
}

/* The animated inner span */
.sov-hero-title .sov-title-inner {
  display: block;
  transform: none;
  opacity: 1;

  /* inherit gradient from parent */
  background: inherit;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.sov-hero-title .sov-title-line:nth-child(1) .sov-title-inner {
  animation-delay: 0.3s;
}
.sov-hero-title .sov-title-line:nth-child(2) .sov-title-inner {
  animation-delay: 0.5s;
}


  to {
    transform: translateY(0);
    opacity: 1;
  }

  to   { opacity: 1; transform: translateY(0); }

  to   { opacity: 1; transform: scaleX(1); }

  to   { opacity: 1; transform: translateY(0) scale(1); }

/* Hero image — subtle parallax depth */


/* Stats card — glass morphism */
.hero .stats-card {
  background: rgba(255,255,255,0.85) !important;
  backdrop-filter: blur(20px) saturate(180%) !important;
  -webkit-backdrop-filter: blur(20px) saturate(180%) !important;
  border: 1px solid rgba(255,255,255,0.6) !important;
  border-radius: 20px !important;
}

/* ================================================================
   4. SECTION REVEAL — Apple scroll-driven fade
   Each section fades in as it enters viewport
================================================================ */
.apple-reveal {
  opacity: 0;
  transform: translateY(40px);
  transition:
    opacity    var(--apple-dur-xl) var(--apple-ease-out),
    transform  var(--apple-dur-xl) var(--apple-ease-out);
  will-change: transform, opacity;
}
.apple-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}


/* ================================================================
   5. INNER PAGES + FOOTER — premium consistency pass
================================================================ */
.service-details-page .page-title,
.services-page .page-title,
.portfolio-details-page .page-title,
.starter-page .page-title,
.starter-page-page .page-title {
  background: linear-gradient(160deg, #1a1a1a 0%, #1a1a1a 100%) !important;
}

.service-details-page .page-title h1,
.services-page .page-title h1,
.portfolio-details-page .page-title h1,
.starter-page-page .page-title h1 {
  font-size: clamp(2.4rem, 4vw, 3.4rem);
  font-weight: 700;
  letter-spacing: -0.04em;
  color: var(--text-dark);
}

.service-details-page .page-title p,
.services-page .page-title p,
.portfolio-details-page .page-title p,
.starter-page-page .page-title p,
.service-details-page .service-header .lead {
  color: rgba(255,255,255,0.72);
  font-size: 1.05rem;
  line-height: 1.8;
}

.service-details-page .service-main-content,
.service-details-page .service-sidebar,
.service-details-page .service-tabs,
.service-details-page .content-block,
.service-details-page .benefit-card,
.service-details-page .timeline-content,
.service-details-page .testimonial-text,
.starter-page-page .legal-content .card {
  color: var(--text-body-dark);
}

.service-details-page .service-tabs h3,
.service-details-page .service-tabs h4,
.service-details-page .service-sidebar h3,
.service-details-page .service-sidebar h4,
.service-details-page .service-sidebar h5,
.service-details-page .service-main-content h3,
.service-details-page .service-main-content h4,
.starter-page-page .legal-content h2,
.starter-page-page .legal-content h3,
.starter-page-page .legal-content strong {
  color: var(--text-dark) !important;
}

.service-details-page .breadcrumbs li,
.service-details-page .service-meta span,
.starter-page-page .breadcrumbs li,
.starter-page-page .legal-content p,
.starter-page-page .legal-content li {
  color: rgba(255,255,255,0.65) !important;
}

.starter-page-page .legal-content .card {
  border: none !important;
  box-shadow: 0 12px 40px rgba(0,0,0,0.08) !important;
  border-radius: 20px !important;
  padding: 3rem !important;
  margin-top: -50px;
  position: relative;
  z-index: 2;
  background: #ffffff !important;
}

.starter-page-page .legal-content .legal-header {
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(0,0,0,0.08);
}

.service-details-page .service-header h1 {
  font-size: clamp(2rem, 3.1vw, 3rem);
  font-weight: 700;
  letter-spacing: -0.035em;
  color: var(--text-dark);
}

.service-details-page .header .navmenu a,
.service-details-page .header .navmenu a:focus {
  color: var(--text-700) !important;
  -webkit-text-fill-color: var(--text-700) !important;
}
.service-details-page .header .btn-getstarted,
.service-details-page .header .btn-getstarted:focus {
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
}
.service-details-page .header .navmenu a:hover,
.service-details-page .header .navmenu .active,
.service-details-page .header .navmenu .active:focus {
  color: var(--color-primary) !important;
  -webkit-text-fill-color: var(--color-primary) !important;
}

.footer .footer-about p,
.footer .footer-contact p,
.footer .footer-contact span,

.service-card:hover {
  transform: translateY(-6px) scale(1.01) !important;
  box-shadow:
    0 2px 4px rgba(0,0,0,0.04),
    0 8px 24px rgba(0,0,0,0.08),
    0 24px 48px rgba(0,0,0,0.10) !important;
  border-color: rgba(0,0,0,0.10) !important;
}
.service-card:active {
  transform: translateY(-2px) scale(0.99) !important;
  transition-duration: var(--apple-dur-xs) !important;
}

/* Icon — Apple SF Symbol style */
.service-card .service-icon {
  width: 56px !important;
  height: 56px !important;
  border-radius: 14px !important;
  background: #f0f7eb !important;
  border: none !important;
  box-shadow: 0 2px 8px rgba(0,0,0,0.10) !important;
  transition: all var(--apple-dur-md) var(--apple-spring) !important;
}
.service-card:hover .service-icon {
  background: linear-gradient(145deg, var(--color-primary), var(--color-primary-dark)) !important;
  box-shadow: 0 4px 16px rgba(91,142,62,0.35) !important;
  transform: scale(1.08) rotate(-4deg) !important;
}
.service-card:hover .service-icon i { color: var(--text-inverse) !important; }

/* ================================================================
   6. BUTTONS — Apple-style with spring press
================================================================ */

/* Primary CTA */
.cta-btn-primary,
.hero .cta-button .btn,
.header .btn-getstarted,
.service-btn,
.btn-submit {
  transition:
    transform  var(--apple-dur-sm) var(--apple-spring),
    box-shadow var(--apple-dur-sm) var(--apple-ease),
    background var(--apple-dur-sm) var(--apple-ease) !important;
  will-change: transform;
}
.cta-btn-primary:hover,
.hero .cta-button .btn:hover,
.service-btn:hover,
.btn-submit:hover {
  transform: scale(1.03) translateY(-2px) !important;
}
.cta-btn-primary:active,
.hero .cta-button .btn:active,
.service-btn:active,
.btn-submit:active {
  transform: scale(0.97) !important;
  transition-duration: var(--apple-dur-xs) !important;
}

/* ================================================================
   7. SECTION TITLES — Apple typography reveal
================================================================ */

/* ================================================================
   8. ABOUT SECTION — Apple feature grid
================================================================ */
.about .about-content .feature-item {
  background: var(--bg-surface) !important;
  border: 1px solid rgba(0,0,0,0.06) !important;
  border-radius: 16px !important;
  transition:
    transform  var(--apple-dur-md) var(--apple-spring),
    box-shadow var(--apple-dur-md) var(--apple-ease) !important;
  will-change: transform;
}
.about .about-content .feature-item:hover {
  transform: translateY(-4px) !important;
  box-shadow: 0 8px 32px rgba(0,0,0,0.10) !important;
}
.about .about-content .feature-item:active {
  transform: scale(0.98) !important;
}
.about .about-image img {
  border-radius: 24px !important;
  box-shadow:
    0 4px 8px rgba(0,0,0,0.04),
    0 16px 48px rgba(0,0,0,0.10) !important;
  transition: transform var(--apple-dur-xl) var(--apple-ease) !important;
  will-change: transform;
}
.about .about-image:hover img {
  transform: scale(1.015) !important;
}

/* ================================================================
   9. CONTACT CARDS — Apple info tile
================================================================ */
.contact .contact-info-box {
  background: var(--bg-surface) !important;
  border: 1px solid rgba(0,0,0,0.06) !important;
  border-radius: 16px !important;
  transition:
    transform  var(--apple-dur-md) var(--apple-spring),
    box-shadow var(--apple-dur-md) var(--apple-ease) !important;
  will-change: transform;
}
.contact .contact-info-box:hover {
  transform: translateY(-4px) !important;
  box-shadow: 0 8px 32px rgba(0,0,0,0.10) !important;
}
.contact .contact-info-box .icon-box {
  transition: all var(--apple-dur-md) var(--apple-spring) !important;
}
.contact .contact-info-box:hover .icon-box {
  background: var(--color-primary) !important;
  color: var(--text-inverse) !important;
  transform: scale(1.1) !important;
}

/* ================================================================
   10. FORM INPUTS — Apple input style
================================================================ */
.input-with-icon .form-control {
  border-radius: 12px !important;
  border: 1.5px solid rgba(0,0,0,0.1) !important;
  background: rgba(255,255,255,0.8) !important;
  backdrop-filter: blur(8px) !important;
  transition:
    border-color var(--apple-dur-sm) var(--apple-ease),
    box-shadow   var(--apple-dur-sm) var(--apple-ease),
    background   var(--apple-dur-sm) var(--apple-ease) !important;
}
.input-with-icon .form-control:focus {
  border-color: var(--color-primary) !important;
  background: #fff !important;
  box-shadow: 0 0 0 4px rgba(0,0,0,0.08) !important;
  outline: none !important;
}

/* ================================================================
   11. PORTFOLIO — Apple gallery hover
================================================================ */
.portfolio-entry {
  border-radius: 16px !important;
  overflow: hidden;
  transition:
    transform  var(--apple-dur-md) var(--apple-spring),
    box-shadow var(--apple-dur-md) var(--apple-ease) !important;
  will-change: transform;
}
.portfolio-entry:hover {
  transform: scale(1.02) !important;
  box-shadow:
    0 4px 8px rgba(0,0,0,0.06),
    0 16px 40px rgba(0,0,0,0.12) !important;
}
.portfolio-entry .entry-image img {
  transition: transform var(--apple-dur-xl) var(--apple-ease) !important;
  will-change: transform;
}
.portfolio-entry:hover .entry-image img {
  transform: scale(1.06) !important;
}

/* ================================================================
   12. FAQ — Apple accordion
================================================================ */

.faq-item.faq-active 

/* ================================================================
   13. SCROLL PROGRESS — Apple thin line
================================================================ */


/* ================================================================
   14. SCROLL-TO-TOP — Apple minimal
================================================================ */
.scroll-top {
  width: 40px !important;
  height: 40px !important;
  border-radius: 50% !important;
  background: rgba(255,255,255,0.85) !important;
  backdrop-filter: blur(12px) !important;
  border: 1px solid rgba(0,0,0,0.08) !important;
  box-shadow: 0 2px 12px rgba(0,0,0,0.12) !important;
  transition: all var(--apple-dur-sm) var(--apple-spring) !important;
}
.scroll-top i { color: var(--color-primary) !important; }
.scroll-top:hover {
  transform: scale(1.1) translateY(-2px) !important;
  box-shadow: 0 4px 20px rgba(0,0,0,0.16) !important;
}

/* ================================================================
   15. LINKS — Apple underline animation
================================================================ */

/* ================================================================
   16. PAGE TITLE (inner pages) — cinematic banner
================================================================ */
.page-title {
  background: linear-gradient(160deg, #1a1a1a 0%, #1a1a1a 100%) !important;
  position: relative;
  overflow: hidden;
}
.page-title::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse 80% 60% at 50% 120%,
    rgba(0,0,0,0.12) 0%,
    transparent 70%
  );
  pointer-events: none;
}

/* ================================================================
   17. BENEFIT CARDS (inner pages) — Apple feature tile
================================================================ */
.service-details .service-tabs .tab-content .benefit-card {
  background: var(--bg-surface) !important;
  border: 1px solid rgba(0,0,0,0.06) !important;
  border-radius: 16px !important;
  transition:
    transform  var(--apple-dur-md) var(--apple-spring),
    box-shadow var(--apple-dur-md) var(--apple-ease) !important;
  will-change: transform;
}
.service-details .service-tabs .tab-content .benefit-card:hover {
  transform: translateY(-5px) !important;
  box-shadow: 0 8px 32px rgba(0,0,0,0.10) !important;
}

/* ================================================================
   18. TESTIMONIALS — Apple quote card
================================================================ */
.about .testimonial-section .testimonial-item,
.testimonials .testimonial-item {
  background: var(--bg-surface) !important;
  border: 1px solid rgba(0,0,0,0.06) !important;
  border-radius: 20px !important;
  transition:
    transform  var(--apple-dur-md) var(--apple-spring),
    box-shadow var(--apple-dur-md) var(--apple-ease) !important;
}
.testimonials .swiper-slide-active .testimonial-item {
  box-shadow: 0 8px 40px rgba(0,0,0,0.12) !important;
  border-color: rgba(0,0,0,0.10) !important;
}

/* ================================================================
   19. FOOTER — Apple dark footer
================================================================ */

/* ================================================================
   20. REDUCED MOTION — respect user preference
================================================================ */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration:       0.01ms !important;
    animation-iteration-count: 1     !important;
    transition-duration:      0.01ms !important;
  }
  body,
  .hero .agency-name h5,
  .hero .main-heading h1,
  .hero .divider,
  .hero .description p,
  .hero .cta-button,
  .hero .visual-content,
  .hero .stats-card,
  .page-title h1,
  .page-title p,
  
  .apple-reveal,
  .apple-reveal-scale,
  .apple-reveal-left,
  .apple-reveal-right {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}

/* ================================================================
   Vasify technologies — Premium CTA Section
   "Ready to scale your business?"
================================================================ */

/* ── CTA container z-index (moved from inline style) ── */
.sov-cta-container { position: relative; z-index: 2; }

/* ── Section wrapper ── */
.sov-cta-section {
  position: relative;
  padding: 120px 0 100px;
  overflow: hidden;
  background: #1a1a1a;
  text-align: center;
}

/* ── Animated background ── */
.sov-cta-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

/* Glowing orbs */
.sov-cta-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  will-change: transform;
}

  to   { transform: translate(30px, -20px) scale(1.08); }

/* Dot grid */
.sov-cta-grid {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.06) 1px, transparent 1px);
  background-size: 32px 32px;
  opacity: 0.6;
}

/* ── Eyebrow label ── */
.sov-cta-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0,0,0,0.10);
  border: 1px solid rgba(91,142,62,0.35);
  border-radius: 50px;
  padding: 6px 18px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  margin-bottom: 28px;
}
.sov-cta-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--color-primary);
  box-shadow: 0 0 8px rgba(91,142,62,0.8);
  
}

  50%     { opacity: 0.5; box-shadow: 0 0 16px rgba(91,142,62,0.4); }

/* ── Main headline ── */
.sov-cta-headline {
  font-size:      clamp(2.6rem, 6vw, 4.2rem) !important;
  font-weight:    800                         !important;
  letter-spacing: -0.04em                    !important;
  line-height:    1.1                         !important;
  color:          #ffffff                     !important;
  -webkit-text-fill-color: #ffffff           !important;
  margin-bottom: 24px !important;
}


  to   { background-position: 100% 50%; }

/* ── Sub-copy ── */
.sov-cta-sub {
  font-size: clamp(1rem, 2vw, 1.2rem) !important;
  font-weight: 400 !important;
  line-height: 1.75 !important;
  color: rgba(255,255,255,0.62) !important;
  max-width: 580px;
  margin: 0 auto 40px !important;
}

/* ── Trust chips ── */
.sov-cta-chips {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 44px;
}
.sov-cta-chip {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 50px;
  padding: 7px 16px;
  font-size: 0.8rem;
  font-weight: 500;
  color: rgba(255,255,255,0.72);
  transition: all 0.25s cubic-bezier(0.25,0.1,0.25,1);
  
}
.sov-cta-chip:hover {
  background: rgba(0,0,0,0.10);
  border-color: rgba(91,142,62,0.4);
  color: rgba(255,255,255,0.92);
  transform: translateY(-2px);
}
.sov-cta-chip i {
  color: var(--color-primary);
  font-size: 0.85rem;
}

/* ── Action buttons ── */
.sov-cta-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 14px;
  margin-bottom: 48px;
}

/* Primary button */
.sov-cta-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: #5B8E3E;
  color: var(--text-inverse) !important;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  padding: 16px 32px;
  border-radius: 50px;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  box-shadow:
    0 4px 16px rgba(91,142,62,0.35),
    0 1px 0 rgba(255,255,255,0.12) inset;
  transition:
    transform 0.25s cubic-bezier(0.34,1.2,0.64,1),
    box-shadow 0.25s ease;
  will-change: transform;
}
/* Shimmer sweep */


  60%  { left: 160%; }
  100% { left: 160%; }
.sov-cta-btn-primary:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow:
    0 12px 40px rgba(91,142,62,0.50),
    0 1px 0 rgba(255,255,255,0.15) inset;
  color: var(--text-inverse) !important;
}
.sov-cta-btn-primary:active {
  transform: scale(0.97);
  transition-duration: 0.1s;
}
.sov-cta-btn-icon {
  width: 30px; height: 30px;
  background: rgba(255,255,255,0.18);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.9rem;
  transition: transform 0.25s cubic-bezier(0.34,1.2,0.64,1);
  flex-shrink: 0;
}
.sov-cta-btn-primary:hover .sov-cta-btn-icon {
  transform: translateX(4px);
}

/* Ghost / secondary button */
.sov-cta-btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: rgba(255,255,255,0.06);
  color: rgba(255,255,255,0.80) !important;
  font-size: 0.95rem;
  font-weight: 600;
  padding: 16px 28px;
  border-radius: 50px;
  border: 1.5px solid rgba(255,255,255,0.16);
  text-decoration: none;
  transition:
    background 0.25s ease,
    border-color 0.25s ease,
    transform 0.25s cubic-bezier(0.34,1.2,0.64,1),
    color 0.25s ease;
  will-change: transform;
}
.sov-cta-btn-ghost:hover {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.35);
  color: var(--text-inverse) !important;
  transform: translateY(-2px);
}
.sov-cta-btn-ghost:active {
  transform: scale(0.97);
}

/* ── Social proof ── */
.sov-cta-proof {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 56px;
  flex-wrap: wrap;
}
.sov-cta-avatars {
  display: flex;
  align-items: center;
}
.sov-cta-avatars img {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 2.5px solid rgba(255,255,255,0.25);
  object-fit: cover;
  margin-right: -10px;
  transition: transform 0.2s ease;
}
.sov-cta-avatars img:hover { transform: scale(1.15) translateY(-2px); z-index: 2; }
.sov-cta-avatar-more {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(91,142,62,0.3);
  border: 2.5px solid rgba(255,255,255,0.2);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.65rem;
  font-weight: 700;
  color: rgba(255,255,255,0.8);
  margin-left: 2px;
}

.sov-cta-stars {
  display: flex;
  align-items: center;
  gap: 3px;
  margin-bottom: 3px;
}
.sov-cta-stars i { color: var(--color-accent); font-size: 0.75rem; }
.sov-cta-stars span {
  font-size: 0.78rem;
  font-weight: 700;
  color: rgba(255,255,255,0.85);
  margin-left: 4px;
}
.sov-cta-proof-text p {
  font-size: 0.8rem !important;
  color: rgba(255,255,255,0.5) !important;
  margin: 0 !important;
  line-height: 1.4 !important;
}
.sov-cta-proof-text p strong { color: rgba(255,255,255,0.85); }

/* ── Stats row ── */
.sov-cta-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px;
  padding: 28px 40px;
  max-width: 720px;
  margin: 0 auto;
  backdrop-filter: blur(12px);
}


.sov-cta-stat-plus {
  font-size: 1.4rem;
  color: var(--color-primary);
  font-weight: 900;
}
.sov-cta-stat-label {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: rgba(255,255,255,0.45);
  text-transform: uppercase;
  text-align: center;
}

/* ── Individual stat item ── */
.sov-cta-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 8px 32px;
  flex: 1;
  min-width: 120px;
}
.sov-cta-stat-num {
  font-size: 2.2rem;
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1;
  color: #ffffff;
  -webkit-text-fill-color: #ffffff;
}
.sov-cta-stat-divider {
  width: 1px;
  height: 48px;
  background: rgba(255,255,255,0.12);
  flex-shrink: 0;
  align-self: center;
}


/* ── Responsive ── */
@media (max-width: 768px) {
  .sov-cta-section { padding: 80px 0 72px; }
  .sov-cta-headline { font-size: clamp(2rem, 9vw, 2.8rem) !important; }
  .sov-cta-stats { padding: 20px 16px; gap: 0; }
  .sov-cta-stat { padding: 12px 16px; min-width: 90px; }
  .sov-cta-stat-num { font-size: 1.7rem; }
  .sov-cta-stat-divider { height: 36px; }
  .sov-cta-proof { flex-direction: column; gap: 10px; }
  .sov-cta-proof-text { text-align: center; }
}
@media (max-width: 480px) {
  .sov-cta-stats { flex-wrap: wrap; }
  .sov-cta-stat-divider:nth-child(4) { display: none; }
  .sov-cta-actions { flex-direction: column; align-items: stretch; }
  .sov-cta-btn-primary, .sov-cta-btn-ghost { justify-content: center; }
}

/* ── Reduced motion ── */
@media (prefers-reduced-motion: reduce) {
  .sov-cta-orb,
  .sov-cta-dot,
  .sov-cta-headline-accent,
  
}


/* ================================================================
   Vasify SERVICES GRID — Apple-style bento grid with CTA card
================================================================ */

/* ── Section wrapper ── */
.sov-services-grid {
  padding: 100px 0 120px;
  background: #f5f5f7;
}

/* ── Header ── */
.sov-sg-header {
  margin-bottom: 56px;
}

.sov-sg-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--brand-secondary, #5B8E3E);
  margin-bottom: 20px;
}

.sov-sg-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--brand-secondary, #5B8E3E);
  box-shadow: 0 0 8px rgba(91,142,62,0.7);
  
  flex-shrink: 0;
}

.sov-sg-title-row {
  display: flex;
  align-items: flex-end;
  gap: 48px;
}

.sov-sg-title {
  flex: 1;
}

.sov-sg-title h2 {
  font-size: clamp(2.2rem, 4.5vw, 3.4rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.1;
  color: var(--text-dark);
  margin: 0;
}

.sov-sg-subtitle {
  flex: 0 0 360px;
  max-width: 360px;
}


.sov-sg-view-all {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--brand-secondary, #5B8E3E);
  border-bottom: 1.5px solid rgba(91,142,62,0.3);
  padding-bottom: 2px;
  transition: gap 0.25s ease, border-color 0.25s ease;
  background-image: none !important;
}

.sov-sg-view-all:hover {
  gap: 14px;
  border-color: var(--brand-secondary, #5B8E3E);
  color: var(--brand-secondary, #5B8E3E);
}

@media (max-width: 991px) {
  .sov-sg-title-row { flex-direction: column; align-items: flex-start; gap: 20px; }
  .sov-sg-subtitle { flex: none; max-width: 100%; }
}

/* ── Bento grid ── */
.sov-sg-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

@media (max-width: 991px) {
  .sov-sg-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 575px) {
  .sov-sg-grid { grid-template-columns: 1fr; }
}

/* ── Service card ── */
.sov-sg-card {
  background: #ffffff;
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: 20px;
  overflow: hidden;
  transition:
    transform 0.38s cubic-bezier(0.34,1.2,0.64,1),
    box-shadow 0.38s ease,
    border-color 0.25s ease;
  will-change: transform;
}

.sov-sg-card:hover {
  transform: translateY(-6px) scale(1.01);
  box-shadow:
    0 2px 4px rgba(0,0,0,0.04),
    0 12px 32px rgba(0,0,0,0.10),
    0 32px 56px rgba(0,0,0,0.06);
  border-color: rgba(0,0,0,0.10);
}

.sov-sg-card-inner {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 32px 28px 28px;
  gap: 16px;
}

/* ── Icon ── */
.sov-sg-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: #f5f5f5;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.35s cubic-bezier(0.34,1.2,0.64,1);
}

.sov-sg-icon i {
  font-size: 22px;
  color: var(--brand-secondary, #5B8E3E);
  transition: color 0.25s ease;
}

.sov-sg-card:hover .sov-sg-icon {
  background: #5B8E3E;
  box-shadow: 0 6px 20px rgba(91,142,62,0.35);
  transform: scale(1.08) rotate(-4deg);
}

.sov-sg-card:hover .sov-sg-icon i {
  color: var(--text-inverse);
}

/* ── Card body ── */
.sov-sg-card-body {
  flex: 1;
}


/* ── Card CTA link ── */
.sov-sg-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--brand-secondary, #5B8E3E);
  letter-spacing: 0.01em;
  transition: gap 0.25s ease;
  background-image: none !important;
  align-self: flex-start;
}

.sov-sg-cta i {
  font-size: 0.9rem;
  transition: transform 0.25s ease;
}

.sov-sg-card:hover .sov-sg-cta {
  gap: 10px;
}

.sov-sg-card:hover .sov-sg-cta i {
  transform: translate(2px, -2px);
}

/* ── CTA card (last card — spans full width on last row) ── */
.sov-sg-card--cta {
  grid-column: span 3;
  background: #1a1a1a;
  border-color: transparent;
  position: relative;
  overflow: hidden;
}

.sov-sg-card--cta:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.35);
  border-color: rgba(91,142,62,0.3);
}

@media (max-width: 991px) {
  .sov-sg-card--cta { grid-column: span 2; }
}

@media (max-width: 575px) {
  .sov-sg-card--cta { grid-column: span 1; }
}

/* Glowing orb inside CTA card */
.sov-sg-cta-orb {
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(91,142,62,0.22) 0%, transparent 65%);
  top: -200px;
  right: -100px;
  pointer-events: none;
  filter: blur(40px);
  
}

.sov-sg-cta-card-inner {
  position: relative;
  z-index: 1;
  padding: 52px 56px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
}

@media (max-width: 767px) {
  .sov-sg-cta-card-inner { padding: 36px 28px; }
}

.sov-sg-cta-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  margin: 0;
}


/* ── CTA action buttons ── */
.sov-sg-cta-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.sov-sg-cta-btn-primary {
  display: inline-flex;
  align-items: center;
  padding: 13px 28px;
  background: var(--color-primary);
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
  font-size: var(--text-sm);
  font-weight: var(--weight-semibold);
  border-radius: 50px;
  transition: all 0.3s cubic-bezier(0.34,1.2,0.64,1);
  background-image: none !important;
  white-space: nowrap;
}

.sov-sg-cta-btn-primary:hover {
  background: var(--color-primary-dark);
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
  transform: scale(1.04) translateY(-2px);
  box-shadow: 0 8px 28px rgba(91,142,62,0.45);
}

.sov-sg-cta-btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 24px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.18);
  color: rgba(255,255,255,0.85) !important;
  -webkit-text-fill-color: rgba(255,255,255,0.85) !important;
  font-size: var(--text-sm);
  font-weight: var(--weight-medium);
  border-radius: 50px;
  transition: all 0.3s ease;
  background-image: none !important;
  white-space: nowrap;
}

.sov-sg-cta-btn-ghost:hover {
  background: rgba(255,255,255,0.14);
  border-color: rgba(255,255,255,0.32);
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
  gap: 14px;
}

/* ── Stats row ── */
.sov-sg-cta-stats {
  display: flex;
  gap: 40px;
  padding-top: 8px;
  border-top: 1px solid rgba(255,255,255,0.1);
  width: 100%;
}

.sov-sg-cta-stats > div {
  display: flex;
  flex-direction: column;
  gap: 2px;
}


/* ================================================================
   TYPOGRAPHY CONSISTENCY PASS — sov-specific components only
   Standard elements (h1-h6, p, nav, footer, etc.) are handled
   by the unified heading system in webflow.css.
================================================================ */

/* ── Services bento grid ── */
.sov-sg-title h2 {
  font-size:      clamp(2.2rem, 4.5vw, 3.4rem) !important;
  font-weight:    800                           !important;
  letter-spacing: -0.04em                      !important;
  line-height:    1.1                           !important;
  color:          #1a1a1a                       !important;
  -webkit-text-fill-color: #1a1a1a             !important;
}
.sov-sg-title h2 span {
  color: var(--color-primary) !important;
  -webkit-text-fill-color: var(--color-primary) !important;
}
.sov-sg-subtitle p {
  font-size: 0.875rem !important;
  color:     #5e5e5e  !important;
  -webkit-text-fill-color: #5e5e5e !important;
}
.sov-sg-card-body 
.sov-sg-card-body h3 span {
  color: var(--color-primary) !important;
  -webkit-text-fill-color: var(--color-primary) !important;
}
.sov-sg-card-body p {
  font-size: 0.875rem !important;
  color:     #5e5e5e  !important;
  -webkit-text-fill-color: #5e5e5e !important;
}
.sov-sg-cta-card-inner 
.sov-sg-cta-label {
  font-size:      0.72rem  !important;
  font-weight:    700      !important;
  letter-spacing: 0.16em   !important;
  text-transform: uppercase !important;
  color:          rgba(255,255,255,0.55) !important;
  -webkit-text-fill-color: rgba(255,255,255,0.55) !important;
}
.sov-sg-cta-stats strong {
  font-size:      1.25rem  !important;
  font-weight:    800      !important;
  letter-spacing: -0.04em  !important;
  color:          #ffffff  !important;
  -webkit-text-fill-color: #ffffff !important;
}
.sov-sg-cta-stats span {
  font-size:      0.72rem  !important;
  font-weight:    500      !important;
  letter-spacing: 0.1em    !important;
  text-transform: uppercase !important;
  color:          rgba(255,255,255,0.5) !important;
  -webkit-text-fill-color: rgba(255,255,255,0.5) !important;
}

/* ── Vasify CTA section ── */
.sov-cta-headline {
  font-size:      clamp(2.6rem, 6vw, 4.2rem) !important;
  font-weight:    800                         !important;
  letter-spacing: -0.04em                    !important;
  line-height:    1.1                         !important;
  color:          #ffffff                     !important;
  -webkit-text-fill-color: #ffffff           !important;
}
.sov-cta-sub {
  font-size:   1rem                    !important;
  line-height: 1.75                    !important;
  color:       rgba(255,255,255,0.65)  !important;
  -webkit-text-fill-color: rgba(255,255,255,0.65) !important;
}
.sov-cta-eyebrow {
  font-size:      0.72rem  !important;
  font-weight:    700      !important;
  letter-spacing: 0.16em   !important;
  text-transform: uppercase !important;
  color:          rgba(255,255,255,0.72) !important;
  -webkit-text-fill-color: rgba(255,255,255,0.72) !important;
}


/* ── Map iframe ── */
.map-section iframe { border: 0; width: 100%; }

/* ── Preloader ── */
#preloader { background: #ffffff !important; }

/* ── Case Study Button (replaces CLICK HERE) ── */
.sov-case-study-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 24px;
  background: var(--color-primary);
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0;
  border-radius: 50px;
  text-decoration: none;
  background-image: none !important;
  transition: all 0.28s cubic-bezier(0.34,1.2,0.64,1);
  margin-top: 8px;
}
.sov-case-study-btn i {
  font-size: 0.85rem;
  transition: transform 0.25s ease;
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
}
.sov-case-study-btn:hover {
  background: var(--color-primary-dark);
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(91,142,62,0.35);
}
.sov-case-study-btn:hover i {
  transform: translateX(4px);
}

/* ── CTA chip text visibility ── */
.sov-cta-chip span {
  color: rgba(255,255,255,0.72) !important;
  -webkit-text-fill-color: rgba(255,255,255,0.72) !important;
}
.sov-cta-chip:hover span {
  color: rgba(255,255,255,0.92) !important;
  -webkit-text-fill-color: rgba(255,255,255,0.92) !important;
}

/* ── CTA button text visibility ── */
.sov-cta-btn-primary span,
.sov-cta-btn-primary i {
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
}
.sov-cta-btn-ghost span,
.sov-cta-btn-ghost i {
  color: inherit !important;
  -webkit-text-fill-color: inherit !important;
}

/* ── Contact form fields ── */
.input-with-icon textarea { min-height: 160px; resize: vertical; }
.input-with-icon input[type="tel"] {
  padding-left: 44px;
}

/* ── Footer contact links ── */
.footer-contact a {
  color: rgba(255,255,255,0.72) !important;
  -webkit-text-fill-color: rgba(255,255,255,0.72) !important;
  text-decoration: none;
}
.footer-contact a:hover {
  color: var(--color-accent) !important;
  -webkit-text-fill-color: var(--color-accent) !important;
}

/* ── About section CTA button ── */
.about .about-content .btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  background: var(--color-primary) !important;
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
  border-radius: 50px !important;
  font-weight: 600 !important;
  font-size: 0.875rem !important;
  text-decoration: none;
  transition: all 0.28s cubic-bezier(0.34,1.2,0.64,1);
  border: none !important;
  background-image: none !important;
}
.about .about-content .btn-primary:hover {
  background: var(--color-primary-dark) !important;
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(91,142,62,0.35);
}
.about .about-content .btn-primary i {
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
}

/* ================================================================
   WHITE CLEAN THEME — Final overrides
   Poppins font · Pure white · Green accent only
================================================================ */

/* ── Global link reset — no underlines anywhere ── */
a, a:hover, a:focus, a:visited {
  text-decoration: none !important;
  background-image: none !important;
  background-size: 0 !important;
}

/* ── Global font override ── */
*, *::before, *::after,
html, body, h1, h2, h3, h4, h5, h6,
p, a, li, span, button, input, textarea, select, label {
  font-family: 'Poppins', system-ui, sans-serif !important;
}

/* ── Body ── */
body {
  background: #ffffff !important;
  color: #2d2d2d !important;
}

/* ── All sections white ── */
section, .section,
.hero, .about, .services, .steps,
.testimonials, .portfolio, .faq, .contact,
.sov-services-grid, .light-background {
  background: #ffffff !important;
}

/* ── Section title — remove colored eyebrow label, keep clean ── */

/* ── Headings — logo color system ── */
h1, h2 {
  color: #1a1a1a !important;
  -webkit-text-fill-color: #1a1a1a !important;
}
h3, h4, h5, h6 {
  color: #2d2d2d !important;
  -webkit-text-fill-color: #2d2d2d !important;
}
h1 span, h2 span, h3 span {
  color: #5B8E3E !important;
  -webkit-text-fill-color: #5B8E3E !important;
}

/* ── Body text ── */
p, li {
  color: #4a4a4a !important;
  -webkit-text-fill-color: #4a4a4a !important;
}

/* ── Hero heading — green accent, no gradient ── */

.hero .main-heading h1 .sov-hero-title {
  color: #5B8E3E !important;
  -webkit-text-fill-color: #5B8E3E !important;
  background: none !important;
  -webkit-background-clip: unset !important;
  background-clip: unset !important;
}
.sov-hero-title .sov-title-inner {
  color: inherit !important;
  -webkit-text-fill-color: inherit !important;
  background: none !important;
  -webkit-background-clip: unset !important;
  background-clip: unset !important;
  transform: none !important;
  opacity: 1 !important;
  animation: none !important;
}
.sov-hero-title .sov-title-line { overflow: visible !important; }

/* ── Hero ── */
.hero { background: #ffffff !important; }
.hero .divider { background-color: #e5e5e5 !important; opacity: 1 !important; transform: none !important; }
.hero .description p,
.hero .agency-name h5,
.hero .cta-button {
  opacity: 1 !important;
  transform: none !important;
  animation: none !important;
}
.hero .visual-content {
  opacity: 1 !important;
  transform: none !important;
  animation: none !important;
}
.hero .stats-card {
  opacity: 1 !important;
  transform: none !important;
  animation: none !important;
  background: #ffffff !important;
  border: 1px solid rgba(0,0,0,0.10) !important;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08) !important;
}
.hero .stats-card .stats-number h2 {
  color: #5B8E3E !important;
  -webkit-text-fill-color: #5B8E3E !important;
}
.hero .fluid-img { animation: none !important; }

/* ── Header ── */
.header .header-container {
  background: rgba(255,255,255,0.97) !important;
  border: 1px solid rgba(0,0,0,0.08) !important;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06) !important;
}
.navmenu a, .navmenu a:focus {
  color: #2d2d2d !important;
  -webkit-text-fill-color: #2d2d2d !important;
  font-weight: 500 !important;
}
.navmenu a:hover, .navmenu .active {
  color: #5B8E3E !important;
  -webkit-text-fill-color: #5B8E3E !important;
}
.header .btn-getstarted,
.header .btn-getstarted:focus {
  background: #5B8E3E !important;
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
  animation: none !important;
  box-shadow: none !important;
}
.header .btn-getstarted:hover {
  background: #3d6129 !important;
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
  transform: translateY(-1px) !important;
  box-shadow: 0 4px 12px rgba(91,142,62,0.30) !important;
}

/* ── Buttons — flat green, no gradients ── */
.btn-getstarted,
.cta-btn-primary,
.service-btn,
.btn-submit,
.sov-sg-cta-btn-primary,
.sov-cta-btn-primary,
.hero .cta-button .btn,
.about .about-content .btn-primary,
.sov-case-study-btn {
  background: #5B8E3E !important;
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
  border: none !important;
  border-radius: 8px !important;
  font-weight: 600 !important;
  box-shadow: none !important;
  animation: none !important;
}
.btn-getstarted:hover,
.cta-btn-primary:hover,
.service-btn:hover,
.btn-submit:hover,
.sov-sg-cta-btn-primary:hover,
.sov-cta-btn-primary:hover,
.hero .cta-button .btn:hover,
.about .about-content .btn-primary:hover,
.sov-case-study-btn:hover {
  background: #3d6129 !important;
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 4px 16px rgba(91,142,62,0.25) !important;
}

/* ── Service cards ── */
.service-card {
  background: #ffffff !important;
  border: 1px solid rgba(0,0,0,0.08) !important;
  border-radius: 12px !important;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05) !important;
}
.service-card:hover {
  border-color: rgba(91,142,62,0.25) !important;
  box-shadow: 0 8px 32px rgba(0,0,0,0.10) !important;
  transform: translateY(-4px) !important;
}
.service-card .service-icon {
  background: #f0f7eb !important;
  border: none !important;
  box-shadow: none !important;
}
.service-card .service-icon i { color: #5B8E3E !important; }
.service-card:hover .service-icon { background: #5B8E3E !important; }
.service-card:hover .service-icon i { color: #ffffff !important; }
.service-card 
.service-card h3 a { color: #1a1a1a !important; -webkit-text-fill-color: #1a1a1a !important; text-decoration: none !important; }
.service-card h3 a span { color: #5B8E3E !important; -webkit-text-fill-color: #5B8E3E !important; }
.service-card p { color: #5e5e5e !important; -webkit-text-fill-color: #5e5e5e !important; }

/* ── Services bento grid ── */
.sov-services-grid { background: #f9f9f9 !important; }
.sov-sg-card { background: #ffffff !important; border: 1px solid rgba(0,0,0,0.08) !important; }
.sov-sg-card:hover { border-color: rgba(91,142,62,0.20) !important; box-shadow: 0 8px 32px rgba(0,0,0,0.08) !important; }
.sov-sg-icon { background: #f0f7eb !important; }
.sov-sg-icon i { color: #5B8E3E !important; }
.sov-sg-card:hover .sov-sg-icon { background: #5B8E3E !important; }
.sov-sg-card:hover .sov-sg-icon i { color: #ffffff !important; }
.sov-sg-card-body 
.sov-sg-card-body h3 span { color: #5B8E3E !important; -webkit-text-fill-color: #5B8E3E !important; }
.sov-sg-card-body p { color: #5e5e5e !important; -webkit-text-fill-color: #5e5e5e !important; }
.sov-sg-cta { color: #5B8E3E !important; -webkit-text-fill-color: #5B8E3E !important; }
.sov-sg-view-all { color: #5B8E3E !important; -webkit-text-fill-color: #5B8E3E !important; border-bottom-color: rgba(91,142,62,0.3) !important; }
.sov-sg-title h2 { color: #1a1a1a !important; -webkit-text-fill-color: #1a1a1a !important; }
.sov-sg-title h2 span { color: #5B8E3E !important; -webkit-text-fill-color: #5B8E3E !important; }
.sov-sg-subtitle p { color: #5e5e5e !important; -webkit-text-fill-color: #5e5e5e !important; }
.sov-sg-eyebrow { color: #5B8E3E !important; -webkit-text-fill-color: #5B8E3E !important; }
.sov-sg-dot { background: #5B8E3E !important; box-shadow: none !important; animation: none !important; }

/* ── CTA section ── */
.sov-cta-section { background: #1a1a1a !important; }
.sov-cta-orb-1, .sov-cta-orb-2, .sov-cta-orb-3 { display: none !important; }
.sov-cta-headline { color: #ffffff !important; -webkit-text-fill-color: #ffffff !important; }
.sov-cta-headline-accent { color: #5B8E3E !important; -webkit-text-fill-color: #5B8E3E !important; background: none !important; -webkit-background-clip: unset !important; background-clip: unset !important; }
.sov-cta-sub { color: rgba(255,255,255,0.70) !important; -webkit-text-fill-color: rgba(255,255,255,0.70) !important; }
.sov-cta-eyebrow { color: rgba(255,255,255,0.60) !important; -webkit-text-fill-color: rgba(255,255,255,0.60) !important; background: rgba(255,255,255,0.06) !important; border-color: rgba(255,255,255,0.12) !important; }
.sov-cta-dot { background: #5B8E3E !important; box-shadow: none !important; animation: none !important; }
.sov-cta-chip { background: rgba(255,255,255,0.06) !important; border-color: rgba(255,255,255,0.12) !important; }
.sov-cta-chip span { color: rgba(255,255,255,0.75) !important; -webkit-text-fill-color: rgba(255,255,255,0.75) !important; }
.sov-cta-chip i { color: #5B8E3E !important; }
.sov-cta-btn-primary { background: #5B8E3E !important; border-radius: 8px !important; animation: none !important; }
.sov-cta-btn-primary::before { display: none !important; }
.sov-cta-btn-ghost { background: rgba(255,255,255,0.08) !important; border-color: rgba(255,255,255,0.20) !important; border-radius: 8px !important; }
.sov-cta-btn-ghost span, .sov-cta-btn-ghost i { color: rgba(255,255,255,0.85) !important; -webkit-text-fill-color: rgba(255,255,255,0.85) !important; }
.sov-cta-stat-num { color: #ffffff !important; -webkit-text-fill-color: #ffffff !important; }
.sov-cta-stat-plus { color: #5B8E3E !important; }
.sov-cta-stat-label { color: rgba(255,255,255,0.50) !important; -webkit-text-fill-color: rgba(255,255,255,0.50) !important; }
.sov-cta-stats { background: rgba(255,255,255,0.05) !important; border-color: rgba(255,255,255,0.10) !important; }
.sov-cta-proof-text p { color: rgba(255,255,255,0.55) !important; -webkit-text-fill-color: rgba(255,255,255,0.55) !important; }
.sov-cta-proof-text p strong { color: rgba(255,255,255,0.85) !important; -webkit-text-fill-color: rgba(255,255,255,0.85) !important; }
.sov-cta-stars i { color: #FDBE23 !important; }
.sov-cta-stars span { color: rgba(255,255,255,0.85) !important; -webkit-text-fill-color: rgba(255,255,255,0.85) !important; }

/* ── CTA card in services grid ── */
.sov-sg-card--cta { background: #1a1a1a !important; }
.sov-sg-cta-card-inner 
.sov-sg-cta-label { color: rgba(255,255,255,0.55) !important; -webkit-text-fill-color: rgba(255,255,255,0.55) !important; }
.sov-sg-cta-stats strong { color: #ffffff !important; -webkit-text-fill-color: #ffffff !important; }
.sov-sg-cta-stats span { color: rgba(255,255,255,0.50) !important; -webkit-text-fill-color: rgba(255,255,255,0.50) !important; }
.sov-sg-cta-orb { display: none !important; }

/* ── About section ── */
.about { background: #f9f9f9 !important; }
.about .about-content .feature-item {
  background: #ffffff !important;
  border: 1px solid rgba(0,0,0,0.08) !important;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05) !important;
}
.about .about-content .feature-item i { color: #5B8E3E !important; }
.about .about-content .feature-item h5 { color: #1a1a1a !important; -webkit-text-fill-color: #1a1a1a !important; }
.about .about-content .feature-item p { color: #5e5e5e !important; -webkit-text-fill-color: #5e5e5e !important; }
.about .about-image .experience-badge { background: #5B8E3E !important; }

/* ── Steps ── */
.steps { background: #ffffff !important; }
.steps .step-icon { background: #ffffff !important; border-color: rgba(91,142,62,0.20) !important; box-shadow: 0 2px 8px rgba(0,0,0,0.06) !important; }
.steps .step-icon i { color: #5B8E3E !important; }
.steps .step-info { background: #ffffff !important; border: 1px solid rgba(0,0,0,0.08) !important; box-shadow: 0 2px 8px rgba(0,0,0,0.05) !important; }
.steps .steps-wrapper::before { background-color: rgba(91,142,62,0.15) !important; }

/* ── Testimonials / Case Studies ── */
.testimonials { background: #f9f9f9 !important; }
.testimonials .testimonial-item { background: #ffffff !important; border: 1px solid rgba(0,0,0,0.08) !important; box-shadow: 0 2px 8px rgba(0,0,0,0.05) !important; }
.testimonials .testimonial-item h2 { color: #1a1a1a !important; -webkit-text-fill-color: #1a1a1a !important; }
.testimonials .testimonial-item p { color: #4a4a4a !important; -webkit-text-fill-color: #4a4a4a !important; }

/* ── Portfolio ── */
.portfolio { background: #ffffff !important; }
.portfolio .portfolio-filters li { background: #f5f5f5 !important; border: 1px solid rgba(0,0,0,0.08) !important; color: #2d2d2d !important; -webkit-text-fill-color: #2d2d2d !important; }
.portfolio .portfolio-filters li.filter-active,
.portfolio .portfolio-filters li:hover { background: #5B8E3E !important; border-color: #5B8E3E !important; color: #ffffff !important; -webkit-text-fill-color: #ffffff !important; box-shadow: none !important; }

/* ── FAQ ── */
.faq { background: #f9f9f9 !important; }


.faq-item 
.faq-item .faq-content p { color: #4a4a4a !important; -webkit-text-fill-color: #4a4a4a !important; }

/* ── Contact ── */
.contact { background: #ffffff !important; }
.contact .contact-info-box { background: #ffffff !important; border: 1px solid rgba(0,0,0,0.08) !important; box-shadow: 0 2px 8px rgba(0,0,0,0.05) !important; }
.contact .contact-info-box .icon-box { background: #f0f7eb !important; color: #5B8E3E !important; }
.contact .contact-info-box:hover .icon-box { background: #5B8E3E !important; color: #ffffff !important; }
.contact .contact-form-wrapper { background: #ffffff !important; border: 1px solid rgba(0,0,0,0.08) !important; box-shadow: 0 4px 20px rgba(0,0,0,0.06) !important; }
.input-with-icon .form-control { background: #f9f9f9 !important; border: 1.5px solid rgba(0,0,0,0.10) !important; color: #2d2d2d !important; -webkit-text-fill-color: #2d2d2d !important; }
.input-with-icon .form-control:focus { background: #ffffff !important; border-color: #5B8E3E !important; box-shadow: 0 0 0 3px rgba(91,142,62,0.12) !important; }
.input-with-icon .form-control::placeholder { color: #999999 !important; }

/* ── Page title (inner pages) ── */
.page-title { background: #1a1a1a !important; }
.page-title h1 { color: #ffffff !important; -webkit-text-fill-color: #ffffff !important; opacity: 1 !important; transform: none !important; animation: none !important; }
.page-title p { color: rgba(255,255,255,0.70) !important; -webkit-text-fill-color: rgba(255,255,255,0.70) !important; opacity: 1 !important; transform: none !important; animation: none !important; }
.page-title .breadcrumbs { opacity: 1 !important; animation: none !important; }
.page-title::after { display: none !important; }

/* ── Scroll to top ── */
.scroll-top { background: #5B8E3E !important; border: none !important; box-shadow: 0 4px 12px rgba(91,142,62,0.30) !important; animation: none !important; }
.scroll-top i { color: #ffffff !important; -webkit-text-fill-color: #ffffff !important; }
.scroll-top:hover { background: #3d6129 !important; transform: translateY(-2px) !important; }

/* ── Apple reveal — disable, show immediately ── */
.apple-reveal {
  opacity: 1 !important;
  transform: none !important;
  transition: none !important;
}

/* ── Remove all text highlights / underline animations ── */
a:not([class]) { background-image: none !important; text-decoration: none !important; }

/* ── Section Titles — consistent "Our Story" style ── */
.section-title {
  padding-bottom: 48px;
}
.section-title h2 {
  display: block !important;
  font-size: 0.72rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.18em !important;
  text-transform: uppercase !important;
  color: #5B8E3E !important;
  -webkit-text-fill-color: #5B8E3E !important;
  margin-bottom: 10px !important;
  line-height: 1.4 !important;
}
.section-title h2::before { display: none !important; }
.section-title div {
  font-size: clamp(2rem, 4.5vw, 3rem) !important;
  font-weight: 700 !important;
  letter-spacing: -0.03em !important;
  line-height: 1.15 !important;
  color: #1a1a1a !important;
  -webkit-text-fill-color: #1a1a1a !important;
}
.section-title div span:not(.description-title) {
  color: #1a1a1a !important;
  -webkit-text-fill-color: #1a1a1a !important;
}
.section-title .description-title {
  color: #5B8E3E !important;
  -webkit-text-fill-color: #5B8E3E !important;
  background: none !important;
  -webkit-background-clip: unset !important;
  background-clip: unset !important;
}

/* ── WhatsApp floating button ── */
.whatsapp-float {
  position: fixed;
  bottom: 72px;
  right: 20px;
  z-index: 9999;
  width: 52px;
  height: 52px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(37,211,102,0.40);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  text-decoration: none;
}
.whatsapp-float i {
  font-size: 26px;
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
  background: none !important;
  background-image: none !important;
}
.whatsapp-float:hover {
  transform: scale(1.10) translateY(-2px);
  box-shadow: 0 8px 24px rgba(37,211,102,0.50);
  background: #1ebe5d;
}

/* ── Service detail sidebar action card ── */
.service-details .service-sidebar .action-card {
  background: #5B8E3E !important;
  border-radius: 12px !important;
  box-shadow: 0 4px 16px rgba(91,142,62,0.25) !important;
}
.service-details .service-sidebar .action-card h3,
.service-details .service-sidebar .action-card p {
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
}
.service-details .service-sidebar .action-card .btn-primary {
  background: #ffffff !important;
  color: #5B8E3E !important;
  -webkit-text-fill-color: #5B8E3E !important;
  border-radius: 8px !important;
}

/* ── Preloader ── */
#preloader { background: #ffffff !important; }

/* ── Reduced motion ── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation: none !important;
    transition-duration: 0.01ms !important;
  }
}

/* ================================================================
   UNIFIED TYPE SCALE — Poppins, consistent across all elements
   Single source of truth — overrides everything above
================================================================ */

/* ── Hero eyebrow ── */
.hero .agency-name h5 {
  font-size: 0.75rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.18em !important;
  text-transform: uppercase !important;
  color: #5B8E3E !important;
  -webkit-text-fill-color: #5B8E3E !important;
  margin-bottom: 12px !important;
}

/* ── Hero main heading ── */
.hero .main-heading h1,
.sov-hero-title {
  font-size: clamp(2.8rem, 7vw, 5rem) !important;
  font-weight: 800 !important;
  letter-spacing: -0.04em !important;
  line-height: 1.05 !important;
  color: #1a1a1a !important;
  -webkit-text-fill-color: #1a1a1a !important;
  background: none !important;
  -webkit-background-clip: unset !important;
  background-clip: unset !important;
}
/* Green accent on hero title */
.hero .main-heading h1 .sov-hero-title {
  color: #5B8E3E !important;
  -webkit-text-fill-color: #5B8E3E !important;
}

/* ── Hero description ── */
.hero .description p {
  font-size: 1.05rem !important;
  font-weight: 400 !important;
  line-height: 1.8 !important;
  color: #4a4a4a !important;
  -webkit-text-fill-color: #4a4a4a !important;
}

/* ── Section headings (h2) — About, Services, etc. ── */
.about .about-content h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.4rem) !important;
  font-weight: 700 !important;
  letter-spacing: -0.03em !important;
  line-height: 1.2 !important;
  color: #1a1a1a !important;
  -webkit-text-fill-color: #1a1a1a !important;
}

/* ── Testimonial intro heading ── */
.about .testimonial-section .testimonial-intro h3 {
  font-size: clamp(1.4rem, 2.5vw, 1.8rem) !important;
  font-weight: 700 !important;
  letter-spacing: -0.02em !important;
  line-height: 1.25 !important;
  color: #1a1a1a !important;
  -webkit-text-fill-color: #1a1a1a !important;
}

/* ── Step headings ── */
.step-info h3 {
  font-size: clamp(1rem, 1.8vw, 1.2rem) !important;
  font-weight: 700 !important;
  letter-spacing: -0.02em !important;
  line-height: 1.3 !important;
  color: #1a1a1a !important;
  -webkit-text-fill-color: #1a1a1a !important;
}
.step-info p {
  font-size: 0.9rem !important;
  line-height: 1.75 !important;
  color: #5e5e5e !important;
  -webkit-text-fill-color: #5e5e5e !important;
}

/* ── Service card headings (h3 + h3 a) ── */
.service-card h3,
.service-card h3 a {
  font-size: clamp(1rem, 1.8vw, 1.15rem) !important;
  font-weight: 700 !important;
  letter-spacing: -0.02em !important;
  line-height: 1.3 !important;
  color: #1a1a1a !important;
  -webkit-text-fill-color: #1a1a1a !important;
  text-decoration: none !important;
}
.service-card h3 a span {
  color: #5B8E3E !important;
  -webkit-text-fill-color: #5B8E3E !important;
}
.service-card p {
  font-size: 0.875rem !important;
  line-height: 1.7 !important;
  color: #5e5e5e !important;
  -webkit-text-fill-color: #5e5e5e !important;
}

/* ── Services bento grid card headings ── */
.sov-sg-card-body h3 {
  font-size: clamp(1rem, 1.8vw, 1.15rem) !important;
  font-weight: 700 !important;
  letter-spacing: -0.02em !important;
  line-height: 1.3 !important;
  color: #1a1a1a !important;
  -webkit-text-fill-color: #1a1a1a !important;
}
.sov-sg-card-body h3 span {
  color: #5B8E3E !important;
  -webkit-text-fill-color: #5B8E3E !important;
}
.sov-sg-card-body p {
  font-size: 0.875rem !important;
  line-height: 1.7 !important;
  color: #5e5e5e !important;
  -webkit-text-fill-color: #5e5e5e !important;
}

/* ── CTA card heading ── */
.sov-sg-cta-card-inner h3 {
  font-size: clamp(1.5rem, 3vw, 2.2rem) !important;
  font-weight: 700 !important;
  letter-spacing: -0.03em !important;
  line-height: 1.2 !important;
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
}

/* ── Contact info box heading ── */
.contact .contact-info-box h3 {
  font-size: 1.05rem !important;
  font-weight: 700 !important;
  letter-spacing: -0.01em !important;
  line-height: 1.3 !important;
  color: #1a1a1a !important;
  -webkit-text-fill-color: #1a1a1a !important;
}

/* ── Feature item headings (about section) ── */
.about .about-content .feature-item h5 {
  font-size: 0.95rem !important;
  font-weight: 700 !important;
  letter-spacing: -0.01em !important;
  line-height: 1.3 !important;
  color: #1a1a1a !important;
  -webkit-text-fill-color: #1a1a1a !important;
}

/* ── Global h3 fallback ── */
h3 {
  font-size: clamp(1rem, 1.8vw, 1.2rem) !important;
  font-weight: 700 !important;
  letter-spacing: -0.02em !important;
  line-height: 1.3 !important;
  color: #1a1a1a !important;
  -webkit-text-fill-color: #1a1a1a !important;
}

/* ── Process step number label ── */
.sov-step-num {
  display: inline-flex;
  align-items: center;
  font-size: 0.72rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.16em !important;
  text-transform: uppercase !important;
  color: #5B8E3E !important;
  -webkit-text-fill-color: #5B8E3E !important;
  background: #f0f7eb;
  border-radius: 50px;
  padding: 4px 14px;
  align-self: flex-start;
  background-image: none !important;
}

/* ================================================================
   PORTFOLIO / RECENT PROJECTS — "Solutions we've built & delivered"
================================================================ */
.sov-portfolio-section {
  background: #ffffff;
  padding: 80px 0;
}

/* 3-column grid, 2 on tablet, 1 on mobile */
.sov-proj-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 48px;
}
@media (max-width: 991px) { .sov-proj-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; } }
@media (max-width: 575px) { .sov-proj-grid { grid-template-columns: 1fr; gap: 16px; } }

/* Card shell */
.sov-proj-card {
  background: #ffffff;
  border: 1.5px solid rgba(0,0,0,0.07);
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: border-color 0.22s ease, box-shadow 0.22s ease, transform 0.22s ease;
}
.sov-proj-card:hover {
  border-color: rgba(91,142,62,0.30);
  box-shadow: 0 12px 40px rgba(91,142,62,0.10);
  transform: translateY(-4px);
}

/* Image area */
.sov-proj-img-wrap {
  display: block;
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background: #f0f0f0;
  text-decoration: none !important;
  background-image: none !important;
  flex-shrink: 0;
}
.sov-proj-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.45s ease;
}
.sov-proj-card:hover .sov-proj-img-wrap img {
  transform: scale(1.06);
}

/* Sector tag badge */
.sov-proj-tag {
  position: absolute;
  top: 14px;
  left: 14px;
  background: rgba(255,255,255,0.95);
  color: #5B8E3E !important;
  -webkit-text-fill-color: #5B8E3E !important;
  font-family: 'Poppins', sans-serif !important;
  font-size: 0.65rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.10em !important;
  text-transform: uppercase !important;
  padding: 4px 12px;
  border-radius: 50px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.12);
  backdrop-filter: blur(4px);
}

/* Card body */
.sov-proj-body {
  padding: 22px 24px 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}

/* Meta row: type + year */
.sov-proj-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2px;
}
.sov-proj-type {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-family: 'Poppins', sans-serif !important;
  font-size: 0.70rem !important;
  font-weight: 600 !important;
  color: #5B8E3E !important;
  -webkit-text-fill-color: #5B8E3E !important;
  letter-spacing: 0.04em;
}
.sov-proj-type i {
  font-size: 11px;
  color: #5B8E3E !important;
  -webkit-text-fill-color: #5B8E3E !important;
}
.sov-proj-year {
  font-family: 'Poppins', sans-serif !important;
  font-size: 0.68rem !important;
  font-weight: 500 !important;
  color: #aaaaaa !important;
  -webkit-text-fill-color: #aaaaaa !important;
}

/* Title */
.sov-proj-body h3 {
  font-family: 'Poppins', sans-serif !important;
  font-size: 1.05rem !important;
  font-weight: 700 !important;
  letter-spacing: -0.02em !important;
  line-height: 1.3 !important;
  color: #1a1a1a !important;
  -webkit-text-fill-color: #1a1a1a !important;
  margin: 0 !important;
}
.sov-proj-body h3 span {
  color: #5B8E3E !important;
  -webkit-text-fill-color: #5B8E3E !important;
}

/* Description */
.sov-proj-body p {
  font-family: 'Poppins', sans-serif !important;
  font-size: 0.82rem !important;
  font-weight: 400 !important;
  line-height: 1.65 !important;
  color: #5e5e5e !important;
  -webkit-text-fill-color: #5e5e5e !important;
  margin: 0 !important;
}

/* Results chips */
.sov-proj-results {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 4px;
}
.sov-proj-results span {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: #f0f7eb;
  color: #3d6b28 !important;
  -webkit-text-fill-color: #3d6b28 !important;
  font-family: 'Poppins', sans-serif !important;
  font-size: 0.68rem !important;
  font-weight: 600 !important;
  padding: 4px 10px;
  border-radius: 50px;
  white-space: nowrap;
}
.sov-proj-results span i {
  font-size: 10px;
  color: #5B8E3E !important;
  -webkit-text-fill-color: #5B8E3E !important;
}

/* View project link */
.sov-proj-cta {
  display: inline-flex !important;
  align-items: center !important;
  gap: 6px !important;
  font-family: 'Poppins', sans-serif !important;
  font-size: 0.78rem !important;
  font-weight: 600 !important;
  color: #5B8E3E !important;
  -webkit-text-fill-color: #5B8E3E !important;
  text-decoration: none !important;
  background-image: none !important;
  margin-top: auto;
  padding-top: 8px;
  border-top: 1px solid rgba(0,0,0,0.06);
  transition: gap 0.18s ease !important;
}
.sov-proj-cta:hover { gap: 10px !important; }
.sov-proj-cta i {
  font-size: 13px;
  color: #5B8E3E !important;
  -webkit-text-fill-color: #5B8E3E !important;
}

/* Bottom CTA strip */
.sov-proj-cta-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  background: linear-gradient(135deg, #1a2e14 0%, #2d5220 100%);
  border-radius: 20px;
  padding: 36px 44px;
  margin-top: 48px;
  flex-wrap: wrap;
}
.sov-proj-cta-strip-eyebrow {
  font-family: 'Poppins', sans-serif !important;
  font-size: 0.75rem !important;
  font-weight: 600 !important;
  color: rgba(255,255,255,0.65) !important;
  -webkit-text-fill-color: rgba(255,255,255,0.65) !important;
  display: flex;
  align-items: center;
  gap: 7px;
  margin-bottom: 8px !important;
}
.sov-proj-cta-strip-eyebrow i {
  color: #FDBE23 !important;
  -webkit-text-fill-color: #FDBE23 !important;
}
.sov-proj-cta-strip-left h3 {
  font-family: 'Poppins', sans-serif !important;
  font-size: clamp(1.3rem, 2.5vw, 1.8rem) !important;
  font-weight: 800 !important;
  letter-spacing: -0.03em !important;
  line-height: 1.2 !important;
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
  margin: 0 !important;
}
.sov-proj-cta-strip-left h3 span {
  color: #FDBE23 !important;
  -webkit-text-fill-color: #FDBE23 !important;
}
.sov-proj-cta-strip-right {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .sov-proj-cta-strip { padding: 28px 24px; flex-direction: column; align-items: flex-start; }
}

/* ── sov-sg-card--cta inner — all text white, consistent ── */
.sov-sg-cta-card-inner h3 span {
  color: rgba(255,255,255,0.75) !important;
  -webkit-text-fill-color: rgba(255,255,255,0.75) !important;
}
.sov-sg-cta-desc {
  font-size: 0.9rem !important;
  font-weight: 400 !important;
  line-height: 1.75 !important;
  color: rgba(255,255,255,0.65) !important;
  -webkit-text-fill-color: rgba(255,255,255,0.65) !important;
  margin: 0 !important;
}
/* Remove any inline style bleed — all p inside cta card */
.sov-sg-card--cta p:not(.sov-sg-cta-label):not(.sov-sg-cta-desc) {
  color: rgba(255,255,255,0.65) !important;
  -webkit-text-fill-color: rgba(255,255,255,0.65) !important;
  font-size: 0.9rem !important;
  line-height: 1.75 !important;
}

/* ================================================================
   ABOUT SECTION — redesigned to match sov-sg-grid style
================================================================ */

/* ── Top hero: image + content side by side ── */
.sov-about-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  margin-bottom: 56px;
}
@media (max-width: 991px) {
  .sov-about-hero { grid-template-columns: 1fr; gap: 40px; }
}

/* ── Image ── */
.sov-about-img-wrap {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
}
.sov-about-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 20px;
}
.sov-about-badge {
  position: absolute;
  bottom: 24px;
  right: -16px;
  background: #5B8E3E;
  color: #ffffff;
  padding: 18px 24px;
  border-radius: 14px;
  text-align: center;
  box-shadow: 0 8px 24px rgba(91,142,62,0.30);
}
.sov-about-badge-num {
  display: block;
  font-size: 2.2rem;
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1;
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
}
.sov-about-badge-text {
  display: block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.80) !important;
  -webkit-text-fill-color: rgba(255,255,255,0.80) !important;
  margin-top: 4px;
}
@media (max-width: 991px) {
  .sov-about-badge { right: 16px; }
}

/* ── Content side ── */
.sov-about-content h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem) !important;
  font-weight: 800 !important;
  letter-spacing: -0.04em !important;
  line-height: 1.1 !important;
  color: #1a1a1a !important;
  -webkit-text-fill-color: #1a1a1a !important;
  margin-bottom: 20px !important;
}
.sov-about-content h2 span {
  color: #5B8E3E !important;
  -webkit-text-fill-color: #5B8E3E !important;
}
.sov-about-lead {
  font-size: 1rem !important;
  font-weight: 500 !important;
  line-height: 1.75 !important;
  color: #2d2d2d !important;
  -webkit-text-fill-color: #2d2d2d !important;
  margin-bottom: 14px !important;
}
.sov-about-body {
  font-size: 0.9rem !important;
  line-height: 1.75 !important;
  color: #5e5e5e !important;
  -webkit-text-fill-color: #5e5e5e !important;
  margin-bottom: 28px !important;
}

/* ── Feature grid ── */
.sov-about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
@media (max-width: 575px) {
  .sov-about-features { grid-template-columns: 1fr; }
}
.sov-about-feat {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: #ffffff;
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 12px;
  padding: 16px 18px;
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}
.sov-about-feat:hover {
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  transform: translateY(-2px);
}
.sov-about-feat-icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: #f0f7eb;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.sov-about-feat-icon i {
  font-size: 18px;
  color: #5B8E3E !important;
  -webkit-text-fill-color: #5B8E3E !important;
}
.sov-about-feat h5 {
  font-size: 0.875rem !important;
  font-weight: 700 !important;
  color: #1a1a1a !important;
  -webkit-text-fill-color: #1a1a1a !important;
  margin-bottom: 4px !important;
  line-height: 1.3 !important;
}
.sov-about-feat p {
  font-size: 0.78rem !important;
  line-height: 1.6 !important;
  color: #5e5e5e !important;
  -webkit-text-fill-color: #5e5e5e !important;
  margin: 0 !important;
}

/* ── About CTA button ── */
.sov-about-cta {
  border-radius: 8px !important;
  font-size: 0.875rem !important;
  font-weight: 600 !important;
  padding: 12px 24px !important;
}

/* ── Stats row ── */
.sov-about-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
  background: #ffffff;
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 16px;
  padding: 32px 40px;
  margin-bottom: 64px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.05);
}
.sov-about-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 8px 40px;
  flex: 1;
  min-width: 120px;
}
.sov-about-stat-num {
  font-size: 2.4rem;
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1;
  color: #5B8E3E !important;
  -webkit-text-fill-color: #5B8E3E !important;
}
.sov-about-stat-plus {
  font-size: 1.4rem;
  font-weight: 800;
  color: #5B8E3E !important;
  -webkit-text-fill-color: #5B8E3E !important;
}
.sov-about-stat-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #888888 !important;
  -webkit-text-fill-color: #888888 !important;
  text-align: center;
}
.sov-about-stat-divider {
  width: 1px;
  height: 48px;
  background: rgba(0,0,0,0.08);
  flex-shrink: 0;
  align-self: center;
}
@media (max-width: 767px) {
  .sov-about-stats { padding: 24px 16px; gap: 0; }
  .sov-about-stat { padding: 12px 16px; min-width: 90px; }
  .sov-about-stat-divider { height: 36px; }
}

/* ── Testimonial grid ── */
.sov-testimonial-grid {
  grid-template-columns: repeat(2, 1fr) !important;
}
@media (max-width: 767px) {
  .sov-testimonial-grid { grid-template-columns: 1fr !important; }
}
.sov-review-card .sov-sg-card-inner {
  gap: 14px;
}
.sov-review-stars {
  display: flex;
  gap: 3px;
}
.sov-review-stars i {
  font-size: 0.8rem;
  color: #FDBE23 !important;
  -webkit-text-fill-color: #FDBE23 !important;
}
.sov-review-text {
  font-size: 0.9rem !important;
  line-height: 1.75 !important;
  color: #4a4a4a !important;
  -webkit-text-fill-color: #4a4a4a !important;
  font-style: italic;
  margin: 0 !important;
}
.sov-review-author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 14px;
  border-top: 1px solid rgba(0,0,0,0.07);
  margin-top: auto;
}
.sov-review-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #f0f7eb;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.sov-review-avatar i {
  font-size: 22px;
  color: #5B8E3E !important;
  -webkit-text-fill-color: #5B8E3E !important;
}
.sov-review-author strong {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  color: #1a1a1a !important;
  -webkit-text-fill-color: #1a1a1a !important;
  line-height: 1.3;
}
.sov-review-author span {
  font-size: 0.75rem;
  color: #888888 !important;
  -webkit-text-fill-color: #888888 !important;
}

/* ================================================================
   INNER PAGE HERO — white clean, no dark background
================================================================ */
.sov-inner-hero {
  padding: 110px 0 48px;
  background: #ffffff;
}
.sov-inner-hero .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
@media (max-width: 991px) {
  .sov-inner-hero .container { grid-template-columns: 1fr; gap: 40px; }
  .sov-inner-hero-img { order: -1; }
}
.sov-inner-hero-content h1 {
  font-size: clamp(2.4rem, 5vw, 3.8rem) !important;
  font-weight: 800 !important;
  letter-spacing: -0.04em !important;
  line-height: 1.1 !important;
  color: #1a1a1a !important;
  -webkit-text-fill-color: #1a1a1a !important;
  margin-bottom: 20px !important;
}
.sov-inner-hero-content h1 span {
  color: #5B8E3E !important;
  -webkit-text-fill-color: #5B8E3E !important;
}
.sov-inner-hero-content > p {
  font-size: 1rem !important;
  line-height: 1.75 !important;
  color: #5e5e5e !important;
  -webkit-text-fill-color: #5e5e5e !important;
  margin-bottom: 28px !important;
}
.sov-inner-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 28px;
}
.sov-inner-hero-actions .sov-sg-cta-btn-primary,
.sov-inner-hero-actions .sov-sg-cta-btn-ghost {
  border-radius: 8px !important;
  font-size: 0.875rem !important;
  padding: 12px 22px !important;
}
.sov-inner-hero-img img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 8px 40px rgba(0,0,0,0.10);
  display: block;
}

/* ── Breadcrumb ── */
.sov-breadcrumb {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}
.sov-breadcrumb a {
  font-size: 0.78rem !important;
  font-weight: 500 !important;
  color: #5B8E3E !important;
  -webkit-text-fill-color: #5B8E3E !important;
  text-decoration: none !important;
  background-image: none !important;
}
.sov-breadcrumb i {
  font-size: 0.65rem;
  color: #aaaaaa !important;
  -webkit-text-fill-color: #aaaaaa !important;
}
.sov-breadcrumb span {
  font-size: 0.78rem !important;
  font-weight: 500 !important;
  color: #aaaaaa !important;
  -webkit-text-fill-color: #aaaaaa !important;
}

/* ── Stats strip ── */
.sov-inner-stats {
  background: #ffffff;
  padding: 0 0 48px;
}

/* ================================================================
   PREMIUM HERO SECTION — Vision to Value
================================================================ */

.sov-hero-premium {
  min-height: 88vh;
  background: #ffffff !important;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  padding: 100px 0 56px !important;
}

/* ── Animated background ── */
.sov-hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}
.sov-hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.55;
}
.sov-hero-orb-1 {
  width: 520px; height: 520px;
  background: radial-gradient(circle, rgba(91,142,62,0.13) 0%, transparent 70%);
  top: -120px; right: -80px;
  animation: sov-hero-drift 14s ease-in-out infinite alternate;
}
.sov-hero-orb-2 {
  width: 380px; height: 380px;
  background: radial-gradient(circle, rgba(91,142,62,0.08) 0%, transparent 70%);
  bottom: -60px; left: -60px;
  animation: sov-hero-drift 18s ease-in-out infinite alternate-reverse;
}
@keyframes sov-hero-drift {
  from { transform: translate(0,0) scale(1); }
  to   { transform: translate(24px,-18px) scale(1.06); }
}
.sov-hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(91,142,62,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(91,142,62,0.035) 1px, transparent 1px);
  background-size: 48px 48px;
  -webkit-mask-image: radial-gradient(circle at 60% 40%, black 30%, transparent 80%);
  mask-image: radial-gradient(circle at 60% 40%, black 30%, transparent 80%);
}

/* ── Layout ── */
.sov-hero-container {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
@media (max-width: 991px) {
  .sov-hero-container { grid-template-columns: 1fr; gap: 48px; }
  .sov-hero-right { order: -1; }
  .sov-hero-premium { padding: 88px 0 48px !important; }
}

/* ── Left: content ── */
.sov-hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #5B8E3E !important;
  -webkit-text-fill-color: #5B8E3E !important;
  margin-bottom: 24px;
  opacity: 0;
  animation: sov-fade-up 0.6s ease forwards 0.1s;
}
.sov-hero-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #5B8E3E;
  box-shadow: 0 0 0 3px rgba(91,142,62,0.20);
  flex-shrink: 0;
  animation: sov-dot-pulse 2.5s ease-in-out infinite;
}
@keyframes sov-dot-pulse {
  0%,100% { box-shadow: 0 0 0 3px rgba(91,142,62,0.20); }
  50%     { box-shadow: 0 0 0 6px rgba(91,142,62,0.10); }
}

/* ── Heading ── */
.sov-hero-heading {
  font-size: clamp(3.2rem, 7vw, 5.6rem) !important;
  font-weight: 800 !important;
  letter-spacing: -0.05em !important;
  line-height: 1.0 !important;
  color: #1a1a1a !important;
  -webkit-text-fill-color: #1a1a1a !important;
  margin-bottom: 24px !important;
  display: block;
}
.sov-hero-line {
  display: block;
  opacity: 0;
  transform: translateY(20px);
}
.sov-hero-line-1 {
  animation: sov-fade-up 0.7s cubic-bezier(0.16,1,0.3,1) forwards 0.2s;
}
.sov-hero-line-2 {
  animation: sov-fade-up 0.7s cubic-bezier(0.16,1,0.3,1) forwards 0.35s;
}
.sov-hero-heading em {
  font-style: normal;
  color: #5B8E3E !important;
  -webkit-text-fill-color: #5B8E3E !important;
}
@keyframes sov-fade-up {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── Description ── */
.sov-hero-desc {
  font-size: 1.05rem !important;
  line-height: 1.8 !important;
  color: #5e5e5e !important;
  -webkit-text-fill-color: #5e5e5e !important;
  max-width: 480px;
  margin-bottom: 32px !important;
  opacity: 0;
  animation: sov-fade-up 0.6s ease forwards 0.45s;
}

/* ── CTA buttons ── */
.sov-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 36px;
  opacity: 0;
  animation: sov-fade-up 0.6s ease forwards 0.55s;
}
.sov-hero-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  background: #5B8E3E;
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
  font-size: 0.9rem;
  font-weight: 700;
  border-radius: 8px;
  text-decoration: none !important;
  background-image: none !important;
  transition: background 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}
.sov-hero-btn-primary:hover {
  background: #3d6129;
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(91,142,62,0.30);
}
.sov-hero-btn-primary i { transition: transform 0.25s ease; }
.sov-hero-btn-primary:hover i { transform: translateX(4px); }

.sov-hero-btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  background: transparent;
  color: #2d2d2d !important;
  -webkit-text-fill-color: #2d2d2d !important;
  font-size: 0.9rem;
  font-weight: 600;
  border-radius: 8px;
  border: 1.5px solid rgba(0,0,0,0.15);
  text-decoration: none !important;
  background-image: none !important;
  transition: all 0.25s ease;
}
.sov-hero-btn-ghost:hover {
  border-color: #5B8E3E;
  color: #5B8E3E !important;
  -webkit-text-fill-color: #5B8E3E !important;
  background: rgba(91,142,62,0.05);
}

/* ── Contact chips ── */
.sov-hero-contacts {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  opacity: 0;
  animation: sov-fade-up 0.6s ease forwards 0.65s;
}
.sov-hero-contact-chip {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px 10px 10px;
  background: #ffffff;
  border: 1px solid rgba(0,0,0,0.09);
  border-radius: 50px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  text-decoration: none !important;
  background-image: none !important;
  transition: all 0.25s ease;
}
.sov-hero-contact-chip:hover {
  border-color: #5B8E3E;
  box-shadow: 0 4px 16px rgba(91,142,62,0.15);
  transform: translateY(-2px);
}
.sov-hero-chip-icon {
  width: 34px; height: 34px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  font-size: 15px;
}
.sov-chip-call  { background: rgba(91,142,62,0.12); color: #5B8E3E !important; -webkit-text-fill-color: #5B8E3E !important; }
.sov-chip-email { background: rgba(91,142,62,0.12); color: #5B8E3E !important; -webkit-text-fill-color: #5B8E3E !important; }
.sov-chip-wa    { background: rgba(37,211,102,0.12); color: #25D366 !important; -webkit-text-fill-color: #25D366 !important; }
.sov-hero-chip-text {
  display: flex;
  flex-direction: column;
  line-height: 1.3;
}
.sov-hero-chip-text small {
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #aaaaaa !important;
  -webkit-text-fill-color: #aaaaaa !important;
}
.sov-hero-chip-text {
  font-size: 0.78rem;
  font-weight: 600;
  color: #2d2d2d !important;
  -webkit-text-fill-color: #2d2d2d !important;
}
.sov-hero-contact-chip:hover .sov-hero-chip-text {
  color: #1a1a1a !important;
  -webkit-text-fill-color: #1a1a1a !important;
}

/* ── Right: image ── */
.sov-hero-img-wrap {
  position: relative;
  border-radius: 24px;
  overflow: visible;
}
.sov-hero-img-wrap img {
  width: 100%;
  border-radius: 24px;
  box-shadow: 0 12px 48px rgba(0,0,0,0.12);
  display: block;
}

/* Floating badges */
.sov-hero-badge {
  position: absolute;
  background: #ffffff;
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 14px;
  padding: 12px 18px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.10);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  animation: sov-badge-float 4s ease-in-out infinite;
}
.sov-hero-badge-tl { top: -16px; left: -16px; animation-delay: 0s; }
.sov-hero-badge-br { bottom: -16px; right: -16px; animation-delay: 2s; }
@keyframes sov-badge-float {
  0%,100% { transform: translateY(0); }
  50%     { transform: translateY(-6px); }
}
.sov-hero-badge-num {
  font-size: 1.4rem;
  font-weight: 800;
  letter-spacing: -0.04em;
  color: #5B8E3E !important;
  -webkit-text-fill-color: #5B8E3E !important;
  line-height: 1;
}
.sov-hero-badge-num i { font-size: 0.9rem; }
.sov-hero-badge-label {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #888888 !important;
  -webkit-text-fill-color: #888888 !important;
}

/* ── Summary mini-cards ── */
.sov-hero-summary {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 16px;
}
.sov-hero-sum-card {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  background: #ffffff;
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  text-decoration: none !important;
  background-image: none !important;
  transition: all 0.25s ease;
}
.sov-hero-sum-card:hover {
  border-color: rgba(91,142,62,0.30);
  box-shadow: 0 4px 16px rgba(91,142,62,0.12);
  transform: translateY(-2px);
}
.sov-hero-sum-icon {
  width: 32px; height: 32px;
  border-radius: 8px;
  background: #f0f7eb;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  font-size: 15px;
  color: #5B8E3E !important;
  -webkit-text-fill-color: #5B8E3E !important;
  transition: background 0.25s ease;
}
.sov-hero-sum-card:hover .sov-hero-sum-icon {
  background: #5B8E3E;
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
}
.sov-hero-sum-text {
  font-size: 0.78rem;
  font-weight: 600;
  color: #2d2d2d !important;
  -webkit-text-fill-color: #2d2d2d !important;
  flex: 1;
  line-height: 1.3;
}
.sov-hero-sum-arrow {
  font-size: 0.75rem;
  color: #aaaaaa !important;
  -webkit-text-fill-color: #aaaaaa !important;
  transition: all 0.25s ease;
}
.sov-hero-sum-card:hover .sov-hero-sum-arrow {
  color: #5B8E3E !important;
  -webkit-text-fill-color: #5B8E3E !important;
  transform: translate(2px,-2px);
}

/* ── Scroll indicator ── */
.sov-hero-scroll {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
}
.sov-hero-scroll span {
  display: block;
  width: 1.5px;
  height: 40px;
  background: linear-gradient(to bottom, #5B8E3E, transparent);
  animation: sov-scroll-line 2s ease-in-out infinite;
}
@keyframes sov-scroll-line {
  0%   { transform: scaleY(0); transform-origin: top; opacity: 1; }
  50%  { transform: scaleY(1); transform-origin: top; opacity: 1; }
  100% { transform: scaleY(1); transform-origin: bottom; opacity: 0; }
}

/* ── Reduced motion ── */
@media (prefers-reduced-motion: reduce) {
  .sov-hero-orb-1, .sov-hero-orb-2,
  .sov-hero-badge, .sov-hero-scroll span,
  .sov-hero-dot { animation: none !important; }
  .sov-hero-eyebrow, .sov-hero-line,
  .sov-hero-desc, .sov-hero-actions,
  .sov-hero-contacts {
    opacity: 1 !important;
    transform: none !important;
    animation: none !important;
  }
}

/* ── Mobile ── */
@media (max-width: 575px) {
  .sov-hero-heading { font-size: 2.8rem !important; }
  .sov-hero-summary { grid-template-columns: 1fr; }
  .sov-hero-contacts { flex-direction: column; }
  .sov-hero-contact-chip { width: 100%; }
  .sov-hero-badge-tl { top: -10px; left: -10px; }
  .sov-hero-badge-br { bottom: -10px; right: -10px; }
}

.navmenu a:hover,
.navmenu .active,
.navmenu .active:focus {
  color: #5B8E3E !important;
  -webkit-text-fill-color: #5B8E3E !important;
}
.header .btn-getstarted,
.header .btn-getstarted:focus {
  background: #5B8E3E !important;
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
  font-size: 0.85rem !important;
  font-weight: 600 !important;
  padding: 9px 22px !important;
  border-radius: 50px !important;
  border: none !important;
  box-shadow: none !important;
  animation: none !important;
  transition: background 0.2s ease, transform 0.2s ease !important;
  letter-spacing: 0 !important;
}
.header .btn-getstarted:hover {
  background: #3d6129 !important;
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
  transform: translateY(-1px) !important;
  box-shadow: 0 4px 12px rgba(91,142,62,0.25) !important;
}

/* ================================================================
   FOOTER — dark, clean, full-width, no cut-off
================================================================ */


/* Ensure all columns are visible — no overflow cut */
.footer .row {
  --bs-gutter-x: 2rem;
}
.footer .footer-about p {
  font-size: 0.85rem !important;
  line-height: 1.75 !important;
  color: rgba(255,255,255,0.60) !important;
  -webkit-text-fill-color: rgba(255,255,255,0.60) !important;
  margin-top: 12px !important;
}
.footer .logo img {
  max-height: 44px !important;
  filter: brightness(0) invert(1);
}
/* Social links */

/* Column headings */

.footer .footer-contact a {
  font-size: 0.82rem !important;
  color: rgba(255,255,255,0.72) !important;
  -webkit-text-fill-color: rgba(255,255,255,0.72) !important;
  text-decoration: none !important;
  background-image: none !important;
  transition: color 0.2s ease !important;
}
.footer .footer-contact a:hover {
  color: #5B8E3E !important;
  -webkit-text-fill-color: #5B8E3E !important;
}
/* Copyright bar */

/* Responsive — prevent column cut-off */
@media (max-width: 991px) {
  
  .footer .row { --bs-gutter-x: 1.5rem; }
}
@media (max-width: 767px) {
  .footer .col-6 { width: 50% !important; }
  
}
@media (max-width: 575px) {
  .footer .col-6 { width: 100% !important; }
  
}

/* ================================================================
   Vasify FOOTER — Redesigned 2025
   Clean dark footer with top brand strip + 7-col link grid + bottom bar
================================================================ */

.sov-footer {
  background: #0f1a0a;
  font-family: 'Poppins', sans-serif;
  color: rgba(255,255,255,0.65);
}

/* ── Pre-footer CTA strip (kept for compatibility) ── */
.sov-footer-pre {
  background: linear-gradient(135deg, #1a2e14 0%, #2d5220 100%);
  padding: 48px 0;
  position: relative;
  overflow: hidden;
}
.sov-footer-pre::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 80% 50%, rgba(91,142,62,0.15) 0%, transparent 60%);
  pointer-events: none;
}
.sov-footer-pre-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  position: relative;
  z-index: 1;
}
.sov-footer-pre-eyebrow {
  font-size: 0.72rem !important;
  font-weight: 600 !important;
  color: rgba(255,255,255,0.55) !important;
  -webkit-text-fill-color: rgba(255,255,255,0.55) !important;
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 8px !important;
}
.sov-footer-pre-eyebrow i { color: #FDBE23 !important; -webkit-text-fill-color: #FDBE23 !important; }
.sov-footer-pre-heading {
  font-size: clamp(1.4rem, 3vw, 2rem) !important;
  font-weight: 800 !important;
  letter-spacing: -0.03em !important;
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
  margin: 0 !important;
}
.sov-footer-pre-heading span { color: #FDBE23 !important; -webkit-text-fill-color: #FDBE23 !important; }
.sov-footer-pre-right { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.sov-footer-pre-btn {
  display: inline-flex; align-items: center; gap: 8px;
  background: #5B8E3E; color: #ffffff !important; -webkit-text-fill-color: #ffffff !important;
  padding: 12px 24px; border-radius: 8px;
  font-size: 0.875rem !important; font-weight: 600 !important;
  text-decoration: none !important; background-image: none !important;
  transition: background 0.2s ease, transform 0.2s ease;
  white-space: nowrap;
}
.sov-footer-pre-btn:hover { background: #4a7a32; transform: translateY(-1px); }
.sov-footer-pre-link {
  display: inline-flex; align-items: center; gap: 6px;
  color: rgba(255,255,255,0.7) !important; -webkit-text-fill-color: rgba(255,255,255,0.7) !important;
  font-size: 0.85rem !important; font-weight: 500 !important;
  text-decoration: none !important; background-image: none !important;
  transition: color 0.2s ease;
}
.sov-footer-pre-link:hover { color: #ffffff !important; -webkit-text-fill-color: #ffffff !important; }
@media (max-width: 767px) {
  .sov-footer-pre-inner { flex-direction: column; align-items: flex-start; gap: 20px; }
  .sov-footer-pre-right { width: 100%; flex-direction: column; gap: 10px; }
  .sov-footer-pre-btn, .sov-footer-pre-link { width: 100%; justify-content: center; }
}

/* ── TOP STRIP: Brand + Contact + Stats ── */
.sov-ft-top {
  padding: 56px 0 40px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.sov-ft-top-inner {
  display: grid;
  grid-template-columns: 1.8fr 1.4fr 1fr;
  gap: 48px;
  align-items: start;
}
@media (max-width: 991px) {
  .sov-ft-top-inner { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 575px) {
  .sov-ft-top-inner { grid-template-columns: 1fr; gap: 28px; }
  .sov-ft-top { padding: 40px 0 28px; }
}

/* Brand */
.sov-ft-logo-link { display: inline-block; margin-bottom: 14px; }
.sov-ft-tagline {
  font-size: 0.82rem !important;
  line-height: 1.65 !important;
  color: rgba(255,255,255,0.50) !important;
  -webkit-text-fill-color: rgba(255,255,255,0.50) !important;
  margin: 0 0 18px !important;
  max-width: 280px;
}
.sov-ft-socials {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.sov-ft-socials a {
  width: 34px; height: 34px;
  border-radius: 8px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.55) !important;
  -webkit-text-fill-color: rgba(255,255,255,0.55) !important;
  font-size: 0.85rem;
  text-decoration: none !important;
  background-image: none !important;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.sov-ft-socials a:hover {
  background: rgba(91,142,62,0.25);
  border-color: rgba(91,142,62,0.4);
  color: #5B8E3E !important;
  -webkit-text-fill-color: #5B8E3E !important;
}

/* Contact */
.sov-ft-contact-title {
  font-size: 0.68rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.12em !important;
  text-transform: uppercase !important;
  color: #5B8E3E !important;
  -webkit-text-fill-color: #5B8E3E !important;
  margin: 0 0 14px !important;
}
.sov-ft-contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
  text-decoration: none !important;
  background-image: none !important;
  color: rgba(255,255,255,0.60) !important;
  -webkit-text-fill-color: rgba(255,255,255,0.60) !important;
  font-size: 0.80rem !important;
  font-weight: 500 !important;
  transition: color 0.2s ease;
}
.sov-ft-contact-item:hover {
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
}
.sov-ft-contact-item .sov-ft-contact-icon {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: rgba(91,142,62,0.15) !important;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  font-size: 0.75rem;
  color: #5B8E3E !important;
  -webkit-text-fill-color: #5B8E3E !important;
}
.sov-ft-wa .sov-ft-contact-icon {
  background: rgba(37,211,102,0.15) !important;
  color: #25D366 !important;
  -webkit-text-fill-color: #25D366 !important;
}
.sov-ft-address {
  font-size: 0.75rem !important;
  line-height: 1.6 !important;
  color: rgba(255,255,255,0.40) !important;
  -webkit-text-fill-color: rgba(255,255,255,0.40) !important;
  margin-top: 12px !important;
  font-style: normal !important;
}
.sov-ft-address i {
  color: #5B8E3E !important;
  -webkit-text-fill-color: #5B8E3E !important;
  margin-right: 4px;
}

/* Stats */
.sov-ft-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.sov-ft-stat {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 10px;
  padding: 14px 12px;
  text-align: center;
  transition: background 0.2s ease;
}
.sov-ft-stat:hover { background: rgba(91,142,62,0.10); border-color: rgba(91,142,62,0.2); }
.sov-ft-stat-num {
  display: block;
  font-size: 1.1rem !important;
  font-weight: 800 !important;
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
  letter-spacing: -0.02em;
  line-height: 1.2;
}
.sov-ft-stat-label {
  display: block;
  font-size: 0.62rem !important;
  font-weight: 600 !important;
  color: rgba(255,255,255,0.40) !important;
  -webkit-text-fill-color: rgba(255,255,255,0.40) !important;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 3px;
}

/* ── DIVIDER ── */
.sov-ft-divider {
  height: 1px;
  background: rgba(255,255,255,0.06);
  margin: 0;
}

/* ── LINKS MEGA GRID ── */
.sov-ft-links {
  padding: 40px 0 48px;
}
.sov-ft-links-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 24px;
}
@media (max-width: 1199px) {
  .sov-ft-links-grid { grid-template-columns: repeat(4, 1fr); gap: 20px; }
}
@media (max-width: 767px) {
  .sov-ft-links-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .sov-ft-links { padding: 28px 0 36px; }
}
@media (max-width: 480px) {
  .sov-ft-links-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
}

/* Column */
.sov-ft-col-title {
  font-size: 0.65rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.10em !important;
  text-transform: uppercase !important;
  color: rgba(255,255,255,0.85) !important;
  -webkit-text-fill-color: rgba(255,255,255,0.85) !important;
  margin: 0 0 12px !important;
  display: flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
}
.sov-ft-col-title i {
  font-size: 11px;
  color: #5B8E3E !important;
  -webkit-text-fill-color: #5B8E3E !important;
  flex-shrink: 0;
}
.sov-ft-col ul {
  list-style: none !important;
  padding: 0 !important;
  margin: 0 !important;
}
.sov-ft-col ul li {
  margin-bottom: 6px !important;
}
.sov-ft-col ul a {
  font-size: 0.75rem !important;
  font-weight: 400 !important;
  color: rgba(255,255,255,0.45) !important;
  -webkit-text-fill-color: rgba(255,255,255,0.45) !important;
  text-decoration: none !important;
  background-image: none !important;
  transition: color 0.18s ease, padding-left 0.18s ease;
  display: block;
  line-height: 1.4;
}
.sov-ft-col ul a:hover {
  color: #5B8E3E !important;
  -webkit-text-fill-color: #5B8E3E !important;
  padding-left: 4px;
}

/* ── BOTTOM BAR ── */
.sov-ft-bar {
  background: rgba(0,0,0,0.25);
  border-top: 1px solid rgba(255,255,255,0.05);
  padding: 16px 0;
}
.sov-ft-bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.sov-ft-copy {
  font-size: 0.75rem !important;
  color: rgba(255,255,255,0.35) !important;
  -webkit-text-fill-color: rgba(255,255,255,0.35) !important;
  margin: 0 !important;
}
.sov-ft-copy strong {
  color: rgba(255,255,255,0.60) !important;
  -webkit-text-fill-color: rgba(255,255,255,0.60) !important;
  font-weight: 600 !important;
}
.sov-ft-bar-nav {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.sov-ft-bar-nav a {
  font-size: 0.72rem !important;
  font-weight: 500 !important;
  color: rgba(255,255,255,0.35) !important;
  -webkit-text-fill-color: rgba(255,255,255,0.35) !important;
  text-decoration: none !important;
  background-image: none !important;
  transition: color 0.18s ease;
}
.sov-ft-bar-nav a:hover {
  color: #5B8E3E !important;
  -webkit-text-fill-color: #5B8E3E !important;
}
@media (max-width: 575px) {
  .sov-ft-bar-inner { flex-direction: column; text-align: center; gap: 10px; }
  .sov-ft-bar-nav { justify-content: center; gap: 12px 16px; }
}

/* ── Keep old class names working (backward compat) ── */
.sov-footer-logo-img { height: 44px !important; width: 160px !important; object-fit: contain; object-position: left center; display: block; }
.footer { background: transparent !important; padding: 0 !important; }

/* ================================================================
   Vasify HEADER — Mega-menu redesign 2025
================================================================ */

.sov-header {
  padding: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  z-index: 9990 !important;
}

/* ── Top bar ── */
.sov-header-topbar {
  background: #1a1a1a;
  padding: 7px 0;
  font-size: 0.72rem;
  font-weight: 500;
}
.sov-topbar-left,
.sov-topbar-right {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.sov-topbar-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,0.60) !important;
  -webkit-text-fill-color: rgba(255,255,255,0.60) !important;
  text-decoration: none !important;
  background-image: none !important;
  transition: color 0.18s ease;
  white-space: nowrap;
  letter-spacing: 0;
}
.sov-topbar-item i {
  font-size: 11px;
  color: #5B8E3E !important;
  -webkit-text-fill-color: #5B8E3E !important;
}
.sov-topbar-item:hover {
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
}
.sov-topbar-wa i {
  color: #25D366 !important;
  -webkit-text-fill-color: #25D366 !important;
}
.sov-topbar-divider {
  width: 1px;
  height: 12px;
  background: rgba(255,255,255,0.15);
  flex-shrink: 0;
}
@media (max-width: 767px) {
  .sov-header-topbar { display: none; }
}

/* ── Main nav bar ── */
.sov-header-main {
  background: rgba(255,255,255,0.97);
  border-bottom: 1px solid rgba(0,0,0,0.07);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  transition: box-shadow 0.3s ease;
}
body.scrolled .sov-header-main {
  box-shadow: 0 2px 24px rgba(0,0,0,0.08);
}
.sov-header-main .header-container {
  height: 68px;
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 24px;
  background: none !important;
  border: none !important;
  box-shadow: none !important;
  border-radius: 0 !important;
  padding: 0 !important;
}

/* ── Logo — image only, no text ── */
.sov-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  text-decoration: none !important;
  background-image: none !important;
}
.sov-logo-img {
  height: 48px;
  width: auto;
  display: block;
  transition: opacity 0.2s ease;
}
.sov-logo:hover .sov-logo-img { opacity: 0.85; }

/* ── Nav links ── */
.navmenu { flex: 1; display: flex; justify-content: center; }
.navmenu ul {
  display: flex;
  align-items: center;
  gap: 2px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.sov-nav-link {
  display: flex !important;
  align-items: center !important;
  gap: 4px !important;
  padding: 8px 13px !important;
  font-size: 0.85rem !important;
  font-weight: 500 !important;
  color: #2d2d2d !important;
  -webkit-text-fill-color: #2d2d2d !important;
  text-decoration: none !important;
  background-image: none !important;
  border-radius: 7px !important;
  transition: color 0.18s ease, background 0.18s ease !important;
  white-space: nowrap;
  letter-spacing: 0 !important;
}
.sov-nav-link:hover,
.navmenu .active > .sov-nav-link {
  color: #5B8E3E !important;
  -webkit-text-fill-color: #5B8E3E !important;
  background: rgba(91,142,62,0.07) !important;
}
.sov-nav-chevron {
  font-size: 0.58rem !important;
  color: #aaaaaa !important;
  -webkit-text-fill-color: #aaaaaa !important;
  transition: transform 0.22s ease;
}


/* ── Mega CTA panel ── */

/* ── CTA button ── */
.sov-header-cta {
  display: inline-flex !important;
  align-items: center !important;
  gap: 7px !important;
  padding: 10px 20px !important;
  background: #5B8E3E !important;
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
  font-size: 0.82rem !important;
  font-weight: 600 !important;
  border-radius: 8px !important;
  text-decoration: none !important;
  background-image: none !important;
  white-space: nowrap;
  flex-shrink: 0;
  transition: background 0.18s ease, transform 0.18s ease, box-shadow 0.18s ease !important;
}
.sov-header-cta i {
  font-size: 0.75rem;
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
  transition: transform 0.18s ease;
}
.sov-header-cta:hover {
  background: #3d6129 !important;
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
  transform: translateY(-1px) !important;
  box-shadow: 0 4px 14px rgba(91,142,62,0.30) !important;
}
.sov-header-cta:hover i { transform: translateX(3px); }

/* ── Mobile toggle ── */
.mobile-nav-toggle {
  font-size: 22px !important;
  color: #2d2d2d !important;
  -webkit-text-fill-color: #2d2d2d !important;
  cursor: pointer;
  margin-left: 8px;
  display: none;
}
@media (max-width: 1199px) {
  .mobile-nav-toggle { display: block !important; }
  .navmenu ul { display: none; }
  
  
  
  
  .sov-header-cta { display: none !important; }
}

/* ── Page offset for fixed header ── */
.main, main.main { padding-top: 102px !important; }
.sov-inner-hero, .hero.section, .page-title { padding-top: 110px !important; }
@media (max-width: 767px) {
  .main, main.main { padding-top: 62px !important; }
  .sov-inner-hero, .hero.section, .page-title { padding-top: 88px !important; }
}

/* ================================================================
   SERVICES MEGA — 5 category columns
================================================================ */

/* Each category column */

/* Category header */

/* Category links */

/* Category CTA link */

/* Services footer bar */

/* ================================================================
   SECTORS MEGA — left panel + right grid
================================================================ */

/* Left info panel */

/* Right sectors grid */

/* ── Mobile ── */
@media (max-width: 1199px) {
  
  
  
  
  
  
  
}

/* ================================================================
   CAREERS PAGE — Job listing cards
================================================================ */
.sov-careers-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.sov-career-card {
  background: #ffffff;
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 14px;
  padding: 24px 28px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  transition: box-shadow 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}
.sov-career-card:hover {
  border-color: rgba(91,142,62,0.25);
  box-shadow: 0 6px 28px rgba(0,0,0,0.08);
  transform: translateY(-2px);
}
.sov-career-card-left {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  flex: 1;
}
.sov-career-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: #f0f7eb;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: #5B8E3E !important;
  -webkit-text-fill-color: #5B8E3E !important;
  flex-shrink: 0;
}
.sov-career-title {
  font-size: 1rem !important;
  font-weight: 700 !important;
  letter-spacing: -0.02em !important;
  color: #1a1a1a !important;
  -webkit-text-fill-color: #1a1a1a !important;
  margin-bottom: 8px !important;
  line-height: 1.3 !important;
}
.sov-career-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 10px;
}
.sov-career-meta span {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.78rem !important;
  font-weight: 500 !important;
  color: #6e6e73 !important;
  -webkit-text-fill-color: #6e6e73 !important;
}
.sov-career-meta span i {
  font-size: 12px;
  color: #5B8E3E !important;
  -webkit-text-fill-color: #5B8E3E !important;
}
.sov-career-desc {
  font-size: 0.85rem !important;
  line-height: 1.7 !important;
  color: #5e5e5e !important;
  -webkit-text-fill-color: #5e5e5e !important;
  margin-bottom: 12px !important;
  max-width: 600px;
}
.sov-career-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.sov-career-tags span {
  display: inline-block;
  padding: 3px 10px;
  background: #f5f5f5;
  border-radius: 50px;
  font-size: 0.70rem !important;
  font-weight: 600 !important;
  color: #3d3d3d !important;
  -webkit-text-fill-color: #3d3d3d !important;
  letter-spacing: 0.02em;
}
.sov-career-apply {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 11px 22px;
  background: #5B8E3E;
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
  font-size: 0.82rem;
  font-weight: 700;
  border-radius: 8px;
  text-decoration: none !important;
  background-image: none !important;
  white-space: nowrap;
  flex-shrink: 0;
  align-self: center;
  transition: background 0.2s ease, transform 0.2s ease;
}
.sov-career-apply i { font-size: 0.75rem; transition: transform 0.2s ease; }
.sov-career-apply:hover {
  background: #3d6129;
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
  transform: translateY(-1px);
}
.sov-career-apply:hover i { transform: translateX(3px); }
@media (max-width: 767px) {
  .sov-career-card { flex-direction: column; }
  .sov-career-apply { width: 100%; justify-content: center; }
}

/* ================================================================
   HEADER MEGA-MENUS — Services (card grid) + Sectors (card grid)
   Both share the same top-bar + icon-card design
================================================================ */

/* ── Nav link ── */
.sov-nav-link {
  display: flex !important;
  align-items: center !important;
  gap: 4px !important;
  padding: 8px 12px !important;
  font-size: 0.875rem !important;
  font-weight: 500 !important;
  color: #2d2d2d !important;
  -webkit-text-fill-color: #2d2d2d !important;
  text-decoration: none !important;
  background-image: none !important;
  border-radius: 7px !important;
  transition: color 0.18s ease, background 0.18s ease !important;
  white-space: nowrap;
  letter-spacing: 0 !important;
  cursor: pointer;
}
.sov-nav-link:hover,
.navmenu .active > .sov-nav-link {
  color: #5B8E3E !important;
  -webkit-text-fill-color: #5B8E3E !important;
  background: rgba(91,142,62,0.07) !important;
}
.sov-nav-chevron {
  font-size: 0.58rem !important;
  color: #aaaaaa !important;
  -webkit-text-fill-color: #aaaaaa !important;
  transition: transform 0.22s ease;
  pointer-events: none;
}
.sov-mega-parent:hover .sov-nav-chevron,
.sov-mega-parent:focus-within .sov-nav-chevron {
  transform: rotate(180deg);
  color: #5B8E3E !important;
  -webkit-text-fill-color: #5B8E3E !important;
}

/* ── Dropdown base ── */
.sov-mega-parent {
  position: relative;
  list-style: none;
}
.sov-mega-drop {
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%) translateY(6px);
  background: #ffffff;
  border: 1px solid rgba(0,0,0,0.09);
  border-radius: 14px;
  box-shadow: 0 16px 60px rgba(0,0,0,0.13), 0 2px 8px rgba(0,0,0,0.06);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
  z-index: 9999;
  overflow: visible;
}
.sov-mega-parent:hover .sov-mega-drop,
.sov-mega-parent:focus-within .sov-mega-drop {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

/* ── Shared top info bar (both Services + Sectors) ── */
.sov-mega-top-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px 14px;
  border-bottom: 1px solid rgba(0,0,0,0.06);
  gap: 20px;
  flex-wrap: wrap;
}
.sov-mega-top-info strong {
  display: block;
  font-size: 0.85rem !important;
  font-weight: 700 !important;
  color: #1a1a1a !important;
  -webkit-text-fill-color: #1a1a1a !important;
  margin-bottom: 4px;
}
.sov-mega-top-info p {
  font-size: 0.72rem !important;
  color: #6e6e73 !important;
  -webkit-text-fill-color: #6e6e73 !important;
  margin: 0 0 10px !important;
  line-height: 1.5 !important;
}
.sov-mega-top-stats {
  display: flex;
  gap: 20px;
  flex-shrink: 0;
}
.sov-mega-top-stats div {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1px;
}
.sov-mega-top-stats b {
  font-size: 1.1rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #5B8E3E !important;
  -webkit-text-fill-color: #5B8E3E !important;
  line-height: 1;
}
.sov-mega-top-stats span {
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #888888 !important;
  -webkit-text-fill-color: #888888 !important;
}
.sov-mega-drop-cta {
  display: inline-flex !important;
  align-items: center !important;
  gap: 6px !important;
  padding: 7px 14px !important;
  background: #5B8E3E !important;
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
  font-size: 0.72rem !important;
  font-weight: 700 !important;
  border-radius: 7px !important;
  text-decoration: none !important;
  background-image: none !important;
  white-space: nowrap;
  transition: background 0.18s ease, transform 0.18s ease !important;
}
.sov-mega-drop-cta i { font-size: 0.65rem; transition: transform 0.18s ease; }
.sov-mega-drop-cta:hover {
  background: #3d6129 !important;
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
  transform: translateY(-1px) !important;
}
.sov-mega-drop-cta:hover i { transform: translateX(3px); }

/* ── Shared icon card (used by both sov-svc-card and sov-sec-card) ── */
.sov-svc-card,
.sov-sec-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 12px 8px;
  border-radius: 10px;
  border: 1px solid transparent;
  background: transparent;
  text-decoration: none !important;
  background-image: none !important;
  transition: all 0.16s ease;
  text-align: center;
  cursor: pointer;
}
.sov-svc-card:hover,
.sov-sec-card:hover {
  background: rgba(91,142,62,0.07);
  border-color: rgba(91,142,62,0.20);
  transform: translateY(-2px);
}
.sov-svc-card > i,
.sov-sec-card > i {
  width: 36px;
  height: 36px;
  border-radius: 9px;
  background: #f0f7eb;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: #5B8E3E !important;
  -webkit-text-fill-color: #5B8E3E !important;
  transition: background 0.16s ease;
  flex-shrink: 0;
}
.sov-svc-card:hover > i,
.sov-sec-card:hover > i {
  background: #5B8E3E;
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
}
.sov-svc-card > span,
.sov-sec-card > span {
  font-size: 0.62rem !important;
  font-weight: 600 !important;
  color: #2d2d2d !important;
  -webkit-text-fill-color: #2d2d2d !important;
  line-height: 1.3;
}
.sov-svc-card:hover > span,
.sov-sec-card:hover > span {
  color: #5B8E3E !important;
  -webkit-text-fill-color: #5B8E3E !important;
}

/* ================================================================
   SERVICES DROPDOWN
================================================================ */
.sov-mega-drop-services {
  width: 760px;
  max-width: 95vw;
}
.sov-mega-svc-scroll {
  max-height: 340px;
  overflow-y: auto;
  overflow-x: hidden;
  scrollbar-width: thin;
  scrollbar-color: rgba(91,142,62,0.3) transparent;
}
.sov-mega-svc-scroll::-webkit-scrollbar {
  width: 4px;
}
.sov-mega-svc-scroll::-webkit-scrollbar-track {
  background: transparent;
}
.sov-mega-svc-scroll::-webkit-scrollbar-thumb {
  background: rgba(91,142,62,0.3);
  border-radius: 4px;
}
.sov-mega-svc-scroll::-webkit-scrollbar-thumb:hover {
  background: rgba(91,142,62,0.55);
}
.sov-mega-svc-body {
  padding: 16px 16px 8px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.sov-mega-svc-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.sov-mega-svc-label {
  font-size: 0.62rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.12em !important;
  text-transform: uppercase !important;
  color: #5B8E3E !important;
  -webkit-text-fill-color: #5B8E3E !important;
  margin: 0 !important;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 0 4px;
}
.sov-mega-svc-label i {
  font-size: 11px;
  color: #5B8E3E !important;
  -webkit-text-fill-color: #5B8E3E !important;
}
.sov-mega-svc-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
}
.sov-mega-svc-cards .sov-svc-card {
  flex: 0 0 auto;
  min-width: 90px;
  max-width: 120px;
}
.sov-mega-svc-footer {
  padding: 10px 20px 14px;
  border-top: 1px solid rgba(0,0,0,0.06);
  display: flex;
  justify-content: flex-end;
}
.sov-mega-svc-all {
  display: inline-flex !important;
  align-items: center !important;
  gap: 5px !important;
  font-size: 0.72rem !important;
  font-weight: 600 !important;
  color: #5B8E3E !important;
  -webkit-text-fill-color: #5B8E3E !important;
  text-decoration: none !important;
  background-image: none !important;
  transition: gap 0.16s ease !important;
}
.sov-mega-svc-all:hover { gap: 8px !important; }

/* ================================================================
   SECTORS DROPDOWN
================================================================ */
.sov-mega-drop-sectors {
  width: 640px;
  max-width: 95vw;
}
.sov-mega-sectors-cards {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 4px;
  padding: 14px;
}

/* ── Mobile ── */
@media (max-width: 1199px) {
  .sov-mega-drop {
    position: static !important;
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
    box-shadow: none !important;
    border: none !important;
    border-radius: 0 !important;
    width: 100% !important;
    max-width: 100% !important;
    overflow: visible !important;
  }
  .sov-mega-svc-cards { flex-wrap: wrap; }
  .sov-mega-svc-cards .sov-svc-card { min-width: 80px; }
  .sov-mega-sectors-cards { grid-template-columns: repeat(2, 1fr); }
  .sov-mega-top-bar { flex-direction: column; align-items: flex-start; }
  .sov-mega-top-stats { display: none; }
}

/* ================================================================
   FAQ SECTION — redesigned clean white
================================================================ */
.faq-9 {
  background: #ffffff;
}
.faq-9 .container {
  max-width: 1100px;
}

/* Left column */
.faq-title {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem) !important;
  font-weight: 800 !important;
  letter-spacing: -0.04em !important;
  line-height: 1.15 !important;
  color: #1a1a1a !important;
  -webkit-text-fill-color: #1a1a1a !important;
  margin-bottom: 16px !important;
}
.faq-description {
  font-size: 0.95rem !important;
  line-height: 1.75 !important;
  color: #6e6e73 !important;
  -webkit-text-fill-color: #6e6e73 !important;
  margin-bottom: 28px !important;
}
.faq-arrow {
  color: #5B8E3E;
  opacity: 0.35;
}

/* FAQ items */
.faq-container {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.faq-item {
  background: #ffffff;
  border: 1.5px solid rgba(0,0,0,0.08) !important;
  border-radius: 12px !important;
  overflow: hidden;
  transition: border-color 0.22s ease, box-shadow 0.22s ease !important;
  margin-bottom: 0 !important;
}
.faq-item:hover {
  border-color: rgba(91,142,62,0.25) !important;
}
.faq-item.faq-active {
  border-color: #5B8E3E !important;
  box-shadow: 0 4px 20px rgba(91,142,62,0.10) !important;
}

/* Question row */
.faq-item h3 {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  padding: 18px 20px !important;
  font-size: 0.92rem !important;
  font-weight: 600 !important;
  letter-spacing: -0.01em !important;
  line-height: 1.4 !important;
  color: #1a1a1a !important;
  -webkit-text-fill-color: #1a1a1a !important;
  margin: 0 !important;
  cursor: pointer;
  gap: 12px;
}
.faq-item.faq-active h3 {
  color: #5B8E3E !important;
  -webkit-text-fill-color: #5B8E3E !important;
}

/* Toggle icon */
.faq-toggle {
  width: 28px !important;
  height: 28px !important;
  border-radius: 50% !important;
  background: #f5f5f5 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  font-size: 12px !important;
  color: #888888 !important;
  -webkit-text-fill-color: #888888 !important;
  flex-shrink: 0 !important;
  transition: transform 0.25s ease, background 0.22s ease, color 0.22s ease !important;
}
.faq-item.faq-active .faq-toggle {
  transform: rotate(90deg) !important;
  background: #5B8E3E !important;
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
}

/* Answer */
.faq-content {
  padding: 0 20px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}
.faq-item.faq-active .faq-content {
  max-height: 400px;
  padding: 0 20px 18px;
}
.faq-content p {
  font-size: 0.875rem !important;
  line-height: 1.75 !important;
  color: #5e5e5e !important;
  -webkit-text-fill-color: #5e5e5e !important;
  margin: 0 !important;
  padding-top: 4px;
  border-top: 1px solid rgba(0,0,0,0.06);
  padding-top: 14px;
}

/* ================================================================
   Vasify AI — Mega-menu & nav highlight
================================================================ */

/* AI nav link — subtle green accent to stand out */
.sov-nav-ai {
  color: #5B8E3E !important;
  -webkit-text-fill-color: #5B8E3E !important;
  font-weight: 600 !important;
}
.sov-nav-ai::before {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  background: #5B8E3E;
  border-radius: 50%;
  margin-right: 6px;
  vertical-align: middle;
  animation: sov-ai-pulse 2s ease-in-out infinite;
}
@keyframes sov-ai-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.7); }
}

/* AI mega-drop — slightly wider to fit 11 cards */
.sov-mega-drop-ai {
  width: 820px;
  max-width: 96vw;
}

/* AI hub hero accent */
.sov-ai-hub-hero h1 span {
  background: linear-gradient(135deg, #5B8E3E 0%, #3d6b28 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.sov-ai-dot {
  background: linear-gradient(135deg, #5B8E3E, #FDBE23) !important;
  animation: sov-ai-pulse 2s ease-in-out infinite;
}

/* ================================================================
   CLS FIXES — Cumulative Layout Shift prevention
   Target: CLS < 0.1 (Good)
================================================================ */

/* ── 1. Reserve header height so content doesn't jump ── */
body {
  /* Reserve space for topbar (34px) + main nav (68px) = 102px */
  /* This prevents the "content jumps down" shift on load */
}
.sov-header {
  height: auto !important;
}
/* Explicit topbar height so it never collapses */
.sov-header-topbar {
  min-height: 34px;
  contain: layout style;
}
/* Explicit nav height — prevents reflow */
.sov-header-main {
  min-height: 68px;
  contain: layout style;
}
.sov-header-main .header-container {
  height: 68px !important;
  min-height: 68px !important;
}

/* ── 2. Logo — explicit width prevents reflow ── */
.sov-logo-img {
  height: 48px !important;
  width: 160px !important;   /* explicit width stops layout shift */
  object-fit: contain;
  object-position: left center;
}

/* ── 3. Hero image — aspect-ratio reserves space before load ── */
.sov-inner-hero-img {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: 20px;
  background: #f0f7eb;  /* placeholder colour while loading */
}
.sov-inner-hero-img img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover;
  border-radius: 20px;
  display: block;
  /* No box-shadow here — applied via wrapper to avoid paint shift */
}

/* ── 4. Homepage hero image ── */
.sov-hero-img-wrap {
  aspect-ratio: 6 / 5;
  overflow: hidden;
  border-radius: 24px;
  background: #f0f7eb;
  flex-shrink: 0;
}
.sov-hero-img-wrap img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover;
  display: block;
}

/* ── 5. Portfolio cards — reserve image space ── */
.sov-proj-img-wrap {
  aspect-ratio: 16 / 9 !important;
  overflow: hidden;
  background: #f0f0f0;
  display: block;
  flex-shrink: 0;
}
.sov-proj-img-wrap img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover;
  display: block;
}

/* ── 6. About section image ── */
.sov-about-img-wrap {
  aspect-ratio: 6 / 7;
  overflow: hidden;
  border-radius: 20px;
  background: #f0f7eb;
}
.sov-about-img-wrap img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover;
  display: block;
}

/* ── 7. Testimonial / person images ── */
.sov-testimonial-img,
.client-image,
img[src*="person-"] {
  width: 48px !important;
  height: 48px !important;
  border-radius: 50% !important;
  object-fit: cover !important;
  flex-shrink: 0 !important;
  display: block !important;
}

/* ── 8. Service/sector page images ── */
.sov-sg-card img,
.sov-portfolio-img-wrap img {
  aspect-ratio: 16 / 10;
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

/* ── 9. Footer logo ── */
.sov-footer-logo-img {
  height: 44px !important;
  width: 140px !important;
  object-fit: contain;
  object-position: left center;
  display: block;
}

/* ── 10. AOS — prevent layout shift from invisible elements ── */
/* AOS hides elements with opacity:0 and transform, which causes
   layout shift when they animate in. Use will-change to promote
   to compositor layer and avoid reflow. */
[data-aos] {
  will-change: opacity, transform;
}
/* Ensure AOS elements still occupy space before animation */
[data-aos="fade-up"],
[data-aos="fade-left"],
[data-aos="fade-right"],
[data-aos="fade-down"] {
  /* Reserve space — only opacity/transform animate, not size */
  backface-visibility: hidden;
}

/* ── 11. Stats strip — explicit min-height prevents collapse ── */
.sov-inner-stats {
  min-height: 100px;
  contain: layout style;
}
.sov-about-stats {
  min-height: 80px;
}

/* ── 12. Mega-menu — prevent layout shift on hover ── */
.sov-mega-drop {
  contain: layout style paint;
}

/* ── 13. Font loading — size-adjust fallback to reduce FOUT shift ── */
/* Applied via @font-face override for system fallback */
@font-face {
  font-family: 'Poppins-fallback';
  src: local('Arial');
  size-adjust: 105%;
  ascent-override: 95%;
  descent-override: 22%;
  line-gap-override: 0%;
}

/* ── 14. Prevent scroll-top button from causing shift ── */
#scroll-top {
  position: fixed !important;
  bottom: 30px !important;
  right: 30px !important;
  /* Already fixed — just ensure it doesn't affect document flow */
  contain: layout style paint;
}

/* ── 15. WhatsApp float — ensure it doesn't affect layout ── */
.sov-wa-float {
  position: fixed !important;
  contain: layout style paint;
}

/* ── 16. Preloader — ensure it covers full viewport without shift ── */
#preloader {
  position: fixed !important;
  inset: 0 !important;
  z-index: 99999 !important;
  contain: layout style paint;
}

/* ── 17. Card grid — explicit min-height prevents collapse ── */
.sov-sg-grid {
  /* Prevent grid from collapsing before cards load */
  min-height: 200px;
}
.sov-sg-card {
  /* Prevent individual cards from collapsing */
  contain: layout style;
}

/* ── 18. Section title — prevent font-swap shift ── */
.sov-sg-title h2,
.sov-inner-hero-content h1,
.sov-hero-heading {
  /* Use font-size-adjust to minimise FOUT layout shift */
  font-size-adjust: 0.52;
}

/* ================================================================
   GLOBAL PRESENCE — Mega-menu
================================================================ */
.sov-mega-drop-global {
  width: 860px;
  max-width: 96vw;
}

/* ================================================================
   HERO — Animated cycling heading + label pills
================================================================ */

/* ── Cycle wrapper — clips the sliding text ── */
.sov-hero-cycle-wrap {
  display: inline-block;
  overflow: hidden;
  vertical-align: bottom;
  /* height matches the line-height of the heading */
  height: 1.05em;
  position: relative;
}

/* ── The cycling word itself ── */
.sov-hero-cycle {
  display: inline-block;
  font-style: normal;
  color: #5B8E3E !important;
  -webkit-text-fill-color: #5B8E3E !important;
  animation: none;
  will-change: transform, opacity;
}

/* Slide-up-in animation */
@keyframes sov-cycle-in {
  from { opacity: 0; transform: translateY(60%); }
  to   { opacity: 1; transform: translateY(0); }
}
/* Slide-up-out animation */
@keyframes sov-cycle-out {
  from { opacity: 1; transform: translateY(0); }
  to   { opacity: 0; transform: translateY(-60%); }
}

.sov-hero-cycle.is-entering {
  animation: sov-cycle-in 0.45s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
.sov-hero-cycle.is-leaving {
  animation: sov-cycle-out 0.35s cubic-bezier(0.4, 0, 1, 1) forwards;
}

/* ── Label pills row ── */
.sov-hero-labels {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
  margin-top: -8px;
}

.sov-hero-label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border-radius: 50px;
  border: 1.5px solid rgba(0,0,0,0.08);
  background: #ffffff;
  font-family: 'Poppins', sans-serif !important;
  font-size: 0.72rem !important;
  font-weight: 600 !important;
  color: #6e6e73 !important;
  -webkit-text-fill-color: #6e6e73 !important;
  cursor: pointer;
  transition: all 0.22s ease;
  user-select: none;
  white-space: nowrap;
}

.sov-hero-label i {
  font-size: 12px;
  color: #aaaaaa !important;
  -webkit-text-fill-color: #aaaaaa !important;
  transition: color 0.22s ease;
}

/* Active / hover state */
.sov-hero-label.sov-label-active,
.sov-hero-label:hover {
  border-color: #5B8E3E !important;
  background: #f0f7eb !important;
  color: #3d6b28 !important;
  -webkit-text-fill-color: #3d6b28 !important;
  box-shadow: 0 2px 12px rgba(91,142,62,0.12);
}
.sov-hero-label.sov-label-active i,
.sov-hero-label:hover i {
  color: #5B8E3E !important;
  -webkit-text-fill-color: #5B8E3E !important;
}

/* Pulse on active label */
.sov-hero-label.sov-label-active {
  animation: sov-label-pulse 3s ease-in-out infinite;
}
@keyframes sov-label-pulse {
  0%, 100% { box-shadow: 0 2px 12px rgba(91,142,62,0.12); }
  50%       { box-shadow: 0 4px 20px rgba(91,142,62,0.22); }
}

/* Mobile */
@media (max-width: 575px) {
  .sov-hero-labels { gap: 6px; }
  .sov-hero-label { font-size: 0.65rem !important; padding: 5px 10px; }
}

/* ================================================================
   HERO VISUAL — Modern SaaS Dashboard & Floating Product Showcase
   ================================================================ */

.sov-hero-visual-stack {
  position: relative;
  width: 100%;
  max-width: 680px;
  height: 580px;
  margin: 0 auto;
  perspective: 1400px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Glowing backdrops */
.sov-stack-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  z-index: 0;
  pointer-events: none;
  opacity: 0.35;
  mix-blend-mode: multiply;
}
.sov-stack-glow.glow-1 {
  width: 340px;
  height: 340px;
  background: radial-gradient(circle, rgba(91,142,62,0.3) 0%, transparent 70%);
  top: 0%;
  left: 5%;
  animation: drift-glow-1 12s ease-in-out infinite alternate;
}
.sov-stack-glow.glow-2 {
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(16,185,129,0.25) 0%, transparent 70%);
  bottom: 5%;
  right: 0%;
  animation: drift-glow-2 15s ease-in-out infinite alternate;
}
.sov-stack-glow.glow-3 {
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, rgba(59,130,246,0.15) 0%, transparent 70%);
  top: 35%;
  left: 35%;
}

@keyframes drift-glow-1 {
  from { transform: translate(0, 0) scale(1); }
  to { transform: translate(30px, -20px) scale(1.1); }
}
@keyframes drift-glow-2 {
  from { transform: translate(0, 0) scale(1); }
  to { transform: translate(-25px, 25px) scale(1.05); }
}

/* Card base */
.sov-stack-card {
  position: absolute;
  border-radius: 16px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08), 
              0 5px 15px rgba(0, 0, 0, 0.04),
              inset 0 1px 0 rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(16px) saturate(180%);
  -webkit-backdrop-filter: blur(16px) saturate(180%);
  transition: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
  overflow: hidden;
}

.sov-stack-card:hover {
  transform: rotateY(-2deg) rotateX(1deg) translateZ(30px) !important;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15), 
              0 10px 20px rgba(91,142,62,0.06),
              inset 0 1px 0 rgba(255, 255, 255, 0.25);
  z-index: 10 !important;
}

/* Header style for cards */
.card-glass-header {
  height: 42px;
  padding: 0 18px;
  display: flex;
  align-items: center;
  gap: 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.card-glass-title {
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

/* Dot window controls */
.window-controls {
  display: flex;
  gap: 6px;
}
.window-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
}
.window-dot.red { background: #ff5f56; }
.window-dot.yellow { background: #ffbd2e; }
.window-dot.green { background: #27c93f; }

/* 1. Custom Systems Card (Dark theme) */
.card-systems {
  width: 390px;
  background: rgba(17, 24, 39, 0.85); /* Deep slate dark glass */
  border: 1px solid rgba(255, 255, 255, 0.08);
  top: 6%;
  left: 0%;
  z-index: 1;
  transform: rotateY(-14deg) rotateX(8deg) translate3d(-15px, 0px, -70px);
}
.card-systems .card-glass-header {
  background: rgba(0, 0, 0, 0.2);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.card-systems .card-glass-title {
  color: #a3a3a3;
  font-family: monospace;
}
.card-systems .card-glass-body {
  padding: 20px 22px;
  font-family: 'Courier New', Courier, monospace;
  font-size: 0.8rem;
  line-height: 1.55;
}
.code-theme {
  color: #e2e8f0;
}
.code-line {
  white-space: nowrap;
}
.code-keyword { color: #f43f5e; }
.code-class { color: #38bdf8; }
.code-method { color: #34d399; }
.code-string { color: #fbbf24; }
.code-comment { color: #64748b; font-style: italic; }

/* 2. AI Orchestration Card (Middle layer, glow) */
.card-ai-orchestration {
  width: 375px;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(91, 142, 62, 0.25);
  top: 25%;
  right: -2%;
  z-index: 2;
  transform: rotateY(-10deg) rotateX(6deg) translate3d(20px, -15px, 0px);
  box-shadow: 0 15px 35px rgba(91,142,62,0.06), 0 5px 15px rgba(0,0,0,0.04);
  animation: float-ai-card 6s ease-in-out infinite alternate;
}
@keyframes float-ai-card {
  0% { transform: rotateY(-10deg) rotateX(6deg) translate3d(20px, -15px, 0px); }
  100% { transform: rotateY(-8deg) rotateX(4deg) translate3d(20px, -25px, 15px); }
}
.card-ai-orchestration .card-glass-header {
  border-bottom: 1px solid rgba(91, 142, 62, 0.1);
  background: rgba(91, 142, 62, 0.03);
  justify-content: space-between;
}
.card-ai-orchestration .card-glass-title {
  color: #1a1a1a;
  font-weight: 700;
}
.status-indicator {
  display: flex;
  align-items: center;
  gap: 6px;
}
.status-pulse-green {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #10b981;
  box-shadow: 0 0 8px #10b981;
  animation: pulse-green 2s infinite;
}
@keyframes pulse-green {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.3); opacity: 0.6; }
}
.status-text {
  font-size: 0.76rem;
  font-weight: 700;
  color: #3d6b28;
}
.badge-pill-neon {
  font-size: 0.65rem;
  font-weight: 800;
  background: rgba(16, 185, 129, 0.15);
  color: #059669;
  padding: 3px 8px;
  border-radius: 20px;
  letter-spacing: 0.05em;
}
.card-ai-orchestration .card-glass-body {
  padding: 16px 20px;
}
.ai-agent-task {
  margin-bottom: 14px;
}
.task-info {
  display: flex;
  flex-direction: column;
  gap: 3px;
  margin-bottom: 10px;
}
.task-name {
  font-size: 0.85rem;
  font-weight: 700;
  color: #1f2937;
}
.task-name i {
  color: #5B8E3E;
}
.task-desc {
  font-size: 0.68rem;
  color: #6b7280;
}
.progress-bar-wrap {
  width: 100%;
  height: 6px;
  background: #e5e7eb;
  border-radius: 10px;
  overflow: hidden;
}
.progress-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, #5B8E3E, #10B981);
  width: 82%;
  border-radius: 10px;
  animation: load-progress 4s infinite ease-in-out;
}
@keyframes load-progress {
  0% { width: 40%; }
  50% { width: 85%; }
  100% { width: 40%; }
}
.ai-console-log {
  display: flex;
  flex-direction: column;
  gap: 7px;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  padding-top: 12px;
}
.log-row {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 0.68rem;
  line-height: 1.35;
}
.log-row i {
  font-size: 0.78rem;
  margin-top: 1px;
}
.log-row.success { color: #047857; }
.log-row.info { color: #4b5563; }

/* 3. Elite IT Augmentation Card (Front layer) */
.card-talent-augmentation {
  width: 390px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(0, 0, 0, 0.06);
  bottom: 4%;
  left: 6%;
  z-index: 3;
  transform: rotateY(-8deg) rotateX(4deg) translate3d(10px, 25px, 60px);
  box-shadow: 0 20px 45px rgba(0,0,0,0.1), 0 4px 12px rgba(0,0,0,0.03);
  animation: float-talent-card 7s ease-in-out infinite alternate;
}
@keyframes float-talent-card {
  0% { transform: rotateY(-8deg) rotateX(4deg) translate3d(10px, 25px, 60px); }
  100% { transform: rotateY(-6deg) rotateX(3deg) translate3d(10px, 35px, 70px); }
}
.card-talent-augmentation .card-glass-header {
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  justify-content: space-between;
}
.card-talent-augmentation .card-glass-title {
  color: #111827;
  font-weight: 700;
}
.rating-badge {
  font-size: 0.72rem;
  font-weight: 700;
  color: #d97706;
  background: rgba(217, 119, 6, 0.1);
  padding: 3px 8px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  gap: 4px;
}
.card-talent-augmentation .card-glass-body {
  padding: 14px 16px;
}
.talent-profiles {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.talent-profile-item {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(249, 250, 251, 0.6);
  border: 1px solid rgba(0, 0, 0, 0.03);
  padding: 10px 12px;
  border-radius: 8px;
}
.talent-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  font-size: 0.8rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  flex-shrink: 0;
}
.avatar-init-1 {
  background: linear-gradient(135deg, #3b82f6, #1d4ed8);
}
.avatar-init-2 {
  background: linear-gradient(135deg, #10b981, #047857);
}
.talent-details {
  display: flex;
  flex-direction: column;
  line-height: 1.3;
  flex: 1;
}
.talent-role {
  font-size: 0.82rem;
  font-weight: 700;
  color: #111827;
}
.talent-skills {
  font-size: 0.65rem;
  color: #6b7280;
}
.talent-status-badge {
  font-size: 0.65rem;
  font-weight: 700;
  color: #047857;
  background: rgba(16, 185, 129, 0.1);
  padding: 3px 8px;
  border-radius: 4px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  white-space: nowrap;
}
.dot-live {
  width: 5px;
  height: 5px;
  background: #10b981;
  border-radius: 50%;
  display: inline-block;
  box-shadow: 0 0 4px #10b981;
}

/* Responsive Overrides */
@media (max-width: 991px) {
  .sov-hero-visual-stack {
    max-width: 440px;
    height: 400px;
    margin-top: 24px;
  }
  .card-systems {
    width: 270px;
    top: 5%;
    left: 0%;
  }
  .card-systems .card-glass-body {
    padding: 14px;
    font-size: 0.68rem;
  }
  .card-ai-orchestration {
    width: 260px;
    top: 22%;
    right: 0%;
  }
  .card-ai-orchestration .card-glass-body {
    padding: 12px 14px;
  }
  .card-talent-augmentation {
    width: 270px;
    bottom: 5%;
    left: 5%;
  }
  .card-talent-augmentation .card-glass-body {
    padding: 10px 12px;
  }
  .card-glass-header {
    height: 36px;
    padding: 0 12px;
  }
  .card-glass-title {
    font-size: 0.7rem;
  }
  .status-text {
    font-size: 0.65rem;
  }
  .badge-pill-neon {
    font-size: 0.55rem;
    padding: 2px 5px;
  }
  .task-name {
    font-size: 0.72rem;
  }
  .task-desc {
    font-size: 0.6rem;
  }
  .log-row {
    font-size: 0.6rem;
  }
  .talent-avatar {
    width: 26px;
    height: 26px;
    font-size: 0.68rem;
  }
  .talent-role {
    font-size: 0.68rem;
  }
  .talent-skills {
    font-size: 0.55rem;
  }
  .talent-status-badge {
    font-size: 0.55rem;
    padding: 2px 5px;
  }
  .rating-badge {
    font-size: 0.62rem;
    padding: 2px 5px;
  }
  .talent-profiles {
    gap: 8px;
  }
  .talent-profile-item {
    padding: 6px 8px;
    gap: 8px;
  }
}

@media (max-width: 575px) {
  .sov-hero-visual-stack {
    max-width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
    perspective: none;
    margin-top: 32px;
  }
  .sov-stack-glow {
    display: none;
  }
  .sov-stack-card {
    position: relative;
    width: 100% !important;
    top: auto !important;
    left: auto !important;
    right: auto !important;
    bottom: auto !important;
    transform: none !important;
    animation: none !important;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  }
  .card-systems {
    order: 3;
  }
  .card-ai-orchestration {
    order: 1;
  }
  .card-talent-augmentation {
    order: 2;
  }
}

/* ================================================================
   COMPREHENSIVE RESPONSIVE FIXES
   Breakpoints: 1400 | 1199 | 991 | 767 | 575 | 480 | 360
================================================================ */

/* ── 1. FOOTER — 9 columns need proper responsive grid ── */
.sov-footer-cols {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
  gap: 32px;
}
@media (max-width: 1400px) {
  .sov-footer-cols {
    grid-template-columns: 1.4fr 1fr 1fr 1fr 1fr;
    gap: 28px;
  }
  .sov-footer-brand-col { grid-column: span 5; }
}
@media (max-width: 1199px) {
  .sov-footer-cols {
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 24px;
  }
  .sov-footer-brand-col { grid-column: span 4; }
}
@media (max-width: 991px) {
  .sov-footer-cols {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 20px;
  }
  .sov-footer-brand-col { grid-column: span 3; }
}
@media (max-width: 767px) {
  .sov-footer-cols {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }
  .sov-footer-brand-col { grid-column: span 2; }
}
@media (max-width: 480px) {
  .sov-footer-cols {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }
  .sov-footer-brand-col { grid-column: span 2; }
}
@media (max-width: 360px) {
  .sov-footer-cols {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .sov-footer-brand-col { grid-column: span 1; }
}

/* Footer nav col — compact on small screens */
@media (max-width: 767px) {
  .sov-footer-nav-col h6 { font-size: 0.72rem !important; }
  .sov-footer-nav-col ul a { font-size: 0.72rem !important; }
  .sov-footer-main { padding: 40px 0 32px; }
}
@media (max-width: 480px) {
  .sov-footer-nav-col h6 { font-size: 0.68rem !important; }
  .sov-footer-nav-col ul a { font-size: 0.68rem !important; }
}

/* Footer pre-CTA strip */
@media (max-width: 767px) {
  .sov-footer-pre-inner { flex-direction: column; align-items: flex-start; gap: 20px; }
  .sov-footer-pre-heading { font-size: clamp(1.4rem, 5vw, 2rem) !important; }
  .sov-footer-pre-right { width: 100%; flex-direction: column; gap: 10px; }
  .sov-footer-pre-btn, .sov-footer-pre-link { width: 100%; justify-content: center; text-align: center; }
}

/* Footer bottom bar */
@media (max-width: 575px) {
  .sov-footer-bar-inner { flex-direction: column; gap: 12px; text-align: center; }
  .sov-footer-bar-nav { flex-wrap: wrap; justify-content: center; gap: 8px 16px; }
}

/* Footer contact chips */
@media (max-width: 575px) {
  .sov-footer-contact-chips { flex-direction: column; gap: 8px; }
  .sov-footer-chip { width: 100%; justify-content: center; }
}

/* ── 2. HEADER — full responsive ── */
@media (max-width: 1199px) {
  .sov-header-main .header-container { height: 60px !important; min-height: 60px !important; }
  .sov-logo-img { height: 40px !important; width: 130px !important; }
}
@media (max-width: 767px) {
  .sov-header-topbar { display: none !important; }
  .sov-header-main .header-container { height: 56px !important; min-height: 56px !important; }
  .sov-logo-img { height: 36px !important; width: 120px !important; }
  .sov-header-cta { display: none !important; }
}
@media (max-width: 480px) {
  .sov-logo-img { height: 32px !important; width: 100px !important; }
}

/* Mobile nav menu */
@media (max-width: 1199px) {
  .navmenu {
    position: fixed !important;
    top: 0 !important;
    right: -100% !important;
    width: 85vw !important;
    max-width: 340px !important;
    height: 100vh !important;
    background: #ffffff !important;
    box-shadow: -4px 0 32px rgba(0,0,0,0.12) !important;
    overflow-y: auto !important;
    padding: 80px 24px 40px !important;
    transition: right 0.3s cubic-bezier(0.16,1,0.3,1) !important;
    z-index: 9999 !important;
    flex-direction: column !important;
    align-items: flex-start !important;
  }
  .navmenu.navmenu-active { right: 0 !important; }
  .navmenu ul { flex-direction: column !important; width: 100% !important; gap: 0 !important; }
  .navmenu ul li { width: 100% !important; border-bottom: 1px solid rgba(0,0,0,0.06) !important; }
  .navmenu ul li a { padding: 14px 0 !important; font-size: 0.9rem !important; display: flex !important; justify-content: space-between !important; }
  /* Mega drops become accordion on mobile */
  .sov-mega-drop {
    position: static !important;
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
    box-shadow: none !important;
    border: none !important;
    border-radius: 0 !important;
    width: 100% !important;
    max-width: 100% !important;
    display: none;
    padding: 0 0 8px 12px !important;
  }
  .sov-mega-parent.open > .sov-mega-drop { display: block !important; }
  .sov-mega-top-bar { display: none !important; }
  .sov-mega-svc-scroll { max-height: none !important; overflow: visible !important; }
  .sov-mega-svc-body { padding: 8px 0 !important; gap: 8px !important; }
  .sov-mega-svc-cards { flex-wrap: wrap !important; gap: 4px !important; }
  .sov-mega-svc-cards .sov-svc-card { min-width: 70px !important; max-width: 90px !important; padding: 6px 4px !important; }
  .sov-mega-sectors-cards { grid-template-columns: repeat(2, 1fr) !important; gap: 4px !important; padding: 8px 0 !important; }
  .sov-mega-drop-global .sov-mega-svc-cards { flex-wrap: wrap !important; }
  .sov-mega-svc-footer { padding: 8px 0 !important; }
  .mobile-nav-toggle { display: flex !important; }
}

/* ── 3. HERO SECTION — homepage ── */
@media (max-width: 1199px) {
  .sov-hero-heading { font-size: clamp(2.8rem, 6vw, 4.5rem) !important; }
}
@media (max-width: 991px) {
  .sov-hero-premium { padding: 80px 0 48px !important; min-height: auto !important; }
  .sov-hero-container { grid-template-columns: 1fr !important; gap: 40px !important; }
  .sov-hero-right { order: -1; }
  .sov-hero-visual { max-width: 320px !important; margin: 0 auto !important; }
  .sov-hero-heading { font-size: clamp(2.4rem, 7vw, 3.6rem) !important; }
  .sov-hero-labels { gap: 6px !important; }
}
@media (max-width: 767px) {
  .sov-hero-premium { padding: 72px 0 40px !important; }
  .sov-hero-heading { font-size: clamp(2rem, 8vw, 3rem) !important; }
  .sov-hero-desc { font-size: 0.9rem !important; }
  .sov-hero-contacts { flex-direction: column !important; gap: 8px !important; }
  .sov-hero-contact-chip { width: 100% !important; }
  .sov-hero-actions { flex-direction: column !important; gap: 10px !important; }
  .sov-hero-btn-primary, .sov-hero-btn-ghost { width: 100% !important; justify-content: center !important; text-align: center !important; }
  .sov-hero-visual { max-width: 280px !important; }
  .sov-hero-summary { grid-template-columns: 1fr !important; }
}
@media (max-width: 480px) {
  .sov-hero-heading { font-size: clamp(1.8rem, 9vw, 2.4rem) !important; }
  .sov-hero-eyebrow { font-size: 0.65rem !important; }
  .sov-hero-label { font-size: 0.62rem !important; padding: 4px 8px !important; }
  .sov-hero-visual { max-width: 240px !important; }
  .sov-vis-ring-track-2, .sov-vis-ring-track-3 { display: none !important; }
}

/* ── 4. INNER HERO (service/sector pages) ── */
@media (max-width: 991px) {
  .sov-inner-hero { padding: 90px 0 40px !important; }
  .sov-inner-hero .container { grid-template-columns: 1fr !important; gap: 32px !important; }
  .sov-inner-hero-img { order: -1; max-width: 400px; margin: 0 auto; }
}
@media (max-width: 767px) {
  .sov-inner-hero { padding: 80px 0 32px !important; }
  .sov-inner-hero-content h1 { font-size: clamp(1.8rem, 6vw, 2.8rem) !important; }
  .sov-inner-hero-actions { flex-direction: column !important; gap: 10px !important; }
  .sov-inner-hero-actions a { width: 100% !important; justify-content: center !important; }
  .sov-inner-hero-img { max-width: 100%; }
}
@media (max-width: 480px) {
  .sov-inner-hero-content h1 { font-size: clamp(1.6rem, 7vw, 2.2rem) !important; }
  .sov-inner-hero-content > p { font-size: 0.85rem !important; }
}

/* ── 5. STATS STRIP ── */
@media (max-width: 767px) {
  .sov-about-stats { flex-wrap: wrap !important; gap: 0 !important; }
  .sov-about-stat { flex: 1 1 45% !important; min-width: 120px !important; padding: 16px 12px !important; text-align: center !important; }
  .sov-about-stat-divider { display: none !important; }
  .sov-inner-stats { padding: 24px 0 !important; }
}
@media (max-width: 480px) {
  .sov-about-stat { flex: 1 1 100% !important; padding: 12px !important; }
  .sov-about-stat-num { font-size: 1.8rem !important; }
}

/* ── 6. SERVICE GRID CARDS ── */
@media (max-width: 991px) {
  .sov-sg-grid { grid-template-columns: repeat(2, 1fr) !important; gap: 16px !important; }
  .sov-sg-header { margin-bottom: 32px !important; }
}
@media (max-width: 575px) {
  .sov-sg-grid { grid-template-columns: 1fr !important; gap: 12px !important; }
}
@media (max-width: 480px) {
  .sov-sg-card { border-radius: 14px !important; }
  .sov-sg-card-inner { padding: 18px 16px !important; }
  .sov-sg-card-body h3 { font-size: 0.9rem !important; }
  .sov-sg-card-body p { font-size: 0.78rem !important; }
}

/* Section header responsive */
@media (max-width: 767px) {
  .sov-sg-title h2 { font-size: clamp(1.6rem, 5vw, 2.4rem) !important; }
  .sov-sg-subtitle p { font-size: 0.85rem !important; }
  .sov-services-grid.section { padding: 48px 0 !important; }
}
@media (max-width: 480px) {
  .sov-sg-title h2 { font-size: clamp(1.4rem, 6vw, 2rem) !important; }
  .sov-sg-eyebrow { font-size: 0.65rem !important; }
}

/* ── 7. PORTFOLIO / PROJECTS GRID ── */
@media (max-width: 991px) {
  .sov-proj-grid { grid-template-columns: repeat(2, 1fr) !important; gap: 16px !important; }
}
@media (max-width: 575px) {
  .sov-proj-grid { grid-template-columns: 1fr !important; gap: 14px !important; }
  .sov-proj-body { padding: 16px 18px 18px !important; }
  .sov-proj-body h3 { font-size: 0.95rem !important; }
  .sov-proj-cta-strip { padding: 24px 20px !important; }
  .sov-proj-cta-strip-left h3 { font-size: 1.2rem !important; }
}

/* ── 8. ABOUT SECTION ── */
@media (max-width: 991px) {
  .sov-about-grid { grid-template-columns: 1fr !important; gap: 40px !important; }
  .sov-about-img-col { max-width: 400px; margin: 0 auto; }
}
@media (max-width: 767px) {
  .sov-about-section { padding: 48px 0 !important; }
  .sov-about-content h2 { font-size: clamp(1.6rem, 5vw, 2.4rem) !important; }
}

/* ── 9. TESTIMONIALS ── */
@media (max-width: 991px) {
  .sov-testimonial-grid { grid-template-columns: 1fr !important; }
}
@media (max-width: 767px) {
  .sov-testimonial-card { padding: 24px 20px !important; }
}

/* ── 10. FAQ SECTION ── */
@media (max-width: 991px) {
  .faq-9 .row { flex-direction: column !important; }
  .faq-9 .col-lg-5 { margin-bottom: 32px !important; }
  .faq-arrow { display: none !important; }
}
@media (max-width: 767px) {
  .faq-title { font-size: clamp(1.4rem, 5vw, 2rem) !important; }
  .faq-item h3 { font-size: 0.85rem !important; padding: 14px 16px !important; }
  .faq-content { padding: 0 16px !important; }
  .faq-item.faq-active .faq-content { padding: 0 16px 14px !important; }
}

/* ── 11. CTA SECTION ── */
@media (max-width: 991px) {
  .sov-cta-inner { flex-direction: column !important; text-align: center !important; gap: 32px !important; }
  .sov-cta-stats { justify-content: center !important; }
  .sov-cta-actions { justify-content: center !important; }
}
@media (max-width: 767px) {
  .sov-cta-section { padding: 60px 0 !important; }
  .sov-cta-heading { font-size: clamp(1.6rem, 5vw, 2.4rem) !important; }
  .sov-cta-stats { flex-wrap: wrap !important; gap: 16px !important; }
  .sov-cta-stat { min-width: 80px !important; }
  .sov-cta-stat-divider { display: none !important; }
}
@media (max-width: 480px) {
  .sov-cta-actions { flex-direction: column !important; width: 100% !important; }
  .sov-cta-actions a { width: 100% !important; justify-content: center !important; }
}

/* ── 12. CONTACT SECTION ── */
@media (max-width: 991px) {
  .contact .row { flex-direction: column !important; }
}
@media (max-width: 767px) {
  .contact .php-email-form { padding: 24px 20px !important; }
  .contact .info-item { padding: 16px !important; }
}

/* ── 13. BREADCRUMB ── */
@media (max-width: 480px) {
  .sov-breadcrumb { font-size: 0.68rem !important; flex-wrap: wrap !important; gap: 4px !important; }
}

/* ── 14. HERO VISUAL (globe/orbit) ── */
@media (max-width: 767px) {
  .sov-hero-visual { max-width: 260px !important; }
  .sov-vis-chip { font-size: 0.55rem !important; padding: 3px 8px !important; }
  .sov-vis-growth { display: none !important; }
}
@media (max-width: 480px) {
  .sov-hero-visual { max-width: 220px !important; }
  .sov-vis-chip { display: none !important; }
  .sov-vis-ring-track-2, .sov-vis-ring-track-3 { display: none !important; }
  .sov-hero-badge { display: none !important; }
}

/* ── 15. INNER STATS (service pages) ── */
@media (max-width: 767px) {
  .sov-inner-stats { padding: 20px 0 !important; }
  .sov-inner-stats .sov-about-stats { flex-wrap: wrap !important; gap: 0 !important; }
  .sov-inner-stats .sov-about-stat { flex: 1 1 45% !important; padding: 12px 8px !important; text-align: center !important; }
  .sov-inner-stats .sov-about-stat-divider { display: none !important; }
}

/* ── 16. MEGA MENU — desktop only ── */
@media (min-width: 1200px) {
  .sov-mega-drop {
    position: absolute;
    top: calc(100% + 8px);
    left: 50%;
    transform: translateX(-50%) translateY(8px);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
    z-index: 9990;
    background: #ffffff;
    border: 1px solid rgba(0,0,0,0.08);
    border-radius: 16px;
    box-shadow: 0 16px 48px rgba(0,0,0,0.12);
  }
  .sov-mega-parent:hover > .sov-mega-drop,
  .sov-mega-parent:focus-within > .sov-mega-drop {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
  }
}

/* ── 17. PROCESS STEPS ── */
@media (max-width: 767px) {
  .sov-step-num { font-size: 0.6rem !important; padding: 3px 8px !important; }
}

/* ── 18. HERO SUMMARY CARDS ── */
@media (max-width: 991px) {
  .sov-hero-summary { grid-template-columns: 1fr 1fr !important; }
}
@media (max-width: 575px) {
  .sov-hero-summary { grid-template-columns: 1fr !important; }
  .sov-hero-sum-card { padding: 12px 14px !important; }
}

/* ── 19. SCROLL TOP & WHATSAPP FLOAT ── */
@media (max-width: 480px) {
  .sov-wa-float { width: 48px !important; height: 48px !important; bottom: 16px !important; right: 16px !important; font-size: 1.2rem !important; }
  #scroll-top { width: 36px !important; height: 36px !important; bottom: 72px !important; right: 16px !important; }
}

/* ── 20. GENERAL CONTAINER PADDING ── */
@media (max-width: 575px) {
  .container { padding-left: 16px !important; padding-right: 16px !important; }
  .container-xl { padding-left: 16px !important; padding-right: 16px !important; }
}
@media (max-width: 360px) {
  .container { padding-left: 12px !important; padding-right: 12px !important; }
}

/* ── 21. PAGE TITLE (dark bg pages) ── */
@media (max-width: 767px) {
  .page-title h1 { font-size: clamp(1.4rem, 5vw, 2rem) !important; }
  .page-title { padding: 80px 0 32px !important; }
}

/* ── 22. SECTION PADDING ── */
@media (max-width: 767px) {
  section, .section { padding: 48px 0 !important; }
}
@media (max-width: 480px) {
  section, .section { padding: 36px 0 !important; }
}

/* ── 23. TYPOGRAPHY SCALE ── */
@media (max-width: 480px) {
  body { font-size: 14px !important; }
  h1 { font-size: clamp(1.6rem, 7vw, 2.4rem) !important; }
  h2 { font-size: clamp(1.3rem, 5vw, 1.8rem) !important; }
  h3 { font-size: clamp(1rem, 4vw, 1.3rem) !important; }
}

/* ── 24. BUTTONS ── */
@media (max-width: 480px) {
  .sov-sg-cta-btn-primary, .sov-sg-cta-btn-ghost {
    padding: 10px 18px !important;
    font-size: 0.82rem !important;
  }
  .sov-hero-btn-primary, .sov-hero-btn-ghost {
    padding: 12px 20px !important;
    font-size: 0.85rem !important;
  }
}

/* ── 25. OVERFLOW PREVENTION ── */
html, body {
  overflow-x: hidden !important;
  max-width: 100vw !important;
}
* { box-sizing: border-box !important; }
img { max-width: 100% !important; height: auto !important; }

/* ── 26. MOBILE NAV OVERLAY ── */
.navmenu-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.4);
  z-index: 9998;
  backdrop-filter: blur(2px);
}
.navmenu-overlay.active { display: block; }

/* ── 27. CAREERS PAGE ── */
@media (max-width: 767px) {
  .sov-careers-grid { grid-template-columns: 1fr !important; }
  .sov-job-card { padding: 20px !important; }
}

/* ── 28. SERVICES.HTML OVERVIEW ── */
@media (max-width: 767px) {
  .sov-services-overview-grid { grid-template-columns: 1fr !important; }
}

/* ── 29. GEO PAGES HERO ── */
@media (max-width: 767px) {
  .sov-inner-hero-actions a[style] {
    width: 100% !important;
    justify-content: center !important;
  }
}

/* ── 30. PRINT ── */
@media print {
  .sov-header, .sov-footer, .sov-wa-float, #scroll-top, .sov-hero-bg { display: none !important; }
  body { font-size: 12pt !important; color: #000 !important; }
  a { color: #000 !important; text-decoration: underline !important; }
}
