/* ── HSB — Hyper Secure Backbone — Global Styles ── */
@import url('https://fonts.googleapis.com/css2?family=Rajdhani:wght@400;500;600;700&family=Inter:wght@300;400;500;600&display=swap');

:root {
  --navy: #0d2b45;
  --navy-mid: #12375a;
  --blue-dark: #1a4f7a;
  --blue-mid: #1e6fa0;
  --blue-light: #3b9fd4;
  --blue-bright: #5bbde8;
  --white: #ffffff;
  --gray-light: #f4f7fb;
  --gray-mid: #e2eaf3;
  --gray-text: #6b82a0;
  --text-dark: #0d2033;
}

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

body {
  font-family: 'Inter', sans-serif;
  color: var(--text-dark);
  background: var(--white);
  overflow-x: hidden;
}

/* ── LOGO SVG ── */
.logo-svg { width: 44px; height: 44px; flex-shrink: 0; }

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0;
  background: rgba(13,43,69,0.97);
  backdrop-filter: blur(12px);
  z-index: 1000;
  padding: 0 5%;
  display: flex; align-items: center; justify-content: space-between;
  height: 70px;
  border-bottom: 1px solid rgba(91,189,232,0.18);
}

.nav-brand { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.nav-brand-text { display: flex; flex-direction: column; line-height: 1; }
.nav-brand-text .abbr {
  font-family: 'Rajdhani', sans-serif;
  font-size: 26px; font-weight: 700;
  color: var(--white); letter-spacing: 2px;
}
.nav-brand-text .tagline {
  font-size: 9.5px; font-weight: 400;
  color: var(--blue-bright);
  letter-spacing: 1.5px; text-transform: uppercase;
}

.nav-links { display: flex; gap: 32px; list-style: none; }
.nav-links a {
  color: rgba(255,255,255,0.72);
  text-decoration: none; font-size: 13px; font-weight: 500;
  letter-spacing: 0.4px; text-transform: uppercase;
  transition: color .2s;
}
.nav-links a:hover, .nav-links a.active { color: var(--blue-bright); }

.nav-cta {
  background: linear-gradient(135deg, var(--blue-mid), var(--blue-bright));
  color: var(--white); border: none; cursor: pointer;
  padding: 9px 22px; border-radius: 6px;
  font-size: 13px; font-weight: 600; font-family: 'Inter', sans-serif;
  text-decoration: none; transition: opacity .2s;
}
.nav-cta:hover { opacity: .85; }

/* ── HERO ── */
.hero {
  min-height: 100vh;
  background: linear-gradient(160deg, var(--navy) 0%, var(--navy-mid) 55%, #0f3352 100%);
  display: flex; align-items: center;
  padding: 100px 5% 60px;
  position: relative; overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background-image:
    radial-gradient(circle at 68% 35%, rgba(91,189,232,0.1) 0%, transparent 48%),
    radial-gradient(circle at 18% 78%, rgba(30,111,160,0.13) 0%, transparent 38%),
    linear-gradient(rgba(91,189,232,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(91,189,232,0.04) 1px, transparent 1px);
  background-size: auto, auto, 60px 60px, 60px 60px;
}
.hero-content { position: relative; z-index: 2; max-width: 600px; }

.badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(91,189,232,0.13);
  border: 1px solid rgba(91,189,232,0.32);
  color: var(--blue-bright);
  padding: 6px 16px; border-radius: 50px;
  font-size: 11.5px; font-weight: 600; letter-spacing: 1px; text-transform: uppercase;
  margin-bottom: 26px;
}
.badge-dot { width: 6px; height: 6px; background: var(--blue-bright); border-radius: 50%; animation: pulse 2s infinite; }
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:.4;transform:scale(1.4)} }

.hero h1 {
  font-family: 'Rajdhani', sans-serif;
  font-size: clamp(40px, 5.5vw, 68px); font-weight: 700;
  color: var(--white); line-height: 1.05; margin-bottom: 22px;
}
.hero h1 em { color: var(--blue-bright); font-style: normal; }

.hero p {
  font-size: 16.5px; color: rgba(255,255,255,0.62);
  line-height: 1.72; margin-bottom: 38px; max-width: 490px;
}

.hero-certs {
  margin-top: 52px; display: flex; align-items: center; gap: 12px; flex-wrap: wrap;
}
.hero-certs span { font-size: 11px; color: rgba(255,255,255,0.4); text-transform: uppercase; letter-spacing: 1px; }
.cert-badge {
  background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.7); font-size: 11px; font-weight: 600;
  padding: 4px 12px; border-radius: 4px; letter-spacing: 0.5px;
}

.hero-visual {
  position: absolute; right: 5%; top: 50%;
  transform: translateY(-50%); width: 40%;
  display: flex; justify-content: center; align-items: center;
  opacity: 0.9; filter: drop-shadow(0 0 60px rgba(91,189,232,0.2));
}

/* ── SCROLL TICKER ── */
.ticker {
  background: var(--navy);
  border-top: 1px solid rgba(91,189,232,0.15);
  border-bottom: 1px solid rgba(91,189,232,0.15);
  padding: 0; overflow: hidden; height: 44px; display: flex; align-items: center;
}
.ticker-inner {
  display: flex; gap: 60px; white-space: nowrap;
  animation: ticker 28s linear infinite;
}
@keyframes ticker { from{transform:translateX(0)} to{transform:translateX(-50%)} }
.ticker-item { font-size: 12px; font-weight: 600; color: rgba(255,255,255,0.45); letter-spacing: 1px; text-transform: uppercase; }
.ticker-sep { color: var(--blue-bright); opacity: .6; }

/* ── STATS ── */
.stats {
  background: var(--navy);
  padding: 36px 5%;
  display: flex; justify-content: space-around; flex-wrap: wrap; gap: 24px;
  border-bottom: 1px solid rgba(91,189,232,0.12);
}
.stat-item { text-align: center; }
.stat-num {
  font-family: 'Rajdhani', sans-serif;
  font-size: 34px; font-weight: 700; color: var(--blue-bright); line-height: 1;
}
.stat-label { font-size: 11px; color: rgba(255,255,255,0.45); text-transform: uppercase; letter-spacing: 1px; margin-top: 4px; }

/* ── SECTIONS ── */
.section { padding: 88px 5%; }
.section--alt { background: var(--gray-light); }
.section--dark {
  background: linear-gradient(160deg, var(--navy) 0%, var(--navy-mid) 100%);
}

.section-tag {
  display: inline-block; color: var(--blue-mid);
  font-size: 11.5px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase;
  margin-bottom: 12px;
}
.section-tag--light { color: var(--blue-bright); }

.section-title {
  font-family: 'Rajdhani', sans-serif;
  font-size: clamp(26px, 3.8vw, 44px); font-weight: 700;
  color: var(--navy); line-height: 1.12; margin-bottom: 16px;
}
.section-title--light { color: var(--white); }

.section-sub {
  font-size: 15.5px; color: var(--gray-text); line-height: 1.72;
  max-width: 540px; margin-bottom: 52px;
}
.section-sub--light { color: rgba(255,255,255,0.58); }

/* ── BUTTONS ── */
.btn { display: inline-flex; align-items: center; gap: 8px; font-family: 'Inter', sans-serif; font-weight: 600; font-size: 14px; border-radius: 8px; padding: 13px 28px; text-decoration: none; border: none; cursor: pointer; transition: all .22s; }
.btn-primary { background: linear-gradient(135deg, var(--blue-mid), var(--blue-bright)); color: var(--white); box-shadow: 0 4px 20px rgba(91,189,232,0.3); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(91,189,232,0.42); }
.btn-outline { background: transparent; color: var(--white); border: 1px solid rgba(255,255,255,0.28); }
.btn-outline:hover { background: rgba(255,255,255,0.07); border-color: rgba(255,255,255,0.55); }
.btn-outline-navy { background: transparent; color: var(--navy); border: 1px solid var(--gray-mid); }
.btn-outline-navy:hover { border-color: var(--blue-mid); color: var(--blue-mid); }

.btn-row { display: flex; gap: 14px; flex-wrap: wrap; }

/* ── CARDS ── */
.grid-3 { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 22px; }
.grid-2 { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 22px; }

.card {
  background: var(--white); border: 1px solid var(--gray-mid);
  border-radius: 14px; padding: 30px;
  transition: transform .24s, box-shadow .24s, border-color .24s;
  position: relative; overflow: hidden;
}
.card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--blue-mid), var(--blue-bright));
  transform: scaleX(0); transform-origin: left; transition: transform .3s;
}
.card:hover { transform: translateY(-5px); box-shadow: 0 18px 50px rgba(13,43,69,0.1); border-color: rgba(91,189,232,0.38); }
.card:hover::before { transform: scaleX(1); }

.card-icon {
  width: 50px; height: 50px;
  background: linear-gradient(135deg, #e5f3fb, #c4e5f7);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
}
.card-icon svg { width: 24px; height: 24px; stroke: var(--blue-mid); stroke-width: 2; fill: none; }

.card h3 {
  font-family: 'Rajdhani', sans-serif; font-size: 19px; font-weight: 700;
  color: var(--navy); margin-bottom: 10px;
}
.card p { font-size: 13.5px; color: var(--gray-text); line-height: 1.68; }

.card-tags { display: flex; gap: 6px; flex-wrap: wrap; margin-top: 16px; }
.tag {
  background: var(--gray-light); color: var(--blue-dark);
  font-size: 11px; font-weight: 600; padding: 3px 10px; border-radius: 4px;
  letter-spacing: 0.3px;
}

/* ── PARTNERS ── */
.partners-grid {
  display: flex; flex-wrap: wrap; gap: 10px;
}
.partner-chip {
  background: var(--white); border: 1px solid var(--gray-mid);
  border-radius: 8px; padding: 10px 18px;
  font-size: 13px; font-weight: 600; color: var(--navy);
  text-decoration: none; transition: all .2s;
  display: flex; flex-direction: column; align-items: center; gap: 2px;
}
.partner-chip:hover { border-color: var(--blue-light); color: var(--blue-mid); transform: translateY(-2px); }
.partner-chip small { font-size: 10px; font-weight: 400; color: var(--gray-text); }

/* ── TICKER CLIENTS ── */
.clients-ticker {
  overflow: hidden; padding: 24px 0; border-top: 1px solid var(--gray-mid); border-bottom: 1px solid var(--gray-mid);
  margin: 40px 0;
}
.clients-inner {
  display: flex; gap: 50px; animation: ticker 30s linear infinite;
}
.client-item { font-size: 14px; font-weight: 600; color: var(--gray-text); white-space: nowrap; display: flex; align-items: center; gap: 8px; }

/* ── COMPETENCES ── */
.comp-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 20px; }
.comp-card {
  background: rgba(255,255,255,0.06); border: 1px solid rgba(91,189,232,0.18);
  border-radius: 12px; padding: 26px;
  transition: background .2s;
}
.comp-card:hover { background: rgba(255,255,255,0.1); }
.comp-num { font-family: 'Rajdhani', sans-serif; font-size: 36px; font-weight: 700; color: var(--blue-bright); margin-bottom: 10px; }
.comp-card h4 { font-family: 'Rajdhani', sans-serif; font-size: 18px; font-weight: 700; color: var(--white); margin-bottom: 8px; }
.comp-card p { font-size: 13px; color: rgba(255,255,255,0.52); line-height: 1.65; }

/* ── CTA BAND ── */
.cta-band {
  background: linear-gradient(135deg, var(--navy), var(--navy-mid));
  padding: 70px 5%; text-align: center; position: relative; overflow: hidden;
}
.cta-band::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle at 50% 50%, rgba(91,189,232,0.12) 0%, transparent 60%);
}
.cta-band .section-title, .cta-band p, .cta-band .btn-row { position: relative; }
.cta-band p { color: rgba(255,255,255,0.58); font-size: 16px; margin-bottom: 36px; }
.cta-band .btn-row { justify-content: center; }

/* ── FOOTER ── */
footer {
  background: #06192b; color: rgba(255,255,255,0.45);
  padding: 58px 5% 28px;
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px;
  margin-bottom: 46px;
}
.footer-brand-desc { font-size: 13px; line-height: 1.7; max-width: 250px; margin-top: 14px; }
.footer-socials { display: flex; gap: 10px; margin-top: 18px; }
.footer-socials a {
  width: 32px; height: 32px; border-radius: 6px;
  background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.12);
  display: flex; align-items: center; justify-content: center;
  font-size: 12px; font-weight: 700; color: rgba(255,255,255,0.5); text-decoration: none;
  transition: all .2s;
}
.footer-socials a:hover { background: rgba(91,189,232,0.2); color: var(--blue-bright); }

.footer-col h5 {
  font-size: 11.5px; font-weight: 600; color: var(--white);
  text-transform: uppercase; letter-spacing: 1.2px; margin-bottom: 16px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 9px; }
.footer-col ul li a {
  color: rgba(255,255,255,0.42); text-decoration: none; font-size: 13px; transition: color .2s;
}
.footer-col ul li a:hover { color: var(--blue-bright); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 22px;
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 10px;
}
.footer-bottom p { font-size: 12px; }

/* ── PAGE HEADER (inner pages) ── */
.page-header {
  background: linear-gradient(160deg, var(--navy) 0%, var(--navy-mid) 100%);
  padding: 130px 5% 70px;
  position: relative; overflow: hidden;
}
.page-header::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle at 70% 50%, rgba(91,189,232,0.1) 0%, transparent 50%),
    linear-gradient(rgba(91,189,232,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(91,189,232,0.04) 1px, transparent 1px);
  background-size: auto, 60px 60px, 60px 60px;
}
.page-header-content { position: relative; z-index: 2; }
.breadcrumb { font-size: 12px; color: rgba(255,255,255,0.4); margin-bottom: 16px; }
.breadcrumb a { color: rgba(255,255,255,0.4); text-decoration: none; }
.breadcrumb a:hover { color: var(--blue-bright); }
.breadcrumb span { margin: 0 8px; }
.page-header h1 {
  font-family: 'Rajdhani', sans-serif; font-size: clamp(34px, 5vw, 58px); font-weight: 700;
  color: var(--white); line-height: 1.08; margin-bottom: 18px;
}
.page-header p { font-size: 16px; color: rgba(255,255,255,0.6); line-height: 1.7; max-width: 540px; }

/* ── RESPONSIVE ── */
@media (max-width: 960px) {
  .hero-visual { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .nav-links { display: none; }
}
@media (max-width: 600px) {
  .footer-grid { grid-template-columns: 1fr; }
  .section { padding: 60px 5%; }
}
