﻿/* ============================================================
   CROPIA – PREMIUM GLOSSY UI  v3
   Deep emerald · Liquid gold · Glass gloss
   ============================================================ */

/* ----------------------------------------------------------------
   DESIGN TOKENS
   ---------------------------------------------------------------- */
:root {
  /* Jewel palette */
  --emerald-950: #020c05;
  --emerald-900: #061408;
  --emerald-800: #0b2411;
  --emerald-700: #0f3a1c;
  --emerald-600: #145229;
  --emerald-500: #1a6b37;
  --emerald-400: #22934b;
  --emerald-300: #2db55e;
  --emerald-200: #57d488;

  --gold-950: #3a2200;
  --gold-800: #7a4e0a;
  --gold-600: #b07d18;
  --gold-500: #d4a842;
  --gold-400: #edc354;
  --gold-300: #f5d872;
  --gold-100: #fdf6dc;

  /* Alias tokens (legacy compat) */
  --green-900:  var(--emerald-900);
  --green-dark: var(--emerald-700);
  --green-mid:  var(--emerald-600);
  --green-light:var(--emerald-500);
  --green-400:  var(--emerald-400);
  --green-300:  var(--emerald-300);
  --gold:       var(--gold-500);
  --gold-light: var(--gold-400);
  --gold-100:   var(--gold-100);
  --cream:      #faf8f2;
  --white:      #ffffff;
  --gray-50:  #f8faf9;
  --gray-100: #f0f4f1;
  --gray-200: #dde6e0;
  --gray-300: #bfcfc4;
  --gray-500: #6b8070;
  --gray-700: #2d3d33;
  --text-dark: #0b1a10;
  --text-body: #253328;
  --text-muted: #6b8070;
  --gray-light: var(--gray-100);
  --gray-mid:   var(--gray-200);

  /* Glass */
  --glass-bg:       rgba(255,255,255,0.06);
  --glass-bg-light: rgba(255,255,255,0.12);
  --glass-border:   rgba(255,255,255,0.14);
  --glass-dark:     rgba(6,20,8,0.55);

  /* Gloss — physical shine layers */
  --gloss-top:    rgba(255,255,255,0.70);
  --gloss-mid:    rgba(255,255,255,0.16);
  --gloss-sheen:  linear-gradient(180deg, var(--gloss-top) 0%, var(--gloss-mid) 38%, transparent 100%);
  --gloss-inset:  inset 0 1px 0 rgba(255,255,255,0.85), inset 0 -1px 0 rgba(0,0,0,0.10);

  /* Shadows */
  --shadow-xs:    0 1px 2px rgba(0,0,0,0.05);
  --shadow-sm:    0 2px 8px rgba(0,0,0,0.06), 0 1px 3px rgba(0,0,0,0.04);
  --shadow-md:    0 8px 28px rgba(0,0,0,0.10), 0 2px 8px rgba(0,0,0,0.06);
  --shadow-lg:    0 20px 54px rgba(0,0,0,0.13), 0 6px 16px rgba(0,0,0,0.07);
  --shadow-xl:    0 36px 80px rgba(0,0,0,0.18), 0 12px 32px rgba(0,0,0,0.09);
  --shadow-2xl:   0 56px 120px rgba(0,0,0,0.24);
  --shadow-gold:  0 6px 28px rgba(212,168,66,0.45), 0 2px 8px rgba(212,168,66,0.3);
  --shadow-green: 0 6px 28px rgba(20,83,41,0.45), 0 2px 8px rgba(20,83,41,0.3);
  --glow-gold:    0 0 40px rgba(237,195,84,0.35), 0 0 80px rgba(212,168,66,0.15);
  --glow-green:   0 0 40px rgba(45,181,94,0.25), 0 0 80px rgba(26,107,55,0.12);

  /* Geometry */
  --radius-xs:   6px;
  --radius-sm:   10px;
  --radius-md:   16px;
  --radius-lg:   24px;
  --radius-xl:   36px;
  --radius-2xl:  48px;
  --radius-full: 9999px;

  /* Motion */
  --ease:        cubic-bezier(0.22,1,0.36,1);
  --ease-spring: cubic-bezier(0.34,1.56,0.64,1);
  --ease-in:     cubic-bezier(0.4,0,1,1);
  --t-fast:  160ms cubic-bezier(0.22,1,0.36,1);
  --t-base:  280ms cubic-bezier(0.22,1,0.36,1);
  --t-slow:  480ms cubic-bezier(0.22,1,0.36,1);
  --t-xslow: 700ms cubic-bezier(0.22,1,0.36,1);
}

/* ----------------------------------------------------------------
   BASE
   ---------------------------------------------------------------- */
html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', 'Poppins', sans-serif;
  color: var(--text-dark);
  background: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  line-height: 1.18;
}

a { text-decoration: none; }
img { max-width: 100%; }

/* ----------------------------------------------------------------
   UTILITY
   ---------------------------------------------------------------- */
.text-gold   { color: var(--gold) !important; }
.text-green  { color: var(--emerald-500) !important; }
.bg-green    { background-color: var(--emerald-700) !important; }
.bg-gold     { background-color: var(--gold) !important; }
.bg-cream    { background-color: var(--cream) !important; }
.border-gold { border-color: var(--gold) !important; }

.section-pad { padding: 100px 0; }

.section-title {
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  line-height: 1.14;
  letter-spacing: -0.03em;
}

.section-subtitle {
  font-family: 'Poppins', sans-serif;
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 580px;
  margin: 0 auto;
  line-height: 1.78;
}

/* Gold divider line */
.gold-line {
  display: block;
  width: 40px;
  height: 3px;
  background: linear-gradient(90deg, var(--gold-600), var(--gold-300));
  border-radius: var(--radius-full);
  margin: 14px auto 26px;
  box-shadow: 0 0 12px rgba(212,168,66,0.5);
}

/* Overline label */
.overline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.70rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-500);
  margin-bottom: 14px;
}
.overline::before,
.overline::after {
  content: '';
  display: block;
  width: 28px;
  height: 1.5px;
  background: linear-gradient(90deg, var(--gold-600), var(--gold-300));
  border-radius: var(--radius-full);
}

/* ================================================================
   NAVBAR  — frosted jewel glass
   ================================================================ */
.navbar {
  padding: 0;
  transition: background var(--t-slow), box-shadow var(--t-slow);
  background: transparent !important;
}

.navbar:not(.scrolled) {
  background: linear-gradient(180deg,
    rgba(2,12,5,0.85) 0%,
    rgba(2,12,5,0.2) 100%) !important;
  backdrop-filter: blur(16px) saturate(1.3);
  -webkit-backdrop-filter: blur(16px) saturate(1.3);
}

.navbar.scrolled {
  background: rgba(255,255,255,0.97) !important;
  backdrop-filter: blur(20px) saturate(1.5);
  -webkit-backdrop-filter: blur(20px) saturate(1.5);
  box-shadow: 0 2px 28px rgba(0,0,0,0.09), 0 1px 0 rgba(0,0,0,0.04);
}
/* Overrides on white navbar */
.navbar.scrolled .navbar-nav .nav-link {
  color: var(--emerald-800) !important;
}
.navbar.scrolled .navbar-nav .nav-link:hover,
.navbar.scrolled .navbar-nav .nav-link.active {
  color: var(--emerald-500) !important;
  background: rgba(20,83,41,0.07) !important;
}
.navbar.scrolled .navbar-brand .brand-name {
  background: linear-gradient(135deg, var(--emerald-700) 0%, var(--emerald-500) 50%, var(--gold-500) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.navbar.scrolled .navbar-brand .brand-tagline {
  color: var(--emerald-500);
  opacity: 0.85;
}
.navbar.scrolled .navbar-toggler {
  border-color: rgba(0,0,0,0.12);
  background: rgba(0,0,0,0.04);
}
.navbar.scrolled .navbar-toggler-icon { filter: none; }

.navbar-brand img { height: 46px; width: auto; }
.navbar-brand .brand-text { line-height: 1.1; }
.navbar-brand .brand-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  font-weight: 700;
  background: linear-gradient(135deg, rgba(255,255,255,0.95) 0%, var(--gold-200,#f9e89a) 55%, var(--gold-300) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.navbar-brand .brand-tagline {
  font-size: 0.60rem;
  color: var(--gold-400);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  opacity: 0.9;
}

.navbar-nav .nav-link {
  color: rgba(255,255,255,0.80) !important;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  padding: 9px 15px !important;
  border-radius: var(--radius-sm);
  transition: color var(--t-base), background var(--t-base);
  position: relative;
}
.navbar-nav .nav-link::after {
  content: '';
  position: absolute;
  bottom: 5px;
  left: 15px; right: 15px;
  height: 1.5px;
  background: linear-gradient(90deg, var(--gold-600), var(--gold-300));
  border-radius: var(--radius-full);
  transform: scaleX(0);
  transition: transform var(--t-base);
  box-shadow: 0 0 6px rgba(212,168,66,0.6);
}
.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: var(--white) !important;
  background: rgba(255,255,255,0.07);
}
.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after { transform: scaleX(1); }

.navbar-toggler {
  border: 1px solid var(--glass-border);
  background: var(--glass-bg);
  border-radius: var(--radius-sm);
  padding: 6px 10px;
}
.navbar-toggler-icon { filter: invert(1); }

/* ---- Navbar CTA pill — glossy gold ---- */
.btn-nav-cta {
  position: relative !important;
  overflow: hidden !important;
  background: linear-gradient(
    180deg,
    var(--gold-300) 0%,
    var(--gold-500) 42%,
    var(--gold-800) 58%,
    var(--gold-500) 100%
  ) !important;
  color: var(--emerald-900) !important;
  font-weight: 700 !important;
  border-radius: var(--radius-full) !important;
  padding: 8px 26px !important;
  font-size: 0.83rem !important;
  box-shadow:
    var(--gloss-inset),
    var(--shadow-gold),
    var(--glow-gold) !important;
  transition: transform var(--t-base), box-shadow var(--t-base), filter var(--t-base) !important;
  border: none !important;
}
.btn-nav-cta::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 50%;
  background: var(--gloss-sheen);
  border-radius: inherit;
  pointer-events: none;
}
.btn-nav-cta:hover {
  transform: translateY(-2px) !important;
  filter: brightness(1.06) !important;
  box-shadow:
    var(--gloss-inset),
    0 14px 44px rgba(212,168,66,0.6),
    var(--glow-gold) !important;
}

/* ================================================================
   BUTTONS — physical gloss
   ================================================================ */

/* ------ Primary gold glossy button ------ */
.btn-primary-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(
    180deg,
    var(--gold-300) 0%,
    var(--gold-500) 40%,
    var(--gold-800) 58%,
    var(--gold-500) 100%
  );
  color: var(--emerald-900);
  font-weight: 700;
  border: none;
  border-radius: var(--radius-full);
  padding: 15px 42px;
  font-size: 0.96rem;
  letter-spacing: 0.01em;
  box-shadow:
    var(--gloss-inset),
    var(--shadow-gold),
    var(--glow-gold);
  transition: transform var(--t-base), box-shadow var(--t-base), filter var(--t-base);
}
.btn-primary-cta::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 50%;
  background: var(--gloss-sheen);
  border-radius: inherit;
  pointer-events: none;
}
/* Shimmer sweep */
.btn-primary-cta::after {
  content: '';
  position: absolute;
  top: 0; left: -100%; bottom: 0;
  width: 60%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
  transform: skewX(-20deg);
  transition: left 0.6s var(--ease);
}
.btn-primary-cta:hover {
  color: var(--emerald-900);
  transform: translateY(-3px);
  filter: brightness(1.07);
  box-shadow:
    var(--gloss-inset),
    0 16px 48px rgba(212,168,66,0.6),
    var(--glow-gold);
}
.btn-primary-cta:hover::after { left: 160%; }

/* ------ Outline glass button ------ */
.btn-outline-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  position: relative;
  overflow: hidden;
  background: rgba(255,255,255,0.08);
  color: var(--white);
  font-weight: 600;
  border-radius: var(--radius-full);
  padding: 14px 40px;
  font-size: 0.96rem;
  transition: background var(--t-base), border-color var(--t-base), transform var(--t-base), box-shadow var(--t-base);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.22);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.18), inset 0 -1px 0 rgba(0,0,0,0.18);
}
.btn-outline-cta::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 50%;
  background: linear-gradient(180deg, rgba(255,255,255,0.10) 0%, transparent 100%);
  border-radius: inherit;
  pointer-events: none;
}
.btn-outline-cta:hover {
  background: rgba(255,255,255,0.14);
  border-color: rgba(255,255,255,0.45);
  color: var(--white);
  transform: translateY(-3px);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.28),
    0 12px 36px rgba(255,255,255,0.1);
}

/* ------ Emerald glossy button ------ */
.btn-green-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(
    180deg,
    var(--emerald-300) 0%,
    var(--emerald-500) 38%,
    var(--emerald-700) 58%,
    var(--emerald-500) 100%
  );
  color: var(--white);
  font-weight: 700;
  border: none;
  border-radius: var(--radius-full);
  padding: 15px 42px;
  font-size: 0.96rem;
  letter-spacing: 0.01em;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.55),
    inset 0 -1px 0 rgba(0,0,0,0.22),
    var(--shadow-green),
    var(--glow-green);
  transition: transform var(--t-base), box-shadow var(--t-base), filter var(--t-base);
}
.btn-green-cta::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 50%;
  background: linear-gradient(180deg, rgba(255,255,255,0.22) 0%, transparent 100%);
  border-radius: inherit;
  pointer-events: none;
}
.btn-green-cta::after {
  content: '';
  position: absolute;
  top: 0; left: -100%; bottom: 0;
  width: 60%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
  transform: skewX(-20deg);
  transition: left 0.6s var(--ease);
}
.btn-green-cta:hover {
  color: var(--white);
  transform: translateY(-3px);
  filter: brightness(1.08);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.55),
    inset 0 -1px 0 rgba(0,0,0,0.22),
    0 16px 48px rgba(20,83,41,0.55),
    var(--glow-green);
}
.btn-green-cta:hover::after { left: 160%; }

/* ================================================================
   HERO — ultra-premium dark emerald
   ================================================================ */
.hero-section {
  min-height: 100vh;
  padding-top: 80px;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(ellipse 60% 70% at 10% 65%, rgba(45,181,94,0.32) 0%, transparent 55%),
    radial-gradient(ellipse 50% 55% at 88% 15%, rgba(237,195,84,0.24) 0%, transparent 48%),
    radial-gradient(ellipse 40% 50% at 60% 88%, rgba(11,36,17,0.45) 0%, transparent 60%),
    linear-gradient(148deg, var(--emerald-800) 0%, var(--emerald-600) 55%, var(--emerald-500) 100%);
}

/* Floating aurora blobs */
.hero-section::before {
  content: '';
  position: absolute;
  width: 700px; height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle,
    rgba(34,147,75,0.16) 0%,
    rgba(45,181,94,0.08) 40%,
    transparent 70%);
  top: -150px; left: -200px;
  animation: auroraA 9s ease-in-out infinite;
  pointer-events: none;
}
.hero-section::after {
  content: '';
  position: absolute;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle,
    rgba(212,168,66,0.14) 0%,
    rgba(237,195,84,0.07) 40%,
    transparent 70%);
  bottom: -100px; right: -120px;
  animation: auroraA 11s ease-in-out infinite reverse;
  pointer-events: none;
}
@keyframes auroraA {
  0%, 100% { transform: translate(0,0) scale(1); }
  33%       { transform: translate(60px,-40px) scale(1.08); }
  66%       { transform: translate(-30px, 30px) scale(0.94); }
}

.hero-grain {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 300 300' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='g'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23g)' opacity='0.035'/%3E%3C/svg%3E");
  pointer-events: none;
  opacity: 0.6;
}

.hero-section .hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: rgba(212,168,66,0.10);
  border: 1px solid rgba(212,168,66,0.32);
  color: var(--gold-300);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 8px 20px;
  border-radius: var(--radius-full);
  margin-bottom: 26px;
  backdrop-filter: blur(10px);
  box-shadow: 0 0 20px rgba(212,168,66,0.12), inset 0 1px 0 rgba(255,255,255,0.08);
}
.hero-section .hero-badge i { font-size: 0.9rem; color: var(--gold-400); }

.hero-section h1 {
  font-size: clamp(2.5rem, 6.5vw, 4.8rem);
  color: var(--white);
  line-height: 1.08;
  letter-spacing: -0.04em;
  margin-bottom: 26px;
}
.hero-section h1 span {
  background: linear-gradient(135deg,
    var(--gold-600) 0%,
    var(--gold-400) 30%,
    var(--gold-300) 55%,
    #fff8b0 75%,
    var(--gold-400) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 0 24px rgba(237,195,84,0.4));
}

.hero-section .hero-lead {
  font-size: 1.08rem;
  color: rgba(255,255,255,0.74);
  line-height: 1.82;
  max-width: 520px;
  margin-bottom: 44px;
}

/* Logo visual area */
.hero-visual { position: relative; text-align: center; }

/* Multiple glow rings */
.hero-visual::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  width: 360px; height: 360px;
  border-radius: 50%;
  border: 1px solid rgba(212,168,66,0.25);
  box-shadow: 0 0 0 1px rgba(212,168,66,0.08) inset;
  animation: ringBreath 3.5s ease-in-out infinite;
}
.hero-visual::after {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  width: 460px; height: 460px;
  border-radius: 50%;
  border: 1px solid rgba(212,168,66,0.12);
  animation: ringBreath 3.5s ease-in-out infinite 1.75s;
}
@keyframes ringBreath {
  0%, 100% { transform: translate(-50%,-50%) scale(1);    opacity: 0.8; }
  50%       { transform: translate(-50%,-50%) scale(1.05); opacity: 0.35; }
}

.hero-visual .logo-glow {
  width: 270px;
  filter:
    drop-shadow(0 0 32px rgba(212,168,66,0.65))
    drop-shadow(0 0 80px rgba(212,168,66,0.25))
    drop-shadow(0 20px 50px rgba(0,0,0,0.5));
  animation: logoFloat 5.5s ease-in-out infinite;
  position: relative;
  z-index: 1;
}
@keyframes logoFloat {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-20px); }
}

.hero-scroll-hint {
  position: absolute;
  bottom: 38px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,0.38);
  font-size: 0.68rem;
  text-align: center;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  white-space: nowrap;
}
.hero-scroll-hint .scroll-chevron {
  display: block;
  width: 22px; height: 22px;
  margin: 0 auto 10px;
  border-bottom: 1.5px solid rgba(255,255,255,0.28);
  border-right: 1.5px solid rgba(255,255,255,0.28);
  transform: rotate(45deg);
  animation: chevronBounce 2.2s ease-in-out infinite;
}
@keyframes chevronBounce {
  0%, 100% { transform: rotate(45deg) translateY(0);   opacity: 0.35; }
  50%       { transform: rotate(45deg) translateY(7px); opacity: 0.85; }
}

/* ================================================================
   TRUST BAR — light pill row
   ================================================================ */
.trust-bar {
  background: #ffffff;
  border-top: 1px solid var(--gray-100);
  border-bottom: 1px solid var(--gray-200);
  padding: 15px 0;
  box-shadow: 0 2px 14px rgba(0,0,0,0.04);
}
.trust-bar .trust-text {
  color: var(--text-muted);
  font-size: 0.70rem;
  font-weight: 600;
  letter-spacing: 0.10em;
  text-transform: uppercase;
}
.trust-bar .trust-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  color: var(--text-body);
  font-size: 0.81rem;
  font-weight: 500;
  padding: 6px 18px;
  border-radius: var(--radius-full);
  transition: background var(--t-base), border-color var(--t-base), box-shadow var(--t-base), color var(--t-base);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.8), var(--shadow-xs);
}
.trust-bar .trust-item:hover {
  background: linear-gradient(135deg, rgba(20,83,41,0.08), rgba(34,147,75,0.04));
  border-color: rgba(34,147,75,0.28);
  color: var(--emerald-700);
  box-shadow: 0 4px 14px rgba(20,83,41,0.10), inset 0 1px 0 rgba(255,255,255,0.9);
}
.trust-bar .trust-item i { color: var(--emerald-500); font-size: 0.92rem; }

/* ================================================================
   ABOUT SNAPSHOT — glossy stat boxes
   ================================================================ */
.about-snapshot { background: var(--gray-50); }

.about-snapshot .stat-box {
  text-align: center;
  padding: 40px 24px 32px;
  border-radius: var(--radius-lg);
  background: var(--white);
  position: relative;
  overflow: hidden;
  transition: transform var(--t-base), box-shadow var(--t-base);
  box-shadow:
    var(--gloss-inset),
    var(--shadow-md);
  border: 1px solid rgba(0,0,0,0.05);
}
/* Gloss sheen overlay */
.about-snapshot .stat-box::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 50%;
  background: var(--gloss-sheen);
  pointer-events: none;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}
/* Gradient top cap */
.about-snapshot .stat-box::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--emerald-500), var(--gold-400), var(--emerald-300));
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  box-shadow: 0 0 12px rgba(212,168,66,0.4);
}
.about-snapshot .stat-box:hover {
  transform: translateY(-10px);
  box-shadow:
    var(--gloss-inset),
    var(--shadow-xl),
    var(--glow-green);
}
.about-snapshot .stat-number {
  font-size: 3rem;
  font-weight: 800;
  font-family: 'Playfair Display', serif;
  background: linear-gradient(145deg, var(--emerald-600) 0%, var(--emerald-400) 60%, var(--emerald-300) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 8px;
  filter: drop-shadow(0 0 12px rgba(34,147,75,0.25));
}
.about-snapshot .stat-label {
  font-size: 0.80rem;
  color: var(--text-muted);
  font-weight: 500;
  letter-spacing: 0.03em;
}

/* ================================================================
   PILLAR CARDS — glossy premium cards
   ================================================================ */
.pillar-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 46px 38px;
  height: 100%;
  position: relative;
  overflow: hidden;
  transition: transform var(--t-slow), box-shadow var(--t-slow);
  box-shadow:
    var(--gloss-inset),
    var(--shadow-md),
    0 0 0 1px rgba(0,0,0,0.04);
}
/* Gloss sheen top half */
.pillar-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 48%;
  background: var(--gloss-sheen);
  border-radius: var(--radius-xl) var(--radius-xl) 0 0;
  pointer-events: none;
  z-index: 1;
}
/* Animated gradient border on hover */
.pillar-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1.5px;
  background: conic-gradient(
    from 180deg,
    var(--emerald-400),
    var(--gold-400),
    var(--emerald-300),
    var(--gold-600),
    var(--emerald-400)
  );
  -webkit-mask: linear-gradient(#fff 0 0) content-box,
                linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity var(--t-slow);
  animation: spinBorder 4s linear infinite paused;
}
.pillar-card:hover {
  transform: translateY(-12px);
  box-shadow:
    var(--gloss-inset),
    var(--shadow-xl),
    var(--glow-green);
}
.pillar-card:hover::after {
  opacity: 1;
  animation-play-state: running;
}
@keyframes spinBorder {
  to { --border-angle: 360deg; }
}

.pillar-card .pillar-icon {
  width: 72px;
  height: 72px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin-bottom: 28px;
  position: relative;
  z-index: 2;
  box-shadow: var(--gloss-inset), var(--shadow-sm);
}
.pillar-card .pillar-icon.green {
  background: linear-gradient(145deg, rgba(34,147,75,0.18), rgba(20,83,41,0.08));
  color: var(--emerald-400);
  border: 1px solid rgba(34,147,75,0.22);
}
.pillar-card .pillar-icon.gold {
  background: linear-gradient(145deg, rgba(237,195,84,0.18), rgba(176,125,24,0.08));
  color: var(--gold-500);
  border: 1px solid rgba(212,168,66,0.22);
}
.pillar-card .pillar-icon.teal {
  background: linear-gradient(145deg, rgba(20,150,150,0.18), rgba(10,100,100,0.08));
  color: #1aabab;
  border: 1px solid rgba(20,150,150,0.22);
}
.pillar-card h4 {
  font-size: 1.28rem;
  margin-bottom: 12px;
  color: var(--text-dark);
  position: relative;
  z-index: 2;
}
.pillar-card p, .pillar-card ul {
  position: relative;
  z-index: 2;
}

/* ================================================================
   WHY CROPIA — glass feature items on dark bg
   ================================================================ */
.why-cropia {
  background:
    radial-gradient(ellipse 70% 80% at 90% 50%, rgba(34,147,75,0.08) 0%, transparent 60%),
    linear-gradient(160deg, var(--gray-50) 0%, var(--white) 100%);
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 20px 18px;
  border-radius: var(--radius-md);
  margin-bottom: 6px;
  transition: background var(--t-base), transform var(--t-base), box-shadow var(--t-base);
  border: 1px solid transparent;
}
.feature-item:hover {
  background: var(--white);
  border-color: rgba(0,0,0,0.06);
  box-shadow: var(--shadow-md);
  transform: translateX(4px);
}
.feature-item .fi-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  background: linear-gradient(145deg, rgba(22,107,55,0.12), rgba(34,147,75,0.06));
  border: 1px solid rgba(22,107,55,0.16);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--emerald-400);
  font-size: 1.15rem;
  box-shadow: var(--gloss-inset), var(--shadow-xs);
  transition: transform var(--t-base);
}
.feature-item:hover .fi-icon { transform: scale(1.08); }
.feature-item h6 { margin: 0 0 3px; font-size: 0.97rem; font-family: 'Poppins', sans-serif; font-weight: 600; }
.feature-item p  { margin: 0; font-size: 0.84rem; color: var(--text-muted); line-height: 1.65; }

/* ================================================================
   HOW WE WORK — premium step cards
   ================================================================ */
.step-card {
  text-align: center;
  padding: 38px 24px;
  position: relative;
}
.step-card .step-num {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(
    180deg,
    var(--emerald-300) 0%,
    var(--emerald-500) 40%,
    var(--emerald-700) 60%,
    var(--emerald-500) 100%
  );
  color: var(--white);
  font-size: 1.5rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 22px;
  font-family: 'Playfair Display', serif;
  box-shadow:
    inset 0 2px 0 rgba(255,255,255,0.5),
    inset 0 -2px 0 rgba(0,0,0,0.25),
    var(--shadow-green),
    var(--glow-green);
  position: relative;
}
.step-card .step-num::after {
  content: '';
  position: absolute;
  inset: -5px;
  border-radius: 50%;
  border: 1.5px solid rgba(212,168,66,0.35);
  box-shadow: 0 0 16px rgba(212,168,66,0.2);
}
.step-connector {
  position: absolute;
  top: 70px;
  right: -50%;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--emerald-400), var(--gold-400));
  opacity: 0.35;
}

/* ================================================================
   GLOBAL SECTION — luminous dark
   ================================================================ */
.global-section {
  background:
    radial-gradient(ellipse 60% 70% at 8% 55%, rgba(34,147,75,0.15) 0%, transparent 55%),
    radial-gradient(ellipse 50% 50% at 92% 20%, rgba(212,168,66,0.10) 0%, transparent 50%),
    linear-gradient(150deg, var(--emerald-800) 0%, var(--emerald-700) 55%, var(--emerald-600) 100%);
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.global-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 80%, rgba(34,147,75,0.06) 0%, transparent 40%),
    radial-gradient(circle at 80% 20%, rgba(212,168,66,0.06) 0%, transparent 40%);
  pointer-events: none;
}
/* Decorative large ghost text */
.global-section .section-deco {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  font-family: 'Playfair Display', serif;
  font-size: clamp(8rem, 18vw, 20rem);
  font-weight: 800;
  color: rgba(255,255,255,0.025);
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
  letter-spacing: -0.05em;
  z-index: 0;
}
.global-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-full);
  padding: 10px 24px;
  color: rgba(255,255,255,0.88);
  font-size: 0.9rem;
  margin-bottom: 14px;
  backdrop-filter: blur(10px);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.08);
}
.global-badge i { color: var(--gold-400); }

/* ================================================================
   CTA BANNER — rich gold gloss
   ================================================================ */
.cta-banner {
  background: linear-gradient(
    148deg,
    var(--gold-800) 0%,
    var(--gold-600) 25%,
    var(--gold-500) 50%,
    var(--gold-400) 72%,
    var(--gold-300) 100%
  );
  padding: 88px 0;
  position: relative;
  overflow: hidden;
  box-shadow: inset 0 2px 0 rgba(255,255,255,0.35), inset 0 -2px 0 rgba(0,0,0,0.2);
}
.cta-banner::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 55%;
  background: linear-gradient(180deg, rgba(255,255,255,0.18) 0%, transparent 100%);
  pointer-events: none;
}
.cta-banner::after {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='40' cy='40' r='1.5' fill='rgba(255,255,255,0.08)'/%3E%3C/svg%3E");
  pointer-events: none;
}
.cta-banner h2 {
  color: var(--emerald-900);
  letter-spacing: -0.03em;
  text-shadow: 0 1px 0 rgba(255,255,255,0.4);
}
.cta-banner p { color: rgba(8,28,14,0.78); }

/* ================================================================
   PAGE HERO (inner pages)
   ================================================================ */
.page-hero {
  background:
    radial-gradient(ellipse 55% 80% at 0% 60%, rgba(34,147,75,0.18) 0%, transparent 55%),
    radial-gradient(ellipse 40% 60% at 100% 10%, rgba(212,168,66,0.12) 0%, transparent 50%),
    linear-gradient(148deg, var(--emerald-700) 0%, var(--emerald-600) 55%, var(--emerald-500) 100%);
  padding: 116px 0 76px;
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg viewBox='0 0 300 300' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='g'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23g)' opacity='0.025'/%3E%3C/svg%3E");
  pointer-events: none;
}
.page-hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(212,168,66,0.6), transparent);
  box-shadow: 0 0 12px rgba(212,168,66,0.3);
}
.page-hero h1 {
  color: var(--white);
  font-size: clamp(2.2rem, 5.5vw, 3.6rem);
  letter-spacing: -0.04em;
}
.page-hero .breadcrumb-item,
.page-hero .breadcrumb-item a { color: rgba(255,255,255,0.55); font-size: 0.85rem; }
.page-hero .breadcrumb-item.active { color: var(--gold-300); }

/* ================================================================
   VALUE CARDS — glossy emerald-left accent
   ================================================================ */
.value-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 34px 28px;
  height: 100%;
  position: relative;
  overflow: hidden;
  transition: transform var(--t-base), box-shadow var(--t-base);
  box-shadow: var(--gloss-inset), var(--shadow-sm), 0 0 0 1px rgba(0,0,0,0.04);
  border-left: 4px solid transparent;
  background-clip: padding-box;
  /* Fake gradient left border */
  background-image: linear-gradient(var(--white), var(--white)),
    linear-gradient(180deg, var(--emerald-300), var(--gold-400));
  background-origin: border-box;
}
.value-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 45%;
  background: var(--gloss-sheen);
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  pointer-events: none;
}
.value-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--gloss-inset), var(--shadow-xl), var(--glow-green);
}
.value-card h5 {
  color: var(--emerald-700);
  font-size: 1.05rem;
  position: relative;
}

/* ================================================================
   SOLUTION TABS — premium sidebar
   ================================================================ */
.sol-tab-btn {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  padding: 20px 22px;
  width: 100%;
  text-align: left;
  font-weight: 600;
  font-size: 0.93rem;
  color: var(--text-dark);
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: all var(--t-base);
  box-shadow: var(--gloss-inset), var(--shadow-xs);
}
/* Top gloss sheen */
.sol-tab-btn::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 50%;
  background: var(--gloss-sheen);
  border-radius: var(--radius-md) var(--radius-md) 0 0;
  pointer-events: none;
  transition: opacity var(--t-base);
}
/* Left accent bar */
.sol-tab-btn::after {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 4px;
  background: linear-gradient(180deg, var(--emerald-300), var(--gold-400));
  border-radius: 0 3px 3px 0;
  box-shadow: 2px 0 8px rgba(34,147,75,0.3);
  transform: scaleY(0);
  transition: transform var(--t-base);
}
.sol-tab-btn.active,
.sol-tab-btn:hover {
  background: linear-gradient(
    180deg,
    var(--emerald-600) 0%,
    var(--emerald-700) 42%,
    var(--emerald-800) 58%,
    var(--emerald-700) 100%
  );
  border-color: var(--emerald-700);
  color: var(--white);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.2),
    inset 0 -1px 0 rgba(0,0,0,0.25),
    var(--shadow-green),
    var(--glow-green);
}
.sol-tab-btn.active::before,
.sol-tab-btn:hover::before {
  background: linear-gradient(180deg, rgba(255,255,255,0.22) 0%, transparent 100%);
}
.sol-tab-btn.active::after,
.sol-tab-btn:hover::after {
  background: linear-gradient(180deg, var(--gold-300), var(--gold-500));
  box-shadow: 2px 0 12px rgba(212,168,66,0.45);
  transform: scaleY(1);
}
.sol-tab-btn .sol-icon { font-size: 1.5rem; margin-right: 12px; }

.sol-content { display: none; }
.sol-content.active {
  display: block;
  animation: fadeSlideUp 0.38s var(--ease) both;
}
@keyframes fadeSlideUp {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}

.benefit-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: linear-gradient(145deg, rgba(20,83,41,0.08), rgba(34,147,75,0.05));
  border: 1px solid rgba(20,83,41,0.14);
  color: var(--emerald-700);
  font-size: 0.79rem;
  font-weight: 600;
  padding: 6px 16px;
  border-radius: var(--radius-full);
  margin: 4px;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.6);
  transition: background var(--t-fast), box-shadow var(--t-fast), transform var(--t-fast);
}
.benefit-pill:hover {
  background: linear-gradient(145deg, rgba(20,83,41,0.15), rgba(34,147,75,0.1));
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.8), 0 3px 10px rgba(20,83,41,0.12);
  transform: translateY(-1px);
}
.benefit-pill i { color: var(--emerald-400); }

/* ================================================================
   PRODUCT CARDS — glossy showcase cards
   ================================================================ */
.product-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  overflow: hidden;
  height: 100%;
  position: relative;
  transition: transform var(--t-slow), box-shadow var(--t-slow);
  box-shadow: var(--gloss-inset), var(--shadow-md), 0 0 0 1px rgba(0,0,0,0.04);
}
.product-card:hover {
  transform: translateY(-12px);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.85),
    var(--shadow-2xl),
    var(--glow-green);
}
.product-card .pc-img { height: 200px; object-fit: cover; width: 100%; }
.product-card .pc-img-placeholder {
  height: 200px;
  background: linear-gradient(
    145deg,
    var(--emerald-800) 0%,
    var(--emerald-600) 50%,
    var(--emerald-400) 100%
  );
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3.5rem;
  position: relative;
  overflow: hidden;
}
/* Gloss on image placeholder */
.product-card .pc-img-placeholder::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 50%;
  background: linear-gradient(180deg, rgba(255,255,255,0.14) 0%, transparent 100%);
  pointer-events: none;
}
.product-card .pc-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: linear-gradient(180deg, var(--gold-300) 0%, var(--gold-500) 45%, var(--gold-800) 55%, var(--gold-500) 100%);
  color: var(--emerald-900);
  font-size: 0.69rem;
  font-weight: 700;
  padding: 4px 14px;
  border-radius: var(--radius-full);
  text-transform: uppercase;
  letter-spacing: 0.07em;
  box-shadow: var(--gloss-inset), var(--shadow-gold);
}
.product-card .pc-body { padding: 24px; }
.product-card .pc-body h5 { font-size: 1.04rem; margin-bottom: 8px; }
.product-card .pc-spec { font-size: 0.8rem; color: var(--text-muted); margin-bottom: 3px; }
.product-card .pc-spec span { color: var(--text-dark); font-weight: 600; }

/* ================================================================
   FILTER BAR — glossy control surface
   ================================================================ */
.filter-bar {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 24px 28px;
  margin-bottom: 40px;
  box-shadow: var(--gloss-inset), var(--shadow-md), 0 0 0 1px rgba(0,0,0,0.04);
  position: relative;
  overflow: hidden;
}
.filter-bar::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 50%;
  background: var(--gloss-sheen);
  pointer-events: none;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}
.filter-bar .form-select,
.filter-bar .form-control {
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--gray-200);
  font-size: 0.88rem;
  padding: 10px 14px;
  background-color: var(--gray-50);
  transition: border-color var(--t-base), box-shadow var(--t-base), background var(--t-base);
}
.filter-bar .form-select:focus,
.filter-bar .form-control:focus {
  border-color: var(--emerald-400);
  box-shadow: 0 0 0 3px rgba(34,147,75,0.14);
  background: var(--white);
}

/* ================================================================
   INDUSTRY CARDS — glossy showcase
   ================================================================ */
.industry-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 42px 28px;
  text-align: center;
  height: 100%;
  position: relative;
  overflow: hidden;
  transition: transform var(--t-slow), box-shadow var(--t-slow);
  box-shadow: var(--gloss-inset), var(--shadow-sm), 0 0 0 1px rgba(0,0,0,0.04);
}
/* Gloss overlay */
.industry-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 50%;
  background: var(--gloss-sheen);
  border-radius: var(--radius-xl) var(--radius-xl) 0 0;
  pointer-events: none;
}
/* Bottom gradient bar */
.industry-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--emerald-400), var(--gold-400), var(--emerald-300));
  box-shadow: 0 0 12px rgba(212,168,66,0.35);
  transform: scaleX(0);
  transition: transform var(--t-slow);
  border-radius: 0 0 var(--radius-xl) var(--radius-xl);
}
.industry-card:hover {
  transform: translateY(-10px);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.85),
    var(--shadow-xl),
    var(--glow-green);
}
.industry-card:hover::after { transform: scaleX(1); }
.industry-card .ind-icon {
  font-size: 3rem;
  margin-bottom: 18px;
  display: block;
  transition: transform var(--t-base), filter var(--t-base);
  position: relative;
  z-index: 1;
}
.industry-card:hover .ind-icon {
  transform: scale(1.15) translateY(-3px);
  filter: drop-shadow(0 8px 16px rgba(34,147,75,0.3));
}

/* ================================================================
   CONTACT SECTION — rich jewel card + glossy form
   ================================================================ */
.contact-card {
  background: linear-gradient(
    155deg,
    var(--emerald-700) 0%,
    var(--emerald-800) 50%,
    var(--emerald-900) 100%
  );
  color: var(--white);
  border-radius: var(--radius-xl);
  padding: 46px 40px;
  height: 100%;
  position: relative;
  overflow: hidden;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.18),
    inset 0 -1px 0 rgba(0,0,0,0.3),
    var(--shadow-xl),
    var(--glow-green);
}
.contact-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 50%;
  background: linear-gradient(180deg, rgba(255,255,255,0.10) 0%, transparent 100%);
  pointer-events: none;
}
.contact-card::after {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 220px; height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212,168,66,0.15) 0%, transparent 70%);
  pointer-events: none;
}
.contact-card h4 {
  background: linear-gradient(135deg, var(--gold-300), var(--gold-400));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.01em;
}
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 22px;
  position: relative;
  z-index: 1;
}
.contact-item .ci-icon {
  width: 46px;
  height: 46px;
  border-radius: var(--radius-md);
  background: rgba(212,168,66,0.14);
  border: 1px solid rgba(212,168,66,0.28);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-300);
  flex-shrink: 0;
  font-size: 1.1rem;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.15);
}
.contact-form-wrap {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 46px 40px;
  position: relative;
  overflow: hidden;
  box-shadow: var(--gloss-inset), var(--shadow-xl);
  border: 1px solid rgba(0,0,0,0.05);
}
.contact-form-wrap::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 50%;
  background: var(--gloss-sheen);
  border-radius: var(--radius-xl) var(--radius-xl) 0 0;
  pointer-events: none;
}
.contact-form-wrap .form-control,
.contact-form-wrap .form-select {
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--gray-200);
  padding: 12px 16px;
  font-size: 0.93rem;
  background: var(--gray-50);
  transition: border-color var(--t-base), box-shadow var(--t-base), background var(--t-base);
}
.contact-form-wrap .form-control:focus,
.contact-form-wrap .form-select:focus {
  border-color: var(--emerald-400);
  box-shadow: 0 0 0 3px rgba(34,147,75,0.14);
  background: var(--white);
}
.contact-form-wrap label {
  font-weight: 600;
  font-size: 0.85rem;
  margin-bottom: 6px;
  color: var(--text-body);
  position: relative;
  z-index: 1;
}

/* ================================================================
   FOOTER — deep jewel
   ================================================================ */
.site-footer {
  background:
    radial-gradient(ellipse 70% 60% at 85% 100%, rgba(34,147,75,0.08) 0%, transparent 55%),
    linear-gradient(180deg, var(--emerald-950) 0%, #020905 100%);
  color: rgba(255,255,255,0.68);
  padding: 76px 0 0;
  position: relative;
}
.site-footer::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, var(--gold-500) 30%, var(--gold-300) 50%, var(--gold-500) 70%, transparent 100%);
  box-shadow: 0 0 20px rgba(212,168,66,0.4);
}
.site-footer .footer-brand .brand-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.38rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--white) 0%, var(--gold-300) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.site-footer .footer-brand .brand-tagline {
  font-size: 0.64rem;
  color: var(--gold-400);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  opacity: 0.88;
}
.site-footer h6 {
  color: var(--gold-300);
  font-family: 'Poppins', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 20px;
  text-shadow: 0 0 12px rgba(212,168,66,0.3);
}
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer ul li { margin-bottom: 10px; }
.site-footer ul li a {
  color: rgba(255,255,255,0.55);
  font-size: 0.87rem;
  transition: color var(--t-fast), padding-left var(--t-fast);
  display: inline-block;
}
.site-footer ul li a:hover {
  color: var(--gold-300);
  padding-left: 5px;
  text-shadow: 0 0 12px rgba(237,195,84,0.4);
}
.site-footer .footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: var(--radius-md);
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.6);
  font-size: 1rem;
  margin-right: 8px;
  transition: all var(--t-base);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.06);
}
.site-footer .footer-social a:hover {
  background: linear-gradient(180deg, var(--gold-300) 0%, var(--gold-500) 45%, var(--gold-800) 55%, var(--gold-500) 100%);
  border-color: var(--gold-400);
  color: var(--emerald-900);
  transform: translateY(-3px);
  box-shadow: var(--gloss-inset), var(--shadow-gold), var(--glow-gold);
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 22px 0;
  margin-top: 56px;
}
.footer-bottom p { font-size: 0.79rem; margin: 0; color: rgba(255,255,255,0.32); }

/* ================================================================
   ILLUSTRATIONS — SVG image helpers
   ================================================================ */

/* Hero illustration replaces/wraps logo */
.hero-illustration {
  width: 100%;
  max-width: 500px;
  display: block;
  margin: 0 auto;
  filter: drop-shadow(0 24px 64px rgba(0,0,0,0.32));
  animation: logoFloat 5.5s ease-in-out infinite;
  position: relative;
  z-index: 1;
}

/* Pillar card illustration (top of card) */
.pillar-illus {
  width: calc(100% + 76px);
  margin: -46px -38px 28px -38px;
  display: block;
  height: 170px;
  object-fit: cover;
  border-radius: var(--radius-xl) var(--radius-xl) 0 0;
  position: relative;
  z-index: 2;
}

/* World map container inside global section */
.world-map-wrap {
  width: 100%;
  max-width: 520px;
  margin: 0 auto;
  filter: drop-shadow(0 16px 48px rgba(0,0,0,0.4));
}

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

/* ================================================================
   MISC
   ================================================================ */
.check-list { list-style: none; padding: 0; }
.check-list li {
  padding: 7px 0;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.93rem;
  color: var(--text-body);
}
.check-list li::before {
  content: '';
  display: inline-block;
  width: 20px; height: 20px;
  border-radius: 50%;
  background:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='white' d='M13.5 2.5L6 10 2.5 6.5l-1 1L6 12l8.5-8.5z'/%3E%3C/svg%3E") center/68% no-repeat,
    linear-gradient(180deg, var(--emerald-300) 0%, var(--emerald-500) 45%, var(--emerald-700) 55%, var(--emerald-500) 100%);
  flex-shrink: 0;
  margin-top: 1px;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.4), var(--shadow-xs);
}
.check-list li.gold::before {
  background:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='%230f3a1c' d='M13.5 2.5L6 10 2.5 6.5l-1 1L6 12l8.5-8.5z'/%3E%3C/svg%3E") center/68% no-repeat,
    linear-gradient(180deg, var(--gold-300) 0%, var(--gold-500) 45%, var(--gold-800) 55%, var(--gold-500) 100%);
}

/* ================================================================
   BACK TO TOP — glossy emerald bubble
   ================================================================ */
#backToTop {
  position: fixed;
  bottom: 34px;
  right: 34px;
  width: 50px;
  height: 50px;
  background: linear-gradient(
    180deg,
    var(--emerald-300) 0%,
    var(--emerald-500) 40%,
    var(--emerald-700) 60%,
    var(--emerald-500) 100%
  );
  color: var(--white);
  border: none;
  border-radius: 50%;
  font-size: 1.15rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  transform: translateY(24px) scale(0.85);
  transition: opacity var(--t-base), transform var(--t-base), box-shadow var(--t-base), filter var(--t-base);
  z-index: 9999;
  box-shadow:
    inset 0 2px 0 rgba(255,255,255,0.45),
    inset 0 -2px 0 rgba(0,0,0,0.22),
    var(--shadow-green),
    var(--glow-green);
}
#backToTop.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}
#backToTop:hover {
  filter: brightness(1.1);
  box-shadow:
    inset 0 2px 0 rgba(255,255,255,0.45),
    inset 0 -2px 0 rgba(0,0,0,0.22),
    0 18px 50px rgba(20,83,41,0.55),
    var(--glow-green);
  transform: translateY(-4px) scale(1.05);
}

/* ================================================================
   RESPONSIVE
   ================================================================ */
@media (max-width: 991.98px) {
  .hero-visual { margin-top: 60px; }
  .section-pad { padding: 70px 0; }
  .step-connector { display: none; }
  .hero-visual::before, .hero-visual::after { display: none; }
}
@media (max-width: 767.98px) {
  .hero-section { min-height: auto; padding: 106px 0 76px; }
  .hero-visual .logo-glow { width: 200px; }
  .contact-card, .contact-form-wrap { padding: 30px 22px; }
  .pillar-card { padding: 32px 26px; }
}
