:root {
  --navy: #071426;
  --navy-soft: #0d213b;
  --blue: #1769ff;
  --blue-light: #65a4ff;
  --cyan: #5ce1e6;
  --white: #ffffff;
  --off-white: #f5f8fc;
  --text: #152033;
  --muted: #637087;
  --border: #dce5f0;
  --shadow: 0 20px 60px rgba(10, 31, 64, .12);
  --radius: 22px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: "DM Sans", sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.65;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; }
button, input, textarea { font: inherit; }
.container { width: min(1180px, calc(100% - 40px)); margin-inline: auto; }

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 1000;
  background: rgba(7, 20, 38, .82);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.nav-wrap { height: 82px; display: flex; align-items: center; justify-content: space-between; }
.brand { display: inline-flex; align-items: center; gap: 12px; color: var(--white); }
.brand-mark {
  width: 44px; height: 44px; border-radius: 13px; display: grid; place-items: center;
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  font-family: "Manrope", sans-serif; font-weight: 800; letter-spacing: -1px;
  box-shadow: 0 8px 24px rgba(23,105,255,.28);
}
.brand-text { display: flex; flex-direction: column; line-height: 1.1; }
.brand-text strong { font: 800 16px "Manrope", sans-serif; letter-spacing: .02em; }
.brand-text small { margin-top: 5px; font-size: 10px; color: #a9bdd5; letter-spacing: .1em; text-transform: uppercase; }

.main-nav { display: flex; align-items: center; gap: 30px; color: #d5e0ee; font-size: 14px; font-weight: 600; }
.main-nav a:hover { color: var(--white); }
.nav-cta {
  padding: 11px 18px; border: 1px solid rgba(255,255,255,.22);
  border-radius: 10px; background: rgba(255,255,255,.06);
}
.menu-toggle { display: none; background: none; border: 0; cursor: pointer; }
.menu-toggle span { display: block; width: 25px; height: 2px; background: white; margin: 5px 0; }

.hero {
  min-height: 810px; padding: 155px 0 95px; position: relative; overflow: hidden;
  color: var(--white); background:
    radial-gradient(circle at 75% 25%, rgba(23,105,255,.2), transparent 34%),
    linear-gradient(135deg, #061223 0%, #0a1c35 60%, #08172a 100%);
}
.hero-grid {
  position: absolute; inset: 0; opacity: .11;
  background-image: linear-gradient(rgba(255,255,255,.12) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(255,255,255,.12) 1px, transparent 1px);
  background-size: 58px 58px;
  mask-image: linear-gradient(to bottom, black, transparent 85%);
}
.hero-glow { position: absolute; border-radius: 50%; filter: blur(6px); }
.hero-glow-one { width: 450px; height: 450px; right: -120px; top: 60px; background: rgba(24,102,255,.12); }
.hero-glow-two { width: 300px; height: 300px; left: 30%; bottom: -180px; background: rgba(92,225,230,.08); }
.hero-layout { position: relative; display: grid; grid-template-columns: 1.05fr .95fr; gap: 70px; align-items: center; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px; margin-bottom: 22px;
  color: #a9c7f1; font-size: 12px; font-weight: 700; letter-spacing: .15em; text-transform: uppercase;
}
.eyebrow::before { content: ""; width: 30px; height: 2px; background: linear-gradient(90deg, var(--blue-light), var(--cyan)); }
.eyebrow.dark { color: var(--blue); }
.hero h1 {
  max-width: 760px; font: 800 clamp(46px, 6vw, 76px)/1.04 "Manrope", sans-serif;
  letter-spacing: -.045em;
}
.hero-copy > p { max-width: 650px; margin-top: 26px; color: #b9c7d8; font-size: 19px; }
.hero-actions { display: flex; gap: 14px; margin-top: 34px; flex-wrap: wrap; }
.btn {
  display: inline-flex; justify-content: center; align-items: center; min-height: 52px;
  padding: 0 24px; border: 0; border-radius: 12px; font-weight: 700; cursor: pointer;
  transition: .25s ease;
}
.btn-primary { color: white; background: linear-gradient(135deg, var(--blue), #3b8cff); box-shadow: 0 14px 35px rgba(23,105,255,.3); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 18px 42px rgba(23,105,255,.4); }
.btn-secondary { color: white; border: 1px solid rgba(255,255,255,.18); background: rgba(255,255,255,.06); }
.btn-secondary:hover { background: rgba(255,255,255,.11); }
.hero-trust {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; margin-top: 58px;
  padding-top: 28px; border-top: 1px solid rgba(255,255,255,.11);
}
.hero-trust strong, .hero-trust span { display: block; }
.hero-trust strong { font-size: 14px; }
.hero-trust span { margin-top: 6px; color: #8094ac; font-size: 12px; line-height: 1.45; }

.hero-visual { min-height: 500px; position: relative; display: grid; place-items: center; }
.dashboard-card {
  width: min(100%, 460px); padding: 26px; border: 1px solid rgba(255,255,255,.13); border-radius: 26px;
  background: linear-gradient(145deg, rgba(255,255,255,.11), rgba(255,255,255,.035));
  box-shadow: 0 35px 90px rgba(0,0,0,.32); backdrop-filter: blur(20px); transform: rotate(2deg);
}
.card-top { display: flex; align-items: center; gap: 10px; color: #cbd7e5; font-size: 13px; }
.status-dot { width: 9px; height: 9px; border-radius: 50%; background: #47e1a1; box-shadow: 0 0 16px #47e1a1; }
.status { margin-left: auto; color: #75e6b5; }
.chart {
  height: 210px; display: flex; align-items: flex-end; gap: 13px; padding: 30px 5px 20px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.chart span {
  flex: 1; min-height: 20px; border-radius: 8px 8px 3px 3px;
  background: linear-gradient(to top, rgba(23,105,255,.45), var(--cyan));
  box-shadow: 0 0 22px rgba(92,225,230,.12);
}
.metric-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 20px; }
.metric-grid div { padding: 15px; border-radius: 14px; background: rgba(255,255,255,.055); }
.metric-grid small, .metric-grid strong { display: block; }
.metric-grid small { color: #8498b0; }
.metric-grid strong { margin-top: 4px; font-size: 18px; }
.floating-card {
  position: absolute; display: flex; align-items: center; gap: 12px; padding: 14px 17px;
  border: 1px solid rgba(255,255,255,.12); border-radius: 15px; background: rgba(12,34,63,.88);
  box-shadow: 0 20px 40px rgba(0,0,0,.25); backdrop-filter: blur(16px);
}
.floating-card > span { width: 36px; height: 36px; display: grid; place-items: center; border-radius: 10px; background: rgba(23,105,255,.2); color: var(--cyan); }
.floating-card small, .floating-card strong { display: block; }
.floating-card small { color: #8195ae; font-size: 10px; text-transform: uppercase; letter-spacing: .08em; }
.floating-card strong { font-size: 12px; }
.cloud-card { left: -20px; top: 90px; }
.security-card { right: -10px; bottom: 70px; }

.logo-strip { padding: 28px 0; background: #fff; border-bottom: 1px solid var(--border); }
.logo-strip .container { display: flex; align-items: center; justify-content: space-between; gap: 30px; }
.logo-strip p { color: var(--muted); font-size: 13px; }
.capabilities { display: flex; flex-wrap: wrap; gap: 26px; color: #7f8b9b; font: 700 12px "Manrope", sans-serif; letter-spacing: .07em; text-transform: uppercase; }

.section { padding: 110px 0; }
.split-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 90px; align-items: start; }
.section h2 { font: 800 clamp(36px, 4.5vw, 56px)/1.1 "Manrope", sans-serif; letter-spacing: -.035em; }
.about-copy p { color: var(--muted); font-size: 18px; margin-bottom: 18px; }
.text-link { display: inline-flex; gap: 10px; align-items: center; margin-top: 10px; color: var(--blue); font-weight: 700; }
.text-link span { transition: .2s; }
.text-link:hover span { transform: translateX(5px); }

.services { background: var(--off-white); }
.section-heading { display: flex; justify-content: space-between; gap: 50px; align-items: end; margin-bottom: 50px; }
.section-heading > p { max-width: 510px; color: var(--muted); font-size: 17px; }
.service-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.service-card {
  padding: 30px; border: 1px solid var(--border); border-radius: var(--radius); background: white;
  transition: transform .25s, box-shadow .25s, border-color .25s;
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: #bad1f7; }
.service-card.featured { background: var(--navy); color: white; border-color: var(--navy); }
.service-icon {
  width: 45px; height: 45px; display: grid; place-items: center; margin-bottom: 32px;
  border-radius: 12px; color: var(--blue); background: #edf4ff; font-weight: 800;
}
.featured .service-icon { color: var(--cyan); background: rgba(255,255,255,.09); }
.service-card h3 { margin-bottom: 13px; font: 750 21px "Manrope", sans-serif; }
.service-card p { color: var(--muted); font-size: 15px; }
.featured p { color: #9eb0c5; }
.service-card ul { list-style: none; margin-top: 24px; padding-top: 20px; border-top: 1px solid var(--border); }
.featured ul { border-color: rgba(255,255,255,.1); }
.service-card li { position: relative; padding-left: 18px; margin-top: 8px; color: #536177; font-size: 14px; }
.featured li { color: #c5d1df; }
.service-card li::before { content: "•"; position: absolute; left: 0; color: var(--blue); }
.featured li::before { color: var(--cyan); }

.approach { color: white; background: var(--navy); }
.approach-layout { display: grid; grid-template-columns: .9fr 1.1fr; gap: 90px; align-items: center; }
.approach-intro p { margin-top: 24px; color: #9db0c6; font-size: 17px; }
.process-list article { display: grid; grid-template-columns: 64px 1fr; gap: 20px; padding: 24px 0; border-bottom: 1px solid rgba(255,255,255,.1); }
.process-list article > span {
  width: 45px; height: 45px; display: grid; place-items: center; border-radius: 13px;
  color: var(--cyan); background: rgba(92,225,230,.08); font-weight: 800;
}
.process-list h3 { font: 700 20px "Manrope", sans-serif; }
.process-list p { margin-top: 5px; color: #8ea2ba; }

.company { background: white; }
.company-layout { display: grid; grid-template-columns: 1.35fr .65fr; gap: 24px; }
.company-card, .sic-card { padding: 42px; border: 1px solid var(--border); border-radius: 26px; }
.company-card h2 { font-size: clamp(34px,4vw,50px); }
.company-card > p { max-width: 690px; margin-top: 18px; color: var(--muted); }
.company-details { display: grid; grid-template-columns: repeat(2,1fr); gap: 0 30px; margin-top: 34px; }
.company-details div { padding: 18px 0; border-top: 1px solid var(--border); }
.company-details .wide { grid-column: 1 / -1; }
.company-details dt { color: var(--muted); font-size: 12px; text-transform: uppercase; letter-spacing: .08em; }
.company-details dd { margin-top: 5px; font-weight: 700; }
.active-badge { display: inline-flex; padding: 4px 10px; border-radius: 99px; color: #08784b; background: #dff8ed; font-size: 12px; }
.sic-card { color: white; background: linear-gradient(145deg, var(--navy), #102d50); border: 0; }
.sic-card h3 { font: 700 23px "Manrope", sans-serif; margin-bottom: 22px; }
.sic-item { padding: 20px 0; border-top: 1px solid rgba(255,255,255,.1); }
.sic-item span { display: inline-block; margin-bottom: 5px; color: var(--cyan); font-weight: 800; }
.sic-item p { color: #b2c2d4; }
.legal-note { margin-top: 35px; padding: 20px; border-radius: 16px; background: rgba(255,255,255,.06); }
.legal-note p { margin-top: 6px; color: #91a5bb; font-size: 13px; }

.cta-section { padding: 105px 0; color: white; background: linear-gradient(135deg, #0a2141, #0a1730); }
.cta-layout { display: grid; grid-template-columns: .85fr 1.15fr; gap: 80px; align-items: start; }
.cta-layout h2 { font: 800 clamp(36px,4.5vw,56px)/1.1 "Manrope", sans-serif; letter-spacing: -.035em; }
.cta-layout > div > p { margin-top: 22px; color: #aabbd0; font-size: 17px; }
.contact-form { padding: 30px; border: 1px solid rgba(255,255,255,.12); border-radius: 22px; background: rgba(255,255,255,.055); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.contact-form label { display: block; margin-bottom: 16px; color: #dce6f2; font-size: 13px; font-weight: 600; }
.contact-form input, .contact-form textarea {
  width: 100%; margin-top: 7px; padding: 14px 15px; color: white;
  border: 1px solid rgba(255,255,255,.13); border-radius: 10px; outline: none;
  background: rgba(255,255,255,.055); resize: vertical;
}
.contact-form input:focus, .contact-form textarea:focus { border-color: var(--blue-light); box-shadow: 0 0 0 3px rgba(23,105,255,.15); }
.contact-form ::placeholder { color: #71869f; }
.form-button { width: 100%; }
.form-status { margin-top: 12px; min-height: 20px; color: #83e7ba; font-size: 13px; text-align: center; }

.site-footer { padding: 70px 0 24px; color: #a8b8ca; background: #050e1b; }
.footer-grid { display: grid; grid-template-columns: 1.5fr repeat(3,1fr); gap: 50px; }
.footer-brand { margin-bottom: 20px; }
.footer-summary { max-width: 300px; font-size: 14px; }
.footer-grid h4 { color: white; margin-bottom: 18px; font: 700 14px "Manrope", sans-serif; }
.footer-grid > div:not(:first-child) { display: flex; flex-direction: column; gap: 10px; font-size: 13px; }
.footer-grid a:hover { color: white; }
.footer-bottom {
  display: flex; justify-content: space-between; gap: 20px; margin-top: 55px; padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,.08); font-size: 12px;
}
.footer-bottom div { display: flex; gap: 20px; }

@media (max-width: 980px) {
  .main-nav {
    position: absolute; top: 82px; left: 20px; right: 20px; display: none; flex-direction: column;
    align-items: stretch; padding: 22px; border: 1px solid rgba(255,255,255,.1);
    border-radius: 16px; background: #0a1b31; box-shadow: var(--shadow);
  }
  .main-nav.open { display: flex; }
  .menu-toggle { display: block; }
  .hero-layout, .split-layout, .approach-layout, .company-layout, .cta-layout { grid-template-columns: 1fr; }
  .hero-layout { gap: 40px; }
  .hero-visual { min-height: 450px; }
  .service-grid { grid-template-columns: repeat(2,1fr); }
  .section-heading { align-items: start; flex-direction: column; }
  .logo-strip .container { flex-direction: column; align-items: flex-start; }
  .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; }
  .footer-grid > div:last-child { grid-column: 1 / -1; }
}

@media (max-width: 680px) {
  .container { width: min(100% - 28px, 1180px); }
  .brand-text small { display: none; }
  .hero { min-height: auto; padding: 125px 0 75px; }
  .hero h1 { font-size: 43px; }
  .hero-copy > p { font-size: 17px; }
  .hero-trust { grid-template-columns: 1fr; }
  .hero-visual { min-height: 400px; }
  .dashboard-card { padding: 19px; }
  .floating-card { display: none; }
  .section { padding: 78px 0; }
  .service-grid { grid-template-columns: 1fr; }
  .company-card, .sic-card { padding: 27px; }
  .company-details { grid-template-columns: 1fr; }
  .company-details .wide { grid-column: auto; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .contact-form { padding: 22px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid > div:first-child, .footer-grid > div:last-child { grid-column: 1 / -1; }
  .footer-bottom { flex-direction: column; }
}
