:root {
  --blue-900: #07366f;
  --blue-800: #084d9b;
  --blue-700: #0b63c6;
  --blue-100: #dfefff;
  --ink: #102033;
  --muted: #5b6b7f;
  --line: #bfd7f3;
  --paper: #ffffff;
  --wash: #f6fbff;
  --accent: #10a887;
  --accent-soft: #dff8f1;
  --gold: #f4c542;
  --shadow: 0 18px 40px rgba(7, 54, 111, 0.15);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.5;
}

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

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 72px;
  padding: 14px clamp(18px, 5%, 64px);
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(191, 215, 243, 0.8);
  backdrop-filter: blur(12px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--blue-900);
  font-weight: 800;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 8px;
  color: #fff;
  background: linear-gradient(135deg, var(--blue-700), var(--accent));
  font-size: 0.9rem;
}

nav {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}

nav a {
  padding: 8px 10px;
  color: var(--blue-900);
  font-size: 0.95rem;
  font-weight: 700;
  text-decoration: none;
}

nav a:hover,
nav a:focus-visible {
  color: var(--accent);
}

.hero {
  min-height: clamp(560px, 68vh, 660px);
  display: grid;
  align-items: center;
  padding: 68px clamp(18px, 5%, 72px) 44px;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(5, 33, 66, 0.9), rgba(8, 77, 155, 0.7), rgba(8, 77, 155, 0.18)),
    url("assets/hero.jpeg") center right / cover no-repeat;
}

.hero-content {
  width: min(980px, 100%);
  margin: 0 auto;
  text-align: center;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--accent);
  font-size: 0.88rem;
  font-weight: 800;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: var(--gold);
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  margin: 0;
  font-size: clamp(3.2rem, 6vw, 5.8rem);
  line-height: 0.92;
}

h2 {
  margin: 0;
  color: var(--blue-900);
  font-size: clamp(2rem, 5vw, 3.25rem);
  line-height: 1;
}

h3 {
  margin: 0;
  color: var(--blue-900);
  font-size: 1.25rem;
  line-height: 1.15;
}

.hero-copy {
  margin: 22px auto 0;
  max-width: 620px;
  font-size: 1.25rem;
}

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

.contact-pairs {
  display: grid;
  grid-template-columns: repeat(2, minmax(260px, 1fr));
  gap: 16px;
  margin: 28px auto 0;
  max-width: 720px;
}

.contact-pairs-centered {
  margin-left: auto;
  margin-right: auto;
}

.contact-pair {
  display: grid;
  gap: 12px;
  padding: 14px;
  border: 1px solid rgba(223, 239, 255, 0.55);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
}

.contact-number {
  color: #fff;
  font-size: 1.2rem;
  font-weight: 900;
}

.contact-buttons {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 10px;
}

.contact-buttons .button {
  min-height: 44px;
  padding: 10px 14px;
}

.review-action {
  display: flex;
  justify-content: center;
  margin-top: 12px;
}

.contact-content .review-action {
  justify-content: center;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 18px;
  border: 2px solid transparent;
  border-radius: 8px;
  font-weight: 800;
  text-decoration: none;
  transition: transform 160ms ease, box-shadow 160ms ease, background-color 160ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
}

.button-primary {
  color: #fff;
  background: var(--accent);
  box-shadow: 0 12px 24px rgba(16, 168, 135, 0.25);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: #0e9478;
}

.button-secondary {
  color: var(--blue-900);
  background: #fff;
  border-color: var(--line);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  background: var(--accent-soft);
}

.notice-band {
  padding: 18px clamp(18px, 5%, 72px);
  background: var(--accent-soft);
  color: var(--blue-900);
}

.notice-band div {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  max-width: 1120px;
  margin: 0 auto;
  text-align: center;
}

.notice-band strong {
  text-transform: uppercase;
}

.section {
  padding: 72px clamp(18px, 5%, 72px);
}

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

.section-heading {
  width: min(820px, 100%);
  margin: 0 auto 32px;
  text-align: center;
}

.section-heading p:not(.eyebrow) {
  margin: 16px auto 0;
  max-width: 680px;
  color: var(--muted);
  font-size: 1.05rem;
}

.steps-grid,
.service-grid,
.photo-grid,
.info-split,
.price-layout,
.faq-grid,
.trust-grid,
.flyer-grid,
.terms-grid {
  display: grid;
  width: min(1120px, 100%);
  margin: 0 auto;
  gap: 20px;
}

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

.step-card,
.service-card,
.info-panel,
.review-panel,
.trust-grid article,
.price-panel,
.flyer-card,
.terms-list {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
}

.step-card,
.service-card {
  padding: 24px;
}

.step-number {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 16px;
  border-radius: 8px;
  color: #fff;
  background: var(--blue-700);
  font-weight: 900;
}

.step-card p,
.service-card p {
  margin: 12px 0 0;
  color: var(--muted);
}

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

.photo-grid figure {
  overflow: hidden;
  margin: 0;
  border-radius: 8px;
  box-shadow: var(--shadow);
  background: var(--blue-100);
}

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

.info-split {
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
  align-items: center;
}

.info-split p:not(.eyebrow),
.info-panel p {
  color: var(--muted);
  font-size: 1.05rem;
}

.info-panel {
  padding: 28px;
}

.info-panel .button {
  margin-top: 10px;
}

.price-layout {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: start;
}

.price-panel {
  overflow: hidden;
}

.monthly-panel {
  width: min(1120px, 100%);
  margin: 20px auto 0;
}

.panel-title {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 20px;
  color: #fff;
  background: linear-gradient(135deg, var(--blue-900), var(--blue-700));
}

.panel-title h3 {
  color: #fff;
}

.panel-title span {
  color: var(--blue-100);
  font-weight: 700;
}

.table-wrap {
  overflow-x: auto;
}

table {
  width: 100%;
  min-width: 420px;
  border-collapse: collapse;
  font-size: 1rem;
}

th,
td {
  padding: 16px 18px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: middle;
  overflow-wrap: anywhere;
}

thead th {
  color: var(--blue-900);
  background: var(--blue-100);
  font-size: 0.9rem;
  text-transform: uppercase;
}

tbody th {
  color: var(--blue-900);
}

tbody td:last-child {
  color: var(--blue-900);
  font-size: 1.25rem;
  font-weight: 900;
  white-space: nowrap;
}

.monthly-panel tbody td:nth-child(3) {
  color: var(--blue-900);
  font-size: 1.15rem;
  font-weight: 900;
  white-space: nowrap;
}

.monthly-panel tbody td:last-child {
  color: var(--ink);
  font-size: 1rem;
  font-weight: 400;
  white-space: normal;
}

.terms-grid {
  grid-template-columns: minmax(0, 1fr) minmax(280px, 420px);
  align-items: start;
}

.terms-grid-single {
  grid-template-columns: minmax(0, 900px);
  justify-content: center;
}

.terms-list {
  display: grid;
  gap: 0;
  padding: 8px 0;
}

.terms-list p {
  margin: 0;
  padding: 18px 22px;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
}

.terms-list p:last-child {
  border-bottom: 0;
}

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

details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
}

summary {
  cursor: pointer;
  padding: 18px 20px;
  color: var(--blue-900);
  font-weight: 800;
}

details p {
  margin: 0;
  padding: 0 20px 18px;
  color: var(--muted);
}

.review-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: min(900px, 100%);
  margin: 0 auto 20px;
  padding: 24px;
}

.approved-reviews {
  display: grid;
  width: min(900px, 100%);
  margin: 0 auto 20px;
  gap: 20px;
}

.review-card {
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
}

.review-stars {
  color: var(--gold);
  font-size: 1.2rem;
  font-weight: 900;
  letter-spacing: 2px;
}

.review-card blockquote {
  margin: 14px 0 18px;
  color: var(--ink);
  font-size: 1.2rem;
  line-height: 1.45;
}

.review-card footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  color: var(--muted);
}

.review-card footer strong {
  color: var(--blue-900);
}

.review-panel p {
  margin: 10px 0 0;
  color: var(--muted);
}

.trust-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  width: min(900px, 100%);
}

.trust-grid article {
  padding: 22px;
}

.trust-grid p {
  margin: 10px 0 0;
  color: var(--muted);
}

.flyer-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: start;
}

.flyer-grid .flyer-card:nth-child(3):last-child {
  grid-column: 1 / -1;
  justify-self: center;
  width: min(100%, 520px);
}

.flyer-card {
  overflow: hidden;
  margin: 0;
}

.flyer-card img {
  width: 100%;
  height: auto;
}

.contact-section {
  padding: 80px clamp(18px, 5%, 72px);
  color: #fff;
  background:
    linear-gradient(135deg, rgba(7, 54, 111, 0.96), rgba(11, 99, 198, 0.88)),
    url("assets/price-list.jpg") center / cover no-repeat;
}

.contact-content {
  width: min(760px, 100%);
  margin: 0 auto;
  text-align: center;
}

.contact-content h2 {
  color: #fff;
}

.contact-content p:not(.eyebrow) {
  margin: 16px auto 0;
  color: var(--blue-100);
  font-size: 1.15rem;
}

.site-footer {
  display: grid;
  gap: 8px;
  padding: 28px clamp(18px, 5%, 72px);
  color: var(--blue-100);
  background: #052142;
  text-align: center;
}

.site-footer p {
  margin: 0;
}

@media (max-width: 860px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }

  .hero {
    min-height: auto;
    padding-top: 64px;
    padding-bottom: 48px;
    background-position: center;
  }

  h1 {
    font-size: 4rem;
  }

  .steps-grid,
  .service-grid,
  .photo-grid,
  .info-split,
  .price-layout,
  .faq-grid,
  .trust-grid,
  .terms-grid,
  .flyer-grid {
    grid-template-columns: 1fr;
  }

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

  .flyer-grid .flyer-card:nth-child(3):last-child {
    grid-column: auto;
    width: 100%;
  }

  .notice-band div,
  .panel-title {
    align-items: flex-start;
    flex-direction: column;
  }

  .notice-band div {
    gap: 6px;
  }
}

@media (max-width: 560px) {
  nav {
    width: 100%;
  }

  nav a {
    padding: 8px 8px 8px 0;
  }

  .hero {
    min-height: auto;
    padding-bottom: 40px;
  }

  h1 {
    font-size: 3.15rem;
  }

  h2 {
    font-size: 2rem;
  }

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

  .button {
    width: 100%;
  }

  .contact-pairs {
    grid-template-columns: 1fr;
  }

  .contact-buttons {
    grid-template-columns: 1fr;
  }

  .review-action {
    width: 100%;
  }

  .section {
    padding-top: 56px;
    padding-bottom: 56px;
  }

  .table-wrap {
    overflow-x: visible;
  }

  .panel-title {
    padding: 15px 14px;
  }

  .panel-title h3 {
    font-size: 1rem;
  }

  .panel-title span {
    font-size: 0.82rem;
  }

  table {
    min-width: 0;
    table-layout: fixed;
    font-size: 0.82rem;
  }

  th,
  td {
    padding: 10px 7px;
  }

  thead th {
    font-size: 0.68rem;
  }

  tbody td:last-child {
    font-size: 1rem;
  }

  .monthly-panel tbody td:nth-child(3) {
    font-size: 0.92rem;
  }

  .monthly-panel tbody td:last-child {
    font-size: 0.82rem;
  }

  .monthly-panel thead {
    display: none;
  }

  .monthly-panel table,
  .monthly-panel tbody,
  .monthly-panel tr,
  .monthly-panel th,
  .monthly-panel td {
    display: block;
    width: 100%;
  }

  .monthly-panel tbody tr {
    padding: 12px 14px;
    border-bottom: 1px solid var(--line);
  }

  .monthly-panel tbody tr:last-child {
    border-bottom: 0;
  }

  .monthly-panel th,
  .monthly-panel td {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 14px;
    padding: 6px 0;
    border-bottom: 0;
    text-align: right;
  }

  .monthly-panel th::before,
  .monthly-panel td::before {
    content: attr(data-label);
    flex: 0 0 auto;
    color: var(--muted);
    font-size: 0.74rem;
    font-weight: 800;
    text-align: left;
    text-transform: uppercase;
  }

  .monthly-panel tbody td:nth-child(3),
  .monthly-panel tbody td:last-child {
    white-space: normal;
  }
}
