:root {
  --ink: #0a2630;
  --ink-soft: #294b55;
  --muted: #64777e;
  --line: #d8e5e8;
  --surface: #ffffff;
  --surface-soft: #f2f8f9;
  --brand: #007286;
  --brand-2: #0a8094;
  --brand-dark: #053742;
  --brand-deep: #062b34;
  --brand-soft: #e5f3f5;
  --accent: #b8d9df;
  --cream: #f7fbfb;
  --radius: 24px;
  --shadow: 0 24px 80px rgba(5, 55, 66, .16);
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  color: var(--ink);
  background: var(--surface);
  line-height: 1.6;
  text-rendering: geometricPrecision;
}
a { color: inherit; text-decoration: none; }
img, svg { display: block; max-width: 100%; }
.container { width: min(var(--max), calc(100% - 40px)); margin-inline: auto; }
.section { padding: 104px 0; }
.section-muted { background: var(--surface-soft); }
.skip-link {
  position: absolute;
  top: -100px;
  left: 16px;
  z-index: 1000;
  background: #fff;
  color: var(--ink);
  padding: 10px 14px;
  border-radius: 10px;
}
.skip-link:focus { top: 16px; }
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,.88);
  border-bottom: 1px solid rgba(216,229,232,.8);
  backdrop-filter: blur(18px);
}
.header-inner {
  min-height: 88px;
  display: flex;
  align-items: center;
  gap: 24px;
}
.brand {
  display: inline-flex;
  align-items: center;
  width: 158px;
  min-width: 158px;
}
.brand img {
  width: 158px;
  height: auto;
}
.nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  margin-left: auto;
}
.nav a {
  padding: 10px 12px;
  border-radius: 999px;
  color: var(--ink-soft);
  font-size: .94rem;
  font-weight: 700;
}
.nav a:hover {
  background: var(--brand-soft);
  color: var(--brand);
}
.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 11px 17px;
  border-radius: 999px;
  background: var(--brand);
  color: #fff;
  font-weight: 800;
  font-size: .92rem;
  box-shadow: 0 14px 34px rgba(0, 114, 134, .22);
}
.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
  margin-left: auto;
}
.menu-toggle span:not(.sr-only) {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--ink);
  margin: 5px auto;
  border-radius: 2px;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 128px 0 94px;
  color: #fff;
  background: var(--brand-deep);
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 82% 20%, rgba(184,217,223,.24), transparent 30%),
    radial-gradient(circle at 18% 14%, rgba(10,128,148,.42), transparent 36%),
    linear-gradient(135deg, #062b34 0%, #074451 52%, #062b34 100%);
}
.hero-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .18;
  background-image:
    linear-gradient(rgba(255,255,255,.12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.12) 1px, transparent 1px);
  background-size: 46px 46px;
  mask-image: radial-gradient(circle at 50% 35%, #000 0, transparent 70%);
}
.hero-bg::after {
  content: "";
  position: absolute;
  width: min(54vw, 650px);
  aspect-ratio: 1;
  border: 18px solid rgba(255,255,255,.08);
  border-left-color: transparent;
  border-bottom-color: rgba(255,255,255,.12);
  border-radius: 50%;
  right: -170px;
  top: 80px;
}
.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.1fr .74fr;
  gap: 58px;
  align-items: center;
}
.eyebrow {
  color: var(--brand);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .14em;
  font-size: .76rem;
  margin-bottom: 14px;
}
.eyebrow.light {
  color: var(--accent);
}
.hero .eyebrow {
  color: var(--accent);
}
h1, h2, h3, p { margin-top: 0; }
h1 {
  font-size: clamp(2.1rem, 4.2vw, 4.0rem);
  line-height: .96;
  letter-spacing: -.075em;
  margin-bottom: 26px;
  max-width: 920px;
}
h2 {
  font-size: clamp(2rem, 3vw, 3.35rem);
  line-height: 1.05;
  letter-spacing: -.055em;
  margin-bottom: 18px;
}
h3 {
  font-size: 1.28rem;
  line-height: 1.2;
  letter-spacing: -.03em;
  margin-bottom: 10px;
}
.lead {
  font-size: clamp(1.08rem, 2vw, 1.36rem);
  color: rgba(255,255,255,.80);
  max-width: 720px;
}
.hero-actions, .online-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.lead-actions {
  max-width: 860px;
}
.lead-actions .button {
  min-width: 190px;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 13px 20px;
  border-radius: 999px;
  font-weight: 900;
  border: 1px solid transparent;
  cursor: pointer;
  font-family: inherit;
  font-size: .96rem;
}
.button-primary {
  background: var(--brand);
  color: #fff;
  box-shadow: 0 18px 40px rgba(0, 114, 134, .28);
}
.button-primary:hover { background: #058298; }
.button-secondary {
  color: #fff;
  border-color: rgba(255,255,255,.30);
  background: rgba(255,255,255,.08);
}
.button-secondary:hover { background: rgba(255,255,255,.14); }
.button-secondary.light {
  color: var(--ink);
  border-color: rgba(255,255,255,.5);
  background: #fff;
}
.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
  color: rgba(255,255,255,.82);
}
.trust-row span {
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(255,255,255,.07);
  border-radius: 999px;
  padding: 7px 12px;
  font-size: .9rem;
  font-weight: 700;
}
.hero-card {
  display: grid;
  gap: 18px;
}
.logo-panel {
  background: #fff;
  border-radius: 36px;
  padding: 28px;
  box-shadow: 0 30px 90px rgba(0,0,0,.22);
  border: 1px solid rgba(255,255,255,.18);
}
.logo-panel img {
  width: min(100%, 380px);
  margin-inline: auto;
}
.summary-card {
  border: 1px solid rgba(255,255,255,.16);
  background: rgba(255,255,255,.10);
  border-radius: 28px;
  padding: 26px;
  backdrop-filter: blur(18px);
}
.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: rgba(255,255,255,.86);
  background: rgba(255,255,255,.12);
  border-radius: 999px;
  padding: 7px 12px;
  font-weight: 800;
  font-size: .84rem;
  margin-bottom: 20px;
}
.status-pill span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 6px rgba(184,217,223,.16);
}
.summary-card h2 {
  font-size: 1.65rem;
  letter-spacing: -.05em;
}
.summary-card p {
  color: rgba(255,255,255,.78);
  margin-bottom: 0;
}

.intro-strip {
  background: #f6fbfb;
  border-bottom: 1px solid var(--line);
}
.intro-grid {
  display: grid;
  grid-template-columns: .9fr 1fr;
  gap: 24px;
  padding: 26px 0;
  align-items: center;
}
.intro-grid p { margin: 0; color: var(--ink-soft); }
.intro-grid strong { color: var(--brand); }

.section-heading {
  max-width: 850px;
  margin-bottom: 40px;
}
.section-heading p,
.split-grid p,
.brand-panel p,
.online-grid p,
.contact-section p {
  color: var(--muted);
  font-size: 1.05rem;
}
.section-heading.compact { max-width: 780px; }

.card-grid { display: grid; gap: 18px; }
.card-grid.three { grid-template-columns: repeat(3, 1fr); }
.service-card, .plan-card, .contact-form, .contact-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 10px 34px rgba(5,55,66,.05);
}
.service-card {
  padding: 26px;
  min-height: 235px;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.service-card:hover {
  transform: translateY(-4px);
  border-color: rgba(0,114,134,.32);
  box-shadow: 0 22px 54px rgba(5,55,66,.12);
}
.icon {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  margin-bottom: 20px;
  font-weight: 950;
  color: var(--brand);
  background: var(--brand-soft);
}
.service-card p, .plan-card p { color: var(--muted); margin-bottom: 0; }

.split-grid {
  display: grid;
  grid-template-columns: .86fr 1fr;
  gap: 70px;
  align-items: center;
}
.check-list {
  list-style: none;
  padding: 0;
  margin: 28px 0 0;
  display: grid;
  gap: 12px;
}
.check-list li {
  position: relative;
  padding-left: 32px;
  color: var(--ink-soft);
  font-weight: 700;
}
.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 2px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--brand);
}
.check-list li::after {
  content: "";
  position: absolute;
  left: 7px;
  top: 7px;
  width: 6px;
  height: 10px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}
.visual-panel {
  position: relative;
  min-height: 420px;
  border-radius: 34px;
  overflow: hidden;
  background:
    radial-gradient(circle at 20% 25%, rgba(184,217,223,.26), transparent 34%),
    linear-gradient(135deg, var(--brand-deep), var(--brand));
  box-shadow: var(--shadow);
}
.visual-panel::before {
  content: "";
  position: absolute;
  inset: 28px;
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 26px;
}
.central-node {
  position: absolute;
  inset: 50% auto auto 50%;
  transform: translate(-50%, -50%);
  width: 220px;
  height: 220px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 28px;
  background: rgba(255,255,255,.14);
  border: 1px solid rgba(255,255,255,.20);
  color: #fff;
  backdrop-filter: blur(18px);
}
.central-node svg { width: 62px; fill: var(--accent); margin-bottom: 6px; }
.central-node strong, .central-node span { display: block; }
.central-node span { color: rgba(255,255,255,.72); font-size: .84rem; }
.camera-card {
  position: absolute;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: #fff;
  padding: 12px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,.14);
  border: 1px solid rgba(255,255,255,.18);
  font-weight: 800;
  box-shadow: 0 18px 50px rgba(0,0,0,.18);
}
.camera-card span { width: 12px; height: 12px; border-radius: 50%; background: var(--accent); }
.camera-card.one { left: 40px; top: 54px; }
.camera-card.two { right: 44px; top: 92px; }
.camera-card.three { left: 50px; bottom: 62px; }
.floating { animation: float 5s ease-in-out infinite; }
.floating.two { animation-delay: .8s; }
.floating.three { animation-delay: 1.6s; }
@keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }

.feature-section {
  background: linear-gradient(135deg, var(--brand-deep), #064c5b);
  color: #fff;
}
.feature-grid {
  display: grid;
  grid-template-columns: .8fr 1fr;
  gap: 50px;
  align-items: start;
}
.feature-grid p { color: rgba(255,255,255,.76); font-size: 1.05rem; }
.process-list { display: grid; gap: 16px; }
.process-list div {
  display: grid;
  grid-template-columns: 52px 1fr;
  column-gap: 16px;
  align-items: start;
  padding: 22px;
  border-radius: 24px;
  background: rgba(255,255,255,.09);
  border: 1px solid rgba(255,255,255,.13);
}
.process-list span {
  grid-row: span 2;
  width: 52px;
  height: 52px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: var(--accent);
  color: var(--brand-deep);
  font-weight: 950;
}
.process-list h3 { margin-bottom: 4px; }
.process-list p { margin: 0; color: rgba(255,255,255,.70); }

.plans-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}
.plan-card {
  position: relative;
  padding: 30px;
  min-height: 290px;
  display: flex;
  flex-direction: column;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.plan-card:hover {
  transform: translateY(-4px);
  border-color: rgba(0,114,134,.32);
  box-shadow: 0 22px 54px rgba(5,55,66,.12);
}

.plan-media {
  min-height: 76px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 10px;
}

.plan-card .tag {
  display: inline-block;
  width: max-content;
  background: var(--brand-soft);
  color: var(--brand);
  border-radius: 999px;
  padding: 6px 10px;
  font-weight: 900;
  font-size: .78rem;
}
.rental-logo {
  width: 148px;
  max-width: 48%;
  margin: -8px 0 0;
  object-fit: contain;
}
.plan-card h3 {
  min-height: 2.8em;
}
.plan-card a {
  margin-top: auto;
  color: var(--brand);
  font-weight: 900;
}
.plan-card a:hover { text-decoration: underline; }

.brand-panel {
  display: grid;
  grid-template-columns: .8fr 1fr;
  gap: 50px;
  align-items: center;
}
.brand-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.brand-cloud span {
  padding: 14px 18px;
  border-radius: 16px;
  background: #fff;
  border: 1px solid var(--line);
  font-weight: 900;
  color: var(--ink-soft);
  box-shadow: 0 10px 30px rgba(5,55,66,.05);
}


.who-section {
  background: #fff;
}
.audience-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.audience-card {
  position: relative;
  min-height: 180px;
  padding: 24px;
  border-radius: var(--radius);
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 10px 34px rgba(5,55,66,.05);
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.audience-card:hover {
  transform: translateY(-4px);
  border-color: rgba(0,114,134,.32);
  box-shadow: 0 22px 54px rgba(5,55,66,.12);
}
.audience-card::before {
  content: "";
  display: block;
  width: 38px;
  height: 5px;
  border-radius: 999px;
  background: var(--brand);
  margin-bottom: 18px;
}
.audience-card span {
  display: block;
  color: var(--ink);
  font-weight: 950;
  font-size: 1.1rem;
  line-height: 1.15;
  letter-spacing: -.03em;
  margin-bottom: 10px;
}
.audience-card p {
  margin: 0;
  color: var(--muted);
  font-size: .96rem;
}


.contact-grid {
  display: grid;
  grid-template-columns: .85fr 1fr;
  gap: 56px;
  align-items: start;
}
.contact-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 28px;
}
.contact-card {
  padding: 18px;
  display: block;
}
.contact-card strong {
  display: block;
  font-size: .82rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 6px;
}
.contact-card span {
  font-weight: 900;
  color: var(--ink);
}
.contact-card small {
  display: block;
  color: var(--muted);
  font-size: .84rem;
  line-height: 1.35;
  margin-top: 8px;
}
.call-now-section {
  margin-top: 16px;
}
.mobile-call-now {
  display: none;
}
.contact-form { padding: 30px; }
.contact-form label {
  display: grid;
  gap: 7px;
  font-weight: 850;
  color: var(--ink-soft);
  margin-bottom: 16px;
}
input, select, textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 13px 14px;
  font: inherit;
  color: var(--ink);
  background: #fff;
}
input:focus, select:focus, textarea:focus {
  outline: 3px solid rgba(0,114,134,.18);
  border-color: var(--brand);
}
.contact-form button {
  width: 100%;
  border: 0;
}
.form-note { font-size: .86rem !important; margin: 12px 0 0; }

.site-footer {
  background: var(--brand-deep);
  color: #fff;
  padding: 56px 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr .4fr .6fr;
  gap: 40px;
}
.footer-logo {
  display: inline-flex;
  width: 150px;
  background: #fff;
  border-radius: 22px;
  padding: 10px;
  margin-bottom: 18px;
}
.site-footer p {
  color: rgba(255,255,255,.66);
  margin-bottom: 0;
}
.site-footer h4 {
  margin: 0 0 12px;
}
.site-footer a:not(.footer-logo) {
  display: block;
  color: rgba(255,255,255,.72);
  margin: 8px 0;
}
.site-footer a:not(.footer-logo):hover { color: #fff; }

@media (max-width: 960px) {
  .header-cta { display: none; }
  .menu-toggle { display: block; }
  .nav {
    position: absolute;
    left: 20px;
    right: 20px;
    top: 90px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 16px;
    border-radius: 22px;
    background: #fff;
    box-shadow: var(--shadow);
    border: 1px solid var(--line);
  }
  .nav.is-open { display: flex; }
  .nav a { padding: 14px 16px; }
  .hero-grid,
  .split-grid,
  .feature-grid,
  .brand-panel,
  .online-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .card-grid.three,
  .plans-grid,
  .audience-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .intro-grid { grid-template-columns: 1fr; }
  .online-actions { margin-top: 0; }
}

@media (max-width: 680px) {
  .container { width: min(100% - 28px, var(--max)); }
  .section { padding: 72px 0; }
  .hero { padding: 88px 0 64px; }
  h1 { letter-spacing: -.06em; }
  .header-inner { min-height: 74px; }
  .brand { width: 118px; min-width: 118px; }
  .brand img { width: 118px; }
  .nav { top: 76px; }
  .summary-card,
  .contact-form,
  .logo-panel {
    padding: 22px;
  }
  .card-grid.three,
  .plans-grid,
  .audience-grid,
  .contact-cards,
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .lead-actions .button,
  .call-now-section {
    width: 100%;
  }
  body { padding-bottom: 78px; }
  .mobile-call-now {
    position: fixed;
    left: 14px;
    right: 14px;
    bottom: 14px;
    z-index: 220;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 54px;
    padding: 14px 18px;
    border-radius: 999px;
    background: var(--brand);
    color: #fff;
    font-weight: 950;
    box-shadow: 0 18px 46px rgba(0,0,0,.28);
  }
  .visual-panel { min-height: 360px; }
  .camera-card { font-size: .82rem; }
  .camera-card.two { right: 20px; }
  .central-node { width: 190px; height: 190px; }
}

.required-text {
  font-size: 0.85em;
  font-weight: 400;
  color: #777;
}
