:root {
  --ink: #092c4c;
  --ink-2: #0f4168;
  --ink-3: #123a5a;
  --paper: #f3f7fa;
  --warm: #fff7ef;
  --white: #fff;
  --muted: #607180;
  --line: #dce5eb;
  --accent: #ff7a2f;
  --accent-2: #f05e22;
  --radius: 18px;
  --shadow: 0 18px 50px rgba(9, 44, 76, .14);
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.65;
}

a { color: inherit; }
img { display: block; max-width: 100%; }

.container {
  width: min(1180px, calc(100% - 40px));
  margin-inline: auto;
}

.narrow { width: min(780px, 100%); }

h1, h2, h3, p { margin-top: 0; }

h1, h2, h3 {
  line-height: 1.04;
  letter-spacing: -.045em;
}

h1 {
  max-width: 860px;
  font-size: clamp(2rem, 5.5vw, 5rem);
}

h2 { font-size: clamp(2rem, 4.4vw, 3.6rem); }
h3 { font-size: 1.35rem; }

.eyebrow, .pill {
  margin-bottom: .9rem;
  color: var(--accent);
  font-size: .76rem;
  font-weight: 900;
  letter-spacing: .15em;
  text-transform: uppercase;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 999px;
  background: rgba(255, 255, 255, .09);
  color: #ffd6be;
  letter-spacing: .08em;
}

.pill::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  border: 0;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: var(--white);
  box-shadow: 0 12px 28px rgba(240, 94, 34, .28);
  font-weight: 900;
  text-decoration: none;
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 34px rgba(240, 94, 34, .34);
}

.btn:disabled {
  opacity: .55;
  cursor: wait;
}

.secondary-link, .text-link {
  font-weight: 900;
  text-decoration: none;
}

.secondary-link {
  color: #d9ecf8;
}

.text-link {
  color: var(--accent-2);
}

.utility-bar {
  background: #061e34;
  color: #d8e8f2;
  font-size: .82rem;
}

.emergency-bar {
  background: #fff3ec;
  color: #7d2c11;
  border-bottom: 1px solid #ffd8c2;
  font-size: .86rem;
}

.emergency-inner {
  display: flex;
  justify-content: center;
  gap: 8px;
  padding: 8px 0;
  text-align: center;
}

.emergency-inner a {
  color: #7d2c11;
  font-weight: 900;
}

.utility-inner {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 8px 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid rgba(9, 44, 76, .08);
  background: rgba(255, 255, 255, .94);
  backdrop-filter: blur(12px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 82px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--ink);
  text-decoration: none;
}

.brand-logo {
  width: clamp(138px, 15vw, 190px);
  height: auto;
  object-fit: contain;
}

.brand strong, .brand small { display: block; }
.brand strong { font-size: 1.24rem; letter-spacing: -.03em; }
.brand small { color: var(--muted); font-size: .74rem; }

.nav-menu {
  display: flex;
  align-items: center;
  gap: 28px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-menu a {
  color: #253d52;
  font-weight: 800;
  text-decoration: none;
  transition: color .2s ease;
}

.nav-menu a:hover, .nav-menu a.active { color: var(--accent-2); }

.nav-toggle {
  display: none;
  border: 0;
  background: none;
}

.nav-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  margin: 5px;
  background: var(--ink);
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 96px 0 84px;
  background:
    radial-gradient(circle at 12% 18%, rgba(255, 122, 47, .16), transparent 28%),
    linear-gradient(135deg, #08233b 0%, #0a3458 54%, #07516b 100%);
  color: var(--white);
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto -12% -35% 45%;
  height: 420px;
  border-radius: 50%;
  background: rgba(255, 122, 47, .10);
  filter: blur(30px);
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(420px, 1.05fr);
  align-items: center;
  gap: 66px;
}

.hero-copy {
  animation: fadeInUp .6s ease both;
}

.hero-lead {
  max-width: 680px;
  color: #d7e7f1;
  font-size: 1.18rem;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 22px;
  margin: 34px 0;
}

.hero-note {
  max-width: 680px;
  padding-left: 18px;
  border-left: 3px solid var(--accent);
  color: #c7dae7;
  font-size: .92rem;
}

.hero-media {
  position: relative;
  animation: fadeInUp .6s .12s ease both;
}

.hero-media > img {
  width: 100%;
  min-height: 440px;
  object-fit: cover;
  object-position: 60% center;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 28px;
  box-shadow: 0 26px 80px rgba(0, 0, 0, .28);
}

.hero-card, .detail-card {
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .92);
  color: var(--ink);
  box-shadow: var(--shadow);
}

.hero-card {
  position: static;
  width: 100%;
  margin-top: 18px;
}

.hero-card .eyebrow { color: var(--accent-2); }

.check-list, .cross-list {
  display: grid;
  gap: 13px;
  padding: 0;
  list-style: none;
}

.check-list li, .cross-list li {
  position: relative;
  padding-left: 30px;
}

.check-list li::before, .cross-list li::before {
  position: absolute;
  left: 0;
  font-weight: 900;
}

.check-list li::before {
  content: "✓";
  color: var(--accent-2);
}

.cross-list li::before {
  content: "—";
  color: #aa4a3e;
}

.trust-strip {
  border-bottom: 1px solid var(--line);
  background: var(--paper);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  padding: 22px 0;
}

.trust-grid article {
  display: grid;
  gap: 2px;
  padding: 14px 16px;
  border-radius: 14px;
  background: rgba(255, 255, 255, .72);
}

.trust-grid strong {
  font-size: .9rem;
}

.trust-grid span {
  color: var(--muted);
  font-size: .78rem;
}

.section {
  padding: 96px 0;
}

.section-soft { background: var(--paper); }

.section-dark {
  background:
    radial-gradient(circle at 92% 20%, rgba(255, 122, 47, .11), transparent 26%),
    linear-gradient(135deg, #08233b, #0a3458);
  color: var(--white);
}

.section-heading {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  align-items: end;
  gap: 70px;
  margin-bottom: 42px;
}

.section-heading p:last-child {
  color: var(--muted);
}

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

.service-card {
  position: relative;
  display: grid;
  align-content: start;
  gap: 14px;
  min-height: 270px;
  padding: 30px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 10px 30px rgba(9, 44, 76, .06);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.service-card::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 4px;
  background: var(--accent);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform .3s ease;
}

.service-card:hover {
  border-color: rgba(255, 122, 47, .34);
  box-shadow: 0 18px 45px rgba(9, 44, 76, .11);
  transform: translateY(-4px);
}

.service-card:hover::before {
  transform: scaleY(1);
}

.service-icon {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border-radius: 12px;
  background: #eef5fa;
  color: var(--ink);
  font-weight: 900;
}

.service-card h3 {
  min-height: 3rem;
}

.service-card p:not(.eyebrow) {
  color: var(--muted);
}

.split-layout, .detail-grid, .fit-grid, .contact-layout, .area-layout, .proof-grid, .faq-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
}

.faq-layout > div:first-child p:last-child {
  color: var(--muted);
}

.faq-list {
  display: grid;
  gap: 16px;
}

.faq-list article {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--white);
  box-shadow: 0 10px 26px rgba(9, 44, 76, .05);
}

.faq-list h3 {
  margin-bottom: 8px;
}

.faq-list p {
  margin-bottom: 0;
  color: var(--muted);
}

.dark-lead {
  max-width: 560px;
  color: #c7dae7;
}

.steps {
  display: grid;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 20px;
  overflow: hidden;
}

.steps article {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 15px;
  padding: 26px;
  border-bottom: 1px solid rgba(255, 255, 255, .12);
}

.steps article:last-child { border-bottom: 0; }

.steps span, .process-grid span {
  color: var(--accent);
  font-weight: 900;
}

.steps p {
  margin: 0;
  color: #c9dbe7;
}

.proof-grid blockquote {
  margin: 0;
  padding: 32px;
  border: 1px solid var(--line);
  border-left: 4px solid var(--accent);
  border-radius: 16px;
  background: var(--white);
  box-shadow: 0 12px 32px rgba(9, 44, 76, .06);
  font-size: 1.04rem;
}

.proof-grid cite {
  color: var(--muted);
  font-style: normal;
}

.area-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.area-list li {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--white);
  font-weight: 800;
}

.cta-section {
  padding: 94px 0;
  background:
    radial-gradient(circle at 74% 12%, rgba(255, 122, 47, .16), transparent 28%),
    linear-gradient(135deg, #08233b, #07516b);
  color: var(--white);
}

.cta-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
}

.cta-panel h2 {
  max-width: 780px;
}

.cta-panel p {
  color: #c7dae7;
}

.cta-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.cta-points li {
  padding: 7px 10px;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 999px;
  color: #d9ecf8;
  font-size: .82rem;
}

.page-hero {
  padding: 84px 0;
  background: linear-gradient(135deg, var(--ink), var(--ink-2));
  color: var(--white);
}

.page-hero h1 {
  font-size: clamp(2.6rem, 6vw, 5rem);
}

.page-hero p:last-child {
  color: #d4dfe2;
  font-size: 1.1rem;
}

.detail-card {
  border-color: var(--line);
  background: var(--paper);
  color: var(--ink);
}

.prose { font-size: 1.06rem; }
.prose p { color: #425861; }

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  padding: 0;
  list-style: none;
}

.process-grid li {
  display: grid;
  gap: 20px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--white);
}

.contact-layout {
  grid-template-columns: .7fr 1.3fr;
}

.contact-sidebar {
  position: sticky;
  top: 112px;
  align-self: start;
}

.notice {
  margin-top: 28px;
  padding: 20px;
  border-left: 4px solid var(--accent);
  background: var(--warm);
}

.notice p {
  margin: 6px 0 0;
}

.form-panel {
  padding: 38px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

form {
  display: grid;
  gap: 22px;
}

.form-grid {
  display: grid;
  gap: 20px;
}

.form-grid.two {
  grid-template-columns: 1fr 1fr;
}

label {
  display: grid;
  gap: 8px;
  font-size: .86rem;
  font-weight: 800;
}

input, select, textarea {
  width: 100%;
  padding: 14px 15px;
  border: 1px solid #bcc7ca;
  border-radius: 10px;
  background: #fff;
  color: var(--ink);
  font: inherit;
}

input:focus, select:focus, textarea:focus {
  outline: 3px solid rgba(255, 122, 47, .20);
  border-color: var(--accent);
}

textarea { resize: vertical; }

.consent {
  grid-template-columns: auto 1fr;
  align-items: start;
  font-weight: 500;
}

.consent input {
  width: 18px;
  margin-top: 5px;
}

.honeypot {
  position: absolute;
  left: -10000px;
}

.form-actions {
  display: flex;
  align-items: center;
  gap: 20px;
}

.form-actions p {
  margin: 0;
  color: var(--muted);
  font-size: .85rem;
}

.site-footer {
  padding: 70px 0 25px;
  background: #061e34;
  color: #d4dfe2;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr .8fr .8fr;
  gap: 55px;
}

.footer-grid h2, .footer-grid h3 {
  color: #fff;
}

.footer-grid ul {
  padding: 0;
  list-style: none;
}

.footer-grid a {
  color: #d4dfe2;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  margin-top: 45px;
  padding-top: 20px;
  border-top: 1px solid #29404a;
  font-size: .82rem;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .55s ease, transform .55s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

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

@media (max-width: 900px) {
  .nav-toggle { display: block; }

  .nav-menu {
    display: none;
    position: absolute;
    top: 100%;
    right: 20px;
    left: 20px;
    flex-direction: column;
    align-items: stretch;
    padding: 22px;
    border: 1px solid var(--line);
    background: #fff;
    box-shadow: var(--shadow);
  }

  .nav-menu.open { display: flex; }

  .hero-grid, .section-heading, .split-layout, .detail-grid, .fit-grid, .contact-layout, .area-layout, .proof-grid, .faq-layout {
    grid-template-columns: 1fr;
  }

  .hero {
    padding: 72px 0 88px;
  }

  .hero-media > img {
    min-height: 360px;
  }

  .trust-grid, .process-grid {
    grid-template-columns: 1fr 1fr;
  }

  .card-grid {
    grid-template-columns: 1fr;
  }

  .contact-sidebar {
    position: static;
  }

  .cta-panel {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

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

  .utility-inner span {
    display: none;
  }

  .utility-inner {
    justify-content: flex-end;
  }

  .emergency-inner {
    align-items: center;
    flex-direction: column;
    gap: 2px;
  }

  .brand small {
    display: none;
  }

  h1 {
    font-size: clamp(2.1rem, 11vw, 3.7rem);
  }

  .hero-actions, .form-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .hero-media > img {
    min-height: 320px;
    object-position: 58% center;
  }

  .hero-card {
    position: relative;
    right: auto;
    bottom: auto;
    width: 100%;
    margin-top: 18px;
  }

  .section {
    padding: 68px 0;
  }

  .trust-grid, .process-grid, .form-grid.two, .area-list, .footer-grid {
    grid-template-columns: 1fr;
  }

  .trust-grid article {
    text-align: left;
  }

  .form-panel {
    padding: 24px;
  }

  .footer-bottom {
    gap: 12px;
    flex-direction: column;
  }
}
