
:root {
  --navy:#031426;
  --navy2:#061d36;
  --navy3:#082443;
  --blue:#1593e6;
  --blue2:#0b67ad;
  --aqua:#55dcff;
  --ice:#f4f8fc;
  --white:#fff;
  --text:#102840;
  --muted:#6b7b8d;
  --line:rgba(255,255,255,.14);
  --shadow:0 24px 70px rgba(3,20,38,.24);
}

* { box-sizing:border-box; }
html { scroll-behavior:smooth; }
body {
  margin:0;
  font-family:Arial, Helvetica, sans-serif;
  color:var(--text);
  background:#fff;
  line-height:1.6;
}
body.menu-open { overflow:hidden; }
a { color:inherit; }
img, video { max-width:100%; display:block; }
.container { width:min(1180px,92%); margin:auto; }

.site-header {
  position:absolute;
  top:0;
  left:0;
  right:0;
  z-index:50;
  padding:16px 0;
  color:white;
  background:linear-gradient(to bottom,rgba(3,20,38,.86),rgba(3,20,38,0));
}
.site-header.solid {
  position:sticky;
  top:0;
  background:#031426;
  border-bottom:1px solid rgba(255,255,255,.08);
}
.nav {
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:24px;
}
.brand {
  display:flex;
  align-items:center;
  color:white;
  text-decoration:none;
}
.brand img {
  width:270px;
  height:auto;
}
.menu {
  display:flex;
  align-items:center;
  gap:18px;
  font-size:12px;
  text-transform:uppercase;
  font-weight:900;
  letter-spacing:.04em;
}
.menu a {
  color:rgba(255,255,255,.9);
  text-decoration:none;
  transition:.2s;
  white-space:nowrap;
}
.menu a:hover,
.menu a.active { color:var(--aqua); }
.quote-link {
  border:1px solid rgba(85,220,255,.74);
  padding:10px 14px;
  border-radius:5px;
}
.mobile-toggle {
  display:none;
  color:white;
  background:none;
  border:1px solid rgba(255,255,255,.35);
  border-radius:6px;
  padding:8px 10px;
  font-size:22px;
}

.hero {
  min-height:735px;
  position:relative;
  display:flex;
  align-items:center;
  overflow:hidden;
  color:white;
  background:
    linear-gradient(90deg,rgba(3,20,38,.99) 0%,rgba(3,20,38,.9) 42%,rgba(3,20,38,.48) 72%,rgba(3,20,38,.90) 100%),
    radial-gradient(circle at 74% 44%,rgba(85,220,255,.28),transparent 24%),
    linear-gradient(135deg,#031426,#082443 48%,#0b5f9e);
}
.hero.compact { min-height:500px; }
.hero:before {
  content:"";
  position:absolute;
  inset:0;
  background-image:
    linear-gradient(rgba(255,255,255,.04) 1px,transparent 1px),
    linear-gradient(90deg,rgba(255,255,255,.04) 1px,transparent 1px);
  background-size:64px 64px;
  opacity:.52;
  mask-image:linear-gradient(to bottom,rgba(0,0,0,.86),transparent 78%);
}
.hero:after {
  content:"";
  position:absolute;
  left:0;right:0;bottom:0;
  height:190px;
  background:linear-gradient(transparent,rgba(3,20,38,.98));
}
.water {
  position:absolute;
  inset:0;
  opacity:.28;
  background:
    radial-gradient(ellipse at 18% 28%,rgba(85,220,255,.28),transparent 32%),
    radial-gradient(ellipse at 80% 54%,rgba(21,147,230,.42),transparent 34%),
    radial-gradient(ellipse at 58% 82%,rgba(85,220,255,.20),transparent 42%);
  animation:waterMove 12s ease-in-out infinite alternate;
}
@keyframes waterMove {
  from { transform:translate(-2%,-1%) scale(1); }
  to { transform:translate(2%,2%) scale(1.06); }
}
.hero-grid {
  position:relative;
  z-index:2;
  display:grid;
  grid-template-columns:1.05fr .95fr;
  gap:50px;
  align-items:center;
  padding-top:68px;
}
.hero.compact .hero-grid { grid-template-columns:1fr; max-width:900px; }
.eyebrow {
  display:inline-flex;
  gap:12px;
  align-items:center;
  margin-bottom:20px;
  color:var(--aqua);
  font-size:13px;
  font-weight:900;
  text-transform:uppercase;
  letter-spacing:.18em;
}
.eyebrow:before {
  content:"";
  width:44px;
  height:2px;
  background:var(--aqua);
}
h1 {
  margin:0 0 22px;
  font-size:clamp(42px,5.8vw,76px);
  line-height:1.03;
  letter-spacing:-.05em;
  text-transform:uppercase;
  text-shadow:0 8px 28px rgba(0,0,0,.35);
}
h1 span { color:var(--blue); }
.hero p {
  max-width:720px;
  margin:0 0 30px;
  font-size:20px;
  color:rgba(255,255,255,.86);
}
.buttons { display:flex; gap:16px; flex-wrap:wrap; margin-bottom:28px; }
.btn {
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:15px 24px;
  border-radius:6px;
  text-decoration:none;
  text-transform:uppercase;
  font-weight:900;
  letter-spacing:.04em;
  border:1px solid transparent;
  transition:.2s;
  font-size:14px;
  cursor:pointer;
}
.btn.primary {
  background:linear-gradient(135deg,var(--blue),var(--blue2));
  color:#fff;
  box-shadow:0 18px 38px rgba(21,147,230,.32);
}
.btn.primary:hover { transform:translateY(-2px); }
.btn.outline {
  color:#fff;
  background:rgba(255,255,255,.04);
  border-color:rgba(85,220,255,.68);
}
.btn.outline:hover { background:rgba(255,255,255,.1); }
.chips { display:flex; gap:12px; flex-wrap:wrap; }
.chips span {
  padding:9px 13px;
  border:1px solid rgba(255,255,255,.15);
  background:rgba(255,255,255,.06);
  border-radius:999px;
  color:rgba(255,255,255,.78);
  font-size:14px;
}

.hero-media {
  position:relative;
  min-height:420px;
  display:grid;
  place-items:center;
}
.rov-card {
  width:min(520px,100%);
  height:340px;
  position:relative;
  overflow:hidden;
  border-radius:32px;
  background:radial-gradient(circle at 54% 47%,rgba(85,220,255,.30),transparent 30%),linear-gradient(135deg,#06182c,#0a345d);
  border:1px solid rgba(255,255,255,.16);
  box-shadow:0 38px 95px rgba(0,0,0,.36);
  transform:rotate(-2deg);
}
.rov-card:before {
  content:"";
  position:absolute;
  inset:34px;
  border:3px solid rgba(255,255,255,.14);
  border-radius:27px;
}
.beam {
  position:absolute;
  height:180px;
  width:420px;
  right:73%;
  top:104px;
  opacity:.72;
  background:linear-gradient(90deg,rgba(85,220,255,.28),transparent);
  clip-path:polygon(0 38%,100% 0,100% 100%,0 62%);
  animation:pulseBeam 3s ease-in-out infinite alternate;
}
@keyframes pulseBeam { from { opacity:.45; } to { opacity:.85; } }
.rov-body {
  position:absolute;
  top:92px; left:82px; right:82px;
  height:158px;
  border-radius:22px;
  background:linear-gradient(135deg,#020b14,#0a1a2b);
  border:2px solid rgba(255,255,255,.16);
}
.thruster {
  position:absolute;
  top:130px;
  width:80px;height:80px;
  border-radius:50%;
  border:9px solid #050c15;
  background:#102b45;
  box-shadow:inset 0 0 0 6px rgba(255,255,255,.06);
}
.thruster.left { left:42px; }
.thruster.right { right:42px; }
.camera {
  position:absolute;
  left:50%; top:50%;
  transform:translate(-50%,-50%);
  width:80px; height:80px;
  border-radius:50%;
  background:#02070d;
  border:6px solid #132f4b;
  box-shadow:0 0 0 4px rgba(255,255,255,.08);
}
.camera:after {
  content:"";
  position:absolute;
  inset:18px;
  border-radius:50%;
  background:var(--blue);
  box-shadow:0 0 30px var(--aqua);
}
.light {
  position:absolute;
  top:116px;
  width:34px;height:34px;
  border-radius:50%;
  background:#fff;
  box-shadow:0 0 40px 14px rgba(85,220,255,.58);
}
.light.one { left:146px; }
.light.two { right:146px; }

.trust {
  background:linear-gradient(135deg,#06182c,#08213d);
  color:white;
}
.trust-grid {
  display:grid;
  grid-template-columns:repeat(4,1fr);
}
.trust-item {
  display:flex;
  gap:16px;
  align-items:center;
  padding:28px 26px;
  border-right:1px solid rgba(255,255,255,.1);
}
.trust-icon { font-size:34px; color:var(--blue); line-height:1; }
.trust-item strong { display:block; font-size:15px; text-transform:uppercase; letter-spacing:.04em; }
.trust-item span { display:block; font-size:14px; color:rgba(255,255,255,.72); }

.section { padding:88px 0; }
.section.alt { background:var(--ice); }
.section.dark { background:var(--navy); color:white; }
.heading { text-align:center; max-width:900px; margin:0 auto 44px; }
.label {
  display:block;
  margin-bottom:10px;
  color:var(--blue);
  font-size:13px;
  font-weight:900;
  text-transform:uppercase;
  letter-spacing:.22em;
}
.heading h2 {
  margin:0;
  color:var(--navy);
  font-size:clamp(32px,4vw,52px);
  line-height:1.08;
  letter-spacing:-.04em;
}
.section.dark .heading h2 { color:white; }
.heading p { margin:16px 0 0; color:var(--muted); font-size:18px; }
.section.dark .heading p { color:rgba(255,255,255,.72); }

.grid2 { display:grid; grid-template-columns:1fr 1fr; gap:32px; align-items:center; }
.grid3 { display:grid; grid-template-columns:repeat(3,1fr); gap:24px; }
.grid4 { display:grid; grid-template-columns:repeat(4,1fr); gap:18px; }
.card {
  background:white;
  border:1px solid rgba(3,20,38,.08);
  border-radius:22px;
  padding:28px;
  box-shadow:0 12px 34px rgba(3,20,38,.06);
}
.card h3 { margin:0 0 10px; color:var(--navy); font-size:22px; }
.card p { margin:0; color:var(--muted); }
.card:hover { transform:translateY(-3px); box-shadow:var(--shadow); transition:.2s; }
.iconbox {
  width:58px; height:58px;
  border-radius:18px;
  display:grid; place-items:center;
  color:white;
  background:linear-gradient(135deg,var(--blue),var(--blue2));
  font-size:26px;
  margin-bottom:18px;
}

.service-card {
  min-height:335px;
  border-radius:14px;
  overflow:hidden;
  background:var(--navy);
  color:white;
  position:relative;
  display:flex;
  flex-direction:column;
  justify-content:flex-end;
  box-shadow:0 18px 45px rgba(3,20,38,.14);
}
.service-card:before {
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(to bottom,rgba(3,20,38,.05),rgba(3,20,38,.96)),linear-gradient(135deg,#0c456f,#031426);
}
.service-card:nth-child(2):before { background:linear-gradient(to bottom,rgba(3,20,38,.05),rgba(3,20,38,.96)),linear-gradient(135deg,#405c72,#031426); }
.service-card:nth-child(3):before { background:linear-gradient(to bottom,rgba(3,20,38,.05),rgba(3,20,38,.96)),linear-gradient(135deg,#0f7d8c,#031426); }
.service-card:nth-child(4):before { background:linear-gradient(to bottom,rgba(3,20,38,.05),rgba(3,20,38,.96)),linear-gradient(135deg,#7b3e25,#08213d); }
.service-card:nth-child(5):before { background:linear-gradient(to bottom,rgba(3,20,38,.05),rgba(3,20,38,.96)),linear-gradient(135deg,#0b768a,#031426); }
.service-card:nth-child(6):before { background:linear-gradient(to bottom,rgba(3,20,38,.05),rgba(3,20,38,.96)),linear-gradient(135deg,#39455c,#031426); }
.service-content { position:relative; z-index:2; padding:86px 24px 28px; }
.service-badge {
  position:absolute;
  top:-34px; left:24px;
  width:66px; height:66px;
  border-radius:50%;
  display:grid; place-items:center;
  background:linear-gradient(135deg,var(--blue),var(--blue2));
  border:4px solid rgba(255,255,255,.12);
  font-size:28px;
}
.service-card h3 { margin:0 0 10px; font-size:20px; text-transform:uppercase; line-height:1.16; }
.service-card p { margin:0 0 20px; color:rgba(255,255,255,.78); font-size:15px; }
.learn { color:var(--blue); font-weight:900; text-transform:uppercase; text-decoration:none; font-size:14px; }

.media-panel {
  min-height:430px;
  border-radius:28px;
  position:relative;
  overflow:hidden;
  background:radial-gradient(circle at 50% 45%,rgba(85,220,255,.30),transparent 30%),linear-gradient(135deg,#06182c,#0b4d78);
  box-shadow:var(--shadow);
}
.media-panel img { width:100%; height:100%; object-fit:cover; min-height:430px; opacity:.86; }
.media-panel:before {
  content:"";
  position:absolute;
  inset:30px;
  border:1px solid rgba(255,255,255,.22);
  border-radius:22px;
  z-index:2;
}
.play {
  position:absolute;
  top:50%; left:50%;
  transform:translate(-50%,-50%);
  width:84px; height:84px;
  border-radius:50%;
  display:grid; place-items:center;
  color:white;
  border:2px solid rgba(255,255,255,.65);
  font-size:32px;
  background:rgba(3,20,38,.42);
  box-shadow:0 0 42px rgba(85,220,255,.35);
  z-index:3;
}
.scan {
  position:absolute;
  inset:0;
  background:repeating-linear-gradient(to bottom,rgba(255,255,255,.04) 0,rgba(255,255,255,.04) 1px,transparent 1px,transparent 10px);
  opacity:.55;
  z-index:1;
}
.video-box {
  position:relative;
  border-radius:22px;
  overflow:hidden;
  background:#031426;
  box-shadow:var(--shadow);
  min-height:260px;
}
.video-box video {
  width:100%;
  height:260px;
  object-fit:cover;
  opacity:.86;
}
.video-box .caption {
  position:absolute;
  left:18px; bottom:16px;
  color:white;
  font-weight:900;
  letter-spacing:.1em;
  font-size:12px;
  text-transform:uppercase;
  z-index:3;
}
.gallery-grid {
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:24px;
}
.gallery-item {
  border:none;
  padding:0;
  cursor:pointer;
  border-radius:20px;
  overflow:hidden;
  background:#031426;
  box-shadow:0 14px 40px rgba(3,20,38,.14);
}
.gallery-item img {
  width:100%;
  height:220px;
  object-fit:cover;
}
.gallery-item span {
  display:block;
  padding:16px;
  color:white;
  font-weight:900;
  background:#061d36;
  text-transform:uppercase;
  letter-spacing:.05em;
  text-align:left;
}

.industries {
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:16px;
}
.industry {
  padding:22px;
  border-radius:18px;
  background:rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.13);
}
.industry strong { display:block; margin-bottom:8px; font-size:18px; }
.industry span { color:rgba(255,255,255,.72); font-size:14px; }

input,select,textarea {
  width:100%;
  border:1px solid rgba(3,20,38,.14);
  border-radius:12px;
  padding:14px;
  font-size:15px;
  font-family:inherit;
}
textarea { min-height:130px; resize:vertical; }
.fields { display:grid; gap:14px; }
.footer {
  background:#020f1d;
  color:white;
  padding:42px 0;
}
.footer-grid {
  display:flex;
  justify-content:space-between;
  gap:24px;
  flex-wrap:wrap;
}
.footer p { margin:5px 0; color:rgba(255,255,255,.68); }
.footer a { color:white; text-decoration:none; }

.lightbox {
  position:fixed;
  inset:0;
  background:rgba(0,0,0,.86);
  z-index:200;
  display:none;
  align-items:center;
  justify-content:center;
  padding:24px;
}
.lightbox.open { display:flex; }
.lightbox img {
  max-width:min(1100px,94vw);
  max-height:82vh;
  border-radius:12px;
  box-shadow:0 30px 90px rgba(0,0,0,.5);
}
.lightbox button {
  position:absolute;
  top:24px;
  right:24px;
  background:white;
  border:none;
  border-radius:999px;
  width:42px;
  height:42px;
  font-size:24px;
}

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

@media(max-width:1050px) {
  .brand img { width:230px; }
  .menu {
    position:fixed;
    inset:0;
    background:#031426;
    flex-direction:column;
    justify-content:center;
    font-size:18px;
    transform:translateX(100%);
    transition:.25s;
  }
  body.menu-open .menu { transform:translateX(0); }
  .mobile-toggle { display:inline-flex; position:relative; z-index:60; }
  .hero-grid,.grid2 { grid-template-columns:1fr; }
  .grid3,.grid4,.gallery-grid { grid-template-columns:1fr; }
  .trust-grid { grid-template-columns:repeat(2,1fr); }
  .industries { grid-template-columns:repeat(2,1fr); }
}
@media(max-width:650px) {
  .site-header { padding:10px 0; }
  .brand img { width:190px; }
  .hero { min-height:auto; }
  .hero-grid { padding:105px 0 62px; }
  h1 { font-size:36px; }
  .hero p { font-size:17px; }
  .trust-grid,.industries { grid-template-columns:1fr; }
  .section { padding:66px 0; }
}


/* =========================================================
   V4.1 MOBILE / ALIGNMENT FIX
   Fixes horizontal overflow, oversized logo, mobile menu,
   and hero button/chip wrapping.
   ========================================================= */

html,
body {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

.site-header {
  width: 100%;
}

.nav {
  width: 100%;
}

.brand {
  min-width: 0;
  max-width: calc(100vw - 88px);
  overflow: hidden;
}

.brand img {
  width: clamp(185px, 52vw, 270px);
  max-width: 100%;
  height: auto;
}

/* Replace off-screen transform menu with non-overflowing hidden menu */
@media (max-width:1050px) {
  .mobile-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 70;
    width: 44px;
    height: 38px;
    padding: 0;
    flex: 0 0 44px;
  }

  .menu {
    position: fixed;
    inset: 0;
    width: 100vw;
    max-width: 100vw;
    background: #031426;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-size: 18px;
    transform: none !important;
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    transition: opacity .2s ease, visibility .2s ease;
  }

  body.menu-open .menu {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
  }

  .site-header {
    padding: 10px 0;
  }

  .nav {
    gap: 12px;
  }

  .hero-grid {
    width: 100%;
    grid-template-columns: 1fr;
    padding-top: 120px;
  }

  .hero-media {
    display: none;
  }
}

@media (max-width:650px) {
  .container {
    width: min(100% - 28px, 1180px);
  }

  .brand {
    max-width: calc(100vw - 76px);
  }

  .brand img {
    width: clamp(170px, 58vw, 210px);
  }

  .hero {
    min-height: auto;
  }

  .hero-grid {
    padding-top: 120px;
    padding-bottom: 64px;
    gap: 26px;
  }

  .eyebrow {
    font-size: 11px;
    letter-spacing: .14em;
    line-height: 1.5;
    flex-wrap: wrap;
  }

  .eyebrow:before {
    width: 34px;
  }

  h1 {
    font-size: 34px;
    line-height: 1.05;
    letter-spacing: -.035em;
  }

  .hero p {
    font-size: 17px;
    line-height: 1.6;
  }

  .buttons {
    flex-direction: column;
    align-items: stretch;
  }

  .btn {
    width: 100%;
    text-align: center;
  }

  .chips {
    display: grid;
    gap: 8px;
  }

  .chips span {
    display: block;
    width: 100%;
    text-align: left;
  }
}

@media (max-width:430px) {
  .brand img {
    width: 165px;
  }

  h1 {
    font-size: 31px;
  }

  .hero-grid {
    padding-top: 112px;
  }
}


/* =========================================================
   V4.2 HARD MOBILE FIX / CACHE-BUSTED
   This prevents the logo, menu, hero, and chips from causing
   any horizontal overflow on iPhone/mobile.
   ========================================================= */

*,
*::before,
*::after {
  max-width: 100%;
}

html,
body {
  width: 100% !important;
  max-width: 100% !important;
  overflow-x: hidden !important;
  position: relative;
}

.site-header,
.hero,
.section,
.footer {
  width: 100% !important;
  max-width: 100% !important;
  overflow-x: hidden !important;
}

.container {
  max-width: 1180px !important;
}

/* Desktop logo remains full. */
.brand {
  min-width: 0 !important;
  overflow: hidden !important;
}

.brand-full {
  display: block;
}

.brand-compact {
  display: none;
}

/* Stop hidden mobile menu from creating sideways white space */
@media (max-width: 1050px) {
  .menu {
    display: none !important;
    position: fixed !important;
    inset: 0 !important;
    width: 100% !important;
    max-width: 100% !important;
    height: 100vh !important;
    background: #031426 !important;
    z-index: 60 !important;
    transform: none !important;
    overflow: hidden !important;
  }

  body.menu-open .menu {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 22px !important;
  }

  .mobile-toggle {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 44px !important;
    height: 38px !important;
    padding: 0 !important;
    flex: 0 0 44px !important;
    z-index: 80 !important;
    background: rgba(255,255,255,.95) !important;
    color: #0b2a44 !important;
    border-radius: 999px !important;
  }

  .nav {
    gap: 10px !important;
    width: 100% !important;
  }

  .hero-media {
    display: none !important;
  }

  .hero-grid {
    grid-template-columns: 1fr !important;
  }
}

/* iPhone/mobile header and hero layout */
@media (max-width: 700px) {
  .site-header {
    padding: 10px 0 !important;
  }

  .container {
    width: calc(100% - 28px) !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }

  .brand {
    flex: 1 1 auto !important;
    max-width: calc(100vw - 86px) !important;
    min-width: 0 !important;
  }

  .brand-full {
    display: none !important;
  }

  .brand-compact {
    display: flex !important;
    align-items: center !important;
    gap: 10px !important;
    color: #fff !important;
    text-decoration: none !important;
    min-width: 0 !important;
  }

  .brand-mark {
    width: 42px !important;
    height: 42px !important;
    flex: 0 0 42px !important;
    border-radius: 12px !important;
    background: linear-gradient(135deg, #1593e6, #0b67ad) !important;
    color: #fff !important;
    display: grid !important;
    place-items: center !important;
    font-weight: 900 !important;
    letter-spacing: -1px !important;
    box-shadow: 0 10px 22px rgba(0,0,0,.25) !important;
  }

  .brand-copy {
    min-width: 0 !important;
    line-height: 1 !important;
  }

  .brand-copy strong {
    display: block !important;
    font-size: 18px !important;
    line-height: .95 !important;
    text-transform: uppercase !important;
    letter-spacing: .04em !important;
    white-space: nowrap !important;
  }

  .brand-copy span {
    display: block !important;
    margin-top: 4px !important;
    color: #55dcff !important;
    font-size: 11px !important;
    text-transform: uppercase !important;
    letter-spacing: .24em !important;
    white-space: nowrap !important;
  }

  .hero {
    min-height: auto !important;
  }

  .hero-grid {
    padding-top: 112px !important;
    padding-bottom: 64px !important;
    gap: 22px !important;
    width: 100% !important;
    max-width: 100% !important;
  }

  .eyebrow {
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 9px !important;
    font-size: 10.5px !important;
    line-height: 1.45 !important;
    letter-spacing: .13em !important;
    max-width: 100% !important;
  }

  .eyebrow::before {
    width: 32px !important;
    flex: 0 0 32px !important;
  }

  h1 {
    font-size: clamp(30px, 10vw, 38px) !important;
    line-height: 1.06 !important;
    letter-spacing: -.035em !important;
    max-width: 100% !important;
    overflow-wrap: normal !important;
  }

  .hero p {
    font-size: 17px !important;
    line-height: 1.55 !important;
    max-width: 100% !important;
  }

  .buttons {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 14px !important;
    width: 100% !important;
  }

  .btn {
    width: 100% !important;
    max-width: 100% !important;
    text-align: center !important;
    justify-content: center !important;
    white-space: normal !important;
  }

  .chips {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 8px !important;
    width: 100% !important;
  }

  .chips span {
    display: block !important;
    width: 100% !important;
    max-width: 100% !important;
    overflow-wrap: anywhere !important;
    text-align: left !important;
  }
}

/* Extra small iPhones */
@media (max-width: 390px) {
  .brand-copy strong {
    font-size: 16px !important;
  }

  .brand-copy span {
    font-size: 9.5px !important;
    letter-spacing: .18em !important;
  }

  .brand-mark {
    width: 38px !important;
    height: 38px !important;
    flex-basis: 38px !important;
  }

  h1 {
    font-size: 29px !important;
  }
}


/* =========================================================
   V4.3 CLEAN HERO SERVICE LINE
   Makes the "ROV Inspection • Marine Survey • Asset Documentation"
   line clean, centered, and mobile-safe.
   ========================================================= */

@media (max-width: 700px) {
  .eyebrow {
    width: 100% !important;
    max-width: 100% !important;
    display: block !important;
    text-align: center !important;
    padding: 10px 12px !important;
    margin: 0 0 20px 0 !important;
    border: 1px solid rgba(85, 220, 255, .38) !important;
    border-radius: 999px !important;
    background: rgba(255, 255, 255, .055) !important;
    color: #78e7ff !important;
    font-size: 10.5px !important;
    line-height: 1.45 !important;
    letter-spacing: .10em !important;
    white-space: normal !important;
    overflow-wrap: normal !important;
    word-break: normal !important;
  }

  .eyebrow::before {
    display: none !important;
    content: none !important;
  }
}

@media (max-width: 390px) {
  .eyebrow {
    font-size: 9.8px !important;
    letter-spacing: .08em !important;
    padding: 9px 10px !important;
  }
}


/* =========================================================
   V4.4 MEDIA PANEL FIT FIX
   Prevents inspection graphics from cropping on mobile.
   ========================================================= */

.media-panel {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 18px !important;
  min-height: 430px !important;
}

.media-panel img {
  width: 100% !important;
  height: 100% !important;
  min-height: 0 !important;
  max-height: 390px !important;
  object-fit: contain !important;
  object-position: center center !important;
  opacity: .95 !important;
  border-radius: 18px !important;
}

.media-panel .scan,
.media-panel .play {
  pointer-events: none !important;
}

/* Make the play button smaller so it does not dominate the graphic */
.play {
  width: 68px !important;
  height: 68px !important;
  font-size: 26px !important;
}

/* Mobile-specific media panel sizing */
@media (max-width: 700px) {
  .media-panel {
    min-height: 300px !important;
    padding: 12px !important;
    border-radius: 22px !important;
  }

  .media-panel img {
    max-height: 275px !important;
    object-fit: contain !important;
    border-radius: 16px !important;
  }

  .media-panel::before {
    inset: 18px !important;
    border-radius: 18px !important;
  }

  .play {
    width: 58px !important;
    height: 58px !important;
    font-size: 22px !important;
  }
}

@media (max-width: 390px) {
  .media-panel {
    min-height: 270px !important;
  }

  .media-panel img {
    max-height: 245px !important;
  }
}


/* =========================================================
   V4.5 PROJECT / GALLERY GRAPHIC FIX
   Replaces missing/broken image placeholders with built-in
   inspection-style graphics that do not rely on image files.
   ========================================================= */

.gallery-grid {
  align-items: stretch !important;
}

.gallery-item {
  display: block !important;
  text-decoration: none !important;
  border: none !important;
  width: 100% !important;
  text-align: left !important;
  cursor: pointer !important;
}

.gallery-item img {
  display: none !important;
}

.gallery-graphic {
  height: 235px;
  width: 100%;
  position: relative;
  overflow: hidden;
  border-radius: 20px 20px 0 0;
  background:
    radial-gradient(circle at 70% 34%, rgba(85,220,255,.35), transparent 24%),
    linear-gradient(135deg, #06182c, #0b4d78);
}

.gallery-graphic::before {
  content: "";
  position: absolute;
  inset: 22px;
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 18px;
}

.gallery-graphic::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(to bottom, rgba(255,255,255,.04) 0, rgba(255,255,255,.04) 1px, transparent 1px, transparent 11px),
    linear-gradient(90deg, rgba(85,220,255,.18), transparent 45%);
  opacity: .8;
}

.graphic-rov {
  position: absolute;
  width: 190px;
  height: 88px;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  border-radius: 18px;
  background: linear-gradient(135deg, #020b14, #0a1a2b);
  border: 2px solid rgba(255,255,255,.16);
  z-index: 2;
}

.graphic-rov::before,
.graphic-rov::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 58px;
  height: 58px;
  transform: translateY(-50%);
  border-radius: 50%;
  border: 9px solid #030b13;
  background: #103a5e;
}

.graphic-rov::before { left: -38px; }
.graphic-rov::after { right: -38px; }

.graphic-lens {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 54px;
  height: 54px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: #02070d;
  border: 6px solid #17466c;
  z-index: 3;
}

.graphic-lens::after {
  content: "";
  position: absolute;
  inset: 14px;
  border-radius: 50%;
  background: #1593e6;
  box-shadow: 0 0 22px #55dcff;
}

.graphic-beam {
  position: absolute;
  right: 54%;
  top: 50%;
  width: 260px;
  height: 110px;
  transform: translateY(-50%);
  background: linear-gradient(90deg, rgba(85,220,255,.28), transparent);
  clip-path: polygon(0 34%, 100% 0, 100% 100%, 0 66%);
  z-index: 1;
}

.graphic-piling {
  position: absolute;
  left: 23%;
  top: 20%;
  bottom: 16%;
  width: 34px;
  border-radius: 999px;
  background: linear-gradient(#7d6c58, #2e4455);
  box-shadow: 70px 0 0 #344c61, 140px 0 0 #263d50;
  z-index: 2;
}

.graphic-waves {
  position: absolute;
  left: 12%;
  right: 12%;
  bottom: 28%;
  height: 48px;
  background:
    radial-gradient(ellipse at 12% 50%, rgba(85,220,255,.5) 0 20%, transparent 22%),
    radial-gradient(ellipse at 35% 50%, rgba(85,220,255,.45) 0 20%, transparent 22%),
    radial-gradient(ellipse at 58% 50%, rgba(85,220,255,.4) 0 20%, transparent 22%),
    radial-gradient(ellipse at 82% 50%, rgba(85,220,255,.35) 0 20%, transparent 22%);
  z-index: 3;
}

.graphic-target {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 118px;
  height: 118px;
  transform: translate(-50%, -50%);
  border: 2px solid rgba(85,220,255,.75);
  border-radius: 50%;
  box-shadow:
    0 0 0 28px rgba(85,220,255,.08),
    0 0 0 56px rgba(85,220,255,.045);
  z-index: 2;
}

.graphic-target::before,
.graphic-target::after {
  content: "";
  position: absolute;
  background: rgba(85,220,255,.75);
}

.graphic-target::before {
  width: 2px;
  height: 150px;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.graphic-target::after {
  height: 2px;
  width: 150px;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.gallery-item span {
  min-height: 66px;
  display: flex !important;
  align-items: center;
}

/* Mobile adjustments */
@media (max-width: 700px) {
  .gallery-graphic {
    height: 225px;
  }

  .graphic-rov {
    width: 155px;
    height: 76px;
  }

  .graphic-rov::before,
  .graphic-rov::after {
    width: 48px;
    height: 48px;
  }

  .graphic-rov::before { left: -30px; }
  .graphic-rov::after { right: -30px; }

  .graphic-beam {
    width: 220px;
  }
}


/* =========================================================
   V4.6 ORIGINAL LOGO RESTORE
   Uses the original DepthPoint Marine logo on desktop and mobile
   while keeping mobile layout contained.
   ========================================================= */

.brand {
  overflow: visible !important;
}

.brand img,
.brand-full {
  display: block !important;
  width: clamp(260px, 30vw, 420px) !important;
  max-width: 100% !important;
  height: auto !important;
  object-fit: contain !important;
}

/* Hide the temporary DP compact logo */
.brand-compact {
  display: none !important;
}

@media (max-width: 1050px) {
  .brand {
    max-width: calc(100vw - 92px) !important;
    overflow: hidden !important;
  }

  .brand img,
  .brand-full {
    display: block !important;
    width: min(310px, calc(100vw - 100px)) !important;
    max-width: calc(100vw - 100px) !important;
    height: auto !important;
  }

  .brand-compact {
    display: none !important;
  }
}

@media (max-width: 700px) {
  .site-header {
    padding: 12px 0 !important;
  }

  .brand {
    max-width: calc(100vw - 86px) !important;
    overflow: hidden !important;
  }

  .brand img,
  .brand-full {
    width: min(285px, calc(100vw - 94px)) !important;
    max-width: calc(100vw - 94px) !important;
  }

  .hero-grid {
    padding-top: 126px !important;
  }
}

@media (max-width: 390px) {
  .brand img,
  .brand-full {
    width: min(245px, calc(100vw - 88px)) !important;
  }

  .hero-grid {
    padding-top: 118px !important;
  }
}


/* =========================================================
   V4.8 CRISP LOGO + HEADER CLEANUP
   Restores a sharp vector logo and cleans up the mobile header.
   ========================================================= */

.brand {
  display:flex !important;
  align-items:center !important;
  min-width:0 !important;
  max-width:calc(100% - 72px) !important;
  overflow:visible !important;
}

.brand img,
.brand-full {
  display:block !important;
  width:clamp(250px, 30vw, 360px) !important;
  max-width:100% !important;
  height:auto !important;
  object-fit:contain !important;
  image-rendering:auto !important;
  filter:none !important;
}

.brand-compact {
  display:none !important;
}

.site-header {
  padding:12px 0 !important;
}

.nav {
  align-items:center !important;
}

@media (max-width:1050px) {
  .brand {
    max-width:calc(100vw - 84px) !important;
    overflow:hidden !important;
  }

  .brand img,
  .brand-full {
    width:min(300px, calc(100vw - 96px)) !important;
    max-width:calc(100vw - 96px) !important;
  }
}

@media (max-width:700px) {
  .site-header {
    padding:10px 0 8px !important;
    background:linear-gradient(to bottom,rgba(3,20,38,.94),rgba(3,20,38,.18)) !important;
  }

  .container {
    width:calc(100% - 24px) !important;
  }

  .nav {
    gap:10px !important;
  }

  .brand {
    max-width:calc(100vw - 78px) !important;
  }

  .brand img,
  .brand-full {
    width:min(270px, calc(100vw - 86px)) !important;
    max-width:calc(100vw - 86px) !important;
  }

  .mobile-toggle {
    width:42px !important;
    height:42px !important;
    flex:0 0 42px !important;
    border-radius:999px !important;
  }

  .hero-grid {
    padding-top:108px !important;
  }
}

@media (max-width:430px) {
  .brand img,
  .brand-full {
    width:min(250px, calc(100vw - 84px)) !important;
    max-width:calc(100vw - 84px) !important;
  }

  .hero-grid {
    padding-top:102px !important;
  }
}


/* =========================================================
   V4.9 LOGO READABILITY FIX
   Compact, crisp SVG logo with ROV icon in the DP mark.
   ========================================================= */
.brand img,
.brand-full {
  width: clamp(240px, 28vw, 350px) !important;
  max-width: 100% !important;
  height: auto !important;
}

@media (max-width: 1050px) {
  .brand {
    max-width: calc(100vw - 86px) !important;
  }
  .brand img,
  .brand-full {
    width: min(280px, calc(100vw - 92px)) !important;
    max-width: calc(100vw - 92px) !important;
  }
}

@media (max-width: 700px) {
  .site-header {
    padding: 10px 0 6px !important;
  }
  .brand {
    max-width: calc(100vw - 82px) !important;
  }
  .brand img,
  .brand-full {
    width: min(250px, calc(100vw - 88px)) !important;
    max-width: calc(100vw - 88px) !important;
  }
  .hero-grid {
    padding-top: 98px !important;
  }
}

@media (max-width: 430px) {
  .brand img,
  .brand-full {
    width: min(235px, calc(100vw - 84px)) !important;
    max-width: calc(100vw - 84px) !important;
  }
  .hero-grid {
    padding-top: 94px !important;
  }
}


/* =========================================================
   V5.1 MOBILE LOGO ONLY
   Desktop remains unchanged. Mobile uses a separate clean logo
   so the full desktop logo no longer cuts off or scales poorly.
   ========================================================= */

.mobile-brand-logo {
  display: none;
}

@media (max-width: 700px) {
  .brand img,
  .brand-full {
    display: none !important;
  }

  .mobile-brand-logo {
    display: block !important;
    width: min(285px, calc(100vw - 88px)) !important;
    max-width: calc(100vw - 88px) !important;
    height: auto !important;
  }

  .mobile-brand-logo svg {
    display: block !important;
    width: 100% !important;
    height: auto !important;
    overflow: visible !important;
  }

  .brand {
    max-width: calc(100vw - 86px) !important;
    overflow: visible !important;
  }

  .site-header {
    padding: 10px 0 8px !important;
  }

  .hero-grid {
    padding-top: 108px !important;
  }
}

@media (max-width: 390px) {
  .mobile-brand-logo {
    width: min(258px, calc(100vw - 84px)) !important;
    max-width: calc(100vw - 84px) !important;
  }

  .hero-grid {
    padding-top: 102px !important;
  }
}


/* V5.5 launch cleanup: Projects removed from navigation until real project media is ready. */


/* =========================================================
   V5.7 DESKTOP LOGO + DESKTOP HERO LINE FIX
   - Desktop logo now matches refined DP/ROV/sonar alignment.
   - Desktop hero service line stays on one clean line.
   ========================================================= */

@media (min-width: 701px) {
  .brand img,
  .brand-full {
    display: block !important;
    width: clamp(270px, 28vw, 390px) !important;
    max-width: 390px !important;
    height: auto !important;
    object-fit: contain !important;
  }

  .mobile-brand-logo {
    display: none !important;
  }

  .eyebrow {
    display: inline-flex !important;
    flex-wrap: nowrap !important;
    white-space: nowrap !important;
    width: auto !important;
    max-width: none !important;
    letter-spacing: .13em !important;
    font-size: 12.5px !important;
  }

  .eyebrow::before {
    flex: 0 0 44px !important;
  }
}

@media (min-width: 701px) and (max-width: 980px) {
  .eyebrow {
    font-size: 11px !important;
    letter-spacing: .09em !important;
  }
}


/* =========================================================
   V6.2 STOCK MEDIA LAUNCH POLISH
   Stock visuals are used as professional marine atmosphere.
   Replace these URLs with DepthPoint's real media after launch.
   ========================================================= */

:root {
  --stock-underwater-light: url('https://images.pexels.com/photos/8935842/pexels-photo-8935842.jpeg?auto=compress&cs=tinysrgb&w=1800');
  --stock-underwater-rocks: url('https://images.pexels.com/photos/10519079/pexels-photo-10519079.jpeg?auto=compress&cs=tinysrgb&w=1600');
  --stock-underwater-riverbed: url('https://images.pexels.com/photos/28858818/pexels-photo-28858818.jpeg?auto=compress&cs=tinysrgb&w=1600');
  --stock-marina-docks: url('https://images.pexels.com/photos/20665003/pexels-photo-20665003.jpeg?auto=compress&cs=tinysrgb&w=1800');
  --stock-harbor-boats: url('https://images.pexels.com/photos/14997774/pexels-photo-14997774.jpeg?auto=compress&cs=tinysrgb&w=1600');
  --stock-pier-harbor: url('https://images.pexels.com/photos/31225317/pexels-photo-31225317.jpeg?auto=compress&cs=tinysrgb&w=1800');
  --stock-boat-hull: url('https://images.pexels.com/photos/27744483/pexels-photo-27744483.jpeg?auto=compress&cs=tinysrgb&w=1400');
  --stock-wood-pier: url('https://images.pexels.com/photos/27540553/pexels-photo-27540553.jpeg?auto=compress&cs=tinysrgb&w=1600');
}

.hero {
  background:
    linear-gradient(90deg,rgba(3,20,38,.99) 0%,rgba(3,20,38,.93) 39%,rgba(3,20,38,.58) 72%,rgba(3,20,38,.88) 100%),
    radial-gradient(circle at 74% 44%,rgba(85,220,255,.28),transparent 24%),
    var(--stock-underwater-light) center/cover no-repeat,
    linear-gradient(135deg,#031426,#082443 48%,#0b5f9e) !important;
}

.hero.compact {
  background:
    linear-gradient(90deg,rgba(3,20,38,.98) 0%,rgba(3,20,38,.90) 44%,rgba(3,20,38,.56) 100%),
    var(--stock-pier-harbor) center/cover no-repeat,
    linear-gradient(135deg,#031426,#082443 48%,#0b5f9e) !important;
}

body:has(.fields) .hero.compact {
  background:
    linear-gradient(90deg,rgba(3,20,38,.98) 0%,rgba(3,20,38,.90) 44%,rgba(3,20,38,.56) 100%),
    var(--stock-marina-docks) center/cover no-repeat,
    linear-gradient(135deg,#031426,#082443 48%,#0b5f9e) !important;
}

.service-card:before {
  background:
    linear-gradient(to bottom,rgba(3,20,38,.08),rgba(3,20,38,.96)),
    var(--stock-underwater-rocks) center/cover no-repeat !important;
}
.service-card:nth-child(2):before {
  background:
    linear-gradient(to bottom,rgba(3,20,38,.08),rgba(3,20,38,.96)),
    var(--stock-underwater-riverbed) center/cover no-repeat !important;
}
.service-card:nth-child(3):before {
  background:
    linear-gradient(to bottom,rgba(3,20,38,.08),rgba(3,20,38,.96)),
    var(--stock-boat-hull) center/cover no-repeat !important;
}
.service-card:nth-child(4):before {
  background:
    linear-gradient(to bottom,rgba(3,20,38,.08),rgba(3,20,38,.96)),
    var(--stock-marina-docks) center/cover no-repeat !important;
}
.service-card:nth-child(5):before {
  background:
    linear-gradient(to bottom,rgba(3,20,38,.08),rgba(3,20,38,.96)),
    var(--stock-pier-harbor) center/cover no-repeat !important;
}
.service-card:nth-child(6):before {
  background:
    linear-gradient(to bottom,rgba(3,20,38,.08),rgba(3,20,38,.96)),
    var(--stock-wood-pier) center/cover no-repeat !important;
}

.stock-strip {
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:16px;
  margin-top:30px;
}
.stock-photo {
  min-height:260px;
  border-radius:24px;
  overflow:hidden;
  position:relative;
  background:#031426;
  box-shadow:0 18px 44px rgba(3,20,38,.14);
}
.stock-photo img {
  width:100%;
  height:100%;
  min-height:260px;
  object-fit:cover;
  display:block;
  filter:saturate(.94) contrast(1.03);
  opacity:.92;
  transition:transform .35s ease;
}
.stock-photo:hover img { transform:scale(1.035); }
.stock-photo:after {
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(to bottom,rgba(3,20,38,.06),rgba(3,20,38,.85));
}
.stock-photo span {
  position:absolute;
  left:18px;
  right:18px;
  bottom:16px;
  z-index:2;
  color:white;
  font-size:12px;
  font-weight:900;
  letter-spacing:.08em;
  text-transform:uppercase;
}
.media-panel.stock img {
  filter:saturate(.92) contrast(1.04);
  opacity:.90;
}
.media-panel.stock:after {
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(to bottom,rgba(3,20,38,.05),rgba(3,20,38,.48));
  z-index:1;
  pointer-events:none;
}
.media-panel.stock .scan,
.media-panel.stock .play {
  z-index:4;
}

@media (max-width: 900px) {
  .stock-strip {
    grid-template-columns:1fr 1fr;
  }
}

@media (max-width: 560px) {
  .stock-strip {
    grid-template-columns:1fr;
  }
  .stock-photo,
  .stock-photo img {
    min-height:230px;
  }
}


/* V6.3: Removed Equipment page launch media section until real DepthPoint photos/videos are ready. */


/* =========================================================
   V6.4 TECHNICAL ROV HERO UPDATE
   Replaces the simple homepage ROV clip-art with a more
   technical / realistic ROV illustration.
   ========================================================= */

.technical-rov-card {
  display:grid;
  place-items:center;
  padding:0;
  overflow:hidden;
  background:
    radial-gradient(circle at 66% 34%, rgba(114,231,255,.18), transparent 23%),
    linear-gradient(135deg,#06182c,#0a345d) !important;
}

.technical-rov-card:before {
  inset:22px !important;
  border:2px solid rgba(255,255,255,.12) !important;
  border-radius:26px !important;
}

.technical-rov-card img {
  width:100%;
  height:100%;
  display:block;
  object-fit:cover;
  filter: drop-shadow(0 12px 26px rgba(0,0,0,.28));
}

@media (max-width: 900px) {
  .technical-rov-card {
    height:320px;
  }
  .technical-rov-card img {
    object-position:center;
  }
}

@media (max-width: 640px) {
  .hero-media {
    min-height:300px;
  }
  .technical-rov-card {
    width:min(100%,520px);
    height:280px;
    transform:none !important;
  }
}


/* =========================================================
   V6.9 FIXED PROFESSIONAL QUOTE INTAKE PAGE
   ========================================================= */

.quote-intake-section {
  background:
    linear-gradient(135deg, rgba(241,248,252,.96), rgba(255,255,255,.92)),
    radial-gradient(circle at 86% 18%, rgba(21,147,230,.10), transparent 28%);
}

.quote-intake-layout {
  display:grid;
  grid-template-columns:minmax(0,1fr) 380px;
  gap:24px;
  align-items:start;
}

.quote-main-column {
  min-width:0;
}

.quote-intake-card,
.quote-side-panel {
  background:white;
  border:1px solid rgba(3,20,38,.08);
  border-radius:24px;
  box-shadow:0 16px 44px rgba(3,20,38,.07);
}

.quote-intake-card {
  padding:28px;
  position:relative;
  margin-bottom:20px;
}

.quote-intake-card h3,
.quote-side-panel h3 {
  margin:0 0 18px;
  color:var(--navy);
  font-size:24px;
}

.quote-step {
  position:absolute;
  right:22px;
  top:22px;
  width:44px;
  height:44px;
  border-radius:14px;
  display:grid;
  place-items:center;
  background:linear-gradient(135deg,var(--blue),var(--blue2));
  color:white;
  font-weight:900;
  letter-spacing:.05em;
}

.quote-fields {
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:16px;
}

.field-group {
  display:flex;
  flex-direction:column;
  gap:7px;
}

.field-group.full {
  grid-column:1 / -1;
}

.field-group label {
  color:var(--navy);
  font-size:12px;
  font-weight:900;
  letter-spacing:.08em;
  text-transform:uppercase;
}

.quote-fields input,
.quote-fields select,
.quote-fields textarea,
.file-note {
  width:100%;
  border:1px solid rgba(3,20,38,.14);
  border-radius:13px;
  padding:14px 14px;
  font:inherit;
  background:#f9fcfe;
  color:var(--navy);
  outline:none;
}

.quote-fields input:focus,
.quote-fields select:focus,
.quote-fields textarea:focus {
  border-color:rgba(21,147,230,.62);
  box-shadow:0 0 0 4px rgba(21,147,230,.10);
  background:white;
}

.quote-fields textarea {
  min-height:118px;
  resize:vertical;
}

.quote-side-panel {
  padding:0;
  overflow:hidden;
  position:sticky;
  top:94px;
}

.quote-side-block {
  padding:26px;
  border-bottom:1px solid rgba(3,20,38,.08);
}

.quote-side-block p {
  color:var(--muted);
}

.file-note {
  display:flex;
  align-items:center;
  gap:12px;
  cursor:pointer;
  margin:14px 0 10px;
  border-style:dashed;
  background:linear-gradient(135deg,#f7fbff,#eef8ff);
}

.file-note input {
  display:none;
}

.file-note span {
  color:var(--navy);
  font-weight:800;
}

.quote-side-block small {
  color:var(--muted);
  line-height:1.5;
  display:block;
}

.quote-submit {
  width:calc(100% - 52px);
  margin:26px 26px 12px;
}

.quote-disclaimer {
  margin:0 26px 26px;
  color:var(--muted);
  font-size:14px;
  line-height:1.55;
}

.contact-block a {
  color:var(--blue);
  font-weight:800;
}

@media (max-width: 980px) {
  .quote-intake-layout {
    grid-template-columns:1fr;
  }

  .quote-side-panel {
    position:relative;
    top:auto;
  }
}

@media (max-width: 640px) {
  .quote-intake-card {
    padding:22px;
  }

  .quote-fields {
    grid-template-columns:1fr;
  }

  .quote-step {
    position:static;
    margin-bottom:14px;
  }

  .quote-submit {
    width:calc(100% - 40px);
    margin:22px 20px 12px;
  }

  .quote-disclaimer {
    margin:0 20px 22px;
  }
}


/* =========================================================
   V7.0 QUOTE PAGE NO-BLANK SAFETY FIX
   Quote page no longer depends on reveal animation to display.
   ========================================================= */

.quote-intake-section .reveal,
.quote-intake-section,
.quote-intake-section *,
.quote-heading,
.quote-intake-card,
.quote-side-panel {
  opacity: 1 !important;
  visibility: visible !important;
}

.quote-intake-section .reveal,
.quote-intake-section .container,
.quote-intake-layout,
.quote-main-column,
.quote-intake-card,
.quote-side-panel {
  transform: none !important;
}

.quote-intake-section {
  min-height: 600px;
}


/* =========================================================
   V7.1 TRUST / PROOF SECTIONS
   ========================================================= */

.proof-section {
  background: linear-gradient(180deg,#ffffff 0%,#f6fbff 100%);
}

.proof-grid {
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:18px;
}

.proof-card {
  background:white;
  border:1px solid rgba(3,20,38,.08);
  border-radius:24px;
  padding:28px;
  min-height:250px;
  position:relative;
  overflow:hidden;
  box-shadow:0 14px 38px rgba(3,20,38,.06);
}

.proof-card:before {
  content:"";
  position:absolute;
  inset:0;
  background:radial-gradient(circle at 82% 18%,rgba(21,147,230,.13),transparent 30%);
  pointer-events:none;
}

.proof-number {
  width:48px;
  height:48px;
  border-radius:16px;
  display:grid;
  place-items:center;
  color:white;
  font-weight:900;
  background:linear-gradient(135deg,var(--blue),var(--blue2));
  margin-bottom:22px;
  box-shadow:0 14px 28px rgba(21,147,230,.22);
}

.proof-card h3 {
  margin:0 0 12px;
  color:var(--navy);
  font-size:22px;
}

.proof-card p {
  margin:0;
  color:var(--muted);
  line-height:1.6;
}

.workflow-track {
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:0;
  background:white;
  border:1px solid rgba(3,20,38,.08);
  border-radius:28px;
  overflow:hidden;
  box-shadow:0 16px 44px rgba(3,20,38,.07);
}

.workflow-step {
  padding:34px 28px;
  border-right:1px solid rgba(3,20,38,.08);
  position:relative;
}

.workflow-step:last-child {
  border-right:none;
}

.workflow-step span {
  display:inline-flex;
  width:42px;
  height:42px;
  border-radius:50%;
  align-items:center;
  justify-content:center;
  background:#eaf7ff;
  color:var(--blue);
  font-weight:900;
  margin-bottom:18px;
}

.workflow-step h3 {
  margin:0 0 10px;
  color:var(--navy);
  font-size:21px;
}

.workflow-step p {
  margin:0;
  color:var(--muted);
  line-height:1.6;
}

.why-list {
  background:rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.12);
  border-radius:28px;
  padding:12px;
  box-shadow:0 24px 60px rgba(0,0,0,.20);
}

.why-list div {
  padding:22px;
  border-bottom:1px solid rgba(255,255,255,.10);
}

.why-list div:last-child {
  border-bottom:none;
}

.why-list strong {
  display:block;
  color:white;
  font-size:18px;
  margin-bottom:7px;
}

.why-list span {
  display:block;
  color:rgba(255,255,255,.72);
  line-height:1.55;
}

.deliverables-grid {
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:18px;
}

.deliverable {
  background:white;
  border:1px solid rgba(3,20,38,.08);
  border-radius:20px;
  padding:24px;
  box-shadow:0 12px 32px rgba(3,20,38,.05);
}

.deliverable strong {
  display:block;
  color:var(--navy);
  font-size:18px;
  margin-bottom:8px;
}

.deliverable span {
  display:block;
  color:var(--muted);
  line-height:1.55;
}

@media (max-width: 1050px) {
  .proof-grid,
  .workflow-track {
    grid-template-columns:repeat(2,1fr);
  }

  .workflow-step:nth-child(2) {
    border-right:none;
  }

  .workflow-step:nth-child(1),
  .workflow-step:nth-child(2) {
    border-bottom:1px solid rgba(3,20,38,.08);
  }

  .deliverables-grid {
    grid-template-columns:repeat(2,1fr);
  }
}

@media (max-width: 680px) {
  .proof-grid,
  .workflow-track,
  .deliverables-grid {
    grid-template-columns:1fr;
  }

  .workflow-step {
    border-right:none;
    border-bottom:1px solid rgba(3,20,38,.08);
  }

  .workflow-step:last-child {
    border-bottom:none;
  }

  .proof-card {
    min-height:auto;
  }
}


/* V7.2: Removed temporary Marine Environments paragraph from homepage. */


/* V7.3 SEO / launch polish: favicon, social preview, sitemap, robots, and schema files added. */
