/* ═══════════════════════════════════════════════════════════════
   MELMINOX — PROFESSIONAL WHITE & BLUE DESIGN SYSTEM
   ═══════════════════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  /* Blue Palette */
  --blue-900:  #0A1628;
  --blue-800:  #0F2044;
  --blue-700:  #1A3A6B;
  --blue-600:  #1E4FC2;
  --blue-500:  #2563EB;
  --blue-400:  #3B82F6;
  --blue-300:  #60A5FA;
  --blue-100:  #DBEAFE;
  --blue-50:   #EFF6FF;

  /* Whites & Greys */
  --white:     #FFFFFF;
  --grey-50:   #F8FAFC;
  --grey-100:  #F1F5F9;
  --grey-200:  #E2E8F0;
  --grey-300:  #CBD5E1;
  --grey-400:  #94A3B8;
  --grey-500:  #64748B;
  --grey-700:  #334155;
  --grey-900:  #0F172A;

  /* Typography */
  --font-h: 'Plus Jakarta Sans', sans-serif;
  --font-b: 'Inter', sans-serif;

  /* Spacing */
  --nav-h: 76px;
  --section-py: 100px;
  --max-w: 1200px;

  /* Misc */
  --radius-sm:  8px;
  --radius-md:  12px;
  --radius-lg:  20px;
  --radius-xl:  28px;
  --shadow-sm:  0 1px 3px rgba(15,23,42,0.08), 0 1px 2px rgba(15,23,42,0.06);
  --shadow-md:  0 4px 16px rgba(15,23,42,0.10), 0 2px 6px rgba(15,23,42,0.06);
  --shadow-lg:  0 20px 48px rgba(15,23,42,0.12), 0 8px 20px rgba(15,23,42,0.08);
  --shadow-blue: 0 8px 32px rgba(37,99,235,0.20);
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  background: var(--white);
  color: var(--grey-900);
  font-family: var(--font-b);
  font-size: 16px;
  line-height: 1.7;
  overflow-x: hidden;
}

/* ─────────────────────────────────────────────
   GLOBAL UTILITIES
───────────────────────────────────────────── */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 40px;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--blue-500);
  margin-bottom: 1rem;
}
.section-label::before {
  content: '';
  display: block;
  width: 18px; height: 2px;
  background: var(--blue-500);
  border-radius: 2px;
  flex-shrink: 0;
}

.section-title {
  font-family: var(--font-h);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
  color: var(--grey-900);
}

.section-title span {
  color: var(--blue-500);
}

.section-sub {
  color: var(--grey-500);
  font-size: 1.05rem;
  max-width: 520px;
  margin-top: 1rem;
  font-weight: 400;
  line-height: 1.8;
}

/* Buttons */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--blue-500);
  color: var(--white);
  padding: 14px 32px;
  border-radius: var(--radius-md);
  font-family: var(--font-b);
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.25s var(--ease);
  letter-spacing: -0.01em;
  position: relative;
  overflow: hidden;
}
.btn-primary:hover {
  background: var(--blue-600);
  transform: translateY(-2px);
  box-shadow: var(--shadow-blue);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--blue-500);
  padding: 14px 32px;
  border-radius: var(--radius-md);
  font-family: var(--font-b);
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  border: 1.5px solid var(--blue-200);
  cursor: pointer;
  transition: all 0.25s var(--ease);
  letter-spacing: -0.01em;
}
.btn-secondary:hover {
  background: var(--blue-50);
  border-color: var(--blue-400);
  transform: translateY(-2px);
}

.btn-white {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  color: var(--blue-600);
  padding: 14px 32px;
  border-radius: var(--radius-md);
  font-family: var(--font-b);
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.25s var(--ease);
  letter-spacing: -0.01em;
}
.btn-white:hover {
  background: var(--blue-50);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-outline-white {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--white);
  padding: 14px 32px;
  border-radius: var(--radius-md);
  font-family: var(--font-b);
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  border: 1.5px solid rgba(255,255,255,0.35);
  cursor: pointer;
  transition: all 0.25s var(--ease);
  letter-spacing: -0.01em;
}
.btn-outline-white:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.6);
}

/* AOS */
[data-aos] {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.65s var(--ease), transform 0.65s var(--ease);
}
[data-aos].anim {
  opacity: 1;
  transform: translateY(0);
}
[data-aos="fade-right"] { transform: translateX(-22px); }
[data-aos="fade-right"].anim { transform: translateX(0); }
[data-aos="fade-left"]  { transform: translateX(22px); }
[data-aos="fade-left"].anim  { transform: translateX(0); }


/* ─────────────────────────────────────────────
   NAVIGATION
───────────────────────────────────────────── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 500;
  height: var(--nav-h);
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--grey-200);
  transition: box-shadow 0.3s;
}
nav.scrolled {
  box-shadow: var(--shadow-md);
}

.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 40px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

/* Logo */
.nav-logo {
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 3px;
  flex-shrink: 0;
}
.logo-mel {
  font-family: var(--font-h);
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--blue-900);
  letter-spacing: -0.04em;
}
.logo-minox {
  font-family: var(--font-h);
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--blue-500);
  letter-spacing: -0.04em;
}

/* Nav Links */
.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}
.nav-link {
  color: var(--grey-500);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: -0.01em;
  transition: color 0.2s;
  white-space: nowrap;
}
.nav-link:hover { color: var(--blue-600); }
.nav-link.active { color: var(--blue-600); }

/* Nav CTA */
.nav-right {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}
.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--blue-500);
  color: var(--white);
  padding: 10px 22px;
  border-radius: var(--radius-sm);
  font-family: var(--font-b);
  font-weight: 600;
  font-size: 0.875rem;
  text-decoration: none;
  white-space: nowrap;
  transition: all 0.25s;
}
.nav-cta:hover {
  background: var(--blue-600);
  box-shadow: var(--shadow-blue);
  transform: translateY(-1px);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.hamburger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--grey-700);
  border-radius: 2px;
  transition: all 0.28s var(--ease);
}
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  top: var(--nav-h); left: 0; right: 0;
  background: var(--white);
  border-bottom: 1px solid var(--grey-200);
  padding: 1.5rem 40px 2rem;
  transform: translateY(-10px);
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s var(--ease);
  z-index: 490;
  box-shadow: var(--shadow-lg);
}
.mobile-menu.open {
  transform: translateY(0);
  opacity: 1;
  pointer-events: all;
}
.mobile-menu ul { list-style: none; display: flex; flex-direction: column; gap: 0; }
.mobile-link {
  display: block;
  color: var(--grey-700);
  text-decoration: none;
  font-size: 1rem;
  font-weight: 500;
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--grey-100);
  transition: color 0.2s;
}
.mobile-link:hover { color: var(--blue-600); }
.mobile-cta-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 1.25rem;
  background: var(--blue-500);
  color: white;
  padding: 12px 28px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  text-decoration: none;
  font-size: 0.95rem;
  transition: background 0.2s;
}
.mobile-cta-link:hover { background: var(--blue-600); }


/* ─────────────────────────────────────────────
   HERO — SPLIT LAYOUT
───────────────────────────────────────────── */
.hero {
  padding-top: var(--nav-h);
  background: var(--white);
  overflow: hidden;
  position: relative;
}

.hero-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 80px 40px 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero-left { padding-bottom: 80px; }

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--blue-50);
  border: 1px solid var(--blue-100);
  color: var(--blue-600);
  font-size: 0.78rem;
  font-weight: 600;
  padding: 5px 14px;
  border-radius: 100px;
  margin-bottom: 1.5rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.hero-eyebrow-dot {
  width: 7px; height: 7px;
  background: var(--blue-500);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.7); }
}

.hero-title {
  font-family: var(--font-h);
  font-size: clamp(2.5rem, 4.5vw, 4rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.06;
  color: var(--grey-900);
  margin-bottom: 1.5rem;
}
.hero-title .line-blue { color: var(--blue-500); }
.hero-title .line-underline {
  position: relative;
  display: inline-block;
}
.hero-title .line-underline::after {
  content: '';
  position: absolute;
  left: 0; bottom: 3px;
  width: 100%; height: 5px;
  background: var(--blue-100);
  border-radius: 3px;
  z-index: -1;
}

.hero-sub {
  font-size: 1.1rem;
  color: var(--grey-500);
  line-height: 1.8;
  margin-bottom: 2.25rem;
  max-width: 480px;
  font-weight: 400;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.hero-trust {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.trust-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  color: var(--grey-500);
  font-weight: 500;
}
.trust-icon {
  width: 18px; height: 18px;
  color: var(--blue-500);
  flex-shrink: 0;
}
.trust-sep {
  width: 1px; height: 16px;
  background: var(--grey-300);
}

/* Hero Right — Stats Card Stack */
.hero-right {
  position: relative;
  padding-bottom: 40px;
}

.hero-visual {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

/* Main dashboard card */
.dashboard-card {
  background: var(--white);
  border: 1px solid var(--grey-200);
  border-radius: var(--radius-xl);
  padding: 2rem;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}
.dashboard-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--blue-500), var(--blue-300));
  border-radius: var(--radius-xl) var(--radius-xl) 0 0;
}

.dc-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.5rem;
}
.dc-title {
  font-family: var(--font-h);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--grey-900);
}
.dc-live {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.72rem;
  font-weight: 600;
  color: #16A34A;
  background: #F0FDF4;
  border: 1px solid #BBF7D0;
  padding: 3px 10px;
  border-radius: 100px;
}
.dc-live-dot {
  width: 6px; height: 6px;
  background: #16A34A;
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

.dc-metrics {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.dc-metric {
  background: var(--grey-50);
  border-radius: var(--radius-md);
  padding: 1rem;
  text-align: center;
}
.dc-metric .val {
  font-family: var(--font-h);
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--blue-600);
  letter-spacing: -0.04em;
  line-height: 1;
}
.dc-metric .lbl {
  font-size: 0.72rem;
  color: var(--grey-500);
  font-weight: 500;
  margin-top: 4px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* Bar chart */
.dc-chart {
  display: flex;
  align-items: flex-end;
  gap: 6px;
  height: 60px;
}
.dc-bar {
  flex: 1;
  background: var(--blue-100);
  border-radius: 4px 4px 0 0;
  transition: background 0.2s;
  position: relative;
}
.dc-bar.active { background: var(--blue-500); }
.dc-bar:hover { background: var(--blue-300); }

/* Float cards */
.float-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.float-card {
  background: var(--white);
  border: 1px solid var(--grey-200);
  border-radius: var(--radius-lg);
  padding: 1.25rem 1.5rem;
  box-shadow: var(--shadow-sm);
  display: flex;
  align-items: center;
  gap: 1rem;
  transition: all 0.25s;
}
.float-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}
.fc-icon {
  width: 42px; height: 42px;
  border-radius: var(--radius-sm);
  background: var(--blue-50);
  display: flex; align-items: center; justify-content: center;
  color: var(--blue-500);
  flex-shrink: 0;
}
.fc-data .fc-num {
  font-family: var(--font-h);
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--grey-900);
  letter-spacing: -0.04em;
  line-height: 1;
}
.fc-data .fc-lbl {
  font-size: 0.75rem;
  color: var(--grey-500);
  font-weight: 500;
  margin-top: 3px;
  letter-spacing: 0.01em;
}
.fc-up {
  font-size: 0.7rem;
  color: #16A34A;
  font-weight: 600;
  background: #F0FDF4;
  padding: 2px 7px;
  border-radius: 100px;
  border: 1px solid #BBF7D0;
  margin-left: auto;
}

/* Hero bottom full-width band */
.hero-band {
  margin-top: 60px;
  background: var(--blue-900);
  padding: 28px 40px;
}
.hero-band-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.5rem;
}
.hero-band-stat {
  text-align: center;
}
.hbs-num {
  font-family: var(--font-h);
  font-size: 1.9rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.04em;
  line-height: 1;
}
.hbs-num span { color: var(--blue-300); }
.hbs-lbl {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.5);
  margin-top: 5px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 500;
}
.hbs-sep {
  width: 1px; height: 40px;
  background: rgba(255,255,255,0.12);
}


/* ─────────────────────────────────────────────
   MARQUEE / SERVICES TICKER
───────────────────────────────────────────── */
.marquee-section {
  background: var(--grey-50);
  border-top: 1px solid var(--grey-200);
  border-bottom: 1px solid var(--grey-200);
  padding: 16px 0;
  overflow: hidden;
}
.marquee-track {
  display: inline-flex;
  gap: 2.5rem;
  white-space: nowrap;
  animation: marquee 28s linear infinite;
}
.marquee-track:hover { animation-play-state: paused; }
.marquee-track span {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--grey-500);
}
.marquee-track span:hover { color: var(--blue-500); cursor: default; }
.marquee-sep {
  color: var(--blue-300) !important;
  font-size: 1rem !important;
}
@keyframes marquee {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}


/* ─────────────────────────────────────────────
   SERVICES
───────────────────────────────────────────── */
.services-section {
  padding: var(--section-py) 0;
  background: var(--white);
}

.services-top {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 3.5rem;
  flex-wrap: wrap;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

.service-card {
  background: var(--white);
  border: 1px solid var(--grey-200);
  border-radius: var(--radius-lg);
  padding: 2rem 1.75rem;
  cursor: default;
  transition: all 0.28s var(--ease);
  position: relative;
  overflow: hidden;
}
.service-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--blue-500), var(--blue-300));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s var(--ease);
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
}
.service-card:hover {
  border-color: var(--blue-200);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}
.service-card:hover::after { transform: scaleX(1); }

.service-icon {
  width: 48px; height: 48px;
  background: var(--blue-50);
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  color: var(--blue-500);
  margin-bottom: 1.25rem;
  transition: background 0.25s;
}
.service-card:hover .service-icon { background: var(--blue-100); }

.service-num {
  font-size: 0.68rem;
  font-weight: 700;
  color: var(--grey-400);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.service-card h3 {
  font-family: var(--font-h);
  font-size: 1rem;
  font-weight: 700;
  color: var(--grey-900);
  margin-bottom: 0.6rem;
  letter-spacing: -0.02em;
}

.service-card p {
  font-size: 0.875rem;
  color: var(--grey-500);
  line-height: 1.7;
  font-weight: 400;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin-top: 1.25rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--blue-500);
  text-decoration: none;
  opacity: 0;
  transform: translateX(-6px);
  transition: all 0.25s;
}
.service-card:hover .service-link {
  opacity: 1;
  transform: translateX(0);
}


/* ─────────────────────────────────────────────
   WHY US
───────────────────────────────────────────── */
.why-section {
  padding: var(--section-py) 0;
  background: var(--grey-50);
}

.why-layout {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 6rem;
  align-items: center;
}

.why-left .section-title { margin-bottom: 1rem; }
.why-left .section-sub { margin-bottom: 2rem; }

.why-certifications {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}
.cert-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--white);
  border: 1px solid var(--grey-200);
  border-radius: var(--radius-sm);
  padding: 6px 14px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--grey-700);
  box-shadow: var(--shadow-sm);
}
.cert-badge svg { color: var(--blue-500); }

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.why-card {
  background: var(--white);
  border: 1px solid var(--grey-200);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  transition: all 0.28s var(--ease);
}
.why-card:hover {
  border-color: var(--blue-200);
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.why-card-icon {
  width: 40px; height: 40px;
  background: var(--blue-50);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  color: var(--blue-500);
  margin-bottom: 1rem;
}

.why-card h3 {
  font-family: var(--font-h);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--grey-900);
  margin-bottom: 0.45rem;
  letter-spacing: -0.02em;
}
.why-card p {
  font-size: 0.855rem;
  color: var(--grey-500);
  line-height: 1.68;
}


/* ─────────────────────────────────────────────
   PROCESS
───────────────────────────────────────────── */
.process-section {
  padding: var(--section-py) 0;
  background: var(--white);
}

.process-layout {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 6rem;
  align-items: start;
}

.process-right { display: flex; flex-direction: column; gap: 1px; }

.process-item {
  display: flex;
  gap: 1.5rem;
  padding: 1.75rem 0;
  border-bottom: 1px solid var(--grey-100);
  cursor: default;
  transition: all 0.25s;
  position: relative;
}
.process-item:last-child { border-bottom: none; }
.process-item:hover { background: var(--blue-50); margin: 0 -1.5rem; padding-left: 1.5rem; padding-right: 1.5rem; border-radius: var(--radius-md); border-bottom: 1px solid transparent; }

.pi-num {
  width: 44px; height: 44px;
  border: 2px solid var(--grey-200);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-h);
  font-size: 0.82rem;
  font-weight: 800;
  color: var(--grey-400);
  flex-shrink: 0;
  transition: all 0.25s;
}
.process-item:hover .pi-num {
  border-color: var(--blue-500);
  color: var(--blue-500);
  background: var(--blue-50);
}

.pi-tag {
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--blue-500);
  margin-bottom: 0.4rem;
}
.pi-body h3 {
  font-family: var(--font-h);
  font-size: 1.02rem;
  font-weight: 700;
  color: var(--grey-900);
  margin-bottom: 0.45rem;
  letter-spacing: -0.02em;
}
.pi-body p {
  font-size: 0.875rem;
  color: var(--grey-500);
  line-height: 1.72;
}
.pi-tags {
  display: flex; flex-wrap: wrap; gap: 0.4rem; margin-top: 0.75rem;
}
.pi-tags span {
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 600;
  color: var(--blue-500);
  background: var(--blue-50);
  border: 1px solid var(--blue-100);
  padding: 2px 9px;
  border-radius: 100px;
}


/* ─────────────────────────────────────────────
   RESULTS
───────────────────────────────────────────── */
.results-section {
  padding: var(--section-py) 0;
  background: var(--blue-900);
  position: relative;
  overflow: hidden;
}

.results-section::before {
  content: '';
  position: absolute;
  top: -200px; right: -200px;
  width: 600px; height: 600px;
  background: radial-gradient(ellipse, rgba(59,130,246,0.15) 0%, transparent 60%);
  pointer-events: none;
}

.results-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 3.5rem;
  flex-wrap: wrap;
}

.results-header .section-label { color: var(--blue-300); }
.results-header .section-label::before { background: var(--blue-300); }
.results-header .section-title { color: var(--white); }
.results-header .section-sub { color: rgba(255,255,255,0.55); text-align: right; max-width: 340px; }

.results-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 1.25rem;
  margin-bottom: 2.5rem;
}

.result-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: all 0.3s var(--ease);
  position: relative;
  overflow: hidden;
}
.result-card:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.2);
  transform: translateY(-4px);
}

.result-card-featured {
  background: var(--blue-500);
  border-color: var(--blue-400);
}
.result-card-featured:hover { background: var(--blue-600); border-color: var(--blue-400); }

.result-card .metric {
  font-family: var(--font-h);
  font-size: 3rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.05em;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.result-card-featured .metric { font-size: 4rem; }

.result-card .metric-label {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.9);
  font-weight: 600;
  margin-bottom: 0.35rem;
}
.result-card .metric-sub {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
  font-weight: 400;
  line-height: 1.5;
}

.result-bar {
  height: 2px;
  background: rgba(255,255,255,0.1);
  border-radius: 2px;
  margin-top: 1.5rem;
  overflow: hidden;
}
.result-bar-fill {
  height: 100%;
  background: var(--blue-300);
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 1.2s var(--ease) 0.2s;
}
.result-card-featured .result-bar { background: rgba(255,255,255,0.2); }
.result-card-featured .result-bar-fill { background: rgba(255,255,255,0.8); }
.result-bar-fill.animated { transform: scaleX(1); }

.results-cta {
  text-align: center;
  margin-top: 2.5rem;
}


/* ─────────────────────────────────────────────
   TESTIMONIALS
───────────────────────────────────────────── */
.testimonials-section {
  padding: var(--section-py) 0;
  background: var(--grey-50);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.tcard {
  background: var(--white);
  border: 1px solid var(--grey-200);
  border-radius: var(--radius-lg);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  transition: all 0.28s var(--ease);
}
.tcard:hover {
  border-color: var(--blue-200);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.tcard-stars {
  display: flex;
  gap: 2px;
  margin-bottom: 1.25rem;
}
.tcard-stars svg { color: #F59E0B; }

.tcard blockquote {
  font-size: 0.95rem;
  color: var(--grey-700);
  line-height: 1.8;
  font-weight: 400;
  flex: 1;
  margin-bottom: 1.75rem;
}

.tcard-footer {
  display: flex;
  align-items: center;
  gap: 0.875rem;
}

.t-avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--blue-500);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--white);
  font-family: var(--font-h);
  flex-shrink: 0;
}

.t-name {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--grey-900);
  letter-spacing: -0.01em;
}
.t-role {
  font-size: 0.8rem;
  color: var(--grey-500);
  margin-top: 2px;
}


/* ─────────────────────────────────────────────
   BLOG
───────────────────────────────────────────── */
.blog-section {
  padding: var(--section-py) 0;
  background: var(--white);
  overflow: hidden;
}

.blog-top {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.blog-scroll-wrap {
  position: relative;
}
.blog-fade-l,
.blog-fade-r {
  position: absolute;
  top: 0; bottom: 0;
  width: 100px;
  z-index: 5;
  pointer-events: none;
}
.blog-fade-l { left: 0; background: linear-gradient(to right, var(--white), transparent); }
.blog-fade-r { right: 0; background: linear-gradient(to left, var(--white), transparent); }

.blog-track {
  display: flex;
  gap: 1.5rem;
  animation: marquee 32s linear infinite;
  width: max-content;
  padding: 6px 0;
}
.blog-track:hover { animation-play-state: paused; }

.blog-card {
  width: 320px;
  flex-shrink: 0;
  background: var(--white);
  border: 1px solid var(--grey-200);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  transition: all 0.28s var(--ease);
  cursor: pointer;
}
.blog-card:hover {
  border-color: var(--blue-200);
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.blog-tag {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--blue-600);
  background: var(--blue-50);
  border: 1px solid var(--blue-100);
  padding: 3px 10px;
  border-radius: 100px;
  margin-bottom: 1rem;
}

.blog-card h3 {
  font-family: var(--font-h);
  font-size: 0.97rem;
  font-weight: 700;
  color: var(--grey-900);
  line-height: 1.45;
  margin-bottom: 0.75rem;
  letter-spacing: -0.02em;
}
.blog-card p {
  font-size: 0.845rem;
  color: var(--grey-500);
  line-height: 1.7;
  flex: 1;
}
.read-more {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin-top: 1.25rem;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--blue-500);
  text-decoration: none;
  transition: gap 0.2s;
}
.read-more:hover { gap: 8px; }


/* ─────────────────────────────────────────────
   CTA BANNER
───────────────────────────────────────────── */
.cta-section {
  background: var(--blue-500);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 400px; height: 400px;
  background: rgba(255,255,255,0.06);
  border-radius: 50%;
  pointer-events: none;
}
.cta-section::after {
  content: '';
  position: absolute;
  bottom: -120px; left: -80px;
  width: 350px; height: 350px;
  background: rgba(255,255,255,0.05);
  border-radius: 50%;
  pointer-events: none;
}
.cta-inner {
  position: relative;
  z-index: 5;
  text-align: center;
}
.cta-inner .section-label { color: rgba(255,255,255,0.7); }
.cta-inner .section-label::before { background: rgba(255,255,255,0.7); }
.cta-inner h2 {
  font-family: var(--font-h);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.04em;
  line-height: 1.1;
  margin-bottom: 1rem;
}
.cta-inner p {
  color: rgba(255,255,255,0.7);
  font-size: 1.05rem;
  max-width: 520px;
  margin: 0 auto 2.5rem;
  line-height: 1.75;
}
.cta-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }


/* ─────────────────────────────────────────────
   CONTACT
───────────────────────────────────────────── */
.contact-section {
  padding: var(--section-py) 0;
  background: var(--white);
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: start;
}

.contact-left .section-title { margin-bottom: 1rem; }
.contact-left p {
  color: var(--grey-500);
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 2rem;
  max-width: 420px;
}

.contact-trust {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 2rem;
}
.ct-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.88rem;
  color: var(--grey-700);
  font-weight: 500;
}
.ct-check {
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--blue-50);
  border: 1px solid var(--blue-100);
  display: flex; align-items: center; justify-content: center;
  color: var(--blue-500);
  font-size: 0.62rem;
  font-weight: 700;
  flex-shrink: 0;
}

.contact-socials {
  display: flex;
  gap: 0.5rem;
}
.social-btn {
  width: 40px; height: 40px;
  border-radius: var(--radius-sm);
  background: var(--grey-100);
  border: 1px solid var(--grey-200);
  display: flex; align-items: center; justify-content: center;
  color: var(--grey-500);
  text-decoration: none;
  transition: all 0.22s;
}
.social-btn:hover {
  background: var(--blue-50);
  border-color: var(--blue-200);
  color: var(--blue-500);
  transform: translateY(-2px);
}

/* Contact Form */
.contact-form {
  background: var(--grey-50);
  border: 1px solid var(--grey-200);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
}

.form-title {
  font-family: var(--font-h);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--grey-900);
  letter-spacing: -0.02em;
  margin-bottom: 1.75rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 1rem;
}

.form-group label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--grey-700);
  letter-spacing: 0.01em;
}

.form-group input,
.form-group textarea {
  background: var(--white);
  border: 1px solid var(--grey-200);
  border-radius: var(--radius-sm);
  padding: 11px 14px;
  color: var(--grey-900);
  font-family: var(--font-b);
  font-size: 0.9rem;
  font-weight: 400;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  width: 100%;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--grey-400); }
.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--blue-400);
  box-shadow: 0 0 0 3px rgba(37,99,235,0.1);
}
.form-group textarea { resize: vertical; min-height: 110px; }

.phone-input-wrap {
  display: flex;
  gap: 0.65rem;
  width: 100%;
}
.phone-input-wrap .select-wrap {
  flex: 0 0 110px;
}
.phone-input-wrap input {
  flex: 1;
  min-width: 0;
}

.select-wrap { position: relative; }
.form-group select {
  background: var(--white);
  border: 1px solid var(--grey-200);
  border-radius: var(--radius-sm);
  padding: 11px 40px 11px 14px;
  color: var(--grey-900);
  font-family: var(--font-b);
  font-size: 0.9rem;
  font-weight: 400;
  outline: none;
  width: 100%;
  -webkit-appearance: none; appearance: none; cursor: pointer;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.form-group select:focus {
  border-color: var(--blue-400);
  box-shadow: 0 0 0 3px rgba(37,99,235,0.1);
}
.form-group select option { background: var(--white); }
.sel-arrow {
  position: absolute; right: 13px; top: 50%;
  transform: translateY(-50%);
  color: var(--grey-400); pointer-events: none;
}

.form-submit {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  width: 100%;
  background: var(--blue-500);
  color: var(--white);
  border: none;
  padding: 14px;
  border-radius: var(--radius-md);
  font-family: var(--font-b);
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  margin-top: 0.5rem;
  transition: all 0.25s var(--ease);
  letter-spacing: -0.01em;
}
.form-submit:hover {
  background: var(--blue-600);
  box-shadow: var(--shadow-blue);
  transform: translateY(-1px);
}


/* ─────────────────────────────────────────────
   FOOTER
───────────────────────────────────────────── */
footer {
  background: var(--blue-900);
  padding: 60px 0 0;
}

.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 3rem;
  padding-bottom: 3rem;
}

.footer-brand { max-width: 270px; }
.footer-brand .nav-logo { display: inline-flex; margin-bottom: 1rem; }
.footer-brand .logo-mel { color: var(--white); }
.footer-brand .logo-minox { color: var(--blue-300); }
.footer-brand p {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.45);
  font-weight: 400;
  line-height: 1.7;
  margin-bottom: 1.25rem;
}

.footer-social { display: flex; gap: 0.5rem; }
.f-social-btn {
  width: 36px; height: 36px;
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.45);
  text-decoration: none;
  transition: all 0.22s;
}
.f-social-btn:hover {
  background: rgba(255,255,255,0.12);
  color: var(--white);
}

.footer-links { display: flex; gap: 4rem; flex-wrap: wrap; }
.footer-col h4 {
  font-family: var(--font-h);
  font-size: 0.72rem;
  font-weight: 700;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 1.25rem;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.65rem; }
.footer-col a {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.55);
  text-decoration: none;
  transition: color 0.2s;
  font-weight: 400;
}
.footer-col a:hover { color: var(--white); }

.footer-bottom {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 1.5rem 40px;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex; justify-content: space-between; align-items: center;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.35);
  flex-wrap: wrap;
  gap: 0.75rem;
}

.footer-back-top {
  width: 32px; height: 32px;
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.45);
  text-decoration: none;
  transition: all 0.22s;
}
.footer-back-top:hover {
  background: rgba(255,255,255,0.12);
  color: var(--white);
  transform: translateY(-2px);
}

/* Floating WhatsApp Button */
.floating-whatsapp {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 40px;
  left: 40px;
  background-color: #25D366;
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0px 6px 16px rgba(37, 211, 102, 0.4);
  z-index: 1000;
  transition: all 0.3s cubic-bezier(0.16,1,0.3,1);
}
.floating-whatsapp:hover {
  background-color: #20BA56;
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0px 10px 24px rgba(37, 211, 102, 0.5);
  color: var(--white);
}
.floating-whatsapp svg {
  width: 32px;
  height: 32px;
}

/* Scroll Progress */
#scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 2px;
  background: var(--blue-500);
  z-index: 1000;
  transition: width 0.1s linear;
}


/* ─────────────────────────────────────────────
   RESPONSIVE
───────────────────────────────────────────── */
@media (max-width: 1100px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .results-grid { grid-template-columns: 1fr 1fr; }
  .result-card-featured { grid-column: span 2; }
  .hero-inner { gap: 3rem; }
}

@media (max-width: 900px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }

  .hero-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .hero-right { display: none; }
  .hero-left { padding-bottom: 40px; }

  .why-layout { grid-template-columns: 1fr; gap: 3rem; }
  .process-layout { grid-template-columns: 1fr; gap: 2.5rem; }
  .contact-layout { grid-template-columns: 1fr; gap: 3rem; }
  .testimonials-grid { grid-template-columns: 1fr 1fr; }

  .results-header { flex-direction: column; align-items: flex-start; }
  .results-header .section-sub { text-align: left; }

  .hero-band-sep { display: none; }
}

@media (max-width: 640px) {
  :root { --section-py: 70px; --nav-h: 68px; }
  .container, .nav-inner, .footer-inner, .footer-bottom { padding-left: 20px; padding-right: 20px; }
  .hero-inner { padding: 50px 20px 0; }
  .hero-band { padding: 24px 20px; }
  .hero-band-inner { justify-content: center; gap: 2rem; }
  .services-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .results-grid { grid-template-columns: 1fr; }
  .result-card-featured { grid-column: span 1; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-inner { flex-direction: column; }
  .footer-links { gap: 2rem; }
  .float-cards { grid-template-columns: 1fr; }
  .blog-fade-l, .blog-fade-r { width: 50px; }
  .hero-actions { flex-direction: column; }
  .btn-primary, .btn-secondary { width: 100%; justify-content: center; }
  .cta-actions { flex-direction: column; align-items: center; }
  .btn-white, .btn-outline-white { width: 100%; justify-content: center; max-width: 320px; }
  
  .floating-whatsapp { width: 50px; height: 50px; bottom: 20px; left: 20px; }
  .floating-whatsapp svg { width: 26px; height: 26px; }
}
