/* ============================================
   DESIGN TOKENS
   ============================================ */
:root {
  --primary: #6fd1b4;
  --primary-dark: #4ab898;
  --primary-light: #a8e8d4;
  --secondary: #0f2419;
  --dark: #092a20;
  --dark-2: #0d3328;
  --light: #F8FAFC;
  --white: #ffffff;
  --gray-100: #f1f5f9;
  --gray-200: #e2e8f0;
  --gray-400: #94a3b8;
  --gray-600: #475569;
  --gray-800: #1e293b;
  --font-display: 'Space Grotesk', sans-serif;
  --font-body: 'Inter', sans-serif;
  --shadow-sm: 0 1px 3px rgba(0,0,0,.06), 0 1px 2px rgba(0,0,0,.04);
  --shadow-md: 0 4px 20px rgba(0,0,0,.08);
  --shadow-lg: 0 20px 60px rgba(0,0,0,.12);
  --shadow-glow: 0 0 40px rgba(111,209,180,.25);
  --radius: 16px;
  --radius-sm: 10px;
  --radius-xl: 24px;
  --radius-lg: 24px;
  --light-medium-gray: #eaeaeb;
  --radius-md: 16px;   
  --text: #0f172a;
  --trans: .25s cubic-bezier(.4,0,.2,1);
  --trans-slow: .5s cubic-bezier(.4,0,.2,1);
  --mint:#6fd1b4;
  --forest:#0f2419;
  --mint-dim:#4db89a;
  --forest:#0f2419;
  --forest-dk:  #092a20;
  --radius-pill: 9999px;
  --transition: .3s cubic-bezier(.4, 0, .2, 1);
}

/* ============================================
   RESET & BASE
   ============================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--white);
  color: var(--gray-800);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
a {
    text-decoration: none;
    color: inherit;
}
ul {
    list-style: none;
}
dl, ol, ul {
    margin-top: 0;
    margin-bottom: 1rem;
}

section[id] {
    scroll-margin-top: 100px; /* adjust to navbar height */
}


/* ============================================
   LOADER
   ============================================ */
#loader {
  position: fixed; inset: 0; background: var(--dark);
  display: flex; align-items: center; justify-content: center;
  z-index: 9999; transition: opacity .6s ease, visibility .6s ease;
}
#loader.hidden { opacity: 0; visibility: hidden; }
.loader-logo {
    display: flex; flex-direction: column; align-items: center; gap: 20px; width: 400px;
}
.loader-logo img{width: 100%;}

.loader-mark {
  width: 56px; height: 56px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 28px;
  animation: loaderPulse 1.2s ease-in-out infinite;
}
.loader-bar {
  width: 160px; height: 3px; background: rgba(255,255,255,.1); border-radius: 99px; overflow: hidden;
}
.loader-bar-fill {
  height: 100%; background: linear-gradient(90deg, var(--primary), var(--primary-light));
  border-radius: 99px; animation: loadFill 1.8s ease forwards;
}
@keyframes loadFill { from { width: 0 } to { width: 100% } }
@keyframes loaderPulse { 0%,100% { transform: scale(1); } 50% { transform: scale(1.08); } }

.section-how{
    background-color: #f3f3f3;
}

/* ============================================
   NAVBAR
   ============================================ */
.navbar {
  position: fixed; top: 0; width: 100%; z-index: 1000;
  padding: 18px 0;
  transition: all .35s ease;
  background: transparent;
}
.navbar.scrolled {
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 rgba(0,0,0,.06);
  padding: 12px 0;
}
.navbar-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    width: 260px;
    padding: 0;
    margin: 0;
}
.navbar-brand img{
    width: 100%;
    filter: brightness(0.9) invert(0.4);
}

.scrolled .navbar-brand img{
    filter: none;
}

.navbar-brand:focus-visible{
    outline: none;
}
.nav-logo-mark {
  width: 38px; height: 38px;
  background: linear-gradient(135deg, var(--primary), #3db898);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
}
.nav-logo-text {
  font-family: var(--font-display);
  font-weight: 700; font-size: 1.15rem; color: var(--dark);
}
.navbar.scrolled .nav-logo-text { color: var(--dark); }
.navbar:not(.scrolled) .nav-logo-text { color: var(--white); }
.nav-link {
  font-size: .9rem; font-weight: 500; color: var(--gray-600) !important;
  padding: 6px 14px !important;
  transition: color .2s;
}
.navbar:not(.scrolled) .nav-link { color: rgba(255,255,255,.8) !important; }
.nav-link:hover { color: var(--primary) !important; }
.nav-cta {
  background: linear-gradient(135deg, var(--primary), #3db898);
  color: var(--dark) !important;
  border-radius: 8px; padding: 8px 20px !important;
  font-weight: 600;
  transition: transform .2s, box-shadow .2s;
}
.nav-cta:hover { transform: translateY(-1px); box-shadow: 0 8px 24px rgba(111,209,180,.4); }
.navbar-toggler { border: none; }
.navbar-toggler:focus { box-shadow: none; }

/* ============================================
   HERO SECTION
   ============================================ */
#hero {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--dark) 0%, var(--secondary) 50%, #133d2a 100%);
  display: flex; align-items: center;
  position: relative; overflow: hidden;
  padding: 120px 0 80px;
}
.hero-bg-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(111,209,180,.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(111,209,180,.05) 1px, transparent 1px);
  background-size: 60px 60px;
  animation: gridShift 20s linear infinite;
}
@keyframes gridShift { from { transform: translateY(0); } to { transform: translateY(60px); } }
.hero-glow-1 {
  position: absolute; width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(111,209,180,.18) 0%, transparent 70%);
  top: -100px; left: -100px; border-radius: 50%;
  animation: glowPulse 6s ease-in-out infinite;
}
.hero-glow-2 {
  position: absolute; width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(111,209,180,.12) 0%, transparent 70%);
  bottom: -50px; right: 10%;
  animation: glowPulse 8s ease-in-out infinite reverse;
}
@keyframes glowPulse { 0%,100% { transform: scale(1); opacity: 1; } 50% { transform: scale(1.15); opacity: .7; } }

.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(111,209,180,.12);
  border: 1px solid rgba(111,209,180,.25);
  color: var(--primary-light); font-size: .82rem; font-weight: 600;
  padding: 6px 16px; border-radius: 99px; margin-bottom: 28px;
  backdrop-filter: blur(8px);
  animation: badgePop .5s ease both;
}
@keyframes badgePop { from { opacity:0; transform: translateY(-8px); } to { opacity:1; transform: translateY(0); } }

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 800; line-height: 1.1;
  color: var(--white);
  margin-bottom: 24px;
  letter-spacing: -.02em;
}
.hero-headline span {
  background: linear-gradient(135deg, var(--primary), #a8e8d4);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
.hero-sub {
  font-size: 1.05rem; line-height: 1.7; color: rgba(255,255,255,.65);
  max-width: 500px; margin-bottom: 36px;
}
.btn-primary-hero {
  background: linear-gradient(135deg, var(--primary), #3db898);
  color: var(--dark); font-weight: 700; font-size: .95rem;
  padding: 14px 28px; border-radius: 10px; border: none;
  text-decoration: none; display: inline-flex; align-items: center; gap: 8px;
  transition: all .25s;
  box-shadow: 0 8px 30px rgba(111,209,180,.35);
}
.btn-primary-hero:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 40px rgba(111,209,180,.45);
  color: var(--dark);
}
.btn-secondary-hero {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.18);
  color: var(--white); font-weight: 600; font-size: .95rem;
  padding: 14px 28px; border-radius: 10px;
  text-decoration: none; display: inline-flex; align-items: center; gap: 8px;
  transition: all .25s;
  backdrop-filter: blur(8px);
}
.btn-secondary-hero:hover { background: rgba(255,255,255,.12); color: var(--white); }

.trust-indicators {
  display: flex; flex-wrap: wrap; gap: 20px; margin-top: 32px;
}
.trust-item {
  display: flex; align-items: center; gap: 8px;
  color: rgba(255,255,255,.75); font-size: .88rem; font-weight: 500;
}
.trust-item i { color: var(--primary); font-size: 1rem; }

/* Dashboard Mockup */
.dashboard-wrap {
  position: relative;
  perspective: 1000px;
}
.dashboard-card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(111,209,180,.15);
  border-radius: var(--radius-xl);
  padding: 20px;
  backdrop-filter: blur(20px);
  box-shadow: 0 30px 100px rgba(0,0,0,.4), inset 0 1px 0 rgba(255,255,255,.07);
  animation: dashFloat 6s ease-in-out infinite;
  transform-style: preserve-3d;
}
@keyframes dashFloat { 0%,100% { transform: translateY(0) rotateX(2deg); } 50% { transform: translateY(-12px) rotateX(0deg); } }

.dash-header {
  display: flex; align-items: center; justify-content: space-between; margin-bottom: 16px;
}
.dash-title { color: var(--white); font-weight: 700; font-size: .95rem; font-family: var(--font-display); }
.dash-dot { width: 8px; height: 8px; border-radius: 50%; }
.dot-green { background: #4ade80; }
.dot-yellow { background: #facc15; }
.dot-red { background: #f87171; }

.dash-stats {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-bottom: 16px;
}
.dash-stat {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 10px; padding: 12px;
  transition: all .3s;
}
.dash-stat:hover { background: rgba(111,209,180,.1); border-color: rgba(111,209,180,.3); }
.dash-stat-label { color: rgba(255,255,255,.45); font-size: .72rem; margin-bottom: 6px; }
.dash-stat-val { color: var(--white); font-size: 1.4rem; font-weight: 800; font-family: var(--font-display); }
.dash-stat-trend { color: #4ade80; font-size: .72rem; margin-top: 3px; }

.dash-chart { margin-bottom: 16px; }
.chart-label { color: rgba(255,255,255,.4); font-size: .72rem; margin-bottom: 10px; }
.chart-bars {
  display: flex; align-items: flex-end; gap: 6px; height: 60px;
}
.chart-bar {
  flex: 1; border-radius: 4px 4px 0 0;
  background: linear-gradient(180deg, var(--primary), #3db898);
  opacity: .7; transition: opacity .3s;
  animation: barGrow 1s ease both;
}
.chart-bar:hover { opacity: 1; }
@keyframes barGrow { from { transform: scaleY(0); transform-origin: bottom; } to { transform: scaleY(1); } }

.dash-orders { display: flex; flex-direction: column; gap: 8px; }
.order-row {
  display: flex; align-items: center; justify-content: space-between;
  background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.06);
  border-radius: 8px; padding: 10px 12px;
}
.order-id { color: rgba(255,255,255,.7); font-size: .78rem; }
.order-status {
  font-size: .72rem; font-weight: 600; padding: 3px 8px; border-radius: 99px;
}
.status-shipped { background: rgba(74,222,128,.15); color: #4ade80; }
.status-processing { background: rgba(250,204,21,.15); color: #facc15; }
.status-packed { background: rgba(111,209,180,.2); color: var(--primary-light); }

/* Floating elements */
.float-el {
  position: absolute;
  animation: floatEl 4s ease-in-out infinite;
}
@keyframes floatEl {
  0%,100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-14px) rotate(3deg); }
}
.float-box {
  background: linear-gradient(135deg, var(--primary), #3db898);
  color: var(--dark); font-size: 1.4rem;
  width: 52px; height: 52px; border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 12px 30px rgba(111,209,180,.4);
}
.float-stat-card {
  background: rgba(9,42,32,.9);
  border: 1px solid rgba(111,209,180,.25);
  border-radius: 10px; padding: 10px 16px;
  backdrop-filter: blur(10px);
  min-width: 120px;
}
.fsc-label { color: rgba(255,255,255,.5); font-size: .7rem; }
.fsc-val { color: var(--white); font-weight: 700; font-size: 1rem; }
.fsc-chg { color: #4ade80; font-size: .72rem; }

/* ============================================
   SECTION BASE
   ============================================ */
section { padding: 100px 0; }
.section-eyebrow {
  display: inline-block;
  font-size: .78rem; font-weight: 700; letter-spacing: .12em;
  text-transform: uppercase; color: var(--primary-dark);
  margin-bottom: 14px;
}
.section-headline {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800; line-height: 1.15;
  color: var(--dark); letter-spacing: -.02em;
  margin-bottom: 16px;
}
.section-sub {
  font-size: 1.05rem; color: var(--gray-600); line-height: 1.7;
  max-width: 560px;
}

/* ============================================
   TRUST LOGOS
   ============================================ */
#trust { padding: 60px 0; background: var(--light); border-top: 1px solid var(--gray-200); border-bottom: 1px solid var(--gray-200); }
.trust-headline {
  font-size: .85rem; font-weight: 600; text-transform: uppercase; letter-spacing: .1em;
  color: var(--gray-400); text-align: center; margin-bottom: 32px;
}
.marquee-wrapper { overflow: hidden; position: relative; }
.marquee-wrapper::before, .marquee-wrapper::after {
  content: ''; position: absolute; top: 0; bottom: 0; width: 120px; z-index: 2;
}
.marquee-wrapper::before { left: 0; background: linear-gradient(90deg, var(--light), transparent); }
.marquee-wrapper::after { right: 0; background: linear-gradient(-90deg, var(--light), transparent); }
.marquee-track {
  display: flex; gap: 48px; width: max-content;
  animation: marqueeScroll 24s linear infinite;
}
.marquee-track:hover { animation-play-state: paused; }
@keyframes marqueeScroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.logo-item {
  display: flex; align-items: center; gap: 10px; white-space: nowrap;
  background: var(--white); border: 1px solid var(--gray-200);
  border-radius: 10px; padding: 12px 24px;
  box-shadow: var(--shadow-sm);
  transition: box-shadow .2s;
}
.logo-item:hover { box-shadow: var(--shadow-md); }
.logo-icon { font-size: 1.4rem; }
.logo-name { font-weight: 700; font-size: .9rem; color: var(--gray-600); }

/* ============================================
   FEATURES / WHAT YOU CAN DO
   ============================================ */
#features { background: var(--white); }
.feature-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-xl);
  padding: 40px 36px;
  height: 100%;
  position: relative; overflow: hidden;
  transition: transform .3s ease, box-shadow .3s ease;
  cursor: default;
}
.feature-card::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(111,209,180,.07) 0%, transparent 60%);
  opacity: 0; transition: opacity .3s;
}
.feature-card::after {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, var(--primary), var(--primary-light));
  transform: scaleX(0); transition: transform .4s ease;
  transform-origin: left;
}
.feature-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.feature-card:hover::before { opacity: 1; }
.feature-card:hover::after { transform: scaleX(1); }
.feature-icon-wrap {
  width: 64px; height: 64px;
  background: linear-gradient(135deg, rgba(111,209,180,.15), rgba(111,209,180,.05));
  border: 1px solid rgba(111,209,180,.3);
  border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.8rem; margin-bottom: 24px;
  transition: all .3s;
}
.feature-card:hover .feature-icon-wrap {
  background: linear-gradient(135deg, var(--primary), #3db898);
  border-color: transparent;
  box-shadow: 0 12px 30px rgba(111,209,180,.4);
  transform: scale(1.08) rotate(-13deg);
}
.feature-title {
  font-family: var(--font-display);
  font-size: 1.3rem; font-weight: 700; color: var(--dark); margin-bottom: 12px;
}
.feature-desc { color: var(--gray-600); line-height: 1.7; font-size: .95rem; }
.feature-link {
  display: inline-flex; align-items: center; gap: 6px;
  color: var(--primary-dark); font-weight: 600; font-size: .88rem;
  text-decoration: none; margin-top: 20px;
  transition: gap .2s;
}
.feature-link:hover { gap: 10px; }

/* ============================================
   HOW IT WORKS
   ============================================ */

.timeline {
  display: flex; flex-direction: column; gap: 0;
  position: relative;
}
.timeline::before {
  content: '';
  position: absolute; left: 28px; top: 0; bottom: 0; width: 2px;
  background: linear-gradient(180deg, var(--primary), rgba(111,209,180,.1));
}
.timeline-step {
  display: flex; gap: 28px; align-items: flex-start;
  padding: 0 0 48px 0; position: relative;
}
.timeline-step:last-child { padding-bottom: 0; }
.step-marker {
  width: 58px; height: 58px; flex-shrink: 0;
  background: var(--white);
  border: 2px solid var(--gray-200);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; position: relative; z-index: 1;
  transition: all .3s;
  box-shadow: var(--shadow-sm);
}
.timeline-step.active .step-marker {
  border-color: var(--primary);
  background: linear-gradient(135deg, var(--primary), #3db898);
  box-shadow: 0 8px 24px rgba(111,209,180,.35);
}
.step-content { padding-top: 12px; }
.step-number {
  font-size: .72rem; font-weight: 700; letter-spacing: .1em;
  color: var(--primary-dark); text-transform: uppercase; margin-bottom: 4px;
}
.step-title {
  font-family: var(--font-display);
  font-size: 1.2rem; font-weight: 700; color: var(--dark); margin-bottom: 8px;
}
.step-desc { color: var(--gray-600); font-size: .92rem; line-height: 1.65; }

/* ============================================
   DASHBOARD SHOWCASE
   ============================================ */
#showcase {
  background: var(--dark);
  position: relative; overflow: hidden;
}
#showcase .showcase-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(111,209,180,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(111,209,180,.04) 1px, transparent 1px);
  background-size: 40px 40px;
}
.showcase-headline { color: var(--white); }
.showcase-sub { color: rgba(255,255,255,.6); }
.showcase-features { list-style: none; padding: 0; margin: 28px 0; }
.showcase-features li {
  display: flex; align-items: center; gap: 12px;
  color: rgba(255,255,255,.8); padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,.06);
  font-size: .95rem;
}
.showcase-features li i { color: var(--primary); font-size: 1.1rem; }
.big-dash {
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(111,209,180,.12);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 40px 120px rgba(0,0,0,.5);
}
.big-dash-header {
  background: rgba(255,255,255,.04);
  border-bottom: 1px solid rgba(255,255,255,.06);
  padding: 14px 20px;
  display: flex; align-items: center; gap: 8px;
}
.wdot { width: 10px; height: 10px; border-radius: 50%; }
.big-dash-body { padding: 20px; }
.dash-grid { display: grid; grid-template-columns: 2fr 1fr; gap: 16px; }
.dash-panel {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 12px; padding: 16px;
}
.dp-title { color: rgba(255,255,255,.5); font-size: .72rem; text-transform: uppercase; letter-spacing: .08em; margin-bottom: 14px; }
.dp-val { color: var(--white); font-size: 2rem; font-weight: 800; font-family: var(--font-display); }
.dp-trend { color: #4ade80; font-size: .8rem; margin-top: 4px; }
.mini-chart { display: flex; align-items: flex-end; gap: 4px; height: 50px; margin-top: 12px; }
.mc-bar { flex: 1; border-radius: 3px 3px 0 0; background: linear-gradient(180deg, var(--primary), transparent); min-height: 8px; }
.order-table { width: 100%; }
.order-table th { color: rgba(255,255,255,.35); font-size: .7rem; text-transform: uppercase; letter-spacing: .08em; padding: 0 0 10px; font-weight: 600; }
.order-table td { color: rgba(255,255,255,.75); font-size: .8rem; padding: 8px 0; border-bottom: 1px solid rgba(255,255,255,.05); }
.map-visual {
  background: linear-gradient(135deg, rgba(111,209,180,.08), rgba(9,42,32,.5));
  border-radius: 10px; height: 100px; margin-top: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 2rem; position: relative; overflow: hidden;
}
.map-dot {
  position: absolute; width: 8px; height: 8px; background: var(--primary);
  border-radius: 50%; box-shadow: 0 0 12px var(--primary);
  animation: mapPulse 2s ease-in-out infinite;
}
@keyframes mapPulse { 0%,100% { transform: scale(1); opacity: 1; } 50% { transform: scale(1.5); opacity: .6; } }

/* ============================================
   STATS SECTION
   ============================================ */
#stats {
  background: linear-gradient(135deg, var(--secondary) 0%, var(--dark) 100%);
  padding: 80px 0;
}
.stat-card {
  text-align: center; padding: 40px 20px;
  position: relative;
}
.stat-card::after {
  content: '';
  position: absolute; right: 0; top: 20%; bottom: 20%; width: 1px;
  background: rgba(255,255,255,.08);
}
.stat-card:last-child::after { display: none; }
.stat-number {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 3.5rem);
  font-weight: 900; line-height: 1;
  background: linear-gradient(135deg, var(--primary), #a8e8d4);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  margin-bottom: 8px;
}
.stat-label { color: rgba(255,255,255,.6); font-size: .95rem; font-weight: 500; }

/* ============================================
   BENEFITS SECTION
   ============================================ */
#benefits { background: var(--white); }
.benefit-row { align-items: center; margin-bottom: 80px; }
.benefit-row:last-child { margin-bottom: 0; }
.benefit-visual {
  background: linear-gradient(135deg, var(--light), var(--gray-100));
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-xl);
  height: 280px;
  display: flex; align-items: center; justify-content: center;
  font-size: 5rem;
  position: relative; overflow: hidden;
}
.benefit-visual::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(111,209,180,.12), transparent);
}
.benefit-icon-bg {
  position: absolute;
  width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(111,209,180,.15), transparent 70%);
  border-radius: 50%;
}
.benefit-number {
  font-size: .72rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  color: var(--primary-dark); margin-bottom: 10px;
}
.benefit-title {
  font-family: var(--font-display);
  font-size: 1.8rem; font-weight: 800; color: var(--dark); margin-bottom: 14px; line-height: 1.2;
}
.benefit-desc { color: var(--gray-600); line-height: 1.75; font-size: 1rem; margin-bottom: 20px; }
.benefit-link {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--primary-dark); font-weight: 600; text-decoration: none;
  transition: gap .2s;
}
.benefit-link:hover { gap: 12px; }

/* ============================================
   FAQ
   ============================================ */
#faq { background: var(--white); }
.accordion-item { border: 1px solid var(--gray-200) !important; border-radius: var(--radius-sm) !important; margin-bottom: 10px; overflow: hidden; }
.accordion-button {
  font-weight: 600; color: var(--dark);
  font-size: .95rem;
  background: var(--white) !important;
  box-shadow: none !important;
}
.accordion-button:not(.collapsed) { color: var(--primary-dark) !important; }
.accordion-button::after { filter: hue-rotate(120deg); }
.accordion-body { color: var(--gray-600); line-height: 1.75; font-size: .93rem; }

/* ============================================
   FINAL CTA
   ============================================ */
#cta-final {
  padding: 120px 0;
  background: linear-gradient(135deg, var(--dark) 0%, var(--secondary) 60%, #1a4a32 100%);
  position: relative; overflow: hidden;
}
.cta-mesh {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(111,209,180,.2) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 50%, rgba(111,209,180,.1) 0%, transparent 50%);
  animation: meshMove 8s ease-in-out infinite;
}
@keyframes meshMove { 0%,100% { opacity: 1; } 50% { opacity: .6; } }
.cta-grid-bg {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(111,209,180,.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(111,209,180,.06) 1px, transparent 1px);
  background-size: 50px 50px;
}
.cta-headline {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 800; color: var(--white);
  letter-spacing: -.02em; line-height: 1.15; margin-bottom: 20px;
}
.cta-headline span { color: var(--primary); }
.cta-sub { color: rgba(255,255,255,.65); font-size: 1.05rem; line-height: 1.7; margin-bottom: 40px; max-width: 750px; margin-left: auto; margin-right: auto; }

/* Float items CTA */
.cta-float {
  position: absolute;
  animation: ctaFloat 5s ease-in-out infinite;
}
@keyframes ctaFloat { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-18px); } }

/* ============================================
   FOOTER
   ============================================ */

/* ---------- Footer ---------- */

.footer-brand .nav-logo-icon {
    width: 258px;
    display: grid;
    place-items: center;
}

.footer-brand .nav-logo-icon img{
    width: 100%;
}

.footer { background: #0a0f1a; padding: 72px 0 0; }
.footer-grid { 
    display: grid;
    grid-template-columns: 2fr 1fr 1.9fr;
    gap: 48px;
    padding-bottom: 56px;
    border-bottom: 1px solid rgba(255, 255, 255, .08);}
.footer-brand .nav-logo { margin-bottom: 18px; }
.footer-brand .nav-logo-text { color: white; }
.footer-desc { font-size: .875rem; color: rgba(255,255,255,.45); line-height: 1.7; max-width: 400px; }
.footer-socials { display: flex; gap: 10px; margin-top: 22px; }
.footer-social {
  width: 36px; height: 36px; border-radius: 9px; border: 1px solid rgba(255,255,255,.12);
  display: grid; place-items: center; transition: var(--transition); color: rgba(255,255,255,.5);
}
.footer-social:hover { border-color: var(--primary); color: var(--primary); }
.footer-social svg { width: 16px; height: 16px; fill: none; stroke: currentColor; stroke-width: 2; }
.footer-col h4 { color: white; font-size: .875rem; margin-bottom: 20px; font-family: var(--font-body); font-weight: 600; }

.footer-col ul{
    padding-left: 0;
}
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { font-size: .84375rem; color: rgba(255,255,255,.45); transition: var(--transition); }

.footer-col ul li a:hover { color: var(--primary); }
.footer-contact-item { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 14px; }
.footer-contact-item svg { width: 16px; height: 16px; stroke: var(--primary); fill: none; stroke-width: 2; flex-shrink: 0; margin-top: 2px; }
.footer-contact-item span { font-size: .84375rem; color: rgba(255,255,255,.45); line-height: 1.5; }
.footer-bottom { padding: 22px 0; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px; }
.footer-bottom p { font-size: .8125rem; color: rgba(255,255,255,.3); }
.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a { font-size: .8125rem; color: rgba(255,255,255,.3); transition: var(--transition); }
.footer-bottom-links a:hover { color: var(--primary); }
.footer-contact_main{    
    /* display: flex;
    gap: 15px;
    align-items: center; */
    }

/* ============================================
   BUTTONS GLOBAL
   ============================================ */
.btn-green {
  background: linear-gradient(135deg, var(--primary), #3db898);
  color: var(--dark); font-weight: 700;
  padding: 14px 28px; border-radius: 10px; border: none;
  text-decoration: none; display: inline-flex; align-items: center; gap: 8px;
  transition: all .25s;
  box-shadow: 0 8px 30px rgba(111,209,180,.3);
  font-size: .95rem;
}
.btn-green:hover { transform: translateY(-2px); box-shadow: 0 16px 40px rgba(111,209,180,.4); color: var(--dark); }
.btn-outline-green {
  background: transparent;
  color: var(--primary); font-weight: 600;
  padding: 13px 28px; border-radius: 10px;
  border: 1px solid rgba(111,209,180,.4);
  text-decoration: none; display: inline-flex; align-items: center; gap: 8px;
  transition: all .25s;
  font-size: .95rem;
}
.btn-outline-green:hover { background: rgba(111,209,180,.1); color: var(--primary); }

/* ============================================
   UTILITIES
   ============================================ */
.text-primary-green { color: var(--primary) !important; }
.glow-text {
  text-shadow: 0 0 30px rgba(111,209,180,.4);
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
}
@media (max-width: 991px) {
  section { padding: 70px 0; }
  .dashboard-wrap { margin-top: 50px; }
  .stat-card::after { display: none; }
  .timeline::before { left: 20px; }
  .step-marker { width: 42px; height: 42px; font-size: 1.1rem; }
  .dash-grid { grid-template-columns: 1fr; }
  .benefit-row { margin-bottom: 60px; }
  .benefit-visual { height: 200px; }
}
@media (max-width: 767px) {
  .hero-headline { font-size: 2rem; }
  .trust-indicators { gap: 14px; }
  .float-el { display: none; }
  .dash-stats { grid-template-columns: repeat(2, 1fr); }
}

/***************Service********************/


/* 6-Step Timeline Process */
.timeline-container {
  position: relative;
  padding: 2rem 0;
}

.timeline-line {
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, rgba(111, 209, 180, 0.1) 0%, var(--primary) 50%, rgba(15, 36, 25, 0.1) 100%);
  transform: translateX(-50%);
  z-index: 1;
}

.timeline-step {
  display: flex;
  margin-bottom: 4rem;
  position: relative;
  z-index: 2;
}

.timeline-step:last-child {
  margin-bottom: 0;
}

.timeline-content {
  width: 45%;
  padding: 1.5rem;
}

.timeline-step:nth-child(even) {
  flex-direction: row-reverse;
}

.timeline-badge-center {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: var(--secondary);
  border: 3px solid var(--primary);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-headings);
  font-weight: 700;
  box-shadow: 0 0 15px rgba(111,209,180,0.4);
}

.timeline-visual {
  width: 45%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.step-illustration {
  width: 100%;
  max-width: 220px;
  border-radius: var(--radius-md);
  padding: 1rem;
  background: #ffffff;
  border: 1px solid rgba(111, 209, 180, 0.15);
  box-shadow: var(--shadow-sm);
  transition: var(--transition-normal);
}

.timeline-step:hover .step-illustration {
  transform: scale(1.05);
  border-color: var(--primary);
  box-shadow: var(--shadow-md);
}



/* Gradient Mesh Backgrounds */
.mesh-bg-light {
  position: relative;
  background-color: #ffffff;
  overflow: hidden;
}

.mesh-bg-light::before {
  content: "";
  position: absolute;
  top: -20%;
  left: -10%;
  width: 60%;
  height: 60%;
  background: radial-gradient(circle, rgba(111, 209, 180, 0.15) 0%, rgba(255, 255, 255, 0) 70%);
  z-index: 0;
  pointer-events: none;
}

.mesh-bg-light::after {
  content: "";
  position: absolute;
  bottom: -20%;
  right: -10%;
  width: 60%;
  height: 60%;
  background: radial-gradient(circle, rgba(15, 36, 25, 0.03) 0%, rgba(255, 255, 255, 0) 70%);
  z-index: 0;
  pointer-events: none;
}

.mesh-bg-dark {
  position: relative;
  background-color: var(--dark);
  color: #ffffff;
  overflow: hidden;
}

.mesh-bg-dark::before {
  content: "";
  position: absolute;
  top: -10%;
  right: -10%;
  width: 50%;
  height: 50%;
  background: radial-gradient(circle, rgba(111, 209, 180, 0.12) 0%, rgba(9, 42, 32, 0) 75%);
  z-index: 0;
  pointer-events: none;
}

.mesh-bg-dark::after {
  content: "";
  position: absolute;
  bottom: -10%;
  left: -10%;
  width: 50%;
  height: 50%;
  background: radial-gradient(circle, rgba(111, 209, 180, 0.08) 0%, rgba(9, 42, 32, 0) 75%);
  z-index: 0;
  pointer-events: none;
}

/* Badge Styling */
.badge-custom {
  background-color: rgba(111, 209, 180, 0.12);
  color: #38a182;
  font-weight: 600;
  padding: 0.5rem 1rem;
  border-radius: var(--radius-pill);
  font-size: 0.85rem;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 1.25rem;
  border: 1px solid rgba(111, 209, 180, 0.25);
}

.badge-custom-dark {
  background-color: rgba(111, 209, 180, 0.08);
  color: var(--primary);
  font-weight: 600;
  padding: 0.5rem 1rem;
  border-radius: var(--radius-pill);
  font-size: 0.85rem;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 1.25rem;
  border: 1px solid rgba(111, 209, 180, 0.15);
}
.network-indicator-badge {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: var(--primary);
    display: inline-block;
    box-shadow: 0 0 10px var(--primary);
}

.interactive-map-container {
    position: relative;
    background-color: var(--dark-deep);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    border: 1px solid rgba(111, 209, 180, 0.2);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
}

.network-details-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(111, 209, 180, 0.15);
    border-radius: var(--radius-md);
    padding: 1.5rem;
    height: 100%;
}
.usa-map-svg {
    width: 100%;
    height: auto;
    max-height: 450px;
    display: block;
}

/* Map Markers */
.map-marker {
  cursor: pointer;
  outline: none;
}

.marker-pulse {
  animation: pulse-ring 2s infinite;
  transform-origin: center;
}

.marker-point {
  fill: var(--primary);
  stroke: #ffffff;
  stroke-width: 2px;
  transition: var(--transition-fast);
}

.map-marker:hover .marker-point {
  fill: #ffffff;
  stroke: var(--primary);
  transform: scale(1.3);
  transform-origin: center;
}

@keyframes pulse-ring {
  0% {
    transform: scale(0.6);
    opacity: 0.9;
  }
  100% {
    transform: scale(2.2);
    opacity: 0;
  }
}

/* Connection Lines */
.map-connection-line {
  fill: none;
  stroke: var(--primary);
  stroke-width: 1.5px;
  stroke-linecap: round;
  stroke-dasharray: 8 6;
  animation: dashAnimation 25s infinite linear;
}

@keyframes dashAnimation {
  to {
    stroke-dashoffset: -1000;
  }
}

.network-details-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(111,209,180,0.15);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  height: 100%;
}

/* Cookie Consent CSS */

#cookiePopup {
    position: fixed;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    background-color: #303334;
    padding: 24px;
    /* display: flex; */
    flex-wrap: wrap;
    z-index: 999999;
    gap: 20px;
    align-items: center;
    justify-content: space-between;
    text-align: justify;
    display: none;
}

.cookieContentWrap {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

#cookiePopup h4 {
    font-size: 14px;
    color: var(--light-medium-gray);
    margin-bottom: 0;
    font-weight: 700;
    text-transform: uppercase;
    line-height: 1.3;
}

#cookiePopup p {
    font-size: 14px;
    color: var(--light-medium-gray);
    margin-bottom: 0;
    letter-spacing: 1px;
    line-height: 1.7;
    max-width: 790px;
    text-align: justify;
}

#cookiePopup p a {
    color: var(--light-medium-gray);
    text-decoration: underline;
}

.cookieBtns {
    display: inline-flex;
    gap: 10px;
}

.cookieBtns button {
    font-size: 14px;
    margin: 0;
    color: var(--light-medium-gray);
    padding: 10px 20px;
    border-radius: 5px;
    background: transparent;
    cursor: pointer;
    transition: all 0.5s ease;
    border: 2px solid var(--light-medium-gray);
}

.cookieBtns button:hover {
    background: var(--base-color);
    color: var(--light-medium-gray);
}
/* Cookie Consent CSS */


/* ---------- Contact Page ---------- */
.page-hero {
    background: var(--forest-dk);
    padding: 140px 0 88px;
    position: relative;
    overflow: hidden;
    text-align: center;
}
.page-hero-mesh {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 60% 70% at 50% 50%, rgba(111, 209, 180, .1) 0%, transparent 60%);
}
.breadcrumb {
    background: transparent;
    padding: 0;
    margin-bottom: 18px;
    position: relative;
    z-index: 1;
    justify-content: center;
}
.breadcrumb-item.active {
    color: var(--mint);
    font-size: .8125rem;
}
.breadcrumb-item a {
    color: rgba(255, 255, 255, .4);
    font-size: .8125rem;
    transition: var(--trans);
}
.breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255, 255, 255, .25);
}
.page-hero h1 {
    color: white;
    position: relative;
    z-index: 1;
}
.page-hero p {
    color: rgba(255, 255, 255, .5);
    max-width: 520px;
    margin: 16px auto 0;
    font-size: 1rem;
    position: relative;
    z-index: 1;
}
.contact-form-card {
  background: var(--white); border: 1px solid var(--gray-200); border-radius: var(--radius-xl);
  padding: 40px; box-shadow: var(--shadow-md);
}
.form-label { font-size: .84375rem; font-weight: 600; color: var(--text); margin-bottom: 6px; }
.form-control, .form-select {
  border: 1.5px solid var(--gray-200); border-radius: 9px;
  font-family: var(--font-body); font-size: .9rem; color: var(--text);
  padding: 12px 16px; transition: var(--trans);
}
.form-control:focus, .form-select:focus {
  border-color: var(--mint); box-shadow: 0 0 0 3px rgba(111,209,180,.15);
}
.form-control.is-invalid, .form-select.is-invalid { border-color: #ef4444; }
.invalid-feedback { font-size: .78rem; color: #ef4444; }
.contact-info-card {
  background: var(--forest); border-radius: var(--radius-xl); padding: 36px;
  position: relative; overflow: hidden; height: 100%;
}
.contact-info-mesh { position: absolute; inset: 0; background: radial-gradient(ellipse 70% 60% at 80% 20%, rgba(111,209,180,.18) 0%, transparent 55%); }
.contact-info-row { display: flex; align-items: flex-start; gap: 14px; margin-bottom: 22px; position: relative; z-index: 1; }
.contact-info-icon { width: 40px; height: 40px; border-radius: 10px; background: rgba(111,209,180,.12); display: grid; place-items: center; flex-shrink: 0; }
.contact-info-icon svg { width: 18px; height: 18px; fill: none; stroke: var(--mint); stroke-width: 2; }
.contact-info-label { font-size: .75rem; color: rgba(255,255,255,.4); margin-bottom: 2px; font-weight: 600; text-transform: uppercase; letter-spacing: .06em; }
.contact-info-val { font-size: .9rem; color: rgba(255,255,255,.85); }
.form-success-state { display: none; text-align: center; padding: 40px 20px; }
.form-success-state svg { width: 56px; height: 56px; stroke: var(--mint-dim); fill: none; stroke-width: 1.5; margin: 0 auto 16px; }
.form-success-state h3 { color: var(--forest); margin-bottom: 8px; }
.btn-primary-enzo {
    background: var(--mint);
    color: var(--forest-dk);
    box-shadow: 0 4px 20px rgba(111, 209, 180, .35);
}
