*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --navy: #0A0F1E;
  --navy2: #0D1529;
  --blue: #1E72D4;
  --blue-light: #3A9BFF;
  --cyan: #00C8FF;
  --white: #ffffff;
  --light-bg: #f5f7fa;
  --light-bg2: #eef1f6;
  --light-bg3: #e8ecf4;
  --text-dark: #111827;
  --text-mid: #374151;
  --text-muted: #6B7280;
  --border-light: #e2e8f0;
  --card-shadow: 0 2px 16px rgba(0,0,0,0.07);
  --font: 'Plus Jakarta Sans', sans-serif;
}
html { scroll-behavior: smooth; scroll-padding-top: 80px; }
body { background: var(--white); color: var(--text-dark); font-family: var(--font); font-size: 16px; line-height: 1.7; overflow-x: hidden; }

/* ── DEFENSIVE OVERFLOW PROTECTION ──
   Long words wrap, images stay within bounds, grid/flex items shrink properly. */
img, video, iframe, svg { max-width: 100%; height: auto; }
h1, h2, h3, h4, h5, h6, p, span, a, li, label { overflow-wrap: break-word; word-wrap: break-word; }

/* ── NAV (DARK) ── */
nav {
  position: fixed; top: 0; width: 100%; z-index: 999;
  background: rgba(10,15,30,0.96); backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(30,114,212,0.2);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 6%; height: 68px;
}
.nav-logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.nav-logo-icon {
  width: 38px; height: 38px; border-radius: 9px;
  background: linear-gradient(135deg, #1E72D4, #00C8FF);
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 14px; color: #fff; letter-spacing: -0.5px;
}
.nav-logo-text { font-weight: 700; font-size: 17px; color: #fff; }
.nav-logo-text span { color: var(--cyan); }
.nav-links { display: flex; gap: 30px; list-style: none; }
.nav-links a { color: rgba(255,255,255,0.65); text-decoration: none; font-size: 14px; font-weight: 500; transition: color .2s; }
.nav-links a:hover { color: var(--cyan); }
.nav-cta { background: var(--blue); color: #fff; border: none; padding: 9px 22px; border-radius: 6px; font-size: 14px; font-weight: 600; cursor: pointer; font-family: var(--font); transition: background .2s; }
.nav-cta:hover { background: var(--blue-light); }

/* ── HAMBURGER MENU (MOBILE) ── */
.nav-toggle {
  display: none; width: 40px; height: 40px; background: transparent;
  border: 1px solid rgba(255,255,255,0.15); border-radius: 7px;
  cursor: pointer; padding: 0; position: relative;
  align-items: center; justify-content: center;
}
.nav-toggle span {
  display: block; width: 18px; height: 2px; background: #fff;
  border-radius: 2px; position: relative;
  transition: transform .25s, opacity .25s, top .25s;
}
.nav-toggle span::before, .nav-toggle span::after {
  content: ''; position: absolute; left: 0; width: 18px; height: 2px;
  background: #fff; border-radius: 2px;
  transition: transform .25s, top .25s;
}
.nav-toggle span::before { top: -6px; }
.nav-toggle span::after  { top:  6px; }
.nav-toggle.open span { background: transparent; }
.nav-toggle.open span::before { top: 0; transform: rotate(45deg); }
.nav-toggle.open span::after  { top: 0; transform: rotate(-45deg); }

.nav-mobile-overlay {
  display: none;
  position: fixed; top: 68px; left: 0; right: 0; bottom: 0;
  background: rgba(10,15,30,0.98); backdrop-filter: blur(14px);
  z-index: 998; padding: 30px 6%;
  flex-direction: column; gap: 4px;
  overflow-y: auto;
}
.nav-mobile-overlay.open { display: flex; }
.nav-mobile-overlay a {
  color: rgba(255,255,255,0.85); text-decoration: none;
  font-size: 17px; font-weight: 500; padding: 14px 4px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.nav-mobile-overlay a:hover { color: var(--cyan); }
.nav-mobile-overlay .nav-cta {
  margin-top: 22px; padding: 14px; font-size: 15px; width: 100%;
}

/* ── HERO (DARK) ── */
.hero {
  min-height: 100vh; display: flex; align-items: center;
  padding: 68px 6% 0;
  background: var(--navy);
  position: relative; overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 70% at 20% 60%, rgba(30,114,212,0.13) 0%, transparent 65%),
              radial-gradient(ellipse 50% 50% at 90% 20%, rgba(0,200,255,0.07) 0%, transparent 60%);
  pointer-events: none;
}
.hero-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; width: 100%; position: relative; z-index: 1; padding: 60px 0; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  border: 1px solid rgba(0,200,255,0.35); border-radius: 100px;
  padding: 5px 16px; margin-bottom: 22px;
  font-size: 11px; letter-spacing: 1.5px; color: var(--cyan); text-transform: uppercase; font-weight: 600;
}
.hero-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--cyan); animation: blink 2s infinite; }
@keyframes blink { 0%,100%{opacity:1;} 50%{opacity:.3;} }
.hero h1 { font-size: clamp(36px, 4.5vw, 58px); font-weight: 800; line-height: 1.08; color: #fff; margin-bottom: 20px; letter-spacing: -1px; }
.hero h1 span { color: var(--cyan); }
.hero-desc { font-size: 17px; color: rgba(255,255,255,0.6); margin-bottom: 34px; line-height: 1.8; font-weight: 300; }
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }
.btn-primary { background: var(--blue); color: #fff; padding: 13px 28px; border-radius: 7px; font-size: 15px; font-weight: 600; text-decoration: none; display: inline-block; transition: transform .2s, box-shadow .2s; }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 10px 28px rgba(30,114,212,0.4); }
.btn-outline-dark { border: 1px solid rgba(255,255,255,0.25); color: #fff; padding: 13px 28px; border-radius: 7px; font-size: 15px; font-weight: 500; text-decoration: none; display: inline-block; transition: border-color .2s, background .2s; }
.btn-outline-dark:hover { border-color: var(--cyan); background: rgba(0,200,255,0.08); }

/* Hero Slider */
.hero-slider { position: relative; border-radius: 16px; overflow: hidden; border: 1px solid rgba(30,114,212,0.3); background: var(--navy2); aspect-ratio: 16/10; }
.slider-track { display: flex; transition: transform 0.55s cubic-bezier(.77,0,.18,1); }
.slide {
  min-width: 100%; display: flex; flex-direction: column; align-items: center; justify-content: center;
  padding: 36px; text-align: center; position: relative; overflow: hidden;
}
.slide-1 { background: linear-gradient(135deg, rgba(30,114,212,0.3) 0%, rgba(0,200,255,0.1) 100%); }
.slide-2 { background: linear-gradient(135deg, rgba(16,185,129,0.2) 0%, rgba(30,114,212,0.2) 100%); }
.slide-3 { background: linear-gradient(135deg, rgba(139,92,246,0.25) 0%, rgba(30,114,212,0.15) 100%); }
.slide-4 { background: linear-gradient(135deg, rgba(245,158,11,0.2) 0%, rgba(30,114,212,0.15) 100%); }
.slide-icon { font-size: 100px; margin-bottom: 16px; }
.slide-title { font-size: 20px; font-weight: 700; color: #fff; margin-bottom: 10px; }
.slide-text { font-size: 14px; color: rgba(255,255,255,0.6); line-height: 1.7; max-width: 300px; }
.slider-dots { position: absolute; bottom: 16px; left: 50%; transform: translateX(-50%); display: flex; gap: 8px; }
.slider-dot { width: 8px; height: 8px; border-radius: 50%; background: rgba(255,255,255,0.3); cursor: pointer; transition: background .3s, transform .3s; }
.slider-dot.active { background: var(--cyan); transform: scale(1.3); }
.slider-arrows { position: absolute; top: 50%; transform: translateY(-50%); width: 100%; display: flex; justify-content: space-between; padding: 0 12px; pointer-events: none; }
.slider-arrow { width: 34px; height: 34px; border-radius: 50%; background: rgba(0,0,0,0.4); border: 1px solid rgba(255,255,255,0.15); color: #fff; cursor: pointer; pointer-events: all; display: flex; align-items: center; justify-content: center; font-size: 14px; transition: background .2s; }
.slider-arrow:hover { background: var(--blue); }

/* Hero Stats */
.hero-stats-bar {
  background: rgba(255,255,255,0.04); border-top: 1px solid rgba(255,255,255,0.06);
  display: flex; padding: 28px 6%;
}
.hero-stat { flex: 1; text-align: center; border-right: 1px solid rgba(255,255,255,0.06); }
.hero-stat:last-child { border-right: none; }
.hero-stat-num { font-size: 30px; font-weight: 800; color: #000; }
.hero-stat-num span { color: var(--cyan); }
.hero-stat-label { font-size: 12px; color: rgba(0,0,0,0.65); margin-top: 3px; }

/* ── SECTION UTILS ── */
section { padding: 80px 6%; }
.section-label { display: inline-block; font-size: 11px; letter-spacing: 2px; text-transform: uppercase; color: var(--blue); font-weight: 700; margin-bottom: 12px; }
.section-title { font-size: clamp(24px, 3vw, 38px); font-weight: 800; color: var(--text-dark); line-height: 1.18; letter-spacing: -0.5px; margin-bottom: 12px; }
.section-sub { font-size: 16px; color: var(--text-muted); max-width: 520px; line-height: 1.75; }
.section-head { margin-bottom: 52px; }
.center { text-align: center; }
.center .section-sub { margin: 0 auto; }

/* ── LOGO STRIP ── */
.logos-bar { background: var(--light-bg); border-top: 1px solid var(--border-light); border-bottom: 1px solid var(--border-light); padding: 28px 6%; }
.logos-label { text-align: center; font-size: 11px; letter-spacing: 1.5px; color: var(--text-muted); text-transform: uppercase; margin-bottom: 22px; font-weight: 600; }
.logos-strip { display: flex; gap: 12px; align-items: center; justify-content: center; flex-wrap: wrap; }
.logo-chip { background: var(--white); border: 1px solid var(--border-light); border-radius: 7px; padding: 9px 20px; font-size: 13px; font-weight: 700; color: var(--text-muted); letter-spacing: 0.3px; box-shadow: var(--card-shadow); transition: color .2s, border-color .2s; }
.logo-chip:hover { color: var(--blue); border-color: var(--blue); }

/* ── SERVICE SECTIONS ── */
.service-section { padding: 80px 6%; }
.service-section:nth-child(odd) { background: var(--white); }
.service-section:nth-child(even) { background: var(--light-bg); }
.service-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.service-layout.reverse { direction: rtl; }
.service-layout.reverse > * { direction: ltr; }
.service-visual {
  border-radius: 16px; overflow: hidden; border: 1px solid var(--border-light);
  background: var(--navy); padding: 40px; min-height: 340px;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  position: relative; text-align: center;
}
.svc-icon-big { font-size: 64px; margin-bottom: 20px; }
.svc-visual-title { font-size: 18px; font-weight: 700; color: #fff; margin-bottom: 10px; }
.svc-visual-sub { font-size: 13px; color: rgba(255,255,255,0.5); max-width: 240px; line-height: 1.7; }
.svc-glow { position: absolute; border-radius: 50%; pointer-events: none; }
.svc-content .section-label { color: var(--blue); }
.svc-content .section-title { color: var(--text-dark); }
.svc-list { list-style: none; display: flex; flex-direction: column; gap: 12px; margin-top: 24px; }
.svc-list li { display: flex; align-items: flex-start; gap: 12px; font-size: 15px; color: var(--text-mid); }
.svc-check { width: 22px; height: 22px; min-width: 22px; border-radius: 50%; background: rgba(30,114,212,0.1); border: 1px solid rgba(30,114,212,0.3); display: flex; align-items: center; justify-content: center; font-size: 11px; color: var(--blue); margin-top: 2px; }
.svc-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 24px; }
.svc-tag { font-size: 12px; color: var(--blue); background: rgba(30,114,212,0.08); border: 1px solid rgba(30,114,212,0.2); border-radius: 100px; padding: 4px 12px; font-weight: 500; }
.svc-cta { margin-top: 28px; }
.btn-blue { background: var(--blue); color: #fff; padding: 11px 26px; border-radius: 7px; font-size: 14px; font-weight: 600; text-decoration: none; display: inline-block; transition: background .2s, transform .2s; }
.btn-blue:hover { background: var(--blue-light); transform: translateY(-1px); }

/* ── ABOUT US ── */
.about-section { background: var(--navy); padding: 90px 6%; }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.about-label { display: inline-block; font-size: 11px; letter-spacing: 2px; text-transform: uppercase; color: var(--cyan); font-weight: 700; margin-bottom: 12px; }
.about-title { font-size: clamp(28px, 3.5vw, 42px); font-weight: 800; color: #fff; line-height: 1.15; margin-bottom: 18px; }
.about-desc { font-size: 16px; color: rgba(255,255,255,0.55); line-height: 1.8; font-weight: 300; margin-bottom: 32px; }
.about-values { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.about-val { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08); border-radius: 12px; padding: 20px; }
.about-val-icon { font-size: 24px; margin-bottom: 10px; }
.about-val-title { font-weight: 700; font-size: 14px; color: #fff; margin-bottom: 5px; }
.about-val-text { font-size: 13px; color: rgba(255,255,255,0.45); line-height: 1.65; }
.about-right { display: flex; flex-direction: column; gap: 16px; }
.about-stat-card { background: rgba(255,255,255,0.04); border: 1px solid rgba(30,114,212,0.25); border-radius: 12px; padding: 22px 24px; display: flex; align-items: center; gap: 18px; }
.about-stat-num { font-size: 34px; font-weight: 800; color: var(--cyan); min-width: 80px; }
.about-stat-text { font-size: 14px; color: rgba(255,255,255,0.55); line-height: 1.6; }
.about-stat-text strong { display: block; font-size: 15px; color: #fff; font-weight: 600; margin-bottom: 3px; }
.about-bar { height: 4px; background: rgba(255,255,255,0.06); border-radius: 2px; margin-top: 24px; overflow: hidden; }
.about-bar-fill { height: 100%; background: linear-gradient(90deg, var(--blue), var(--cyan)); border-radius: 2px; }

/* ── WHY CHOOSE US ── */
.why-section { background: var(--light-bg); }
.why-grid-inner { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 20px; }
.why-card { background: var(--white); border: 1px solid var(--border-light); border-radius: 14px; padding: 28px; box-shadow: var(--card-shadow); transition: transform .25s, box-shadow .25s; position: relative; overflow: hidden; }
.why-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, var(--blue), var(--cyan)); opacity: 0; transition: opacity .3s; }
.why-card:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(0,0,0,0.1); }
.why-card:hover::before { opacity: 1; }
.why-icon { width: 50px; height: 50px; border-radius: 12px; background: rgba(30,114,212,0.09); border: 1px solid rgba(30,114,212,0.2); display: flex; align-items: center; justify-content: center; font-size: 22px; margin-bottom: 18px; }
.why-title { font-weight: 700; font-size: 16px; color: var(--text-dark); margin-bottom: 8px; }
.why-text { font-size: 14px; color: var(--text-muted); line-height: 1.7; }

/* Progress meters */
.metrics-row { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 20px; margin-top: 40px; }
.metric-card { background: var(--white); border: 1px solid var(--border-light); border-radius: 12px; padding: 22px; box-shadow: var(--card-shadow); }
.metric-val { font-size: 28px; font-weight: 800; color: var(--blue); }
.metric-label { font-size: 13px; color: var(--text-muted); margin-bottom: 12px; }
.meter-track { height: 6px; background: var(--light-bg2); border-radius: 3px; overflow: hidden; }
.meter-fill { height: 100%; border-radius: 3px; background: linear-gradient(90deg, var(--blue), var(--cyan)); }

/* ── HOW IT WORKS ── */
.how-section { background: var(--navy); padding: 90px 6%; }
.how-label { display: inline-block; font-size: 11px; letter-spacing: 2px; text-transform: uppercase; color: var(--cyan); font-weight: 700; margin-bottom: 12px; }
.how-title { font-size: clamp(28px, 3.5vw, 42px); font-weight: 800; color: #fff; margin-bottom: 12px; }
.how-sub { font-size: 16px; color: rgba(255,255,255,0.45); margin-bottom: 56px; }
.steps-wrap { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; position: relative; }
.steps-connector { position: absolute; top: 36px; left: 12%; right: 12%; height: 1px; background: rgba(30,114,212,0.3); z-index: 0; }
.step { padding: 0 20px 0 0; position: relative; z-index: 1; }
.step-circle { width: 72px; height: 72px; border-radius: 50%; background: var(--navy2); border: 2px solid rgba(30,114,212,0.5); display: flex; align-items: center; justify-content: center; font-size: 20px; font-weight: 800; color: var(--cyan); margin-bottom: 22px; }
.step-title { font-weight: 700; font-size: 16px; color: #fff; margin-bottom: 8px; }
.step-text { font-size: 14px; color: rgba(255,255,255,0.45); line-height: 1.7; }

/* ── FOCUS AREAS ── */
.focus-section { background: var(--light-bg); }
.focus-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(175px, 1fr)); gap: 12px; }
.focus-pill { background: var(--white); border: 1px solid var(--border-light); border-radius: 10px; padding: 16px; display: flex; align-items: center; gap: 10px; font-size: 14px; font-weight: 500; color: var(--text-mid); box-shadow: var(--card-shadow); transition: border-color .2s, color .2s; }
.focus-pill:hover { border-color: var(--blue); color: var(--blue); }
.focus-icon { font-size: 20px; }

/* ── PARTNERS ── */
.partners-section { background: var(--white); }
.partners-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(130px, 1fr)); gap: 12px; }
.partner-card { background: var(--light-bg); border: 1px solid var(--border-light); border-radius: 10px; padding: 18px 14px; display: flex; align-items: center; justify-content: center; font-size: 13px; font-weight: 700; color: var(--text-muted); min-height: 64px; text-align: center; transition: color .2s, border-color .2s, background .2s; }
.partner-card:hover { color: var(--blue); border-color: var(--blue); background: var(--white); }

/* ── TESTIMONIALS ── */
.testimonials-section { background: var(--light-bg); }
.testimonials-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 20px; }
.t-card { background: var(--white); border: 1px solid var(--border-light); border-radius: 14px; padding: 28px; box-shadow: var(--card-shadow); }
.stars { color: #F59E0B; font-size: 14px; margin-bottom: 14px; letter-spacing: 2px; }
.t-text { font-size: 15px; color: var(--text-mid); line-height: 1.75; margin-bottom: 22px; font-style: italic; }
.t-author { display: flex; align-items: center; gap: 12px; }
.t-avatar { width: 42px; height: 42px; border-radius: 50%; background: linear-gradient(135deg, var(--blue), var(--cyan)); display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 13px; color: #fff; }
.t-name { font-weight: 700; font-size: 14px; color: var(--text-dark); }
.t-role { font-size: 12px; color: var(--text-muted); margin-top: 1px; }

/* ── FAQ 2-COL ── */
.faq-section { background: var(--white); }
.faq-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
.faq-left-slider { position: sticky; top: 88px; }
.faq-slider-wrap { border-radius: 16px; overflow: hidden; border: 1px solid var(--border-light); box-shadow: var(--card-shadow); background: var(--navy); }
.faq-slide { padding: 44px 36px; min-height: 340px; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; }
.faq-slide-1 { background: linear-gradient(135deg, rgba(30,114,212,0.3), rgba(0,200,255,0.15)); }
.faq-slide-2 { background: linear-gradient(135deg, rgba(16,185,129,0.25), rgba(30,114,212,0.2)); }
.faq-slide-3 { background: linear-gradient(135deg, rgba(139,92,246,0.25), rgba(30,114,212,0.15)); }
.faq-slide-icon { font-size: 56px; margin-bottom: 18px; }
.faq-slide-title { font-size: 18px; font-weight: 700; color: #fff; margin-bottom: 10px; }
.faq-slide-text { font-size: 14px; color: rgba(255,255,255,0.6); line-height: 1.7; }
.faq-nav-dots { display: flex; gap: 8px; justify-content: center; padding: 16px; background: rgba(0,0,0,0.2); }
.faq-dot { width: 8px; height: 8px; border-radius: 50%; background: rgba(255,255,255,0.25); cursor: pointer; transition: background .3s; }
.faq-dot.active { background: var(--cyan); }
.faq-contact-cta { background: var(--light-bg); border: 1px solid var(--border-light); border-radius: 12px; padding: 22px; margin-top: 16px; text-align: center; }
.faq-cta-title { font-weight: 700; color: var(--text-dark); font-size: 15px; margin-bottom: 6px; }
.faq-cta-text { font-size: 13px; color: var(--text-muted); margin-bottom: 14px; }
.faq-right { display: flex; flex-direction: column; gap: 0; }
.faq-right .section-head { margin-bottom: 28px; }
.faq-item { border-bottom: 1px solid var(--border-light); }
.faq-q { padding: 18px 0; display: flex; justify-content: space-between; align-items: center; cursor: pointer; font-weight: 600; font-size: 15px; color: var(--text-dark); gap: 12px; }
.faq-q:hover { color: var(--blue); }
.faq-arr { font-size: 18px; color: var(--blue); transition: transform .3s; min-width: 18px; }
.faq-a { padding-bottom: 18px; font-size: 14px; color: var(--text-muted); line-height: 1.75; display: none; }
.faq-item.open .faq-a { display: block; }
.faq-item.open .faq-arr { transform: rotate(45deg); }
.faq-item.open .faq-q { color: var(--blue); }

/* ── BLOG ── */
.blog-section { background: var(--light-bg); }
.blog-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 22px; }
.blog-card { background: var(--white); border: 1px solid var(--border-light); border-radius: 14px; overflow: hidden; box-shadow: var(--card-shadow); transition: transform .25s, box-shadow .25s; }
.blog-card:hover { transform: translateY(-4px); box-shadow: 0 20px 40px rgba(0,0,0,0.1); }
.blog-thumb { height: 180px; display: flex; align-items: center; justify-content: center; font-size: 48px; }
.blog-thumb-1 { background: linear-gradient(135deg, #dbeafe, #bfdbfe); }
.blog-thumb-2 { background: linear-gradient(135deg, #fce7f3, #e0e7ff); }
.blog-thumb-3 { background: linear-gradient(135deg, #d1fae5, #dbeafe); }
.blog-body { padding: 22px; }
.blog-cat { font-size: 11px; color: var(--blue); letter-spacing: 1.5px; text-transform: uppercase; font-weight: 700; margin-bottom: 8px; }
.blog-title { font-weight: 700; font-size: 17px; color: var(--text-dark); margin-bottom: 10px; line-height: 1.35; }
.blog-excerpt { font-size: 13px; color: var(--text-muted); line-height: 1.7; margin-bottom: 16px; }
.blog-meta { display: flex; justify-content: space-between; font-size: 12px; color: var(--text-muted); }
.blog-read { color: var(--blue); font-weight: 600; }

/* ── CTA BANNER ── */
.cta-section {
  background: var(--navy); text-align: center; padding: 90px 6%;
  position: relative; overflow: hidden;
}
.cta-section::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 80% 80% at 50% 50%, rgba(30,114,212,0.18) 0%, transparent 70%);
  pointer-events: none;
}
.cta-section .section-label { color: var(--cyan); }
.cta-title { font-size: clamp(28px, 3.5vw, 44px); font-weight: 800; color: #fff; margin-bottom: 12px; line-height: 1.15; position: relative; }
.cta-sub { font-size: 17px; color: rgba(255,255,255,0.5); margin-bottom: 36px; position: relative; }
.cta-btns { display: flex; justify-content: center; gap: 14px; flex-wrap: wrap; position: relative; }
.btn-glow { background: linear-gradient(135deg, var(--blue), #0ea5e9); color: #fff; padding: 14px 36px; border-radius: 8px; font-size: 15px; font-weight: 700; text-decoration: none; display: inline-block; transition: transform .2s, box-shadow .2s; }
.btn-glow:hover { transform: translateY(-2px); box-shadow: 0 16px 40px rgba(30,114,212,0.45); }

/* ── CONTACT ── */
.contact-section { background: var(--light-bg); }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: start; }
.contact-info { display: flex; flex-direction: column; gap: 20px; }
.c-item { display: flex; gap: 14px; align-items: flex-start; }
.c-icon { width: 44px; height: 44px; min-width: 44px; border-radius: 10px; background: rgba(30,114,212,0.1); border: 1px solid rgba(30,114,212,0.2); display: flex; align-items: center; justify-content: center; font-size: 18px; }
.c-title { font-weight: 600; color: var(--text-dark); font-size: 14px; margin-bottom: 3px; }
.c-val { font-size: 14px; color: var(--text-muted); line-height: 1.6; }
.contact-form-wrap { background: var(--white); border: 1px solid var(--border-light); border-radius: 16px; padding: 36px; box-shadow: var(--card-shadow); }
.contact-form-title { font-weight: 700; font-size: 20px; color: var(--text-dark); margin-bottom: 24px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 14px; }
.f-field { display: flex; flex-direction: column; gap: 6px; margin-bottom: 14px; }
.f-label { font-size: 13px; font-weight: 600; color: var(--text-mid); }
.f-field input, .f-field textarea, .f-field select {
  width: 100%; background: var(--light-bg); border: 1px solid var(--border-light);
  border-radius: 8px; padding: 12px 14px; font-size: 14px; color: var(--text-dark);
  font-family: var(--font); outline: none; transition: border-color .2s, background .2s;
}
.f-field input:focus, .f-field textarea:focus, .f-field select:focus { border-color: var(--blue); background: #fff; }
.f-field textarea { height: 110px; resize: vertical; }
.form-submit { background: var(--blue); color: #fff; border: none; padding: 13px; border-radius: 8px; font-size: 15px; font-weight: 700; cursor: pointer; font-family: var(--font); transition: background .2s; width: 100%; }
.form-submit:hover { background: var(--blue-light); }
.form-submit:disabled { background: var(--text-muted); cursor: not-allowed; opacity: 0.7; }
.form-status { display: none; margin-bottom: 14px; padding: 12px 14px; border-radius: 8px; font-size: 14px; font-weight: 500; }
.form-status.show { display: block; }
.form-status.success { background: #ecfdf5; color: #065f46; border: 1px solid #a7f3d0; }
.form-status.error   { background: #fef2f2; color: #991b1b; border: 1px solid #fecaca; }
.form-status.loading { background: #eff6ff; color: #1e40af; border: 1px solid #bfdbfe; }

/* ── FOOTER (DARK) ── */
footer { background: #060A14; padding: 56px 6% 24px; border-top: 1px solid rgba(30,114,212,0.15); }
.footer-top { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 44px; }
.footer-brand-text { font-size: 14px; color: rgba(255,255,255,0.4); margin-top: 12px; max-width: 260px; line-height: 1.75; }
.footer-col-title { font-size: 12px; font-weight: 700; color: #fff; text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 18px; }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: 14px; color: rgba(255,255,255,0.4); text-decoration: none; transition: color .2s; }
.footer-links a:hover { color: var(--cyan); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.06); padding-top: 22px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 10px; }
.footer-copy { font-size: 13px; color: rgba(255,255,255,0.3); }
.footer-socials { display: flex; gap: 10px; }
.social-btn { width: 32px; height: 32px; border-radius: 7px; border: 1px solid rgba(255,255,255,0.1); background: transparent; display: flex; align-items: center; justify-content: center; font-size: 12px; color: rgba(255,255,255,0.35); cursor: pointer; transition: border-color .2s, color .2s; font-weight: 700; }
.social-btn:hover { border-color: var(--cyan); color: var(--cyan); }

/* Chat */
.chat-fab { position: fixed; bottom: 26px; right: 26px; z-index: 998; width: 52px; height: 52px; border-radius: 50%; background: linear-gradient(135deg, var(--blue), var(--cyan)); display: flex; align-items: center; justify-content: center; font-size: 22px; cursor: pointer; box-shadow: 0 8px 24px rgba(30,114,212,0.5); transition: transform .2s; }
.chat-fab:hover { transform: scale(1.1); }

/* ── REVEAL ANIM ── */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity 0.5s ease, transform 0.5s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ── RESPONSIVE ── */

/* Large desktop down to laptop (≤1200px) */
@media (max-width: 1200px) {
  nav { padding: 0 4%; }
  section, .service-section, .about-section, .how-section,
  .logos-bar, .hero-stats-bar, footer, .cta-section { padding-left: 4%; padding-right: 4%; }
  .hero { padding-left: 4%; padding-right: 4%; }
  .hero-inner { gap: 40px; }
  .footer-top { gap: 32px; }
}

/* Tablet landscape (≤992px) */
@media (max-width: 992px) {
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  .nav-cta { display: none; }   /* hidden in topbar; shown inside mobile overlay */

  .hero { min-height: auto; padding: 100px 4% 50px; }
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 30px 0;
    width: 100%;
    max-width: 100%;
  }
  /* CRITICAL FIX: grid items default to min-width:auto which prevents shrinking
     below their min-content. This causes the slider track and long words to
     force horizontal overflow. Setting min-width:0 lets them shrink properly. */
  .hero-left, .hero-right { min-width: 0; max-width: 100%; }

  .hero h1 {
    font-size: clamp(28px, 6.5vw, 44px);
    word-break: break-word;
  }
  .hero-desc { font-size: 16px; }
  .hero-slider { width: 100%; max-width: 100%; }

  .service-layout, .about-grid, .contact-grid, .faq-layout {
    grid-template-columns: 1fr; gap: 40px;
  }
  .service-layout > *, .about-grid > *, .contact-grid > *, .faq-layout > * {
    min-width: 0; max-width: 100%;
  }
  .service-layout.reverse { direction: ltr; }
  .service-visual { min-height: 280px; padding: 32px; }

  .steps-wrap { grid-template-columns: 1fr 1fr; gap: 32px 20px; }
  .steps-connector { display: none; }

  .footer-top { grid-template-columns: 1fr 1fr; gap: 36px; }

  .faq-left-slider { position: static; }
}

/* Tablet / large phone (≤768px) */
@media (max-width: 768px) {
  body { font-size: 15px; line-height: 1.65; }

  section, .service-section, .about-section, .how-section,
  .cta-section { padding-top: 60px; padding-bottom: 60px; }
  .logos-bar { padding-top: 22px; padding-bottom: 22px; }

  .section-head { margin-bottom: 36px; }
  .section-title { font-size: clamp(22px, 5.5vw, 30px); }
  .section-sub { font-size: 15px; }

  .hero h1 { font-size: clamp(28px, 7vw, 40px); line-height: 1.15; }
  .hero-desc { font-size: 15px; margin-bottom: 26px; }
  .hero-btns { gap: 10px; }
  .btn-primary, .btn-outline-dark { padding: 12px 22px; font-size: 14px; }

  .hero-slider { aspect-ratio: 4/3; }
  .slide { padding: 24px; }
  .slide-icon { font-size: 42px; }
  .slide-title { font-size: 17px; }
  .slide-text { font-size: 13px; }
  .slider-arrow { width: 30px; height: 30px; font-size: 13px; }

  .hero-stats-bar { flex-wrap: wrap; padding: 16px 4%; }
  .hero-stat { flex: 1 1 33%; padding: 14px 6px; border-right: none; }
  .hero-stat-num { font-size: 24px; }
  .hero-stat-label { font-size: 11px; }

  .about-section, .how-section { padding: 60px 4%; }
  .about-values { grid-template-columns: 1fr 1fr; gap: 12px; }
  .about-stat-card { padding: 18px; gap: 14px; }
  .about-stat-num { font-size: 28px; min-width: 64px; }

  .why-card { padding: 22px; }
  .step { padding: 0; }
  .step-circle { width: 60px; height: 60px; font-size: 18px; margin-bottom: 16px; }

  .testimonials-grid, .blog-grid { gap: 16px; }
  .t-card, .blog-body { padding: 22px; }

  .contact-form-wrap { padding: 24px; }
  .form-grid { grid-template-columns: 1fr; gap: 0; margin-bottom: 0; }

  .cta-title { font-size: clamp(24px, 5.5vw, 34px); }
  .cta-sub { font-size: 15px; }

  .footer-top { grid-template-columns: 1fr 1fr; gap: 28px; margin-bottom: 32px; }
  .footer-bottom { justify-content: center; text-align: center; }

  .chat-fab { bottom: 18px; right: 18px; width: 48px; height: 48px; font-size: 20px; }
}

/* Small phone (≤600px) */
@media (max-width: 600px) {
  nav { padding: 0 4%; height: 64px; }
  .nav-mobile-overlay { top: 64px; }
  .nav-logo-text { font-size: 16px; }
  .nav-logo-icon { width: 34px; height: 34px; font-size: 13px; }

  .hero { padding: 90px 4% 40px; }
  .hero-inner { gap: 28px; padding: 16px 0; }
  .hero-badge { font-size: 10px; padding: 4px 12px; margin-bottom: 18px; }
  .hero h1 { font-size: clamp(26px, 8vw, 36px); margin-bottom: 14px; }
  .hero-desc { font-size: 15px; margin-bottom: 22px; line-height: 1.7; }

  .hero-btns { flex-direction: column; align-items: stretch; gap: 10px; }
  .btn-primary, .btn-outline-dark { width: 100%; text-align: center; padding: 13px 18px; }

  .hero-slider { aspect-ratio: 4/3; }
  .slide { padding: 20px; }
  .slide-icon { font-size: 38px; margin-bottom: 12px; }
  .slide-title { font-size: 16px; }
  .slide-text { font-size: 13px; max-width: 100%; }

  .hero-stats-bar { padding: 8px 4%; }
  .hero-stat { flex: 1 1 50%; border-bottom: 1px solid rgba(0,0,0,0.06); }
  .hero-stat:nth-last-child(-n+2) { border-bottom: none; }

  .footer-top { grid-template-columns: 1fr; gap: 24px; }
  .steps-wrap { grid-template-columns: 1fr; gap: 24px; }
  .about-values { grid-template-columns: 1fr; }

  .logos-strip { gap: 8px; }
  .logo-chip { padding: 7px 14px; font-size: 12px; }

  .service-section { padding: 50px 4%; }
  .service-visual { min-height: 220px; padding: 26px; }
  .svc-icon-big { font-size: 50px; }

  .faq-q { font-size: 14px; padding: 16px 0; }
  .faq-a { font-size: 13px; }

  .cta-btns { flex-direction: column; align-items: stretch; }
  .btn-glow { width: 100%; text-align: center; }
}

/* Very small phone (≤380px) */
@media (max-width: 380px) {
  .hero h1 { font-size: 26px; }
  .section-title { font-size: 22px; }
  .hero-stat { flex: 1 1 100%; }
  .hero-stat:not(:last-child) { border-bottom: 1px solid rgba(255,255,255,0.06); }
  .contact-form-wrap { padding: 18px; }
}

/* Reduce motion for accessibility */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
