/* =============================================
   ZENITH IT — Global Stylesheet
   style.css
   ============================================= */

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

/* ── CSS Variables ── */
:root {
  --navy:       #0A0F1E;
  --navy2:      #0D1426;
  --steel:      #1A2240;
  --steel2:     #131C35;
  --blue:       #2D7FFF;
  --blue-light: #5BA4FF;
  --blue-glow:  rgba(45,127,255,0.18);
  --ice:        #E8F0FF;
  --muted:      #8A9BBE;
  --white:      #FFFFFF;
  --success:    #22C55E;
  --radius:     12px;
  --radius-lg:  16px;
  --transition: all 0.25s ease;
}

/* ── Reset & Base ── */
*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', sans-serif;
  background: var(--navy);
  color: var(--ice);
  overflow-x: hidden;
  line-height: 1.6;
}
img { max-width: 100%; display: block; }
a  { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ── Typography ── */
h1,h2,h3,h4 {
  font-family: 'Space Grotesk', sans-serif;
  letter-spacing: -0.5px;
  line-height: 1.15;
}
.accent {
  background: linear-gradient(135deg, #2D7FFF, #5BA4FF);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── Buttons ── */
.btn-primary {
  display: inline-flex; align-items: center; gap: .5rem;
  background: var(--blue); color: var(--white);
  border: none; padding: .85rem 2rem;
  border-radius: 8px; font-size: 1rem; font-weight: 500;
  cursor: pointer; font-family: 'Inter', sans-serif;
  transition: var(--transition);
}
.btn-primary:hover { background: var(--blue-light); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(45,127,255,0.35); }

.btn-outline {
  display: inline-flex; align-items: center; gap: .5rem;
  background: transparent; color: var(--ice);
  border: 1px solid rgba(232,240,255,0.2);
  padding: .85rem 2rem; border-radius: 8px;
  font-size: 1rem; font-weight: 500;
  cursor: pointer; font-family: 'Inter', sans-serif;
  transition: var(--transition);
}
.btn-outline:hover { border-color: var(--blue); color: var(--blue-light); transform: translateY(-2px); }

/* ── Section Helpers ── */
.section-label {
  font-size: .75rem; font-weight: 600;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--blue); margin-bottom: .6rem;
}
.section-title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700; color: var(--white); margin-bottom: 1rem;
}
.section-sub {
  color: var(--muted); max-width: 540px;
  margin: 0 auto 3rem; line-height: 1.75;
}
.text-center { text-align: center; }

/* ── Grid BG ── */
.grid-bg {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(45,127,255,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(45,127,255,0.06) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 40%, black 40%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 80% 80% at 50% 40%, black 40%, transparent 100%);
  pointer-events: none;
}

/* ── Pulse Rings ── */
.pulse-ring {
  position: absolute; border-radius: 50%;
  border: 1px solid rgba(45,127,255,0.08);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  animation: pulseRing 4s ease-in-out infinite;
  pointer-events: none;
}
@keyframes pulseRing {
  0%,100% { opacity:.4; transform: translate(-50%,-50%) scale(1); }
  50%      { opacity:.9; transform: translate(-50%,-50%) scale(1.04); }
}

/* ── Badge ── */
.badge {
  display: inline-flex; align-items: center; gap: .5rem;
  background: rgba(45,127,255,0.12);
  border: 1px solid rgba(45,127,255,0.3);
  color: var(--blue-light); font-size: .78rem; font-weight: 600;
  letter-spacing: .06em; text-transform: uppercase;
  padding: .4rem 1rem; border-radius: 100px; margin-bottom: 1.5rem;
}
.badge-dot {
  width: 6px; height: 6px;
  background: var(--blue-light); border-radius: 50%;
  animation: blink 2s ease-in-out infinite;
}
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:.2} }

/* ── Stats Bar ── */
.stats-bar {
  display: flex; justify-content: center;
  background: var(--steel2);
  border: 1px solid rgba(45,127,255,0.15);
  border-radius: var(--radius);
  overflow: hidden; max-width: 860px; margin: 0 auto;
}
.stat-item {
  flex: 1; text-align: center;
  padding: 1.4rem 1rem;
  border-right: 1px solid rgba(45,127,255,0.12);
}
.stat-item:last-child { border-right: none; }
.stat-num  { font-family:'Space Grotesk',sans-serif; font-size:1.9rem; font-weight:700; color:var(--white); }
.stat-label{ font-size:.78rem; color:var(--muted); margin-top:.2rem; }

/* ── Cards ── */
.card {
  background: var(--steel2);
  border: 1px solid rgba(45,127,255,0.12);
  border-radius: var(--radius);
  padding: 1.75rem;
  transition: var(--transition);
  position: relative; overflow: hidden;
}
.card::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle at top left, rgba(45,127,255,0.07), transparent 60%);
  opacity: 0; transition: opacity .3s;
}
.card:hover { border-color: rgba(45,127,255,0.4); transform: translateY(-4px); box-shadow: 0 12px 32px rgba(0,0,0,0.3); }
.card:hover::before { opacity: 1; }

.card-icon {
  width: 46px; height: 46px;
  background: rgba(45,127,255,0.14); border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem; margin-bottom: 1rem;
}
.card-title { font-family:'Space Grotesk',sans-serif; font-size:1.05rem; font-weight:600; color:var(--white); margin-bottom:.6rem; }
.card-bullets li {
  font-size: .875rem; color: var(--muted);
  padding: .3rem 0 .3rem 1.1rem;
  position: relative; line-height: 1.5;
}
.card-bullets li::before {
  content:''; position:absolute; left:0; top:.75rem;
  width:5px; height:5px; border-radius:50%; background:var(--blue);
}

/* ── Image with overlay ── */
.img-frame {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(45,127,255,0.15);
  position: relative;
}
.img-frame img { width:100%; height:100%; object-fit:cover; transition: transform .4s ease; }
.img-frame:hover img { transform: scale(1.04); }
.img-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(10,15,30,0.7) 0%, transparent 60%);
}

/* ── CTA Box ── */
.cta-box {
  max-width: 640px; margin: 0 auto;
  background: var(--steel);
  border: 1px solid rgba(45,127,255,0.25);
  border-radius: var(--radius-lg);
  padding: 3.5rem 2.5rem;
  text-align: center; position: relative; overflow: hidden;
}
.cta-box::after {
  content:''; position:absolute; top:-60px; right:-60px;
  width:200px; height:200px; border-radius:50%;
  background:rgba(45,127,255,0.05);
}
.cta-box h2 { font-size:2rem; font-weight:700; color:var(--white); margin-bottom:.75rem; }
.cta-box p  { color:var(--muted); margin-bottom:2rem; line-height:1.75; }
.btn-row { display:flex; gap:1rem; justify-content:center; flex-wrap:wrap; }

/* ── Scroll Reveal ── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .6s ease, transform .6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── Responsive ── */
@media(max-width:768px) {
  .stats-bar { flex-direction:column; }
  .stat-item { border-right:none; border-bottom:1px solid rgba(45,127,255,0.12); }
  .stat-item:last-child { border-bottom:none; }
  .btn-row { flex-direction:column; align-items:center; }
}

/* =============================================
   Client update — Bright Light Mode & Premium UI
   ============================================= */
:root{
  --navy:#f8fbff;
  --navy2:#ffffff;
  --steel:#ffffff;
  --steel2:#ffffff;
  --blue:#2563eb;
  --blue-light:#38bdf8;
  --blue-glow:rgba(37,99,235,.14);
  --ice:#0f172a;
  --muted:#64748b;
  --white:#0f172a;
}
body{background:linear-gradient(180deg,#f8fbff 0%,#eef6ff 45%,#ffffff 100%);color:#0f172a;}
.section-title,.card-title,.stat-num,.cta-box h2{color:#0f172a!important;}
.hero h1,.page-hero h1,.hero-brand,.form-title,.info-value{color:#0f172a!important;}
.grid-bg{background-image:linear-gradient(rgba(37,99,235,.08) 1px,transparent 1px),linear-gradient(90deg,rgba(37,99,235,.08) 1px,transparent 1px);}
.badge{background:#eff6ff;border-color:#bfdbfe;color:#2563eb;box-shadow:0 10px 24px rgba(37,99,235,.08);}
.stats-bar,.card,.cta-box,.info-card,.contact-form,.testi-card{background:rgba(255,255,255,.88)!important;border-color:rgba(37,99,235,.14)!important;box-shadow:0 18px 45px rgba(15,23,42,.08);}
.card:hover,.info-card:hover{box-shadow:0 22px 55px rgba(15,23,42,.12);border-color:rgba(37,99,235,.32)!important;}
.card-icon,.info-icon{background:linear-gradient(135deg,#eff6ff,#dbeafe)!important;color:#2563eb;}
.btn-outline{color:#2563eb;border-color:#bfdbfe;background:#ffffff;}
.btn-outline:hover{background:#eff6ff;border-color:#2563eb;color:#1d4ed8;}
.btn-primary,.submit-btn{background:linear-gradient(135deg,#2563eb,#38bdf8)!important;color:#fff!important;box-shadow:0 14px 30px rgba(37,99,235,.22);}
.form-group input,.form-group select,.form-group textarea{background:#ffffff!important;color:#0f172a!important;border-color:#cbd5e1!important;}
.form-group select option{background:#ffffff;color:#0f172a;}
footer{background:#ffffff;color:#0f172a;box-shadow:0 -10px 30px rgba(15,23,42,.04);}
footer div:first-child{color:#0f172a!important;}
.img-overlay{background:linear-gradient(to top,rgba(15,23,42,.18),transparent 60%);}
.pulse-ring{border-color:rgba(37,99,235,.10)!important;}
.hero-logo{filter:drop-shadow(0 18px 32px rgba(37,99,235,.16));}
/* FIX quote page white text */
.quote-page *,
.quote-section *,
.quote-content *,
.quote-benefits *,
.expect-list *,
.expect-item *,
.quote-info *,
.quote-left * {
  color: #0f172a !important;
}

.quote-page p,
.quote-section p,
.quote-content p,
.expect-list p,
.expect-item p,
.quote-info p,
.quote-left p {
  color: #475569 !important;
}

.quote-page h1,
.quote-page h2,
.quote-page h3,
.quote-section h1,
.quote-section h2,
.quote-section h3,
.expect-item h3,
.quote-left h2,
.quote-left h3 {
  color: #0f172a !important;
}