:root {
  --dark: #25729f;
  --light: #b0defa;
  --bright: #6af7af;
  --ink: #111827;
  --paper: #f5faff;
  --white: #ffffff;
  --border: #d4e5f2;
  --radius: 14px;
  --shadow: 0 16px 40px rgba(17, 24, 39, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: "Source Sans Pro", "Segoe UI", Tahoma, sans-serif;
  font-size: 16px;
  line-height: 1.55;
  background: linear-gradient(180deg, #f4f9ff 0%, #ffffff 44%, #f3fff8 100%);
}

a {
  color: inherit;
}

h1,
h2,
h3,
h4,
.logo span {
  font-family: "Montserrat", "Trebuchet MS", sans-serif;
  letter-spacing: 0.01em;
}

h1 {
  font-size: 48px;
  line-height: 1.12;
  margin: 0 0 14px;
}

h2 {
  font-size: 32px;
  margin: 0 0 16px;
}

h3,
h4 {
  font-size: 20px;
  margin: 0 0 12px;
}

p,
li,
td,
th,
dt,
dd,
a,
button,
span {
  font-size: 16px;
}

.container {
  width: min(1180px, 92vw);
  margin: 0 auto;
}

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

.header-row {
  min-height: 76px;
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 12px;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.logo span {
  font-size: 24px;
  color: #123a54;
  font-weight: 800;
}

.call-chip {
  text-decoration: none;
  border: 1px solid var(--dark);
  color: #ffffff;
  background: linear-gradient(135deg, #1d5f86 0%, #25729f 100%);
  border-radius: var(--radius);
  padding: 10px 14px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 18px;
  font-weight: 800;
  white-space: nowrap;
}

.menu-toggle {
  width: 48px;
  height: 48px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: #ffffff;
  cursor: pointer;
  display: inline-grid;
  place-content: center;
  gap: 4px;
}

.menu-toggle span {
  width: 18px;
  height: 2px;
  background: #17374d;
  display: block;
}

.site-nav {
  display: none;
  width: min(1180px, 92vw);
  margin: 0 auto 10px;
  border: 1px solid var(--border);
  background: #ffffff;
  border-radius: var(--radius);
  padding: 10px;
  gap: 10px;
}

.site-nav.open {
  display: grid;
  grid-template-columns: repeat(3, minmax(120px, 1fr));
}

.site-nav a {
  text-decoration: none;
  border-radius: calc(var(--radius) - 4px);
  padding: 10px 12px;
  color: #1a455f;
  font-size: 16px;
  font-weight: 700;
}

.site-nav a:hover {
  background: #eaf6ff;
}

.hero {
  padding: 44px 0 30px;
  background: linear-gradient(145deg, #0f3f5a 0%, #25729f 56%, #3ca3da 100%);
  color: #ffffff;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.12fr 0.88fr;
  gap: 24px;
  align-items: stretch;
}

.hero-content,
.hero-media {
  min-height: 500px;
}

.hero-content {
  display: grid;
  align-content: center;
  gap: 12px;
}

.kicker {
  font-weight: 700;
  color: #bde8ff;
}

.stars {
  margin: 2px 0;
  color: var(--bright);
  letter-spacing: 3px;
  font-size: 26px;
}

.icon-row {
  display: flex;
  gap: 12px;
  flex-wrap: nowrap;
  overflow: visible;
}

.icon-row img {
  height: auto;
  width: auto;
  max-height: 101px;
  max-width: calc((100% - 24px) / 3);
  object-fit: contain;
  background: rgba(255, 255, 255, 0.12);
  padding: 6px;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.hero-media {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.35);
  box-shadow: var(--shadow);
}

.hero-media picture {
  display: block;
  width: 100%;
  height: 100%;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-cta-text,
.cta-copy {
  font-weight: 700;
}

.btn {
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  min-width: 158px;
  border-radius: var(--radius);
  background: linear-gradient(135deg, #6af7af 0%, #40d892 100%);
  color: #083724;
  font-size: 18px;
  font-weight: 800;
  border: 1px solid #53d7a1;
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

.hero .btn {
  min-height: 50px;
  min-width: 158px;
  font-size: 18px;
}

.btn:hover {
  transform: translateY(-1px);
  filter: brightness(1.04);
  box-shadow: 0 10px 24px rgba(106, 247, 175, 0.45);
}

.pulse {
  animation: pulse 1.9s infinite;
}

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.45); }
  70% { box-shadow: 0 0 0 14px rgba(255, 255, 255, 0); }
  100% { box-shadow: 0 0 0 0 rgba(255, 255, 255, 0); }
}

.section {
  padding: 52px 0;
}

.intro-card,
.review-card,
.service-grid article,
.problem-grid article,
.cta-card,
.table-box,
.faq-list article,
.two-col .media-col,
.two-col > div:first-child {
  border-radius: var(--radius);
}

.intro-card {
  background: #eff8ff;
  padding: 20px;
  border: 1px solid var(--border);
}

.reviews {
  background: #f7fcff;
}

.carousel {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 10px;
}

.carousel-track {
  overflow: hidden;
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(270px, 1fr);
  gap: 14px;
  scroll-behavior: smooth;
}

.review-card {
  border: 1px solid var(--border);
  background: #ffffff;
  padding: 18px;
  min-height: 230px;
}

.carousel-btn {
  width: 44px;
  height: 44px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: #ffffff;
  color: #16445f;
  font-size: 28px;
  cursor: pointer;
}

.schema-note {
  background: linear-gradient(135deg, #eaf6ff 0%, #f6fffb 100%);
}

.benefit-list {
  list-style: none;
  margin: 0 0 14px;
  padding: 0;
  display: grid;
  gap: 8px;
}

.benefit-list li {
  position: relative;
  padding: 10px 12px 10px 40px;
  border-radius: var(--radius);
  background: linear-gradient(180deg, #f7fcff 0%, #ebf7ff 100%);
  border: 1px solid #cfe4f6;
}

.benefit-list li::before {
  content: "✓";
  position: absolute;
  left: 14px;
  top: 8px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #ffffff;
  font-weight: 800;
  background: #25729f;
}

.two-col {
  display: grid;
  gap: 18px;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
}

.two-col > div:first-child {
  border: 1px solid var(--border);
  background: #ffffff;
  padding: 20px;
}

.media-col {
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.media-col picture {
  display: block;
  width: 100%;
  height: 100%;
}

.media-col img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.services {
  background: #ffffff;
}

.service-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(2, minmax(260px, 1fr));
}

.service-grid article {
  padding: 18px;
  border: 1px solid var(--border);
  background: linear-gradient(180deg, #ffffff 0%, #f7fcff 100%);
}

.why-us {
  background: #f6fbff;
}

.table-box {
  border: 1px solid var(--border);
  overflow: auto;
}

table {
  width: 100%;
  border-collapse: collapse;
}

th,
td {
  border: 1px solid var(--border);
  padding: 10px;
  text-align: left;
}

th {
  background: #e7f3fe;
}

.problems {
  background: linear-gradient(180deg, #f8fcff 0%, #ffffff 100%);
}

.problem-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(2, minmax(260px, 1fr));
}

.problem-grid article {
  border: 1px solid var(--border);
  background: #ffffff;
  padding: 18px;
}

.problem-grid ul {
  margin: 0;
  padding-left: 18px;
}

.cta-banner {
  background: linear-gradient(120deg, #173f59 0%, #25729f 100%);
  color: #ffffff;
}

.cta-banner h2,
.cta-banner h3,
.cta-banner h4 {
  color: #ffffff;
}

.cta-card {
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: rgba(255, 255, 255, 0.07);
  padding: 24px;
}

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

.faq-list article {
  border: 1px solid var(--border);
  background: #ffffff;
  padding: 16px;
}

h2::after,
h3::after,
h4::after {
  content: "";
  display: block;
  width: 72px;
  max-width: 100%;
  height: 3px;
  border-radius: 99px;
  margin-top: 8px;
  background: var(--bright);
  transition: width 0.8s ease;
}

.in-view-target.in-view h2::after,
.in-view-target.in-view h3::after,
.in-view-target.in-view h4::after {
  width: 100%;
}

.site-footer {
  background: #0e2f41;
  color: #ffffff;
  padding: 34px 0 88px;
}

.footer-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: 1.1fr 0.9fr;
}

.footer-logo span {
  color: #ffffff;
}

.site-footer p,
.site-footer a,
.site-footer li,
.site-footer span,
.site-footer h4 {
  font-size: 14px;
}

.footer-legal {
  margin-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  padding-top: 16px;
}

.mobile-call {
  position: fixed;
  left: 10px;
  right: 10px;
  bottom: 10px;
  z-index: 60;
  text-align: center;
  text-decoration: none;
  color: #083724;
  background: linear-gradient(135deg, #6af7af 0%, #44e79c 100%);
  border-radius: var(--radius);
  border: 1px solid #4dd39b;
  font-size: 18px;
  font-weight: 800;
  padding: 12px 10px;
  box-shadow: 0 10px 26px rgba(17, 24, 39, 0.2);
}

@media (min-width: 1040px) {
  .mobile-call {
    display: none;
  }

  .menu-toggle {
    display: none;
  }

  .site-nav {
    display: grid;
    grid-template-columns: repeat(6, auto);
    justify-content: end;
    border: 0;
    background: transparent;
    margin-top: -44px;
    margin-bottom: 10px;
    padding: 0 210px 0 0;
    gap: 12px;
    width: min(1180px, 92vw);
  }

  .site-nav a {
    background: transparent;
    color: #1a4661;
  }
}

@media (max-width: 1039px) {
  .site-nav.open {
    grid-template-columns: repeat(2, minmax(120px, 1fr));
  }

  .hero-grid,
  .two-col,
  .service-grid,
  .problem-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero-content,
  .hero-media {
    min-height: auto;
  }

  .icon-row {
    align-items: flex-start;
  }

  .icon-row img {
    max-width: 30%;
    max-height: 88px;
    padding: 5px;
  }
}

@media (max-width: 768px) {
  h1 { font-size: 34px; }
  h2 { font-size: 22px; }
  h3,
  h4 { font-size: 14px; }
  p,
  li,
  td,
  th,
  dt,
  dd,
  a,
  button,
  span { font-size: 12px; }

  .call-chip,
  .site-nav a,
  .btn { font-size: 13px; }

  .mobile-call { font-size: 18px; }

  .logo span { font-size: 17px; }
}
