:root {
  --ink: #07111f;
  --ink-2: #0c1b2d;
  --text: #142033;
  --muted: #657183;
  --line: #dfe6ee;
  --surface: #ffffff;
  --surface-soft: #f5f8fb;
  --blue: #38b4f3;
  --blue-deep: #149bdc;
  --blue-pale: #e8f7ff;
  --white: #ffffff;
  --shadow: 0 20px 60px rgba(5, 23, 45, .11);
  --radius: 24px;
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 92px; }
body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background: var(--surface);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button, input, textarea, select { font: inherit; }
.container { width: min(calc(100% - 40px), var(--max)); margin-inline: auto; }

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  border-bottom: 1px solid rgba(255,255,255,.08);
  background: rgba(7,17,31,.78);
  backdrop-filter: blur(16px);
  transition: background .25s ease, box-shadow .25s ease;
}
.site-header.scrolled { background: rgba(7,17,31,.94); box-shadow: 0 12px 35px rgba(0,0,0,.12); }
.nav-wrap { min-height: 78px; display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.brand { display: inline-flex; align-items: center; }
.brand-surface { display: inline-flex; align-items: center; background: #fff; border-radius: 12px; padding: 7px 12px; box-shadow: 0 6px 18px rgba(0,0,0,.10); }
.brand-surface img { width: 132px; height: 50px; object-fit: contain; }
.main-nav { display: flex; align-items: center; gap: 27px; color: rgba(255,255,255,.78); font-size: .88rem; font-weight: 600; }
.main-nav a { transition: color .2s ease; }
.main-nav a:hover { color: #fff; }
.nav-cta { color: var(--ink) !important; background: var(--blue); padding: 11px 17px; border-radius: 999px; }
.menu-toggle { display: none; border: 0; padding: 8px; background: transparent; cursor: pointer; }
.menu-toggle span { display: block; width: 24px; height: 2px; background: #fff; margin: 5px 0; }

.hero {
  position: relative;
  overflow: hidden;
  min-height: 900px;
  padding: 160px 0 70px;
  background:
    radial-gradient(circle at 75% 18%, rgba(56,180,243,.14), transparent 24%),
    linear-gradient(135deg, #07111f 0%, #0a1728 55%, #07111f 100%);
  color: #fff;
}
.hero-grid { position: absolute; inset: 0; opacity: .12; background-image: linear-gradient(rgba(255,255,255,.08) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.08) 1px, transparent 1px); background-size: 64px 64px; mask-image: linear-gradient(to bottom, #000, transparent 85%); }
.hero-glow { position: absolute; width: 460px; height: 460px; border-radius: 50%; filter: blur(90px); opacity: .18; pointer-events: none; }
.hero-glow-a { background: var(--blue); right: -180px; top: 130px; }
.hero-glow-b { background: #1b6fa0; left: -260px; bottom: 0; }
.hero-layout { position: relative; z-index: 2; display: grid; grid-template-columns: 1.1fr .9fr; align-items: center; gap: 80px; }
.eyebrow { display: inline-flex; align-items: center; gap: 8px; text-transform: uppercase; letter-spacing: .16em; color: var(--blue); font-size: .76rem; font-weight: 800; }
.eyebrow.dark { color: var(--blue-deep); }
.hero h1 { margin: 20px 0 24px; max-width: 760px; font-size: clamp(3.1rem, 6vw, 5.65rem); line-height: .98; letter-spacing: -.055em; }
.hero h1 span { color: var(--blue); }
.hero-lead { max-width: 690px; margin: 0; color: rgba(255,255,255,.72); font-size: 1.08rem; line-height: 1.85; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 34px; }
.button { display: inline-flex; justify-content: center; align-items: center; min-height: 50px; padding: 0 22px; border-radius: 999px; font-size: .92rem; font-weight: 800; transition: transform .2s ease, box-shadow .2s ease, background .2s ease; }
.button:hover { transform: translateY(-2px); }
.button-primary { color: var(--ink); background: var(--blue); box-shadow: 0 10px 30px rgba(56,180,243,.22); }
.button-primary:hover { background: #67c8f8; }
.button-ghost { color: #fff; border: 1px solid rgba(255,255,255,.24); background: rgba(255,255,255,.04); }
.button-ghost:hover { background: rgba(255,255,255,.09); }
.full { width: 100%; }
.hero-tags { display: flex; flex-wrap: wrap; gap: 9px; margin-top: 35px; }
.hero-tags span { border: 1px solid rgba(255,255,255,.13); border-radius: 999px; padding: 7px 12px; color: rgba(255,255,255,.65); font-size: .78rem; }
.hero-panel { position: relative; border: 1px solid rgba(255,255,255,.12); border-radius: 30px; padding: 24px; background: linear-gradient(180deg, rgba(255,255,255,.09), rgba(255,255,255,.035)); box-shadow: 0 40px 100px rgba(0,0,0,.26); backdrop-filter: blur(20px); }
.hero-panel::before { content: ""; position: absolute; inset: -1px; border-radius: inherit; padding: 1px; background: linear-gradient(135deg, rgba(56,180,243,.55), transparent 35%, rgba(255,255,255,.10)); -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0); -webkit-mask-composite: xor; mask-composite: exclude; pointer-events: none; }
.hero-logo-card { background: #fff; border-radius: 21px; min-height: 185px; display: grid; place-items: center; padding: 28px; }
.hero-logo-card img { width: min(100%, 340px); }
.panel-label { margin: 25px 0 12px; color: rgba(255,255,255,.46); font-size: .72rem; letter-spacing: .12em; text-transform: uppercase; font-weight: 800; }
.capability-list { display: grid; }
.capability-item { display: grid; grid-template-columns: 44px 1fr; gap: 13px; align-items: center; padding: 15px 0; border-top: 1px solid rgba(255,255,255,.1); }
.cap-num { color: var(--blue); font-weight: 800; font-size: .76rem; }
.capability-item strong { display: block; font-size: .95rem; }
.capability-item small { display: block; color: rgba(255,255,255,.54); margin-top: 3px; }
.trust-strip { position: relative; z-index: 2; display: grid; grid-template-columns: repeat(3,1fr); margin-top: 80px; border-top: 1px solid rgba(255,255,255,.12); border-bottom: 1px solid rgba(255,255,255,.12); }
.trust-strip > div { padding: 22px 26px; border-right: 1px solid rgba(255,255,255,.12); }
.trust-strip > div:last-child { border-right: 0; }
.trust-strip strong, .trust-strip span { display: block; }
.trust-strip strong { font-size: .92rem; }
.trust-strip span { margin-top: 2px; color: rgba(255,255,255,.47); font-size: .78rem; }

.section { padding: 110px 0; }
.section-light { background: var(--surface-soft); }
.section-heading { max-width: 760px; }
.section-heading.center { margin-inline: auto; text-align: center; }
.section-heading h2 { margin: 13px 0 18px; color: var(--ink); font-size: clamp(2.3rem, 4vw, 4rem); line-height: 1.06; letter-spacing: -.045em; }
.section-heading p { margin: 0; color: var(--muted); font-size: 1rem; line-height: 1.8; }
.services-section .section-heading h2, .commitment-section .section-heading h2, .boxcare-section h2 { color: #fff; }
.services-section .section-heading p, .commitment-section .section-heading p, .boxcare-section p { color: rgba(255,255,255,.62); }
.about-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; margin-top: 52px; }
.about-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 32px; box-shadow: 0 12px 35px rgba(6,31,60,.05); }
.icon-mark { width: 42px; height: 42px; display: grid; place-items: center; border-radius: 12px; color: var(--ink); background: var(--blue-pale); border: 1px solid #c6eefe; font-weight: 800; }
.about-card h3 { margin: 23px 0 10px; color: var(--ink); font-size: 1.25rem; }
.about-card p { margin: 0; color: var(--muted); font-size: .94rem; }

.services-section { background: var(--ink); color: #fff; }
.featured-services { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; margin-top: 50px; }
.service-card { min-height: 100%; padding: 30px; border-radius: 26px; border: 1px solid rgba(255,255,255,.11); background: rgba(255,255,255,.045); }
.service-card-featured { display: flex; flex-direction: column; }
.service-top { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.service-number { color: var(--blue); font-size: .82rem; font-weight: 800; }
.service-kicker { color: rgba(255,255,255,.37); font-size: .69rem; text-transform: uppercase; letter-spacing: .11em; font-weight: 700; }
.service-card h3 { margin: 30px 0 13px; font-size: 1.65rem; line-height: 1.15; letter-spacing: -.03em; }
.service-card p { margin: 0 0 19px; color: rgba(255,255,255,.61); font-size: .91rem; }
.service-card ul { margin: 0; padding: 0; list-style: none; display: grid; gap: 10px; }
.service-card li { position: relative; padding-left: 18px; color: rgba(255,255,255,.73); font-size: .86rem; }
.service-card li::before { content: ""; position: absolute; left: 0; top: .67em; width: 6px; height: 6px; border-radius: 50%; background: var(--blue); }
.accent-card { background: linear-gradient(160deg, rgba(56,180,243,.18), rgba(56,180,243,.035)); border-color: rgba(56,180,243,.38); }
.text-link { display: inline-flex; align-items: center; gap: 8px; margin-top: auto; padding-top: 25px; color: var(--blue); font-size: .9rem; font-weight: 800; }
.secondary-services { margin-top: 22px; padding: 34px; border-radius: 26px; background: #fff; color: var(--text); display: grid; grid-template-columns: .7fr 1.3fr; gap: 40px; }
.mini-label { color: var(--blue-deep); font-size: .72rem; text-transform: uppercase; letter-spacing: .12em; font-weight: 800; }
.secondary-copy h3 { margin: 12px 0 0; color: var(--ink); font-size: 1.55rem; line-height: 1.25; }
.mini-service-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 22px 26px; }
.mini-service-grid div:last-child { grid-column: 1 / -1; }
.mini-service-grid strong, .mini-service-grid span { display: block; }
.mini-service-grid strong { color: var(--ink); font-size: .9rem; }
.mini-service-grid span { color: var(--muted); margin-top: 4px; font-size: .82rem; }

.boxcare-section { background: linear-gradient(145deg, #0b1b2e, #07111f); color: #fff; border-top: 1px solid rgba(255,255,255,.06); }
.boxcare-layout { display: grid; grid-template-columns: .9fr 1.1fr; gap: 70px; align-items: center; }
.boxcare-copy h2 { margin: 13px 0 18px; font-size: clamp(2.5rem,4.4vw,4.2rem); line-height: 1.02; letter-spacing: -.05em; }
.boxcare-copy > p { line-height: 1.8; }
.boxcare-flow { margin-top: 35px; display: grid; gap: 0; }
.boxcare-flow > div { display: grid; grid-template-columns: 34px 130px 1fr; gap: 12px; align-items: center; padding: 14px 0; border-top: 1px solid rgba(255,255,255,.1); }
.boxcare-flow span { color: var(--blue); font-size: .75rem; font-weight: 800; }
.boxcare-flow strong { font-size: .88rem; }
.boxcare-flow small { color: rgba(255,255,255,.47); }
.dashboard-mock { padding: 18px; border: 1px solid rgba(255,255,255,.12); border-radius: 30px; background: rgba(255,255,255,.055); box-shadow: 0 40px 80px rgba(0,0,0,.22); }
.dash-top { display: flex; justify-content: space-between; align-items: center; padding: 8px 8px 20px; color: rgba(255,255,255,.72); font-size: .79rem; }
.dash-top > div { display: flex; gap: 8px; align-items: center; }
.dash-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--blue); box-shadow: 0 0 0 6px rgba(56,180,243,.1); }
.dash-status { color: var(--blue); font-size: .68rem; text-transform: uppercase; letter-spacing: .08em; font-weight: 800; }
.dash-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 12px; }
.dash-card { border-radius: 18px; background: rgba(3,10,20,.58); border: 1px solid rgba(255,255,255,.08); padding: 20px; }
.dash-card.metric small, .dash-card.metric strong, .dash-card.metric span { display: block; }
.dash-card.metric small { color: rgba(255,255,255,.38); }
.dash-card.metric strong { margin-top: 6px; font-size: 1.12rem; }
.dash-card.metric span { margin-top: 13px; color: var(--blue); font-size: .72rem; }
.dash-card.wide { grid-column: 1 / -1; }
.card-heading { display: flex; justify-content: space-between; color: rgba(255,255,255,.5); font-size: .7rem; text-transform: uppercase; letter-spacing: .08em; }
.progress-row { position: relative; margin-top: 18px; height: 30px; background: rgba(255,255,255,.05); border-radius: 8px; overflow: hidden; }
.progress-row i { position: absolute; inset: 0 auto 0 0; width: var(--p); background: linear-gradient(90deg, rgba(56,180,243,.32), rgba(56,180,243,.10)); border-right: 1px solid rgba(56,180,243,.58); }
.progress-row b { position: relative; z-index: 1; display: flex; align-items: center; height: 100%; padding-left: 10px; font-size: .7rem; color: rgba(255,255,255,.68); font-weight: 600; }
.repair-list { display: flex; flex-wrap: wrap; gap: 8px; }
.repair-tag { padding: 7px 10px; border-radius: 999px; background: rgba(56,180,243,.09); color: #9edfff; border: 1px solid rgba(56,180,243,.16); font-size: .68rem; }

.transport-section { background: #fff; }
.split-layout { display: grid; grid-template-columns: .85fr 1.15fr; gap: 70px; align-items: start; }
.repair-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 12px; }
.repair-grid div { min-height: 118px; padding: 20px; border: 1px solid var(--line); border-radius: 18px; background: var(--surface-soft); }
.repair-grid span { color: var(--blue-deep); font-size: .72rem; font-weight: 800; }
.repair-grid p { margin: 14px 0 0; color: var(--ink); font-size: .89rem; font-weight: 700; line-height: 1.45; }

.commitment-section { background: #07111f; color: #fff; }
.commitment-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 14px; margin-top: 48px; }
.commitment-card { min-height: 230px; padding: 28px; border: 1px solid rgba(255,255,255,.1); border-radius: 22px; background: rgba(255,255,255,.035); }
.commitment-card > span { color: var(--blue); font-size: .72rem; font-weight: 800; }
.commitment-card h3 { margin: 35px 0 10px; font-size: 1.2rem; }
.commitment-card p { margin: 0; color: rgba(255,255,255,.52); font-size: .86rem; }

.sectors-section { background: var(--surface-soft); }
.sectors-layout { display: grid; grid-template-columns: .9fr 1.1fr; gap: 65px; align-items: center; }
.sector-cloud { display: flex; flex-wrap: wrap; gap: 11px; align-content: center; }
.sector-cloud span { padding: 14px 17px; border-radius: 999px; background: #fff; border: 1px solid var(--line); color: var(--ink); box-shadow: 0 8px 20px rgba(6,31,60,.04); font-size: .85rem; font-weight: 700; }

.contact-section { padding: 90px 0; background: #fff; }
.contact-card { position: relative; overflow: hidden; display: grid; grid-template-columns: 1.2fr .8fr; gap: 70px; align-items: center; padding: 58px; color: #fff; border-radius: 30px; background: linear-gradient(135deg, #0b1d31, #07111f); box-shadow: var(--shadow); }
.contact-card::after { content:""; position:absolute; width:300px; height:300px; border-radius:50%; background:var(--blue); filter:blur(100px); opacity:.16; right:-100px; top:-100px; }
.contact-card > * { position: relative; z-index: 2; }
.contact-card h2 { margin: 12px 0 14px; font-size: clamp(2rem,3.5vw,3.4rem); line-height:1.05; letter-spacing:-.045em; }
.contact-card p { margin: 0; max-width: 620px; color: rgba(255,255,255,.58); }
.contact-data { display: grid; gap: 10px; }
.contact-line { display: block; padding: 15px 16px; border: 1px solid rgba(255,255,255,.10); border-radius: 15px; background: rgba(255,255,255,.04); }
.contact-line small, .contact-line strong { display: block; }
.contact-line small { color: rgba(255,255,255,.38); font-size: .7rem; text-transform: uppercase; letter-spacing: .09em; }
.contact-line strong { margin-top: 3px; font-size: .89rem; }

.site-footer { background: #050c16; color: rgba(255,255,255,.5); padding: 34px 0; border-top: 1px solid rgba(255,255,255,.06); }
.footer-grid { display: grid; grid-template-columns: auto 1fr auto; gap: 30px; align-items: center; }
.footer-brand .brand-surface img { width: 98px; height: 36px; }
.footer-grid p { margin: 0; font-size: .73rem; }
.footer-grid p:last-child { text-align: right; }

.reveal { opacity: 0; transform: translateY(18px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: none; }

@media (max-width: 980px) {
  .menu-toggle { display: block; }
  .main-nav { position: absolute; top: 78px; left: 20px; right: 20px; display: none; flex-direction: column; align-items: stretch; gap: 4px; padding: 14px; border-radius: 18px; background: #0b1727; box-shadow: 0 25px 55px rgba(0,0,0,.28); }
  .main-nav.open { display: flex; }
  .main-nav a { padding: 12px 13px; }
  .nav-cta { text-align: center; }
  .hero { min-height: auto; }
  .hero-layout, .boxcare-layout, .split-layout, .sectors-layout, .contact-card, .secondary-services { grid-template-columns: 1fr; }
  .hero-layout { gap: 55px; }
  .hero-copy { max-width: 790px; }
  .featured-services, .about-grid, .commitment-grid { grid-template-columns: repeat(2,1fr); }
  .featured-services .service-card:last-child { grid-column: 1 / -1; }
  .trust-strip { margin-top: 55px; }
  .contact-card { gap: 35px; }
  .footer-grid { grid-template-columns: 1fr; text-align: center; }
  .footer-brand { display: flex; justify-content: center; }
  .footer-grid p:last-child { text-align: center; }
}

@media (max-width: 680px) {
  .container { width: min(calc(100% - 28px), var(--max)); }
  .site-header .brand-surface img { width: 110px; height: 42px; }
  .nav-wrap { min-height: 70px; }
  .main-nav { top: 70px; left: 14px; right: 14px; }
  html { scroll-padding-top: 78px; }
  .hero { padding: 125px 0 45px; }
  .hero h1 { font-size: clamp(2.65rem, 13vw, 4rem); }
  .hero-lead { font-size: .97rem; }
  .hero-panel { padding: 15px; border-radius: 22px; }
  .hero-logo-card { min-height: 145px; padding: 24px; }
  .trust-strip { grid-template-columns: 1fr; }
  .trust-strip > div { border-right: 0; border-bottom: 1px solid rgba(255,255,255,.12); padding-left: 4px; }
  .trust-strip > div:last-child { border-bottom: 0; }
  .section { padding: 78px 0; }
  .section-heading h2 { font-size: clamp(2.1rem, 10vw, 3rem); }
  .featured-services, .about-grid, .commitment-grid, .repair-grid, .mini-service-grid { grid-template-columns: 1fr; }
  .featured-services .service-card:last-child, .mini-service-grid div:last-child { grid-column: auto; }
  .service-card, .about-card, .commitment-card { padding: 24px; }
  .secondary-services { padding: 25px; gap: 28px; }
  .boxcare-flow > div { grid-template-columns: 28px 1fr; }
  .boxcare-flow small { grid-column: 2; }
  .dash-status { display: none; }
  .dash-grid { grid-template-columns: 1fr; }
  .dash-card.wide { grid-column: auto; }
  .contact-section { padding: 60px 0; }
  .contact-card { padding: 30px 22px; border-radius: 22px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  * { animation: none !important; transition-duration: .01ms !important; }
}
