/* ============================================================
   ReeferON — style.css  (v2 — "Ice & Steel" Redesign)
   Stack:  Bootstrap 5 + Custom CSS (no Tailwind)
   Fonts:  Outfit (900/800/700) headings · Inter (400/500) body
   Author: ReeferON Dev Team
   ============================================================ */

/* ── Design Tokens ────────────────────────────────────────── */
:root {
  /* ── Core navy palette ── */
  --c-900: #050d1a;
  --c-800: #081222;
  --c-700: #0b1a30;
  --c-600: #0f2347;
  --c-500: #1a3a6b;

  /* ── Electric teal accent ── */
  --teal:       #00e5ff;
  --teal-mid:   #00bcd4;
  --teal-dark:  #0097a7;
  --teal-dim:   rgba(0, 229, 255, 0.12);
  --teal-glow:  rgba(0, 229, 255, 0.28);

  /* ── Grays / light scale ── */
  --white:       #ffffff;
  --off-white:   #f8fafc;
  --gray-50:     #f0f4f8;
  --gray-100:    #e8edf5;
  --gray-200:    #d1dce8;
  --gray-300:    #b0bfcf;
  --gray-400:    #8a9cbf;
  --gray-500:    #64748b;
  --gray-600:    #475569;
  --text-h:      #0f172a;
  --text-b:      #374151;
  --text-muted:  #64748b;

  /* ── Gradients ── */
  --grad-teal:
    linear-gradient(135deg, #00e5ff 0%, #0070d8 100%);
  --grad-hero:
    radial-gradient(ellipse 130% 80% at 75% 35%, rgba(0,229,255,0.07) 0%, transparent 55%),
    radial-gradient(ellipse 80%  70% at 15% 80%, rgba(21,101,192,0.18) 0%, transparent 55%),
    linear-gradient(180deg, #050d1a 0%, #081222 100%);
  --grad-dark:
    linear-gradient(160deg, #081222 0%, #0b1a30 100%);

  /* ── Shadows ── */
  --sh-sm:      0 2px 8px  rgba(0,0,0,0.07);
  --sh-md:      0 8px 30px rgba(0,0,0,0.10);
  --sh-lg:      0 20px 60px rgba(0,0,0,0.18);
  --sh-teal:    0 8px 32px  rgba(0,229,255,0.28);
  --sh-card:    0 4px 20px  rgba(15,23,42,0.07);
  --sh-card-h:  0 16px 52px rgba(15,23,42,0.15);

  /* ── Border radius ── */
  --r-xs:   6px;
  --r-sm:   10px;
  --r-md:   16px;
  --r-lg:   22px;
  --r-xl:   30px;
  --r-full: 9999px;

  /* ── Spacing ── */
  --sec-pad: 96px;

  /* ── Transitions ── */
  --ease:       all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --ease-fast:  all 0.18s ease;
  --ease-bounce: all 0.45s cubic-bezier(0.34, 1.56, 0.64, 1);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-b);
  background: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

h1, h2, h3, h4, h5, h6 {
  font-family: 'Outfit', 'Inter', sans-serif;
  font-weight: 800;
  line-height: 1.2;
  color: var(--text-h);
}

/* ── Section Utilities ────────────────────────────────────── */
.sec-pad { padding: var(--sec-pad) 0; }

.sec-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--teal);
  background: var(--teal-dim);
  border: 1px solid rgba(0, 229, 255, 0.25);
  padding: 5px 16px;
  border-radius: var(--r-full);
}

.sec-badge--light {
  color: var(--teal);
  background: rgba(0, 229, 255, 0.10);
  border-color: rgba(0, 229, 255, 0.22);
}

.sec-title {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(1.85rem, 3.2vw, 2.65rem);
  font-weight: 900;
  color: var(--text-h);
  line-height: 1.18;
  letter-spacing: -0.03em;
}

.sec-subtitle {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 680px;
  line-height: 1.8;
}

.text-white-60 { color: rgba(255,255,255,0.60); }

/* ── Scroll-reveal Animations ─────────────────────────────── */
.fade-in-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s cubic-bezier(0.4,0,0.2,1),
              transform 0.65s cubic-bezier(0.4,0,0.2,1);
}
.fade-in-up.visible { opacity: 1; transform: translateY(0); }

.delay-1 { transition-delay: 0.08s; }
.delay-2 { transition-delay: 0.16s; }
.delay-3 { transition-delay: 0.24s; }
.delay-4 { transition-delay: 0.32s; }
.delay-5 { transition-delay: 0.40s; }
.delay-6 { transition-delay: 0.48s; }
.delay-7 { transition-delay: 0.56s; }
.delay-8 { transition-delay: 0.64s; }

/* ── CTA Buttons ──────────────────────────────────────────── */
.btn-primary-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--grad-teal);
  color: var(--white);
  border: none;
  border-radius: var(--r-sm);
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 14px 28px;
  transition: var(--ease);
  box-shadow: var(--sh-teal);
  position: relative;
  overflow: hidden;
  white-space: nowrap;
  cursor: pointer;
  text-decoration: none;
}
.btn-primary-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.18) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.btn-primary-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 52px rgba(0,229,255,0.45);
  color: var(--white);
}
.btn-primary-cta:hover::before { opacity: 1; }
.btn-primary-cta:active { transform: translateY(-1px); }

.btn-ghost-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.38);
  border-radius: var(--r-sm);
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 12px 28px;
  transition: var(--ease);
  white-space: nowrap;
  text-decoration: none;
  cursor: pointer;
}
.btn-ghost-cta:hover {
  background: rgba(0,229,255,0.10);
  border-color: var(--teal);
  color: var(--teal);
  transform: translateY(-3px);
}

/* ── Navigation ───────────────────────────────────────────── */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  transition: background 0.35s ease, backdrop-filter 0.35s ease,
              box-shadow 0.35s ease;
}

.site-header .navbar {
  padding: 18px 0;
  background: transparent;
  transition: padding 0.35s ease;
}

/* Scrolled */
.site-header.scrolled {
  background: rgba(5, 13, 26, 0.96);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  box-shadow: 0 4px 40px rgba(0,0,0,0.35);
}
.site-header.scrolled .navbar { padding: 10px 0; }

/* Mobile menu open */
.site-header.menu-open {
  background: rgba(5, 13, 26, 0.98);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
}

/* Brand */
.brand-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.brand-name {
  font-family: 'Outfit', sans-serif;
  font-weight: 900;
  font-size: 1.5rem;
  letter-spacing: -0.03em;
  color: var(--white);
}
.brand-accent { color: var(--teal); }
.brand-icon {
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--grad-teal);
  border-radius: 10px;
  font-size: 1.1rem;
  color: var(--white);
  box-shadow: 0 4px 16px rgba(0,229,255,0.35);
  flex-shrink: 0;
}

/* Nav links */
.navbar-nav .nav-link {
  color: rgba(255,255,255,0.80) !important;
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  padding: 8px 13px !important;
  border-radius: var(--r-xs);
  transition: var(--ease-fast);
  white-space: nowrap;
  letter-spacing: 0.01em;
}
.navbar-nav .nav-link:hover {
  color: var(--teal) !important;
  background: rgba(0,229,255,0.08);
}
.navbar-nav .nav-link.active {
  color: var(--teal) !important;
  background: rgba(0,229,255,0.10);
}

/* Nav CTA */
.btn-nav-cta {
  display: inline-flex;
  align-items: center;
  background: var(--grad-teal);
  color: var(--white) !important;
  border: none;
  border-radius: var(--r-sm);
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 0.875rem;
  padding: 10px 22px;
  transition: var(--ease);
  box-shadow: 0 4px 20px rgba(0,229,255,0.28);
  white-space: nowrap;
}
.btn-nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(0,229,255,0.45);
  color: var(--white) !important;
}

/* Custom hamburger toggler */
.custom-toggler {
  border: 1.5px solid rgba(255,255,255,0.32);
  background: rgba(255,255,255,0.07);
  border-radius: var(--r-sm);
  padding: 7px 10px;
  color: var(--white);
  font-size: 1.4rem;
  line-height: 1;
  transition: var(--ease-fast);
  display: flex;
  align-items: center;
  justify-content: center;
}
.custom-toggler:focus {
  box-shadow: 0 0 0 3px rgba(0,229,255,0.28);
  outline: none;
}
.custom-toggler:hover {
  background: rgba(0,229,255,0.10);
  border-color: var(--teal);
}

/* Toggle icon swap via aria-expanded */
.custom-toggler .nav-close-icon { display: none; }
.custom-toggler[aria-expanded="true"] .nav-open-icon  { display: none; }
.custom-toggler[aria-expanded="true"] .nav-close-icon { display: block; }

/* Mobile collapse — clean Bootstrap-native approach */
@media (max-width: 991.98px) {
  .navbar-collapse {
    background: rgba(5, 13, 26, 0.98);
    border-top: 1px solid rgba(0, 229, 255, 0.12);
    border-radius: 0 0 var(--r-md) var(--r-md);
    margin-top: 8px;
    padding: 6px 0 14px;
    box-shadow: 0 24px 64px rgba(0,0,0,0.5);
  }
  .navbar-nav .nav-link {
    padding: 13px 18px !important;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    border-radius: 0 !important;
    font-size: 1rem !important;
  }
  .navbar-nav .nav-item:last-child .nav-link,
  .navbar-nav .nav-item:last-child .btn-nav-cta {
    border-bottom: none;
  }
  .btn-nav-cta {
    display: flex;
    margin: 12px 18px 2px;
    width: calc(100% - 36px);
    justify-content: center;
    font-size: 1rem;
  }
  /* Keep ms-lg-3 from fighting mobile layout */
  .ms-lg-3 { margin-left: 0 !important; }
}

/* ── Hero Section ─────────────────────────────────────────── */
.hero-section {
  position: relative;
  background: var(--grad-hero);
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 80px;
}

/* Mesh grid overlay */
.hero-mesh {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0,229,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,229,255,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

/* Floating glow particles */
.hero-particles { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }

.particle {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0,229,255,0.20) 0%, transparent 70%);
  animation: floatP 10s ease-in-out infinite;
}
.p1 { width: 360px; height: 360px; top: 4%;  right: 2%;  animation-delay:  0s; }
.p2 { width: 220px; height: 220px; top: 55%; right: 27%; animation-delay: -3s; }
.p3 { width: 160px; height: 160px; top: 18%; right: 42%; animation-delay: -5s; }
.p4 { width: 110px; height: 110px; top: 77%; right: 8%;  animation-delay: -1.5s; opacity: 0.5; }
.p5 { width: 90px;  height: 90px;  top: 40%; right: 63%; animation-delay: -4s;   opacity: 0.3; }

@keyframes floatP {
  0%, 100% { transform: translateY(0) scale(1); opacity: 0.7; }
  50%       { transform: translateY(-26px) scale(1.06); opacity: 1; }
}

.min-vh-hero { min-height: calc(100vh - 80px); padding: 80px 0; }

/* Hero content */
.hero-badge {
  display: inline-flex;
  align-items: center;
  background: rgba(0,229,255,0.10);
  border: 1px solid rgba(0,229,255,0.28);
  color: rgba(0,229,255,0.90);
  font-family: 'Outfit', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  padding: 8px 20px;
  border-radius: var(--r-full);
}

.hero-headline {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(2.1rem, 4.8vw, 3.7rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.1;
  letter-spacing: -0.035em;
}

.highlight-teal {
  background: var(--grad-teal);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  font-family: 'Outfit', sans-serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: rgba(255,255,255,0.82);
  letter-spacing: -0.01em;
}

.hero-body {
  font-size: 1rem;
  color: rgba(255,255,255,0.60);
  line-height: 1.82;
  max-width: 520px;
}

/* Trust stats */
.hero-trust-row {
  border-top: 1px solid rgba(255,255,255,0.10);
  padding-top: 20px;
}
.trust-item { display: flex; flex-direction: column; gap: 3px; }
.trust-number {
  font-family: 'Outfit', sans-serif;
  font-size: 1.9rem;
  font-weight: 900;
  color: var(--teal);
  letter-spacing: -0.04em;
  line-height: 1;
}
.trust-label {
  font-size: 0.75rem;
  font-weight: 600;
  color: rgba(255,255,255,0.50);
  text-transform: uppercase;
  letter-spacing: 0.07em;
}
.trust-divider {
  width: 1px;
  background: rgba(255,255,255,0.12);
  align-self: stretch;
}

/* Hero visual — right side floating cards */
.hero-visual {
  position: relative;
  width: 420px;
  height: 420px;
}

.hero-orb {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 210px; height: 210px;
  background: radial-gradient(circle, rgba(0,229,255,0.14) 0%, rgba(0,112,216,0.10) 50%, transparent 70%);
  border: 2px solid rgba(0,229,255,0.18);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: orbPulse 4s ease-in-out infinite;
}
.hero-orb::before {
  content: '';
  position: absolute;
  inset: -18px;
  border: 1px solid rgba(0,229,255,0.08);
  border-radius: 50%;
  animation: orbPulse 4s ease-in-out infinite 1s;
}
.hero-orb-icon {
  font-size: 3.2rem;
  color: var(--teal);
  opacity: 0.7;
}

@keyframes orbPulse {
  0%, 100% { transform: translate(-50%, -50%) scale(1); }
  50%       { transform: translate(-50%, -50%) scale(1.07); }
}

.hero-card {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,0.07);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: var(--r-md);
  padding: 12px 18px;
  color: var(--white);
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 0.875rem;
  white-space: nowrap;
  box-shadow: 0 8px 32px rgba(0,0,0,0.25);
  animation: cardFloat 6s ease-in-out infinite;
}
.hero-card i { font-size: 1.25rem; color: var(--teal); }
.hc1 { top: 8%;    left: 0%;   animation-delay:  0s; }
.hc2 { top: 50%;   right: -5%; animation-delay: -2s; }
.hc3 { bottom: 8%; left: 8%;   animation-delay: -4s; }

@keyframes cardFloat {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-12px); }
}

/* ── Marquee Trust Strip ──────────────────────────────────── */
.marquee-section {
  background: var(--white);
  border-top: 1px solid var(--gray-100);
  border-bottom: 1px solid var(--gray-100);
  padding: 18px 0;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.marquee-label {
  font-family: 'Outfit', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--gray-400);
  white-space: nowrap;
  padding: 0 24px;
  flex-shrink: 0;
  border-right: 1px solid var(--gray-200);
}

.marquee-track {
  overflow: hidden;
  flex: 1;
}

.marquee-inner {
  display: flex;
  align-items: center;
  width: max-content;
  animation: marqueeScroll 32s linear infinite;
}
.marquee-inner:hover { animation-play-state: paused; }

.marquee-item {
  display: inline-flex;
  align-items: center;
  font-family: 'Outfit', sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--gray-500);
  padding: 0 28px;
  white-space: nowrap;
  transition: color 0.2s ease;
  cursor: default;
}
.marquee-item i { color: var(--teal-mid); opacity: 0.85; }
.marquee-item:hover { color: var(--text-h); }

.marquee-sep {
  font-size: 0.45rem;
  color: var(--teal);
  opacity: 0.45;
  flex-shrink: 0;
}

@keyframes marqueeScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ── Solutions Section ────────────────────────────────────── */
.solutions-section { background: var(--gray-50); }

.sol-card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--r-lg);
  padding: 28px 22px 22px;
  transition: var(--ease);
  box-shadow: var(--sh-card);
  display: flex;
  flex-direction: column;
  cursor: default;
}
.sol-card:hover {
  transform: translateY(-7px);
  box-shadow: var(--sh-card-h);
  border-color: rgba(0,229,255,0.50);
}
.sol-card:hover .sol-icon-wrap {
  background: var(--grad-teal);
  color: var(--white);
  box-shadow: var(--sh-teal);
}

.sol-icon-wrap {
  width: 52px; height: 52px;
  background: var(--teal-dim);
  color: var(--teal-mid);
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 18px;
  transition: var(--ease);
}

.sol-title {
  font-family: 'Outfit', sans-serif;
  font-size: 1rem;
  font-weight: 800;
  color: var(--text-h);
  margin-bottom: 10px;
  line-height: 1.3;
}

.sol-text {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.72;
  flex: 1;
  margin-bottom: 18px;
}

.sol-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: 'Outfit', sans-serif;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--teal-mid);
  transition: var(--ease-fast);
  margin-top: auto;
}
.sol-link:hover { color: var(--teal); gap: 10px; }

/* ── Why Choose Us ────────────────────────────────────────── */
.why-section {
  background: var(--grad-dark);
  position: relative;
  overflow: hidden;
}

.why-bg-glow {
  position: absolute;
  top: -220px;
  left: 50%;
  transform: translateX(-50%);
  width: 900px; height: 650px;
  background: radial-gradient(circle, rgba(0,229,255,0.055) 0%, transparent 65%);
  pointer-events: none;
}

.why-card {
  background: rgba(255,255,255,0.038);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--r-lg);
  padding: 28px 24px;
  transition: var(--ease);
  position: relative;
  overflow: hidden;
}
.why-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--grad-teal);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.why-card:hover {
  background: rgba(0,229,255,0.055);
  border-color: rgba(0,229,255,0.22);
  transform: translateY(-5px);
}
.why-card:hover::before { opacity: 1; }

.why-num {
  font-family: 'Outfit', sans-serif;
  font-size: 2.8rem;
  font-weight: 900;
  color: rgba(0,229,255,0.09);
  line-height: 1;
  margin-bottom: 12px;
  letter-spacing: -0.04em;
  transition: color 0.3s ease;
}
.why-card:hover .why-num { color: rgba(0,229,255,0.18); }

.why-icon {
  width: 48px; height: 48px;
  background: rgba(0,229,255,0.10);
  color: var(--teal);
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin-bottom: 16px;
  transition: var(--ease);
}
.why-card:hover .why-icon {
  background: rgba(0,229,255,0.18);
  box-shadow: 0 4px 20px rgba(0,229,255,0.20);
}

.why-card-title {
  font-family: 'Outfit', sans-serif;
  font-size: 1rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 10px;
}
.why-card-text {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.52);
  line-height: 1.76;
  margin: 0;
}

/* ── Industries Section ───────────────────────────────────── */
.industries-section { background: var(--white); }

.industries-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.ind-card {
  background: var(--gray-50);
  border: 1px solid var(--gray-100);
  border-radius: var(--r-lg);
  padding: 30px 22px 26px;
  text-align: center;
  transition: var(--ease);
}
.ind-card:hover {
  background: var(--white);
  border-color: rgba(0,229,255,0.50);
  box-shadow: 0 10px 44px rgba(0,229,255,0.12);
  transform: translateY(-6px);
}
.ind-card:hover .ind-icon-wrap {
  background: var(--grad-teal);
  color: var(--white);
  box-shadow: var(--sh-teal);
}

.ind-icon-wrap {
  width: 62px; height: 62px;
  background: var(--teal-dim);
  color: var(--teal-mid);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin: 0 auto 16px;
  transition: var(--ease);
}

.ind-name {
  font-family: 'Outfit', sans-serif;
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--text-h);
  margin-bottom: 8px;
}
.ind-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin: 0;
}

/* ── Impact Section ───────────────────────────────────────── */
.impact-section { background: var(--gray-50); }

.impact-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 0;
  margin: 0;
}

.impact-item {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--r-md);
  padding: 20px 22px;
  transition: var(--ease);
  box-shadow: var(--sh-sm);
}
.impact-item:hover {
  border-color: rgba(0,229,255,0.40);
  box-shadow: 0 8px 32px rgba(0,229,255,0.09);
  transform: translateX(5px);
}

.impact-check {
  width: 40px; height: 40px;
  min-width: 40px;
  background: var(--grad-teal);
  color: var(--white);
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  box-shadow: 0 4px 16px rgba(0,229,255,0.25);
}

.impact-item-title {
  font-family: 'Outfit', sans-serif;
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--text-h);
  margin-bottom: 4px;
}
.impact-item-desc {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin: 0;
}

/* ── Principles Section ───────────────────────────────────── */
.principles-section {
  background: var(--grad-hero);
  position: relative;
  overflow: hidden;
}

.principles-mesh {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0,229,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,229,255,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

.principle-pillar {
  background: rgba(255,255,255,0.038);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--r-lg);
  padding: 32px 24px;
  text-align: center;
  transition: var(--ease);
  position: relative;
  overflow: hidden;
}
.principle-pillar::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: var(--grad-teal);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.principle-pillar:hover {
  background: rgba(0,229,255,0.055);
  border-color: rgba(0,229,255,0.20);
  transform: translateY(-6px);
}
.principle-pillar:hover::after { opacity: 1; }

.pillar-number {
  font-family: 'Outfit', sans-serif;
  font-size: 3.6rem;
  font-weight: 900;
  color: rgba(0,229,255,0.08);
  line-height: 1;
  margin-bottom: 12px;
  letter-spacing: -0.04em;
  transition: color 0.3s ease;
}
.principle-pillar:hover .pillar-number { color: rgba(0,229,255,0.16); }

.pillar-icon {
  width: 52px; height: 52px;
  background: rgba(0,229,255,0.10);
  color: var(--teal);
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  margin: 0 auto 16px;
  transition: var(--ease);
}
.principle-pillar:hover .pillar-icon {
  background: rgba(0,229,255,0.20);
  box-shadow: 0 4px 20px rgba(0,229,255,0.25);
}

.pillar-title {
  font-family: 'Outfit', sans-serif;
  font-size: 1rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 10px;
}
.pillar-text {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.52);
  line-height: 1.72;
  margin: 0;
}

/* ── Contact Section ──────────────────────────────────────── */
.contact-section {
  background: var(--white);
  position: relative;
  overflow: hidden;
}

.contact-bg-shape {
  position: absolute;
  top: -280px; right: -180px;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(0,229,255,0.04) 0%, transparent 65%);
  pointer-events: none;
}

.contact-intro {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.82;
}

.contact-details { display: flex; flex-direction: column; gap: 20px; }

.contact-detail-item {
  display: flex;
  gap: 16px;
  align-items: center;
}

.contact-detail-icon {
  width: 46px; height: 46px;
  min-width: 46px;
  background: var(--teal-dim);
  color: var(--teal-mid);
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  transition: var(--ease);
}
.contact-detail-item:hover .contact-detail-icon {
  background: var(--grad-teal);
  color: var(--white);
  box-shadow: var(--sh-teal);
}

.contact-detail-label {
  display: block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  color: var(--gray-400);
  margin-bottom: 2px;
}
.contact-detail-value {
  font-family: 'Outfit', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-h);
  display: block;
  transition: var(--ease-fast);
}
a.contact-detail-value:hover { color: var(--teal-mid); }

.contact-trust-badges { display: flex; flex-direction: column; gap: 12px; }

.trust-badge-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Outfit', sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--gray-600);
}
.trust-badge-item i { color: var(--teal-mid); font-size: 1rem; }

/* Lead form card */
.lead-form-card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--r-xl);
  padding: 40px 36px;
  box-shadow: 0 20px 80px rgba(15,23,42,0.09);
  position: relative;
  overflow: hidden;
}
.lead-form-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--grad-teal);
}

.lead-form-title {
  font-family: 'Outfit', sans-serif;
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--text-h);
  margin-bottom: 6px;
}
.lead-form-subtitle {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 24px;
}

/* Form labels */
.form-label {
  font-family: 'Outfit', sans-serif;
  font-size: 0.80rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--gray-600);
  margin-bottom: 6px;
  display: block;
}
.required-mark { color: #e53e3e; }

/* Input wrapper (icon + field) */
.input-wrap { position: relative; }
.input-icon {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--gray-400);
  font-size: 0.95rem;
  pointer-events: none;
  z-index: 1;
  transition: color 0.2s ease;
}
.input-wrap:focus-within .input-icon { color: var(--teal-mid); }
.select-wrap .input-icon { z-index: 0; }

/* Fields */
.form-control,
.form-select {
  border: 1.5px solid var(--gray-200);
  border-radius: var(--r-sm);
  padding: 11px 14px 11px 42px;
  font-size: 0.9rem;
  color: var(--text-h);
  background: var(--white);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  width: 100%;
  font-family: 'Inter', sans-serif;
}
.form-control::placeholder { color: var(--gray-300); }
.form-control:focus,
.form-select:focus {
  border-color: var(--teal-mid);
  box-shadow: 0 0 0 3px rgba(0,229,255,0.12);
  outline: none;
}
.form-control.is-invalid,
.form-select.is-invalid {
  border-color: #e53e3e;
  box-shadow: 0 0 0 3px rgba(229,62,62,0.09);
}

.invalid-feedback {
  font-size: 0.78rem;
  color: #e53e3e;
  margin-top: 5px;
  display: none;
}
.invalid-feedback.visible { display: block; }

/* Custom select arrow */
.form-select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%238a9cbf' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 16px 12px;
  padding-right: 40px;
}

/* Textarea — no left icon */
textarea.form-control {
  padding: 12px 14px;
  resize: vertical;
  min-height: 110px;
}

.submit-btn {
  font-family: 'Outfit', sans-serif;
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.01em;
  padding: 16px;
}

/* Feedback messages */
.form-feedback-msg {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 14px 18px;
  border-radius: var(--r-sm);
  font-size: 0.9rem;
  margin-bottom: 20px;
  border: 1px solid;
}
.form-success {
  background: rgba(16,185,129,0.08);
  border-color: rgba(16,185,129,0.25);
  color: #065f46;
}
.form-error {
  background: rgba(229,62,62,0.07);
  border-color: rgba(229,62,62,0.20);
  color: #9b1c1c;
}

.form-privacy-note {
  font-size: 0.78rem;
  color: var(--gray-400);
  text-align: center;
  margin: 0;
}

/* ── Footer ───────────────────────────────────────────────── */
.site-footer {
  background: var(--c-900);
  color: rgba(255,255,255,0.60);
}
.footer-top {
  padding: 64px 0 48px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}
.footer-tagline {
  font-family: 'Outfit', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  color: rgba(255,255,255,0.80);
  margin-bottom: 8px;
}
.footer-desc {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.42);
  line-height: 1.72;
  margin: 0;
}
.footer-heading {
  font-family: 'Outfit', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  margin-bottom: 18px;
}
.footer-links {
  list-style: none;
  padding: 0; margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-links a {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.52);
  transition: var(--ease-fast);
}
.footer-links a:hover { color: var(--teal); padding-left: 4px; }
.footer-contact p {
  display: flex;
  align-items: center;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.52);
  margin-bottom: 12px;
}
.footer-contact a:hover { color: var(--teal); }
.footer-bottom { padding: 20px 0; }
.footer-copy,
.footer-legal {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.32);
  margin: 0;
}
.footer-legal a { color: rgba(255,255,255,0.38); }
.footer-legal a:hover { color: var(--teal); }

/* ── Scroll Progress Bar ──────────────────────────────────── */
#scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  width: 0%;
  background: var(--grad-teal);
  z-index: 9999;
  transition: width 0.1s linear;
  box-shadow: 0 0 10px rgba(0,229,255,0.50);
}

/* ── Back to Top ──────────────────────────────────────────── */
.back-to-top {
  position: fixed;
  bottom: 100px;
  right: 24px;
  width: 44px; height: 44px;
  background: var(--c-800);
  color: var(--teal);
  border: 1px solid rgba(0,229,255,0.22);
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  cursor: pointer;
  transition: var(--ease);
  box-shadow: 0 4px 20px rgba(0,0,0,0.30);
  z-index: 900;
}
.back-to-top:hover {
  background: var(--grad-teal);
  color: var(--white);
  border-color: transparent;
  transform: translateY(-3px);
  box-shadow: var(--sh-teal);
}

/* ── WhatsApp Float ───────────────────────────────────────── */
#whatsapp-float {
  position: fixed;
  bottom: 24px; right: 24px;
  display: flex;
  align-items: center;
  gap: 10px;
  background: #25d366;
  color: var(--white);
  border-radius: var(--r-full);
  padding: 12px 20px 12px 14px;
  font-family: 'Outfit', sans-serif;
  font-size: 0.875rem;
  font-weight: 700;
  box-shadow: 0 6px 28px rgba(37,211,102,0.40);
  z-index: 900;
  transition: var(--ease);
  text-decoration: none;
}
#whatsapp-float:hover {
  transform: translateY(-4px) scale(1.03);
  box-shadow: 0 12px 40px rgba(37,211,102,0.55);
  color: var(--white);
}
.wa-label { white-space: nowrap; }

/* ── Responsive ───────────────────────────────────────────── */
@media (max-width: 767px) {
  .industries-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 575px) {
  :root { --sec-pad: 64px; }

  .hero-headline  { font-size: 2rem; }
  .hero-ctas      { flex-direction: column; }
  .hero-ctas .btn { width: 100%; justify-content: center; }
  .hero-trust-row { gap: 16px; }
  .trust-number   { font-size: 1.5rem; }

  .lead-form-card { padding: 28px 18px; }

  .industries-grid { grid-template-columns: 1fr; }

  #whatsapp-float { padding: 12px 14px; }
  #whatsapp-float .wa-label { display: none; }
  .back-to-top { right: 12px; bottom: 76px; }

  .marquee-label { display: none; }
}
