/* ═══════════════════════════════════════════════════════
   Vision Info Tek — Shared Stylesheet
   ═══════════════════════════════════════════════════════ */

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

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

:root {
  --white: #ffffff;
  --bg: #f5f7ff;
  --bg2: #eef1ff;
  --blue: #2563eb;
  --blue-light: #3b82f6;
  --indigo: #0f67d8;
  --violet: #0ea5a8;
  --cyan: #06b6d4;
  --green: #10b981;
  --orange: #f97316;
  --red: #ef4444;
  --amber: #f59e0b;
  --text: #0f172a;
  --text2: #475569;
  --text3: #94a3b8;
  --border: #e2e8f0;
  --border2: #c7d2fe;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.06), 0 1px 2px rgba(0,0,0,0.04);
  --shadow: 0 4px 20px rgba(15,103,216,0.08), 0 1px 4px rgba(0,0,0,0.06);
  --shadow-lg: 0 20px 60px rgba(15,103,216,0.12), 0 4px 16px rgba(0,0,0,0.08);
  --shadow-xl: 0 32px 80px rgba(15,103,216,0.16), 0 8px 24px rgba(0,0,0,0.1);
  --grad: linear-gradient(135deg, var(--blue), var(--indigo));
  --grad-full: linear-gradient(135deg, var(--blue) 0%, var(--indigo) 50%, var(--violet) 100%);
}

html { scroll-behavior: smooth; }
body { font-family: 'Inter', sans-serif; background: var(--white); color: var(--text); overflow-x: hidden; line-height: 1.6; }

::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--blue); border-radius: 3px; }

/* ── TYPOGRAPHY ── */
h1, h2, h3, h4 { font-family: 'Sora', sans-serif; letter-spacing: -0.01em; }

.gradient-text {
  background: var(--grad-full);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  height: 72px; padding: 0 5%;
  display: flex; align-items: center; justify-content: space-between;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  transition: all 0.3s;
}
nav.scrolled { height: 62px; box-shadow: var(--shadow); }

.logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.logo-mark {
  width: 38px; height: 38px; border-radius: 10px;
  background: var(--grad); display: grid; place-items: center;
  color: white; font-weight: 900; font-size: 1rem;
  font-family: 'Sora', sans-serif;
  box-shadow: 0 4px 14px rgba(15,103,216,0.4);
}
.logo-text { font-family: 'Sora', sans-serif; font-weight: 700; font-size: 1.1rem; color: var(--text); }
.logo-text .accent { color: var(--blue); }

.nav-links { display: flex; align-items: center; gap: 2rem; list-style: none; }
.nav-links a {
  text-decoration: none; color: var(--text2); font-size: 0.875rem; font-weight: 500;
  transition: color 0.2s; position: relative; padding-bottom: 2px;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -2px; left: 0; right: 0;
  height: 2px; background: var(--blue); border-radius: 1px;
  transform: scaleX(0); transition: transform 0.2s;
}
.nav-links a:hover, .nav-links a.active { color: var(--blue); }
.nav-links a:hover::after, .nav-links a.active::after { transform: scaleX(1); }

.nav-cta {
  padding: 9px 22px;
  background: var(--grad); color: white; font-size: 0.875rem; font-weight: 600;
  border: none; border-radius: 8px; cursor: pointer;
  text-decoration: none; transition: all 0.2s;
  box-shadow: 0 4px 14px rgba(15,103,216,0.35);
}
.nav-cta:hover { transform: translateY(-1px); box-shadow: 0 6px 20px rgba(15,103,216,0.45); }

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

.mobile-overlay {
  display: none; position: fixed; inset: 0; z-index: 999;
  background: white; flex-direction: column;
  align-items: center; justify-content: center; gap: 2rem;
}
.mobile-overlay.open { display: flex; }
.mobile-overlay a { font-family: 'Sora', sans-serif; font-size: 1.4rem; font-weight: 700; color: var(--text); text-decoration: none; transition: color 0.2s; }
.mobile-overlay a:hover { color: var(--blue); }
.mo-close { position: absolute; top: 20px; right: 20px; background: none; border: none; font-size: 2rem; cursor: pointer; color: var(--text); }

/* ── PAGE HERO BANNER ── */
.page-hero {
  padding-top: 72px;
  background: linear-gradient(160deg, #ffffff 0%, #eef1ff 45%, #f0f4ff 100%);
  position: relative; overflow: hidden;
}
.page-hero-dots {
  position: absolute; inset: 0; pointer-events: none;
  background-image: radial-gradient(circle, rgba(15,103,216,0.1) 1px, transparent 1px);
  background-size: 36px 36px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 30%, transparent 100%);
}
.page-hero-inner {
  max-width: 1200px; margin: 0 auto; padding: 5rem 5%;
  position: relative; z-index: 1;
}
.page-hero-inner .eyebrow { margin-bottom: 1rem; }
.page-hero-inner h1 {
  font-size: clamp(2.2rem, 4vw, 3.2rem); font-weight: 800;
  line-height: 1.1; letter-spacing: -0.02em; margin-bottom: 1.25rem;
}
.page-hero-inner p {
  font-size: 1.1rem; color: var(--text2); max-width: 600px; line-height: 1.8;
  margin-bottom: 2.5rem;
}

/* ── SECTION UTILITIES ── */
section { padding: 6rem 5%; }
.section-inner { max-width: 1200px; margin: 0 auto; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.72rem; font-weight: 800; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--blue);
}
.eyebrow::before { content: ''; width: 20px; height: 2px; background: var(--blue); border-radius: 1px; }

.section-title {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 800; line-height: 1.15; margin-bottom: 1rem;
}
.section-sub { font-size: 1rem; color: var(--text2); max-width: 560px; line-height: 1.8; }

/* ── BUTTONS ── */
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 28px; background: var(--grad); color: white;
  font-weight: 700; font-size: 0.9rem; border: none; border-radius: 10px;
  cursor: pointer; text-decoration: none; transition: all 0.25s;
  box-shadow: 0 6px 20px rgba(15,103,216,0.35);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 10px 28px rgba(15,103,216,0.45); }

.btn-ghost {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 28px; background: white; color: var(--text);
  font-weight: 600; font-size: 0.9rem; border: 1.5px solid var(--border);
  border-radius: 10px; cursor: pointer; text-decoration: none; transition: all 0.25s;
  box-shadow: var(--shadow-sm);
}
.btn-ghost:hover { border-color: var(--blue); color: var(--blue); transform: translateY(-2px); box-shadow: var(--shadow); }

.btn-white {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 28px; background: white; color: var(--indigo);
  font-weight: 700; font-size: 0.9rem; border-radius: 10px;
  text-decoration: none; transition: all 0.25s;
  box-shadow: 0 6px 20px rgba(0,0,0,0.2);
}
.btn-white:hover { transform: translateY(-2px); box-shadow: 0 10px 30px rgba(0,0,0,0.25); }

.btn-outline-white {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 28px; background: transparent; color: white;
  font-weight: 600; font-size: 0.9rem; border-radius: 10px;
  border: 1.5px solid rgba(255,255,255,0.35); text-decoration: none; transition: all 0.25s;
}
.btn-outline-white:hover { background: rgba(255,255,255,0.12); border-color: rgba(255,255,255,0.6); }

/* ── CARDS ── */
.card {
  background: white; border: 1px solid var(--border);
  border-radius: 20px; padding: 2rem;
  transition: all 0.3s;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: rgba(15,103,216,0.2); }

/* ── STATS BAR ── */
.stats-bar {
  background: var(--bg); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  padding: 2.5rem 5%;
}
.stats-inner { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; }
.stat-item { text-align: center; }
.stat-num {
  font-family: 'Sora', sans-serif; font-size: 2.5rem; font-weight: 800;
  background: var(--grad-full); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.stat-label { font-size: 0.85rem; color: var(--text2); margin-top: 2px; font-weight: 500; }

/* ── CTA BANNER ── */
.cta-section {
  padding: 5rem 5%;
  background: linear-gradient(135deg, #f7fbfd 0%, #eef8fb 52%, #eaf3f8 100%);
  position: relative; overflow: hidden; text-align: center;
}
.cta-section::before {
  content: ''; position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.05) 1px, transparent 1px);
  background-size: 40px 40px;
}
.cta-inner { position: relative; z-index: 1; max-width: 720px; margin: 0 auto; }
.cta-eyebrow {
  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: 100px; padding: 5px 14px;
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  color: rgba(255,255,255,0.8); margin-bottom: 1.5rem;
}
.cta-section h2 {
  font-size: clamp(2rem, 4vw, 3rem); font-weight: 800; color: white; margin-bottom: 1rem;
  letter-spacing: -0.02em; line-height: 1.15;
}
.cta-section p { color: rgba(255,255,255,0.7); font-size: 1rem; margin-bottom: 2.5rem; }
.cta-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ── PARTNERS STRIP ── */
.partners-strip { display: grid; grid-template-columns: repeat(5, 1fr); gap: 1rem; }
.partner-tile {
  background: white; border: 1.5px solid var(--border); border-radius: 14px;
  padding: 1.5rem 1rem; display: flex; align-items: center; justify-content: center;
  font-family: 'Sora', sans-serif; font-size: 0.95rem; font-weight: 700;
  color: var(--text2); min-height: 80px; transition: all 0.25s;
}
.partner-tile:hover { border-color: var(--blue); color: var(--blue); transform: translateY(-3px); box-shadow: var(--shadow); }
.partner-tile .hi { color: var(--blue); }

/* ── FOOTER ── */
footer {
  background: var(--text); color: rgba(255,255,255,0.7);
  padding: 4rem 5% 2rem;
}
.footer-grid {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 3rem;
  padding-bottom: 3rem; border-bottom: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 2rem;
}
.footer-brand .logo-text { color: white; }
.footer-brand .logo-text .accent { color: var(--blue-light); }
.footer-brand p { font-size: 0.85rem; margin-top: 1rem; line-height: 1.75; }
.footer-socials { display: flex; gap: 10px; margin-top: 1.5rem; }
.fsoc {
  width: 36px; height: 36px; border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.12);
  display: grid; place-items: center; color: rgba(255,255,255,0.6);
  text-decoration: none; transition: all 0.2s;
}
.fsoc:hover { border-color: var(--blue); color: var(--blue-light); }
.fsoc svg { width: 15px; height: 15px; }

.footer-col h4 { font-size: 0.78rem; font-weight: 800; color: white; margin-bottom: 1.25rem; text-transform: uppercase; letter-spacing: 0.1em; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.7rem; }
.footer-col ul li a { text-decoration: none; font-size: 0.85rem; color: rgba(255,255,255,0.5); transition: color 0.2s; }
.footer-col ul li a:hover { color: white; }

.footer-bottom {
  max-width: 1200px; margin: 0 auto;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 0.78rem; color: rgba(255,255,255,0.3);
}

/* ── ANIMATIONS ── */
.fade-up { opacity: 0; transform: translateY(28px); transition: opacity 0.65s ease, transform 0.65s ease; }
.fade-up.in { opacity: 1; transform: translateY(0); }
.d1 { transition-delay: 0.1s; } .d2 { transition-delay: 0.2s; } .d3 { transition-delay: 0.3s; }
.d4 { transition-delay: 0.4s; } .d5 { transition-delay: 0.5s; } .d6 { transition-delay: 0.6s; }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .partners-strip { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .stats-inner { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .partners-strip { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; gap: 1rem; text-align: center; }
  .stats-inner { grid-template-columns: 1fr 1fr; }
}

/* ── SHARED SCRIPT HELPERS ── */
.pulse-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--green); box-shadow: 0 0 0 3px rgba(16,185,129,0.2); animation: pulse 2s infinite; }
@keyframes pulse { 0%,100% { box-shadow: 0 0 0 3px rgba(16,185,129,0.2); } 50% { box-shadow: 0 0 0 6px rgba(16,185,129,0.05); } }
@keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }

/* Light enterprise refinement layer */
:root {
  --bg: #f4f8fb;
  --bg2: #eaf3f8;
  --blue: #0f67d8;
  --blue-light: #1684ee;
  --indigo: #0b5cad;
  --violet: #0ea5a8;
  --cyan: #0ea5a8;
  --green: #118a5c;
  --orange: #d97706;
  --text: #102033;
  --text2: #526173;
  --text3: #8291a5;
  --border: #dbe7ef;
  --border2: #b9d9e8;
  --shadow-sm: 0 1px 2px rgba(16, 32, 51, 0.06);
  --shadow: 0 8px 24px rgba(15, 103, 216, 0.08), 0 1px 3px rgba(16, 32, 51, 0.06);
  --shadow-lg: 0 18px 48px rgba(15, 103, 216, 0.12), 0 4px 14px rgba(16, 32, 51, 0.08);
  --shadow-xl: 0 30px 80px rgba(15, 103, 216, 0.15), 0 8px 22px rgba(16, 32, 51, 0.08);
  --grad: linear-gradient(135deg, #0f67d8, #0ea5a8);
  --grad-full: linear-gradient(135deg, #0f67d8 0%, #1684ee 50%, #0ea5a8 100%);
}

body {
  background:
    linear-gradient(180deg, rgba(244, 248, 251, 0.45), rgba(255, 255, 255, 0) 24rem),
    var(--white);
}

nav {
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid rgba(185, 217, 232, 0.8);
}

.logo-mark,
.nav-cta,
.btn-primary,
.cert-icon,
.hs-num,
.map-pin,
.av-icon,
.pi-num {
  background: var(--grad) !important;
  box-shadow: 0 8px 22px rgba(15, 103, 216, 0.18);
}

.logo-mark,
.nav-cta,
.btn-primary,
.btn-ghost,
.btn-white,
.btn-outline-white,
.card,
.partner-tile,
.dashboard-card,
.svc-card,
.t-card,
.av-card,
.mission-card,
.team-card,
.value-card,
.cert-card,
.sol-card,
.industry-card,
.fw-card,
.roi-card,
.svc-visual-card,
.metric-card,
.faq-item,
.benefit-card,
.job-card,
.cstat,
.ci-card,
.form-card,
.map-placeholder,
.wc-card,
.social-link,
.tool-badge,
.comp-badge,
.cert-badge,
.job-tag,
.ind-tag,
.float-card,
.dc-alert,
.dc-stat,
.sol-icon,
.ind-icon,
.benefit-icon,
.wc-icon,
.ci-icon,
.value-icon,
.svc-icon,
.mission-icon {
  border-radius: 8px !important;
}

.hero-badge,
.dc-badge,
.svc-tag,
.job-filter-btn,
.job-type-badge,
.cta-eyebrow {
  border-radius: 999px !important;
}

.page-hero,
#hero {
  background:
    linear-gradient(135deg, rgba(15, 103, 216, 0.08), rgba(14, 165, 168, 0.10)),
    linear-gradient(180deg, #ffffff 0%, #f4f8fb 100%) !important;
}

.page-hero::before,
#hero::before {
  content: '';
  position: absolute;
  inset: 72px 0 0 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(15, 103, 216, 0.06) 1px, transparent 1px),
    linear-gradient(0deg, rgba(15, 103, 216, 0.06) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: linear-gradient(180deg, rgba(0,0,0,0.65), transparent 75%);
}

.hero-shape-1,
.hero-shape-2 {
  display: none !important;
}

.hero-dots,
.page-hero-dots {
  opacity: 0.45;
  background-image: radial-gradient(circle, rgba(14, 165, 168, 0.18) 1px, transparent 1px) !important;
}

.svc-card,
.dashboard-card,
.form-card,
.sol-card,
.mission-card,
.team-card,
.industry-card,
.job-card,
.contact-info-block .ci-card {
  box-shadow: var(--shadow);
}

.svc-card:hover,
.dashboard-card:hover,
.sol-card:hover,
.industry-card:hover,
.job-card:hover,
.team-card:hover,
.mission-card:hover,
.benefit-card:hover,
.wc-card:hover {
  border-color: rgba(14, 165, 168, 0.35) !important;
}

.cta-section {
  color: var(--text);
  background:
    linear-gradient(135deg, rgba(15, 103, 216, 0.10), rgba(14, 165, 168, 0.16)),
    #f7fbfd !important;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.cta-section::before {
  background-image:
    linear-gradient(90deg, rgba(15, 103, 216, 0.06) 1px, transparent 1px),
    linear-gradient(0deg, rgba(15, 103, 216, 0.06) 1px, transparent 1px);
  background-size: 44px 44px;
}

.cta-eyebrow {
  color: var(--blue);
  background: rgba(255, 255, 255, 0.74);
  border-color: var(--border2);
}

.cta-section h2 {
  color: var(--text);
}

.cta-section p {
  color: var(--text2);
}

.btn-white,
.btn-outline-white {
  color: var(--blue);
  background: white;
  border: 1px solid var(--border2);
  box-shadow: var(--shadow-sm);
}

.btn-outline-white:hover,
.btn-white:hover {
  color: white;
  background: var(--grad);
  border-color: transparent;
}

footer {
  background: #f7fbfd;
  color: var(--text2);
  border-top: 1px solid var(--border);
}

.footer-grid {
  border-bottom: 1px solid var(--border);
}

.footer-brand .logo-text,
.footer-col h4 {
  color: var(--text);
}

.footer-col ul li a,
.footer-bottom {
  color: var(--text2);
}

.footer-col ul li a:hover {
  color: var(--blue);
}

.fsoc {
  border-color: var(--border2);
  color: var(--blue);
  background: white;
}

.fsoc:hover {
  color: white;
  background: var(--grad);
  border-color: transparent;
}

.team-avatar {
  background: var(--grad) !important;
}

@media (max-width: 768px) {
  section {
    padding: 4.5rem 5%;
  }

  .page-hero-inner {
    padding: 4rem 5%;
  }
}
