:root {
  --ink: #0e1726;
  --navy: #10233f;
  --navy-2: #17395d;
  --slate: #536274;
  --line: #dbe3ec;
  --paper: #f7fafc;
  --white: #ffffff;
  --orange: #f97316;
  --orange-dark: #c64f08;
  --green: #14785f;
  --aqua: #dff5ef;
  --shadow: 0 18px 46px rgba(14, 23, 38, 0.14);
  --radius: 8px;
  color-scheme: light;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

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

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

.page {
  overflow-x: hidden;
}

.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 20px;
}

.top-strip {
  background: var(--ink);
  color: #d9e7f4;
  font-size: 0.9rem;
}

.top-strip .container {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 8px 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

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

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  font-weight: 800;
  letter-spacing: 0;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: var(--radius);
  color: var(--white);
  background: linear-gradient(135deg, var(--navy), var(--green));
  font-weight: 900;
}

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

.site-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  font-weight: 700;
  color: #27364b;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  color: var(--orange-dark);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--ink);
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 46px;
  padding: 12px 18px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 800;
  text-align: center;
  max-width: 100%;
  white-space: normal;
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

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

.btn-primary {
  background: var(--orange);
  color: var(--white);
  box-shadow: 0 12px 24px rgba(249, 115, 22, 0.28);
}

.btn-primary:hover {
  background: var(--orange-dark);
}

.btn-secondary {
  background: var(--navy);
  color: var(--white);
}

.btn-outline {
  border-color: #b8c6d7;
  background: var(--white);
  color: var(--navy);
}

.hero {
  background:
    linear-gradient(110deg, rgba(16, 35, 63, 0.96) 0%, rgba(16, 35, 63, 0.88) 44%, rgba(16, 35, 63, 0.2) 100%),
    var(--hero-image);
  background-size: cover;
  background-position: center;
  color: var(--white);
}

.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(330px, 0.76fr);
  align-items: center;
  gap: 40px;
  min-height: 660px;
  padding: 70px 0;
}

.hero-inner > *,
.section-heading > *,
.trust-grid > *,
.services-grid > *,
.audience-grid > *,
.reviews-grid > *,
.contact-grid > * {
  min-width: 0;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #b8ffe9;
  font-weight: 800;
  text-transform: uppercase;
  font-size: 0.78rem;
  letter-spacing: 0;
}

.hero h1,
.section-heading h2 {
  margin: 0;
  line-height: 1.05;
  letter-spacing: 0;
}

.hero h1 {
  max-width: 780px;
  margin-top: 18px;
  font-size: clamp(2.55rem, 5vw, 5rem);
  overflow-wrap: anywhere;
}

.hero-copy {
  max-width: 650px;
  margin: 22px 0 0;
  color: #e6eef8;
  font-size: 1.16rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.hero-points {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  max-width: 720px;
  margin-top: 34px;
}

.hero-point {
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  padding: 14px;
  background: rgba(255, 255, 255, 0.1);
  color: #eff7ff;
  font-weight: 800;
}

.lead-panel {
  border-radius: var(--radius);
  background: var(--white);
  color: var(--ink);
  box-shadow: var(--shadow);
  padding: 24px;
}

.lead-panel h2 {
  margin: 0;
  font-size: 1.45rem;
}

.lead-panel p {
  margin: 6px 0 18px;
  color: var(--slate);
}

.lead-form {
  display: grid;
  gap: 12px;
}

.field {
  display: grid;
  gap: 6px;
}

.field label {
  color: #334155;
  font-size: 0.86rem;
  font-weight: 800;
}

.field input,
.field textarea,
.field select {
  width: 100%;
  border: 1px solid #c8d3df;
  border-radius: var(--radius);
  padding: 12px 13px;
  color: var(--ink);
  background: var(--white);
}

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

.form-status {
  min-height: 22px;
  margin: 0;
  color: var(--green);
  font-weight: 800;
  font-size: 0.9rem;
}

.section {
  padding: 82px 0;
}

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

.section-dark {
  background: var(--navy);
  color: var(--white);
}

.section-heading {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 28px;
  margin-bottom: 34px;
}

.section-heading h2 {
  max-width: 700px;
  font-size: clamp(2rem, 3vw, 3rem);
}

.section-heading p {
  max-width: 430px;
  margin: 0;
  color: var(--slate);
}

.section-dark .section-heading p {
  color: #cbd8e7;
}

.trust-grid,
.services-grid,
.audience-grid,
.reviews-grid,
.contact-grid {
  display: grid;
  gap: 18px;
}

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

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

.audience-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

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

.contact-grid {
  grid-template-columns: minmax(0, 0.86fr) minmax(340px, 1.14fr);
  align-items: stretch;
}

.info-box,
.service,
.audience,
.review,
.contact-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  padding: 22px;
}

.section-dark .review {
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.08);
}

.icon-box {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 18px;
  border-radius: var(--radius);
  background: var(--aqua);
  color: var(--green);
  font-weight: 900;
}

.info-box h3,
.service h3,
.audience h3,
.review h3,
.contact-card h3 {
  margin: 0 0 8px;
  font-size: 1.08rem;
}

.info-box p,
.service p,
.audience p,
.review p,
.contact-card p {
  margin: 0;
  color: var(--slate);
}

.section-dark .review p {
  color: #d8e2ef;
}

.service-list {
  display: grid;
  gap: 8px;
  margin-top: 16px;
  padding: 0;
  list-style: none;
}

.service-list li {
  display: flex;
  gap: 8px;
  color: #334155;
  font-weight: 700;
}

.service-list li::before {
  content: "";
  width: 8px;
  height: 8px;
  margin-top: 9px;
  border-radius: 50%;
  background: var(--orange);
  flex: 0 0 auto;
}

.project-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr;
  gap: 18px;
}

.project {
  position: relative;
  min-height: 310px;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--navy);
}

.project:first-child {
  grid-row: span 2;
}

.project img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
}

.project-caption {
  position: absolute;
  inset: auto 14px 14px 14px;
  padding: 14px;
  border-radius: var(--radius);
  background: rgba(14, 23, 38, 0.78);
  color: var(--white);
}

.project-caption strong {
  display: block;
}

.project-caption span {
  color: #dce8f4;
  font-size: 0.92rem;
}

.rating {
  color: #ffc247;
  font-weight: 900;
  letter-spacing: 0;
}

.review cite {
  display: block;
  margin-top: 16px;
  color: inherit;
  font-style: normal;
  font-weight: 900;
}

.faq-list {
  display: grid;
  gap: 12px;
  max-width: 890px;
  margin: 0 auto;
}

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

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  min-height: 62px;
  border: 0;
  padding: 18px 20px;
  background: transparent;
  color: var(--ink);
  font-weight: 900;
  text-align: left;
  cursor: pointer;
}

.faq-question::after {
  content: "+";
  font-size: 1.4rem;
  color: var(--orange-dark);
}

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

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 200ms ease;
}

.faq-answer p {
  margin: 0;
  padding: 0 20px 20px;
  color: var(--slate);
}

.contact-list {
  display: grid;
  gap: 14px;
  margin: 22px 0;
}

.contact-line {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #26364a;
  font-weight: 800;
}

.map-frame {
  min-height: 430px;
  border: 0;
  border-radius: var(--radius);
  width: 100%;
  height: 100%;
}

.site-footer {
  background: var(--ink);
  color: #cbd8e7;
  padding: 34px 0;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
}

.footer-links {
  display: flex;
  gap: 16px;
  font-weight: 800;
}

.floating-cta {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 30;
  display: none;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  width: calc(100% - 36px);
}

@media (max-width: 960px) {
  .top-strip .container {
    display: block;
    text-align: center;
    line-height: 1.35;
  }

  .top-strip span:last-child {
    display: none;
  }

  .menu-toggle {
    display: inline-block;
  }

  .site-nav {
    position: absolute;
    left: 20px;
    right: 20px;
    top: calc(100% + 8px);
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--white);
    box-shadow: var(--shadow);
    padding: 8px;
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    padding: 12px;
  }

  .header-cta {
    display: none;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    min-height: auto;
    padding: 54px 0;
  }

  .lead-panel {
    max-width: 620px;
  }

  .trust-grid,
  .services-grid,
  .audience-grid,
  .reviews-grid,
  .contact-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .project:first-child {
    grid-row: auto;
    grid-column: span 2;
  }
}

@media (max-width: 680px) {
  .container {
    padding: 0 14px;
  }

  .header-inner {
    min-height: 68px;
  }

  .brand {
    gap: 10px;
    flex: 1 1 auto;
    max-width: calc(100% - 54px);
  }

  .brand > span:last-child {
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .brand-mark {
    width: 38px;
    height: 38px;
    flex: 0 0 38px;
  }

  .brand small {
    display: none;
  }

  .top-strip span {
    overflow-wrap: anywhere;
  }

  .hero {
    background:
      linear-gradient(180deg, rgba(16, 35, 63, 0.95), rgba(16, 35, 63, 0.82)),
      var(--hero-image);
    background-size: cover;
    background-position: center;
  }

  .hero h1 {
    font-size: 2.22rem;
  }

  .hero-copy {
    font-size: 1rem;
  }

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

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .hero-points,
  .trust-grid,
  .services-grid,
  .audience-grid,
  .reviews-grid,
  .contact-grid,
  .project-grid {
    grid-template-columns: 1fr;
  }

  .project:first-child {
    grid-column: auto;
  }

  .section {
    padding: 58px 0;
  }

  .section-heading {
    display: block;
  }

  .section-heading p {
    margin-top: 12px;
  }

  .lead-panel,
  .info-box,
  .service,
  .audience,
  .review,
  .contact-card {
    padding: 18px;
  }

  .map-frame {
    min-height: 320px;
  }

  .footer-inner {
    display: grid;
  }

  .site-footer {
    padding-bottom: 34px;
  }
}
