@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@500;600;700;800&family=Inter:wght@400;500;600;700&display=swap');

:root {
  --navy: #07152f;
  --navy-2: #0d2348;
  --blue: #1f5fae;
  --red: #d7192b;
  --red-dark: #ad1020;
  --white: #ffffff;
  --off: #f5f7fa;
  --text: #172033;
  --muted: #667085;
  --line: #dfe4ec;
  --shadow: 0 18px 45px rgba(7, 21, 47, .12);
  --radius: 18px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--text);
  background: var(--white);
  font-family: Inter, Arial, sans-serif;
  line-height: 1.6;
}
a { color: inherit; text-decoration: none; }
.container { width: min(1160px, calc(100% - 40px)); margin: 0 auto; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(7, 21, 47, .97);
  border-bottom: 1px solid rgba(255,255,255,.08);
  backdrop-filter: blur(12px);
}
.nav-wrap { min-height: 86px; display: flex; align-items: center; justify-content: space-between; }
.brand img { width: 158px; display: block; }
.nav { display: flex; align-items: center; gap: 28px; color: #fff; font-weight: 600; font-size: 14px; }
.nav a { opacity: .88; transition: .2s; }
.nav a:hover { opacity: 1; color: #fff; }
.nav-cta { padding: 12px 18px; background: var(--red); border-radius: 8px; opacity: 1 !important; }
.menu-toggle { display: none; border: 0; background: transparent; color: #fff; font-size: 28px; }

.hero {
  position: relative;
  overflow: hidden;
  min-height: 690px;
  color: #fff;
  background:
    radial-gradient(circle at 85% 25%, rgba(31,95,174,.55), transparent 30%),
    linear-gradient(120deg, #050f25 0%, #0a1e40 58%, #07152f 100%);
}
.hero-grid {
  position: absolute; inset: 0; opacity: .14;
  background-image: linear-gradient(rgba(255,255,255,.2) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.2) 1px, transparent 1px);
  background-size: 50px 50px;
  mask-image: linear-gradient(90deg, #000 0%, transparent 85%);
}
.hero-content {
  position: relative;
  min-height: 690px;
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  align-items: center;
  gap: 60px;
}
.eyebrow { margin: 0 0 13px; color: var(--red); font-size: 12px; font-weight: 800; letter-spacing: 2px; }
.hero .eyebrow { color: #c9d9f2; }
h1, h2, h3 { font-family: "Barlow Condensed", Arial, sans-serif; line-height: .98; margin: 0; text-transform: uppercase; }
h1 { font-size: clamp(58px, 7vw, 92px); max-width: 800px; letter-spacing: -1px; }
h1 span { color: #ef233c; }
.hero-text { max-width: 620px; margin: 26px 0 30px; color: #cbd6e7; font-size: 18px; }
.hero-buttons { display: flex; gap: 12px; flex-wrap: wrap; }
.btn { display: inline-flex; justify-content: center; align-items: center; min-height: 52px; padding: 0 23px; border-radius: 8px; border: 1px solid transparent; font-weight: 800; font-size: 14px; cursor: pointer; transition: .2s; }
.btn-primary { color: #fff; background: var(--red); box-shadow: 0 10px 25px rgba(215,25,43,.22); }
.btn-primary:hover { background: var(--red-dark); transform: translateY(-1px); }
.btn-outline { color: #fff; border-color: rgba(255,255,255,.28); background: rgba(255,255,255,.04); }
.btn-outline:hover { background: rgba(255,255,255,.1); }
.trust-row { display: flex; gap: 28px; margin-top: 48px; }
.trust-row div { display: flex; flex-direction: column; }
.trust-row strong { font-family: "Barlow Condensed"; font-size: 22px; text-transform: uppercase; }
.trust-row span { color: #9fb0ca; font-size: 11px; text-transform: uppercase; letter-spacing: .8px; }

.hero-card {
  justify-self: end;
  width: min(440px, 100%);
  padding: 48px 42px 38px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 24px;
  background: linear-gradient(145deg, rgba(255,255,255,.12), rgba(255,255,255,.03));
  box-shadow: 0 35px 80px rgba(0,0,0,.28);
  text-align: center;
}
.hero-card img { width: min(330px, 100%); display: block; margin: 0 auto 30px; }
.hero-card-line { height: 3px; width: 70px; background: var(--red); margin: 0 auto 18px; }
.hero-card p { margin: 0; color: #b9c8dc; font-size: 11px; font-weight: 700; letter-spacing: 1.5px; }

.section { padding: 105px 0; }
.services { background: var(--off); }
.section-heading { max-width: 780px; margin-bottom: 48px; }
.section-heading h2, .about-copy h2, .area h2, .contact h2 { font-size: clamp(42px, 5vw, 64px); color: var(--navy); }
.section-heading > p:last-child, .about-copy > p, .area p, .contact-copy > p { color: var(--muted); max-width: 700px; margin-top: 20px; }
.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.service-card { padding: 32px; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); box-shadow: 0 7px 24px rgba(7,21,47,.04); min-height: 250px; }
.service-card .icon { font-family: "Barlow Condensed"; color: var(--red); font-size: 15px; font-weight: 800; letter-spacing: 1px; }
.service-card h3 { color: var(--navy); font-size: 30px; margin-top: 20px; }
.service-card p { color: var(--muted); font-size: 14px; margin-bottom: 0; }
.service-card-dark { color: #fff; background: var(--navy); border-color: var(--navy); }
.service-card-dark h3 { color: #fff; }
.service-card-dark p { color: #b9c8dc; }
.service-card-dark a { display: inline-block; margin-top: 16px; color: #fff; font-weight: 800; font-size: 13px; }

.about { background: #fff; }
.about-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 85px; align-items: center; }
.about-panel { min-height: 430px; border-radius: 24px; padding: 45px; display: flex; flex-direction: column; justify-content: flex-end; color: #fff; background: linear-gradient(145deg, #0c2751, #07152f); box-shadow: var(--shadow); position: relative; overflow: hidden; }
.about-panel:after { content: "EZ"; position: absolute; top: -80px; right: -35px; font: 800 260px/1 "Barlow Condensed"; color: rgba(255,255,255,.035); }
.about-badge { position: absolute; top: 38px; left: 42px; width: 62px; height: 62px; display: grid; place-items: center; border: 2px solid var(--red); border-radius: 50%; color: #fff; font: 800 28px "Barlow Condensed"; }
.about-panel h3 { position: relative; z-index: 1; font-size: 44px; }
.about-panel p { position: relative; z-index: 1; color: #b9c8dc; font-size: 14px; }
.check-list { margin-top: 30px; display: grid; gap: 14px; font-weight: 600; }
.check-list div { display: flex; align-items: center; gap: 12px; }
.check-list span { display: grid; place-items: center; width: 25px; height: 25px; border-radius: 50%; background: #e8f0fa; color: var(--blue); font-size: 13px; }

.area { color: #fff; background: var(--red); overflow: hidden; }
.area h2 { color: #fff; max-width: 700px; }
.area p { color: rgba(255,255,255,.84); }
.area-inner { display: grid; grid-template-columns: 1fr 300px; align-items: center; gap: 60px; }
.area-ring { width: 260px; height: 260px; border: 2px solid rgba(255,255,255,.5); border-radius: 50%; display: grid; place-items: center; margin: auto; position: relative; }
.area-ring:before, .area-ring:after { content: ""; position: absolute; border: 1px solid rgba(255,255,255,.3); border-radius: 50%; }
.area-ring:before { inset: 18px; }
.area-ring:after { inset: 38px; }
.area-center { width: 105px; height: 105px; background: #fff; color: var(--navy); border-radius: 50%; display: flex; flex-direction: column; align-items: center; justify-content: center; position: relative; z-index: 2; }
.area-center strong { font: 800 45px/1 "Barlow Condensed"; }
.area-center span { font-size: 9px; font-weight: 800; letter-spacing: 1.5px; }

.contact { background: var(--off); }
.contact-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 75px; align-items: start; }
.contact-details { display: grid; gap: 16px; margin-top: 34px; }
.contact-details a, .contact-details div { display: flex; flex-direction: column; font-weight: 700; color: var(--navy); }
.contact-details span { font-size: 10px; color: var(--red); letter-spacing: 1.5px; margin-bottom: 2px; }
.quote-form { background: #fff; padding: 34px; border-radius: 18px; box-shadow: var(--shadow); border: 1px solid var(--line); display: grid; gap: 17px; }
.quote-form label { display: grid; gap: 7px; font-size: 12px; font-weight: 800; color: var(--navy); text-transform: uppercase; letter-spacing: .5px; }
.quote-form input, .quote-form textarea { width: 100%; border: 1px solid #d6dce5; border-radius: 8px; padding: 13px 14px; font: 14px Inter, sans-serif; color: var(--text); outline: none; }
.quote-form textarea { resize: vertical; }
.quote-form input:focus, .quote-form textarea:focus { border-color: var(--blue); box-shadow: 0 0 0 3px rgba(31,95,174,.08); }
.full { width: 100%; }
.form-note { margin: -5px 0 0; color: #8a94a6; font-size: 11px; text-align: center; }

.site-footer { color: #b7c5d9; background: #050f22; padding: 45px 0; }
.footer-wrap { display: grid; grid-template-columns: 1fr auto; gap: 25px; align-items: end; }
.footer-brand img { width: 145px; display: block; }
.footer-brand p { margin: 12px 0 0; font-size: 12px; }
.footer-links { display: flex; gap: 25px; color: #fff; font-weight: 700; font-size: 13px; }
.copyright { grid-column: 1 / -1; border-top: 1px solid rgba(255,255,255,.1); padding-top: 20px; font-size: 11px; color: #7f8ea5; }

@media (max-width: 900px) {
  .nav { display: none; position: absolute; top: 86px; left: 0; right: 0; padding: 20px; background: var(--navy); flex-direction: column; align-items: stretch; }
  .nav.open { display: flex; }
  .nav a { padding: 10px 5px; }
  .menu-toggle { display: block; }
  .hero-content, .about-grid, .contact-grid { grid-template-columns: 1fr; }
  .hero { min-height: auto; }
  .hero-content { padding: 85px 0; min-height: auto; }
  .hero-card { justify-self: start; }
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid { gap: 45px; }
  .area-inner { grid-template-columns: 1fr; }
}
@media (max-width: 620px) {
  .container { width: min(100% - 28px, 1160px); }
  .nav-wrap { min-height: 74px; }
  .brand img { width: 135px; }
  .nav { top: 74px; }
  .hero-content { padding: 65px 0; }
  h1 { font-size: 57px; }
  .hero-text { font-size: 16px; }
  .trust-row { gap: 18px; flex-wrap: wrap; margin-top: 35px; }
  .hero-card { padding: 30px 25px; }
  .section { padding: 75px 0; }
  .service-grid { grid-template-columns: 1fr; }
  .service-card { min-height: 0; }
  .about-panel { min-height: 360px; padding: 30px; }
  .about-panel h3 { font-size: 37px; }
  .contact-grid { gap: 40px; }
  .quote-form { padding: 24px; }
  .footer-wrap { grid-template-columns: 1fr; }
  .footer-links { flex-direction: column; gap: 10px; }
  .copyright { grid-column: auto; }
}
