*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html, body { overflow-x: hidden; max-width: 100%; }

:root {
  --primary: #0f2d6b;
  --primary-light: #1a4494;
  --accent: #5adbe4;
  --accent-light: #7ee5ed;
  --accent-glow: rgba(90,219,228,0.25);
  --dark: #060d1a;
  --dark-2: #0d1b2e;
  --text: #374151;
  --text-light: #6b7280;
  --bg: #ffffff;
  --bg-soft: #f4f7ff;
  --border: #e0e9ff;
  --radius: 16px;
  --shadow: 0 4px 24px rgba(90,219,228,0.08);
  --shadow-lg: 0 20px 60px rgba(90,219,228,0.15);
}

html { scroll-behavior: smooth; }
body { font-family: 'Inter', sans-serif; color: var(--text); background: var(--dark); line-height: 1.6; overflow-x: hidden; }
body.loaded { background: var(--bg); }
.container { max-width: 1320px; margin: 0 auto; padding: 0 40px; }
.section { padding: 130px 0; }

/* LOADER */
#loader {
  position: fixed; inset: 0; z-index: 9999;
  background: var(--dark);
  display: flex; align-items: center; justify-content: center;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}
#loader.hidden { opacity: 0; visibility: hidden; }
.loader-inner { display: flex; flex-direction: column; align-items: center; gap: 1px; }
.loader-logo img { width: 140px; height: 140px; object-fit: contain; animation: logoLock 1.2s cubic-bezier(0.22,1,0.36,1) forwards; opacity: 0; }
@keyframes logoLock {
  0%   { opacity: 0; transform: scale(0.75) rotate(25deg); filter: blur(6px); }
  50%  { opacity: 1; transform: scale(1.08) rotate(-4deg); filter: blur(0); }
  75%  { transform: scale(0.97) rotate(2deg); }
  100% { opacity: 1; transform: scale(1) rotate(0deg); filter: blur(0); }
}
@keyframes loaderPulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:0.85;transform:scale(0.97)} }
.loader-text { display: flex; flex-direction: column; align-items: center; gap: 10px; }
.loader-bar-wrap { width: 200px; height: 2px; background: rgba(255,255,255,0.08); border-radius: 10px; overflow: hidden; }
.loader-bar { height: 100%; width: 0%; background: linear-gradient(90deg, var(--accent), var(--accent-light)); animation: loadBar 1.8s ease forwards; border-radius: 10px; }
@keyframes loadBar { 0%{width:0%} 70%{width:80%} 100%{width:100%} }
.loader-tag { font-size: 0.75rem; color: rgba(255,255,255,0.3); letter-spacing: 2px; text-transform: uppercase; }

/* EXTRA KEYFRAMES */
@keyframes statPop {
  0% { transform: scale(0.7); opacity: 0; }
  100% { transform: scale(1); opacity: 1; }
}
@keyframes floatY {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
@keyframes shimmer {
  0% { background-position: -400px 0; }
  100% { background-position: 400px 0; }
}
@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-16px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes glowPulse {
  0%,100% { box-shadow: 0 6px 24px rgba(37,99,235,0.3); }
  50% { box-shadow: 0 6px 40px rgba(37,99,235,0.6); }
}

/* SECTION TAGS & HEADERS */
.section-tag {
  display: inline-block;
  background: rgba(37,99,235,0.08);
  color: var(--accent);
  font-size: 0.72rem; font-weight: 700;
  letter-spacing: 3px; text-transform: uppercase;
  padding: 7px 18px; border-radius: 50px; margin-bottom: 18px;
  border: 1px solid rgba(37,99,235,0.15);
}
.section-header { text-align: center; margin-bottom: 64px; }
.section-header h2 { font-size: 2.6rem; font-weight: 800; color: var(--dark); margin-bottom: 16px; line-height: 1.2; }
.section-sub { color: var(--text-light); max-width: 540px; margin: 0 auto; font-size: 0.95rem; line-height: 1.75; }
h2 { font-size: 2.4rem; font-weight: 800; color: var(--dark); line-height: 1.2; margin-bottom: 20px; }
h2 span { color: var(--accent); }

/* REVEAL ANIMATION */
.reveal { opacity: 0; transform: translateY(32px); transition: opacity 0.65s ease, transform 0.65s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* BUTTONS */
.btn-primary {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--accent); color: #fff;
  font-weight: 700; font-size: 0.9rem; letter-spacing: 0.3px;
  padding: 15px 34px; border-radius: 50px;
  text-decoration: none; border: none; cursor: pointer;
  transition: all 0.25s; box-shadow: 0 6px 24px var(--accent-glow);
  animation: glowPulse 3s ease infinite;
}
.btn-primary:hover { background: var(--primary-light); transform: translateY(-2px); box-shadow: 0 12px 32px var(--accent-glow); }
.btn-primary.full-width { width: 100%; justify-content: center; }

.btn-ghost {
  display: inline-flex; align-items: center; gap: 10px;
  background: transparent; color: rgba(255,255,255,0.85);
  font-weight: 600; font-size: 0.9rem;
  padding: 15px 34px; border-radius: 50px;
  text-decoration: none; border: 1.5px solid rgba(255,255,255,0.25);
  transition: all 0.25s;
}
.btn-ghost:hover { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.6); color: #fff; }

.btn-outline {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent; color: var(--accent);
  font-weight: 600; font-size: 0.88rem;
  padding: 12px 28px; border-radius: 50px;
  text-decoration: none; border: 1.5px solid var(--border);
  transition: all 0.25s;
}
.btn-outline:hover { background: var(--accent); color: #fff; border-color: var(--accent); }

/* NAVBAR */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 24px 0; transition: all 0.35s;
  background: rgba(6,13,26,0.92); backdrop-filter: blur(16px);
  width: 100%;
}
.navbar .container { max-width: 100%; padding: 0 40px; }
.navbar.scrolled {
  background: rgba(6,13,26,0.96);
  backdrop-filter: blur(16px);
  padding: 16px 0;
  box-shadow: 0 1px 0 rgba(255,255,255,0.05);
}
.nav-inner { position: relative; display: flex; align-items: center; justify-content: space-between; }
.logo { font-size: 1.45rem; font-weight: 900; color: #fff; text-decoration: none; letter-spacing: -0.5px; }
.logo span { color: var(--accent-light); }
.nav-links { display: flex; align-items: center; gap: 8px; list-style: none; }
.nav-links a {
  color: rgba(255,255,255,0.7); text-decoration: none;
  font-size: 0.88rem; font-weight: 500;
  padding: 8px 14px; border-radius: 8px;
  transition: all 0.2s;
}
.nav-links a:hover, .nav-links a.active { color: #fff; background: rgba(255,255,255,0.07); }
.btn-nav {
  background: var(--accent) !important; color: #fff !important;
  font-weight: 700 !important; padding: 10px 22px !important;
  border-radius: 50px !important;
  box-shadow: 0 4px 16px var(--accent-glow);
}
.btn-nav:hover { background: var(--primary-light) !important; }
.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; }
.hamburger span { display: block; width: 22px; height: 2px; background: #fff; border-radius: 2px; transition: all 0.3s; }
@media (min-width: 769px) {
  .nav-links { display: flex !important; }
  .hamburger { display: none !important; }
  .mobile-nav-overlay { display: none !important; }
}
.mobile-menu-header {
  display: none;
  position: fixed; top: 0; left: 0; right: 0;
  padding: 18px 24px;
  align-items: center; justify-content: space-between;
  background: var(--dark-2);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  z-index: 1000;
}

/* HERO */
.hero {
  min-height: 100vh; display: flex; align-items: center;
  position: relative; overflow: hidden;
  background: var(--dark);
}
.hero-bg {
  position: absolute; inset: 0;
  background: url('https://images.unsplash.com/photo-1497366216548-37526070297c?w=1600&q=60') center/cover no-repeat;
  opacity: 0.06;
}
.hero-grid-overlay {
  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;
}
.hero-glow {
  position: absolute; top: -200px; right: -200px;
  width: 700px; height: 700px; border-radius: 50%;
  background: radial-gradient(circle, rgba(37,99,235,0.18) 0%, transparent 70%);
  pointer-events: none;
}
.hero-content { position: relative; z-index: 1; padding: 160px 0 100px; max-width: 1320px; display: flex; align-items: flex-start; gap: 80px; }
.hero-left { flex-shrink: 0; display: flex; align-items: flex-start; justify-content: center; margin-top: 80px; }
.hero-logo { width: 260px; height: 260px; object-fit: contain; animation: logoLock 1.2s cubic-bezier(0.22,1,0.36,1) forwards; opacity: 0; }
.hero-right { flex: 1; }
.hero-eyebrow {
  display: flex; align-items: center; gap: 14px;
  margin-bottom: 28px; flex-wrap: wrap;
}
.hero-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--accent-light); display: inline-block; box-shadow: 0 0 12px var(--accent-light); animation: pulse 2s infinite; }
@keyframes pulse { 0%,100%{opacity:1} 50%{opacity:0.4} }
.hero-eyebrow > span:nth-child(2) { color: rgba(255,255,255,0.5); font-size: 0.8rem; letter-spacing: 2px; text-transform: uppercase; font-weight: 500; }
.hero-rating-pill {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(251,191,36,0.12); color: #fbbf24;
  border: 1px solid rgba(251,191,36,0.25);
  font-size: 0.78rem; font-weight: 700; padding: 5px 14px; border-radius: 50px;
}
.hero-content h1 {
  font-size: clamp(3rem, 6vw, 5rem); font-weight: 900; color: #fff;
  line-height: 1.05; margin-bottom: 24px; letter-spacing: -2px;
}
.hero-highlight {
  position: relative; color: var(--accent-light);
  display: inline-block;
}
.hero-highlight::after {
  content: ''; position: absolute; bottom: 4px; left: 0; right: 0;
  height: 3px; background: var(--accent-light); border-radius: 2px; opacity: 0.4;
}
.hero-sub { color: rgba(255,255,255,0.6); font-size: 1rem; margin-bottom: 14px; font-weight: 400; }
.hero-desc { color: rgba(255,255,255,0.38); font-size: 0.88rem; max-width: 600px; margin-bottom: 44px; line-height: 1.8; }
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 48px; }
.hero-hashtag { color: rgba(255,255,255,0.2); font-size: 0.8rem; font-weight: 700; letter-spacing: 2px; }
.hero-scroll {
  position: absolute; bottom: 48px; right: 48px;
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  color: rgba(255,255,255,0.3); font-size: 0.7rem; letter-spacing: 2px; text-transform: uppercase;
}
.scroll-line { width: 1px; height: 48px; background: linear-gradient(to bottom, transparent, rgba(255,255,255,0.3)); animation: scrollAnim 2s infinite; }
@keyframes scrollAnim { 0%{transform:scaleY(0);transform-origin:top} 50%{transform:scaleY(1);transform-origin:top} 51%{transform-origin:bottom} 100%{transform:scaleY(0);transform-origin:bottom} }

/* MARQUEE */
.marquee-wrap {
  background: var(--accent); overflow: hidden;
  padding: 16px 0; border-top: 1px solid rgba(255,255,255,0.1);
}
.marquee-track {
  display: flex; gap: 32px; align-items: center;
  white-space: nowrap;
  animation: marquee 20s linear infinite;
  width: max-content;
}
.marquee-track span { color: rgba(255,255,255,0.9); font-size: 0.82rem; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; }
.marquee-dot { color: rgba(255,255,255,0.4) !important; font-size: 0.6rem !important; }
@keyframes marquee { from{transform:translateX(0)} to{transform:translateX(-50%)} }

/* WHY SECTION */
.why-section { background: var(--bg); }
.why-top { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: end; margin-bottom: 56px; }
.why-top-left h2 { margin-bottom: 0; }
.why-top-right p { color: var(--text-light); margin-bottom: 24px; line-height: 1.75; }
.why-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.why-card {
  background: var(--bg-soft); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 40px 36px;
  position: relative; overflow: hidden; transition: all 0.3s;
}
.why-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: rgba(37,99,235,0.2); }
.why-card.featured {
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  border-color: transparent;
}
.why-card.featured h3, .why-card.featured p { color: rgba(255,255,255,0.92); }
.why-card.featured .why-icon { background: rgba(255,255,255,0.12); color: #fff; }
.why-card.featured .why-num { color: rgba(255,255,255,0.08); }
.why-card-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 20px; }
.why-icon {
  width: 50px; height: 50px; border-radius: 14px;
  background: rgba(37,99,235,0.08);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; color: var(--accent);
}
.why-num { font-size: 3rem; font-weight: 900; color: rgba(37,99,235,0.05); line-height: 1; }
.why-card h3 { font-size: 1.05rem; font-weight: 700; color: var(--dark); margin-bottom: 12px; }
.why-card p { font-size: 0.88rem; color: var(--text-light); line-height: 1.75; }

/* STATS STRIP */
.stats-strip { background: var(--dark-2); padding: 64px 0; }
.stats-grid { display: flex; align-items: center; justify-content: center; gap: 0; }
.stats-item { text-align: center; flex: 1; }
.stats-item strong { display: inline; font-size: 3rem; font-weight: 900; color: #fff; line-height: 1; }
.stats-item strong.count { display: inline; }
.stats-item span { font-size: 3rem; font-weight: 900; color: var(--accent-light); line-height: 1; }
.stats-item .stats-num { display: flex; align-items: baseline; justify-content: center; gap: 2px; }
.stats-item p { color: rgba(255,255,255,0.4); font-size: 0.82rem; margin-top: 8px; letter-spacing: 1px; text-transform: uppercase; }
.stats-divider { width: 1px; height: 60px; background: rgba(255,255,255,0.08); flex-shrink: 0; }

/* CONTACT */
.contact { background: var(--bg-soft); }
.contact-wrap { display: grid; grid-template-columns: 1fr 1.3fr; gap: 80px; align-items: start; }
.contact-left h2 { font-size: 2.8rem; line-height: 1.1; margin-bottom: 20px; }
.contact-left > p { color: var(--text-light); margin-bottom: 36px; }
.contact-details { display: flex; flex-direction: column; gap: 20px; margin-bottom: 32px; }
.contact-item { display: flex; align-items: flex-start; gap: 16px; }
.contact-icon {
  width: 44px; height: 44px; min-width: 44px; border-radius: 12px;
  background: rgba(37,99,235,0.08);
  display: flex; align-items: center; justify-content: center;
  color: var(--accent); font-size: 1rem;
}
.contact-item strong { display: block; font-size: 0.75rem; color: var(--text-light); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 2px; }
.contact-item span { font-size: 0.9rem; color: var(--dark); font-weight: 500; }
.social-links { display: flex; gap: 10px; }
.social-links a {
  width: 40px; height: 40px; border-radius: 10px;
  background: var(--bg); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  color: var(--accent); font-size: 0.95rem; text-decoration: none;
  transition: all 0.2s;
}
.social-links a:hover { background: var(--accent); color: #fff; border-color: var(--accent); }
.contact-right {
  background: var(--bg); border-radius: 24px;
  padding: 40px; box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
}
.contact-form { display: flex; flex-direction: column; gap: 18px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-group label { font-size: 0.8rem; font-weight: 700; color: var(--dark); letter-spacing: 0.5px; text-transform: uppercase; }
.form-group input, .form-group select, .form-group textarea {
  padding: 13px 16px; border: 1.5px solid var(--border); border-radius: 10px;
  font-family: 'Inter', sans-serif; font-size: 0.9rem; color: var(--dark);
  background: var(--bg-soft); transition: all 0.2s; outline: none;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color: var(--accent); box-shadow: 0 0 0 4px rgba(37,99,235,0.07); background: #fff;
}
.form-group textarea { resize: vertical; }

/* FOOTER */
.footer { background: var(--dark); padding: 80px 0 0; }
.footer-inner { display: grid; grid-template-columns: 1.8fr 1fr 1.6fr; gap: 56px; padding-bottom: 64px; border-bottom: 1px solid rgba(255,255,255,0.06); }
.footer-brand .logo { font-size: 1.4rem; }
.footer-brand p { color: rgba(255,255,255,0.45); font-size: 0.87rem; margin-top: 16px; max-width: 260px; line-height: 1.7; }
.footer-motto { color: rgba(255,255,255,0.35) !important; font-style: italic; margin-top: 10px !important; }
.footer-hashtag { color: var(--accent-light) !important; font-weight: 700; margin-top: 4px !important; }
.footer-links h4, .footer-contact-col h4 { color: rgba(255,255,255,0.9); font-size: 0.82rem; font-weight: 700; margin-bottom: 20px; letter-spacing: 2px; text-transform: uppercase; }
.footer-links ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-links a { color: rgba(255,255,255,0.45); text-decoration: none; font-size: 0.87rem; transition: color 0.2s; }
.footer-links a:hover { color: var(--accent-light); }
.footer-contact-list { display: flex; flex-direction: column; gap: 14px; }
.footer-contact-item { display: flex; align-items: flex-start; gap: 12px; }
.footer-contact-item i { color: var(--accent-light); font-size: 0.9rem; margin-top: 3px; flex-shrink: 0; }
.footer-contact-item span { color: rgba(255,255,255,0.45); font-size: 0.85rem; line-height: 1.6; }
.footer-bottom { padding: 24px 0; display: flex; align-items: center; justify-content: center; }
.footer-bottom p { color: rgba(255,255,255,0.25); font-size: 0.82rem; text-align: center; }

/* FLOATING SOCIAL */
.floating-social {
  position: fixed; left: 20px; top: 50%; transform: translateY(-50%);
  display: flex; flex-direction: column; gap: 12px; z-index: 1000;
}
.floating-social a {
  width: 48px; height: 48px; border-radius: 8px;
  background: var(--accent); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; text-decoration: none;
  transition: all 0.3s; box-shadow: 0 4px 16px rgba(37,99,235,0.3);
}
.floating-social a:hover { background: var(--primary); transform: translateX(4px); box-shadow: 0 6px 24px rgba(37,99,235,0.5); }

/* BACK TO TOP */
.back-to-top {
  position: fixed; right: 20px; bottom: 20px; z-index: 1000;
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--accent); color: #fff; border: none;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; cursor: pointer;
  box-shadow: 0 4px 16px rgba(37,99,235,0.3);
  transition: all 0.3s;
  opacity: 0; visibility: hidden; transform: translateY(20px);
}
.back-to-top.visible { opacity: 1; visibility: visible; transform: translateY(0); }
.back-to-top:hover { background: var(--primary); transform: translateY(-4px); box-shadow: 0 6px 24px rgba(37,99,235,0.5); }

/* RESPONSIVE */
@media (max-width: 1024px) {
  .why-top { grid-template-columns: 1fr; gap: 24px; }
  .contact-wrap { grid-template-columns: 1fr; gap: 48px; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 40px; }
  .hero-content { gap: 48px; }
}
@media (max-width: 768px) {
  .section { padding: 80px 0; }
  .container { padding: 0 20px; }
  h2 { font-size: 1.8rem; }
  .hamburger { display: flex; z-index: 1002; flex-direction: column; gap: 5px; }
  .hamburger span { transition: all 0.3s; }
  .hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .hamburger.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
  .hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  /* ── FULLSCREEN MOBILE MENU ── */
  .mobile-nav-overlay {
    display: none;
    position: fixed; inset: 0; z-index: 1001;
    background: #16243d;
    flex-direction: column;
    opacity: 0; transition: opacity 0.3s ease;
  }
  .mobile-nav-overlay.open { display: flex; opacity: 1; }

  .mobile-nav-topbar {
    display: flex; align-items: center; justify-content: space-between;
    padding: 0 24px; height: 64px; flex-shrink: 0;
    border-bottom: 1px solid rgba(255,255,255,0.08);
  }
  .mobile-nav-topbar .logo { font-size: 1.2rem; font-weight: 900; color: #fff; text-decoration: none; }
  .mobile-nav-topbar .logo span { color: var(--accent-light); }
  .mobile-nav-x {
    background: none; border: none; color: rgba(255,255,255,0.7);
    font-size: 1.5rem; cursor: pointer; padding: 8px; line-height: 1;
    transition: color 0.2s;
  }
  .mobile-nav-x:hover { color: #fff; }

  .mobile-nav-links {
    flex: 1; display: flex; flex-direction: column;
    align-items: center; justify-content: center;
    gap: 0; list-style: none; padding: 0 32px;
  }
  .mobile-nav-links li { width: 100%; }
  .mobile-nav-links a {
    display: block; width: 100%; text-align: center;
    font-size: 1.2rem; font-weight: 400; letter-spacing: 0.02em;
    color: rgba(255,255,255,0.7); text-decoration: none;
    padding: 18px 0;
    border-bottom: 1px solid rgba(255,255,255,0.07);
    transition: color 0.2s;
  }
  .mobile-nav-links li:first-child a { border-top: 1px solid rgba(255,255,255,0.07); }
  .mobile-nav-links a:hover, .mobile-nav-links a.active { color: var(--accent-light); }
  .mobile-nav-links .btn-nav {
    display: block; margin-top: 28px;
    background: var(--accent) !important; color: #fff !important;
    font-size: 1.1rem !important; font-weight: 700 !important;
    padding: 16px 0 !important; border-radius: 50px !important;
    text-align: center; border: none !important;
    box-shadow: 0 4px 24px var(--accent-glow);
  }

  /* hide the original ul on mobile */
  .nav-links { display: none !important; }
  .why-grid { grid-template-columns: 1fr; }
  .stats-grid { flex-wrap: wrap; gap: 28px; justify-content: center; }
  .stats-item { min-width: 120px; flex: none; }
  .stats-divider { display: none; }
  .form-row { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  .floating-social { display: none; }
  .hero-scroll { display: none; }
  .hero-content { padding: 120px 0 80px; flex-direction: column; gap: 32px; align-items: center; text-align: center; }
  .hero-logo { width: 160px; height: 160px; }
  .hero-left { margin-top: 0; }
  .hero-eyebrow { justify-content: center; }
  .hero-cta { justify-content: center; }
  .hero-desc { margin-left: auto; margin-right: auto; }
  .contact-left h2 { font-size: 2rem; }
  .marquee-track { gap: 20px; }
}
@media (max-width: 480px) {
  .container { padding: 0 20px; }
  .section { padding: 64px 0; }
  .hero-content { padding: 110px 0 64px; }
  .hero-logo { width: 130px; height: 130px; }
  .hero-content h1 { letter-spacing: -1px; }
  .stats-grid { gap: 20px; }
  .stats-item strong, .stats-item span { font-size: 2.2rem; }
  .why-card { padding: 28px 22px; }
  .contact-right { padding: 28px 20px; }
  .footer-inner { padding-bottom: 48px; }
  .btn-primary, .btn-ghost { padding: 13px 24px; font-size: 0.88rem; }
}

/* CONTACT MODAL */
.contact-modal-backdrop {
  position: fixed; inset: 0; z-index: 9000;
  background: rgba(6,13,26,0.85); backdrop-filter: blur(6px);
  display: flex; align-items: center; justify-content: center; padding: 20px;
  opacity: 0; visibility: hidden; transition: opacity 0.3s, visibility 0.3s;
}
.contact-modal-backdrop.open { opacity: 1; visibility: visible; }
.contact-modal-box {
  background: #fff; border-radius: 24px; width: 100%; max-width: 1100px;
  max-height: 90vh; overflow: hidden;
  display: grid; grid-template-columns: 1fr 1.6fr;
  position: relative;
  transform: scale(0.95) translateY(20px);
  transition: transform 0.35s cubic-bezier(0.34,1.56,0.64,1);
}
.contact-modal-backdrop.open .contact-modal-box { transform: scale(1) translateY(0); }
.contact-modal-left {
  position: relative; overflow: hidden; border-radius: 24px 0 0 24px;
  min-height: 500px;
}
.contact-modal-left img {
  width: 100%; height: 100%; object-fit: cover; display: block;
}
.contact-modal-left-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(160deg, rgba(15,45,107,0.55) 0%, rgba(6,13,26,0.75) 100%);
}
.contact-modal-left-text {
  position: absolute; bottom: 0; left: 0; right: 0; padding: 32px;
}
.contact-modal-left-text h3 { font-size: 1.4rem; font-weight: 900; color: #fff; margin-bottom: 8px; letter-spacing: -0.3px; }
.contact-modal-left-text p { color: rgba(255,255,255,0.55); font-size: 0.85rem; line-height: 1.6; margin-bottom: 20px; }
.contact-modal-left-info { display: flex; flex-direction: column; gap: 10px; }
.contact-modal-left-info a {
  display: flex; align-items: center; gap: 10px;
  color: rgba(255,255,255,0.7); font-size: 0.82rem; text-decoration: none;
  transition: color 0.2s;
}
.contact-modal-left-info a:hover { color: var(--accent); }
.contact-modal-left-info a i { color: var(--accent); width: 14px; }
.contact-modal-right { padding: 48px; overflow-y: auto; max-height: 90vh; }
.contact-modal-close {
  position: absolute; top: 16px; right: 16px; z-index: 9001;
  width: 40px; height: 40px; border-radius: 50%; border: none; cursor: pointer;
  background: var(--bg-soft); color: var(--dark); font-size: 0.95rem;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.25s, transform 0.3s;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}
.contact-modal-close:hover { background: var(--accent); color: var(--dark); transform: rotate(90deg); }
.contact-modal-right .section-tag { margin-bottom: 8px; }
.contact-modal-right h2 { font-size: 1.8rem; font-weight: 900; color: var(--dark); margin-bottom: 6px; letter-spacing: -0.5px; }
.contact-modal-right > p { color: var(--text-light); font-size: 0.9rem; margin-bottom: 28px; }
@media (max-width: 768px) {
  .contact-modal-box { grid-template-columns: 1fr; max-height: none; overflow: visible; }
  .contact-modal-left { min-height: 220px; border-radius: 24px 24px 0 0; }
  .contact-modal-backdrop { align-items: flex-start; overflow-y: auto; }
  .contact-modal-right { padding: 32px 20px; max-height: none; }
  .contact-modal-right h2 { font-size: 1.4rem; }
}

/* COOKIE BANNER */
#cookieBanner {
  position: fixed; bottom: 24px; left: 50%; transform: translateX(-50%) translateY(120px);
  z-index: 9000; width: min(560px, calc(100vw - 32px));
  background: #0f1e35; border: 1px solid rgba(255,255,255,0.1);
  border-radius: 14px; box-shadow: 0 8px 40px rgba(0,0,0,0.5);
  transition: transform 0.4s cubic-bezier(0.4,0,0.2,1);
}
#cookieBanner.show { transform: translateX(-50%) translateY(0); }
.cookie-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; padding: 16px 20px;
}
.cookie-inner p { margin: 0; font-size: 0.85rem; color: rgba(255,255,255,0.7); line-height: 1.5; }
.cookie-inner p i { color: var(--accent-light); margin-right: 6px; }
.cookie-inner a { color: var(--accent-light); text-decoration: underline; }
#cookieAccept {
  flex-shrink: 0; background: var(--accent); color: #fff;
  border: none; border-radius: 8px; padding: 9px 20px;
  font-size: 0.85rem; font-weight: 700; cursor: pointer;
  transition: background 0.2s;
}
#cookieAccept:hover { background: var(--primary-light); }
