@import url("styles.css");

.main-nav a[aria-current="page"] {
  color: var(--gold);
}

.services-page {
  padding-top: 60px;
  background: #f7fbff;
}

.section-kicker {
  margin: 0 0 12px;
  color: var(--copper);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.section-heading {
  max-width: 720px;
  margin: 0 auto 34px;
  text-align: center;
}

.section-heading-left {
  max-width: 650px;
  margin: 0 0 28px;
  text-align: left;
}

.section-heading h2 {
  margin: 0;
  color: var(--brown-deep);
  font-family: var(--font-heading);
  font-size: clamp(34px, 4vw, 54px);
  font-weight: 800;
  line-height: 1.05;
}

.section-heading p:not(.section-kicker) {
  margin: 16px 0 0;
  color: #607489;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.58;
}

.services-hero {
  position: relative;
  width: min(100%, 1400px);
  height: 600px;
  min-height: 600px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  overflow: hidden;
  background: var(--brown-deep);
  color: #f7fbff;
}

.services-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(255, 213, 74, 0.1), transparent 38%),
    linear-gradient(180deg, rgba(0, 63, 125, 0), rgba(0, 63, 125, 0.24));
}

.services-hero-copy {
  position: relative;
  z-index: 2;
  height: 100%;
  min-height: 600px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 35px clamp(28px, 5vw, 82px);
}

.services-hero-copy .section-kicker {
  color: var(--gold);
}

.services-hero h1 {
  max-width: 610px;
  margin: 0;
  color: #f7fbff;
  font-family: var(--font-heading);
  font-size: clamp(42px, 4.4vw, 64px);
  font-weight: 800;
  line-height: 1.02;
}

.services-hero h1 span,
.section-heading h2 span {
  display: block;
}

.services-hero-copy > p {
  max-width: 500px;
  margin: 18px 0 0;
  color: #dbeafe;
  font-size: 17px;
  font-weight: 500;
  line-height: 1.6;
}

.hero-actions {
  width: min(100%, 540px);
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  align-items: stretch;
  margin-top: 26px;
}

.hero-contact-link {
  min-width: 0;
  min-height: 58px;
  display: inline-flex;
  align-items: center;
  gap: 11px;
  padding: 10px 12px;
  border: 1px solid rgba(255, 213, 74, 0.46);
  border-radius: 6px;
  background: rgba(247, 251, 255, 0.1);
  color: #f7fbff;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
  transition:
    background 180ms ease,
    border-color 180ms ease,
    transform 180ms ease;
}

.hero-contact-link:hover,
.hero-contact-link:focus-visible {
  border-color: rgba(255, 213, 74, 0.82);
  background: rgba(255, 213, 74, 0.2);
  transform: translateY(-1px);
}

.hero-contact-link:focus-visible {
  outline: 2px solid #f7fbff;
  outline-offset: 3px;
}

.hero-contact-icon {
  width: 36px;
  height: 36px;
  flex: 0 0 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.hero-contact-icon img {
  width: 30px;
  height: 30px;
  display: block;
  object-fit: contain;
}

.hero-contact-text {
  min-width: 0;
  display: grid;
  gap: 2px;
}

.hero-contact-text strong {
  color: #ffffff;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  line-height: 1.1;
  text-transform: uppercase;
}

.hero-contact-text small {
  color: #dbeafe;
  font-size: 12px;
  font-weight: 800;
  line-height: 1.2;
  overflow-wrap: anywhere;
}

.services-hero-visual {
  position: relative;
  height: 100%;
  min-height: 600px;
  overflow: hidden;
}

.services-hero-visual::before,
.services-hero-visual::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 2;
  pointer-events: none;
}

.services-hero-visual::before {
  left: -2px;
  width: 34%;
  background: rgba(0, 63, 125, 0.8);
  clip-path: polygon(0 0, 43% 0, 100% 50%, 43% 100%, 0 100%);
}

.services-hero-visual::after {
  left: 8%;
  width: 19%;
  background: rgba(247, 251, 255, 0.32);
  clip-path: polygon(0 0, 42% 0, 100% 50%, 42% 100%, 0 100%);
}

.services-hero-visual img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}

.hero-service-panel {
  position: absolute;
  right: clamp(18px, 4vw, 58px);
  bottom: clamp(20px, 4vw, 54px);
  z-index: 3;
  width: min(310px, calc(100% - 36px));
  padding: 20px 22px;
  border-left: 4px solid var(--gold);
  background: rgba(247, 251, 255, 0.94);
  box-shadow: 0 22px 46px rgba(0, 63, 125, 0.22);
}

.hero-service-panel strong {
  display: block;
  color: var(--brown-deep);
  font-family: var(--font-heading);
  font-size: 34px;
  line-height: 1;
}

.hero-service-panel span {
  display: block;
  margin-top: 8px;
  color: #607489;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.35;
}

.plans-section,
.service-process {
  padding: 74px clamp(20px, 5.8vw, 84px);
}

.plans-section {
  position: relative;
  width: min(100%, 1400px);
  height: 600px;
  min-height: 600px;
  margin: 0 auto;
  padding: 20px clamp(20px, 3.4vw, 46px);
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto auto;
  gap: 12px;
  overflow: hidden;
  background:
    linear-gradient(180deg, #f7fbff 0%, #ffffff 44%, #fbf2e6 100%);
}

.plans-section:has(.plans-intro) {
  grid-template-rows: auto minmax(0, 1fr) auto auto;
}

.plans-title-visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
}

.plans-intro {
  display: grid;
  grid-template-columns: 104px minmax(0, 1fr) minmax(190px, 240px);
  gap: clamp(12px, 2vw, 22px);
  align-items: center;
}

.plans-family-badge {
  width: min(100%, 94px);
  aspect-ratio: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  justify-self: center;
  padding: 12px;
  border: 3px solid #f7fbff;
  border-radius: 50%;
  background: linear-gradient(145deg, var(--gold), #f4b400);
  color: var(--brown-deep);
  box-shadow:
    0 20px 44px rgba(0, 90, 168, 0.2),
    inset 0 0 0 1px rgba(0, 92, 174, 0.18);
  text-align: center;
}

.plans-family-badge span,
.plans-family-badge strong {
  display: block;
  font-size: 10px;
  line-height: 1.2;
  text-transform: uppercase;
}

.plans-family-badge span {
  font-weight: 700;
}

.plans-family-badge strong {
  margin-top: 3px;
  font-weight: 950;
}

.plans-heading {
  max-width: 640px;
  margin: 0 auto;
}

.plans-pill {
  width: max-content;
  min-height: 26px;
  display: inline-flex;
  align-items: center;
  margin: 0 auto 8px;
  padding: 0 14px;
  border: 1px solid rgba(0, 90, 168, 0.28);
  border-radius: 999px;
  background: rgba(247, 251, 255, 0.86);
  color: var(--brown-deep);
  font-size: 10px;
  letter-spacing: 0.16em;
}

.plans-heading h2 {
  color: var(--brown-deep);
  font-size: clamp(27px, 2.8vw, 38px);
  line-height: 0.94;
}

.plans-heading h2 em {
  width: max-content;
  max-width: 100%;
  display: block;
  margin: 3px auto 0;
  padding: 0 10px 4px;
  border-bottom: 4px solid var(--gold);
  color: var(--copper);
  font-family: "Segoe Script", "Brush Script MT", cursive;
  font-size: clamp(24px, 3.2vw, 32px);
  font-style: normal;
  font-weight: 500;
  line-height: 1;
}

.plans-heading p:not(.section-kicker) {
  max-width: 640px;
  margin-top: 7px;
  color: #3e5872;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.35;
}

.plans-heading p strong {
  color: var(--copper);
}

.plans-intro-media {
  position: relative;
  height: 96px;
  min-height: 96px;
  overflow: hidden;
  border: 4px solid #ffffff;
  border-radius: 999px 0 0 999px;
  box-shadow: 0 20px 48px rgba(0, 63, 125, 0.12);
}

.plans-intro-media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.plans-safety-note {
  position: absolute;
  right: 10px;
  bottom: 10px;
  width: min(200px, calc(100% - 20px));
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 9px 11px;
  border-left: 3px solid var(--gold);
  background: rgba(0, 63, 125, 0.9);
  color: #f7fbff;
  box-shadow: 0 14px 28px rgba(0, 63, 125, 0.2);
}

.plans-safety-note svg {
  width: 22px;
  height: 22px;
  flex: 0 0 22px;
  fill: none;
  stroke: var(--gold);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.plans-safety-note span {
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.03em;
  line-height: 1.35;
  text-transform: uppercase;
}

@media (min-width: 981px) {
  .plans-heading p:not(.section-kicker) {
    display: none;
  }

  .plans-section .plan-feature-grid {
    display: none;
  }

  .plan-permanent-card .room-options,
  .plan-permanent-card .plan-card-ribbon {
    display: none;
  }

  .featured-sales-points {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 6px;
  }

  .featured-sales-points li {
    padding-left: 13px;
    font-size: 10px;
    line-height: 1.22;
  }

  .featured-sales-points li::before {
    top: 0.52em;
    width: 6px;
    height: 6px;
    box-shadow: 0 0 0 3px rgba(255, 213, 74, 0.13);
  }

  .plans-section .plan-feature-grid-dark {
    display: none;
  }
}

.plans-grid {
  min-height: 0;
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(0, 0.88fr);
  gap: clamp(18px, 2.6vw, 30px);
  align-items: stretch;
}

.plan-card {
  position: relative;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
  overflow: hidden;
  padding: clamp(17px, 2vw, 24px);
  border: 1px solid rgba(0, 90, 168, 0.22);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 22px 52px rgba(0, 63, 125, 0.1);
}

.plan-card-top {
  min-width: 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(150px, 0.62fr);
  gap: clamp(12px, 1.8vw, 20px);
  align-items: center;
}

.plan-permanent-card {
  order: -1;
  border-color: rgba(255, 213, 74, 0.28);
  background:
    linear-gradient(135deg, rgba(0, 63, 125, 0.98), rgba(87, 40, 0, 0.96)),
    var(--brown-deep);
  color: #f7fbff;
  box-shadow: 0 26px 62px rgba(0, 63, 125, 0.2);
}

.plan-permanent-card .plan-card-top {
  grid-template-columns: minmax(0, 0.94fr) minmax(155px, 0.66fr);
  align-items: stretch;
}

.plan-card-header {
  min-width: 0;
  max-width: 100%;
}

.plan-card-header span {
  display: inline-flex;
  margin-bottom: 9px;
  padding: 6px 10px;
  border-radius: 999px;
  background: #eaf4ff;
  color: var(--copper);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.plan-permanent-card .plan-card-header span {
  background: var(--gold);
  color: var(--brown-deep);
}

.plan-card h3 {
  margin: 0;
  color: var(--brown-deep);
  font-family: var(--font-heading);
  font-size: clamp(27px, 3.2vw, 40px);
  line-height: 0.98;
}

.plan-permanent-card h3 {
  color: #f7fbff;
}

.plan-card-header p {
  max-width: 720px;
  margin: 9px 0 0;
  color: #607489;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.35;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.plan-card-header p strong {
  color: var(--copper);
  font-weight: 900;
}

.plan-permanent-card .plan-card-header p {
  color: #dbeafe;
}

.plan-permanent-card .plan-card-header p strong {
  color: var(--gold);
}

.featured-sales-points {
  display: grid;
  gap: 6px;
  margin: 10px 0 0;
  padding: 0;
  list-style: none;
}

.featured-sales-points li {
  position: relative;
  min-width: 0;
  padding-left: 18px;
  color: #fff8df;
  font-size: 12px;
  font-weight: 800;
  line-height: 1.35;
  overflow-wrap: anywhere;
}

.featured-sales-points li::before {
  content: "";
  position: absolute;
  top: 0.55em;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 4px rgba(255, 213, 74, 0.13);
}

.plan-image-bubble {
  width: min(100%, 150px);
  aspect-ratio: 1;
  justify-self: end;
  overflow: hidden;
  border: 4px solid #eef6ff;
  border-radius: 50%;
  box-shadow: 0 16px 34px rgba(0, 63, 125, 0.12);
}

.plan-image-bubble img,
.plan-image-panel img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.plan-image-panel {
  min-height: 150px;
  overflow: hidden;
  border: 1px solid rgba(255, 213, 74, 0.28);
  border-radius: 8px;
  box-shadow: 0 18px 38px rgba(0, 31, 63, 0.28);
}

.room-options {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin: auto 0 0;
}

.room-options article {
  min-width: 0;
  display: flex;
  gap: 13px;
  align-items: flex-start;
  padding: 15px;
  border: 1px solid rgba(255, 213, 74, 0.32);
  border-radius: 8px;
  background: rgba(247, 251, 255, 0.96);
}

.room-options article > div {
  min-width: 0;
}

.room-options strong {
  display: block;
  color: var(--brown-deep);
  font-size: 16px;
  line-height: 1.2;
  overflow-wrap: anywhere;
}

.room-options span {
  display: block;
  margin-top: 7px;
  color: #607489;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.35;
  overflow-wrap: anywhere;
}

.plan-feature-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  margin-top: auto;
  padding-top: 10px;
  border-top: 1px dashed rgba(0, 92, 174, 0.18);
}

.plan-feature-grid-dark {
  grid-template-columns: repeat(5, minmax(0, 1fr));
  border-top-color: rgba(255, 213, 74, 0.28);
}

.plan-feature-grid article {
  min-width: 0;
  display: grid;
  justify-items: center;
  gap: 4px;
  padding: 0 7px;
  border-right: 1px solid rgba(0, 92, 174, 0.14);
  text-align: center;
}

.plan-feature-grid article:last-child {
  border-right: 0;
}

.plan-feature-grid-dark article {
  border-right-color: rgba(255, 213, 74, 0.2);
}

.plan-mini-icon {
  width: 30px;
  height: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--gold);
  border-radius: 50%;
  color: var(--copper);
}

.room-options .plan-mini-icon {
  flex: 0 0 30px;
  background: #f7fbff;
}

.plan-feature-grid-dark .plan-mini-icon {
  color: var(--gold);
  background: rgba(247, 251, 255, 0.08);
}

.plan-mini-icon svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.plan-feature-grid strong {
  color: #3e5872;
  font-size: 10px;
  font-weight: 900;
  line-height: 1.22;
  overflow-wrap: anywhere;
}

.plan-feature-grid small {
  color: #49627c;
  font-size: 10px;
  font-weight: 650;
  line-height: 1.35;
  overflow-wrap: anywhere;
}

.plan-feature-grid-dark strong,
.plan-feature-grid-dark small {
  color: #f7fbff;
}

.plan-feature-grid-dark small {
  color: #dbeafe;
}

.plan-card-ribbon {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: auto calc(clamp(17px, 2vw, 24px) * -1) calc(clamp(17px, 2vw, 24px) * -1);
  padding: 9px clamp(17px, 2vw, 24px);
  background: linear-gradient(135deg, var(--gold), #f4b400);
  color: var(--brown-deep);
  font-size: 12px;
  font-weight: 900;
  line-height: 1.35;
}

.plan-permanent-card .plan-card-ribbon {
  background: linear-gradient(135deg, var(--copper), #004f99);
  color: #f7fbff;
}

.plan-card-ribbon svg {
  width: 22px;
  height: 22px;
  flex: 0 0 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.plans-choice-band {
  display: flex;
  align-items: center;
  gap: clamp(12px, 2vw, 22px);
  margin-top: 0;
  padding: 10px 16px;
  border-radius: 8px;
  background: var(--brown-deep);
  color: #f7fbff;
  box-shadow: 0 20px 46px rgba(0, 63, 125, 0.16);
}

.plans-choice-band strong {
  flex: 0 0 auto;
  padding: 6px 13px;
  border-radius: 999px;
  background: var(--copper);
  color: #f7fbff;
  font-size: 10px;
  font-weight: 950;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.plans-choice-band ul {
  min-width: 0;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.plans-choice-band li {
  min-width: 0;
  padding: 0 7px;
  border-left: 1px solid rgba(255, 213, 74, 0.2);
  color: #dbeafe;
  font-size: 10px;
  font-weight: 800;
  line-height: 1.35;
  text-align: center;
  overflow-wrap: anywhere;
}

.plans-contact-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-top: 0;
  padding: 11px 16px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--gold), #f4b400);
  color: var(--brown-deep);
  box-shadow: 0 18px 38px rgba(0, 90, 168, 0.18);
}

.plans-contact-strip strong,
.plans-contact-strip span {
  display: block;
}

.plans-contact-strip strong {
  font-size: clamp(22px, 2.6vw, 31px);
  font-family: var(--font-heading);
  line-height: 1;
}

.plans-contact-strip span {
  margin-top: 2px;
  color: var(--copper);
  font-size: 15px;
  font-weight: 900;
  font-style: italic;
}

.plans-contact-strip a {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border: 1px solid rgba(0, 63, 125, 0.16);
  border-radius: 999px;
  background: #f7fbff;
  color: var(--brown-deep);
  font-size: 12px;
  font-weight: 950;
  white-space: nowrap;
}

.pricing-plans-section {
  height: auto;
  min-height: 600px;
  display: block;
  overflow: visible;
  padding: 32px clamp(20px, 4.6vw, 72px) 38px;
  background:
    radial-gradient(circle at 82% 10%, rgba(255, 213, 74, 0.34), transparent 30%),
    linear-gradient(180deg, #f7fbff 0%, #ffffff 46%, #f5e5d0 100%);
  color: var(--brown-deep);
}

.plans-pricing-heading {
  max-width: 820px;
  margin: 0 auto 22px;
  text-align: center;
}

.plans-pricing-heading .section-kicker {
  color: var(--copper);
}

.plans-pricing-heading h2 {
  max-width: 760px;
  margin: 0 auto;
  color: var(--brown-deep);
  font-family: var(--font-heading);
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.02;
}

.plans-pricing-heading p:not(.section-kicker) {
  max-width: 690px;
  margin: 12px 0 0;
  color: #49627c;
  font-size: 14px;
  font-weight: 650;
  line-height: 1.5;
}

.pricing-plans-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(16px, 2vw, 26px);
  align-items: stretch;
  width: min(100%, 980px);
  margin-inline: auto;
}

.pricing-plan-card {
  --plan-card-padding: clamp(20px, 2.3vw, 28px);
  position: relative;
  min-width: 0;
  min-height: 520px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid rgba(0, 90, 168, 0.22);
  border-radius: 8px;
  background: #ffffff;
  color: var(--brown-deep);
  box-shadow: 0 24px 58px rgba(0, 63, 125, 0.12);
}

.pricing-card-image {
  width: 100%;
  height: auto;
  aspect-ratio: 5 / 3;
  display: block;
  flex: 0 0 auto;
  object-fit: cover;
  object-position: center;
}

.pricing-plan-featured {
  border-color: rgba(255, 213, 74, 0.56);
  background:
    linear-gradient(145deg, rgba(0, 63, 125, 0.98), rgba(0, 92, 174, 0.96)),
    var(--brown-deep);
  color: #f7fbff;
  box-shadow: 0 28px 64px rgba(0, 63, 125, 0.24);
}

.pricing-card-header {
  min-width: 0;
  padding: var(--plan-card-padding) var(--plan-card-padding) 0;
}

.plan-eyebrow {
  display: inline-flex;
  min-height: 26px;
  align-items: center;
  padding: 0 12px;
  border-radius: 999px;
  background: #eaf4ff;
  color: var(--copper);
  font-size: 10px;
  font-weight: 950;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.pricing-plan-featured .plan-eyebrow {
  background: var(--gold);
  color: var(--brown-deep);
}

.pricing-plan-card:not(.pricing-plan-featured) .plan-eyebrow {
  min-height: 22px;
  padding-inline: 10px;
  font-size: 8.5px;
}

.pricing-card-header h3 {
  margin: 16px 0 0;
  color: var(--brown-deep);
  font-family: var(--font-heading);
  font-size: clamp(31px, 3.4vw, 48px);
  line-height: 0.98;
}

.pricing-plan-card .pricing-card-header h3 {
  font-size: clamp(26px, 2.89vw, 41px);
}

.pricing-plan-featured .pricing-card-header h3 {
  color: #f7fbff;
}

.plan-price {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-top: 14px;
}

.plan-price span {
  color: var(--brown-deep);
  font-family: var(--font-heading);
  font-size: clamp(36px, 4.4vw, 58px);
  font-weight: 800;
  line-height: 0.9;
}

.plan-price small {
  color: var(--copper);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.pricing-plan-featured .plan-price small {
  color: var(--gold);
}

.pricing-plan-featured .plan-price span {
  color: #f7fbff;
}

.pricing-card-header p {
  margin: 14px 0 0;
  color: #49627c;
  font-size: 13px;
  font-weight: 750;
  line-height: 1.45;
}

.pricing-plan-featured .pricing-card-header p {
  color: #dbeafe;
}

.plan-cta {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 22px var(--plan-card-padding) 16px;
  padding: 0 18px;
  border: 1px solid rgba(0, 92, 174, 0.2);
  border-radius: 999px;
  background: #f7fbff;
  color: var(--brown-deep);
  font-size: 12px;
  font-weight: 950;
  text-align: center;
  transition:
    border-color 180ms ease,
    background 180ms ease,
    transform 180ms ease;
}

.plan-cta:hover {
  border-color: rgba(0, 90, 168, 0.48);
  background: #eaf4ff;
  transform: translateY(-1px);
}

.plan-cta-featured {
  border-color: transparent;
  background: linear-gradient(135deg, var(--gold), #f4b400);
  color: var(--brown-deep);
}

.featured-includes {
  display: block;
  margin: 4px var(--plan-card-padding) 12px;
  color: #f7fbff;
  font-size: 12px;
  font-weight: 950;
}

.featured-switch {
  position: absolute;
  top: 16px;
  right: 16px;
  min-height: 28px;
  display: inline-flex;
  align-items: center;
  padding: 3px;
  border-radius: 999px;
  background: rgba(0, 63, 125, 0.78);
  box-shadow: 0 6px 18px rgba(0, 63, 125, 0.24);
  backdrop-filter: blur(4px);
}

.featured-switch span {
  min-width: 56px;
  padding: 4px 8px;
  border-radius: 999px;
  color: #f7fbff;
  font-size: 9px;
  font-weight: 900;
  text-align: center;
}

.featured-switch span:first-child {
  background: var(--gold);
  color: var(--brown-deep);
}

.pricing-feature-list {
  display: grid;
  gap: 13px;
  margin: auto 0 0;
  padding: 0 var(--plan-card-padding) var(--plan-card-padding);
  list-style: none;
}

.pricing-feature-list li {
  min-width: 0;
  display: grid;
  grid-template-columns: 22px minmax(0, 1fr);
  gap: 10px;
  align-items: start;
  color: #3e5872;
  font-size: 12px;
  font-weight: 750;
  line-height: 1.36;
}

.pricing-plan-featured .pricing-feature-list li {
  color: #f7fbff;
}

.pricing-feature-list .plan-mini-icon {
  width: 22px;
  height: 22px;
  border-width: 1px;
  color: var(--copper);
  background: #f7fbff;
}

.pricing-plan-featured .pricing-feature-list .plan-mini-icon {
  color: var(--gold);
  background: rgba(247, 251, 255, 0.08);
}

.pricing-feature-list .plan-mini-icon svg {
  width: 13px;
  height: 13px;
}

.process-grid article > span {
  display: inline-block;
  margin-bottom: 12px;
  color: var(--copper);
  font-family: var(--font-heading);
  font-size: 25px;
  font-weight: 800;
  line-height: 1;
}

.process-grid h3 {
  margin: 0;
  color: var(--brown-deep);
  font-family: var(--font-heading);
  font-size: 24px;
  line-height: 1.08;
}

.service-process {
  background:
    linear-gradient(90deg, rgba(247, 251, 255, 0.94), rgba(247, 251, 255, 0.94)),
    linear-gradient(135deg, #f5e5d0 0%, #f7fbff 100%);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.process-grid article {
  min-width: 0;
  padding: 26px;
  border-top: 4px solid var(--copper);
  background: #ffffff;
  box-shadow: 0 16px 34px rgba(0, 63, 125, 0.08);
}

.process-grid p {
  margin: 14px 0 0;
  color: #607489;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.5;
}

@media (max-width: 1180px) and (min-width: 981px) {
  .plans-section {
    padding: 20px 24px;
  }

  .plan-image-bubble {
    width: min(100%, 180px);
  }

  .plan-image-panel {
    min-height: 180px;
  }

  .plan-feature-grid-dark {
    grid-template-columns: repeat(5, minmax(0, 1fr));
    row-gap: 0;
  }

  .plans-choice-band ul {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }
}

@media (max-width: 980px) {
  .services-page {
    padding-top: 0;
  }

  .services-hero {
    width: 100%;
    height: auto;
    min-height: auto;
    grid-template-columns: 1fr;
  }

  .services-hero-copy {
    height: auto;
    min-height: 264px;
  }

  .services-hero-visual {
    height: auto;
    min-height: 228px;
  }

  .services-hero-visual::before,
  .services-hero-visual::after {
    display: none;
  }

  .plans-section {
    height: auto;
    min-height: auto;
    display: block;
  }

  .plans-grid,
  .process-grid {
    grid-template-columns: 1fr;
  }

  .plans-intro {
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 20px;
    margin-bottom: 24px;
    text-align: center;
  }

  .plans-heading {
    width: min(100%, 720px);
  }

  .plans-heading h2 em {
    margin-right: auto;
    margin-left: auto;
  }

  .plans-intro-media {
    width: min(100%, 720px);
    height: auto;
    min-height: 220px;
    border-radius: 8px;
  }

  .plan-card-top,
  .plan-permanent-card .plan-card-top {
    grid-template-columns: minmax(0, 1fr) minmax(210px, 0.55fr);
  }

  .plan-image-bubble {
    justify-self: end;
  }

  .plans-choice-band ul {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .plans-contact-strip {
    align-items: flex-start;
    flex-direction: column;
  }

  .plans-contact-strip a {
    width: 100%;
  }

}

@media (min-width: 721px) and (max-width: 980px) {
  .pricing-plans-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 620px) {
  .services-page,
  .services-hero,
  .services-hero-copy,
  .services-hero-visual,
  .plans-section,
  .service-process,
  .plan-card,
  .process-grid article {
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }

  .services-page {
    overflow: hidden;
  }

  .site-header {
    left: 0;
    width: 100%;
    transform: none;
    display: grid;
    grid-template-columns: 56px minmax(0, 1fr);
    grid-template-rows: auto auto;
    gap: 4px 10px;
    padding: 8px 14px;
    overflow: hidden;
  }

  .logo {
    width: 56px;
  }

  .main-nav {
    grid-column: 1 / -1;
  }

  .appointment-actions {
    justify-self: end;
    max-width: 100%;
    overflow: hidden;
  }

  .appointment-button {
    max-width: 132px;
    padding-right: 10px;
    padding-left: 10px;
    font-size: 12px;
  }

  .main-nav {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    justify-content: stretch;
    gap: 2px;
  }

  .main-nav a {
    overflow: hidden;
    font-size: 11px;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .services-hero {
    min-height: auto;
  }

  .services-hero-copy {
    min-height: 0;
    padding: 29px 18px 25px;
  }

  .services-hero h1 {
    max-width: 100%;
    font-size: clamp(31px, 8.4vw, 36px);
    line-height: 1.06;
    overflow-wrap: anywhere;
  }

  .services-hero-copy > p {
    font-size: 15px;
  }

  .hero-actions {
    align-items: stretch;
    grid-template-columns: 1fr;
  }

  .hero-contact-link {
    width: 100%;
  }

  .services-hero-visual {
    min-height: 186px;
  }

  .hero-service-panel {
    right: 16px;
    bottom: 16px;
  }

  .plans-section,
  .service-process {
    padding: 48px 16px;
  }

  .section-heading,
  .section-heading-left {
    margin-bottom: 26px;
  }

  .section-heading h2 {
    max-width: 100%;
    font-size: 29px;
    line-height: 1.08;
    overflow-wrap: anywhere;
  }

  .plans-family-badge {
    width: 148px;
  }

  .plans-family-badge span,
  .plans-family-badge strong {
    font-size: 12px;
  }

  .plans-pill {
    min-height: 32px;
    padding: 0 14px;
    font-size: 10px;
    letter-spacing: 0.13em;
  }

  .plans-heading h2 {
    font-size: 29px;
    line-height: 1.02;
  }

  .plans-heading h2 em {
    padding-right: 6px;
    padding-left: 6px;
    font-size: 29px;
  }

  .plans-heading p:not(.section-kicker) {
    font-size: 14px;
  }

  .plans-safety-note {
    right: 12px;
    bottom: 12px;
    width: min(230px, calc(100% - 24px));
    padding: 11px 12px;
  }

  .plans-safety-note span {
    font-size: 10px;
  }

  .plan-card {
    padding: 22px;
  }

  .plans-grid,
  .plan-card-top,
  .room-options,
  .plans-contact-strip,
  .plans-choice-band {
    width: 100%;
    max-width: 100%;
  }

  .plan-card-top,
  .plan-permanent-card .plan-card-top {
    grid-template-columns: 1fr;
  }

  .plan-card h3 {
    font-size: 32px;
    overflow-wrap: anywhere;
  }

  .plan-card-header p {
    width: 100%;
    max-width: 100%;
    font-size: 14px;
  }

  .featured-sales-points,
  .featured-sales-points li {
    width: 100%;
    max-width: 100%;
  }

  .plan-image-bubble {
    width: 190px;
    justify-self: center;
  }

  .plan-image-panel {
    width: 100%;
    min-height: 190px;
  }

  .room-options,
  .plan-feature-grid,
  .plan-feature-grid-dark,
  .plans-choice-band ul {
    grid-template-columns: 1fr;
  }

  .room-options article {
    padding: 13px;
  }

  .plan-feature-grid {
    gap: 0;
    padding-top: 14px;
  }

  .plan-feature-grid article {
    padding: 13px 0;
    border-right: 0;
    border-bottom: 1px solid rgba(0, 92, 174, 0.14);
  }

  .plan-feature-grid-dark article {
    border-bottom-color: rgba(255, 213, 74, 0.2);
  }

  .plan-feature-grid article:last-child {
    border-bottom: 0;
  }

  .plans-choice-band {
    align-items: stretch;
    flex-direction: column;
    padding: 18px;
  }

  .plans-choice-band strong {
    width: max-content;
    max-width: 100%;
  }

  .plans-choice-band li {
    padding: 0 0 0 12px;
    text-align: left;
  }

  .plans-contact-strip strong {
    font-size: 27px;
  }

  .plans-contact-strip span {
    font-size: 15px;
  }
}
