:root {
  --navy: #071a20;
  --navy-2: #0b252c;
  --green: #46d6b1;
  --green-dark: #0d9877;
  --mint: #c9f5e9;
  --cream: #f4f5ef;
  --white: #fff;
  --ink: #10282f;
  --muted: #62757a;
  --line: #dbe4df;
  --orange: #ff7b5f;
  --shadow: 0 25px 70px rgba(3, 25, 31, .14);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: "Manrope", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
svg { display: block; }
.container { width: min(1160px, calc(100% - 48px)); margin: 0 auto; }

.site-header {
  position: fixed;
  z-index: 50;
  top: 0;
  left: 0;
  width: 100%;
  border-bottom: 1px solid rgba(255,255,255,.1);
  background: rgba(7,26,32,.78);
  backdrop-filter: blur(16px);
  transition: background .25s, box-shadow .25s;
}
.site-header.scrolled { background: rgba(7,26,32,.96); box-shadow: 0 8px 30px rgba(0,0,0,.15); }
.nav { height: 78px; display: flex; align-items: center; gap: 38px; }
.brand { display: inline-flex; align-items: center; gap: 11px; color: #fff; font-size: 23px; font-weight: 500; letter-spacing: -.7px; }
.brand-mark { width: 39px; height: 39px; display: grid; place-items: center; border-radius: 12px; background: var(--green); }
.brand-mark svg { width: 27px; height: 27px; fill: none; stroke: var(--navy); stroke-width: 2; stroke-linejoin: round; }
.brand strong { font-weight: 800; }
.menu { display: flex; gap: 29px; margin-left: auto; }
.menu a { color: #d2e0df; font-size: 13px; font-weight: 700; transition: color .2s; }
.menu a:hover { color: var(--green); }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 19px;
  min-height: 55px;
  padding: 0 27px;
  border: 0;
  border-radius: 7px;
  color: var(--navy);
  background: var(--green);
  font: 800 14px "Manrope", sans-serif;
  cursor: pointer;
  box-shadow: 0 11px 30px rgba(70,214,177,.17);
  transition: transform .2s, background .2s;
}
.button:hover { background: #65e8c6; transform: translateY(-2px); }
.button-small { min-height: 43px; padding: 0 18px; font-size: 12px; }
.menu-toggle { display: none; }

.hero {
  position: relative;
  overflow: hidden;
  min-height: 790px;
  padding: 155px 0 0;
  color: #fff;
  background:
    radial-gradient(circle at 10% 40%, rgba(35,132,111,.11), transparent 28%),
    linear-gradient(135deg, #071a20 0%, #0a2228 62%, #07191e 100%);
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .055;
  background-image: linear-gradient(rgba(255,255,255,.8) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.8) 1px, transparent 1px);
  background-size: 62px 62px;
  mask-image: linear-gradient(to right, transparent, #000 60%);
}
.hero-glow { position: absolute; border-radius: 50%; filter: blur(2px); }
.hero-glow-one { width: 520px; height: 520px; right: 0; top: 90px; background: rgba(22,154,127,.08); }
.hero-glow-two { width: 180px; height: 180px; left: 38%; top: 80px; background: rgba(70,214,177,.05); }
.hero-grid { position: relative; z-index: 2; display: grid; grid-template-columns: .93fr 1.07fr; align-items: center; gap: 50px; }
.hero-copy { padding-bottom: 55px; }
.eyebrow { display: flex; align-items: center; gap: 11px; margin: 0 0 21px; color: #a9c3c1; font-size: 11px; font-weight: 800; letter-spacing: 2.1px; text-transform: uppercase; }
.eyebrow span { width: 25px; height: 2px; background: var(--green); }
.eyebrow.dark { color: var(--green-dark); }
h1 { margin: 0; max-width: 680px; font-size: clamp(48px, 5vw, 70px); line-height: 1.02; letter-spacing: -3.8px; }
h1 em { color: var(--green); font-style: normal; font-weight: 800; }
.hero-lead { max-width: 570px; margin: 28px 0 31px; color: #b9cbcb; font-size: 16px; line-height: 1.75; }
.hero-actions { display: flex; align-items: center; gap: 29px; }
.text-link { display: flex; align-items: center; gap: 11px; color: #fff; font-size: 13px; font-weight: 700; }
.play { display: grid; place-items: center; width: 37px; height: 37px; padding-left: 2px; border: 1px solid #517078; border-radius: 50%; color: var(--green); font-size: 9px; }
.hero-proof { display: flex; gap: 34px; margin-top: 39px; padding-top: 25px; border-top: 1px solid rgba(255,255,255,.1); }
.hero-proof div { display: grid; gap: 3px; }
.hero-proof strong { color: #fff; font-size: 18px; }
.hero-proof span { color: #849da0; font-size: 10px; }

.hero-visual { position: relative; min-width: 0; }
.dashboard { position: relative; overflow: hidden; border: 1px solid rgba(144,220,202,.25); border-radius: 14px; background: #0b1d22; box-shadow: 0 45px 80px rgba(0,0,0,.35); transform: perspective(1200px) rotateY(-2deg); }
.dashboard-top, .dashboard-bottom { height: 54px; display: flex; align-items: center; justify-content: space-between; padding: 0 18px; }
.dashboard-brand { color: #c6d5d4; font-size: 11px; font-weight: 700; }
.dashboard-brand i { display: inline-block; width: 7px; height: 7px; margin-right: 7px; border-radius: 2px; background: var(--green); }
.live { padding: 5px 8px; border: 1px solid rgba(70,214,177,.24); border-radius: 4px; color: #9ddecf; font-size: 8px; font-weight: 800; letter-spacing: .8px; }
.live span { display: inline-block; width: 5px; height: 5px; margin-right: 5px; border-radius: 50%; background: var(--green); box-shadow: 0 0 8px var(--green); }
.camera-view { position: relative; overflow: hidden; aspect-ratio: 1.7; border-block: 1px solid rgba(255,255,255,.08); background: #0c1a1e; }
.building { width: 100%; height: 100%; opacity: .78; }
.camera-view::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(0,0,0,.13) 50%, transparent 50%); background-size: 3px 100%; opacity: .32; }
.camera-label, .camera-time { position: absolute; z-index: 2; top: 14px; padding: 5px 8px; border-radius: 3px; color: #b9cdca; background: rgba(2,14,17,.72); font-size: 8px; letter-spacing: .7px; }
.camera-label { left: 14px; }
.camera-time { right: 14px; font-variant-numeric: tabular-nums; }
.scan-line { position: absolute; z-index: 2; left: 0; right: 0; height: 1px; top: 35%; background: rgba(70,214,177,.4); box-shadow: 0 0 15px rgba(70,214,177,.4); animation: scan 4s linear infinite; }
@keyframes scan { 0% { top: 5%; opacity: 0; } 10%, 90% { opacity: 1; } 100% { top: 95%; opacity: 0; } }
.tracking-box { position: absolute; z-index: 3; width: 106px; height: 72px; right: 21%; bottom: 13%; border: 1px solid var(--orange); }
.tracking-box::before, .tracking-box::after { content: ""; position: absolute; width: 8px; height: 8px; border-color: #fff; }
.tracking-box::before { top: -1px; left: -1px; border-top: 2px solid; border-left: 2px solid; }
.tracking-box::after { right: -1px; bottom: -1px; border-right: 2px solid; border-bottom: 2px solid; }
.tracking-box span { position: absolute; left: -1px; bottom: 100%; padding: 3px 6px; color: #fff; background: var(--orange); font-size: 7px; white-space: nowrap; }
.dashboard-bottom { height: 68px; }
.status-item, .operator { display: flex; align-items: center; gap: 9px; }
.status-icon { display: grid; place-items: center; width: 26px; height: 26px; border-radius: 7px; color: var(--navy); background: var(--green); font-size: 12px; font-weight: 900; }
.dashboard-bottom p { display: grid; gap: 2px; margin: 0; }
.dashboard-bottom b { color: #d9e5e3; font-size: 9px; }
.dashboard-bottom small { color: #6f898b; font-size: 7px; }
.avatar { display: grid; place-items: center; width: 27px; height: 27px; border-radius: 50%; color: #cfe3df; background: #294047; font-size: 8px; font-weight: 800; }
.operator i { width: 7px; height: 7px; border-radius: 50%; background: var(--green); box-shadow: 0 0 8px var(--green); }
.alert-card { position: absolute; z-index: 5; left: -31px; bottom: 75px; display: flex; align-items: center; gap: 11px; min-width: 245px; padding: 14px; border: 1px solid rgba(255,255,255,.1); border-radius: 9px; background: rgba(17,44,50,.94); box-shadow: 0 15px 35px rgba(0,0,0,.3); animation: float 4s ease-in-out infinite; }
@keyframes float { 50% { transform: translateY(-8px); } }
.alert-icon { display: grid; place-items: center; width: 29px; height: 29px; border-radius: 7px; color: #fff; background: var(--orange); font-size: 13px; font-weight: 900; }
.alert-card p { flex: 1; display: grid; gap: 3px; margin: 0; }
.alert-card b { font-size: 10px; }
.alert-card small { color: #809b9c; font-size: 7px; }
.check { display: grid; place-items: center; width: 19px; height: 19px; border-radius: 50%; color: var(--green); background: rgba(70,214,177,.12); font-size: 10px; }
.orbit { position: absolute; z-index: -1; border: 1px solid rgba(70,214,177,.12); border-radius: 50%; }
.orbit-one { width: 610px; height: 610px; top: -105px; left: -20px; }
.orbit-two { width: 480px; height: 480px; top: -40px; left: 50px; }
.trust-strip { position: relative; z-index: 3; height: 92px; display: flex; align-items: center; justify-content: space-between; border-top: 1px solid rgba(255,255,255,.1); color: #b1c3c3; }
.trust-strip > span { color: #607b7e; font-size: 9px; font-weight: 800; letter-spacing: 1.5px; }
.trust-strip div { display: flex; align-items: center; gap: 10px; font-size: 11px; font-weight: 700; }
.mini-icon { display: grid; place-items: center; width: 28px; height: 28px; border: 1px solid #2a4b50; border-radius: 6px; color: var(--green); font-style: normal; }

.section { padding: 108px 0; }
.section-light { background: #f6f7f3; }
.section-heading { max-width: 675px; margin-bottom: 55px; }
.section-heading.centered { margin-inline: auto; text-align: center; }
.section-heading.centered .eyebrow { justify-content: center; }
h2 { margin: 0; font-size: clamp(34px, 4vw, 50px); line-height: 1.12; letter-spacing: -2.3px; }
.section-heading > p:last-child, .lead { color: var(--muted); font-size: 14px; line-height: 1.75; }
.section-heading > p:last-child { max-width: 610px; margin: 20px auto 0; }
.service-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 17px; }
.service-card { position: relative; min-height: 365px; padding: 31px 26px; border: 1px solid var(--line); border-radius: 10px; background: #fff; transition: transform .25s, box-shadow .25s; }
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.service-card.featured { color: #fff; border-color: var(--navy-2); background: var(--navy-2); box-shadow: 0 18px 45px rgba(7,26,32,.18); }
.card-number { position: absolute; top: 26px; right: 25px; color: #bfcbc7; font-size: 10px; font-weight: 800; }
.featured .card-number { color: #537078; }
.service-icon { width: 52px; height: 52px; display: grid; place-items: center; margin-bottom: 27px; border-radius: 10px; color: var(--green-dark); background: #e4f8f1; }
.featured .service-icon { color: var(--green); background: rgba(70,214,177,.1); }
.service-icon svg { width: 27px; height: 27px; fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.service-card h3 { margin: 0 0 16px; font-size: 17px; letter-spacing: -.5px; }
.service-card p { margin: 0; color: #6d7e81; font-size: 12px; line-height: 1.8; }
.featured p { color: #9eb2b3; }
.card-tag { position: absolute; left: 26px; bottom: 27px; color: var(--green-dark); font-size: 9px; font-weight: 800; letter-spacing: .6px; text-transform: uppercase; }
.featured .card-tag { color: var(--green); }

.sectors { background: #fff; }
.sectors-heading { display: grid; grid-template-columns: 1.15fr .85fr; align-items: end; gap: 90px; margin-bottom: 52px; }
.sectors-heading .eyebrow { margin-bottom: 17px; }
.sectors-heading > p { margin: 0 0 4px; color: var(--muted); font-size: 13px; line-height: 1.8; }
.sector-grid { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.sector-grid article { position: relative; min-height: 235px; padding: 30px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); transition: color .25s, background .25s; }
.sector-grid article:hover { color: #fff; background: var(--navy-2); }
.sector-grid article > span { position: absolute; top: 25px; right: 26px; color: #aebdb9; font-size: 9px; font-weight: 800; }
.sector-grid i { width: 45px; height: 45px; display: grid; place-items: center; margin-bottom: 26px; border-radius: 9px; color: var(--green-dark); background: #e6f8f2; font: 800 18px "Manrope", sans-serif; }
.sector-grid h3 { margin: 0 0 11px; font-size: 15px; }
.sector-grid p { margin: 0; color: var(--muted); font-size: 10px; line-height: 1.7; }
.sector-grid article:hover p { color: #91a9aa; }

.benefits { overflow: hidden; color: #fff; background: var(--navy); }
.benefits-grid { display: grid; grid-template-columns: .86fr 1.14fr; align-items: center; gap: 85px; }
.benefits-visual { min-height: 480px; display: grid; place-items: center; }
.rings { position: relative; width: 400px; height: 400px; display: grid; place-items: center; }
.ring { position: absolute; border: 1px solid rgba(70,214,177,.17); border-radius: 50%; }
.ring-1 { width: 180px; height: 180px; background: rgba(70,214,177,.025); }
.ring-2 { width: 290px; height: 290px; }
.ring-3 { width: 400px; height: 400px; border-style: dashed; animation: rotate 35s linear infinite; }
@keyframes rotate { to { transform: rotate(360deg); } }
.shield { z-index: 2; width: 120px; height: 120px; display: grid; place-items: center; border-radius: 32px; background: linear-gradient(145deg, #1a4447, #0d2c33); box-shadow: 0 20px 55px rgba(0,0,0,.35), inset 0 0 0 1px rgba(70,214,177,.2); transform: rotate(45deg); }
.shield svg { width: 65px; height: 65px; fill: rgba(70,214,177,.1); stroke: var(--green); stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; transform: rotate(-45deg); }
.node { position: absolute; z-index: 3; display: grid; place-items: center; width: 49px; height: 49px; border: 1px solid #28545a; border-radius: 50%; color: var(--green); background: #0b282f; font-size: 8px; font-weight: 800; box-shadow: 0 10px 25px rgba(0,0,0,.25); }
.node-a { top: 25px; right: 75px; }
.node-b { left: 2px; bottom: 112px; }
.node-c { right: -2px; bottom: 95px; }
.benefits-copy .eyebrow { margin-bottom: 20px; }
.benefits-copy h2 { max-width: 600px; }
.benefits-copy .lead { max-width: 570px; margin: 21px 0 29px; color: #91a8aa; }
.benefit-list { display: grid; grid-template-columns: 1fr 1fr; gap: 22px 26px; }
.benefit-list > div { display: flex; gap: 12px; }
.benefit-list > div > span { flex: 0 0 auto; display: grid; place-items: center; width: 23px; height: 23px; margin-top: 2px; border-radius: 50%; color: var(--navy); background: var(--green); font-size: 10px; font-weight: 900; }
.benefit-list p { display: grid; gap: 6px; margin: 0; }
.benefit-list b { font-size: 12px; }
.benefit-list small { color: #839a9d; font-size: 10px; line-height: 1.55; }

.process-section { background: #eef1eb; }
.process { display: grid; grid-template-columns: repeat(4, 1fr); position: relative; }
.process::before { content: ""; position: absolute; top: 27px; left: 12%; right: 12%; height: 1px; background: #c3d1cc; }
.process article { position: relative; z-index: 2; padding: 0 25px; text-align: center; }
.process article > span { width: 55px; height: 55px; display: grid; place-items: center; margin: 0 auto 20px; border: 7px solid #eef1eb; outline: 1px solid #bfd2cb; border-radius: 50%; color: #fff; background: var(--green-dark); font-size: 13px; font-weight: 800; }
.process h3 { margin: 0 0 10px; font-size: 15px; }
.process p { margin: 0; color: var(--muted); font-size: 11px; line-height: 1.65; }

.cta-section { padding: 105px 0; color: #fff; background: linear-gradient(125deg, #0d353a, #071a20 62%); }
.cta-grid { display: grid; grid-template-columns: .95fr 1.05fr; align-items: center; gap: 90px; }
.cta-copy h2 { font-size: clamp(34px, 4vw, 46px); }
.cta-copy > p:nth-of-type(2) { max-width: 540px; margin: 23px 0 34px; color: #9bb0b1; font-size: 13px; line-height: 1.8; }
.contact-details { display: flex; gap: 30px; }
.contact-details a { display: grid; grid-template-columns: 35px auto; column-gap: 10px; }
.contact-details span { grid-row: 1 / 3; width: 35px; height: 35px; display: grid; place-items: center; border: 1px solid #2d585b; border-radius: 8px; color: var(--green); font-size: 13px; }
.contact-details small { color: #719093; font-size: 8px; text-transform: uppercase; }
.contact-details b { font-size: 11px; }
.contact-form { padding: 36px; border: 1px solid rgba(255,255,255,.13); border-radius: 13px; background: #fff; color: var(--ink); box-shadow: 0 25px 65px rgba(0,0,0,.25); }
.contact-form h3 { margin: 0 0 5px; font-size: 21px; }
.contact-form > p { margin: 0 0 24px; color: var(--muted); font-size: 10px; }
.contact-form label { display: grid; gap: 7px; margin-bottom: 14px; color: #354d52; font-size: 9px; font-weight: 800; }
.contact-form input, .contact-form select { width: 100%; height: 45px; padding: 0 13px; border: 1px solid #dbe4df; border-radius: 6px; outline: none; color: var(--ink); background: #f9faf8; font: 500 11px "Manrope", sans-serif; }
.contact-form input:focus, .contact-form select:focus { border-color: var(--green-dark); box-shadow: 0 0 0 3px rgba(70,214,177,.12); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.contact-form .consent { display: flex; align-items: flex-start; gap: 9px; margin: 2px 0 17px; color: #849194; font-weight: 500; line-height: 1.5; }
.consent input { flex: 0 0 auto; width: 14px; height: 14px; margin: 0; accent-color: var(--green-dark); }
.form-button { width: 100%; }
.form-message { min-height: 16px; padding-top: 8px; color: var(--green-dark); font-size: 10px; text-align: center; }

footer { color: #789094; background: #051418; }
.footer-grid { min-height: 115px; display: grid; grid-template-columns: auto 1fr auto auto; align-items: center; gap: 30px; }
.footer-brand { font-size: 18px; }
.footer-brand .brand-mark { width: 31px; height: 31px; border-radius: 9px; }
.footer-brand .brand-mark svg { width: 21px; height: 21px; }
.footer-grid > p { font-size: 9px; }
.footer-grid nav { display: flex; gap: 22px; color: #a5b6b7; font-size: 9px; font-weight: 700; }
.copyright { padding-left: 24px; border-left: 1px solid #1b3339; }

@media (max-width: 1000px) {
  .menu { gap: 18px; }
  .nav-cta { display: none; }
  .hero { padding-top: 135px; }
  .hero-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
  .hero-proof { gap: 20px; }
  .service-grid { grid-template-columns: 1fr 1fr; }
  .sector-grid { grid-template-columns: 1fr 1fr; }
  .benefits-grid { gap: 35px; }
  .cta-grid { gap: 45px; }
}

@media (max-width: 760px) {
  .container { width: min(100% - 32px, 600px); }
  .nav { height: 68px; }
  .menu-toggle { display: grid; gap: 4px; margin-left: auto; padding: 8px; border: 0; background: transparent; }
  .menu-toggle span { width: 22px; height: 2px; background: #fff; }
  .menu { position: absolute; top: 68px; left: 0; width: 100%; display: none; flex-direction: column; gap: 0; padding: 10px 16px 20px; background: #071a20; }
  .menu.open { display: flex; }
  .menu a { padding: 13px 10px; border-bottom: 1px solid rgba(255,255,255,.07); }
  .hero { min-height: auto; padding-top: 118px; }
  .hero-grid { grid-template-columns: 1fr; }
  h1 { letter-spacing: -2.5px; }
  .hero-visual { margin: 15px 0 45px; }
  .alert-card { left: 10px; bottom: 55px; }
  .trust-strip { height: auto; flex-wrap: wrap; gap: 20px; padding: 25px 0; }
  .trust-strip > span { width: 100%; }
  .section { padding: 78px 0; }
  .sectors-heading { grid-template-columns: 1fr; gap: 20px; }
  .benefits-grid, .cta-grid { grid-template-columns: 1fr; }
  .benefits-visual { min-height: 380px; order: 2; }
  .rings { transform: scale(.82); }
  .process { grid-template-columns: 1fr 1fr; gap: 35px 0; }
  .process::before { display: none; }
  .footer-grid { grid-template-columns: 1fr; gap: 13px; padding: 30px 0; }
  .copyright { padding: 0; border: 0; }
}

@media (max-width: 520px) {
  .hero-actions, .hero-proof, .contact-details { align-items: stretch; flex-direction: column; }
  .hero-actions .button { width: 100%; }
  .hero-proof { display: grid; grid-template-columns: 1fr 1fr; }
  .hero-proof div:last-child { grid-column: 1 / -1; }
  .service-grid, .sector-grid, .benefit-list, .process, .form-row { grid-template-columns: 1fr; }
  .service-card { min-height: 330px; }
  .dashboard { transform: none; }
  .alert-card { min-width: 220px; }
  .rings { width: 330px; height: 330px; transform: scale(.9); }
  .ring-3 { width: 330px; height: 330px; }
  .node-a { right: 35px; }
  .contact-form { padding: 25px 20px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; }
}
