/* ========================
   CSS CUSTOM PROPERTIES
======================== */
:root {
  --bg-primary: #f8faff;
  --bg-secondary: #f0f4fe;
  --bg-card: #ffffff;
  --bg-card-hover: #f5f8ff;
  --accent-blue: #2563eb;
  --accent-cyan: #0891b2;
  --accent-green: #059669;
  --accent-purple: #7c3aed;
  --accent-orange: #d97706;
  --text-primary: #0f172a;
  --text-secondary: #475569;
  --text-muted: #94a3b8;
  --border: rgba(15,23,42,0.08);
  --border-bright: rgba(37,99,235,0.35);
  --glow-blue: rgba(37,99,235,0.08);
  --glow-cyan: rgba(8,145,178,0.06);
  --font-display: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-body: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --radius: 16px;
  --radius-sm: 8px;
  --transition: all 0.3s cubic-bezier(0.4,0,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(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
ul { list-style: none; }

/* ========================
   SUBTLE LIGHT DOT TEXTURE
======================== */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: radial-gradient(circle at 1px 1px, rgba(37,99,235,0.05) 1px, transparent 0);
  background-size: 32px 32px;
  pointer-events: none;
  z-index: 0;
  opacity: 1;
}

/* ========================
   TYPOGRAPHY
======================== */
.display-xl {
  font-family: var(--font-display);
  font-size: clamp(2.45rem, 5vw, 4.75rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: 0;
}
.display-lg {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 3.2vw, 3.05rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: 0;
}
.display-md {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0;
}
.body-lg { font-size: 1.125rem; line-height: 1.7; }
.body-md { font-size: 1rem; line-height: 1.6; }
.body-sm { font-size: 0.875rem; line-height: 1.5; }
.label {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.text-muted { color: var(--text-secondary); }
.text-accent-blue { color: var(--accent-blue); }
.text-accent-cyan { color: var(--accent-cyan); }
.text-accent-green { color: var(--accent-green); }

/* ========================
   GRADIENT TEXT
======================== */
.gradient-text {
  background: linear-gradient(135deg, #1d4ed8 0%, #0891b2 50%, #059669 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.gradient-text-warm {
  background: linear-gradient(135deg, #d97706 0%, #dc2626 50%, #db2777 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ========================
   LAYOUT
======================== */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}
.container-wide {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 32px;
}
.section { padding: 120px 0; }
.section-sm { padding: 80px 0; }

/* ========================
   BADGES / PILLS
======================== */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.05em;
}
.badge-blue {
  background: rgba(37,99,235,0.15);
  color: #60a5fa;
  border: 1px solid rgba(37,99,235,0.3);
}
.badge-cyan {
  background: rgba(6,182,212,0.1);
  color: #22d3ee;
  border: 1px solid rgba(6,182,212,0.25);
}
.badge-green {
  background: rgba(16,185,129,0.1);
  color: #34d399;
  border: 1px solid rgba(16,185,129,0.25);
}
.badge-purple {
  background: rgba(124,58,237,0.1);
  color: #a78bfa;
  border: 1px solid rgba(124,58,237,0.25);
}

/* ========================
   BUTTONS
======================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.95rem;
  transition: var(--transition);
  white-space: nowrap;
}
.btn-primary {
  background: linear-gradient(135deg, #2563eb, #1d4ed8);
  color: white;
  box-shadow: 0 0 20px rgba(37,99,235,0.3), 0 4px 14px rgba(0,0,0,0.3);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 30px rgba(37,99,235,0.5), 0 8px 24px rgba(0,0,0,0.3);
}
.btn-secondary {
  background: #ffffff;
  color: #0f172a;
  border: 1px solid rgba(15,23,42,0.12);
  box-shadow: 0 1px 4px rgba(0,0,0,0.06);
}
.btn-secondary:hover {
  background: #f8faff;
  border-color: rgba(37,99,235,0.25);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(37,99,235,0.1);
}
.btn-whatsapp {
  background: linear-gradient(135deg, #22c55e, #16a34a);
  color: white;
  box-shadow: 0 0 20px rgba(34,197,94,0.25);
}
.btn-whatsapp:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 30px rgba(34,197,94,0.4);
}
.btn-ghost {
  color: var(--accent-cyan);
  padding: 10px 0;
  font-weight: 600;
  font-size: 0.9rem;
}
.btn-ghost:hover { gap: 12px; }
.btn-ghost svg { transition: transform 0.2s; }
.btn-ghost:hover svg { transform: translateX(4px); }
.btn-lg { padding: 18px 36px; font-size: 1.05rem; border-radius: var(--radius); }

/* ========================
   CARDS
======================== */
.card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(37,99,235,0.03) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.3s;
}
.card:hover {
  border-color: var(--border-bright);
  background: var(--bg-card-hover);
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.4), 0 0 40px rgba(37,99,235,0.05);
}
.card:hover::before { opacity: 1; }

/* ========================
   NAVIGATION
======================== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: var(--transition);
  padding: 0;
}
.navbar.scrolled {
  background: rgba(248,250,255,0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 2px 20px rgba(37,99,235,0.06);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  padding: 0 24px;
  max-width: 1440px;
  margin: 0 auto;
  gap: 18px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 0 0 auto;
}
.nav-logo-img {
  display: block;
  width: 180px;
  max-width: 180px;
  height: auto;
}
.logo-mark {
  width: 38px;
  height: 38px;
  background: linear-gradient(135deg, #2563eb, #06b6d4);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1rem;
  color: white;
  letter-spacing: 0;
}
.logo-text {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: 0;
}
.logo-sub {
  font-size: 0.7rem;
  color: var(--text-secondary);
  letter-spacing: 0.05em;
  display: block;
  line-height: 1;
  margin-top: 1px;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 1px;
  flex: 1 1 auto;
  justify-content: center;
  min-width: 0;
}
.nav-link {
  padding: 8px 10px;
  border-radius: 8px;
  font-size: 0.86rem;
  font-weight: 500;
  color: #475569;
  transition: var(--transition);
  position: relative;
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-link:hover,
.nav-link:focus,
.nav-dropdown:hover > .nav-link,
.nav-dropdown:focus-within > .nav-link {
  color: #0f172a;
  background: rgba(37,99,235,0.06);
}
.nav-link svg { width: 14px; height: 14px; transition: transform 0.2s; }
.nav-link:hover svg,
.nav-dropdown:hover > .nav-link svg,
.nav-dropdown:focus-within > .nav-link svg {
  transform: rotate(180deg);
}
.nav-dropdown {
  position: relative;
  padding: 14px 0;
  margin: -14px 0;
}
.nav-dropdown::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  height: 18px;
}
.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 0 0 auto;
}
.nav-actions .btn { padding: 10px 20px; font-size: 0.875rem; }

/* Mega Menu */
.mega-menu {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 1100;
  transform: translateY(8px);
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 20px;
  min-width: 720px;
  display: block;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  backdrop-filter: blur(30px);
  box-shadow: 0 24px 70px rgba(15,23,42,0.14), 0 8px 22px rgba(37,99,235,0.08);
  transition: opacity 0.18s ease, visibility 0.18s ease, transform 0.18s ease;
}
.mega-menu::before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: -18px;
  height: 18px;
}
.nav-dropdown:hover .mega-menu,
.nav-dropdown:focus-within .mega-menu,
.nav-dropdown.is-open .mega-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}
.mega-menu-eyebrow {
  color: var(--accent-blue);
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  margin-bottom: 12px;
  text-transform: uppercase;
}
.mega-menu-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.products-mega-menu { min-width: 920px; }
.products-mega-grid { grid-template-columns: repeat(3, 1fr); }
.product-line-menu { min-width: 720px; }
.product-line-grid { grid-template-columns: repeat(2, 1fr); }
.industries-menu { min-width: 430px; }
.industries-menu-grid { grid-template-columns: repeat(2, 1fr); }
.resources-menu { min-width: 300px; }
.mega-menu-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  min-height: 78px;
  padding: 14px;
  border: 1px solid transparent;
  border-radius: 12px;
  transition: var(--transition);
}
.mega-menu-item:hover,
.mega-menu-item:focus {
  background: linear-gradient(135deg, #f8fbff, #eef6ff);
  border-color: rgba(37,99,235,0.12);
  box-shadow: 0 10px 26px rgba(37,99,235,0.08);
}
.mega-icon {
  width: 38px;
  height: 38px;
  border-radius: 11px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background: linear-gradient(135deg, rgba(37,99,235,0.12), rgba(6,182,212,0.14));
  border: 1px solid rgba(37,99,235,0.14);
  color: var(--accent-blue);
}
.mega-icon svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.mega-menu-item-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.875rem;
  color: #0f172a;
  margin-bottom: 4px;
}
.mega-menu-item-desc {
  font-size: 0.76rem;
  color: var(--text-secondary);
  line-height: 1.45;
}

/* Mobile Nav */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: #0f172a;
  border-radius: 2px;
  transition: var(--transition);
}
.mobile-menu {
  display: none;
  position: fixed;
  top: 72px;
  left: 0;
  right: 0;
  background:
    radial-gradient(ellipse 70% 35% at 50% 0%, rgba(37,99,235,0.08), transparent 70%),
    #ffffff;
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 0;
  z-index: 999;
  max-height: calc(100vh - 72px);
  overflow-y: auto;
  box-shadow: 0 8px 32px rgba(37,99,235,0.08);
}
.mobile-menu.open { display: block; }
.mobile-menu-inner {
  padding: 12px 12px 18px;
}
.mobile-nav-link {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px;
  border-radius: 14px;
  border: 1px solid transparent;
  color: #475569;
  font-weight: 600;
  transition: var(--transition);
  background: rgba(255,255,255,0.68);
}
.mobile-nav-link + .mobile-nav-link {
  margin-top: 6px;
}
.mobile-nav-link:hover,
.mobile-nav-link:focus {
  color: #0f172a;
  background: #f8fbff;
  border-color: rgba(37,99,235,0.14);
  box-shadow: 0 10px 24px rgba(37,99,235,0.07);
}
.mobile-nav-icon {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  background: linear-gradient(135deg, rgba(37,99,235,0.11), rgba(6,182,212,0.14));
  border: 1px solid rgba(37,99,235,0.14);
  color: var(--accent-blue);
}
.mobile-nav-icon svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.mobile-nav-copy {
  display: block;
  min-width: 0;
  flex: 1;
}
.mobile-nav-title {
  display: block;
  color: #0f172a;
  font-size: 0.92rem;
  line-height: 1.25;
}
.mobile-nav-desc {
  display: block;
  margin-top: 3px;
  color: var(--text-secondary);
  font-size: 0.76rem;
  font-weight: 500;
  line-height: 1.38;
}
.mobile-nav-section {
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #64748b;
  padding: 18px 4px 8px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.mobile-nav-section:first-child {
  padding-top: 6px;
}
.mobile-nav-section span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.mobile-nav-section span::before {
  content: '';
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: linear-gradient(135deg, #2563eb, #06b6d4);
}
.mobile-nav-section em {
  font-style: normal;
  letter-spacing: 0;
  text-transform: none;
  font-size: 0.7rem;
  color: #94a3b8;
  font-weight: 700;
}
.mobile-nav-actions {
  padding: 18px 0 0;
  display: flex;
  gap: 10px;
}
.mobile-nav-whatsapp {
  padding: 12px 0 4px;
}

/* ========================
   HERO SECTION
======================== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 120px 0 80px;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(ellipse 80% 60% at 50% -10%, rgba(37,99,235,0.07) 0%, transparent 70%),
    radial-gradient(ellipse 40% 40% at 80% 50%, rgba(8,145,178,0.05) 0%, transparent 60%),
    radial-gradient(ellipse 40% 40% at 20% 80%, rgba(124,58,237,0.04) 0%, transparent 60%);
}
.hero-grid {
  position: absolute;
  inset: 0;
  background-image: 
    linear-gradient(rgba(37,99,235,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(37,99,235,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 30%, transparent 80%);
}
.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 28px;
}
.hero-dot { width: 6px; height: 6px; border-radius: 50%; background: #0891b2; animation: pulse-dot 2s infinite; }
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}
.hero-headline { margin-bottom: 24px; }
.hero-sub {
  color: var(--text-secondary);
  font-size: 1.125rem;
  line-height: 1.7;
  max-width: 520px;
  margin-bottom: 40px;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 60px;
}
.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  color: var(--text-secondary);
}
.trust-icon { color: var(--accent-green); font-size: 0.75rem; }

/* Dashboard Mockup */
.hero-visual { position: relative; }
.dashboard-mockup {
  background: #ffffff;
  border: 1px solid rgba(37,99,235,0.12);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 40px 100px rgba(37,99,235,0.1), 0 8px 32px rgba(0,0,0,0.08);
  animation: float 6s ease-in-out infinite;
}
@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
}
.dash-header {
  background: #f8faff;
  border-bottom: 1px solid rgba(37,99,235,0.08);
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.dash-dot { width: 10px; height: 10px; border-radius: 50%; }
.dash-dot.red { background: #ef4444; }
.dash-dot.yellow { background: #f59e0b; }
.dash-dot.green { background: #22c55e; }
.dash-title {
  font-size: 0.75rem;
  color: var(--text-secondary);
  margin-left: 8px;
  font-family: var(--font-display);
  font-weight: 600;
}
.dash-body { padding: 16px; }
.dash-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-bottom: 12px;
}
.dash-stat {
  background: #f8faff;
  border: 1px solid rgba(37,99,235,0.1);
  border-radius: 10px;
  padding: 12px;
}
.dash-stat-label { font-size: 0.65rem; color: var(--text-muted); margin-bottom: 4px; letter-spacing: 0.05em; text-transform: uppercase; }
.dash-stat-value {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.3rem;
  color: #0f172a;
}
.dash-stat-change { font-size: 0.65rem; margin-top: 2px; }
.dash-stat-change.up { color: var(--accent-green); }
.dash-stat-change.neutral { color: var(--text-muted); }
.dash-rows { display: flex; flex-direction: column; gap: 6px; }
.dash-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #f8faff;
  border-radius: 8px;
  padding: 8px 12px;
}
.dash-row-left { display: flex; align-items: center; gap: 8px; }
.dash-avatar {
  width: 24px; height: 24px; border-radius: 50%;
  background: linear-gradient(135deg, #2563eb, #06b6d4);
  font-size: 0.6rem; font-weight: 700; color: white;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
}
.dash-row-name { font-size: 0.7rem; color: #0f172a; font-weight: 500; }
.dash-row-role { font-size: 0.6rem; color: var(--text-muted); }
.dash-pill {
  font-size: 0.6rem; font-weight: 600;
  padding: 2px 8px; border-radius: 999px;
}
.dash-pill.approved { background: rgba(16,185,129,0.15); color: #34d399; border: 1px solid rgba(16,185,129,0.2); }
.dash-pill.pending { background: rgba(245,158,11,0.15); color: #fbbf24; border: 1px solid rgba(245,158,11,0.2); }
.dash-pill.processing { background: rgba(37,99,235,0.15); color: #60a5fa; border: 1px solid rgba(37,99,235,0.2); }
.dash-chart {
  margin-top: 10px;
  padding: 10px;
  background: #f8faff;
  border-radius: 10px;
  border: 1px solid rgba(37,99,235,0.08);
}
.dash-chart-label { font-size: 0.65rem; color: var(--text-muted); margin-bottom: 8px; text-transform: uppercase; letter-spacing: 0.05em; }
.chart-bars {
  display: flex;
  align-items: flex-end;
  gap: 4px;
  height: 50px;
}
.chart-bar {
  flex: 1;
  border-radius: 3px 3px 0 0;
  background: linear-gradient(180deg, rgba(37,99,235,0.7), rgba(37,99,235,0.2));
  transition: height 0.5s;
}
.chart-bar.active { background: linear-gradient(180deg, #2563eb, rgba(6,182,212,0.5)); }
.float-card {
  position: absolute;
  background: #ffffff;
  border: 1px solid rgba(37,99,235,0.12);
  border-radius: 12px;
  padding: 12px 16px;
  box-shadow: 0 8px 32px rgba(37,99,235,0.1), 0 2px 8px rgba(0,0,0,0.06);
  animation: float-card 4s ease-in-out infinite;
}
.float-card-value { font-family: var(--font-display); font-weight: 700; font-size: 0.9rem; color: #0f172a; }
.float-card-1 {
  bottom: -20px; left: -30px;
  animation-delay: -2s;
}
.float-card-2 { top: 30px; right: -30px; animation-delay: -1s; }
@keyframes float-card {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}
.float-card-icon { font-size: 1.2rem; margin-bottom: 4px; }
.float-card-label { font-size: 0.65rem; color: var(--text-muted); }

/* ========================
   TRUST LOGOS BAR
======================== */
.trust-bar {
  padding: 40px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: #ffffff;
}
.trust-bar-inner {
  display: flex;
  align-items: center;
  gap: 48px;
  justify-content: center;
  flex-wrap: wrap;
}
.trust-bar-label {
  color: var(--text-muted);
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 600;
}
.trust-logos {
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
  justify-content: center;
}
.trust-logo-item {
  display: flex;
  align-items: center;
  gap: 6px;
  opacity: 0.4;
  filter: grayscale(1);
  transition: var(--transition);
}
.trust-logo-item:hover { opacity: 0.7; filter: grayscale(0); }
.trust-logo-icon {
  width: 28px; height: 28px;
  border-radius: 6px;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.8rem; font-weight: 700;
}
.trust-logo-name { font-family: var(--font-display); font-weight: 700; font-size: 0.9rem; letter-spacing: 0; }

/* ========================
   PRODUCTS SECTION
======================== */
.products-section { padding: 140px 0; }
.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 70px;
}
.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-cyan);
}
.section-eyebrow::before, .section-eyebrow::after {
  content: '';
  display: block;
  width: 24px;
  height: 1px;
  background: currentColor;
  opacity: 0.5;
}
.section-title { margin-bottom: 16px; }
.section-desc { color: var(--text-secondary); font-size: 1.05rem; }

.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.product-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  transition: var(--transition);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}
.product-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--accent-blue), var(--accent-cyan));
  transform: scaleX(0);
  transition: transform 0.3s;
  transform-origin: left;
}
.product-card:hover::after { transform: scaleX(1); }
.product-card:hover {
  border-color: rgba(37,99,235,0.3);
  background: var(--bg-card-hover);
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.4);
}
.product-card.featured {
  grid-column: span 2;
  background: linear-gradient(135deg, #eef2ff 0%, #f0f9ff 100%);
  border-color: rgba(37,99,235,0.2);
}
.product-icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
  font-size: 1.3rem;
}
.product-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 8px;
}
.product-desc { font-size: 0.875rem; color: var(--text-secondary); line-height: 1.5; margin-bottom: 20px; }
.product-features {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.product-feature-tag {
  font-size: 0.7rem;
  padding: 3px 8px;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border);
  border-radius: 4px;
  color: var(--text-secondary);
}

/* ========================
   HRM HIGHLIGHT
======================== */
.hrm-section {
  padding: 140px 0;
  position: relative;
  overflow: hidden;
}
.hrm-section::before {
  content: '';
  position: absolute;
  right: -200px; top: 50%;
  transform: translateY(-50%);
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(37,99,235,0.05) 0%, transparent 70%);
}
.hrm-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.features-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin: 32px 0 40px;
}
.feature-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.875rem;
  color: var(--text-secondary);
}
.feature-check {
  width: 20px; height: 20px;
  border-radius: 50%;
  background: rgba(16,185,129,0.15);
  border: 1px solid rgba(16,185,129,0.3);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  font-size: 0.6rem;
  color: var(--accent-green);
}
.hrm-mockup {
  background: #ffffff;
  border: 1px solid rgba(37,99,235,0.12);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(37,99,235,0.1), 0 4px 16px rgba(0,0,0,0.05);
}
.hrm-sidebar {
  display: flex;
  height: 100%;
}
.sidebar-nav {
  width: 56px;
  background: #f8faff;
  border-right: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 16px 0;
  gap: 4px;
}
.sidebar-icon {
  width: 36px; height: 36px;
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.9rem;
  cursor: pointer;
  transition: var(--transition);
  color: var(--text-muted);
}
.sidebar-icon.active {
  background: rgba(37,99,235,0.2);
  color: #60a5fa;
}
.sidebar-icon:hover { background: #eef2ff; color: #0f172a; }
.hrm-main { flex: 1; padding: 16px; }
.hrm-main-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}
.hrm-main-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.9rem;
}
.hrm-mini-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-bottom: 14px;
}
.hrm-mini-stat {
  background: #f8faff;
  border: 1px solid rgba(37,99,235,0.08);
  border-radius: 8px;
  padding: 10px;
  text-align: center;
}
.hrm-mini-value {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  display: block;
}
.hrm-mini-label { font-size: 0.6rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.05em; }
.hrm-table { width: 100%; }
.hrm-table-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 7px 0;
  border-bottom: 1px solid rgba(37,99,235,0.06);
}
.hrm-table-row:last-child { border-bottom: none; }
.hrm-table-name { font-size: 0.7rem; font-weight: 500; color: #0f172a; }
.hrm-table-dept { font-size: 0.6rem; color: var(--text-muted); }
.hrm-status-dot { width: 6px; height: 6px; border-radius: 50%; }
.hrm-status-dot.in { background: var(--accent-green); box-shadow: 0 0 6px rgba(16,185,129,0.4); }
.hrm-status-dot.out { background: var(--text-muted); }

/* ========================
   STATS SECTION
======================== */
.stats-section {
  padding: 80px 0;
  position: relative;
}
.stats-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  background: rgba(37,99,235,0.08);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
}
.stat-block {
  background: #ffffff;
  padding: 48px 32px;
  text-align: center;
}
.stat-number {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 8px;
}
.stat-label { color: var(--text-secondary); font-size: 0.875rem; }
.stat-sublabel { color: var(--text-muted); font-size: 0.75rem; margin-top: 4px; }

/* ========================
   INDUSTRIES
======================== */
.industries-section { padding: 140px 0; }
.industries-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.industry-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 24px;
  text-align: center;
  transition: var(--transition);
  cursor: pointer;
}
.industry-card:hover {
  border-color: rgba(37,99,235,0.3);
  transform: translateY(-6px);
  background: var(--bg-card-hover);
}
.industry-emoji { font-size: 2.5rem; margin-bottom: 16px; display: block; }
.industry-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 8px;
}
.industry-desc { font-size: 0.8rem; color: var(--text-secondary); line-height: 1.5; }

/* ========================
   WHY BIZCLOUD
======================== */
.why-section { padding: 140px 0; }
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.why-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 28px;
  transition: var(--transition);
}
.why-card:hover {
  border-color: rgba(37,99,235,0.3);
  background: var(--bg-card-hover);
  transform: translateY(-4px);
}
.why-icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 24px;
  font-size: 1.4rem;
}
.why-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 12px;
}
.why-desc { color: var(--text-secondary); font-size: 0.9rem; line-height: 1.6; }

/* ========================
   SECURITY SECTION
======================== */
.security-section {
  padding: 100px 0;
  background: #f0f4fe;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.security-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 80px;
  align-items: center;
}
.security-items {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 32px;
}
.security-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px;
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  box-shadow: 0 2px 8px rgba(37,99,235,0.04);
}
.security-item-icon {
  width: 36px; height: 36px;
  border-radius: 8px;
  background: rgba(37,99,235,0.1);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  font-size: 0.9rem;
}
.security-item-title { font-weight: 600; font-size: 0.875rem; margin-bottom: 2px; }
.security-item-desc { font-size: 0.8rem; color: var(--text-secondary); }
.security-disclaimer {
  margin-top: 24px;
  padding: 16px;
  background: rgba(245,158,11,0.05);
  border: 1px solid rgba(245,158,11,0.15);
  border-radius: var(--radius-sm);
  font-size: 0.8rem;
  color: var(--text-secondary);
  line-height: 1.6;
}
.security-disclaimer strong { color: #fbbf24; }

/* ========================
   PRICING
======================== */
.pricing-section { padding: 140px 0; }
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.pricing-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 24px;
  transition: var(--transition);
  position: relative;
}
.pricing-card.featured {
  background: linear-gradient(135deg, #eef2ff 0%, #f0f9ff 100%);
  border-color: rgba(37,99,235,0.35);
  transform: scale(1.02);
}
.pricing-card.featured::before {
  content: 'Most Popular';
  position: absolute;
  top: -12px;
  left: 50%; transform: translateX(-50%);
  background: linear-gradient(90deg, #2563eb, #06b6d4);
  color: white;
  font-size: 0.7rem;
  font-weight: 700;
  font-family: var(--font-display);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 16px;
  border-radius: 999px;
}
.pricing-tier {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 6px;
}
.pricing-tagline { font-size: 0.8rem; color: var(--text-muted); margin-bottom: 24px; }
.pricing-price {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 2rem;
  margin-bottom: 4px;
}
.pricing-price-sub { font-size: 0.75rem; color: var(--text-muted); margin-bottom: 24px; }
.pricing-divider { height: 1px; background: var(--border); margin-bottom: 20px; }
.pricing-features {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 28px;
}
.pricing-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.82rem;
  color: var(--text-secondary);
}
.pricing-feature-check { color: var(--accent-green); font-size: 0.75rem; }

/* ========================
   FAQ
======================== */
.faq-section { padding: 120px 0; }
.faq-container { max-width: 720px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.95rem;
  transition: var(--transition);
  gap: 16px;
}
.faq-question:hover { color: var(--accent-cyan); }
.faq-icon {
  width: 24px; height: 24px;
  border-radius: 50%;
  background: rgba(255,255,255,0.05);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  font-size: 0.7rem;
  transition: var(--transition);
}
.faq-item.open .faq-icon { background: rgba(37,99,235,0.2); transform: rotate(45deg); }
.faq-answer {
  padding: 0 0 24px;
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.7;
  display: none;
}
.faq-item.open .faq-answer { display: block; }

/* ========================
   CTA SECTION
======================== */
.cta-section {
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}
.cta-inner {
  background: linear-gradient(135deg, #eef2ff 0%, #f0f9ff 50%, #f5f3ff 100%);
  border: 1px solid rgba(37,99,235,0.15);
  border-radius: 24px;
  padding: 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(37,99,235,0.08);
}
.cta-inner::before {
  content: '';
  position: absolute;
  top: -50%; left: -50%;
  width: 200%; height: 200%;
  background: radial-gradient(circle at 50% 50%, rgba(37,99,235,0.05) 0%, transparent 60%);
  animation: cta-glow 6s ease-in-out infinite;
}
@keyframes cta-glow {
  0%, 100% { opacity: 0.5; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.1); }
}
.cta-title { margin-bottom: 16px; position: relative; }
.cta-sub { color: var(--text-secondary); font-size: 1.05rem; margin-bottom: 40px; max-width: 500px; margin-left: auto; margin-right: auto; position: relative; }
.cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; position: relative; }
.cta-note { margin-top: 20px; font-size: 0.8rem; color: var(--text-muted); position: relative; }

/* ========================
   FOOTER
======================== */
.footer {
  padding: 80px 0 40px;
  border-top: 1px solid var(--border);
  background: #f8faff;
}
.footer-main {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1.5fr;
  gap: 48px;
  margin-bottom: 60px;
}
.footer-brand-desc { color: var(--text-secondary); font-size: 0.875rem; line-height: 1.7; margin: 16px 0 24px; max-width: 300px; }
.footer-social { display: flex; gap: 10px; }
.social-btn {
  width: 36px; height: 36px;
  border-radius: 8px;
  background: #ffffff;
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.875rem;
  transition: var(--transition);
  color: var(--text-secondary);
}
.social-btn:hover { background: #eef2ff; border-color: rgba(37,99,235,0.3); color: #2563eb; }
.footer-col-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.875rem;
  margin-bottom: 20px;
  color: var(--text-primary);
}
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-link { font-size: 0.875rem; color: var(--text-secondary); transition: var(--transition); }
.footer-link:hover { color: var(--text-primary); }
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.8rem;
  color: var(--text-secondary);
  margin-bottom: 12px;
}
.contact-icon { width: 16px; flex-shrink: 0; margin-top: 2px; }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: gap;
  gap: 16px;
}
.footer-legal {
  font-size: 0.75rem;
  color: var(--text-muted);
  line-height: 1.5;
  max-width: 700px;
}
.footer-legal-links { display: flex; gap: 20px; }
.footer-legal-link { font-size: 0.8rem; color: var(--text-muted); transition: var(--transition); }
.footer-legal-link:hover { color: var(--text-secondary); }

/* ========================
   WHATSAPP FLOATING
======================== */
.wa-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  display: flex;
  align-items: center;
  gap: 12px;
}
.wa-btn {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, #22c55e, #16a34a);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 24px rgba(34,197,94,0.4);
  transition: var(--transition);
  font-size: 1.5rem;
}
.wa-btn:hover {
  transform: scale(1.1) translateY(-2px);
  box-shadow: 0 12px 32px rgba(34,197,94,0.5);
}
.wa-tooltip {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 8px 14px;
  font-size: 0.8rem;
  color: var(--text-primary);
  font-weight: 600;
  white-space: nowrap;
  box-shadow: 0 8px 24px rgba(0,0,0,0.3);
  opacity: 0;
  transform: translateX(8px);
  transition: var(--transition);
  pointer-events: none;
}
.wa-float:hover .wa-tooltip {
  opacity: 1;
  transform: translateX(0);
}

/* Back to top */
.back-top {
  position: fixed;
  bottom: 28px;
  right: 96px;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: #ffffff;
  border: 1px solid var(--border);
  display: none;
  align-items: center;
  justify-content: center;
  font-size: 0.875rem;
  color: var(--text-secondary);
  cursor: pointer;
  transition: var(--transition);
  z-index: 999;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}
.back-top:hover { background: #eef2ff; color: #2563eb; border-color: rgba(37,99,235,0.3); }
.back-top.visible { display: flex; }

/* ========================
   ANIMATIONS
======================== */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}
.fade-up:nth-child(2) { transition-delay: 0.1s; }
.fade-up:nth-child(3) { transition-delay: 0.2s; }
.fade-up:nth-child(4) { transition-delay: 0.3s; }
.fade-up:nth-child(5) { transition-delay: 0.4s; }
.fade-up:nth-child(6) { transition-delay: 0.5s; }

/* ========================
   DIVIDER
======================== */
.divider { height: 1px; background: var(--border); margin: 0 auto; }

/* ========================
   MOBILE RESPONSIVE
======================== */
@media (max-width: 1280px) {
  .hero-content { grid-template-columns: 1fr; gap: 60px; }
  .hero-visual { display: none; }
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .product-card.featured { grid-column: span 2; }
  .hrm-grid { grid-template-columns: 1fr; gap: 60px; }
  .stats-inner { grid-template-columns: repeat(2, 1fr); }
  .industries-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .security-grid { grid-template-columns: 1fr; gap: 40px; }
  .pricing-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-main { grid-template-columns: 1fr 1fr; gap: 32px; }
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  .nav-actions .btn-secondary { display: none; }
  .nav-actions > .btn-primary { display: none; }
}
@media (max-width: 768px) {
  .section { padding: 80px 0; }
  .nav-logo-img { width: 156px; max-width: 156px; }
  .products-grid { grid-template-columns: 1fr; }
  .product-card.featured { grid-column: span 1; }
  .industries-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .pricing-card.featured { transform: scale(1); }
  .footer-main { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 16px; }
  .cta-inner { padding: 40px 24px; }
  .stats-inner { grid-template-columns: 1fr 1fr; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .hero-sub { font-size: 1rem; }
  .features-list { grid-template-columns: 1fr; }
  .mega-menu { min-width: 95vw; }
  .container-wide { padding: 0 16px; }
  .container { padding: 0 16px; }
  .nav-actions > .btn-primary { display: none; }
}
@media (max-width: 480px) {
  .industries-grid { grid-template-columns: 1fr; }
  .trust-bar-inner { flex-direction: column; gap: 24px; }
}

/* ========================
   SCROLLBAR
======================== */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: #f8faff; }
::-webkit-scrollbar-thumb { background: rgba(37,99,235,0.2); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: rgba(37,99,235,0.35); }

/* ========================
   EXTRA COMPONENT STYLES
======================== */
.logo-wordmark {
  display: block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: 0;
  color: var(--text-primary);
}
.logo-accent { color: var(--accent-cyan); }
.logo-sub {
  font-size: 0.68rem;
  color: var(--text-muted);
  letter-spacing: 0.06em;
  display: block;
  line-height: 1;
  margin-top: 1px;
  text-transform: uppercase;
}

/* Section eyebrow */
.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-blue);
}
.section-eyebrow::before, .section-eyebrow::after {
  content: '';
  display: block;
  width: 24px;
  height: 1px;
  background: currentColor;
  opacity: 0.4;
}

/* Footer brand */
.footer-brand-desc {
  color: var(--text-secondary);
  font-size: 0.875rem;
  line-height: 1.7;
  margin: 16px 0 24px;
  max-width: 300px;
}
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 14px;
}
.contact-icon { width: 20px; flex-shrink: 0; font-size: 1rem; }

/* HRM section specific */
.hrm-main-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--text-primary);
}
.hrm-table-dept { font-size: 0.6rem; color: var(--text-muted); }
