:root {
  --ink: #0a3142;
  --navy: #07506f;
  --ocean: #087fa3;
  --sky: #42a9db;
  --sun: #f2a316;
  --leaf: #2fa84f;
  --coral: #ef6b3b;
  --cloud: #f5f9fb;
  --mist: #e8f1f5;
  --line: #d9e7ed;
  --white: #ffffff;
  --muted: #5e7580;
  --shadow: 0 20px 48px rgba(7, 80, 111, 0.14);
  --radius: 8px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

img,
svg {
  display: block;
}

img {
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -4rem;
  z-index: 100;
  background: var(--ink);
  color: var(--white);
  padding: 0.75rem 1rem;
  border-radius: var(--radius);
}

.skip-link:focus {
  top: 1rem;
}

.container {
  width: min(var(--container), calc(100% - 2rem));
  margin: 0 auto;
}

.topbar {
  background: var(--ink);
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.84rem;
}

.topbar__inner {
  width: min(var(--container), calc(100% - 2rem));
  margin: 0 auto;
  min-height: 38px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.topbar a {
  color: var(--white);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 80;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(217, 231, 237, 0.8);
  backdrop-filter: blur(16px);
}

.nav-shell {
  width: min(var(--container), calc(100% - 2rem));
  min-height: 76px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  min-width: 220px;
}

.brand img {
  width: 58px;
  height: 58px;
  object-fit: contain;
}

.brand strong {
  display: block;
  color: var(--navy);
  font-size: 1.04rem;
  line-height: 1.1;
}

.brand small {
  display: block;
  color: var(--muted);
  font-size: 0.76rem;
}

.site-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.15rem;
  flex-wrap: wrap;
}

.site-nav a {
  border-radius: 999px;
  padding: 0.48rem 0.68rem;
  color: #315563;
  font-weight: 700;
  font-size: 0.86rem;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  color: var(--navy);
  background: rgba(66, 169, 219, 0.13);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.55rem;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--ink);
  place-items: center;
  cursor: pointer;
}

.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  display: block;
  width: 20px;
  height: 2px;
  background: currentColor;
  content: "";
}

.nav-toggle span::before {
  transform: translateY(-7px);
}

.nav-toggle span::after {
  transform: translateY(5px);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 46px;
  padding: 0.78rem 1.05rem;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 800;
  line-height: 1.1;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease, border-color 180ms ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn:focus-visible,
.nav-toggle:focus-visible,
.site-nav a:focus-visible,
.faq__question:focus-visible {
  outline: 3px solid rgba(242, 163, 22, 0.5);
  outline-offset: 3px;
}

.btn--primary {
  color: var(--white);
  background: var(--navy);
  box-shadow: 0 12px 28px rgba(7, 80, 111, 0.24);
}

.btn--primary:hover {
  background: #063f59;
}

.btn--secondary {
  color: var(--ink);
  background: var(--sun);
  box-shadow: 0 12px 28px rgba(242, 163, 22, 0.26);
}

.btn--outline {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.72);
  background: rgba(255, 255, 255, 0.08);
}

.btn--ghost {
  color: var(--navy);
  background: var(--white);
  border-color: var(--line);
}

.btn--small {
  min-height: 40px;
  padding: 0.62rem 0.8rem;
  font-size: 0.9rem;
}

.btn svg,
.icon svg {
  width: 1.08rem;
  height: 1.08rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.hero,
.page-hero {
  position: relative;
  color: var(--white);
  background-image:
    linear-gradient(90deg, rgba(5, 38, 52, 0.86), rgba(5, 38, 52, 0.5), rgba(5, 38, 52, 0.2)),
    var(--hero-image);
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

.hero {
  min-height: 78svh;
  display: flex;
  align-items: center;
  padding: 7rem 0 5.5rem;
}

.page-hero {
  padding: 6.5rem 0 5.5rem;
}

.hero__content,
.page-hero__content {
  width: min(760px, 100%);
}

.eyebrow,
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.42rem;
  color: var(--navy);
  background: rgba(66, 169, 219, 0.14);
  border: 1px solid rgba(66, 169, 219, 0.22);
  border-radius: 999px;
  padding: 0.35rem 0.72rem;
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.hero .eyebrow,
.page-hero .eyebrow {
  color: var(--white);
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.25);
}

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

h1 {
  margin-bottom: 1.2rem;
  font-size: clamp(2.45rem, 6vw, 5.25rem);
  line-height: 0.98;
  letter-spacing: 0;
}

.page-hero h1 {
  max-width: 820px;
  font-size: clamp(2.25rem, 5vw, 4.4rem);
}

.hero__lead,
.page-hero__lead {
  max-width: 680px;
  margin-bottom: 2rem;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(1.02rem, 2vw, 1.22rem);
}

.hero__actions,
.section-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.hero__proof {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.15rem;
  padding: 0;
  margin: 1.6rem 0 0;
  list-style: none;
  color: rgba(255, 255, 255, 0.86);
  font-weight: 800;
  font-size: 0.92rem;
}

.hero__proof li {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.hero__proof li::before {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--sun);
  content: "";
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-bottom: 1rem;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.88rem;
  font-weight: 700;
}

.section {
  padding: clamp(4rem, 8vw, 6.5rem) 0;
}

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

.section--tight {
  padding: clamp(3rem, 6vw, 4.5rem) 0;
}

.section__header {
  max-width: 760px;
  margin-bottom: 2.2rem;
}

.section__header--center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.section-title {
  margin: 0.7rem 0 0.75rem;
  color: var(--ink);
  font-size: clamp(2rem, 4vw, 3.3rem);
  line-height: 1.04;
  letter-spacing: 0;
}

.section-lead {
  color: var(--muted);
  font-size: 1.04rem;
}

.quick-strip {
  position: relative;
  z-index: 3;
  margin-top: -2.1rem;
}

.quick-strip__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.metric {
  min-height: 112px;
  padding: 1.3rem;
  border-right: 1px solid var(--line);
}

.metric:last-child {
  border-right: 0;
}

.metric strong {
  display: block;
  color: var(--navy);
  font-size: 1.55rem;
}

.metric span {
  color: var(--muted);
  font-weight: 700;
}

.grid {
  display: grid;
  gap: 1.25rem;
}

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

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

.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.35rem;
  box-shadow: 0 14px 32px rgba(10, 49, 66, 0.06);
}

.card:hover {
  border-color: rgba(8, 127, 163, 0.35);
}

.card__link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  color: var(--navy);
  font-weight: 900;
}

.icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  color: var(--navy);
  background: rgba(66, 169, 219, 0.13);
  border-radius: var(--radius);
  margin-bottom: 1rem;
}

.card h3,
.feature h3,
.step h3 {
  margin-bottom: 0.45rem;
  color: var(--ink);
  font-size: 1.15rem;
  line-height: 1.25;
}

.card p,
.feature p,
.step p {
  color: var(--muted);
  margin-bottom: 1rem;
}

.feature-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.feature {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  align-items: start;
  padding: 1rem 0;
  border-bottom: 1px solid var(--line);
}

.feature .icon {
  margin-bottom: 0;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.media-frame {
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  background: var(--mist);
}

.media-frame img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.highlight-card {
  overflow: hidden;
  padding: 0;
}

.highlight-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.highlight-card__body {
  padding: 1.25rem;
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  padding: 0;
  margin: 1.2rem 0 0;
  list-style: none;
}

.tag-list li {
  color: var(--navy);
  background: rgba(47, 168, 79, 0.11);
  border: 1px solid rgba(47, 168, 79, 0.22);
  border-radius: 999px;
  padding: 0.36rem 0.68rem;
  font-size: 0.85rem;
  font-weight: 800;
}

.testimonial {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.testimonial blockquote {
  margin: 0;
  color: #294d5c;
  font-size: 1rem;
}

.testimonial cite {
  color: var(--navy);
  font-style: normal;
  font-weight: 900;
}

.process {
  counter-reset: steps;
}

.step {
  position: relative;
  padding-top: 3.4rem;
}

.step::before {
  position: absolute;
  left: 1.35rem;
  top: 1.2rem;
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  color: var(--white);
  background: var(--navy);
  font-weight: 900;
  counter-increment: steps;
  content: counter(steps);
}

.check-list {
  display: grid;
  gap: 0.65rem;
  padding: 0;
  margin: 1rem 0 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 1.55rem;
  color: #315563;
  font-weight: 700;
}

.check-list li::before {
  position: absolute;
  left: 0;
  top: 0.35rem;
  width: 0.72rem;
  height: 0.72rem;
  border-radius: 999px;
  background: var(--leaf);
  content: "";
}

.inquiry-band {
  background: var(--ink);
  color: var(--white);
}

.inquiry-band .section-title,
.inquiry-band .section-lead {
  color: var(--white);
}

.inquiry-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(340px, 1.1fr);
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: start;
}

.inquiry-form {
  background: var(--white);
  color: var(--ink);
  border-radius: var(--radius);
  padding: clamp(1rem, 3vw, 1.5rem);
  box-shadow: var(--shadow);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.95rem;
}

.field {
  display: grid;
  gap: 0.35rem;
}

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

.field label {
  color: #315563;
  font-size: 0.86rem;
  font-weight: 900;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 0.82rem 0.88rem;
  color: var(--ink);
  background: #fbfdfe;
}

.field textarea {
  min-height: 124px;
  resize: vertical;
}

.form-status {
  min-height: 1.4rem;
  margin: 0.8rem 0 0;
  color: var(--navy);
  font-weight: 800;
}

.map-wrap {
  overflow: hidden;
  min-height: 360px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--mist);
  box-shadow: var(--shadow);
}

.map-wrap iframe {
  width: 100%;
  height: 100%;
  min-height: 360px;
  border: 0;
}

.faq-list {
  display: grid;
  gap: 0.75rem;
}

.faq {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.faq__question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  border: 0;
  background: transparent;
  color: var(--ink);
  padding: 1rem 1.1rem;
  font-weight: 900;
  text-align: left;
  cursor: pointer;
}

.faq__question::after {
  flex: 0 0 auto;
  color: var(--navy);
  font-size: 1.4rem;
  content: "+";
}

.faq.is-open .faq__question::after {
  content: "-";
}

.faq__answer {
  display: none;
  padding: 0 1.1rem 1rem;
  color: var(--muted);
}

.faq.is-open .faq__answer {
  display: block;
}

.cta-panel {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 1rem;
  padding: clamp(1.3rem, 3vw, 2rem);
  background: var(--navy);
  color: var(--white);
  border-radius: var(--radius);
}

.cta-panel h2,
.cta-panel p {
  color: var(--white);
  margin-bottom: 0.35rem;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.contact-card {
  min-height: 100%;
}

.site-footer {
  color: rgba(255, 255, 255, 0.84);
  background: #062c3d;
  padding: 4rem 0 1.2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr;
  gap: 2rem;
}

.footer-brand img {
  width: 92px;
  height: 92px;
  object-fit: contain;
  background: var(--white);
  border-radius: var(--radius);
  padding: 0.35rem;
  margin-bottom: 1rem;
}

.site-footer h2,
.site-footer h3 {
  color: var(--white);
  margin-bottom: 0.75rem;
}

.site-footer ul {
  display: grid;
  gap: 0.42rem;
  padding: 0;
  margin: 0;
  list-style: none;
}

.site-footer a:hover {
  color: var(--sun);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 1.4rem;
  margin-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  font-size: 0.9rem;
}

.floating-cta {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 90;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  min-height: 52px;
  padding: 0.75rem 1rem;
  color: var(--white);
  background: #1da851;
  border-radius: 999px;
  box-shadow: 0 16px 34px rgba(29, 168, 81, 0.32);
  font-weight: 900;
}

.floating-cta svg {
  width: 1.25rem;
  height: 1.25rem;
  fill: currentColor;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 500ms ease, transform 500ms ease;
}

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

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
    animation: none !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 1080px) {
  .nav-shell {
    grid-template-columns: auto auto;
  }

  .nav-toggle {
    display: grid;
    justify-self: end;
  }

  .site-nav,
  .nav-actions {
    display: none;
  }

  .site-nav.is-open {
    grid-column: 1 / -1;
    display: grid;
    justify-content: stretch;
    gap: 0.35rem;
    padding-bottom: 1rem;
  }

  .site-nav.is-open a {
    border-radius: var(--radius);
    padding: 0.75rem 0.9rem;
  }

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

@media (max-width: 860px) {
  .topbar__inner {
    justify-content: center;
    text-align: center;
  }

  .topbar__inner span:last-child {
    display: none;
  }

  .hero {
    min-height: auto;
    padding: 5.4rem 0 4.5rem;
  }

  .page-hero {
    padding: 4.8rem 0 4.2rem;
  }

  .quick-strip {
    margin-top: 0;
  }

  .quick-strip__grid,
  .grid--3,
  .feature-list,
  .split,
  .inquiry-layout,
  .contact-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .metric {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .metric:last-child {
    border-bottom: 0;
  }

  .cta-panel {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  .container,
  .nav-shell,
  .topbar__inner {
    width: min(100% - 1rem, var(--container));
  }

  .brand {
    min-width: 0;
  }

  .brand img {
    width: 50px;
    height: 50px;
  }

  .brand small {
    display: none;
  }

  .hero__actions,
  .section-actions {
    display: grid;
  }

  .btn {
    width: 100%;
  }

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

  .floating-cta {
    left: 0.75rem;
    right: 0.75rem;
    justify-content: center;
  }
}
