/* ============================================================
   NUMERO SOLUTIONS INC — Shared Stylesheet
   Brand: Blue #1060A8 · Red #D92B2B
   ============================================================ */

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

/* ---------- VARIABLES ---------- */
:root {
  --brand-blue-light:  #4A9DD4;
  --brand-blue:        #1060A8;
  --brand-blue-dark:   #0A4A85;
  --brand-blue-deeper: #073870;
  --brand-blue-bg:     #EBF3FB;

  --brand-red-light:   #F06060;
  --brand-red:         #D92B2B;
  --brand-red-dark:    #B01F1F;
  --brand-red-bg:      #FDF0F0;

  --gray-50:  #f9fafb;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-300: #d1d5db;
  --gray-400: #9ca3af;
  --gray-500: #6b7280;
  --gray-600: #4b5563;
  --gray-700: #374151;
  --gray-800: #1f2937;
  --gray-900: #111827;
  --white:    #ffffff;

  --bg:         var(--white);
  --bg-alt:     var(--gray-50);
  --bg-card:    var(--white);
  --text:       var(--gray-900);
  --text-muted: var(--gray-500);
  --border:     var(--gray-200);
  --nav-bg:     rgba(255,255,255,0.96);
  --shadow:     0 4px 24px rgba(0,0,0,0.08);
  --shadow-lg:  0 12px 48px rgba(0,0,0,0.12);
}

[data-theme="dark"] {
  --bg:         #0b0f18;
  --bg-alt:     #131926;
  --bg-card:    #1a2235;
  --text:       #e8edf5;
  --text-muted: #7a8599;
  --border:     #252f44;
  --nav-bg:     rgba(11,15,24,0.96);
  --shadow:     0 4px 24px rgba(0,0,0,0.45);
  --shadow-lg:  0 12px 48px rgba(0,0,0,0.55);
}

/* ---------- BASE ---------- */
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  transition: background 0.3s, color 0.3s;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

/* ---------- UTILITIES ---------- */
.container    { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }
.section      { padding: 100px 0; }
.section-alt  { background: var(--bg-alt); }
.text-center  { text-align: center; }

.tag {
  display: inline-block;
  font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--brand-blue); background: var(--brand-blue-bg);
  padding: 0.3rem 0.9rem; border-radius: 100px; margin-bottom: 1rem;
}
[data-theme="dark"] .tag { background: rgba(16,96,168,0.18); color: var(--brand-blue-light); }

.tag-red { color: var(--brand-red) !important; background: var(--brand-red-bg) !important; }
[data-theme="dark"] .tag-red { background: rgba(217,43,43,0.15) !important; color: var(--brand-red-light) !important; }

.section-title {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 800; line-height: 1.2; margin-bottom: 1rem;
}
.section-subtitle {
  font-size: 1.05rem; color: var(--text-muted);
  max-width: 600px; margin: 0 auto 3.5rem;
}

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.8rem 1.8rem; border-radius: 8px;
  font-size: 0.95rem; font-weight: 600;
  cursor: pointer; border: none; transition: all 0.22s;
  text-decoration: none; font-family: inherit;
}
.btn-primary  { background: var(--brand-blue); color: white; }
.btn-primary:hover { background: var(--brand-blue-dark); transform: translateY(-1px); box-shadow: 0 8px 24px rgba(16,96,168,0.32); }

.btn-red      { background: var(--brand-red); color: white; }
.btn-red:hover { background: var(--brand-red-dark); transform: translateY(-1px); box-shadow: 0 8px 24px rgba(217,43,43,0.3); }

.btn-outline  { background: transparent; color: var(--text); border: 2px solid var(--border); }
.btn-outline:hover { border-color: var(--brand-blue); color: var(--brand-blue); transform: translateY(-1px); }

.btn-white    { background: white; color: var(--brand-blue-dark); font-weight: 700; }
.btn-white:hover { background: #f0f7ff; transform: translateY(-1px); }

.btn-ghost { background: transparent; color: var(--brand-blue); border: 2px solid var(--brand-blue); }
.btn-ghost:hover { background: var(--brand-blue); color: white; transform: translateY(-1px); }

/* ---------- SCROLL REVEAL ---------- */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ============================================================
   NAVIGATION
============================================================ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: var(--nav-bg);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
  transition: all 0.3s;
}
.nav.scrolled { box-shadow: var(--shadow); }

.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 72px; gap: 2rem;
}

.nav-logo { display: flex; align-items: center; gap: 0.55rem; white-space: nowrap; }
.nav-logo-text { display: flex; flex-direction: column; line-height: 1.1; }
.nav-logo-name { font-size: 1.05rem; font-weight: 800; letter-spacing: -0.01em; }
.nav-logo-name .blue { color: var(--brand-blue); }
.nav-logo-name .red  { color: var(--brand-red); }
.nav-logo-tagline { font-size: 0.6rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--text-muted); }

/* Real logo image — nav (transparent PNG, no background needed) */
.nav-logo-img {
  height: 44px;
  width: auto;
  display: block;
  object-fit: contain;
  transition: opacity 0.2s;
}
.nav-logo:hover .nav-logo-img { opacity: 0.82; }

.nav-links { display: flex; align-items: center; gap: 0.2rem; }
.nav-links a {
  padding: 0.45rem 0.85rem; border-radius: 6px;
  font-size: 0.9rem; font-weight: 500; color: var(--text-muted); transition: all 0.2s;
}
.nav-links a:hover,
.nav-links a.active { color: var(--brand-blue); background: var(--brand-blue-bg); }
[data-theme="dark"] .nav-links a:hover,
[data-theme="dark"] .nav-links a.active { background: rgba(16,96,168,0.12); }

.nav-actions { display: flex; align-items: center; gap: 0.75rem; }

.theme-toggle {
  width: 38px; height: 38px; border-radius: 8px;
  border: 1px solid var(--border); background: transparent;
  cursor: pointer; display: flex; align-items: center; justify-content: center;
  color: var(--text); transition: all 0.2s;
}
.theme-toggle:hover { background: var(--bg-alt); }

.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 6px; border: none; background: transparent; }
.hamburger span { display: block; width: 22px; height: 2px; background: var(--text); border-radius: 2px; transition: all 0.3s; }

.mobile-menu { display: none; flex-direction: column; padding: 1rem 1.5rem 1.5rem; border-top: 1px solid var(--border); background: var(--nav-bg); }
.mobile-menu.open { display: flex; }
.mobile-menu a { padding: 0.75rem 0; font-weight: 500; color: var(--text-muted); border-bottom: 1px solid var(--border); transition: color 0.2s; }
.mobile-menu a:hover, .mobile-menu a.active { color: var(--brand-blue); }

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

/* ============================================================
   HERO (homepage)
============================================================ */
.hero {
  min-height: 100vh; display: flex; align-items: center;
  position: relative; overflow: hidden; padding-top: 72px;
  background: linear-gradient(140deg, #061B3A 0%, #0A3B70 45%, #1A0808 100%);
}
.hero-grid {
  position: absolute; inset: 0;
  background-image: linear-gradient(rgba(16,96,168,0.07) 1px, transparent 1px), linear-gradient(90deg, rgba(16,96,168,0.07) 1px, transparent 1px);
  background-size: 56px 56px;
}
.hero-glow-red  { position: absolute; top: -100px; right: -100px; width: 500px; height: 500px; border-radius: 50%; background: radial-gradient(circle, rgba(217,43,43,0.18) 0%, transparent 70%); pointer-events: none; }
.hero-glow-blue { position: absolute; bottom: -120px; left: -60px; width: 600px; height: 600px; border-radius: 50%; background: radial-gradient(circle, rgba(16,96,168,0.2) 0%, transparent 70%); pointer-events: none; }
.hero-particles { position: absolute; inset: 0; overflow: hidden; pointer-events: none; }
.hero-particles span { position: absolute; border-radius: 50%; animation: floatUp linear infinite; }
@keyframes floatUp {
  0%   { transform: translateY(100vh) scale(0); opacity: 0; }
  10%  { opacity: 1; } 90% { opacity: 1; }
  100% { transform: translateY(-20vh) scale(1); opacity: 0; }
}
.hero-content { position: relative; z-index: 1; padding: 5rem 0; max-width: 780px; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: rgba(16,96,168,0.2); border: 1px solid rgba(74,157,212,0.35);
  color: #90C8F0; font-size: 0.78rem; font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase;
  padding: 0.4rem 1rem; border-radius: 100px; margin-bottom: 1.5rem;
}
.hero-title { font-size: clamp(2.2rem, 5vw, 3.8rem); font-weight: 900; line-height: 1.1; color: white; margin-bottom: 1.5rem; }
.hero-title .highlight-blue { background: linear-gradient(135deg, #4A9DD4, #90C8F0); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.hero-title .highlight-red  { background: linear-gradient(135deg, #F06060, #FF9090); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.hero-desc { font-size: 1.1rem; color: rgba(255,255,255,0.65); max-width: 620px; margin-bottom: 2.5rem; line-height: 1.75; }
.hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero-qsr { display: flex; gap: 2rem; margin-top: 3rem; padding-top: 2rem; border-top: 1px solid rgba(255,255,255,0.1); flex-wrap: wrap; }
.hero-qsr-item { display: flex; align-items: center; gap: 0.6rem; font-size: 0.88rem; font-weight: 600; color: rgba(255,255,255,0.55); }
.hero-qsr-dot { width: 8px; height: 8px; border-radius: 50%; }
.hero-qsr-dot.blue { background: #4A9DD4; }
.hero-qsr-dot.red  { background: #F06060; }
.hero-stats { display: flex; gap: 2.5rem; margin-top: 2.5rem; flex-wrap: wrap; }
.hero-stat-num { font-size: 2rem; font-weight: 800; color: white; }
.hero-stat-num .num-red { color: #F06060; }
.hero-stat-label { font-size: 0.82rem; color: rgba(255,255,255,0.45); margin-top: 0.1rem; }

/* ---------- PAGE HERO (inner pages) ---------- */
.page-hero {
  padding: 140px 0 80px;
  background: linear-gradient(140deg, #061B3A 0%, #0A3B70 55%, #1A0808 100%);
  position: relative; overflow: hidden;
}
.page-hero .hero-grid { position: absolute; inset: 0; }
.page-hero-content { position: relative; z-index: 1; }
.page-hero h1 { font-size: clamp(2rem, 4vw, 3rem); font-weight: 900; color: white; margin-bottom: 1rem; }
.page-hero p  { font-size: 1.1rem; color: rgba(255,255,255,0.65); max-width: 560px; line-height: 1.75; }
.breadcrumb { display: flex; align-items: center; gap: 0.5rem; font-size: 0.82rem; color: rgba(255,255,255,0.45); margin-bottom: 1.25rem; }
.breadcrumb a { color: rgba(255,255,255,0.45); transition: color 0.2s; }
.breadcrumb a:hover { color: #90C8F0; }
.breadcrumb span { color: #90C8F0; font-weight: 600; }

/* ============================================================
   MARQUEE
============================================================ */
.marquee-strip {
  background: linear-gradient(90deg, var(--brand-blue-dark), var(--brand-blue), var(--brand-red-dark), var(--brand-red));
  background-size: 300% 100%; animation: gradientShift 8s ease infinite;
  padding: 0.85rem 0; overflow: hidden; white-space: nowrap;
}
@keyframes gradientShift { 0%,100%{background-position:0%} 50%{background-position:100%} }
.marquee-inner { display: inline-flex; gap: 3rem; animation: marquee 32s linear infinite; }
.marquee-item { font-size: 0.83rem; font-weight: 600; letter-spacing: 0.06em; color: rgba(255,255,255,0.85); display: flex; align-items: center; gap: 0.5rem; }
.marquee-dot { width: 5px; height: 5px; border-radius: 50%; background: rgba(255,255,255,0.4); }
@keyframes marquee { 0%{transform:translateX(0)} 100%{transform:translateX(-50%)} }

/* ============================================================
   SERVICE CARDS
============================================================ */
.services-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(270px, 1fr)); gap: 1.5rem; }

.service-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: 16px; padding: 2rem; transition: all 0.3s; cursor: default;
  position: relative; overflow: hidden;
}
.service-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; transform: scaleX(0); transition: transform 0.3s; }
.service-card.blue-card::before { background: linear-gradient(90deg, var(--brand-blue-light), var(--brand-blue)); }
.service-card.red-card::before  { background: linear-gradient(90deg, var(--brand-red-light), var(--brand-red)); }
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.service-card.blue-card:hover { border-color: rgba(16,96,168,0.25); }
.service-card.red-card:hover  { border-color: rgba(217,43,43,0.2); }
.service-card:hover::before { transform: scaleX(1); }

.service-icon { width: 52px; height: 52px; border-radius: 12px; display: flex; align-items: center; justify-content: center; margin-bottom: 1.25rem; font-size: 1.4rem; }
.service-icon.blue { background: linear-gradient(135deg, var(--brand-blue-light), var(--brand-blue)); }
.service-icon.red  { background: linear-gradient(135deg, var(--brand-red-light), var(--brand-red)); }

.service-title { font-size: 1.05rem; font-weight: 700; margin-bottom: 0.6rem; }
.service-desc  { font-size: 0.9rem; color: var(--text-muted); line-height: 1.65; margin-bottom: 1.25rem; }
.service-link  { font-size: 0.85rem; font-weight: 600; display: inline-flex; align-items: center; gap: 0.35rem; transition: gap 0.2s; }
.service-link.blue { color: var(--brand-blue); }
.service-link.red  { color: var(--brand-red); }
.service-link:hover { gap: 0.6rem; }

/* ============================================================
   WHY CHOOSE
============================================================ */
.why-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 1.5rem; }
.why-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: 16px; padding: 2rem; text-align: center; transition: all 0.3s; }
.why-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.why-card.blue-c:hover { border-color: rgba(16,96,168,0.25); }
.why-card.red-c:hover  { border-color: rgba(217,43,43,0.2); }
.why-icon { width: 64px; height: 64px; border-radius: 16px; display: flex; align-items: center; justify-content: center; margin: 0 auto 1.25rem; font-size: 1.6rem; }
.why-icon.blue { background: var(--brand-blue-bg); }
.why-icon.red  { background: var(--brand-red-bg); }
[data-theme="dark"] .why-icon.blue { background: rgba(16,96,168,0.15); }
[data-theme="dark"] .why-icon.red  { background: rgba(217,43,43,0.12); }
.why-title { font-size: 1rem; font-weight: 700; margin-bottom: 0.5rem; }
.why-desc  { font-size: 0.88rem; color: var(--text-muted); line-height: 1.65; }

/* ============================================================
   STATS
============================================================ */
.stats-section {
  background: linear-gradient(135deg, var(--brand-blue-deeper) 0%, var(--brand-blue) 50%, var(--brand-blue-dark) 100%);
  padding: 80px 0; position: relative; overflow: hidden;
}
.stats-section::before {
  content: ''; position: absolute; top: -80px; right: -80px; width: 300px; height: 300px;
  border-radius: 50%; background: radial-gradient(circle, rgba(217,43,43,0.25) 0%, transparent 70%);
}
.stats-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 2rem; text-align: center; position: relative; z-index: 1; }
.stat-num { font-size: clamp(2.4rem, 5vw, 3.4rem); font-weight: 900; color: white; line-height: 1; margin-bottom: 0.5rem; }
.stat-num.red-num { color: #FF8080; }
.stat-label   { font-size: 0.9rem; color: rgba(255,255,255,0.6); font-weight: 500; }
.stat-divider { width: 36px; height: 3px; border-radius: 2px; margin: 0.7rem auto; }
.stat-divider.blue-d { background: rgba(255,255,255,0.3); }
.stat-divider.red-d  { background: rgba(255,128,128,0.5); }

/* ============================================================
   INDUSTRIES
============================================================ */
.industries-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(155px, 1fr)); gap: 1rem; }
.industry-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: 14px; padding: 1.5rem 1rem; text-align: center; transition: all 0.3s; }
.industry-card:nth-child(odd):hover  { border-color: rgba(16,96,168,0.4); background: var(--brand-blue-bg); transform: translateY(-4px); box-shadow: 0 8px 24px rgba(16,96,168,0.1); }
.industry-card:nth-child(even):hover { border-color: rgba(217,43,43,0.3); background: var(--brand-red-bg);  transform: translateY(-4px); box-shadow: 0 8px 24px rgba(217,43,43,0.1); }
[data-theme="dark"] .industry-card:nth-child(odd):hover  { background: rgba(16,96,168,0.1); }
[data-theme="dark"] .industry-card:nth-child(even):hover { background: rgba(217,43,43,0.08); }
.industry-emoji { font-size: 2rem; margin-bottom: 0.75rem; }
.industry-name  { font-size: 0.86rem; font-weight: 600; }

/* ============================================================
   CASE STUDIES
============================================================ */
.cases-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(340px, 1fr)); gap: 1.75rem; }
.case-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: 20px; overflow: hidden; transition: all 0.3s; }
.case-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.case-img { height: 200px; display: flex; align-items: center; justify-content: center; font-size: 4rem; position: relative; overflow: hidden; }
.case-img::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 50%, rgba(0,0,0,0.25) 100%); }
.case-body  { padding: 1.75rem; }
.case-tag   { font-size: 0.73rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.09em; margin-bottom: 0.5rem; }
.case-tag.blue { color: var(--brand-blue); }
.case-tag.red  { color: var(--brand-red); }
.case-title { font-size: 1.15rem; font-weight: 700; margin-bottom: 0.75rem; }
.case-desc  { font-size: 0.9rem; color: var(--text-muted); line-height: 1.65; margin-bottom: 1.25rem; }
.case-results { display: flex; gap: 0.75rem; flex-wrap: wrap; }
.case-result { background: var(--bg-alt); border-radius: 8px; padding: 0.4rem 0.75rem; font-size: 0.78rem; font-weight: 600; }
.case-result.blue { color: var(--brand-blue); }
.case-result.red  { color: var(--brand-red); }
[data-theme="dark"] .case-result { background: rgba(255,255,255,0.05); }

/* ============================================================
   TESTIMONIALS
============================================================ */
.testimonials-wrap { overflow: hidden; }
.testimonials-track { display: flex; gap: 1.5rem; transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1); }
.testimonial-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: 20px; padding: 2rem; flex: 0 0 calc(33.333% - 1rem); min-width: 280px; }
.testimonial-stars { font-size: 0.95rem; margin-bottom: 1rem; letter-spacing: 1px; }
.testimonial-stars.blue { color: var(--brand-blue); }
.testimonial-stars.red  { color: var(--brand-red); }
.testimonial-text { font-size: 0.93rem; color: var(--text-muted); line-height: 1.75; margin-bottom: 1.5rem; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 0.75rem; }
.testimonial-avatar { width: 44px; height: 44px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 0.95rem; color: white; flex-shrink: 0; }
.testimonial-avatar.blue { background: linear-gradient(135deg, var(--brand-blue-light), var(--brand-blue)); }
.testimonial-avatar.red  { background: linear-gradient(135deg, var(--brand-red-light), var(--brand-red)); }
.testimonial-name { font-size: 0.9rem; font-weight: 700; }
.testimonial-role { font-size: 0.8rem; color: var(--text-muted); }
.carousel-controls { display: flex; align-items: center; justify-content: center; gap: 1rem; margin-top: 2.5rem; }
.carousel-btn { width: 44px; height: 44px; border-radius: 50%; border: 1px solid var(--border); background: var(--bg-card); cursor: pointer; display: flex; align-items: center; justify-content: center; color: var(--text); transition: all 0.2s; }
.carousel-btn:hover { background: var(--brand-blue); color: white; border-color: var(--brand-blue); }
.carousel-dots { display: flex; gap: 8px; }
.carousel-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--border); cursor: pointer; transition: all 0.2s; }
.carousel-dot.active { background: var(--brand-blue); width: 24px; border-radius: 4px; }

/* ============================================================
   CAREERS
============================================================ */
.careers-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.perks-list { display: flex; flex-direction: column; gap: 0.75rem; margin-bottom: 2rem; }
.perk-item  { display: flex; align-items: center; gap: 0.75rem; font-size: 0.95rem; }
.perk-check { width: 22px; height: 22px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 0.7rem; color: white; flex-shrink: 0; }
.perk-check.blue { background: var(--brand-blue); }
.perk-check.red  { background: var(--brand-red); }

.jobs-list { display: flex; flex-direction: column; gap: 1rem; }
.job-item { background: var(--bg-card); border: 1px solid var(--border); border-radius: 12px; padding: 1.25rem 1.5rem; display: flex; align-items: center; justify-content: space-between; gap: 1rem; transition: all 0.2s; }
.job-item.blue-j:hover { border-color: rgba(16,96,168,0.35); box-shadow: 0 4px 16px rgba(16,96,168,0.1); }
.job-item.red-j:hover  { border-color: rgba(217,43,43,0.3); box-shadow: 0 4px 16px rgba(217,43,43,0.08); }
.job-title { font-size: 0.95rem; font-weight: 600; margin-bottom: 0.25rem; }
.job-meta  { font-size: 0.8rem; color: var(--text-muted); }
.job-badge { font-size: 0.73rem; font-weight: 700; padding: 0.3rem 0.75rem; border-radius: 100px; white-space: nowrap; flex-shrink: 0; }
.job-badge.remote { background: var(--brand-blue-bg); color: var(--brand-blue); }
.job-badge.hybrid { background: var(--brand-red-bg);  color: var(--brand-red); }
[data-theme="dark"] .job-badge.remote { background: rgba(16,96,168,0.15); color: var(--brand-blue-light); }
[data-theme="dark"] .job-badge.hybrid { background: rgba(217,43,43,0.12); color: var(--brand-red-light); }

/* Job apply form on careers page */
.apply-form { background: var(--bg-card); border: 1px solid var(--border); border-radius: 20px; padding: 2.5rem; }
.apply-form h3 { font-size: 1.3rem; font-weight: 700; margin-bottom: 1.5rem; }

/* ============================================================
   CONTACT
============================================================ */
.contact-inner { display: grid; grid-template-columns: 1fr 1.4fr; gap: 4rem; align-items: start; }
.contact-info h3 { font-size: 1.5rem; font-weight: 700; margin-bottom: 1rem; }
.contact-info p  { color: var(--text-muted); line-height: 1.75; margin-bottom: 2rem; }
.contact-details { display: flex; flex-direction: column; gap: 1rem; }
.contact-detail  { display: flex; align-items: center; gap: 0.85rem; font-size: 0.93rem; }
.contact-detail-icon { width: 40px; height: 40px; border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 1.1rem; flex-shrink: 0; }
.contact-detail-icon.blue { background: var(--brand-blue-bg); }
.contact-detail-icon.red  { background: var(--brand-red-bg); }
[data-theme="dark"] .contact-detail-icon.blue { background: rgba(16,96,168,0.15); }
[data-theme="dark"] .contact-detail-icon.red  { background: rgba(217,43,43,0.12); }
.contact-form { background: var(--bg-card); border: 1px solid var(--border); border-radius: 20px; padding: 2.5rem; }
.form-row   { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { display: flex; flex-direction: column; gap: 0.4rem; margin-bottom: 1.25rem; }
.form-group label { font-size: 0.85rem; font-weight: 600; }
.form-group input, .form-group textarea, .form-group select {
  padding: 0.75rem 1rem; border-radius: 8px; border: 1px solid var(--border);
  background: var(--bg); color: var(--text); font-family: inherit; font-size: 0.9rem;
  transition: border-color 0.2s, box-shadow 0.2s; outline: none; width: 100%;
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
  border-color: var(--brand-blue); box-shadow: 0 0 0 3px rgba(16,96,168,0.12);
}
.form-group textarea { resize: vertical; min-height: 120px; }

/* ============================================================
   ABOUT PAGE
============================================================ */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.about-img-placeholder { background: linear-gradient(135deg, var(--brand-blue-deeper), var(--brand-blue)); border-radius: 24px; height: 420px; display: flex; align-items: center; justify-content: center; font-size: 6rem; }
.mission-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.mission-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: 16px; padding: 2rem; }
.mission-card h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 0.75rem; }
.mission-card p  { font-size: 0.92rem; color: var(--text-muted); line-height: 1.7; }
.mission-card.blue-top { border-top: 3px solid var(--brand-blue); }
.mission-card.red-top  { border-top: 3px solid var(--brand-red); }
.values-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 1.25rem; }
.value-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: 14px; padding: 1.5rem; text-align: center; transition: all 0.3s; }
.value-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.value-emoji { font-size: 2rem; margin-bottom: 0.75rem; }
.value-title { font-size: 0.9rem; font-weight: 700; }
.team-grid   { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 1.5rem; }
.team-card   { background: var(--bg-card); border: 1px solid var(--border); border-radius: 16px; overflow: hidden; transition: all 0.3s; text-align: center; }
.team-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.team-avatar { height: 140px; display: flex; align-items: center; justify-content: center; font-size: 3.5rem; }
.team-info   { padding: 1.25rem; }
.team-name   { font-size: 0.95rem; font-weight: 700; margin-bottom: 0.25rem; }
.team-role   { font-size: 0.82rem; color: var(--text-muted); }

/* ============================================================
   CTA BANNER
============================================================ */
.cta-banner {
  background: linear-gradient(135deg, var(--brand-blue-deeper) 0%, var(--brand-blue) 60%, var(--brand-red-dark) 100%);
  border-radius: 24px; padding: 4rem 3rem; text-align: center;
  margin: 80px 0; position: relative; overflow: hidden;
}
.cta-banner::before { content: ''; position: absolute; top: -60px; right: -60px; width: 240px; height: 240px; border-radius: 50%; background: rgba(255,255,255,0.06); }
.cta-banner::after  { content: ''; position: absolute; bottom: -80px; left: -40px; width: 300px; height: 300px; border-radius: 50%; background: rgba(0,0,0,0.08); }
.cta-banner h2 { font-size: clamp(1.5rem, 3vw, 2.2rem); font-weight: 800; color: white; margin-bottom: 1rem; position: relative; z-index:1; }
.cta-banner p  { color: rgba(255,255,255,0.7); margin-bottom: 2rem; position: relative; z-index:1; }
.cta-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; position: relative; z-index:1; }

/* ============================================================
   FOOTER
============================================================ */
.footer { background: #070E1C; color: var(--gray-400); padding: 0; }
.footer-accent-bar { height: 3px; background: linear-gradient(90deg, var(--brand-blue) 50%, var(--brand-red) 50%); }
.footer-body { padding: 60px 0 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem; padding-bottom: 3rem; border-bottom: 1px solid rgba(255,255,255,0.07); }
.footer-logo-name    { font-size: 1rem; font-weight: 800; }
.footer-logo-name .blue { color: #4A9DD4; }
.footer-logo-name .red  { color: #F06060; }
.footer-logo-tagline { font-size: 0.62rem; font-weight: 600; letter-spacing: 0.12em; color: rgba(255,255,255,0.35); margin-top: 2px; }

/* Real logo image — footer */
.footer-logo-img {
  height: 52px;
  width: auto;
  display: block;
  border-radius: 8px;
  background: #fff;
  padding: 4px 8px;
  object-fit: contain;
  margin-bottom: 0.75rem;
}
.footer-brand p { font-size: 0.88rem; line-height: 1.75; max-width: 280px; margin-top: 1rem; }
.footer-socials { display: flex; gap: 0.75rem; margin-top: 1.5rem; }
.footer-social { width: 36px; height: 36px; border-radius: 8px; background: rgba(255,255,255,0.06); display: flex; align-items: center; justify-content: center; font-size: 0.85rem; color: var(--gray-400); transition: all 0.2s; cursor: pointer; }
.footer-social:nth-child(odd):hover  { background: var(--brand-blue); color: white; }
.footer-social:nth-child(even):hover { background: var(--brand-red);  color: white; }
.footer-col h4 { color: white; font-size: 0.88rem; font-weight: 700; margin-bottom: 1rem; }
.footer-col ul { display: flex; flex-direction: column; gap: 0.55rem; }
.footer-col ul a { font-size: 0.875rem; color: var(--gray-400); transition: color 0.2s; }
.footer-col ul a:hover { color: #90C8F0; }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; padding: 1.5rem 0; font-size: 0.83rem; flex-wrap: wrap; gap: 0.5rem; }
.footer-bottom-links { display: flex; gap: 1.5rem; }
.footer-bottom-links a { color: var(--gray-500); font-size: 0.83rem; transition: color 0.2s; }
.footer-bottom-links a:hover { color: #90C8F0; }

/* ============================================================
   WHATSAPP BUTTON
============================================================ */
.whatsapp-btn { position: fixed; bottom: 2rem; right: 2rem; z-index: 900; width: 56px; height: 56px; border-radius: 50%; background: #25D366; display: flex; align-items: center; justify-content: center; box-shadow: 0 4px 20px rgba(37,211,102,0.4); cursor: pointer; transition: transform 0.2s; text-decoration: none; }
.whatsapp-btn:hover { transform: scale(1.1); }
.whatsapp-btn svg { width: 28px; height: 28px; fill: white; }

/* ============================================================
   RESPONSIVE
============================================================ */
@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand, .about-grid, .contact-inner { grid-column: 1 / -1; }
  .about-grid  { grid-template-columns: 1fr; gap: 2rem; }
  .contact-inner { grid-template-columns: 1fr; gap: 2rem; }
  .careers-inner { grid-template-columns: 1fr; gap: 2rem; }
  .mission-grid  { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .section { padding: 70px 0; }
  .testimonial-card { flex: 0 0 100%; }
  .cases-grid { grid-template-columns: 1fr; }
  .cta-banner { padding: 3rem 1.5rem; }
  .form-row   { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .footer-grid { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .hero-btns { flex-direction: column; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .industries-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ============================================================
   INTRO SPLASH SCREEN
   ============================================================ */
#introSplash {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: #ffffff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}
[data-theme="dark"] #introSplash { background: #0b0f18; }

#introSplash .splash-logo {
  width: 200px;
  height: auto;
  animation: splashPop 0.6s cubic-bezier(0.34,1.56,0.64,1) both;
}
#introSplash .splash-tagline {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted, #6b7280);
  animation: splashFadeUp 0.6s 0.2s ease both;
}
#introSplash .splash-bar {
  width: 0;
  height: 3px;
  border-radius: 2px;
  background: linear-gradient(90deg, #1060A8, #D92B2B);
  animation: splashBar 1.2s 0.3s ease forwards;
}
#introSplash.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

@keyframes splashPop {
  from { opacity: 0; transform: scale(0.8); }
  to   { opacity: 1; transform: scale(1); }
}
@keyframes splashFadeUp {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes splashBar {
  from { width: 0; }
  to   { width: 200px; }
}

/* ============================================================
   BRAND TEXT LOGO  (replaces logo image)
   Font: Bebas Neue — matches the logo's bold uppercase style
   ============================================================ */

.brand-logo {
  display: flex;
  flex-direction: column;
  line-height: 1;
  gap: 2px;
  text-decoration: none;
}

.brand-name {
  font-family: 'Bebas Neue', 'Arial Black', sans-serif;
  font-size: 1.75rem;
  letter-spacing: 0.03em;
  line-height: 1;
  white-space: nowrap;
}

.brand-blue  { color: #1060A8; }
.brand-red   { color: #D92B2B; }

/* Footer variants — lighter so they show on dark bg */
.brand-blue-f { color: #4A9DD4; }
.brand-red-f  { color: #F06060; }

.brand-tagline {
  font-family: 'Inter', sans-serif;
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* Footer tagline */
.brand-tagline-footer {
  color: rgba(255,255,255,0.38);
  letter-spacing: 0.2em;
}

/* Splash screen — larger */
.brand-logo-splash .brand-name {
  font-size: 3rem;
}
.brand-logo-splash .brand-tagline {
  font-size: 0.72rem;
  letter-spacing: 0.28em;
  text-align: center;
  color: var(--text-muted);
}

/* Footer logo spacing */
.brand-logo-footer {
  margin-bottom: 0.75rem;
}
