:root {
  --navy: #0d3b66;
  --navy-deep: #092946;
  --sky: #60b7ff;
  --gold: #ffbd59;
  --cream: #fff8ef;
  --mist: #eaf6ff;
  --ink: #102133;
  --slate: #4e6277;
  --white: #ffffff;
  --line: rgba(16, 33, 51, 0.12);
  --shadow: 0 20px 50px rgba(9, 41, 70, 0.14);
  --radius: 28px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(96, 183, 255, 0.22), transparent 30%),
    linear-gradient(180deg, #f7fbff 0%, #fffdfa 55%, #eef8ff 100%);
}

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

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

.shell {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--navy);
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.8rem;
}

.sticky-callbar {
  position: sticky;
  top: 0;
  z-index: 30;
  background: linear-gradient(90deg, var(--navy-deep), #114b7a);
  box-shadow: 0 10px 30px rgba(16, 33, 51, 0.12);
}

.sticky-callbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 58px;
}

.sticky-callbar__inner p,
.sticky-callbar__inner a {
  margin: 0;
  font-weight: 800;
  color: var(--white);
}

.sticky-callbar__inner a {
  font-size: clamp(1rem, 2vw, 1.35rem);
}

.site-header {
  position: relative;
  z-index: 20;
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(16, 33, 51, 0.08);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 16px 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

.brand img {
  width: 84px;
  flex: 0 0 auto;
}

.brand__text {
  display: grid;
  gap: 2px;
}

.brand__eyebrow {
  font-size: 0.76rem;
  font-weight: 800;
  color: var(--slate);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.brand strong,
.hero h1,
.section-heading h2,
.feature h2,
.why-card h3,
.service-card h3,
.area-panel h3,
.appointment-copy h2 {
  font-family: Arial, Helvetica, sans-serif;
}

.brand strong {
  font-size: 1.4rem;
  line-height: 1.1;
  color: var(--navy);
  font-weight: 800;
}

.site-nav {
  display: flex;
  gap: 22px;
  font-weight: 700;
  color: var(--slate);
}

.site-nav a:hover,
.site-footer a:hover {
  color: var(--navy);
}

.header-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-weight: 800;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.header-cta {
  padding: 14px 22px;
  color: var(--white);
  background: var(--navy);
}

.button {
  min-height: 54px;
  padding: 0 24px;
}

.button:hover,
.header-cta:hover,
.mobile-callbar:hover {
  transform: translateY(-1px);
}

.button--primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--navy), #145389);
  box-shadow: 0 16px 34px rgba(13, 59, 102, 0.24);
}

.button--secondary {
  color: var(--navy);
  background: var(--white);
  border: 1px solid rgba(13, 59, 102, 0.14);
}

.hero {
  padding: 56px 0 34px;
}

.hero__grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 28px;
  align-items: center;
}

.hero__copy {
  padding: 20px 0;
}

.hero h1 {
  margin: 0;
  font-size: clamp(2.7rem, 6vw, 5rem);
  line-height: 1;
  color: var(--navy-deep);
  font-weight: 800;
}

.hero__lede,
.section-heading p,
.feature p,
.area-panel p,
.why-card p,
.service-card li,
.appointment-copy p,
.site-footer p {
  color: var(--slate);
  font-size: 1.05rem;
  line-height: 1.7;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 28px 0 22px;
}

.hero__points {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.hero__points li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
}

.hero__points li::before {
  content: "";
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), #ff8f3f);
  box-shadow: 0 0 0 6px rgba(255, 189, 89, 0.18);
}

.hero__visual {
  display: grid;
  gap: 18px;
}

.hero-card {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.hero-card--logo {
  padding: 22px;
  background:
    radial-gradient(circle at top, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.65)),
    linear-gradient(135deg, #dff2ff, #fff4dc);
}

.hero-card--photo {
  padding: 18px;
  min-height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #eef7ff, #fff7ea);
}

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

.trust-strip {
  padding: 12px 0 34px;
}

.trust-strip__grid,
.services-grid,
.why-grid,
.feature-grid,
.area-columns,
.appointment-grid {
  display: grid;
  gap: 20px;
}

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

.trust-strip article,
.service-card,
.area-panel,
.feature,
.why-card,
.appointment-form,
.appointment-callout {
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.trust-strip article {
  padding: 24px;
}

.trust-strip span {
  display: block;
  margin-bottom: 10px;
  color: var(--navy);
  font-weight: 800;
  font-size: 1.2rem;
}

.section {
  padding: 84px 0;
}

.section--dark {
  color: var(--white);
  background:
    radial-gradient(circle at top right, rgba(96, 183, 255, 0.2), transparent 30%),
    linear-gradient(135deg, var(--navy-deep), #103d66 48%, #0c5d96);
}

.section--soft {
  background:
    radial-gradient(circle at top left, rgba(255, 189, 89, 0.3), transparent 26%),
    linear-gradient(180deg, #fffaf1, #f4fbff);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 32px;
}

.section-heading--light .eyebrow,
.section-heading--light h2,
.section-heading--light p {
  color: var(--white);
}

.section-heading h2,
.feature h2,
.appointment-copy h2 {
  margin: 0 0 10px;
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 1.04;
  font-weight: 800;
}

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

.service-card,
.why-card,
.feature,
.area-panel {
  padding: 26px;
}

.service-card {
  overflow: hidden;
  padding: 0 0 26px;
}

.service-card__image {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-bottom: 1px solid var(--line);
  margin-bottom: 22px;
}

.service-card h3,
.why-card h3,
.area-panel h3 {
  margin: 0 0 12px;
  font-size: 1.55rem;
  line-height: 1.08;
  color: var(--navy-deep);
  font-weight: 700;
}

.service-card h3,
.service-card ul {
  padding-left: 26px;
  padding-right: 26px;
}

.section--dark .area-panel {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.14);
}

.section--dark .area-panel h3,
.section--dark .area-panel p {
  color: var(--white);
}

.service-card ul {
  padding-left: 20px;
  margin: 0;
}

.service-card li + li {
  margin-top: 10px;
}

.feature-grid {
  grid-template-columns: 1.15fr 0.85fr;
}

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

.faq-item {
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid var(--line);
  border-radius: 22px;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 22px 26px;
  font-size: 1.08rem;
  font-weight: 800;
  color: var(--navy-deep);
  position: relative;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5rem;
  color: var(--navy);
}

.faq-item[open] summary::after {
  content: "−";
}

.faq-item p {
  margin: 0;
  padding: 0 26px 24px;
  color: var(--slate);
  line-height: 1.7;
}

.feature--accent {
  background:
    radial-gradient(circle at top right, rgba(255, 189, 89, 0.4), transparent 32%),
    linear-gradient(135deg, #fef6e9, #ecf8ff);
}

.appointment-grid {
  grid-template-columns: 0.9fr 1.1fr;
  align-items: start;
}

.appointment-callout {
  padding: 22px;
  margin-top: 20px;
}

.appointment-callout span,
.site-footer span {
  display: block;
  margin-bottom: 8px;
  color: var(--slate);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.74rem;
}

.appointment-callout a,
.site-footer a {
  font-size: clamp(1.5rem, 4vw, 2.1rem);
  font-weight: 800;
  color: var(--navy);
}

.appointment-form {
  padding: 10px;
}

.appointment-form iframe {
  border-radius: 22px;
  background: var(--white);
}

.site-footer {
  padding: 34px 0 120px;
  background: #f4f9fd;
  border-top: 1px solid var(--line);
}

.site-footer__grid {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr 0.7fr;
  gap: 20px;
  align-items: start;
}

.mobile-callbar {
  position: fixed;
  left: 12px;
  right: 12px;
  bottom: 12px;
  z-index: 40;
  display: none;
  min-height: 58px;
  padding: 0 20px;
  border-radius: 999px;
  color: var(--white);
  background: linear-gradient(135deg, #ff9f1c, #ff6f3c);
  box-shadow: 0 18px 38px rgba(255, 111, 60, 0.34);
  align-items: center;
  justify-content: center;
  font-weight: 800;
}

@media (max-width: 1024px) {
  .site-header__inner,
  .hero__grid,
  .trust-strip__grid,
  .services-grid,
  .why-grid,
  .feature-grid,
  .area-columns,
  .appointment-grid,
  .site-footer__grid {
    grid-template-columns: 1fr;
  }

  .site-header__inner {
    display: grid;
  }

  .site-nav {
    flex-wrap: wrap;
    gap: 14px 18px;
  }
}

@media (max-width: 760px) {
  .site-nav {
    display: none;
  }

  .header-cta {
    width: 100%;
  }

  .sticky-callbar__inner {
    min-height: 52px;
    flex-wrap: wrap;
    justify-content: center;
    padding: 8px 0;
    text-align: center;
  }

  .hero {
    padding-top: 34px;
  }

  .section {
    padding: 66px 0;
  }

  .brand {
    align-items: flex-start;
  }

  .brand img {
    width: 72px;
  }

  .mobile-callbar {
    display: inline-flex;
  }

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