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

:root {
  --navy: #0B2A6F;
  --royal: #1D5DFF;
  --red: #E53935;
  --white: #F8FAFC;
  --grey-bg: #EEF2F7;
  --dark: #2B2F38;
  --mid-grey: #6B7280;
  --light-border: #DDE3EE;
  --grad-blue: linear-gradient(135deg, #0B2A6F 0%, #1D5DFF 100%);
  --grad-red: linear-gradient(135deg, #1D5DFF 0%, #E53935 100%);
  --grad-full: linear-gradient(135deg, #0B2A6F 0%, #1D5DFF 60%, #E53935 100%);
  --shadow-sm: 0 2px 8px rgba(11,42,111,0.08);
  --shadow-md: 0 8px 32px rgba(11,42,111,0.12);
  --shadow-lg: 0 20px 60px rgba(11,42,111,0.18);
  --radius: 12px;
  --radius-lg: 20px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Manrope', sans-serif;
  color: var(--dark);
  background: #fff;
  line-height: 1.7;
  font-size: 16px;
  overflow-x: hidden;
}

h1,h2,h3,h4,h5,h6 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  line-height: 1.2;
  color: var(--navy);
}

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

/* ── NAVBAR ── */
.navbar {
  background: rgba(255,255,255,0.95) !important;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--light-border);
  padding: 0 !important;
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: box-shadow 0.3s;
}
.navbar.scrolled { box-shadow: var(--shadow-md); }
.navbar-brand { padding: 14px 0; }
.brand-lcm {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: 28px;
  color: var(--navy);
  letter-spacing: -1px;
}
.brand-global {
  font-family: 'Manrope', sans-serif;
  font-weight: 300;
  font-size: 11px;
  letter-spacing: 6px;
  color: var(--red);
  display: block;
  margin-top: -4px;
  text-transform: uppercase;
}
.navbar-nav .nav-link {
  font-family: 'Manrope', sans-serif;
  font-weight: 600;
  font-size: 13.5px;
  color: var(--dark) !important;
  padding: 8px 14px !important;
  border-radius: 8px;
  transition: all 0.2s;
  letter-spacing: 0.2px;
}
.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active { color: var(--royal) !important; background: rgba(29,93,255,0.06); }
.navbar-nav .dropdown-menu {
  border: 1px solid var(--light-border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  padding: 8px;
  min-width: 220px;
}
.navbar-nav .dropdown-item {
  border-radius: 8px;
  padding: 9px 16px;
  font-size: 13.5px;
  font-weight: 500;
  transition: all 0.2s;
}
.navbar-nav .dropdown-item:hover { background: var(--grey-bg); color: var(--royal); }
.btn-nav-cta {
  background: var(--grad-blue);
  color: #fff !important;
  border-radius: 50px !important;
  padding: 10px 24px !important;
  font-weight: 700 !important;
  font-size: 13px !important;
  letter-spacing: 0.3px;
  border: none;
  transition: all 0.3s !important;
  box-shadow: 0 4px 16px rgba(29,93,255,0.3);
}
.btn-nav-cta:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(29,93,255,0.4) !important; }

/* ── HERO ── */
.hero {
  background: var(--grad-full);
  min-height: 92vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  width: 800px; height: 800px;
  background: rgba(255,255,255,0.03);
  border-radius: 50%;
  top: -200px; right: -200px;
  animation: pulse 8s ease-in-out infinite;
}
.hero::after {
  content: '';
  position: absolute;
  width: 500px; height: 500px;
  background: rgba(229,57,53,0.12);
  border-radius: 50%;
  bottom: -150px; left: -100px;
  animation: pulse 10s ease-in-out infinite 2s;
}
@keyframes pulse {
  0%,100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.1); opacity: 0.6; }
}
.hero-grid {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 50px;
  padding: 8px 18px;
  font-size: 12.5px;
  font-weight: 600;
  color: #fff;
  letter-spacing: 0.5px;
  margin-bottom: 28px;
  backdrop-filter: blur(8px);
}
.hero-badge .dot { width: 7px; height: 7px; border-radius: 50%; background: #4ade80; animation: blink 2s infinite; }
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:0.3} }
.hero h1 {
  font-size: clamp(38px, 5.5vw, 72px);
  font-weight: 900;
  color: #fff;
  line-height: 1.08;
  letter-spacing: -2px;
  margin-bottom: 24px;
}
.hero h1 .highlight {
  background: linear-gradient(90deg, #fff 0%, rgba(255,255,255,0.7) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero h1 .accent { color: #ffca28; -webkit-text-fill-color: #ffca28; }
.hero-sub {
  font-size: 18px;
  color: rgba(255,255,255,0.82);
  max-width: 560px;
  margin-bottom: 40px;
  font-weight: 400;
  line-height: 1.7;
}
.btn-hero-primary {
  background: #fff;
  color: var(--navy) !important;
  border-radius: 50px;
  padding: 16px 36px;
  font-weight: 800;
  font-size: 15px;
  border: none;
  box-shadow: 0 8px 32px rgba(0,0,0,0.2);
  transition: all 0.3s;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.btn-hero-primary:hover { transform: translateY(-3px); box-shadow: 0 16px 48px rgba(0,0,0,0.28); }
.btn-hero-outline {
  background: transparent;
  color: #fff !important;
  border-radius: 50px;
  padding: 15px 32px;
  font-weight: 700;
  font-size: 15px;
  border: 2px solid rgba(255,255,255,0.4);
  transition: all 0.3s;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.btn-hero-outline:hover { border-color: #fff; background: rgba(255,255,255,0.1); }
.hero-stats {
  display: flex;
  gap: 40px;
  margin-top: 56px;
  padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,0.15);
}
.hero-stat-num {
  font-family: 'Montserrat', sans-serif;
  font-size: 32px;
  font-weight: 900;
  color: #fff;
}
.hero-stat-label { font-size: 12.5px; color: rgba(255,255,255,0.65); font-weight: 500; letter-spacing: 0.5px; margin-top: 2px; }
.hero-visual {
  position: relative;
  z-index: 1;
}
.hero-card {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(16px);
  padding: 28px;
  margin-bottom: 16px;
  transition: transform 0.3s;
}
.hero-card:hover { transform: translateX(-6px); }
.hero-card-icon {
  width: 44px; height: 44px;
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px;
  margin-bottom: 14px;
}
.hero-card h5 { color: #fff; font-size: 15px; font-weight: 700; margin-bottom: 6px; }
.hero-card p { color: rgba(255,255,255,0.7); font-size: 13px; margin: 0; }
.hero-floating-badge {
  position: absolute;
  background: #fff;
  border-radius: var(--radius);
  padding: 14px 20px;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 12px;
  animation: float 4s ease-in-out infinite;
}
@keyframes float { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-8px)} }
.hero-floating-badge.b1 { top: 20%; right: -20px; }
.hero-floating-badge.b2 { bottom: 25%; left: -20px; animation-delay: 2s; }
.badge-num { font-family:'Montserrat',sans-serif; font-weight:900; font-size:20px; color:var(--navy); }
.badge-label { font-size:11px; color:var(--mid-grey); font-weight:500; }

/* ── SECTIONS ── */
.section { padding: 96px 0; }
.section-sm { padding: 64px 0; }
.section-dark { background: var(--navy); }
.section-grey { background: var(--grey-bg); }
.section-grad { background: var(--grad-full); }

.section-eyebrow {
  font-size: 11.5px;
  font-weight: 800;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--royal);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.section-eyebrow::before {
  content: '';
  display: inline-block;
  width: 28px; height: 3px;
  background: var(--red);
  border-radius: 2px;
}
.section-title {
  font-size: clamp(28px, 3.5vw, 46px);
  font-weight: 800;
  color: var(--navy);
  line-height: 1.15;
  letter-spacing: -1px;
}
.section-title .red { color: var(--red); }
.section-title .blue { color: var(--royal); }
.section-sub {
  font-size: 17px;
  color: var(--mid-grey);
  max-width: 580px;
  line-height: 1.75;
  margin-top: 16px;
}

/* ── CARDS ── */
.service-card {
  background: #fff;
  border: 1px solid var(--light-border);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  height: 100%;
  transition: all 0.35s cubic-bezier(0.4,0,0.2,1);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0; height: 4px;
  background: var(--grad-blue);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s;
}
.service-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); border-color: transparent; }
.service-card:hover::before { transform: scaleX(1); }
.service-icon {
  width: 60px; height: 60px;
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 28px;
  margin-bottom: 22px;
  background: var(--grey-bg);
  transition: all 0.3s;
}
.service-card:hover .service-icon { background: var(--grad-blue); }
.service-card h4 { font-size: 18px; font-weight: 700; margin-bottom: 12px; }
.service-card p { font-size: 14.5px; color: var(--mid-grey); line-height: 1.7; }
.service-card .learn-more {
  font-size: 13.5px;
  font-weight: 700;
  color: var(--royal);
  margin-top: 20px;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.2s;
}
.service-card:hover .learn-more { gap: 10px; }

.stat-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  text-align: center;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--light-border);
  transition: transform 0.3s;
}
.stat-card:hover { transform: translateY(-4px); }
.stat-num {
  font-family: 'Montserrat', sans-serif;
  font-size: 48px;
  font-weight: 900;
  background: var(--grad-blue);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 8px;
}
.stat-label { font-size: 14px; color: var(--mid-grey); font-weight: 500; }

.feature-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(29,93,255,0.07);
  border: 1px solid rgba(29,93,255,0.15);
  border-radius: 50px;
  padding: 8px 18px;
  font-size: 13px;
  font-weight: 600;
  color: var(--royal);
  margin: 4px;
  transition: all 0.2s;
}
.feature-pill:hover { background: var(--royal); color: #fff; border-color: var(--royal); }

.process-step {
  display: flex;
  gap: 20px;
  margin-bottom: 36px;
  align-items: flex-start;
}
.step-num {
  min-width: 48px; height: 48px;
  border-radius: 12px;
  background: var(--grad-blue);
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 16px;
  display: flex; align-items: center; justify-content: center;
}
.step-content h5 { font-size: 16px; font-weight: 700; margin-bottom: 6px; }
.step-content p { font-size: 14px; color: var(--mid-grey); margin: 0; }

.testimonial-card {
  background: #fff;
  border: 1px solid var(--light-border);
  border-radius: var(--radius-lg);
  padding: 36px;
  height: 100%;
  box-shadow: var(--shadow-sm);
}
.testimonial-stars { color: #f59e0b; font-size: 14px; margin-bottom: 16px; letter-spacing: 2px; }
.testimonial-card blockquote {
  font-size: 15px;
  line-height: 1.75;
  color: var(--dark);
  font-style: italic;
  margin-bottom: 24px;
  border: none;
  padding: 0;
}
.testimonial-author { display: flex; align-items: center; gap: 14px; }
.author-avatar {
  width: 48px; height: 48px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800;
  font-size: 16px;
  color: #fff;
  background: var(--grad-blue);
}
.author-name { font-weight: 700; font-size: 14.5px; }
.author-role { font-size: 12.5px; color: var(--mid-grey); }

.brand-logo-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  background: var(--grey-bg);
  border-radius: var(--radius);
  padding: 22px 32px;
  font-weight: 800;
  font-size: 15px;
  color: var(--mid-grey);
  letter-spacing: 1px;
  transition: all 0.3s;
  border: 1px solid var(--light-border);
  min-height: 72px;
  font-family: 'Montserrat',sans-serif;
}
.brand-logo-strip:hover { background: #fff; color: var(--navy); box-shadow: var(--shadow-md); transform: translateY(-2px); }

/* ── TIMELINE ── */
.timeline { position: relative; }
.timeline::before {
  content: '';
  position: absolute;
  left: 24px; top: 0; bottom: 0;
  width: 2px;
  background: var(--light-border);
}
.timeline-item { padding-left: 68px; position: relative; margin-bottom: 40px; }
.timeline-dot {
  position: absolute;
  left: 0; top: 4px;
  width: 50px; height: 50px;
  border-radius: 50%;
  background: var(--grad-blue);
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  font-size: 20px;
  z-index: 1;
}
.timeline-item h5 { font-size: 17px; font-weight: 700; margin-bottom: 8px; }
.timeline-item p { font-size: 14px; color: var(--mid-grey); }
.timeline-year { font-size: 11.5px; font-weight: 700; color: var(--royal); letter-spacing: 1px; margin-bottom: 6px; }

/* ── PAGE HERO ── */
.page-hero {
  background: var(--grad-blue);
  padding: 100px 0 80px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 48px 48px;
}
.page-hero h1 { color: #fff; font-size: clamp(32px, 4vw, 52px); font-weight: 900; letter-spacing: -1.5px; margin-bottom: 16px; }
.page-hero p { color: rgba(255,255,255,0.78); font-size: 18px; max-width: 600px; }
.breadcrumb-item, .breadcrumb-item a { color: rgba(255,255,255,0.6); font-size: 13.5px; }
.breadcrumb-item.active { color: rgba(255,255,255,0.9); }
.breadcrumb-divider { color: rgba(255,255,255,0.4); }

/* ── FOOTER ── */
footer {
  background: #0a1628;
  color: rgba(255,255,255,0.75);
  padding: 80px 0 0;
}
footer h5 { color: #fff; font-size: 14px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; margin-bottom: 24px; }
footer ul { list-style: none; padding: 0; }
footer ul li { margin-bottom: 10px; }
footer ul li a { font-size: 14px; color: rgba(255,255,255,0.6); transition: color 0.2s; }
footer ul li a:hover { color: #fff; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 28px 0;
  margin-top: 60px;
  font-size: 13px;
  color: rgba(255,255,255,0.4);
}
.footer-brand-lcm { font-family:'Montserrat',sans-serif; font-weight:900; font-size:26px; color:#fff; letter-spacing:-1px; }
.footer-brand-global { font-family:'Manrope',sans-serif; font-weight:300; font-size:10px; letter-spacing:6px; color:var(--red); display:block; text-transform:uppercase; margin-top:-4px; }
.footer-social a {
  width: 38px; height: 38px;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.12);
  display: inline-flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.6);
  font-size: 15px;
  transition: all 0.2s;
  margin-right: 8px;
}
.footer-social a:hover { background: var(--royal); border-color: var(--royal); color: #fff; }
.footer-divider { width: 40px; height: 3px; background: var(--red); border-radius: 2px; margin-bottom: 20px; }

/* ── BUTTONS ── */
.btn-primary-lcm {
  background: var(--grad-blue);
  color: #fff !important;
  border: none;
  border-radius: 50px;
  padding: 14px 32px;
  font-weight: 700;
  font-size: 14.5px;
  box-shadow: 0 4px 20px rgba(29,93,255,0.3);
  transition: all 0.3s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.btn-primary-lcm:hover { transform: translateY(-2px); box-shadow: 0 10px 30px rgba(29,93,255,0.45); }
.btn-outline-lcm {
  background: transparent;
  color: var(--royal) !important;
  border: 2px solid var(--royal);
  border-radius: 50px;
  padding: 12px 30px;
  font-weight: 700;
  font-size: 14.5px;
  transition: all 0.3s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.btn-outline-lcm:hover { background: var(--royal); color: #fff !important; }
.btn-red-lcm {
  background: var(--red);
  color: #fff !important;
  border: none;
  border-radius: 50px;
  padding: 14px 32px;
  font-weight: 700;
  font-size: 14.5px;
  box-shadow: 0 4px 20px rgba(229,57,53,0.3);
  transition: all 0.3s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.btn-red-lcm:hover { transform: translateY(-2px); box-shadow: 0 10px 30px rgba(229,57,53,0.45); }

/* ── MISC ── */
.divider-line {
  width: 60px; height: 4px;
  background: var(--grad-red);
  border-radius: 2px;
  margin: 20px 0;
}
.tag {
  display: inline-block;
  background: rgba(29,93,255,0.08);
  color: var(--royal);
  border-radius: 6px;
  padding: 4px 12px;
  font-size: 12.5px;
  font-weight: 600;
  margin: 3px;
}
.tag-red { background: rgba(229,57,53,0.08); color: var(--red); }
.tag-navy { background: rgba(11,42,111,0.08); color: var(--navy); }

.icon-box {
  width: 56px; height: 56px;
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 26px;
}
.icon-box-blue { background: rgba(29,93,255,0.1); }
.icon-box-red { background: rgba(229,57,53,0.1); }
.icon-box-navy { background: rgba(11,42,111,0.08); }

.check-list { list-style: none; padding: 0; }
.check-list li {
  padding: 8px 0 8px 30px;
  position: relative;
  font-size: 14.5px;
  color: var(--dark);
}
.check-list li::before {
  content: '✓';
  position: absolute; left: 0;
  width: 20px; height: 20px;
  background: var(--grad-blue);
  color: #fff;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 11px;
  font-weight: 800;
  top: 10px;
}

.platform-badge {
  background: #fff;
  border: 1px solid var(--light-border);
  border-radius: 10px;
  padding: 14px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  font-size: 14px;
  transition: all 0.25s;
  box-shadow: var(--shadow-sm);
}
.platform-badge:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); border-color: var(--royal); }

/* ── ANIMATIONS ── */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s cubic-bezier(0.4,0,0.2,1);
}
.fade-up.visible { opacity: 1; transform: translateY(0); }
.fade-up.delay-1 { transition-delay: 0.1s; }
.fade-up.delay-2 { transition-delay: 0.2s; }
.fade-up.delay-3 { transition-delay: 0.3s; }
.fade-up.delay-4 { transition-delay: 0.4s; }
.fade-up.delay-5 { transition-delay: 0.5s; }

/* ── CONTACT FORM ── */
.form-control-lcm {
  border: 1.5px solid var(--light-border);
  border-radius: var(--radius);
  padding: 14px 18px;
  font-size: 14.5px;
  font-family: 'Manrope', sans-serif;
  transition: border-color 0.2s, box-shadow 0.2s;
  background: #fff;
  color: var(--dark);
  width: 100%;
}
.form-control-lcm:focus {
  outline: none;
  border-color: var(--royal);
  box-shadow: 0 0 0 4px rgba(29,93,255,0.1);
}
.form-control-lcm::placeholder { color: #aab0be; }
.form-label-lcm { font-weight: 600; font-size: 13.5px; color: var(--dark); margin-bottom: 8px; display: block; }

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .hero { min-height: auto; padding: 80px 0 60px; }
  .hero-stats { flex-wrap: wrap; gap: 24px; }
  .section { padding: 64px 0; }
  .hero-floating-badge { display: none; }
}
