:root {
  --navy: #152c4c;
  --orange: #d86429;
  --ink: #111d3a;
  --slate: #e6e7e8;
  --white: #ffffff;
  --glass: rgba(255, 255, 255, .12);
  --border: rgba(21, 44, 76, .12);
  --radius: 26px;
  --shadow: 0 30px 60px rgba(12, 18, 48, .35);
  --shadow-soft: 0 18px 42px rgba(12, 18, 48, .25);
  --max: 1180px;
  scroll-behavior: smooth;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Montserrat", "Inter", system-ui, -apple-system, sans-serif;
  color: var(--ink);
  background: linear-gradient(180deg, #fafafa, #f3f6fb 45%, #e6ebf4);
  min-height: 100vh;
  line-height: 1.6;
}

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

.container {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 22px;
}

.home-logo-banner {
  position: relative;
  padding: 2px 0 1px;
  background:
    radial-gradient(circle at 12% 12%, rgba(216, 100, 41, .16), transparent 34%),
    radial-gradient(circle at 84% 8%, rgba(21, 44, 76, .08), transparent 28%),
    linear-gradient(180deg, #f7f8fb 0%, #eef3fa 52%, #e9eff8 100%);
  border-bottom: 1px solid rgba(21, 44, 76, .08);
}

.home-logo-banner__inner {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 18px;
  width: 100%;
  min-height: 0;
  padding: 0;
}

.home-logo-banner__inner img {
  display: block;
  width: min(300px, 38vw);
  max-width: 100%;
  height: auto;
  opacity: .98;
  mix-blend-mode: normal;
  filter:
    saturate(1)
    contrast(1.01)
    brightness(1)
    drop-shadow(0 8px 20px rgba(21, 44, 76, .06));
}

.home-logo-banner__tagline {
  position: relative;
  display: inline-block;
  max-width: min(430px, 42vw);
  min-height: 1.3em;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(22px, 2.2vw, 34px);
  font-weight: 600;
  font-style: normal;
  line-height: 1.1;
  color: var(--orange);
  letter-spacing: .1px;
  text-shadow: 0 6px 16px rgba(216, 100, 41, .18);
}

.home-logo-banner__tagline::after {
  content: "";
  display: inline-block;
  width: 2px;
  height: 1em;
  margin-left: 6px;
  vertical-align: -0.1em;
  background: var(--orange);
  animation: home-caret-blink .8s steps(1) infinite;
}

@keyframes home-caret-blink {
  50% {
    opacity: 0;
  }
}

@media (max-width: 720px) {
  .home-logo-banner__inner {
    min-height: 0;
    padding: 0;
    gap: 10px;
  }

  .home-logo-banner__inner img {
    width: min(220px, 48vw);
  }

  .home-logo-banner__tagline {
    max-width: 42vw;
    font-size: clamp(14px, 3vw, 18px);
  }
}

.topbar {
  background: var(--navy);
  color: var(--white);
  font-size: 13px;
  border-bottom: 1px solid rgba(255, 255, 255, .16);
}

.topbar .row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  padding: 10px 0;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .1);
  font-size: 12px;
  letter-spacing: .5px;
}

.badge strong {
  color: #fff;
  letter-spacing: .7px;
}

.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, .9);
  border-bottom: 1px solid rgba(21, 44, 76, .08);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow-soft);
}

.nav .row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
  gap: 18px;
}

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

.brand img {
  height: 46px;
  width: auto;
}

.brand-wordmark {
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

.brand-wordmark strong {
  font-family: "Poppins", sans-serif;
  font-size: clamp(18px, 1.55vw, 24px);
  letter-spacing: .15px;
  color: var(--navy);
}


.navlinks {
  display: flex;
  align-items: center;
  gap: 16px;
  font-weight: 600;
}

.navlinks a {
  padding: 10px 12px;
  border-radius: 14px;
  transition: background .3s ease, transform .3s ease;
  color: var(--navy);
}

.navlinks a:hover {
  background: rgba(216, 100, 41, .12);
  transform: translateY(-1px);
}

.cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 12px 18px;
  border-radius: 18px;
  background: var(--orange);
  color: #fff;
  font-weight: 700;
  letter-spacing: .4px;
  box-shadow: 0 20px 45px rgba(216, 100, 41, .45);
  transition: transform .3s ease, box-shadow .3s ease;
}

.cta:hover {
  transform: translateY(-2px) scale(1.01);
  box-shadow: 0 25px 60px rgba(216, 100, 41, .5);
}

.cta.secondary {
  background: rgba(255, 255, 255, .92);
  color: var(--navy);
  border: 1px solid rgba(255, 255, 255, .78);
  box-shadow: 0 14px 32px rgba(12, 18, 48, .18);
}

.cta.secondary:hover {
  background: #fff;
  color: var(--navy);
  box-shadow: 0 18px 38px rgba(12, 18, 48, .22);
}

.hero .cta.secondary {
  background: rgba(255, 255, 255, .95);
  border-color: rgba(255, 255, 255, .88);
  color: var(--navy);
  backdrop-filter: blur(8px);
}

.cta.ghost {
  border: 1px solid rgba(21, 44, 76, .2);
  background: rgba(255, 255, 255, .15);
  color: var(--navy);
  box-shadow: none;
  padding: 10px 14px;
}

.menuBtn {
  display: none;
  border: 0;
  background: rgba(21, 44, 76, .12);
  color: var(--navy);
  padding: 10px 14px;
  border-radius: 14px;
  font-weight: 700;
}

.dropdown {
  position: relative;
}

.dropdown .dropBtn {
  padding: 10px 12px;
  border-radius: 14px;
  font-weight: 600;
  cursor: pointer;
  display: inline-block;
  color: var(--navy);
  transition: background .3s ease, transform .3s ease;
}

.dropdown .dropBtn:hover {
  background: rgba(216, 100, 41, .12);
  transform: translateY(-1px);
}

.dropdown.open .dropBtn {
  background: rgba(216, 100, 41, .12);
}

.dropdown .panel {
  display: none;
  position: absolute;
  top: 54px;
  left: 0;
  border-radius: 20px;
  padding: 10px;
  background: #fff;
  min-width: 220px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(21, 44, 76, .08);
}

.dropdown .panel a {
  display: block;
  padding: 10px 14px;
  border-radius: 12px;
  font-weight: 600;
  color: var(--navy);
}

.dropdown .panel a:hover {
  background: rgba(216, 100, 41, .08);
}

.dropdown .panel .service-group-label {
  padding: 10px 14px 4px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(21, 44, 76, .55);
}

.dropdown.open .panel {
  display: block;
}

.hero {
  position: relative;
  padding: 120px 0 70px;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(21, 44, 76, .92), rgba(21, 44, 76, .6)),
    url("./assets/home-exterior.jpg");
  background-size: cover;
  background-position: center;
  color: #fff;
}

.hero:has(.hero-map-bg) {
  background: linear-gradient(135deg, rgba(21, 44, 76, .92), rgba(21, 44, 76, .6));
}

.hero-map-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  opacity: 0.25;
  pointer-events: none;
  filter: grayscale(100%) contrast(120%);
}

.hero .container {
  position: relative;
  z-index: 2;
}

.hero-glow {
  position: absolute;
  inset: 40px auto auto 60px;
  width: 480px;
  height: 480px;
  background: radial-gradient(circle, rgba(216, 100, 41, .55), rgba(216, 100, 41, 0));
  filter: blur(20px);
  animation: float 12s ease-in-out infinite;
  pointer-events: none;
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 36px;
  align-items: center;
}

.hero-copy h1 {
  margin-top: 6px;
  font-size: clamp(38px, 5vw, 64px);
  line-height: 1.1;
}

.hero p {
  margin: 12px 0 24px;
  font-size: 1.1rem;
  color: rgba(255, 255, 255, .85);
}

.heroActions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.heroCard {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.pill {
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .12);
  border: 1px solid rgba(255, 255, 255, .25);
  font-weight: 600;
  font-size: 13px;
}

.hero-visual {
  display: flex;
  justify-content: flex-end;
}

.hero-visual-card {
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 32px;
  padding: 28px;
  max-width: 360px;
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(18px);
  transition: transform .4s ease, box-shadow .4s ease;
}

.hero-visual-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 60px rgba(0, 0, 0, .45);
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 12px;
  color: rgba(255, 255, 255, .7);
}

.hero-visual-card h3 {
  margin: 8px 0 4px;
  font-size: 1.5rem;
}

.hero-visual-card p {
  margin: 0;
  color: rgba(255, 255, 255, .75);
}

.muted {
  color: rgba(255, 255, 255, .65);
}

.schedule-grid {
  margin-top: 18px;
  display: grid;
  gap: 10px;
}

.schedule-grid div {
  border-radius: 16px;
  padding: 12px;
  background: rgba(255, 255, 255, .12);
  border: 1px solid rgba(255, 255, 255, .18);
}

.schedule-grid span {
  font-weight: 700;
  display: block;
}

.schedule-grid p {
  margin: 4px 0 0;
  font-size: 14px;
  color: rgba(255, 255, 255, .7);
}

.hero-visual-footer {
  margin-top: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  font-size: 13px;
  color: rgba(255, 255, 255, .8);
}

.hero-visual-footer .cta.ghost {
  border: 0;
  background: linear-gradient(135deg, var(--accent), var(--orange));
  color: #0c0f1c;
  padding: 10px 22px;
  font-weight: 700;
  letter-spacing: .5px;
  border-radius: 18px;
  box-shadow: 0 18px 40px rgba(248, 181, 73, .45);
  transition: transform .3s ease, box-shadow .3s ease;
}

.hero-visual-footer .cta.ghost:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 25px 45px rgba(248, 181, 73, .55);
}

.section {
  padding: 74px 0;
}

.section:nth-of-type(even) {
  background: linear-gradient(180deg, rgba(255, 255, 255, .95), rgba(255, 255, 255, .65));
}

h2 {
  font-size: clamp(32px, 3vw, 48px);
  margin-bottom: 8px;
  color: var(--navy);
}

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

p {
  margin: 0 0 18px;
  color: var(--ink);
}

.card {
  background: #fff;
  border-radius: var(--radius);
  padding: 24px;
  border: 1px solid rgba(21, 44, 76, .08);
  box-shadow: var(--shadow-soft);
  transition: transform .4s ease, box-shadow .4s ease, border .4s ease;
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 60px rgba(12, 18, 48, .2);
  border-color: rgba(216, 100, 41, .4);
}

.grid3 {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.service-types-grid {
  gap: 18px;
  align-items: stretch;
}

.service-type-card {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  min-height: 230px;
  padding: 26px 24px 24px;
  text-align: left;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255, 255, 255, .98), rgba(247, 249, 253, .96));
  box-shadow: 0 16px 34px rgba(17, 29, 58, .08);
}

.service-type-card h3 {
  margin: 0 0 14px;
  font-family: "Poppins", sans-serif;
  font-size: clamp(19px, 1.55vw, 24px);
  line-height: 1.28;
  letter-spacing: -.01em;
  color: var(--navy);
  text-align: center;
}

.service-type-card p {
  max-width: none;
  margin: 0;
  font-size: 16px;
  line-height: 1.65;
  color: #41506a;
}

.service-type-card:hover {
  transform: translateY(-4px);
  border-color: rgba(21, 44, 76, .12);
  box-shadow: 0 20px 40px rgba(17, 29, 58, .10);
}

.grid2 {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  border-radius: 999px;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--orange);
  background: rgba(216, 100, 41, .14);
  margin-bottom: 12px;
  font-weight: 700;
}

.icon {
  width: 44px;
  height: 44px;
  border-radius: 16px;
  background: rgba(216, 100, 41, .15);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
}

.icon svg {
  width: 24px;
  height: 24px;
  fill: var(--orange);
}

.list {
  padding-left: 18px;
  margin: 18px 0;
  color: var(--ink);
}

.list li {
  margin-bottom: 10px;
}

.split {
  display: grid;
  gap: 22px;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  align-items: start;
}

.callout {
  background: linear-gradient(135deg, rgba(216, 100, 41, .16), rgba(255, 255, 255, .88));
  border: 1px solid rgba(216, 100, 41, .14);
  color: var(--ink);
}

.callout h3,
.callout p {
  color: var(--ink);
}

.callout h3 {
  color: var(--navy);
}

.callout small,
.callout small a {
  color: #4b576d;
}

.callout small a {
  font-weight: 700;
  text-decoration-thickness: 2px;
  text-underline-offset: 2px;
}

details summary {
  cursor: pointer;
  font-weight: 600;
  background: rgba(21, 44, 76, .05);
  padding: 10px 12px;
  border-radius: 12px;
  margin-bottom: 6px;
  list-style: none;
}

details p {
  margin: 10px;
  color: var(--ink);
}

.formRow {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
}

input,
textarea,
select {
  width: 100%;
  padding: 14px 16px;
  border-radius: 16px;
  border: 1px solid rgba(21, 44, 76, .15);
  font: inherit;
  background: #fff;
  color: var(--ink);
  transition: border .3s ease, box-shadow .3s ease;
}

textarea {
  min-height: 150px;
  resize: vertical;
}

input:focus,
textarea:focus,
select:focus {
  outline: none;
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(216, 100, 41, .25);
}

small {
  color: #515c74;
  font-size: 12px;
}

.notice {
  background: rgba(216, 100, 41, .08);
  border: 1px solid rgba(216, 100, 41, .3);
  padding: 14px 16px;
  border-radius: 14px;
}

.footer {
  background: var(--navy);
  color: rgba(255, 255, 255, .9);
  padding: 60px 0 40px;
}

.footer .cols {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 28px;
}

.footer img {
  max-width: 220px;
  width: 100%;
  filter: drop-shadow(0 10px 30px rgba(0, 0, 0, .6));
}

.footer p {
  color: rgba(255, 255, 255, .88);
}

.footer a {
  color: rgba(255, 255, 255, .96);
  font-weight: 500;
}

.footer a:hover {
  color: #fff;
}

.sep {
  border: 0;
  border-top: 1px solid rgba(255, 255, 255, .2);
  margin: 28px 0;
}

.footer small {
  display: block;
  color: rgba(255, 255, 255, .72);
}

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

.experience-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.experience-card {
  background: #fff;
  padding: 24px;
  border-radius: 24px;
  border: 1px solid rgba(21, 44, 76, .08);
  box-shadow: var(--shadow-soft);
  text-align: center;
  transition: transform .3s ease, box-shadow .3s ease;
  min-height: 300px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
}

.experience-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 60px rgba(12, 18, 48, .25);
}

.experience-icon {
  height: 90px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}

.experience-card img {
  max-height: 70px;
  width: auto;
  object-fit: contain;
  margin: 0;
  filter: drop-shadow(0 8px 24px rgba(0, 0, 0, .2));
}

.experience-card h3 {
  margin: 0 0 10px;
  color: var(--navy);
}

.experience-card p {
  color: #4b576d;
  font-size: 14px;
  text-align: center;
  margin: 0;
}

.problems {
  position: relative;
}

.problems-heading {
  max-width: 920px;
}

.problems h2 {
  margin-top: 6px;
  max-width: 980px;
}

.problems-heading p {
  max-width: 860px;
  font-size: 18px;
  line-height: 1.65;
  color: #41506a;
}

.problems .problem-body {
  display: grid;
  gap: 24px;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, .8fr);
  align-items: stretch;
}

.problem-panel {
  border-radius: 30px;
  padding: 28px;
}

.problem-panel-primary {
  background:
    linear-gradient(160deg, rgba(255, 255, 255, .98), rgba(243, 247, 254, .92)),
    linear-gradient(90deg, rgba(216, 100, 41, .06), rgba(255, 255, 255, 0));
  border: 1px solid rgba(21, 44, 76, .08);
  box-shadow: var(--shadow-soft);
}

.problem-panel-secondary {
  display: flex;
  flex-direction: column;
  gap: 18px;
  background: linear-gradient(170deg, #173257 0%, #1f477a 100%);
  box-shadow: 0 28px 52px rgba(10, 22, 44, .24);
}

.problem-lead {
  margin: 0;
  font-size: 24px;
  line-height: 1.45;
  color: var(--navy);
}

.problem-list {
  margin-top: 22px;
}

.problem-list ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 12px;
}

.problem-list li {
  position: relative;
  padding-left: 26px;
  font-size: 18px;
  line-height: 1.45;
  color: #1a2b45;
}

.problem-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: linear-gradient(135deg, #ef7f42, #d86429);
  box-shadow: 0 0 0 6px rgba(216, 100, 41, .12);
}

.problem-note {
  padding: 18px 20px;
  border-radius: 22px;
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .12);
}

.problem-note span {
  display: inline-block;
  margin-bottom: 10px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .72);
}

.problem-note p,
.problem-outcome p {
  margin: 0;
  color: rgba(255, 255, 255, .84);
  font-size: 18px;
  line-height: 1.7;
}

.problem-outcome {
  margin-top: auto;
  padding: 8px 2px 2px;
}

.problem-outcome h3 {
  margin: 0 0 10px;
  font-family: "Poppins", sans-serif;
  font-size: 28px;
  line-height: 1.1;
  color: #fff;
}

.problem-cards {
  margin-top: 32px;
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.problem-card {
  background: #fff;
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid rgba(21, 44, 76, .08);
  box-shadow: var(--shadow-soft);
  display: flex;
  flex-direction: column;
}

.problem-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.problem-card .card-copy {
  padding: 18px 20px 24px;
}

.problem-card h3 {
  margin-top: 0;
  color: var(--navy);
}

.problem-card p {
  color: #444f67;
}

.assets .section-heading {
  max-width: 640px;
  margin-bottom: 28px;
}

.asset-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 18px;
}

.asset-card {
  background: #fff;
  border-radius: 22px;
  padding: 24px 20px;
  border: 1px solid rgba(21, 44, 76, .08);
  box-shadow: var(--shadow-soft);
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 200px;
  /* Forces all cards to be the exact same height */
}

.asset-card img {
  max-width: 120px;
  max-height: 70px;
  object-fit: contain;
  margin-bottom: 24px;
}

.asset-card p {
  margin: 0;
  font-weight: 600;
  color: var(--navy);
  margin-top: auto;
  /* Pushes the text to the bottom uniformly */
}

.trust-strip {
  background: linear-gradient(90deg, #152c4c, #1f3e6b);
  color: #fff;
  border-top: 1px solid rgba(255, 255, 255, .12);
  border-bottom: 1px solid rgba(255, 255, 255, .12);
}

.trust-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  padding: 12px 0;
}

.trust-item {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 104px;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 14px;
  padding: 10px 12px;
  background: rgba(255, 255, 255, .08);
  text-align: center;
}

.trust-item strong {
  display: block;
  font-size: 14px;
  letter-spacing: .2px;
  margin-bottom: 6px;
}

.trust-item span {
  display: block;
  font-size: 12px;
  color: rgba(255, 255, 255, .82);
}

.faq-shell {
  display: grid;
  gap: 24px;
  grid-template-columns: minmax(250px, 0.8fr) minmax(350px, 1.2fr);
  background: #fff;
  border-radius: 28px;
  border: 1px solid rgba(21, 44, 76, .1);
  box-shadow: var(--shadow-soft);
  padding: clamp(20px, 3.6vw, 34px);
}

.faq-list details {
  margin-bottom: 10px;
}

.faq-list details:last-child {
  margin-bottom: 0;
}

.faq-list summary {
  cursor: pointer;
  font-weight: 600;
  background: rgba(21, 44, 76, .05);
  padding: 12px 14px;
  border-radius: 12px;
  list-style: none;
}

.faq-list p {
  margin: 8px 4px 0;
  color: #273757;
}

.mobile-sticky-cta {
  position: fixed;
  bottom: 12px;
  left: 12px;
  right: 12px;
  z-index: 80;
  display: none;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.mobile-sticky-cta a {
  text-align: center;
  padding: 13px 12px;
  border-radius: 14px;
  font-weight: 700;
  color: #fff;
  box-shadow: 0 16px 32px rgba(11, 17, 33, .34);
}

.mobile-sticky-cta .call {
  background: #152c4c;
}

.mobile-sticky-cta .book {
  background: linear-gradient(135deg, #d86429, #ef7f42);
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(12px);
  }
}

@media (max-width:960px) {
  .trust-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .problems .problem-body {
    grid-template-columns: 1fr;
  }

  .problem-panel-secondary {
    padding-top: 24px;
  }

  .problems-heading p {
    font-size: 17px;
  }

  .problem-lead {
    font-size: 21px;
  }

  .faq-shell {
    grid-template-columns: 1fr;
  }

  .navlinks {
    display: none;
  }

  .menuBtn {
    display: inline-flex;
  }

  .nav.open .navlinks {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 66px;
    right: 18px;
    background: #fff;
    padding: 18px;
    border-radius: 18px;
    box-shadow: var(--shadow);
  }

  .dropdown .panel {
    position: static;
    width: 100%;
    box-shadow: none;
    border: 0;
    background: transparent;
    margin-top: 6px;
  }

  .hero {
    padding: 100px 0 60px;
  }

}

@media (max-width:700px) {
  body {
    padding-bottom: 84px;
  }

  .brand {
    min-width: 0;
    gap: 10px;
  }

  .brand img {
    height: 40px;
  }

  .brand-wordmark strong {
    font-size: 16px;
  }

  .problem-panel {
    padding: 22px 18px;
    border-radius: 24px;
  }

  .problem-list li,
  .problem-note p,
  .problem-outcome p {
    font-size: 16px;
  }

  .problem-outcome h3 {
    font-size: 24px;
  }

  .mobile-sticky-cta {
    display: grid;
  }
}

@media (prefers-reduced-motion:reduce) {
  * {
    animation: none !important;
    transition: none !important;
  }
}
