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

  :root {
    --teal: #5495A8;
    --teal-dark: #356E80;
    --teal-darker: #1F525F;
    --teal-tint: #E5EFF2;
    --teal-tint-2: #F2F7F9;
    --cream: #F8F4EC;
    --cream-dark: #EFE9DC;
    --warm-gray: #F1EFE8;
    --ink: #1A1A1A;
    --ink-soft: #2C2C2A;
    --text-secondary: #5A5A56;
    --text-tertiary: #888780;
    --border: #E5E2DC;
    --border-strong: #C8C4BC;
    --serif: 'Playfair Display', 'Times New Roman', Georgia, serif;
    --sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --shadow-soft: 0 1px 2px rgba(15, 23, 42, 0.04), 0 4px 12px rgba(15, 23, 42, 0.04);
    --shadow-elevated: 0 4px 8px rgba(15, 23, 42, 0.06), 0 12px 28px rgba(15, 23, 42, 0.08);
    --radius: 8px;
    --radius-lg: 12px;
  }

  html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
  body {
    margin: 0;
    font-family: var(--sans);
    font-size: 18px;
    line-height: 1.65;
    color: var(--ink-soft);
    background: white;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }

  img { max-width: 100%; height: auto; display: block; }
  a { color: var(--teal-dark); text-decoration: none; }
  a:hover { text-decoration: underline; }

  h1, h2, h3, h4 {
    font-family: var(--serif);
    font-weight: 500;
    color: var(--ink);
    letter-spacing: -0.012em;
    margin: 0;
  }
  h1 { font-size: 56px; line-height: 1.08; letter-spacing: -0.02em; font-weight: 500; }
  h2 { font-size: 38px; line-height: 1.15; font-weight: 500; }
  h3 { font-size: 25px; line-height: 1.3; font-weight: 500; }
  h4 { font-size: 19px; line-height: 1.35; font-family: var(--sans); font-weight: 600; letter-spacing: -0.005em; }
  .eyebrow {
    font-family: var(--sans);
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: var(--teal-dark);
    margin: 0 0 14px;
  }
  .lede {
    font-family: var(--serif);
    font-style: italic;
    font-size: 22px;
    line-height: 1.55;
    color: var(--text-secondary);
    font-weight: 400;
  }

  .container {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 32px;
  }
  .container-narrow {
    max-width: 880px;
    margin: 0 auto;
    padding: 0 32px;
  }

  /* HEADER */
  .site-header {
    position: sticky;
    top: 0;
    background: rgba(255,255,255,0.97);
    backdrop-filter: saturate(180%) blur(10px);
    border-bottom: 1px solid var(--border);
    z-index: 100;
  }
  .header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 32px;
    max-width: 1180px;
    margin: 0 auto;
    gap: 20px;
  }
  .brand {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: var(--ink);
  }
  .brand-icon {
    height: 44px;
    width: auto;
    display: block;
  }
  .brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
    gap: 3px;
  }
  .brand-name {
    font-family: var(--serif);
    font-size: 22px;
    font-weight: 500;
    color: var(--ink);
    letter-spacing: -0.005em;
  }
  .brand-tag {
    font-size: 11px;
    color: var(--text-tertiary);
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }
  .footer-logo {
    height: 38px;
    width: auto;
    display: block;
  }

  .nav { display: flex; align-items: center; gap: 28px; font-size: 15px; }
  .nav a { color: var(--ink-soft); font-weight: 400; }
  .nav a:hover { color: var(--teal-dark); text-decoration: none; }

  .header-actions { display: flex; align-items: center; gap: 16px; }
  .header-phone {
    color: var(--ink);
    font-weight: 500;
    font-size: 15px;
    text-decoration: none;
    white-space: nowrap;
  }
  .header-phone:hover { color: var(--teal-dark); text-decoration: none; }

  .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--teal-dark);
    color: white;
    border: none;
    padding: 14px 26px;
    border-radius: var(--radius);
    font-family: var(--sans);
    font-size: 15px;
    font-weight: 500;
    letter-spacing: -0.005em;
    cursor: pointer;
    text-decoration: none;
    transition: background 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease;
    line-height: 1;
    min-height: 46px;
    box-shadow: var(--shadow-soft);
  }
  .btn:hover {
    background: var(--teal-darker);
    text-decoration: none;
    color: white;
    box-shadow: var(--shadow-elevated);
    transform: translateY(-1px);
  }
  .btn:active { transform: translateY(0); }
  .btn-large {
    padding: 18px 32px;
    font-size: 16px;
    min-height: 56px;
  }
  .btn-outline {
    background: transparent;
    color: var(--ink);
    border: 1px solid var(--border-strong);
    box-shadow: none;
  }
  .btn-outline:hover {
    background: var(--cream);
    color: var(--ink);
    border-color: var(--ink);
    box-shadow: var(--shadow-soft);
  }

  .menu-toggle {
    display: none;
    background: none;
    border: none;
    padding: 8px;
    cursor: pointer;
    flex-direction: column;
    gap: 4px;
  }
  .menu-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--ink);
  }

  /* HERO */
  .hero {
    padding: 80px 0 60px;
    background: linear-gradient(to bottom, white 0%, var(--teal-tint-2) 100%);
    position: relative;
    overflow: hidden;
  }
  .hero-grid {
    display: grid;
    grid-template-columns: 1.25fr 1fr;
    gap: 64px;
    align-items: center;
  }
  .hero-badges {
    display: flex;
    gap: 8px;
    margin-bottom: 24px;
    flex-wrap: wrap;
  }
  .badge {
    display: inline-block;
    font-size: 12px;
    padding: 6px 14px;
    border-radius: 100px;
    font-weight: 500;
    letter-spacing: 0.02em;
  }
  .badge-teal { background: var(--teal-tint); color: var(--teal-darker); }
  .badge-warm { background: var(--cream-dark); color: #5C4F3D; }

  .hero h1 {
    margin-bottom: 20px;
  }
  .hero h1 em {
    font-style: italic;
    color: var(--teal-dark);
    font-weight: 400;
  }
  .hero-sub {
    font-size: 19px;
    line-height: 1.55;
    color: var(--text-secondary);
    margin: 0 0 28px;
    max-width: 580px;
  }

  .price-card {
    background: white;
    border: 1px solid var(--teal);
    border-left: 4px solid var(--teal);
    padding: 18px 22px;
    border-radius: 6px;
    margin: 0 0 32px;
    max-width: 520px;
  }
  .price-amount {
    font-family: var(--serif);
    font-size: 24px;
    font-weight: 500;
    color: var(--teal-darker);
    line-height: 1.1;
  }
  .price-detail {
    font-size: 14px;
    color: var(--teal-dark);
    margin-top: 4px;
    line-height: 1.5;
  }

  .hero-cta-row {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 12px;
    flex-wrap: wrap;
  }
  .hero-microcopy {
    font-size: 14px;
    color: var(--text-tertiary);
    margin: 0;
  }

  .hero-photo {
    position: relative;
  }
  .hero-photo-frame {
    background: white;
    padding: 10px;
    border-radius: 4px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.04), 0 20px 60px rgba(53, 110, 128, 0.18);
    transform: rotate(-1deg);
  }
  .hero-photo-frame img {
    border-radius: 2px;
    width: 100%;
    aspect-ratio: 4/5;
    object-fit: cover;
    object-position: center top;
  }
  .hero-photo-caption {
    text-align: center;
    margin-top: 14px;
    font-family: var(--serif);
    font-style: italic;
    font-size: 16px;
    color: var(--text-secondary);
  }
  .hospital-badge {
    background: white;
    border: 1px solid var(--border);
    padding: 14px 18px;
    border-radius: 6px;
    margin-top: 24px;
    transform: rotate(0.5deg);
  }
  .hospital-badge-label {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-tertiary);
    margin-bottom: 6px;
  }
  .hospital-badge-text {
    font-family: var(--serif);
    font-size: 17px;
    color: var(--ink);
    line-height: 1.35;
  }

  /* TRUST STRIP */
  .trust-strip {
    background: white;
    border-bottom: 1px solid var(--border);
    padding: 36px 0;
  }
  .trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
  }
  .trust-item-label {
    font-family: var(--serif);
    font-size: 24px;
    color: var(--teal-darker);
    line-height: 1.1;
    margin-bottom: 6px;
  }
  .trust-item-detail {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.45;
  }

  /* SECTIONS */
  section { padding: 96px 0; }
  section.tight { padding: 72px 0; }
  section.bg-warm { background: var(--cream); }
  section.bg-teal-tint { background: var(--teal-tint-2); }

  .section-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 72px;
    align-items: center;
  }
  .section-grid.flip {
    grid-template-columns: 1.1fr 1fr;
  }

  .section-photo img {
    width: 100%;
    border-radius: 4px;
    box-shadow: 0 1px 2px rgba(0,0,0,0.04), 0 12px 40px rgba(0,0,0,0.06);
  }

  .section-photo-tall img { aspect-ratio: 4/5; object-fit: cover; }
  .section-photo-wide img { aspect-ratio: 16/10; object-fit: cover; }

  /* PULL QUOTE */
  .pull-quote {
    font-family: var(--serif);
    font-style: italic;
    font-size: 32px;
    line-height: 1.35;
    color: var(--ink);
    border-left: 3px solid var(--teal);
    padding-left: 28px;
    margin: 32px 0;
  }
  .pull-quote-attribution {
    font-family: var(--sans);
    font-style: normal;
    font-size: 14px;
    color: var(--text-tertiary);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-top: 14px;
  }

  /* SERVICES */
  .services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--border);
    border: 1px solid var(--border);
    border-radius: 6px;
    overflow: hidden;
    margin-top: 56px;
  }
  .service-item {
    background: white;
    padding: 32px 28px;
  }
  .service-icon {
    width: 36px;
    height: 36px;
    color: var(--teal);
    margin-bottom: 18px;
  }
  .service-title {
    font-family: var(--serif);
    font-size: 22px;
    font-weight: 500;
    color: var(--ink);
    line-height: 1.2;
    margin: 0 0 10px;
  }
  .service-desc {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.55;
    margin: 0;
  }

  /* HOW IT WORKS */
  .steps {
    counter-reset: step;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    margin-top: 56px;
  }
  .step { position: relative; }
  .step-number {
    font-family: var(--serif);
    font-size: 64px;
    font-weight: 400;
    line-height: 1;
    color: var(--teal);
    margin-bottom: 16px;
    font-style: italic;
  }
  .step-title {
    font-family: var(--serif);
    font-size: 22px;
    color: var(--ink);
    line-height: 1.25;
    margin: 0 0 10px;
  }
  .step-desc {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
  }

  /* TESTIMONIALS */
  .testimonials {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-top: 56px;
  }
  .testimonial {
    background: white;
    border: 1px solid var(--border);
    padding: 32px;
    border-radius: 6px;
  }
  .testimonial-stars {
    color: var(--teal);
    font-size: 14px;
    letter-spacing: 0.15em;
    margin-bottom: 18px;
  }
  .testimonial-text {
    font-family: var(--serif);
    font-size: 19px;
    line-height: 1.5;
    color: var(--ink);
    margin: 0 0 20px;
    font-style: italic;
  }
  .testimonial-author {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-tertiary);
  }

  /* FAQ */
  .faq-list { margin-top: 48px; }
  .faq-item {
    border-bottom: 1px solid var(--border);
    padding: 24px 0;
  }
  .faq-item:first-child { border-top: 1px solid var(--border); }
  .faq-question {
    font-family: var(--serif);
    font-size: 22px;
    color: var(--ink);
    margin: 0 0 12px;
    line-height: 1.3;
  }
  .faq-answer {
    color: var(--text-secondary);
    line-height: 1.65;
    margin: 0;
    font-size: 16px;
  }

  /* CONTACT FORM */
  .contact-section {
    background: linear-gradient(to bottom, var(--cream) 0%, white 100%);
  }
  .contact-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 64px;
    align-items: start;
  }
  .contact-photo {
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 1px 2px rgba(0,0,0,0.04), 0 12px 40px rgba(0,0,0,0.08);
    margin-bottom: 24px;
  }
  .contact-photo img {
    aspect-ratio: 16/10;
    object-fit: cover;
  }
  .visit-card {
    background: white;
    border: 1px solid var(--border);
    border-radius: 6px;
    padding: 24px 28px;
  }
  .visit-card h4 {
    font-family: var(--serif);
    font-size: 22px;
    margin: 0 0 14px;
    color: var(--ink);
    font-weight: 500;
  }
  .visit-detail {
    display: flex;
    gap: 14px;
    margin-bottom: 12px;
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.5;
  }
  .visit-detail:last-child { margin-bottom: 0; }
  .visit-detail-label {
    flex-shrink: 0;
    width: 70px;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-tertiary);
    padding-top: 4px;
    font-weight: 500;
  }
  .visit-detail-value { color: var(--ink); }
  .visit-detail-value a { color: var(--teal-dark); font-weight: 500; }

  .form-card {
    background: white;
    border: 1px solid var(--border);
    border-radius: 6px;
    padding: 36px;
  }
  .form-card h3 {
    margin: 0 0 8px;
  }
  .form-card .form-intro {
    font-size: 15px;
    color: var(--text-secondary);
    margin: 0 0 28px;
    line-height: 1.55;
  }
  .form-field { margin-bottom: 18px; }
  .form-field label {
    display: block;
    font-size: 13px;
    font-weight: 500;
    color: var(--ink);
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
  }
  .form-field input,
  .form-field textarea {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid var(--border-strong);
    border-radius: 6px;
    font-family: var(--sans);
    font-size: 16px;
    color: var(--ink);
    background: white;
    transition: border-color 0.15s ease;
    min-height: 48px;
  }
  .form-field textarea {
    resize: vertical;
    min-height: 90px;
    line-height: 1.5;
  }
  .form-field input:focus,
  .form-field textarea:focus {
    outline: none;
    border-color: var(--teal);
    box-shadow: 0 0 0 3px var(--teal-tint);
  }
  .honeypot {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    opacity: 0;
  }
  .form-disclaimer {
    font-size: 13px;
    color: var(--text-tertiary);
    margin: 16px 0 0;
    line-height: 1.5;
  }

  .call-number {
    display: inline-block;
    font-family: var(--serif);
    font-size: 56px;
    font-weight: 500;
    color: var(--teal-darker);
    text-decoration: none;
    line-height: 1;
    letter-spacing: -0.01em;
    margin-top: 8px;
    transition: color 0.15s ease;
  }
  .call-number:hover {
    color: var(--teal-dark);
    text-decoration: none;
  }
  .call-meta {
    margin-top: 28px;
    padding-top: 24px;
    border-top: 1px solid var(--border);
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.55;
  }
  .call-meta strong {
    color: var(--ink);
    font-weight: 500;
  }

  /* FOOTER */
  .footer {
    background: var(--ink);
    color: #B8B5AE;
    padding: 64px 0 32px;
    font-size: 14px;
  }
  .footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 48px;
  }
  .footer h5 {
    font-family: var(--sans);
    font-size: 13px;
    font-weight: 500;
    color: white;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin: 0 0 16px;
  }
  .footer-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
  }
  .footer-brand-mark {
    width: 36px; height: 36px;
    background: var(--teal);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    font-family: var(--serif);
    font-weight: 600;
  }
  .footer-brand-name { font-family: var(--serif); font-size: 19px; color: white; }
  .footer-tagline {
    font-family: var(--serif);
    font-style: italic;
    font-size: 18px;
    color: #D8D5CE;
    margin: 0 0 20px;
    line-height: 1.4;
    max-width: 320px;
  }
  .footer ul { list-style: none; padding: 0; margin: 0; }
  .footer li { margin-bottom: 10px; }
  .footer a { color: #B8B5AE; }
  .footer a:hover { color: white; text-decoration: underline; }
  .footer-bottom {
    border-top: 1px solid #333;
    padding-top: 24px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
    font-size: 13px;
    color: #888581;
  }

  /* MOBILE STICKY CALL BAR */
  .mobile-call-bar {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--teal);
    padding: 10px 16px;
    z-index: 90;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 -4px 16px rgba(0,0,0,0.1);
  }
  .mobile-call-bar-text {
    font-size: 14px;
    color: white;
    font-weight: 500;
  }
  .mobile-call-bar-text small {
    display: block;
    font-size: 11px;
    color: rgba(255,255,255,0.85);
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.05em;
  }
  .mobile-call-bar a {
    background: white;
    color: var(--teal-dark);
    padding: 10px 16px;
    border-radius: 6px;
    font-weight: 500;
    text-decoration: none;
    font-size: 14px;
    min-height: 40px;
    display: inline-flex;
    align-items: center;
  }

  /* MOBILE NAV PANEL */
  .mobile-nav {
    display: none;
    position: fixed;
    top: 0; left: 0; right: 0;
    background: white;
    padding: 80px 32px 32px;
    z-index: 95;
    border-bottom: 1px solid var(--border);
  }
  .mobile-nav a {
    display: block;
    padding: 14px 0;
    font-size: 18px;
    color: var(--ink);
    border-bottom: 1px solid var(--border);
  }
  .mobile-nav.open { display: block; }

  /* RESPONSIVE */
  @media (max-width: 960px) {
    /* Mobile-first text sizing — comfortable on real phones */
    body { font-size: 18px; line-height: 1.65; }

    h1 { font-size: 40px; }
    h2 { font-size: 30px; }
    h3 { font-size: 22px; }
    section { padding: 64px 0; }
    .container, .container-narrow { padding: 0 24px; }

    /* Bump small-text elements that often feel cramped on mobile */
    .eyebrow { font-size: 13px; letter-spacing: 0.09em; }
    .hero-sub { font-size: 18px; line-height: 1.6; }

    /* Buttons — bigger, easier to tap */
    .btn { min-height: 50px; padding: 14px 24px; font-size: 16px; }
    .btn-large { min-height: 58px; padding: 18px 32px; font-size: 17px; }
    .header-actions .btn { font-size: 14px; padding: 12px 18px; min-height: 44px; }

    .nav, .header-phone { display: none; }
    .menu-toggle { display: flex; }

    .hero { padding: 48px 0 56px; }
    .hero-grid { grid-template-columns: 1fr; gap: 40px; }
    .hero-photo-frame { transform: rotate(0); max-width: 360px; margin: 0 auto; }
    .hospital-badge { transform: rotate(0); max-width: 360px; margin-left: auto; margin-right: auto; }

    .trust-grid { grid-template-columns: repeat(2, 1fr); gap: 28px; row-gap: 32px; }
    .trust-item-label { font-size: 20px; }
    .trust-item-detail { font-size: 15px; line-height: 1.5; }

    .section-grid, .section-grid.flip {
      grid-template-columns: 1fr;
      gap: 40px;
    }
    .section-grid.flip .section-photo { order: -1; }
    .section-grid .section-photo { order: -1; }

    .pull-quote { font-size: 24px; padding-left: 20px; line-height: 1.4; }
    .pull-quote-attribution { font-size: 13px; }

    .services-grid { grid-template-columns: 1fr; }
    .service-card { padding: 28px 24px; }
    .service-name { font-size: 20px; }
    .service-desc { font-size: 16px; line-height: 1.65; }

    .steps { grid-template-columns: repeat(2, 1fr); gap: 32px; }
    .step-number { font-size: 48px; }
    .step-title { font-size: 18px; }
    .step-detail { font-size: 15px; line-height: 1.6; }

    .testimonials { grid-template-columns: 1fr; }
    .testimonial { padding: 28px 24px; }
    .testimonial-quote { font-size: 17px; line-height: 1.6; }

    .faq-question { font-size: 19px; }
    .faq-answer { font-size: 17px; line-height: 1.7; }

    .contact-grid { grid-template-columns: 1fr; gap: 40px; }
    .form-card { padding: 28px 24px; }
    .form-card h3 { font-size: 24px; }
    .form-intro { font-size: 16px; line-height: 1.6; }

    .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
    .footer-tagline { font-size: 17px; }
    .footer h5 { font-size: 14px; }
    .footer ul { font-size: 15px; }
    .footer-bottom { flex-direction: column; align-items: flex-start; gap: 12px; font-size: 13px; }

    .mobile-call-bar { display: flex; }
    body { padding-bottom: 70px; }
  }

  @media (max-width: 560px) {
    h1 { font-size: 32px; }
    h2 { font-size: 26px; }
    .hero-sub { font-size: 17px; }
    .pull-quote { font-size: 21px; }
    .form-card { padding: 24px; }
    .call-number { font-size: 38px; }
    .footer-grid { grid-template-columns: 1fr; }
    .steps { grid-template-columns: 1fr; }
    .header-actions .btn { padding: 10px 14px; font-size: 14px; }
    .brand-icon { height: 36px; }
    .brand-name { font-size: 18px; }
    .brand-tag { display: none; }
  }


/* MEET & GREET LANDING PAGE ADDITIONS */
.lp-eyebrow-row {
  display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 22px;
}
.lp-trust-bullets {
  list-style: none; padding: 0; margin: 28px 0 0; display: grid; gap: 12px;
}
.lp-trust-bullets li {
  display: flex; align-items: flex-start; gap: 10px; font-size: 16px; line-height: 1.5;
  color: var(--ink-soft);
}
.lp-trust-bullets li::before {
  content: ""; flex-shrink: 0; width: 7px; height: 7px; border-radius: 50%;
  background: var(--teal); margin-top: 9px;
}
.expectation-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; margin-top: 48px;
}
.expectation-card {
  background: white; border: 1px solid var(--border); border-radius: 10px;
  padding: 28px 26px;
}
.expectation-num {
  font-family: var(--serif); font-style: italic; font-size: 22px; color: var(--teal-dark);
  margin-bottom: 12px;
}
.expectation-card h3 {
  font-size: 22px; margin-bottom: 10px;
}
.expectation-card p {
  font-size: 16px; color: var(--text-secondary); margin: 0;
}
.fit-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 40px; margin-top: 40px;
}
.fit-col h3 {
  font-size: 24px; padding-bottom: 14px; border-bottom: 1px solid var(--border); margin-bottom: 18px;
}
.fit-col ul {
  list-style: none; padding: 0; margin: 0;
}
.fit-col li {
  padding: 10px 0 10px 22px; position: relative; font-size: 16px; line-height: 1.55;
  color: var(--ink-soft);
}
.fit-col.yes li::before {
  content: "✓"; color: var(--teal); position: absolute; left: 0; font-weight: 600;
}
.fit-col.no li::before {
  content: "—"; color: var(--text-tertiary); position: absolute; left: 0;
}
.questions-list {
  list-style: none; padding: 0; counter-reset: q; margin-top: 36px;
}
.questions-list li {
  counter-increment: q; padding: 18px 0 18px 50px; position: relative;
  border-bottom: 1px solid var(--border); font-size: 17px; line-height: 1.55;
}
.questions-list li::before {
  content: counter(q, decimal-leading-zero); position: absolute; left: 0; top: 18px;
  font-family: var(--serif); font-style: italic; font-size: 18px; color: var(--teal-dark);
}
.questions-list li:last-child { border-bottom: none; }
.consent-row {
  display: flex; align-items: flex-start; gap: 10px; margin: 18px 0 6px;
  font-size: 14px; color: var(--text-secondary); line-height: 1.5;
}
.consent-row input { margin-top: 4px; flex-shrink: 0; }
.lp-header-min .nav, .lp-header-min .menu-toggle { display: none !important; }
.lp-header-min .header-actions { gap: 14px; }
@media (max-width: 1023px) {
  .expectation-grid { grid-template-columns: 1fr; gap: 16px; }
  .fit-grid { grid-template-columns: 1fr; gap: 28px; }
}



/* SHARED ADDITIONS FOR NEW PAGES */
.page-hero {
  padding: 56px 0 56px;
  background: linear-gradient(180deg, var(--cream) 0%, white 100%);
  border-bottom: 1px solid var(--border);
}
.page-hero h1 { font-size: 48px; line-height: 1.08; }
.page-hero .lede { margin-top: 22px; font-size: 21px; }
.page-hero .breadcrumbs {
  font-size: 13px; color: var(--text-tertiary); margin-bottom: 18px;
  letter-spacing: 0.04em;
}
.page-hero .breadcrumbs a { color: var(--text-tertiary); }
.page-hero .breadcrumbs a:hover { color: var(--teal-dark); }

.prose { font-size: 18px; line-height: 1.75; color: var(--ink-soft); }
.prose p { margin: 0 0 26px; }
.prose h2 { margin-top: 64px; margin-bottom: 20px; font-size: 32px; }
.prose h3 { margin-top: 40px; margin-bottom: 14px; font-size: 23px; }
.prose ul, .prose ol { margin: 0 0 26px; padding-left: 26px; }
.prose li { margin-bottom: 10px; }
.prose blockquote {
  margin: 32px 0; padding: 20px 0 20px 28px; border-left: 3px solid var(--teal);
  font-family: var(--serif); font-style: italic; font-size: 23px; line-height: 1.5;
  color: var(--ink); background: transparent; font-weight: 400;
}
.prose a { color: var(--teal-dark); border-bottom: 1px solid rgba(53, 110, 128, 0.25); }
.prose a:hover { border-bottom-color: var(--teal-dark); text-decoration: none; }

.compare-table {
  margin: 36px 0; border: 1px solid var(--border); border-radius: 10px; overflow: hidden;
  display: grid; grid-template-columns: 1fr 1fr;
}
.compare-col { padding: 28px 26px; }
.compare-col + .compare-col { border-left: 1px solid var(--border); }
.compare-col.highlight { background: var(--teal-tint-2); }
.compare-col h4 {
  font-family: var(--sans); font-size: 13px; font-weight: 600; text-transform: uppercase;
  letter-spacing: 0.1em; color: var(--text-tertiary); margin-bottom: 16px;
}
.compare-col.highlight h4 { color: var(--teal-darker); }
.compare-col ul { list-style: none; padding: 0; margin: 0; }
.compare-col li {
  padding: 8px 0 8px 18px; position: relative; font-size: 16px; line-height: 1.5;
}
.compare-col li::before {
  content: ""; position: absolute; left: 0; top: 16px; width: 6px; height: 6px;
  border-radius: 50%; background: var(--text-tertiary);
}
.compare-col.highlight li::before { background: var(--teal); }

.cta-band {
  background: var(--teal-darker); color: white; padding: 72px 0; margin-top: 72px;
}
.cta-band h2 { color: white; margin-bottom: 16px; }
.cta-band p { color: rgba(255,255,255,0.85); font-size: 17px; margin-bottom: 30px; max-width: 640px; }
.cta-band .btn {
  background: white; color: var(--teal-darker);
}
.cta-band .btn:hover { background: var(--cream); color: var(--teal-darker); }
.cta-band .secondary {
  display: inline-flex; margin-left: 18px; color: white; font-weight: 500;
}
.cta-band .secondary:hover { color: var(--cream); }

.related-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 32px;
}
.related-card {
  display: block; padding: 22px; border: 1px solid var(--border); border-radius: 8px;
  text-decoration: none; color: inherit; transition: border-color 0.15s, transform 0.15s;
}
.related-card:hover {
  border-color: var(--teal); text-decoration: none; transform: translateY(-2px);
}
.related-card .eyebrow { margin-bottom: 8px; }
.related-card h4 {
  font-family: var(--serif); font-size: 20px; font-weight: 500; line-height: 1.25;
  color: var(--ink); margin: 0;
}
.related-card p { font-size: 14px; color: var(--text-secondary); margin: 8px 0 0; line-height: 1.5; }

.blog-card {
  display: block; padding: 28px 0; border-bottom: 1px solid var(--border);
  text-decoration: none; color: inherit;
}
.blog-card:hover { text-decoration: none; }
.blog-card:first-child { padding-top: 0; }
.blog-card .meta {
  font-size: 12px; color: var(--text-tertiary); text-transform: uppercase;
  letter-spacing: 0.1em; margin-bottom: 8px;
}
.blog-card h3 {
  font-size: 26px; margin: 0 0 8px; transition: color 0.15s;
}
.blog-card:hover h3 { color: var(--teal-dark); }
.blog-card .excerpt {
  font-size: 16px; color: var(--text-secondary); line-height: 1.6; margin: 0;
}

@media (max-width: 1023px) {
  .page-hero h1 { font-size: 38px; }
  .page-hero .lede { font-size: 19px; }
  .compare-table { grid-template-columns: 1fr; }
  .compare-col + .compare-col { border-left: none; border-top: 1px solid var(--border); }
  .related-grid { grid-template-columns: 1fr; }
  .cta-band .secondary { display: block; margin: 18px 0 0; }
  .prose { font-size: 17px; line-height: 1.7; }
  .prose p { margin-bottom: 22px; }
  .prose h2 { font-size: 26px; margin-top: 44px; }
  .prose h3 { font-size: 21px; margin-top: 32px; }
  .prose blockquote { font-size: 20px; padding: 16px 0 16px 22px; margin: 24px 0; }
}

/* Premium polish — subtle elevation on cards, refined section spacing */
.related-card { box-shadow: var(--shadow-soft); border-color: var(--border); }
.related-card:hover { box-shadow: var(--shadow-elevated); }
.cta-band { border-radius: 0; }
.cta-band .btn { box-shadow: none; }
.cta-band .btn:hover { box-shadow: 0 4px 14px rgba(0, 0, 0, 0.18); }

/* Selection color — subtle teal, never jarring */
::selection { background: var(--teal-tint); color: var(--ink); }

/* Focus rings — visible but elegant for keyboard users */
:focus-visible {
  outline: 2px solid var(--teal);
  outline-offset: 3px;
  border-radius: 3px;
}
.btn:focus-visible {
  outline: 2px solid var(--teal-dark);
  outline-offset: 3px;
}

/* THANKS PAGE — page-specific styles */
.thanks-hero {
  padding: 88px 0 64px;
  text-align: center;
  background: linear-gradient(180deg, var(--cream) 0%, white 100%);
  border-bottom: 1px solid var(--border);
}
.thanks-icon-wrap {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  background: var(--teal-tint-2);
  border-radius: 50%;
  margin: 0 auto 28px;
  box-shadow: var(--shadow-soft);
}
.thanks-icon-wrap svg {
  width: 34px;
  height: 34px;
  fill: none;
  stroke: var(--teal-darker);
  stroke-width: 2.5;
}
.thanks-h1 {
  font-size: 52px;
  line-height: 1.08;
  margin: 0 auto 20px;
  max-width: 720px;
  font-family: var(--serif);
  font-weight: 500;
  color: var(--ink);
  letter-spacing: -0.02em;
}
.thanks-h1 em {
  font-style: italic;
  color: var(--teal-dark);
  font-weight: 400;
}
.thanks-sub {
  font-size: 19px;
  line-height: 1.6;
  color: var(--text-secondary);
  max-width: 620px;
  margin: 0 auto 48px;
}
.thanks-detail-card {
  max-width: 560px;
  margin: 0 auto;
  padding: 32px 36px;
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  text-align: left;
}
.detail-row {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 16px 0;
}
.detail-row + .detail-row {
  border-top: 1px solid var(--border);
}
.detail-num {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--teal-darker);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-size: 15px;
  font-weight: 500;
  line-height: 1;
}
.detail-text {
  font-size: 16px;
  line-height: 1.55;
  color: var(--ink-soft);
  padding-top: 4px;
}
.thanks-while-you-wait {
  padding: 88px 0 100px;
}
.thanks-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 56px;
  align-items: center;
}
.thanks-photo {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-elevated);
}
.thanks-photo img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  object-position: center top;
  display: block;
}
.thanks-fallback {
  margin-top: 48px;
  padding-top: 36px;
  border-top: 1px solid var(--border);
  text-align: center;
}
@media (max-width: 768px) {
  .thanks-hero { padding: 56px 0 40px; }
  .thanks-icon-wrap { width: 60px; height: 60px; margin-bottom: 22px; }
  .thanks-icon-wrap svg { width: 28px; height: 28px; }
  .thanks-h1 { font-size: 34px; }
  .thanks-sub { font-size: 17px; margin-bottom: 36px; }
  .thanks-detail-card { padding: 26px 24px; }
  .detail-row { gap: 14px; padding: 12px 0; }
  .detail-num { width: 28px; height: 28px; font-size: 14px; }
  .detail-text { font-size: 15px; }
  .thanks-while-you-wait { padding: 56px 0 72px; }
  .thanks-grid { grid-template-columns: 1fr; gap: 32px; }
  .thanks-grid .thanks-photo { max-width: 320px; margin: 0 auto; }
}
