/* =============================================
   KINERJA MANAGEMENT — Stylesheet
   Palette: Cream #EDEAE3 | Green #4A7C3F | Dark #2C2C2C
   Style: Light, Minimal, Professional
   ============================================= */

/* ===== VARIABLES ===== */
:root {
  --green:        #4A7C3F;
  --green-dark:   #3A6230;
  --green-light:  #5E9A52;
  --green-pale:   #EBF3E8;
  --green-muted:  rgba(74, 124, 63, 0.12);

  --cream:        #EDEAE3;
  --cream-dark:   #E4E0D8;
  --cream-darker: #D8D4CC;

  --dark:         #2C2C2C;
  --dark-2:       #3D3D3D;
  --mid:          #6B6B6B;
  --light:        #9A9A9A;
  --white:        #FFFFFF;

  --font-body:    'Inter', sans-serif;
  --font-head:    'Playfair Display', serif;
  --font-ui:      'Inter', sans-serif;

  --radius-xs:    4px;
  --radius-sm:    8px;
  --radius-md:    16px;
  --radius-lg:    24px;
  --radius-xl:    40px;

  --shadow-sm:    0 2px 8px rgba(44, 44, 44, 0.06);
  --shadow-md:    0 4px 24px rgba(44, 44, 44, 0.10);
  --shadow-lg:    0 12px 40px rgba(44, 44, 44, 0.12);
  --shadow-green: 0 8px 28px rgba(74, 124, 63, 0.22);

  --transition:   all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--dark);
  overflow-x: hidden;
  line-height: 1.7;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
ul { list-style: none; }
button { border: none; background: none; cursor: pointer; font-family: inherit; }

p, .hero-desc, .about-text, .pillar p, .svc-card p, .process-item p, .contact-card p, .footer-brand-col p {
  text-align: justify;
}
.section-subtitle, .pre-text, .cta-text p, .footer-bottom p, .section-header p {
  text-align: center;
}

.logo-img {
  max-height: 130px;
  width: auto;
  object-fit: contain;
  transition: var(--transition);
}
.pre-logo .logo-img {
  max-height: 140px;
  margin: 0 auto 16px;
}
.f-logo-wrap {
  display: inline-block;
  background: none;
  padding: 0;
  border-radius: 0;
  box-shadow: none;
  margin-bottom: 20px;
}
.f-logo-wrap .logo-img {
  max-height: 180px;
  filter: brightness(0) invert(1);
  mix-blend-mode: normal;
}

.container {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 32px;
}

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--cream-dark); }
::-webkit-scrollbar-thumb { background: var(--green); border-radius: 99px; }
::selection { background: var(--green); color: #fff; }

/* ===== PRELOADER ===== */
#preloader {
  position: fixed; inset: 0;
  background: var(--cream);
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}
#preloader.hidden { opacity: 0; visibility: hidden; pointer-events: none; }

.preloader-inner { text-align: center; }

.pre-logo {
  display: inline-block;
  margin-bottom: 20px;
  animation: pre-scale 1s ease infinite alternate;
}

@keyframes pre-scale {
  from { transform: scale(0.95); opacity: 0.7; }
  to   { transform: scale(1.05); opacity: 1; }
}

.pre-bar {
  width: 120px; height: 2px;
  background: var(--cream-darker);
  border-radius: 99px;
  overflow: hidden;
  margin: 0 auto 12px;
}
.pre-bar::after {
  content: '';
  display: block; height: 100%;
  width: 40%;
  background: var(--green);
  border-radius: 99px;
  animation: pre-run 1.2s ease infinite;
}
@keyframes pre-run {
  from { transform: translateX(-100%); }
  to   { transform: translateX(350%); }
}
.pre-text {
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--light);
  font-family: var(--font-ui);
}

/* ===== SCROLL PROGRESS ===== */
#scrollProgress {
  position: fixed;
  top: 0; left: 0;
  height: 2px;
  background: var(--green);
  z-index: 9999;
  width: 0%;
  transition: width 0.1s linear;
  pointer-events: none;
}

/* ===== UTILITIES ===== */
.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--green-pale);
  color: var(--green);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 99px;
  margin-bottom: 14px;
  font-family: var(--font-ui);
}

.section-tag::before {
  content: '';
  width: 5px; height: 5px;
  background: var(--green);
  border-radius: 50%;
  flex-shrink: 0;
}

.section-title {
  font-family: var(--font-head);
  font-size: clamp(26px, 3.5vw, 46px);
  font-weight: 700;
  line-height: 1.15;
  color: var(--dark);
  margin-bottom: 14px;
  letter-spacing: -0.5px;
}

.section-subtitle {
  color: var(--mid);
  font-size: 16px;
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.75;
}

.section-header { text-align: center; margin-bottom: 56px; }

.green-text { color: var(--green); }

.divider-line {
  display: inline-block;
  width: 40px; height: 3px;
  background: var(--green);
  border-radius: 99px;
  margin-bottom: 20px;
}

/* ===== BUTTONS ===== */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--green);
  color: #fff;
  font-weight: 600;
  font-size: 14px;
  padding: 13px 26px;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  letter-spacing: 0.2px;
  font-family: var(--font-ui);
}
.btn-primary:hover {
  background: var(--green-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-green);
}
.btn-primary.lg { padding: 15px 32px; font-size: 15px; }

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  color: var(--dark);
  font-weight: 600;
  font-size: 14px;
  padding: 13px 26px;
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--cream-darker);
  transition: var(--transition);
  font-family: var(--font-ui);
}
.btn-outline:hover {
  border-color: var(--green);
  color: var(--green);
  transform: translateY(-2px);
  background: var(--green-pale);
}

/* ===== PAGE NAVIGATION ===== */
.page-section {
  display: none;
  min-height: 100vh;
}
.page-section:not(#home) {
  padding-top: 190px !important;
  padding-bottom: 100px !important;
}
.page-section.page-active {
  display: block;
  animation: page-in 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
@keyframes page-in {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: var(--transition);
}
.navbar.scrolled {
  background: rgba(237, 234, 227, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--cream-darker);
  padding: 14px 0;
  box-shadow: var(--shadow-sm);
}
.navbar.scrolled .logo-img {
  max-height: 80px;
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo { display: flex; align-items: center; cursor: pointer; }
.logo-svg-wrap svg { height: 44px; width: auto; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-link {
  font-size: 14px;
  font-weight: 500;
  color: var(--mid);
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  font-family: var(--font-ui);
  position: relative;
  cursor: pointer;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 4px; left: 50%; right: 50%;
  height: 1.5px;
  background: var(--green);
  border-radius: 99px;
  transition: var(--transition);
}
.nav-link:hover, .nav-link.active { color: var(--dark); }
.nav-link:hover::after, .nav-link.active::after { left: 14px; right: 14px; }

.btn-nav {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--green);
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  padding: 9px 18px;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  margin-left: 12px;
  font-family: var(--font-ui);
}
.btn-nav:hover {
  background: var(--green-dark);
  box-shadow: var(--shadow-green);
}

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  position: relative;
  cursor: pointer;
  z-index: 1001;
}
.hamburger span {
  position: absolute;
  width: 24px;
  height: 2px;
  background: var(--dark);
  border-radius: 99px;
  transition: var(--transition);
}
.hamburger span:nth-child(1) { transform: translateY(-7px); }
.hamburger span:nth-child(2) { transform: translateY(0); }
.hamburger span:nth-child(3) { transform: translateY(7px); }

.hamburger.open span:nth-child(1) { transform: translateY(0) rotate(45deg); background: var(--green); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(0) rotate(-45deg); background: var(--green); }

/* Mobile Menu Overlay & Header */
.nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.6);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 998;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}
.nav-overlay.open {
  opacity: 1;
  visibility: visible;
}
.nav-mobile-header {
  display: none;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 20px;
  margin-bottom: 12px;
  border-bottom: 1px solid var(--cream-darker);
}
.mobile-logo-wrap .mobile-logo-img {
  max-height: 40px;
  width: auto;
}
.nav-close-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--green-pale);
  color: var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  transition: var(--transition);
  cursor: pointer;
}
.nav-close-btn:hover {
  background: var(--green);
  color: #fff;
  transform: rotate(90deg);
}

/* ===== TICKER ===== */
.ticker-wrap {
  background: var(--green);
  padding: 13px 0;
  overflow: hidden;
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 999;
}
.navbar { top: 46px; }

.ticker-track {
  display: flex; align-items: center; gap: 28px;
  white-space: nowrap;
  animation: ticker 28s linear infinite;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.9);
  font-family: var(--font-ui);
}
.ticker-sep { color: rgba(255,255,255,0.4); font-size: 8px; }

@keyframes ticker {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ===== HERO ===== */
.hero {
  background: var(--cream);
  position: relative;
  overflow: hidden;
  padding-top: 190px;
  padding-bottom: 100px;
}

.hero-bg {
  position: absolute; inset: 0;
  pointer-events: none; overflow: hidden;
}

.hero-circle {
  position: absolute;
  border-radius: 50%;
  background: var(--green-muted);
}
.hero-circle-1 {
  width: 500px; height: 500px;
  top: -180px; right: -120px;
  animation: float-slow 10s ease-in-out infinite alternate;
}
.hero-circle-2 {
  width: 280px; height: 280px;
  bottom: -80px; left: 5%;
  animation: float-slow 13s ease-in-out infinite alternate-reverse;
}
.hero-circle-3 {
  width: 160px; height: 160px;
  top: 40%; right: 25%;
  background: rgba(74, 124, 63, 0.06);
  animation: float-slow 8s ease-in-out infinite alternate;
}

@keyframes float-slow {
  from { transform: translate(0, 0); }
  to   { transform: translate(20px, 15px); }
}

.hero-dots {
  position: absolute;
  top: 15%; right: 8%;
  width: 120px; height: 120px;
  background-image: radial-gradient(circle, var(--green-light) 1px, transparent 1px);
  background-size: 14px 14px;
  opacity: 0.25;
}

.hero-inner {
  position: relative; z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  width: 100%;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 20px;
  font-family: var(--font-ui);
}
.hero-eyebrow span {
  display: block; width: 24px; height: 1.5px;
  background: var(--green);
}

.hero-title {
  font-family: var(--font-head);
  font-size: clamp(36px, 4.5vw, 60px);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -1px;
  color: var(--dark);
  margin-bottom: 20px;
}
.hero-title em { font-style: italic; color: var(--green); }

.hero-desc {
  font-size: 16px;
  color: var(--mid);
  line-height: 1.8;
  max-width: 440px;
  margin-bottom: 24px;
}

.hero-jargon {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--green-pale);
  border: 1px solid rgba(74, 124, 63, 0.25);
  color: var(--green-dark);
  padding: 10px 18px;
  border-radius: var(--radius-xl);
  font-size: 14.5px;
  font-weight: 600;
  margin-bottom: 32px;
  box-shadow: 0 4px 14px rgba(74, 124, 63, 0.1);
  transition: var(--transition);
}
.hero-jargon:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(74, 124, 63, 0.18); }
.hero-jargon i { color: #D97706; font-size: 16px; }

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 52px;
}

/* ===== HERO FULL-WIDTH STATS BANNER ===== */
.hero-stats-banner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 64px;
  padding: 36px 40px;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1.5px solid var(--cream-darker);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.hero-stat-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 16px;
  border-right: 1px dashed var(--cream-darker);
  position: relative;
}
.hero-stat-card:last-child {
  border-right: none;
}
.hero-stat-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--green-pale);
  color: var(--green-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin-bottom: 14px;
  transition: var(--transition);
}
.hero-stat-card:hover .hero-stat-icon {
  background: var(--green);
  color: #fff;
  transform: scale(1.1) rotate(8deg);
}
.hero-stat-val {
  font-family: var(--font-head);
  font-size: 38px;
  font-weight: 800;
  color: var(--dark);
  line-height: 1.1;
  margin-bottom: 6px;
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 2px;
}
.hero-stat-val span.count { color: var(--dark); }
.hero-stat-val span.suffix { color: var(--green); font-size: 26px; font-weight: 800; }
.hero-stat-lbl {
  font-size: 14px;
  font-weight: 600;
  color: var(--mid);
  font-family: var(--font-ui);
}

/* ===== HOME WHY CHOOSE US (ENRICHED CONTENT) ===== */
.home-why-section {
  margin-top: 80px;
  padding-top: 60px;
  border-top: 1px solid var(--cream-darker);
}
.home-why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 36px;
}
.home-why-card {
  background: #fff;
  border: 1.5px solid var(--cream-darker);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  box-shadow: var(--shadow-sm);
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  display: flex;
  flex-direction: column;
}
.home-why-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-md);
  border-color: var(--green);
}
.why-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: var(--green-pale);
  color: var(--green-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 20px;
  transition: var(--transition);
}
.home-why-card:hover .why-icon {
  background: var(--green);
  color: #fff;
  transform: rotate(-6deg);
}
.home-why-card h3 {
  font-family: var(--font-head);
  font-size: 19px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 14px;
  min-height: 48px;
  display: flex;
  align-items: center;
}
.home-why-card p {
  font-size: 13.5px;
  color: var(--mid);
  line-height: 1.6;
  text-align: justify;
  flex-grow: 1;
  margin: 0;
}

.hero-visual { position: relative; }

.hero-img-main {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/5;
}
.hero-img-main img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}
.hero-img-main:hover img { transform: scale(1.03); }

.hero-card-float {
  position: absolute;
  bottom: -24px; left: -32px;
  background: #fff;
  border: 1px solid var(--cream-darker);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 12px;
  animation: bob 4s ease-in-out infinite;
}
.hero-card-float .card-icon {
  width: 40px; height: 40px;
  background: var(--green-pale);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: var(--green); font-size: 18px;
  flex-shrink: 0;
}
.hero-card-float strong { display: block; font-size: 13px; font-weight: 700; }
.hero-card-float span  { font-size: 11px; color: var(--light); }

.hero-badge-float {
  position: absolute;
  top: 24px; left: -28px;
  background: var(--green);
  color: #fff;
  border-radius: var(--radius-md);
  padding: 14px 18px;
  text-align: center;
  box-shadow: var(--shadow-green);
  animation: bob 5s ease-in-out infinite reverse;
}
.hero-badge-float strong { display: block; font-size: 22px; font-weight: 700; font-family: var(--font-head); }
.hero-badge-float span  { font-size: 10px; letter-spacing: 1px; text-transform: uppercase; opacity: 0.85; }

@keyframes bob {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-8px); }
}

/* ===== ABOUT ===== */
.about {
  padding: 180px 0 100px;
  background: #fff;
  position: relative;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 88px;
  align-items: center;
}

.about-visual { position: relative; }

.about-imgs {
  position: relative; height: 520px;
}
.about-img-a {
  position: absolute;
  top: 0; left: 0;
  width: 72%; aspect-ratio: 3/4;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.about-img-a img { width: 100%; height: 100%; object-fit: cover; }

.about-img-b {
  position: absolute;
  bottom: 0; right: 0;
  width: 52%; aspect-ratio: 1;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 4px solid var(--cream);
  box-shadow: var(--shadow-md);
}
.about-img-b img { width: 100%; height: 100%; object-fit: cover; }

.about-tag-float {
  position: absolute;
  top: 38%; left: -20px;
  background: var(--green);
  color: #fff;
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  font-size: 12px;
  font-weight: 700;
  display: flex; align-items: center; gap: 8px;
  box-shadow: var(--shadow-green);
  animation: bob 5s ease-in-out infinite;
  z-index: 5;
  white-space: nowrap;
}
.about-tag-float i { font-size: 14px; }

.about-content .divider-line { display: block; }

.about-text {
  font-size: 15px;
  color: var(--mid);
  line-height: 1.8;
  margin-bottom: 14px;
}

.about-pillars {
  margin: 28px 0;
  display: flex; flex-direction: column; gap: 12px;
}
.pillar {
  display: flex; align-items: flex-start; gap: 14px;
  padding: 14px 16px;
  background: var(--cream);
  border-radius: var(--radius-sm);
  border-left: 3px solid transparent;
  transition: var(--transition);
}
.pillar:hover { border-left-color: var(--green); background: var(--green-pale); }
.pillar-icon {
  width: 36px; height: 36px;
  background: var(--green-pale);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  color: var(--green); font-size: 15px; flex-shrink: 0;
}
.pillar strong { display: block; font-size: 13px; font-weight: 700; margin-bottom: 2px; }
.pillar p { font-size: 12px; color: var(--light); margin: 0; line-height: 1.5; }

.about-legal-row {
  display: flex; gap: 10px; flex-wrap: wrap;
  padding-top: 20px;
  border-top: 1px solid var(--cream-dark);
}
.legal-chip {
  display: flex; align-items: center; gap: 8px;
  background: var(--cream);
  border: 1px solid var(--cream-darker);
  border-radius: var(--radius-sm);
  padding: 8px 12px; font-size: 11px;
}
.legal-chip i { color: var(--green); font-size: 12px; }
.legal-chip strong { font-size: 11px; display: block; }
.legal-chip span { color: var(--light); font-size: 10px; }

/* Process inside About page */
.process-inner {
  padding: 60px 0 40px;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  position: relative;
}
.process-grid::before {
  content: '';
  position: absolute;
  top: 28px; left: 8%; right: 8%;
  height: 1px;
  border-top: 1.5px dashed var(--cream-darker);
  z-index: 0;
}

.process-item {
  display: flex; flex-direction: column;
  align-items: center; text-align: center;
  position: relative; z-index: 1;
}

.process-num {
  width: 56px; height: 56px;
  background: var(--cream);
  border: 2px solid var(--green);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-head);
  font-size: 20px; font-weight: 700;
  color: var(--green);
  margin-bottom: 20px;
  transition: var(--transition);
}
.process-item:hover .process-num {
  background: var(--green); color: #fff;
  transform: scale(1.08);
  box-shadow: var(--shadow-green);
}

.process-icon {
  font-size: 22px; color: var(--green-light);
  margin-bottom: 12px;
}

.process-item h3 {
  font-family: var(--font-head);
  font-size: 16px; font-weight: 700;
  margin-bottom: 8px;
}
.process-item p {
  font-size: 13px; color: var(--mid); line-height: 1.65;
}

/* ===== SERVICES — Creative Bento Grid Layout ===== */
.services {
  padding: 180px 0 100px;
  background: var(--cream);
  position: relative;
  overflow: hidden;
}

/* Stats bar */
.svc-stats-bar {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: 64px;
  background: var(--cream-darker);
  border: 1px solid var(--cream-darker);
  border-radius: 20px;
  overflow: hidden;
}
.svc-stat-item {
  padding: 28px 32px;
  background: #fff;
  text-align: center;
  transition: var(--transition);
  position: relative;
}
.svc-stat-item::before {
  content: '';
  position: absolute;
  bottom: 0; left: 20%; right: 20%; height: 2px;
  background: linear-gradient(90deg, transparent, var(--green), transparent);
  opacity: 0; transition: opacity 0.3s;
}
.svc-stat-item:hover { background: var(--green-pale); }
.svc-stat-item:hover::before { opacity: 1; }
.svc-stat-num {
  font-family: var(--font-head);
  font-size: 40px; font-weight: 700;
  color: var(--dark);
  line-height: 1; margin-bottom: 6px;
  display: flex; align-items: baseline; justify-content: center; gap: 2px;
}
.svc-stat-num sup { font-size: 20px; color: var(--green); }
.svc-stat-lbl { font-size: 13px; color: var(--mid); font-weight: 500; }

/* ===== Services Creative Bento Grid ===== */
.services-creative-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 20px;
}

@keyframes float-soft {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

.svc-card-creative {
  background: #fff;
  border: 1.5px solid var(--cream-darker);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
  animation: float-soft 6s ease-in-out infinite;
}

.svc-card-creative:hover {
  animation-play-state: paused;
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 18px 40px rgba(74, 124, 63, 0.16);
  border-color: var(--green);
}

.svc-card-banner {
  position: relative;
  height: 200px;
  overflow: hidden;
  background: var(--cream-dark);
}

.svc-card-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.svc-card-creative:hover .svc-card-banner img {
  transform: scale(1.08);
}

.svc-card-num {
  position: absolute;
  top: 14px;
  right: 14px;
  background: rgba(44, 44, 44, 0.85);
  backdrop-filter: blur(8px);
  color: #fff;
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 800;
  padding: 4px 12px;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.svc-card-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.svc-card-head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 14px;
}

.svc-icon-box {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--green-pale);
  color: var(--green-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
  transition: var(--transition);
}

.svc-card-creative:hover .svc-icon-box {
  background: var(--green);
  color: #fff;
  transform: rotate(-6deg) scale(1.05);
}

.svc-card-head h3 {
  font-family: var(--font-head);
  font-size: 19px;
  font-weight: 700;
  color: var(--dark);
  line-height: 1.3;
}

.svc-card-desc {
  font-size: 13.5px;
  color: var(--mid);
  line-height: 1.6;
  margin-bottom: 18px;
}

.svc-card-features {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px dashed var(--cream-darker);
}

.svc-card-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12.5px;
  color: var(--dark-2);
  font-weight: 500;
}

.svc-card-features li i {
  color: var(--green);
  font-size: 14px;
  flex-shrink: 0;
}

.svc-card-footer {
  padding: 16px 24px;
  background: var(--cream-pale);
  border-top: 1px solid var(--cream-darker);
}

.btn-svc-action {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  font-size: 13.5px;
  font-weight: 700;
  color: var(--green-dark);
  text-decoration: none;
  transition: var(--transition);
}

.btn-svc-action i.fab {
  font-size: 16px;
  color: #25D366;
  margin-right: 8px;
}

.btn-svc-action i.fa-arrow-right {
  transition: transform 0.3s;
}

.svc-card-creative:hover .btn-svc-action {
  color: var(--green);
}

.svc-card-creative:hover .btn-svc-action i.fa-arrow-right {
  transform: translateX(5px);
}

/* ===== SERVICES STATS BAR ===== */
.svc-stats-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 40px;
  padding: 32px;
  background: var(--cream-pale);
  border: 1px dashed var(--cream-darker);
  border-radius: var(--radius-lg);
}

.svc-stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 8px;
}

.svc-stat-num {
  font-family: var(--font-head);
  font-size: 34px;
  font-weight: 800;
  color: var(--dark);
  line-height: 1.1;
  margin-bottom: 6px;
  display: flex;
  align-items: baseline;
  justify-content: center;
}

.svc-stat-num sup {
  font-size: 18px;
  color: var(--green);
  margin-left: 2px;
}

.svc-stat-lbl {
  font-size: 13px;
  font-weight: 600;
  color: var(--mid);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* ===== CLIENTS ===== */
.clients {
  padding: 110px 0;
  background: #fff;
}

.clients-subsection { }

.clients-subtitle {
  font-family: var(--font-head);
  font-size: 20px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 28px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--cream-darker);
}

/* ===== MARQUEE CLIENTS ===== */
.marquee-wrapper {
  overflow: hidden;
  position: relative;
  width: 100%;
  padding: 8px 0;
}
.marquee-wrapper::before,
.marquee-wrapper::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 80px;
  z-index: 2;
  pointer-events: none;
}
.marquee-wrapper::before {
  left: 0;
  background: linear-gradient(to right, #fff 0%, rgba(255,255,255,0) 100%);
}
.marquee-wrapper::after {
  right: 0;
  background: linear-gradient(to left, #fff 0%, rgba(255,255,255,0) 100%);
}

.marquee-track {
  display: flex;
  align-items: center;
  gap: 16px;
  width: max-content;
}
.track-left {
  animation: marquee-move-left 35s linear infinite;
}
.track-left-fast {
  animation: marquee-move-left 28s linear infinite;
}
.track-left-slow {
  animation: marquee-move-left 42s linear infinite;
}
.track-right {
  animation: marquee-move-right 32s linear infinite;
}
.marquee-wrapper:hover .marquee-track {
  animation-play-state: paused;
}

@keyframes marquee-move-left {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
@keyframes marquee-move-right {
  0%   { transform: translateX(-50%); }
  100% { transform: translateX(0); }
}

.client-logo-card {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border: 1px solid var(--cream-darker);
  border-radius: var(--radius-md);
  padding: 14px 24px;
  min-width: 170px;
  height: 80px;
  box-shadow: var(--shadow-sm);
  flex-shrink: 0;
  transition: var(--transition);
  cursor: pointer;
}
.client-logo-card:hover {
  transform: translateY(-4px) scale(1.04);
  box-shadow: var(--shadow-md);
  border-color: var(--green);
  z-index: 5;
}
.client-logo-card img {
  max-height: 48px;
  max-width: 130px;
  object-fit: contain;
}
.client-logo-card[style*="--clr"] {
  background: var(--clr, var(--green));
  border: none;
}
.client-logo-text {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: #fff;
  font-family: var(--font-ui);
  line-height: 1.3;
  text-align: center;
}
.client-logo-card.collab {
  min-width: 145px;
  height: 70px;
  padding: 10px 18px;
}
.client-logo-card.collab .client-logo-text { font-size: 10px; }

/* ===== OUR CLIENT & COLLABORATION GRIDS (EXACT MATCH REFERENCE IMAGES) ===== */
.clients-subtitle-bar {
  text-align: center;
  margin-top: 40px;
  margin-bottom: 24px;
}
.clients-subtitle-bar h3 {
  font-family: var(--font-head);
  font-size: clamp(22px, 3.5vw, 28px);
  font-weight: 700;
  color: #385E38;
  letter-spacing: -0.5px;
}

/* Image 1: Our Client Grid (10 Square Cards, 2x5) */
.our-client-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 22px;
  margin-bottom: 60px;
}
.oc-card {
  width: 140px;
  height: 140px;
  flex-shrink: 0;
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 16px;
  position: relative;
  overflow: hidden;
  transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
  border: 1px solid rgba(0,0,0,0.04);
  text-align: center;
}
.oc-card:hover {
  transform: translateY(-6px) scale(1.03);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.12);
  border-color: var(--green);
}
.oc-card img {
  max-width: 85%;
  max-height: 85%;
  object-fit: contain;
}
.oc-wordmark {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  width: 100%;
  height: 100%;
}
.oc-wordmark .title {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: clamp(18px, 2vw, 24px);
  line-height: 1.1;
}
.oc-wordmark .sub {
  font-size: 11px;
  opacity: 0.8;
  font-weight: 600;
}

/* Image 2: Collaboration Circle Grid (21 Circles, 3x7) */
.client-collab-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 24px;
  margin-top: 28px;
  margin-bottom: 30px;
}
.collab-circle-card {
  width: 110px;
  height: 110px;
  flex-shrink: 0;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 12px;
  position: relative;
  overflow: hidden;
  transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
  border: 1.5px solid rgba(0,0,0,0.05);
  text-align: center;
  font-family: var(--font-head);
  font-weight: 700;
}
.collab-circle-card:hover {
  transform: translateY(-6px) scale(1.08);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.16);
  border-color: var(--green);
}

/* Image 3: Agency Partner Grid (12 Square Cards, 2x6) */
.agency-partner-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
  margin-top: 24px;
  margin-bottom: 48px;
}
.ap-card {
  aspect-ratio: 1 / 1;
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 16px;
  position: relative;
  overflow: hidden;
  transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
  border: 1px solid rgba(0,0,0,0.05);
  text-align: center;
  font-family: var(--font-head);
}
.ap-card:hover {
  transform: translateY(-6px) scale(1.04);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.14);
  border-color: var(--green);
}
.ap-icon-box {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
  font-size: 26px;
}

/* ===== PARTNERS CREATIVE GRID ===== */
.partners {
  padding: 100px 0;
  background: var(--cream);
  position: relative;
}
/* ===== PARTNERS (CREATIVE BRAND SHOWCASE & MATRIX) ===== */
.partner-section-bar {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-bottom: 32px;
}
.p-bar-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--dark);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  padding: 6px 16px;
  border-radius: 99px;
  margin-bottom: 12px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.p-bar-badge.green {
  background: var(--green);
}
.partner-section-bar h3 {
  font-family: var(--font-head);
  font-size: clamp(20px, 3.5vw, 26px);
  font-weight: 700;
  color: var(--dark);
}

/* Tier 1: Spotlight Grid */
.partner-spotlight-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.partner-spotlight-card {
  background: #fff;
  border: 1.5px solid var(--cream-darker);
  border-radius: var(--radius-lg);
  padding: 26px 22px;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  z-index: 1;
}
.partner-spotlight-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 5px;
  background: var(--brand-clr, var(--green));
  transition: height 0.35s ease;
}
.partner-spotlight-card:hover {
  transform: translateY(-8px);
  border-color: var(--brand-clr, var(--green));
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}
.partner-spotlight-card:hover::before {
  height: 8px;
}

.spotlight-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
}
.spotlight-badge {
  font-size: 11px;
  font-weight: 700;
  color: var(--brand-clr, var(--green));
  background: var(--brand-bg, var(--green-pale));
  padding: 4px 12px;
  border-radius: 99px;
}
.spotlight-verified {
  font-size: 12px;
  font-weight: 600;
  color: #10B981;
  display: flex;
  align-items: center;
  gap: 5px;
}

.spotlight-logo-box {
  min-height: 100px;
  background: #FAFAFA;
  border: 1px solid var(--cream-darker);
  border-radius: var(--radius-md);
  padding: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: var(--transition);
}
.partner-spotlight-card:hover .spotlight-logo-box {
  background: #fff;
  border-color: var(--brand-clr, var(--green));
  box-shadow: 0 8px 24px rgba(0,0,0,0.06);
}
.spotlight-img {
  max-height: 64px;
  max-width: 90%;
  object-fit: contain;
  transition: transform 0.35s ease;
}
.partner-spotlight-card:hover .spotlight-img {
  transform: scale(1.08);
}

/* Custom Wordmark Box */
.spotlight-wordmark {
  display: flex;
  align-items: center;
  gap: 12px;
}
.sw-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  color: #fff;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}
.sw-text {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 24px;
  letter-spacing: -0.5px;
  color: var(--dark);
}

.spotlight-info {
  flex-grow: 1;
  margin-bottom: 20px;
}
.spotlight-info h4 {
  font-family: var(--font-head);
  font-size: 19px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 4px;
}
.spotlight-cat {
  font-size: 13px;
  color: var(--mid);
  font-weight: 600;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.spotlight-desc {
  font-size: 13.5px;
  color: var(--light);
  line-height: 1.55;
}

.spotlight-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  padding-top: 16px;
  border-top: 1px dashed var(--cream-darker);
}
.spotlight-pills span {
  font-size: 11px;
  font-weight: 600;
  color: var(--dark);
  background: var(--cream-pale);
  border: 1px solid var(--cream-darker);
  padding: 4px 10px;
  border-radius: 6px;
}

/* Tier 2: Ecosystem Matrix Grid */
.partner-matrix-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.partner-brand-card {
  background: #fff;
  border: 1.5px solid var(--cream-darker);
  border-radius: var(--radius-md);
  padding: 20px;
  display: flex;
  flex-direction: column;
  transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
  overflow: hidden;
}
.partner-brand-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0; bottom: 0;
  width: 4px;
  background: var(--clr, var(--green));
  transition: width 0.3s ease;
}
.partner-brand-card:hover {
  transform: translateY(-6px);
  border-color: var(--clr, var(--green));
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.08);
}
.partner-brand-card:hover::after {
  width: 6px;
}

.pbc-logo-box {
  min-height: 86px;
  background: #FAFAFA;
  border: 1px solid var(--cream-darker);
  border-radius: var(--radius-sm);
  padding: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  transition: var(--transition);
}
.partner-brand-card:hover .pbc-logo-box {
  background: #fff;
  border-color: var(--clr, var(--green));
  box-shadow: 0 6px 18px rgba(0,0,0,0.05);
}
.pbc-img {
  max-height: 52px;
  max-width: 90%;
  object-fit: contain;
  transition: transform 0.35s ease;
}
.partner-brand-card:hover .pbc-img {
  transform: scale(1.08);
}

.wordmark-pbc {
  gap: 10px;
}
.pbc-wm-icon {
  width: 36px;
  height: 36px;
  border-radius: 9px;
  color: #fff;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 3px 8px rgba(0,0,0,0.12);
  flex-shrink: 0;
}
.pbc-wm-text {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 19px;
  letter-spacing: -0.4px;
  color: var(--dark);
}

.pbc-body {
  flex-grow: 1;
  margin-bottom: 14px;
}
.pbc-cat {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--clr, var(--green));
  letter-spacing: 0.5px;
  display: block;
  margin-bottom: 4px;
}
.pbc-body h4 {
  font-family: var(--font-head);
  font-size: 17px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 4px;
}
.pbc-tag {
  font-size: 12px;
  color: var(--light);
  font-weight: 600;
}

.pbc-footer {
  padding-top: 12px;
  border-top: 1px dashed var(--cream-darker);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.pbc-status {
  font-size: 12px;
  font-weight: 600;
  color: #10B981;
  display: flex;
  align-items: center;
  gap: 5px;
}

/* Partnership Trust Banner */
.partner-trust-banner {
  margin-top: 56px;
  background: rgba(255, 255, 255, 0.9);
  border: 1.5px solid var(--cream-darker);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  box-shadow: var(--shadow-sm);
}
.ptb-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.ptb-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: var(--green-pale);
  color: var(--green);
  font-size: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.ptb-item h4 {
  font-family: var(--font-head);
  font-size: 16px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 4px;
}
.ptb-item p {
  font-size: 13px;
  color: var(--light);
  line-height: 1.5;
}

/* ===== CONTACT ===== */
.contact { padding: 110px 0; background: var(--cream); }

.contact-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  margin-bottom: 40px;
}

.contact-card {
  background: #fff;
  border: 1px solid var(--cream-darker);
  border-radius: var(--radius-md);
  padding: 28px 20px;
  text-align: center; transition: var(--transition-slow);
}
.contact-card:hover {
  border-color: var(--green);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.c-icon {
  width: 52px; height: 52px;
  background: var(--green-pale);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; color: var(--green);
  margin: 0 auto 14px; transition: var(--transition);
}
.contact-card:hover .c-icon { background: var(--green); color: #fff; }
.contact-card h3 { font-family: var(--font-head); font-size: 17px; font-weight: 700; margin-bottom: 6px; }
.contact-card p { font-size: 12px; color: var(--light); margin-bottom: 14px; line-height: 1.6; }
.c-link {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 13px; font-weight: 600; color: var(--green);
  transition: var(--transition);
}
.c-link:hover { color: var(--green-dark); gap: 10px; }
.c-link i { font-size: 10px; }

/* CTA Banner */
.cta-wrap {
  background: var(--green);
  border-radius: var(--radius-lg);
  padding: 52px 60px;
  display: flex; align-items: center;
  justify-content: space-between; gap: 32px; flex-wrap: wrap;
  position: relative; overflow: hidden;
}
.cta-wrap::before {
  content: '';
  position: absolute; right: -80px; top: -80px;
  width: 280px; height: 280px;
  background: rgba(255,255,255,0.06);
  border-radius: 50%;
}
.cta-wrap::after {
  content: '';
  position: absolute; left: -40px; bottom: -60px;
  width: 200px; height: 200px;
  background: rgba(0,0,0,0.06);
  border-radius: 50%;
}
.cta-text h3 {
  font-family: var(--font-head);
  font-size: 26px; font-weight: 700; color: #fff;
  margin-bottom: 6px;
}
.cta-text p { font-size: 15px; color: rgba(255,255,255,0.78); text-align: left; }
.cta-jargon-chip {
  display: inline-block;
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.35);
  padding: 6px 16px;
  border-radius: var(--radius-xl);
  font-size: 13px;
  font-weight: 600;
  color: #FFF;
  margin-bottom: 14px;
  backdrop-filter: blur(8px);
}
.cta-wrap .btn-cta-white {
  display: inline-flex; align-items: center; gap: 10px;
  background: #fff; color: var(--green);
  font-size: 14px; font-weight: 700;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  position: relative; z-index: 1;
  flex-shrink: 0; font-family: var(--font-ui);
}
.cta-wrap .btn-cta-white:hover {
  background: var(--cream); transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}

/* ===== FOOTER — Dark Theme ===== */
.footer {
  background: var(--dark);
  position: relative;
  overflow: hidden;
}

.footer-top { padding: 80px 0 56px; position: relative; z-index: 1; }

.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1.3fr;
  gap: 56px;
  padding-bottom: 56px;
  border-bottom: 1px solid #1f1f1f;
}

/* Brand column */
.footer-brand-col .f-logo-wrap {
  margin-bottom: 18px;
}

.footer-brand-col p {
  font-size: 13.5px; color: #888;
  line-height: 1.8; max-width: 260px; margin-bottom: 28px;
}

.f-socials { display: flex; gap: 10px; }
.f-socials a {
  width: 38px; height: 38px;
  background: #2a2a2a;
  border: 1px solid #3a3a3a;
  color: #888;
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 15px; transition: var(--transition);
}
.f-socials a:hover {
  background: var(--green);
  border-color: var(--green);
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(74,124,63,0.4);
}

/* Footer columns */
.footer-col h4 {
  font-family: var(--font-ui);
  font-size: 16px; font-weight: 700;
  letter-spacing: 0.5px;
  color: #fff;
  margin-bottom: 22px;
}

.footer-col ul { display: flex; flex-direction: column; gap: 11px; }
.footer-col ul li a {
  font-size: 15px; color: #777;
  transition: var(--transition);
  display: flex; align-items: center; gap: 0;
  cursor: pointer;
}
.footer-col ul li a::before {
  content: '';
  width: 0; height: 1px;
  background: var(--green-light);
  transition: width 0.25s ease;
  margin-right: 0;
}
.footer-col ul li a:hover {
  color: var(--green-light);
}
.footer-col ul li a:hover::before { width: 12px; margin-right: 8px; }

/* Contact list */
.f-contact-list { gap: 13px !important; }
.f-contact-list li {
  display: flex; align-items: flex-start; gap: 12px;
  font-size: 15px; color: #777;
  transition: var(--transition);
}
.f-contact-list li i {
  color: var(--green-light);
  font-size: 14px;
  flex-shrink: 0;
  margin-top: 2px;
}
.f-contact-list li:hover { color: rgba(255,255,255,0.7); }
.f-contact-list li a { color: #777; transition: var(--transition); }
.f-contact-list li a:hover { color: var(--green-light); }

/* Footer bottom */
.footer-bottom {
  padding: 24px 0;
  position: relative; z-index: 1;
  border-top: 1px solid #1f1f1f;
}
.footer-bottom-inner {
  display: flex; align-items: center;
  justify-content: space-between; gap: 16px; flex-wrap: wrap;
}
.footer-bottom p { font-size: 12px; color: #555; }

/* ===== FLOATING WA ===== */
.wa-btn {
  position: fixed;
  bottom: 28px; right: 28px;
  width: 56px; height: 56px;
  background: #25D366; color: #fff;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 26px;
  box-shadow: 0 6px 24px rgba(37,211,102,0.4);
  z-index: 9990; transition: var(--transition);
  text-decoration: none;
}
.wa-btn:hover { transform: scale(1.1); box-shadow: 0 10px 32px rgba(37,211,102,0.6); }

.wa-ring {
  position: absolute; inset: -6px;
  border: 1.5px solid #25D366;
  border-radius: 50%;
  animation: ring-pulse 2.5s ease-out infinite;
}
@keyframes ring-pulse {
  0%   { transform: scale(1); opacity: 0.8; }
  100% { transform: scale(1.5); opacity: 0; }
}

.wa-tip {
  position: absolute;
  right: calc(100% + 10px);
  background: var(--dark);
  color: #fff;
  font-size: 12px; font-weight: 600;
  padding: 5px 12px; border-radius: 6px;
  white-space: nowrap;
  opacity: 0; pointer-events: none;
  transform: translateX(6px);
  transition: var(--transition);
  font-family: var(--font-ui);
}
.wa-btn:hover .wa-tip { opacity: 1; transform: translateX(0); }

/* ===== BACK TO TOP ===== */
.btt-btn {
  position: fixed;
  bottom: 96px; right: 28px;
  width: 40px; height: 40px;
  background: #fff;
  border: 1px solid var(--cream-darker);
  color: var(--dark); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 13px;
  z-index: 9989;
  opacity: 0; visibility: hidden;
  transform: translateY(8px);
  transition: var(--transition);
  box-shadow: var(--shadow-sm); cursor: pointer;
}
.btt-btn.show { opacity: 1; visibility: visible; transform: translateY(0); }
.btt-btn:hover { background: var(--green); color: #fff; border-color: var(--green); }


@media (max-width: 1024px) {
  .hero-inner      { grid-template-columns: 1fr; gap: 48px; }
  .hero-visual     { display: none; }
  .hero-title      { font-size: clamp(34px, 6vw, 52px); }
  .about-grid      { grid-template-columns: 1fr; gap: 48px; }
  .about-imgs      { height: 340px; }
  .process-grid    { grid-template-columns: repeat(2, 1fr); }
  .process-grid::before { display: none; }
  .footer-grid     { grid-template-columns: repeat(2, 1fr); gap: 40px; }
  .contact-grid    { grid-template-columns: repeat(3, 1fr); gap: 16px; }
  .our-client-grid { grid-template-columns: repeat(4, 1fr); gap: 18px; }
  .client-collab-grid { grid-template-columns: repeat(4, 1fr); gap: 20px; }
  .agency-partner-grid { grid-template-columns: repeat(4, 1fr); gap: 18px; }
  .partner-spotlight-grid, .partner-matrix-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .partner-trust-banner { grid-template-columns: repeat(3, 1fr); gap: 20px; padding: 28px 20px; }
  .services-creative-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .hero-stats-banner, .home-why-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-stat-card:nth-child(2) { border-right: none; }
}

@media (max-width: 768px) {
  html, body         { overflow-x: hidden; width: 100%; }
  .navbar            { padding: 12px 0; }
  .navbar.scrolled   { padding: 10px 0; }
  .logo-img          { max-height: 84px; }
  .navbar.scrolled .logo-img { max-height: 70px; }
  .hamburger         { display: flex; }
  .nav-mobile-header { display: flex; }
  .nav-links {
    position: fixed;
    top: 0; right: -100%; width: 300px; max-width: 85vw; height: 100vh;
    background: #fff;
    border-left: 1px solid var(--cream-darker);
    flex-direction: column; align-items: flex-start;
    padding: 24px 24px 32px; gap: 0;
    transition: right 0.35s cubic-bezier(0.4, 0, 0.2, 1); z-index: 999;
    box-shadow: var(--shadow-lg);
    overflow-y: auto;
  }
  .nav-links.open { right: 0; }
  .nav-link { width: 100%; padding: 12px 0; font-size: 15.5px; border-bottom: 1px solid var(--cream-dark); color: var(--dark); }
  .nav-link::after { display: none; }
  .btn-nav { width: 100%; margin: 20px 0 0; justify-content: center; }
  .our-client-grid { grid-template-columns: repeat(3, 1fr); gap: 16px; }
  .client-collab-grid { grid-template-columns: repeat(3, 1fr); gap: 16px; }
  .agency-partner-grid { grid-template-columns: repeat(3, 1fr); gap: 16px; }
  .partner-spotlight-grid { grid-template-columns: 1fr; gap: 18px; }
  .partner-matrix-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .partner-trust-banner { grid-template-columns: 1fr; gap: 24px; padding: 24px 20px; }
  .services-creative-grid { grid-template-columns: 1fr; gap: 20px; }
  .home-why-grid { grid-template-columns: 1fr; }
  .home-why-card p { text-align: left; }
  .cta-wrap { flex-direction: column; padding: 36px 24px; text-align: center; }
  .contact-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .contact-grid .contact-card:nth-child(5) { grid-column: span 2; max-width: 360px; margin: 0 auto; width: 100%; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); gap: 36px; }
}

@media (max-width: 540px) {
  .container { padding: 0 20px; }
  .page-section:not(#home) { padding-top: 150px !important; padding-bottom: 70px !important; }
  .hero { padding-top: 150px; padding-bottom: 70px; }
  .hero-eyebrow { font-size: 11px; margin-bottom: 14px; }
  .hero-title { font-size: clamp(30px, 8vw, 40px); line-height: 1.15; margin-bottom: 16px; }
  .hero-desc { font-size: 14.5px; margin-bottom: 20px; }
  .hero-jargon { font-size: 13px; padding: 8px 14px; margin-bottom: 24px; text-align: center; justify-content: center; width: 100%; }
  
  /* Make mobile grids neat and portrait-friendly without oversized elements */
  .our-client-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .client-collab-grid { grid-template-columns: repeat(3, 1fr); gap: 10px; }
  .agency-partner-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  
  .oc-card, .ap-card { border-radius: 16px; padding: 12px; }
  .collab-circle-card { padding: 8px; }
  
  .contact-grid, .footer-grid, .process-grid, .partner-matrix-grid { grid-template-columns: 1fr; }
  .contact-grid .contact-card:nth-child(5) { grid-column: span 1; max-width: 100%; }
  .hero-stats-banner, .svc-stats-bar { grid-template-columns: repeat(2, 1fr); gap: 14px; padding: 20px 14px; }
  .hero-stat-card { border-right: none; border-bottom: none; padding: 14px 8px; }
  .hero-stat-card:nth-child(odd) { border-right: 1px dashed var(--cream-darker); }
  .hero-stat-card:nth-child(1), .hero-stat-card:nth-child(2) { border-bottom: 1px dashed var(--cream-darker); }
  .hero-stat-val { font-size: 28px; }
  .hero-stat-val span.suffix { font-size: 20px; }
  .hero-stat-lbl { font-size: 12px; }
  .hero-actions { flex-direction: column; gap: 12px; }
  .hero-actions .btn-primary, .hero-actions .btn-outline { width: 100%; justify-content: center; }
  .about-imgs { height: 260px; }
  .f-socials { flex-wrap: wrap; }
  .footer-top { padding: 60px 0 40px; }
  .footer-bottom-inner { flex-direction: column; text-align: center; }
  .wa-btn { bottom: 20px; right: 20px; width: 50px; height: 50px; font-size: 24px; }
  .btt-btn { bottom: 80px; right: 20px; }
}

@media (max-width: 400px) {
  .client-collab-grid { grid-template-columns: repeat(3, 1fr); gap: 8px; }
  .our-client-grid { gap: 8px; }
  .agency-partner-grid { gap: 8px; }
  
  .oc-card, .ap-card { padding: 10px; }
  .collab-circle-card { padding: 6px; }
  
  .hero-stats-banner, .svc-stats-bar { grid-template-columns: 1fr; }
  .hero-stat-card:nth-child(odd) { border-right: none; }
  .hero-stat-card { border-bottom: 1px dashed var(--cream-darker); }
  .hero-stat-card:last-child { border-bottom: none; }
  .logo-img { max-height: 52px; }
}

/* ===== INTERACTIVE FAIRY ===== */
.interactive-fairy {
  position: fixed;
  top: 0; left: 0;
  width: 45px; height: 45px;
  pointer-events: none; /* so it doesn't block clicks */
  flex-shrink: 0;
  margin-top: 2px;
}
.f-contact-list li:hover { color: rgba(255,255,255,0.7); }
.f-contact-list li a { color: #777; transition: var(--transition); }
.f-contact-list li a:hover { color: var(--green-light); }

/* Footer bottom */
.footer-bottom {
  padding: 24px 0;
  position: relative; z-index: 1;
  border-top: 1px solid #1f1f1f;
}
.footer-bottom-inner {
  display: flex; align-items: center;
  justify-content: space-between; gap: 16px; flex-wrap: wrap;
}
.footer-bottom p { font-size: 12px; color: #555; }

/* ===== FLOATING WA ===== */
.wa-btn {
  position: fixed;
  bottom: 28px; right: 28px;
  width: 56px; height: 56px;
  background: #25D366; color: #fff;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 26px;
  box-shadow: 0 6px 24px rgba(37,211,102,0.4);
  z-index: 9990; transition: var(--transition);
  text-decoration: none;
}
.wa-btn:hover { transform: scale(1.1); box-shadow: 0 10px 32px rgba(37,211,102,0.6); }

.wa-ring {
  position: absolute; inset: -6px;
  border: 1.5px solid #25D366;
  border-radius: 50%;
  animation: ring-pulse 2.5s ease-out infinite;
}
@keyframes ring-pulse {
  0%   { transform: scale(1); opacity: 0.8; }
  100% { transform: scale(1.5); opacity: 0; }
}

.wa-tip {
  position: absolute;
  right: calc(100% + 10px);
  background: var(--dark);
  color: #fff;
  font-size: 12px; font-weight: 600;
  padding: 5px 12px; border-radius: 6px;
  white-space: nowrap;
  opacity: 0; pointer-events: none;
  transform: translateX(6px);
  transition: var(--transition);
  font-family: var(--font-ui);
}
.wa-btn:hover .wa-tip { opacity: 1; transform: translateX(0); }

/* ===== BACK TO TOP ===== */
.btt-btn {
  position: fixed;
  bottom: 96px; right: 28px;
  width: 40px; height: 40px;
  background: #fff;
  border: 1px solid var(--cream-darker);
  color: var(--dark); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 13px;
  z-index: 9989;
  opacity: 0; visibility: hidden;
  transform: translateY(8px);
  transition: var(--transition);
  box-shadow: var(--shadow-sm); cursor: pointer;
}
.btt-btn.show { opacity: 1; visibility: visible; transform: translateY(0); }
.btt-btn:hover { background: var(--green); color: #fff; border-color: var(--green); }


@media (max-width: 1024px) {
  .hero-inner      { grid-template-columns: 1fr; gap: 48px; }
  .hero-visual     { display: none; }
  .hero-title      { font-size: clamp(34px, 6vw, 52px); }
  .about-grid      { grid-template-columns: 1fr; gap: 48px; }
  .about-imgs      { height: 340px; }
  .process-grid    { grid-template-columns: repeat(2, 1fr); }
  .process-grid::before { display: none; }
  .footer-grid     { grid-template-columns: repeat(2, 1fr); gap: 40px; }
  .contact-grid    { grid-template-columns: repeat(3, 1fr); gap: 16px; }
  .our-client-grid { grid-template-columns: repeat(4, 1fr); gap: 18px; }
  .client-collab-grid { grid-template-columns: repeat(4, 1fr); gap: 20px; }
  .agency-partner-grid { grid-template-columns: repeat(4, 1fr); gap: 18px; }
  .partner-spotlight-grid, .partner-matrix-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .partner-trust-banner { grid-template-columns: repeat(3, 1fr); gap: 20px; padding: 28px 20px; }
  .services-creative-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .hero-stats-banner, .home-why-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-stat-card:nth-child(2) { border-right: none; }
}

@media (max-width: 768px) {
  html, body         { overflow-x: hidden; width: 100%; }
  .navbar            { padding: 12px 0; }
  .navbar.scrolled   { padding: 10px 0; }
  .logo-img          { max-height: 84px; }
  .navbar.scrolled .logo-img { max-height: 70px; }
  .hamburger         { display: flex; }
  .nav-mobile-header { display: flex; }
  .nav-links {
    position: fixed;
    top: 0; right: -100vw;
    width: 100vw; height: 100vh;
    max-width: 100vw;
    background: linear-gradient(135deg, var(--green-pale), var(--green-dark));
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0;
    gap: 15px;
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 99999; /* Highest z-index to cover WA btn */
  }
  .nav-links.open { right: 0; }
  .nav-link {
    width: auto;
    padding: 10px 20px;
    font-size: 26px;
    font-family: var(--font-head);
    font-weight: 300;
    border-bottom: none;
    color: rgba(255,255,255,0.8);
    text-transform: uppercase;
    letter-spacing: 2px;
  }
  .nav-link.active, .nav-link:hover { color: #fff; font-weight: 800; }
  .nav-link::after { display: none; }
  .nav-contact-btn-li { display: none !important; }
  .nav-mobile-socials { display: flex; gap: 30px; margin-top: 40px; }
  .nav-mobile-socials a { color: #fff; font-size: 24px; transition: transform 0.2s; }
  .nav-mobile-socials a:hover { transform: scale(1.2); }
  .nav-close-btn {
    display: block;
    position: absolute;
    top: 30px; right: 30px;
    background: none; border: none;
    color: #fff; font-size: 36px;
    cursor: pointer;
    z-index: 999999;
  }
  .nav-overlay { display: none !important; }
  .nav-link::after { display: none; }
  .btn-nav { width: 100%; margin: 20px 0 0; justify-content: center; }
  .our-client-grid { grid-template-columns: repeat(3, 1fr); gap: 16px; }
  .client-collab-grid { grid-template-columns: repeat(3, 1fr); gap: 16px; }
  .agency-partner-grid { grid-template-columns: repeat(3, 1fr); gap: 16px; }
  .partner-spotlight-grid { grid-template-columns: 1fr; gap: 18px; }
  .partner-matrix-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .partner-trust-banner { grid-template-columns: 1fr; gap: 24px; padding: 24px 20px; }
  .services-creative-grid { grid-template-columns: 1fr; gap: 20px; }
  .home-why-grid { grid-template-columns: 1fr; }
  .home-why-card p { text-align: left; }
  .cta-wrap { flex-direction: column; padding: 36px 24px; text-align: center; }
  .contact-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .contact-grid .contact-card:nth-child(5) { grid-column: span 2; max-width: 360px; margin: 0 auto; width: 100%; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); gap: 36px; }
}

@media (max-width: 540px) {
  .container { padding: 0 20px; }
  .page-section:not(#home) { padding-top: 150px !important; padding-bottom: 70px !important; }
  .hero { padding-top: 150px; padding-bottom: 70px; }
  .hero-eyebrow { font-size: 11px; margin-bottom: 14px; }
  .hero-title { font-size: clamp(30px, 8vw, 40px); line-height: 1.15; margin-bottom: 16px; }
  .hero-desc { font-size: 14.5px; margin-bottom: 20px; }
  .hero-jargon { font-size: 13px; padding: 8px 14px; margin-bottom: 24px; text-align: center; justify-content: center; width: 100%; }
  
  /* Make mobile grids neat and portrait-friendly without oversized elements */
  .our-client-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .client-collab-grid { grid-template-columns: repeat(3, 1fr); gap: 10px; }
  .agency-partner-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  
  .oc-card, .ap-card { border-radius: 16px; padding: 12px; }
  .collab-circle-card { padding: 8px; }
  
  .contact-grid, .footer-grid, .process-grid, .partner-matrix-grid { grid-template-columns: 1fr; }
  .contact-grid .contact-card:nth-child(5) { grid-column: span 1; max-width: 100%; }
  .hero-stats-banner, .svc-stats-bar { grid-template-columns: repeat(2, 1fr); gap: 14px; padding: 20px 14px; }
  .hero-stat-card { border-right: none; border-bottom: none; padding: 14px 8px; }
  .hero-stat-card:nth-child(odd) { border-right: 1px dashed var(--cream-darker); }
  .hero-stat-card:nth-child(1), .hero-stat-card:nth-child(2) { border-bottom: 1px dashed var(--cream-darker); }
  .hero-stat-val { font-size: 28px; }
  .hero-stat-val span.suffix { font-size: 20px; }
  .hero-stat-lbl { font-size: 12px; }
  .hero-actions { flex-direction: column; gap: 12px; }
  .hero-actions .btn-primary, .hero-actions .btn-outline { width: 100%; justify-content: center; }
  .about-imgs { height: 260px; }
  .f-socials { flex-wrap: wrap; }
  .footer-top { padding: 60px 0 40px; }
  .footer-bottom-inner { flex-direction: column; text-align: center; }
  .wa-btn { bottom: 20px; right: 20px; width: 50px; height: 50px; font-size: 24px; }
  .btt-btn { bottom: 80px; right: 20px; }
}

@media (max-width: 400px) {
  .client-collab-grid { grid-template-columns: repeat(3, 1fr); gap: 8px; }
  .our-client-grid { gap: 8px; }
  .agency-partner-grid { gap: 8px; }
  
  .oc-card, .ap-card { padding: 10px; }
  .collab-circle-card { padding: 6px; }
  
  .hero-stats-banner, .svc-stats-bar { grid-template-columns: 1fr; }
  .hero-stat-card:nth-child(odd) { border-right: none; }
  .hero-stat-card { border-bottom: 1px dashed var(--cream-darker); }
  .hero-stat-card:last-child { border-bottom: none; }
  .logo-img { max-height: 52px; }
}

/* ===== INTERACTIVE FAIRY (BUTTERFLY) ===== */
.interactive-fairy {
  position: fixed;
  top: 0; left: 0;
  width: 50px; height: 50px;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  will-change: transform;
}
.fairy-flipper {
  width: 100%; height: 100%;
  transition: transform 0.3s ease;
  animation: fairy-bob 1.5s ease-in-out infinite alternate;
}
.bf-wing {
  transform-origin: 50% 50%;
}
.bf-wing-left {
  animation: bf-flap-l 0.1s infinite alternate;
}
.bf-wing-right {
  animation: bf-flap-r 0.1s infinite alternate;
}

@keyframes bf-flap-l {
  0% { transform: scaleX(1) rotate(-10deg); }
  100% { transform: scaleX(0.2) rotate(-20deg); }
}
@keyframes bf-flap-r {
  0% { transform: scaleX(1) rotate(10deg); }
  100% { transform: scaleX(0.2) rotate(20deg); }
}
@keyframes fairy-bob {
  0% { transform: translateY(-4px) rotate(-3deg); }
  100% { transform: translateY(4px) rotate(3deg); }
}

@media (max-width: 768px) {
  .interactive-fairy { display: none; }
}

/* ===== AMBIENT SECTION ANIMATIONS ===== */
#home, #about, #services, #clients, #contact { position: relative; }
#services, #clients, #contact { overflow: hidden; }

/* 1. Home: Aurora Orbs (Replaces Sparkles) */
.anim-sparkle { display: none; }
#home::before, #home::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  z-index: 0;
  opacity: 0.55;
  animation: aurora-float 12s ease-in-out infinite alternate;
}
#home::before {
  width: 450px; height: 450px;
  background: rgba(74, 124, 63, 0.45); /* Green */
  top: -150px; left: -100px;
}
#home::after {
  width: 350px; height: 350px;
  background: rgba(245, 158, 11, 0.35); /* Gold */
  bottom: 0; right: -50px;
  animation-delay: -6s;
}
@keyframes aurora-float {
  100% { transform: translate(60px, 80px) scale(1.15); }
}

/* 2. About: 3D Orbit / Network Core */
.anim-orbit {
  position: absolute;
  bottom: -40px; right: -40px;
  z-index: 5;
  animation: orbit-spin 25s linear infinite;
}
.orbit-1 { transform-origin: 50px 50px; transform: rotateX(60deg) rotateY(0deg); }
.orbit-2 { transform-origin: 50px 50px; transform: rotateX(60deg) rotateY(60deg); }
.orbit-3 { transform-origin: 50px 50px; transform: rotateX(60deg) rotateY(120deg); }
.orbit-core { animation: core-pulse 2s infinite alternate; }
@keyframes orbit-spin { 100% { transform: rotate(360deg); } }
@keyframes core-pulse { 
  0% { transform: scale(0.8); fill: var(--green); } 
  100% { transform: scale(1.3); fill: #F59E0B; } 
}

/* 3. Services: Huge Glassmorphism Shapes */
.anim-geo {
  position: absolute;
  z-index: 0;
  pointer-events: none;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.geo-1 {
  width: 180px; height: 180px;
  background: linear-gradient(135deg, rgba(74, 124, 63, 0.15), rgba(74, 124, 63, 0.02));
  border: 1px solid rgba(74, 124, 63, 0.3);
  border-radius: 30px;
  top: 5%; left: -40px;
  animation: geo-spin-float 15s linear infinite;
}
.geo-2 {
  width: 140px; height: 140px;
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.15), rgba(245, 158, 11, 0.02));
  border: 1px solid rgba(245, 158, 11, 0.3);
  border-radius: 50%;
  bottom: 10%; right: -30px;
  animation: geo-bounce 8s ease-in-out infinite alternate;
}
@keyframes geo-spin-float {
  0% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-60px) rotate(180deg); }
  100% { transform: translateY(0) rotate(360deg); }
}
@keyframes geo-bounce {
  0% { transform: translateY(0) scale(1); }
  100% { transform: translateY(-50px) scale(1.1); }
}

/* 4. Clients: Flowing Liquid Waves */
.anim-waves {
  position: absolute;
  bottom: 0; left: 0;
  width: 100%; height: 60%;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}
.anim-waves svg {
  position: absolute; bottom: 0; width: 200%; height: 100%;
  animation: wave-slide 15s linear infinite alternate;
}
.wave-1 { animation: wave-bob 10s ease-in-out infinite alternate; }
.wave-2 { animation: wave-bob 15s ease-in-out infinite alternate-reverse; }
@keyframes wave-slide { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
@keyframes wave-bob { 0% { transform: translateY(0) scaleY(1); } 100% { transform: translateY(10px) scaleY(1.1); } }

/* 5. Contact: Glowing Network Lines (Grid) */
.anim-network { 
  position: absolute; inset: 0; z-index: 0; pointer-events: none; opacity: 0.25; overflow: hidden;
}
.net-line { position: absolute; background: linear-gradient(90deg, transparent, var(--green-pale), transparent); }
.line-h1 { top: 20%; left: 0; width: 100%; height: 1.5px; animation: scan-h 8s linear infinite; }
.line-h2 { top: 75%; left: 0; width: 100%; height: 1.5px; animation: scan-h 12s linear infinite reverse; }
.line-v1 { left: 15%; top: 0; height: 100%; width: 1.5px; background: linear-gradient(180deg, transparent, var(--green-pale), transparent); animation: scan-v 10s linear infinite; }
.line-v2 { left: 85%; top: 0; height: 100%; width: 1.5px; background: linear-gradient(180deg, transparent, var(--green-pale), transparent); animation: scan-v 14s linear infinite reverse; }
.net-dot { position: absolute; width: 10px; height: 10px; background: #F59E0B; border-radius: 50%; box-shadow: 0 0 20px #F59E0B, 0 0 40px #F59E0B; animation: dot-pulse 2s infinite alternate; }
.dot-1 { top: 20%; left: 15%; transform: translate(-50%, -50%); }
.dot-2 { top: 75%; left: 85%; transform: translate(-50%, -50%); }
@keyframes scan-h { 0% { transform: translateX(-100%); } 100% { transform: translateX(100%); } }
@keyframes scan-v { 0% { transform: translateY(-100%); } 100% { transform: translateY(100%); } }
@keyframes dot-pulse { 0% { opacity: 0.3; transform: translate(-50%, -50%) scale(0.8); } 100% { opacity: 1; transform: translate(-50%, -50%) scale(1.5); } }

/* Ensure content stays above massive background animations */
#home .container, #about .container, #services .container, #clients .container, #contact .container {
  position: relative;
  z-index: 2;
}

/* Fix Client Logo Sizing */
.client-logo-img {
  width: 90%;
  height: 55px;
  max-width: 100%;
  object-fit: contain;
  margin: 0 auto 6px auto;
}

/* Mobile-only Nav Elements (Hidden on Desktop) */
@media (min-width: 769px) {
  .nav-close-btn, .nav-mobile-socials { display: none !important; }
  .nav-contact-btn-li { display: block !important; }
}
