/* Katherine new home (demo) — does not replace existing Divi styles */

:root {
  --navy: #0a2540;
  --navy-deep: #071c30;
  --navy-soft: #163a5c;
  --text: #0a2540;
  --muted: #6b7c8f;
  --placeholder: #9aa8b8;
  --border: #d5dde6;
  --border-light: #e6ebf0;
  --bg: #ffffff;
  --gold: #f5b800;
  --shadow-nav: 0 10px 28px rgba(10, 37, 64, 0.16);
  --shadow-card: 0 14px 40px rgba(10, 37, 64, 0.08);
  --radius-sm: 10px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-pill: 999px;
  --font: "Plus Jakarta Sans", system-ui, sans-serif;
  --max: 1140px;
  --page-x: clamp(1.25rem, 4vw, 3rem);
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.5;
}

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

button,
input,
select,
textarea {
  font: inherit;
}

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

.container {
  width: 100%;
  max-width: var(--max);
  margin-inline: auto;
}

/* Full viewport section */
.home-screen {
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  background: var(--bg);
  padding-inline: var(--page-x);
}

/* —— Nav —— */
.site-header {
  flex-shrink: 0;
  padding: 1.35rem 0 0;
  position: relative;
  z-index: 50;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  background: var(--navy);
  color: #fff;
  border-radius: var(--radius-pill);
  padding: 0.45rem 0.5rem 0.45rem 1.15rem;
  box-shadow: var(--shadow-nav);
  min-height: 3.5rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  flex-shrink: 0;
  min-width: 0;
}

.brand-mark {
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 50%;
  border: 1.5px solid rgba(255, 255, 255, 0.9);
  display: grid;
  place-items: center;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  flex-shrink: 0;
}

.brand-name {
  font-size: 0.9rem;
  font-weight: 600;
  white-space: nowrap;
  letter-spacing: 0.01em;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  list-style: none;
  flex: 1;
  min-width: 0;
  padding: 0 0.5rem;
}

.nav-links a {
  font-size: 0.875rem;
  font-weight: 500;
  color: #fff;
  white-space: nowrap;
  padding: 0.38rem 0.8rem;
  border-radius: 8px;
  transition: opacity 0.2s ease, background 0.2s ease;
}

.nav-links a:hover {
  opacity: 0.85;
  background: rgba(255, 255, 255, 0.1);
}

.nav-links a.is-active {
  background: rgba(255, 255, 255, 0.18);
  opacity: 1;
}

.nav-links-actions {
  display: none;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-shrink: 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border-radius: var(--radius-sm);
  border: 1.5px solid transparent;
  padding: 0.75rem 1.2rem;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease,
    transform 0.15s ease;
  white-space: nowrap;
}

.btn:active {
  transform: translateY(1px);
}

.btn-icon {
  width: 1.1rem;
  height: 1.1rem;
  flex-shrink: 0;
}

.btn-signup {
  background: #fff;
  color: var(--navy);
  padding: 0.55rem 1.15rem;
  font-size: 0.84rem;
  border-radius: var(--radius-sm);
}

.btn-signup:hover {
  background: #f3f6f9;
}

.btn-login {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.85);
  padding: 0.55rem 1.15rem;
  font-size: 0.84rem;
  border-radius: var(--radius-sm);
}

.btn-login:hover {
  background: rgba(255, 255, 255, 0.08);
}

.nav-toggle {
  display: none;
  background: transparent;
  border: 0;
  color: #fff;
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 8px;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.nav-toggle svg {
  width: 1.3rem;
  height: 1.3rem;
}

.nav-toggle .icon-close {
  display: none;
}

.nav.is-open .nav-toggle .icon-menu {
  display: none;
}

.nav.is-open .nav-toggle .icon-close {
  display: block;
}

/* —— Hero —— */
.hero {
  flex: 1;
  display: flex;
  align-items: center;
  min-height: 0;
  padding: 2rem 0 2.5rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.78fr);
  gap: 3.5rem;
  align-items: center;
  width: 100%;
}

.hero-copy {
  min-width: 0;
}

.award-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: #fff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-pill);
  padding: 0.42rem 0.95rem 0.42rem 0.7rem;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.055em;
  color: #7a8796;
  text-transform: uppercase;
  margin-bottom: 1.4rem;
  box-shadow: 0 1px 2px rgba(10, 37, 64, 0.03);
}

.award-badge .star {
  flex-shrink: 0;
  display: block;
}

.hero-title {
  font-size: clamp(2rem, 3.55vw, 2.85rem);
  font-weight: 800;
  line-height: 1.15;
  color: var(--navy);
  letter-spacing: -0.025em;
  max-width: 11.5em;
  margin-bottom: 1.05rem;
}

.hero-sub {
  font-size: 1.05rem;
  font-weight: 400;
  color: var(--muted);
  max-width: 28em;
  line-height: 1.55;
  margin-bottom: 1.85rem;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.btn-primary {
  background: var(--navy);
  color: #fff;
  padding: 0.85rem 1.35rem;
  border-radius: var(--radius-sm);
}

.btn-primary:hover {
  background: var(--navy-deep);
}

.btn-outline {
  background: #fff;
  color: var(--navy);
  border-color: var(--navy);
  padding: 0.85rem 1.35rem;
  border-radius: var(--radius-sm);
}

.btn-outline:hover {
  background: #f5f8fb;
}

/* —— Form card —— */
.consult-card {
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  border: 1px solid rgba(10, 37, 64, 0.04);
  padding: 1.85rem 1.65rem 1.55rem;
  width: 100%;
}

.consult-card h2 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 1.45rem;
  letter-spacing: -0.01em;
}

.kj-form-alert {
  border-radius: 8px;
  padding: 0.75rem 0.9rem;
  margin: -0.5rem 0 1.1rem;
  font-size: 0.9rem;
  font-weight: 500;
  line-height: 1.4;
}

.kj-form-alert--success {
  background: #e8f6ee;
  color: #146c43;
  border: 1px solid #b7e4c7;
}

.kj-form-alert--error {
  background: #fdecec;
  color: #b42318;
  border: 1px solid #f5c2c0;
}

.kj-honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.field {
  position: relative;
  margin-bottom: 1.1rem;
}

.field label {
  position: absolute;
  left: 0.9rem;
  top: 0;
  transform: translateY(-50%);
  background: #fff;
  padding: 0 0.3rem;
  font-size: 0.78rem;
  font-weight: 500;
  color: #7a8796;
  z-index: 1;
  pointer-events: none;
  line-height: 1;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  background: #fff;
  color: var(--text);
  padding: 0.9rem 1rem;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  appearance: none;
  -webkit-appearance: none;
  font-size: 0.95rem;
}

.field input::placeholder,
.field textarea::placeholder {
  color: var(--placeholder);
  font-weight: 400;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: #8fa3b8;
  box-shadow: 0 0 0 3px rgba(10, 37, 64, 0.06);
}

.field select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%236b7c8f' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
  color: transparent;
  cursor: pointer;
}

.field select:invalid {
  color: transparent;
}

.field select:valid {
  color: var(--text);
}

.field select option {
  color: var(--text);
}

.field textarea {
  min-height: 5.25rem;
  resize: vertical;
  line-height: 1.45;
}

.btn-submit {
  width: 100%;
  margin-top: 0.15rem;
  padding: 0.95rem 1.25rem;
  border-radius: var(--radius-sm);
  background: var(--navy);
  color: #fff;
  border: 0;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: background 0.2s ease;
}

.btn-submit:hover {
  background: var(--navy-deep);
}

/* —— Tablet —— */
@media (max-width: 1100px) {
  .nav-links {
    display: none;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .nav {
    border-radius: 18px;
    padding: 0.5rem 0.6rem 0.5rem 1rem;
    position: relative;
  }

  .nav.is-open .nav-links {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    position: absolute;
    top: calc(100% + 0.5rem);
    left: 0;
    right: 0;
    background: var(--navy);
    border-radius: 14px;
    padding: 0.75rem;
    gap: 0.1rem;
    z-index: 60;
    box-shadow: var(--shadow-nav);
  }

  .nav.is-open .nav-links > li > a {
    display: block;
    padding: 0.7rem 0.85rem;
    border-radius: 8px;
    font-size: 0.92rem;
    white-space: normal;
  }

  .nav.is-open .nav-links > li > a:hover {
    background: rgba(255, 255, 255, 0.08);
    opacity: 1;
  }

  .nav.is-open .nav-links-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
    margin-top: 0.55rem;
    padding-top: 0.75rem;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
  }

  .nav.is-open .nav-links-actions .btn {
    width: 100%;
  }

  .hero-grid {
    gap: 2.5rem;
  }
}

@media (max-width: 900px) {
  .home-screen {
    height: auto;
    overflow: visible;
  }

  .hero {
    align-items: flex-start;
    padding: 2rem 0 2.75rem;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .hero-title {
    max-width: none;
    font-size: clamp(1.85rem, 6vw, 2.4rem);
  }

  .consult-card {
    max-width: 480px;
  }
}

/* —— Mobile —— */
@media (max-width: 640px) {
  .site-header {
    padding-top: 0.9rem;
  }

  .brand-name {
    font-size: 0.78rem;
    white-space: normal;
    line-height: 1.25;
    max-width: 9rem;
  }

  .brand-mark {
    width: 2rem;
    height: 2rem;
    font-size: 0.65rem;
  }

  .nav-actions {
    display: none;
  }

  .award-badge {
    font-size: 0.58rem;
    letter-spacing: 0.03em;
    line-height: 1.35;
    max-width: 100%;
  }

  .hero-sub {
    font-size: 0.98rem;
  }

  .hero-ctas {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-ctas .btn {
    width: 100%;
  }

  .consult-card {
    max-width: none;
    padding: 1.4rem 1.1rem 1.2rem;
  }

  .consult-card h2 {
    font-size: 1.1rem;
  }

  .field input,
  .field select,
  .field textarea {
    font-size: 16px;
  }
}

@media (max-height: 760px) and (min-width: 901px) {
  .site-header {
    padding-top: 0.85rem;
  }

  .hero {
    padding: 1rem 0 1.25rem;
  }

  .award-badge {
    margin-bottom: 0.85rem;
  }

  .hero-title {
    font-size: clamp(1.7rem, 3vw, 2.25rem);
    margin-bottom: 0.7rem;
  }

  .hero-sub {
    margin-bottom: 1.1rem;
    font-size: 0.98rem;
  }

  .field {
    margin-bottom: 0.75rem;
  }

  .field textarea {
    min-height: 3.5rem;
  }

  .consult-card {
    padding: 1.35rem 1.35rem 1.2rem;
  }

  .consult-card h2 {
    margin-bottom: 1rem;
  }
}

@media (max-height: 560px) {
  .home-screen {
    height: auto;
  }
}

/* —— Stats bar —— */
.stats-bar {
  background: var(--navy);
  color: #fff;
  padding: 2.75rem var(--page-x);
}

.stats-bar__inner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  text-align: center;
  align-items: center;
}

.stat__value {
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin-bottom: 0.35rem;
}

.stat__label {
  font-size: 1rem;
  font-weight: 500;
  opacity: 0.92;
}

/* —— Services —— */
.services-section {
  background: #fff;
  padding: 4rem var(--page-x) 4.5rem;
}

.services-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1.5rem 2rem;
  margin-bottom: 2.25rem;
}

.services-header__copy {
  min-width: 0;
  max-width: 36rem;
}

.services-title {
  font-size: clamp(1.75rem, 3vw, 2.35rem);
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin-bottom: 0.65rem;
}

.services-sub {
  font-size: 1.05rem;
  color: var(--muted);
  line-height: 1.55;
}

.services-explore {
  flex-shrink: 0;
  border-radius: var(--radius-pill);
  padding: 0.75rem 1.25rem;
  gap: 0.55rem;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.15rem;
}

.service-card {
  background: #fff;
  border: 1px solid var(--border-light);
  border-radius: 14px;
  padding: 1.5rem 1.25rem 1.6rem;
  box-shadow: 0 6px 20px rgba(10, 37, 64, 0.04);
}

.service-card__icon {
  width: 3rem;
  height: 3rem;
  border-radius: 10px;
  background: #e8f1f8;
  display: grid;
  place-items: center;
  margin-bottom: 1.15rem;
  color: var(--navy);
}

.service-card__icon svg {
  width: 1.35rem;
  height: 1.35rem;
}

.service-card__title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.55rem;
  line-height: 1.3;
}

.service-card__desc {
  font-size: 0.92rem;
  color: var(--muted);
  line-height: 1.55;
}

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

@media (max-width: 700px) {
  .stats-bar {
    padding: 2.25rem var(--page-x);
  }

  .stats-bar__inner {
    gap: 1.75rem 1rem;
  }

  .stat__value {
    font-size: 1.75rem;
  }

  .stat__label {
    font-size: 0.9rem;
  }

  .services-section {
    padding: 3rem var(--page-x) 3.5rem;
  }

  .services-header {
    flex-direction: column;
    align-items: stretch;
  }

  .services-explore {
    width: 100%;
  }
}

@media (max-width: 560px) {
  .stats-bar__inner {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }
}

/* —— Hometown experts —— */
.experts-section {
  background: var(--navy);
  color: #fff;
  padding: 4.5rem var(--page-x) 5rem;
}

.experts-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.95fr);
  gap: clamp(2rem, 4vw, 3.5rem);
  align-items: center;
}

.experts-copy {
  min-width: 0;
}

.experts-title {
  font-size: clamp(1.85rem, 3.2vw, 2.5rem);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 1.25rem;
}

.experts-text {
  font-size: 1.02rem;
  line-height: 1.65;
  opacity: 0.92;
  max-width: 38rem;
  margin-bottom: 1.85rem;
}

.experts-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.btn-light {
  background: #fff;
  color: var(--navy);
  padding: 0.85rem 1.35rem;
  border-radius: var(--radius-sm);
}

.btn-light:hover {
  background: #f3f6f9;
}

.btn-outline-light {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.85);
  padding: 0.85rem 1.35rem;
  border-radius: var(--radius-sm);
}

.btn-outline-light:hover {
  background: rgba(255, 255, 255, 0.08);
}

.experts-media {
  min-width: 0;
}

.experts-image-frame {
  border: 3px solid #fff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.2);
  background: #fff;
}

.experts-image-frame img {
  display: block;
  width: 100%;
  height: auto;
  vertical-align: middle;
}

@media (max-width: 900px) {
  .experts-section {
    padding: 3.5rem var(--page-x) 4rem;
  }

  .experts-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .experts-text {
    max-width: none;
  }

  .experts-ctas {
    flex-direction: column;
    align-items: stretch;
  }

  .experts-ctas .btn {
    width: 100%;
  }
}

/* —— Georgetown area services —— */
.area-section {
  background: #f7f9fb;
  padding: 4.5rem var(--page-x) 5rem;
}

.area-header {
  text-align: center;
  max-width: 40rem;
  margin: 0 auto 2.5rem;
}

.area-title {
  font-size: clamp(1.85rem, 3vw, 2.35rem);
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin-bottom: 0.65rem;
}

.area-sub {
  font-size: 1.05rem;
  color: var(--muted);
  line-height: 1.55;
}

.area-card {
  background: #fff;
  border: 1px solid var(--border-light);
  border-radius: 16px;
  padding: clamp(1.5rem, 3vw, 2.25rem) clamp(1.25rem, 3vw, 2.5rem);
  box-shadow: 0 8px 28px rgba(10, 37, 64, 0.04);
}

.area-columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 3rem;
}

.area-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.area-list__item {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  padding: 1.05rem 0;
  border-bottom: 1px dashed var(--border);
}

.area-list__item:last-child {
  border-bottom: 0;
}

.area-list__check {
  flex-shrink: 0;
  width: 1.35rem;
  height: 1.35rem;
  border-radius: 50%;
  background: var(--navy);
  color: #fff;
  display: grid;
  place-items: center;
  margin-top: 0.1rem;
}

.area-list__check svg {
  width: 0.7rem;
  height: 0.7rem;
}

.area-list__text {
  font-size: 0.98rem;
  color: #3d4f61;
  line-height: 1.45;
  font-weight: 500;
}

@media (max-width: 768px) {
  .area-section {
    padding: 3.5rem var(--page-x) 4rem;
  }

  .area-columns {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .area-list + .area-list {
    border-top: 1px dashed var(--border);
    margin-top: 0.25rem;
    padding-top: 0.25rem;
  }
}

/* —— Meet Katherine —— */
.meet-section {
  background: #fff;
  padding: 4.75rem var(--page-x) 5.25rem;
}

.meet-grid {
  display: grid;
  grid-template-columns: minmax(260px, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(2rem, 4.5vw, 3.75rem);
  align-items: center;
}

.meet-media {
  min-width: 0;
}

.meet-photo {
  position: relative;
  border: 1px solid #dce4ec;
  border-radius: 18px;
  padding: 10px;
  background: #fff;
}

.meet-photo img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 12px;
  object-fit: cover;
  aspect-ratio: 4 / 5;
}

.meet-badge {
  position: absolute;
  right: 1.15rem;
  bottom: 1.15rem;
  width: 8.25rem;
  min-height: 8.25rem;
  background: var(--navy);
  color: #fff;
  border-radius: 12px;
  padding: 0.85rem 0.7rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  box-shadow: 0 10px 24px rgba(10, 37, 64, 0.22);
}

.meet-badge__years {
  font-size: 1.7rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 0.35rem;
}

.meet-badge__text {
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1.35;
  text-transform: uppercase;
}

.meet-copy {
  min-width: 0;
}

.meet-title {
  font-size: clamp(2rem, 3.2vw, 2.55rem);
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.025em;
  line-height: 1.15;
  margin-bottom: 1.15rem;
}

.meet-text {
  font-size: 1.02rem;
  color: #4a5d70;
  line-height: 1.7;
  margin-bottom: 0.95rem;
  max-width: 42rem;
}

.meet-text:last-of-type {
  margin-bottom: 1.65rem;
}

.meet-features {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.85rem;
  margin-bottom: 1.6rem;
}

.meet-feature {
  background: #fff;
  border: 1px solid var(--border-light);
  border-radius: 12px;
  padding: 1.05rem 0.95rem 1.15rem;
  box-shadow: 0 8px 22px rgba(10, 37, 64, 0.05);
}

.meet-feature__icon {
  width: 2.35rem;
  height: 2.35rem;
  border-radius: 8px;
  background: #e8f1f8;
  color: var(--navy);
  display: grid;
  place-items: center;
  margin-bottom: 0.85rem;
}

.meet-feature__icon svg {
  width: 1.15rem;
  height: 1.15rem;
}

.meet-feature__title {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.35rem;
  line-height: 1.3;
}

.meet-feature__desc {
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.5;
}

.btn-meet {
  background: var(--navy);
  color: #fff;
  border-radius: 8px;
  padding: 0.85rem 1.35rem;
  gap: 0.5rem;
}

.btn-meet:hover {
  background: var(--navy-deep);
}

@media (max-width: 980px) {
  .meet-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .meet-photo {
    max-width: 420px;
  }

  .meet-photo img {
    aspect-ratio: 4 / 5;
  }
}

@media (max-width: 700px) {
  .meet-section {
    padding: 3.5rem var(--page-x) 4rem;
  }

  .meet-features {
    grid-template-columns: 1fr;
  }

  .btn-meet {
    width: 100%;
  }
}

/* —— Commitment —— */
.commit-section {
  background: #f7f9fb;
  padding: 4.75rem var(--page-x) 5.25rem;
}

.commit-header {
  text-align: center;
  max-width: 38rem;
  margin: 0 auto 2.75rem;
}

.commit-title {
  font-size: clamp(1.85rem, 3vw, 2.4rem);
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.025em;
  line-height: 1.2;
  margin-bottom: 0.75rem;
}

.commit-sub {
  font-size: 1.05rem;
  color: var(--muted);
  line-height: 1.6;
}

.commit-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
  align-items: stretch;
}

.commit-card {
  background: #fff;
  border: 1px solid var(--border-light);
  border-radius: 16px;
  padding: 2.1rem 1.5rem 2.15rem;
  text-align: center;
  box-shadow: 0 10px 28px rgba(10, 37, 64, 0.05);
}

.commit-card--featured {
  background: var(--navy);
  border-color: var(--navy);
  box-shadow: 0 14px 32px rgba(10, 37, 64, 0.18);
}

.commit-card__icon {
  width: 3.35rem;
  height: 3.35rem;
  border-radius: 50%;
  background: var(--navy);
  color: #fff;
  display: grid;
  place-items: center;
  margin: 0 auto 1.15rem;
}

.commit-card--featured .commit-card__icon {
  background: #fff;
  color: var(--navy);
}

.commit-card__icon svg {
  width: 1.45rem;
  height: 1.45rem;
}

.commit-card__title {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.7rem;
}

.commit-card--featured .commit-card__title {
  color: #fff;
}

.commit-card__text {
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.6;
}

.commit-card--featured .commit-card__text {
  color: rgba(255, 255, 255, 0.9);
}

@media (max-width: 900px) {
  .commit-grid {
    grid-template-columns: 1fr;
    max-width: 420px;
    margin-inline: auto;
  }

  .commit-section {
    padding: 3.5rem var(--page-x) 4rem;
  }
}

/* —— Testimonials —— */
.trust-section {
  background: #fff;
  padding: 4.75rem var(--page-x) 5.25rem;
}

.trust-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}

.trust-copy {
  min-width: 0;
}

.trust-title {
  font-size: clamp(1.85rem, 3.2vw, 2.45rem);
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.025em;
  line-height: 1.18;
  margin-bottom: 1rem;
  max-width: 14ch;
}

.trust-sub {
  font-size: 1.05rem;
  color: var(--muted);
  line-height: 1.65;
  max-width: 34rem;
  margin-bottom: 1.75rem;
}

.trust-cards {
  display: flex;
  flex-direction: column;
  gap: 1.15rem;
}

.quote-card {
  background: #fff;
  border: 1px solid var(--border-light);
  border-radius: 14px;
  padding: 1.45rem 1.4rem 1.35rem;
  box-shadow: 0 8px 24px rgba(10, 37, 64, 0.04);
}

.quote-stars {
  display: flex;
  gap: 0.2rem;
  margin-bottom: 0.85rem;
}

.quote-stars svg {
  width: 1.05rem;
  height: 1.05rem;
  display: block;
}

.quote-text {
  font-size: 0.98rem;
  color: #4a5d70;
  line-height: 1.65;
  margin-bottom: 1.15rem;
}

.quote-person {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.quote-avatar {
  width: 2.6rem;
  height: 2.6rem;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  display: grid;
  place-items: center;
  font-size: 0.72rem;
  font-weight: 700;
  color: #fff;
}

.quote-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.quote-avatar--mr {
  background: #d4a017;
}

.quote-avatar--sl {
  background: var(--navy);
}

.quote-name {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.25;
}

.quote-role {
  font-size: 0.82rem;
  color: #8a97a6;
  line-height: 1.3;
}

@media (max-width: 900px) {
  .trust-section {
    padding: 3.5rem var(--page-x) 4rem;
  }

  .trust-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .trust-title {
    max-width: none;
  }
}

/* —— Consultation CTA banner —— */
.cta-banner {
  background: #fff;
  padding: 1.5rem var(--page-x) 5rem;
}

.cta-banner__inner {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(240px, 0.95fr);
  align-items: stretch;
  background: #fff;
  border: 1px solid var(--border-light);
  border-radius: 48px;
  overflow: hidden;
  min-height: 280px;
}

.cta-banner__copy {
  padding: clamp(1.75rem, 4vw, 3rem) clamp(1.5rem, 4vw, 3.25rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
  z-index: 1;
}

.cta-banner__title {
  font-size: clamp(1.45rem, 2.6vw, 2rem);
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.02em;
  line-height: 1.25;
  margin-bottom: 0.85rem;
  max-width: 22ch;
}

.cta-banner__text {
  font-size: 1rem;
  color: var(--muted);
  line-height: 1.6;
  max-width: 38rem;
  margin-bottom: 1.4rem;
}

.cta-banner__media {
  position: relative;
  min-height: 220px;
}

.cta-banner__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
}

.cta-banner__media::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 55%;
  background: linear-gradient(to right, #fff 0%, rgba(255, 255, 255, 0.85) 28%, rgba(255, 255, 255, 0) 100%);
  pointer-events: none;
  z-index: 1;
}

@media (max-width: 900px) {
  .cta-banner {
    padding-bottom: 3.5rem;
  }

  .cta-banner__inner {
    grid-template-columns: 1fr;
    border-radius: 28px;
  }

  .cta-banner__title {
    max-width: none;
  }

  .cta-banner__media {
    min-height: 220px;
    max-height: 280px;
  }

  .cta-banner__media::before {
    width: 100%;
    height: 55%;
    inset: 0 0 auto 0;
    background: linear-gradient(to bottom, #fff 0%, rgba(255, 255, 255, 0) 100%);
  }
}

/* —— QuickBooks expertise carousel —— */
.qb-section {
  background: #fff;
  padding: 4.5rem var(--page-x) 5rem;
}

.qb-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: clamp(1.75rem, 4vw, 3.5rem);
  align-items: center;
}

.qb-carousel {
  position: relative;
  min-height: 280px;
  -webkit-mask-image: linear-gradient(
    90deg,
    transparent 0%,
    #000 12%,
    #000 88%,
    transparent 100%
  );
  mask-image: linear-gradient(
    90deg,
    transparent 0%,
    #000 12%,
    #000 88%,
    transparent 100%
  );
}

.qb-track {
  position: relative;
  height: 280px;
}

.qb-slide {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 168px;
  background: transparent;
  border: 0;
  padding: 0;
  cursor: pointer;
  opacity: 0.42;
  filter: blur(1.6px);
  transform: translate(-50%, -50%) scale(0.78);
  transition: transform 0.4s ease, opacity 0.4s ease, filter 0.4s ease;
  z-index: 1;
}

.qb-slide img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 16px;
  box-shadow: 0 12px 32px rgba(10, 37, 64, 0.1);
}

.qb-slide.is-prev {
  transform: translate(calc(-50% - 132px), -50%) scale(0.78);
}

.qb-slide.is-next {
  transform: translate(calc(-50% + 132px), -50%) scale(0.78);
}

.qb-slide.is-active {
  width: 200px;
  opacity: 1;
  filter: none;
  transform: translate(-50%, -50%) scale(1);
  z-index: 3;
  cursor: default;
}

.qb-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 0.35rem;
  position: relative;
  z-index: 4;
}

.qb-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: 0;
  padding: 0;
  background: #d5dde6;
  cursor: pointer;
}

.qb-dot.is-active {
  background: var(--navy);
}

.qb-copy {
  min-width: 0;
}

.qb-title {
  font-size: clamp(1.7rem, 3vw, 2.25rem);
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin-bottom: 0.85rem;
}

.qb-text {
  font-size: 1.05rem;
  color: var(--muted);
  line-height: 1.65;
  max-width: 32rem;
  margin-bottom: 1.5rem;
}

.qb-copy .btn-primary {
  border-radius: 12px;
  padding: 0.85rem 1.45rem;
}

@media (max-width: 900px) {
  .qb-section {
    padding: 3.25rem var(--page-x) 4rem;
  }

  .qb-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .qb-track {
    height: 250px;
  }

  .qb-slide {
    width: 140px;
  }

  .qb-slide.is-prev {
    transform: translate(calc(-50% - 108px), -50%) scale(0.78);
  }

  .qb-slide.is-next {
    transform: translate(calc(-50% + 108px), -50%) scale(0.78);
  }

  .qb-slide.is-active {
    width: 172px;
  }
}

/* —— Important Links —— */
.links-section {
  background: #fff;
  padding: 3.15rem var(--page-x) 3.4rem;
  box-shadow:
    0 -10px 28px rgba(10, 37, 64, 0.06),
    0 10px 28px rgba(10, 37, 64, 0.06);
}

.links-title {
  text-align: center;
  font-size: clamp(1.55rem, 2.5vw, 1.95rem);
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.02em;
  margin-bottom: 1.65rem;
}

.links-row {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1.1rem;
}

.ilink {
  display: flex;
  align-items: center;
  background: var(--navy);
  color: #fff;
  border-radius: 10px;
  min-height: 5.6rem;
  padding: 0.95rem 1.1rem;
  font-weight: 600;
  font-size: 0.95rem;
  line-height: 1.35;
  text-align: left;
  white-space: normal;
  transition: background 0.2s ease;
}

.ilink:hover {
  background: var(--navy-deep);
}

@media (max-width: 900px) {
  .links-section {
    padding: 2.5rem var(--page-x) 2.75rem;
  }

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

@media (max-width: 520px) {
  .links-row {
    grid-template-columns: 1fr;
  }
}

/* —— Footer —— */
.site-footer {
  background: var(--navy);
  color: #fff;
  padding-block: 3.5rem 1.35rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(15rem, 1.35fr) 0.75fr 1.15fr 0.7fr 0.85fr;
  gap: 2rem 1.75rem;
  align-items: start;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  margin-bottom: 0.95rem;
}

.footer-brand-name {
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  line-height: 1.3;
}

.footer-tagline {
  font-size: 0.9rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.88);
  max-width: 22rem;
  margin-bottom: 1.35rem;
}

.footer-news__label {
  display: block;
  font-size: 0.88rem;
  font-weight: 600;
  margin-bottom: 0.55rem;
}

.footer-news__row {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  max-width: 22.5rem;
}

.footer-news input {
  flex: 1;
  min-width: 0;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.85);
  border-radius: 8px;
  color: #fff;
  padding: 0.62rem 0.85rem;
}

.footer-news input::placeholder {
  color: rgba(255, 255, 255, 0.7);
}

.footer-news input:focus {
  outline: 2px solid #fff;
  outline-offset: 1px;
}

.footer-news button {
  flex-shrink: 0;
  background: #fff;
  color: var(--navy);
  border: 0;
  border-radius: var(--radius-pill);
  padding: 0.62rem 1.15rem;
  font-weight: 700;
  font-size: 0.88rem;
  cursor: pointer;
}

.footer-news button:hover {
  background: #f3f6f9;
}

.footer-news__note {
  margin-top: 0.55rem;
  font-size: 0.82rem;
  color: #b7e4c7;
}

.footer-col h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.85rem;
}

.footer-col a {
  display: block;
  font-size: 0.9rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.92);
  padding: 0.28rem 0;
  line-height: 1.4;
}

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

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  margin-top: 2.75rem;
  padding-top: 1.2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.85);
}

.footer-copy {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.9);
}

.footer-social {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.footer-social a {
  width: 2.1rem;
  height: 2.1rem;
  border-radius: 50%;
  background: #fff;
  color: var(--navy);
  display: grid;
  place-items: center;
}

.footer-social a:hover {
  background: #f3f6f9;
}

.footer-social svg {
  width: 0.95rem;
  height: 0.95rem;
  display: block;
}

.site-footer .kj-form-alert {
  margin: 0 0 0.75rem;
}

@media (max-width: 1100px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-brand-col {
    grid-column: 1 / -1;
  }
}

@media (max-width: 640px) {
  .site-footer {
    padding-block: 2.75rem 1.2rem;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 1.75rem;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* —— Inner pages (Our Services, etc.) —— */
.page-shell {
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  background: var(--bg);
}

.page-shell .site-header {
  flex-shrink: 0;
}

.page-main {
  flex: 1;
}

.page-hero {
  text-align: center;
  padding: 5.5rem 0 1.5rem;
}

.page-hero__title {
  font-size: clamp(2rem, 4vw, 2.85rem);
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.025em;
  line-height: 1.15;
  margin-bottom: 0.9rem;
}

.page-hero__sub {
  font-size: 1.08rem;
  color: var(--muted);
  max-width: 38rem;
  margin: 0 auto;
  line-height: 1.65;
}

.svc-bar {
  position: sticky;
  top: 0.75rem;
  z-index: 40;
  padding: 0.35rem 0 1.75rem;
}

.svc-bar__track {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.1rem;
  max-width: var(--max);
  margin-inline: auto;
  padding: 0.32rem;
  background: #fff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-pill);
  box-shadow: 0 8px 28px rgba(10, 37, 64, 0.1);
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.svc-bar__track::-webkit-scrollbar {
  display: none;
}

.svc-bar__item {
  flex: 1 0 auto;
  text-align: center;
  white-space: nowrap;
  padding: 0.68rem 1.2rem;
  border-radius: var(--radius-pill);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: -0.01em;
  color: var(--navy);
  transition: background 0.18s ease, color 0.18s ease;
}

.svc-bar__item:hover {
  background: rgba(10, 37, 64, 0.06);
}

.svc-bar__item.is-active {
  background: var(--navy);
  color: #fff;
}

.svc-bar__item.is-active:hover {
  background: var(--navy-deep);
  color: #fff;
}

@media (max-width: 900px) {
  .page-hero {
    padding: 3.25rem 0 1.15rem;
  }

  .svc-bar {
    top: 0.5rem;
    padding-bottom: 1.25rem;
  }

  .svc-bar__track {
    justify-content: flex-start;
  }

  .svc-bar__item {
    padding: 0.62rem 1rem;
    font-size: 0.88rem;
  }
}

/* —— Our Services article (Accounting & Bookkeeping, etc.) —— */
.svc-article {
  padding: 2.75rem 0;
  scroll-margin-top: 5.5rem;
}

.page-hero + .svc-article,
.svc-bar + .svc-article {
  padding-top: 0.5rem;
}

.svc-article:last-child {
  padding-bottom: 5.75rem;
}

.svc-article__title {
  text-align: center;
  font-size: clamp(1.85rem, 3.4vw, 2.55rem);
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.025em;
  line-height: 1.2;
  margin-bottom: 1.85rem;
}

.svc-article p {
  font-size: 1.05rem;
  line-height: 1.72;
  color: #5b6d7e;
  margin-bottom: 1.1rem;
}

.svc-article h3 {
  font-size: clamp(1.2rem, 2vw, 1.45rem);
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.015em;
  line-height: 1.3;
  margin: 2.75rem 0 0.9rem;
}

.svc-article .btn {
  margin-top: 0.55rem;
}

.svc-list {
  margin: 0.2rem 0 1.15rem 1.2rem;
  padding: 0;
  color: #5b6d7e;
}

.svc-list li {
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 0.28rem;
  padding-left: 0.2rem;
}

.svc-list li::marker {
  color: var(--navy);
}

/* —— Packages / pricing —— */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.price-section {
  padding: 0.5rem 0 2.25rem;
}

.price-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.7rem 0.85rem;
  margin-bottom: 2.6rem;
}

.price-toggle__label {
  font-size: 0.98rem;
  font-weight: 600;
  color: #6b7c8f;
}

.price-toggle:not(.is-yearly) .price-toggle__label--monthly,
.price-toggle.is-yearly .price-toggle__label--yearly {
  color: var(--navy);
}

.price-toggle__switch {
  width: 3.15rem;
  height: 1.72rem;
  border: 0;
  border-radius: var(--radius-pill);
  background: #d8dee6;
  padding: 0.18rem;
  cursor: pointer;
  flex-shrink: 0;
}

.price-toggle__knob {
  display: block;
  width: 1.36rem;
  height: 1.36rem;
  border-radius: 50%;
  background: var(--navy);
  transition: transform 0.2s ease;
}

.price-toggle.is-yearly .price-toggle__knob {
  transform: translateX(1.42rem);
}

.price-toggle__save {
  background: #d8f3e3;
  color: #1f7a48;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  padding: 0.22rem 0.58rem;
  border-radius: var(--radius-pill);
}

.price-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.35rem;
  align-items: stretch;
}

.price-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--border-light);
  border-radius: 18px;
  padding: 1.85rem 1.55rem 1.7rem;
  box-shadow: 0 10px 28px rgba(10, 37, 64, 0.06);
}

.price-card.is-featured {
  border: 2px solid var(--navy);
  box-shadow: 0 14px 36px rgba(10, 37, 64, 0.1);
}

.price-card__badge {
  position: absolute;
  top: 1.15rem;
  right: 1.15rem;
  background: var(--navy);
  color: #fff;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  padding: 0.38rem 0.72rem;
  border-radius: var(--radius-pill);
}

.price-card__name {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.02em;
  line-height: 1.25;
  margin-bottom: 0.4rem;
}

.price-card.is-featured .price-card__name {
  padding-right: 6.5rem;
}

.price-card__desc {
  font-size: 0.95rem;
  color: #6b7c8f;
  line-height: 1.5;
  margin-bottom: 1.15rem;
}

.price-card__price {
  display: flex;
  align-items: baseline;
  gap: 0.4rem;
  margin-bottom: 1.2rem;
}

.price-card__amount {
  font-size: clamp(2rem, 3vw, 2.45rem);
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.03em;
  line-height: 1;
}

.price-card__period {
  font-size: 0.95rem;
  font-weight: 500;
  color: #8a97a6;
}

.price-card__btn {
  width: 100%;
  justify-content: center;
  border-radius: 12px;
  padding: 0.92rem 1.2rem;
  margin-bottom: 1.45rem;
}

.price-card__features-title {
  font-size: 1.02rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 0.85rem;
}

.price-card__features {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.price-card__features li {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  font-size: 0.95rem;
  color: #5b6d7e;
  line-height: 1.45;
}

.price-check {
  width: 1.15rem;
  height: 1.15rem;
  flex-shrink: 0;
  color: var(--navy);
  margin-top: 0.12rem;
}

@media (max-width: 980px) {
  .price-grid {
    grid-template-columns: 1fr;
    max-width: 26.5rem;
    margin-inline: auto;
  }

  .price-card__name {
    padding-right: 0;
  }

  .price-card.is-featured {
    padding-top: 3.1rem;
  }
}

.premier-section {
  padding: 0.5rem 0 3.25rem;
}

.premier-banner {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.9fr) minmax(0, 0.9fr) minmax(12.5rem, 0.72fr);
  gap: 1.6rem 1.8rem;
  align-items: center;
  background: var(--navy);
  color: #fff;
  border-radius: 22px;
  padding: 2.1rem 2rem 2rem;
}

.premier-banner__title {
  font-size: 1.85rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 0.55rem;
}

.premier-banner__desc {
  font-size: 0.95rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.86);
  max-width: 18rem;
}

.premier-banner__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.premier-banner__list li {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  font-size: 0.95rem;
  line-height: 1.4;
  color: #fff;
}

.premier-check {
  width: 1.15rem;
  height: 1.15rem;
  flex-shrink: 0;
  margin-top: 0.1rem;
}

.premier-banner__cta {
  text-align: left;
}

.premier-banner__price {
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 0.85rem;
}

.premier-banner__btn {
  background: #fff;
  color: var(--navy);
  border-radius: 12px;
  padding: 0.78rem 1.2rem;
  font-weight: 700;
}

.premier-banner__btn:hover {
  background: #f3f6f9;
}

.compare-section {
  padding: 1rem 0 3.25rem;
}

.compare-section__title {
  text-align: center;
  font-size: clamp(1.7rem, 3vw, 2.2rem);
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.02em;
  margin-bottom: 1.75rem;
}

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

.compare-table {
  width: 100%;
  min-width: 720px;
  border-collapse: collapse;
}

.compare-table th,
.compare-table td {
  padding: 1.15rem 0.85rem;
  text-align: center;
  vertical-align: middle;
}

.compare-table thead th {
  font-size: 1.02rem;
  font-weight: 800;
  color: var(--navy);
}

.compare-table thead th:first-child,
.compare-table tbody th {
  text-align: left;
  padding-left: 1.1rem;
}

.compare-table tbody th {
  font-size: 0.98rem;
  font-weight: 800;
  color: var(--navy);
}

.compare-table tbody tr:nth-child(even) {
  background: #f5f7fa;
}

.compare-table tbody td {
  color: #6b7c8f;
}

.compare-table .price-check,
.compare-table .price-x {
  width: 1.25rem;
  height: 1.25rem;
  display: inline-block;
  vertical-align: middle;
  color: var(--navy);
}

.compare-table__text {
  font-size: 0.95rem;
  font-weight: 500;
  color: #6b7c8f;
}

.guide-section {
  padding: 0.25rem 0 3.25rem;
}

.guide-section__title {
  text-align: center;
  font-size: clamp(1.7rem, 3vw, 2.35rem);
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.02em;
}

.guide-section__sub {
  text-align: center;
  color: #6b7c8f;
  font-size: 0.98rem;
  margin: 0.55rem auto 1.75rem;
  max-width: 40rem;
  line-height: 1.5;
}

.guide-wrap {
  overflow-x: auto;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  background: #fff;
}

.guide-table {
  width: 100%;
  min-width: 860px;
  border-collapse: collapse;
}

.guide-table thead th {
  background: var(--navy);
  color: #fff;
  font-weight: 800;
  padding: 1.05rem 0.7rem 1.1rem;
  text-align: center;
  vertical-align: middle;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.guide-table thead th:first-child {
  text-align: left;
  padding-left: 1.2rem;
  font-size: 0.95rem;
  width: 28%;
}

.guide-table thead th:last-child,
.guide-table tbody td:last-child {
  border-right: 0;
}

.guide-table__plan {
  display: block;
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: -0.01em;
}

.guide-table__who {
  display: block;
  margin-top: 0.28rem;
  font-size: 0.72rem;
  font-weight: 500;
  line-height: 1.35;
  color: rgba(255, 255, 255, 0.78);
}

.guide-table tbody th,
.guide-table tbody td {
  padding: 0.92rem 0.7rem;
  text-align: center;
  vertical-align: middle;
  border-right: 1px solid #edf1f5;
  border-top: 1px solid #edf1f5;
}

.guide-table tbody th {
  text-align: left;
  padding-left: 1.2rem;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--navy);
}

.guide-table tbody tr:nth-child(even):not(.guide-table__cat):not(.guide-table__price-row) {
  background: #f5f7fa;
}

.guide-table__price-row {
  background: #eef1f5;
}

.guide-table__price-row th {
  font-weight: 700;
}

.guide-table__amount {
  display: block;
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.02em;
}

.guide-table__period {
  display: block;
  font-size: 0.78rem;
  color: #7a8796;
  margin-top: 0.12rem;
}

.guide-table__cat th {
  background: var(--navy);
  color: #fff;
  text-align: left;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 0.72rem 1.2rem;
  border: 0;
}

.guide-table .price-check {
  width: 1.2rem;
  height: 1.2rem;
  color: var(--navy);
  display: inline-block;
  vertical-align: middle;
}

.guide-dash {
  color: #c5ced8;
  font-size: 1.2rem;
  font-weight: 500;
  line-height: 1;
}

.guide-addon {
  display: inline-block;
  background: #e8edf2;
  color: #5a6b7c;
  border-radius: 999px;
  padding: 0.22rem 0.72rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.guide-table__text {
  font-size: 0.92rem;
  font-weight: 500;
  color: #6b7c8f;
}

.pkg-cta {
  padding: 0.5rem 0 5.75rem;
}

.pkg-cta__inner {
  background: var(--navy);
  color: #fff;
  border-radius: 22px;
  padding: clamp(2.4rem, 5vw, 3.75rem) clamp(1.4rem, 5vw, 4.25rem);
  text-align: center;
}

.pkg-cta__title {
  font-size: clamp(1.7rem, 3vw, 2.25rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #fff;
  margin-bottom: 0.85rem;
}

.pkg-cta__text {
  font-size: 1rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.9);
  max-width: 40rem;
  margin: 0 auto 1.55rem;
}

.pkg-cta__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  color: var(--navy);
  border-radius: 999px;
  padding: 0.78rem 1.7rem;
  font-weight: 600;
  font-size: 0.98rem;
}

.pkg-cta__btn:hover {
  background: #f3f6f9;
}

.contact-section {
  padding: 1.75rem 0 5.75rem;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 1.35rem;
  align-items: stretch;
}

.contact-aside {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  min-width: 0;
}

.contact-card {
  background: var(--navy);
  color: #fff;
  border-radius: 22px;
  padding: 2rem 1.75rem 1.85rem;
}

.contact-card__title {
  font-size: clamp(1.45rem, 2.4vw, 1.85rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 0.45rem;
}

.contact-card__sub {
  font-size: 0.95rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.78);
  margin-bottom: 1.55rem;
}

.contact-card__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.35rem 1.1rem;
}

.contact-card__label {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  margin-bottom: 0.35rem;
}

.contact-card__item a,
.contact-card__text {
  font-size: 0.92rem;
  font-weight: 500;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.92);
}

.contact-card__item a:hover {
  color: #fff;
}

.contact-card__social {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  flex-wrap: wrap;
}

.contact-card__social a {
  width: 1.85rem;
  height: 1.85rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  display: grid;
  place-items: center;
}

.contact-card__social a:hover {
  background: rgba(255, 255, 255, 0.22);
}

.contact-card__social svg {
  width: 0.85rem;
  height: 0.85rem;
}

.contact-map {
  border-radius: 22px;
  overflow: hidden;
  min-height: 230px;
  background: #e8edf2;
  flex: 1;
}

.contact-map iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 230px;
  border: 0;
}

.contact-form {
  background: #fff;
  border: 1px solid var(--border-light);
  border-radius: 22px;
  box-shadow: var(--shadow-card);
  padding: 2rem 1.75rem 1.85rem;
  min-width: 0;
}

.contact-form .field textarea {
  min-height: 7.5rem;
}

.contact-form__btn {
  width: 100%;
  margin-top: 0.35rem;
  border: 0;
  background: var(--navy);
  color: #fff;
  border-radius: 999px;
  padding: 0.95rem 1.25rem;
  font-weight: 700;
  font-size: 0.98rem;
  cursor: pointer;
}

.contact-form__btn:hover {
  background: var(--navy-soft);
}

@media (max-width: 900px) {
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .contact-map {
    min-height: 200px;
  }
}

@media (max-width: 560px) {
  .contact-card__grid {
    grid-template-columns: 1fr;
  }
}

.blogs-section {
  padding: 1.5rem 0 5.75rem;
}

.blogs-empty {
  text-align: center;
  color: var(--muted);
  max-width: 32rem;
  margin: 0 auto;
}

.blogs-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.35rem;
}

.blog-card {
  background: #fff;
  border: 1px solid var(--border-light);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
}

.blog-card__media {
  display: block;
  background: #e8edf2;
  aspect-ratio: 16 / 10;
  overflow: hidden;
}

.blog-card__img,
.blog-card__ph {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.blog-card__ph {
  background: linear-gradient(145deg, #0a2540 0%, #163a5c 55%, #d5dde6 100%);
}

.blog-card__copy {
  padding: 1.2rem 1.15rem 1.3rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.blog-card__topic {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #6b7c8f;
  margin-bottom: 0.4rem;
}

.blog-card__title {
  font-size: 1.12rem;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.02em;
  line-height: 1.35;
  margin-bottom: 0.4rem;
}

.blog-card__title a {
  color: inherit;
  text-decoration: none;
}

.blog-card__title a:hover {
  text-decoration: underline;
}

.blog-card__meta {
  font-size: 0.86rem;
  color: #7a8796;
  margin-bottom: 0.55rem;
}

.blog-card__excerpt {
  font-size: 0.92rem;
  color: var(--muted);
  line-height: 1.5;
  margin-bottom: 0.9rem;
}

.blog-card__more {
  margin-top: auto;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--navy);
}

.blog-card__more:hover {
  text-decoration: underline;
}

.blog-article {
  padding: 4.75rem 0 5.75rem;
}

.blog-article__inner {
  max-width: 820px;
  margin: 0 auto;
}

.blog-article__title {
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.03em;
  line-height: 1.15;
}

.blog-article__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem 0;
  margin: 0.9rem 0 1.7rem;
  color: #6b7c8f;
  font-size: 0.95rem;
}

.blog-article__meta span + span::before {
  content: "•";
  margin: 0 0.55rem;
  color: #b7c2cd;
}

.blog-article__hero {
  border-radius: 22px;
  overflow: hidden;
  margin-bottom: 2.4rem;
  background: #e8edf2;
}

.blog-article__img {
  width: 100%;
  height: auto;
  display: block;
}

.blog-article__body {
  color: #3d4d5c;
  font-size: 1.02rem;
  line-height: 1.75;
}

.blog-article__body h2 {
  font-size: clamp(1.35rem, 2.4vw, 1.7rem);
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.02em;
  margin: 2.1rem 0 0.85rem;
}

.blog-article__body h3 {
  font-size: 1.12rem;
  font-weight: 800;
  color: var(--navy);
  margin: 1.4rem 0 0.55rem;
}

.blog-article__body p {
  margin-bottom: 1.05rem;
}

.blog-article__body ul {
  margin: 0 0 1.15rem 1.15rem;
}

.blog-article__body li {
  margin-bottom: 0.35rem;
}

.blog-article__body li::marker {
  color: var(--navy);
}

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

@media (max-width: 640px) {
  .blogs-grid {
    grid-template-columns: 1fr;
  }

  .blog-article {
    padding-top: 4rem;
  }
}

.addons-section {
  padding: 1rem 0 3.25rem;
}

.addons-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem 2rem;
  margin-bottom: 1.6rem;
}

.addons-header__title {
  font-size: clamp(1.7rem, 3vw, 2.2rem);
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.02em;
}

.addons-header__sub {
  font-size: 0.98rem;
  color: #6b7c8f;
  max-width: 22rem;
  line-height: 1.5;
  text-align: right;
}

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

.addon-card {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  background: #fff;
  border: 1px solid var(--border-light);
  border-radius: 14px;
  padding: 1.15rem 1.1rem;
}

.addon-card__icon {
  width: 2.35rem;
  height: 2.35rem;
  border-radius: 8px;
  background: var(--navy);
  color: #fff;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.addon-card__glyph {
  width: 1.15rem;
  height: 1.15rem;
}

.addon-card__title {
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--navy);
  line-height: 1.35;
  margin-bottom: 0.28rem;
}

.addon-card__price {
  font-size: 0.88rem;
  color: #7a8796;
}

@media (max-width: 980px) {
  .premier-banner {
    grid-template-columns: 1fr 1fr;
    padding: 1.7rem 1.35rem;
  }

  .premier-banner__cta {
    grid-column: 1 / -1;
  }

  .addons-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .addons-header__sub {
    text-align: left;
  }

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

@media (max-width: 700px) {
  .premier-banner {
    grid-template-columns: 1fr;
  }

  .addons-grid {
    grid-template-columns: 1fr;
  }
}

/* Shared horizontal gutter — every full-width band uses --page-x */
.home-screen,
.stats-bar,
.services-section,
.experts-section,
.area-section,
.meet-section,
.commit-section,
.trust-section,
.cta-banner,
.qb-section,
.links-section,
.site-footer,
.page-hero,
.svc-bar,
.svc-article,
.price-section,
.premier-section,
.compare-section,
.guide-section,
.addons-section,
.pkg-cta,
.contact-section,
.blogs-section,
.blog-article,
.page-shell .site-header {
  padding-inline: var(--page-x);
}
