:root {
      --ink: #0F172A;
      --ghost: #F8FAFC;
      --teal-50: #F0FDFA;
      --teal-100: #CCFBF1;
      --teal-400: #2DD4BF;
      --teal-500: #14B8A6;
      --teal-600: #0D9488;
      --teal-700: #0F766E;
      --slate-300: #CBD5E1;
      --slate-400: #94A3B8;
      --slate-500: #64748B;
      --slate-600: #475569;
      --slate-700: #334155;
      --border: #E2E8F0;
      --white: #fff;
      --font-heading: 'Plus Jakarta Sans', ui-sans-serif, system-ui, sans-serif;
      --font-body: 'Inter', ui-sans-serif, system-ui, sans-serif;
    }

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

    html {
      scroll-behavior: smooth
    }

    body {
      font-family: var(--font-body);
      background: var(--white);
      color: var(--slate-700);
      -webkit-font-smoothing: antialiased;
      line-height: 1.6
    }

    h1,
    h2,
    h3,
    h4 {
      font-family: var(--font-heading);
      color: var(--ink);
      letter-spacing: -0.02em;
      line-height: 1.15
    }

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

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

    .container {
      max-width: 1400px;
      margin: 0 auto;
      padding: 0 20px
    }

    @media(min-width:1024px) {
      .container {
        padding: 0 40px
      }
    }

    .eyebrow {
      font-size: .72rem;
      font-weight: 600;
      letter-spacing: .2em;
      text-transform: uppercase;
      color: var(--teal-700)
    }

    .link-arrow {
      display: inline-flex;
      align-items: center;
      gap: .4rem;
      font-size: .875rem;
      font-weight: 600;
      color: var(--ink);
      transition: color .2s
    }

    .link-arrow:hover {
      color: var(--teal-700)
    }

    .link-arrow svg {
      width: 16px;
      height: 16px
    }

    /* ===== Buttons ===== */
    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: .5rem;
      border-radius: 9999px;
      font-weight: 600;
      cursor: pointer;
      border: none;
      transition: all .2s;
      white-space: nowrap
    }

    .btn-teal {
      background: var(--teal-600);
      color: #fff
    }

    .btn-teal:hover {
      background: var(--teal-700)
    }

    .btn-ink {
      background: var(--ink);
      color: #fff
    }

    .btn-ink:hover {
      background: #1e293b
    }

    .btn-outline {
      background: #fff;
      border: 1px solid var(--slate-300);
      color: var(--ink)
    }

    .btn-outline:hover {
      border-color: var(--ink)
    }

    .h14 {
      height: 56px;
      padding: 0 32px;
      font-size: 1rem
    }

    .h13 {
      height: 48px;
      padding: 0 22px;
      font-size: .92rem
    }

    .h11 {
      height: 44px;
      padding: 0 20px;
      font-size: .875rem
    }

    /* ===== Header ===== */
    header {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 40;
      transition: padding .3s ease;
      padding: 16px 0;
      background: rgba(255, 255, 255, .72);
      backdrop-filter: blur(20px);
      border-bottom: 1px solid rgba(226, 232, 240, .7)
    }

    .header-row {
      max-width: 1400px;
      margin: 0 auto;
      padding: 0 20px;
      display: flex;
      align-items: center;
      gap: 24px
    }

    @media(min-width:1024px) {
      .header-row {
        padding: 0 40px
      }
    }

    .logo {
      display: flex;
      align-items: center;
      gap: 10px;
      flex-shrink: 0
    }

    .logo-mark {
      width: 40px;
      height: 40px;
      border-radius: 12px;
      background: var(--ink);
      display: grid;
      place-items: center;
      color: var(--teal-500)
    }

    .logo-mark svg {
      width: 20px;
      height: 20px
    }

    .logo-text {
      font-family: var(--font-heading);
      font-size: 1.15rem;
      font-weight: 800;
      color: var(--ink);
      letter-spacing: -0.02em
    }

    .logo-text span {
      color: var(--teal-600)
    }

    nav.primary {
      display: none;
      margin-left: 16px;
      gap: 4px
    }

    @media(min-width:1024px) {
      nav.primary {
        display: flex
      }
    }

    nav.primary a {
      padding: .5rem .9rem;
      border-radius: 9999px;
      font-size: .875rem;
      font-weight: 500;
      color: var(--slate-600);
      transition: all .2s
    }

    nav.primary a:hover {
      color: var(--ink);
      background: #f1f5f9
    }

    nav.primary a.active {
      color: var(--teal-700);
      background: var(--teal-50)
    }

    .header-right {
      margin-left: auto;
      display: flex;
      align-items: center;
      gap: 8px
    }

    .icon-btn {
      width: 44px;
      height: 44px;
      border-radius: 9999px;
      border: 1px solid var(--border);
      background: #fff;
      color: var(--slate-600);
      display: grid;
      place-items: center;
      cursor: pointer;
      transition: all .2s
    }

    .icon-btn:hover {
      color: var(--teal-700);
      border-color: #99f6e4
    }

    .icon-btn svg {
      width: 18px;
      height: 18px
    }

    .menu-btn {
      display: block
    }

    @media(min-width:1024px) {
      .menu-btn {
        display: none
      }
    }

    .book-cta {
      display: none
    }

    @media(min-width:640px) {
      .book-cta {
        display: inline-flex
      }
    }

    /* ===== Hero ===== */
    .hero {
      position: relative;
      overflow: hidden;
      background: var(--ghost);
      padding-top: 80px;
      padding-bottom: 64px
    }

    .hero-glow {
      position: absolute;
      right: -160px;
      top: -160px;
      width: 520px;
      height: 520px;
      border-radius: 50%;
      background: rgba(204, 251, 241, .5);
      filter: blur(96px);
      pointer-events: none
    }

    .hero-grid {
      position: relative;
      display: grid;
      gap: 56px;
      align-items: center
    }

    @media(min-width:1024px) {
      .hero-grid {
        grid-template-columns: 1.05fr .95fr;
        gap: 80px
      }
    }

    .hero-badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      border-radius: 9999px;
      border: 1px solid var(--teal-100);
      background: #fff;
      padding: 8px 16px;
      font-size: .72rem;
      font-weight: 600;
      color: var(--teal-700)
    }

    .hero-badge svg {
      width: 14px;
      height: 14px
    }

    .hero h1 {
      margin-top: 24px;
      font-size: 2.6rem;
      font-weight: 800;
      line-height: 1.05
    }

    @media(min-width:640px) {
      .hero h1 {
        font-size: 3.75rem
      }
    }

    .hero h1 .accent {
      color: var(--teal-600)
    }

    .hero p.lead {
      margin-top: 24px;
      max-width: 36rem;
      font-size: 1.125rem;
      line-height: 1.7;
      color: var(--slate-500)
    }

    .hero-cta {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      margin-top: 36px
    }

    .hero-meta {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      gap: 32px;
      margin-top: 40px;
      font-size: .875rem;
      color: var(--slate-500)
    }

    .hero-meta .item {
      display: flex;
      align-items: center;
      gap: 8px
    }

    .hero-meta svg {
      width: 16px;
      height: 16px
    }

    .star {
      fill: var(--teal-500);
      color: var(--teal-500)
    }

    .hero-visual {
      position: relative;
      max-width: 460px;
      margin-left: auto;
      width: 100%
    }

    .hero-img {
      overflow: hidden;
      border-radius: 32px;
      border: 4px solid #fff;
      background: #fff;
      box-shadow: 0 40px 90px -50px rgba(15, 23, 42, .5);
      aspect-ratio: 4/5
    }

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

    .hero-float {
      position: absolute;
      left: -16px;
      bottom: -24px;
      border-radius: 24px;
      border: 1px solid #f1f5f9;
      background: rgba(255, 255, 255, .85);
      backdrop-filter: blur(12px);
      padding: 20px;
      box-shadow: 0 24px 50px -18px rgba(15, 23, 42, .4);
      transition: transform .3s;
      display: none
    }

    @media(min-width:640px) {
      .hero-float {
        display: block
      }
    }

    .hero-float:hover {
      transform: translateY(-4px)
    }

    .hero-float .lbl {
      font-size: .72rem;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: .15em;
      color: var(--teal-700)
    }

    .hero-float .hl {
      margin-top: 6px;
      font-family: var(--font-heading);
      font-size: 1.125rem;
      font-weight: 700;
      color: var(--ink)
    }

    .hero-float .go {
      margin-top: 8px;
      display: inline-flex;
      align-items: center;
      gap: 6px;
      font-size: .75rem;
      font-weight: 600;
      color: var(--slate-500)
    }

    .hero-float .go svg {
      width: 14px;
      height: 14px
    }

    /* ===== Search bar (below hero) ===== */
    .hero-searchwrap {
      position: relative;
      margin: 56px auto 0;
      max-width: 896px
    }

    @media(min-width:1024px) {
      .hero-searchwrap {
        margin-top: 80px
      }
    }

    .searchbar {
      border-radius: 28px;
      border: 1px solid rgba(255, 255, 255, .7);
      background: rgba(255, 255, 255, .8);
      padding: 10px;
      box-shadow: 0 30px 80px -40px rgba(15, 23, 42, .4);
      backdrop-filter: blur(20px)
    }

    .searchbar-inner {
      display: flex;
      flex-direction: column;
      gap: 10px
    }

    @media(min-width:640px) {
      .searchbar-inner {
        flex-direction: row;
        align-items: center
      }
    }

    .search-field {
      flex: 1;
      display: flex;
      align-items: center;
      gap: 12px;
      padding: 0 16px
    }

    .search-field svg {
      width: 20px;
      height: 20px;
      color: var(--teal-600);
      flex-shrink: 0
    }

    .search-field input {
      width: 100%;
      height: 56px;
      border: none;
      outline: none;
      background: transparent;
      font-size: 1rem;
      font-family: inherit
    }

    .search-field input::placeholder {
      color: var(--slate-400)
    }

    .searchbar .btn {
      border-radius: 20px;
      padding: 0 32px;
      font-size: 1rem
    }

    /* ===== Sections ===== */
    section {
      padding: 80px 0
    }

    @media(min-width:1024px) {
      section {
        padding: 112px 0
      }
    }

    .section-head {
      max-width: 672px
    }

    .section-head h2 {
      margin-top: 12px;
      font-size: 1.875rem
    }

    @media(min-width:640px) {
      .section-head h2 {
        font-size: 2.25rem
      }
    }

    .section-head p {
      margin-top: 16px;
      font-size: 1rem;
      color: var(--slate-500)
    }

    .head-row {
      display: flex;
      flex-direction: column;
      gap: 24px
    }

    @media(min-width:640px) {
      .head-row {
        flex-direction: row;
        align-items: flex-end;
        justify-content: space-between
      }
    }

    /* grids */
    .grid {
      display: grid;
      gap: 24px
    }

    .g3 {
      grid-template-columns: 1fr
    }

    @media(min-width:768px) {
      .g3 {
        grid-template-columns: repeat(2, 1fr)
      }
    }

    @media(min-width:1280px) {
      .g3 {
        grid-template-columns: repeat(3, 1fr)
      }
    }

    .g4 {
      grid-template-columns: repeat(2, 1fr)
    }

    @media(min-width:1024px) {
      .g4 {
        grid-template-columns: repeat(4, 1fr)
      }
    }

    .g2md {
      grid-template-columns: 1fr
    }

    @media(min-width:768px) {
      .g2md {
        grid-template-columns: repeat(2, 1fr)
      }
    }

    /* category tabs */
    .tabs {
      display: flex;
      gap: 8px;
      overflow-x: auto;
      padding-bottom: 4px;
      margin-top: 32px
    }

    .tabs::-webkit-scrollbar {
      display: none
    }

    .tab {
      flex-shrink: 0;
      border-radius: 9999px;
      padding: 10px 16px;
      font-size: .875rem;
      font-weight: 500;
      border: 1px solid var(--border);
      background: #fff;
      color: var(--slate-600);
      cursor: pointer;
      transition: all .2s
    }

    .tab:hover {
      border-color: #99f6e4;
      color: var(--teal-700)
    }

    .tab.active {
      background: var(--ink);
      color: #fff;
      border-color: var(--ink)
    }

    /* ===== Test card ===== */
    .tcard {
      display: flex;
      flex-direction: column;
      border-radius: 24px;
      border: 1px solid var(--border);
      background: #fff;
      padding: 24px;
      transition: all .3s
    }

    .tcard:hover {
      transform: translateY(-4px);
      border-color: #99f6e4;
      box-shadow: 0 18px 50px -28px rgba(15, 23, 42, .28)
    }

    .card-top {
      display: flex;
      align-items: flex-start;
      justify-content: space-between;
      gap: 12px
    }

    .cat-pill {
      border-radius: 9999px;
      padding: 4px 12px;
      font-size: 11px;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: .1em;
      background: #f1f5f9;
      color: var(--slate-600)
    }

    .off {
      border-radius: 9999px;
      background: rgba(13, 148, 136, .1);
      padding: 4px 10px;
      font-size: .72rem;
      font-weight: 700;
      color: var(--teal-700)
    }

    .tcard h3 {
      margin-top: 16px;
      font-size: 1.125rem;
      font-weight: 700;
      line-height: 1.4
    }

    .tcard h3 a:hover {
      color: var(--teal-700)
    }

    .tcard .desc {
      margin-top: 8px;
      font-size: .875rem;
      line-height: 1.6;
      color: var(--slate-500);
      display: -webkit-box;
      -webkit-line-clamp: 2;
      -webkit-box-orient: vertical;
      overflow: hidden
    }

    .chips {
      margin-top: 20px;
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      font-size: .72rem;
      color: var(--slate-600)
    }

    .chip2 {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      border-radius: 9999px;
      background: #f8fafc;
      padding: 6px 12px
    }

    .chip2 svg {
      width: 14px;
      height: 14px;
      color: var(--teal-600)
    }

    .card-foot {
      margin-top: 24px;
      padding-top: 20px;
      border-top: 1px dashed var(--border);
      display: flex;
      align-items: flex-end;
      justify-content: space-between;
      gap: 12px
    }

    .price {
      font-family: var(--font-heading);
      font-size: 1.5rem;
      font-weight: 800;
      color: var(--ink)
    }

    .mrp {
      font-size: .72rem;
      color: var(--slate-400);
      text-decoration: line-through
    }

    .card-actions {
      display: flex;
      align-items: center;
      gap: 8px
    }

    .details-btn {
      display: none;
      border-radius: 9999px;
      border: 1px solid var(--border);
      background: #fff;
      padding: 0 16px;
      height: 44px;
      font-size: .875rem;
      font-weight: 500;
      color: var(--slate-600)
    }

    @media(min-width:640px) {
      .details-btn {
        display: inline-flex;
        align-items: center
      }
    }

    .details-btn:hover {
      border-color: #99f6e4;
      color: var(--teal-700)
    }

    /* ===== Package card ===== */
    .pcard {
      display: flex;
      flex-direction: column;
      border-radius: 24px;
      border: 1px solid var(--border);
      background: #fff;
      padding: 28px;
      transition: all .3s
    }

    .pcard:hover {
      transform: translateY(-4px);
      border-color: #99f6e4;
      box-shadow: 0 24px 60px -30px rgba(15, 23, 42, .3)
    }

    .pcard .cat-pill {
      background: var(--ink);
      color: #fff
    }

    .pcard h3 {
      margin-top: 20px;
      font-size: 1.25rem;
      font-weight: 700;
      line-height: 1.4
    }

    .pcard .desc {
      margin-top: 8px;
      font-size: .875rem;
      color: var(--slate-500)
    }

    .includes-label {
      margin-top: 24px;
      font-size: .72rem;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: .1em;
      color: var(--slate-400)
    }

    .includes {
      margin-top: 12px;
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 10px;
      font-size: .875rem;
      color: var(--slate-600)
    }

    .includes li {
      display: flex;
      align-items: flex-start;
      gap: 10px
    }

    .check {
      margin-top: 2px;
      width: 20px;
      height: 20px;
      flex-shrink: 0;
      border-radius: 50%;
      background: var(--teal-50);
      display: grid;
      place-items: center
    }

    .check svg {
      width: 12px;
      height: 12px;
      color: var(--teal-600)
    }

    .more {
      padding-left: 32px;
      color: var(--teal-700)
    }

    .pfoot {
      margin-top: 28px;
      padding-top: 24px;
      border-top: 1px dashed var(--border);
      display: flex;
      align-items: flex-end;
      justify-content: space-between;
      gap: 12px
    }

    .pfoot .sub {
      font-size: .72rem;
      color: var(--slate-400)
    }

    .pfoot .sub s {
      color: var(--slate-400)
    }

    /* ===== Trust cards ===== */
    .tcard2 {
      border-radius: 24px;
      border: 1px solid var(--border);
      background: #fff;
      padding: 28px;
      transition: border-color .2s
    }

    .tcard2:hover {
      border-color: #99f6e4
    }

    .ticon {
      width: 48px;
      height: 48px;
      border-radius: 16px;
      background: var(--teal-50);
      display: grid;
      place-items: center;
      color: var(--teal-600)
    }

    .ticon svg {
      width: 22px;
      height: 22px
    }

    .tcard2 h3 {
      margin-top: 20px;
      font-size: 1.125rem;
      font-weight: 700
    }

    .tcard2 p {
      margin-top: 10px;
      font-size: .875rem;
      line-height: 1.6;
      color: var(--slate-500)
    }

    /* ===== Organ ===== */
    .organ {
      display: flex;
      align-items: center;
      gap: 16px;
      border-radius: 24px;
      border: 1px solid var(--border);
      background: #fff;
      padding: 20px;
      transition: all .25s
    }

    .organ:hover {
      transform: translateY(-4px);
      border-color: #99f6e4
    }

    .oicon {
      width: 56px;
      height: 56px;
      flex-shrink: 0;
      border-radius: 16px;
      background: var(--teal-50);
      display: grid;
      place-items: center;
      color: var(--teal-600);
      transition: all .25s
    }

    .organ:hover .oicon {
      background: var(--teal-600);
      color: #fff
    }

    .oicon svg {
      width: 24px;
      height: 24px
    }

    .organ b {
      display: block;
      font-family: var(--font-heading);
      font-weight: 700;
      color: var(--ink)
    }

    .organ .exp {
      margin-top: 2px;
      display: inline-flex;
      align-items: center;
      gap: 4px;
      font-size: .72rem;
      font-weight: 600;
      color: var(--slate-400)
    }

    .organ:hover .exp {
      color: var(--teal-700)
    }

    .organ .exp svg {
      width: 14px;
      height: 14px
    }

    /* ===== Gender care ===== */
    .tabs2 {
      display: inline-flex;
      border-radius: 9999px;
      border: 1px solid var(--border);
      background: #fff;
      padding: 4px
    }

    .tabs2 button {
      border-radius: 9999px;
      padding: 10px 24px;
      font-size: .875rem;
      font-weight: 600;
      border: none;
      background: transparent;
      color: var(--slate-500);
      cursor: pointer;
      transition: all .2s
    }

    .tabs2 button.active {
      background: var(--ink);
      color: #fff
    }

    .bucket {
      display: flex;
      flex-direction: column;
      border-radius: 24px;
      border: 1px solid var(--border);
      background: #fff;
      padding: 24px;
      transition: all .25s
    }

    .bucket:hover {
      transform: translateY(-4px);
      border-color: #99f6e4
    }

    .bucket .age {
      font-size: .72rem;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: .1em;
      color: var(--teal-700)
    }

    .bucket h3 {
      margin-top: 12px;
      font-size: 1.125rem;
      font-weight: 700
    }

    .bucket .iname {
      margin-top: 8px;
      font-size: .875rem;
      color: var(--slate-500)
    }

    .bfoot {
      margin-top: 20px;
      padding-top: 20px;
      border-top: 1px dashed var(--border);
      display: flex;
      align-items: center;
      justify-content: space-between
    }

    .bfoot .pp {
      font-family: var(--font-heading);
      font-size: 1.125rem;
      font-weight: 800;
      color: var(--ink)
    }

    .bfoot .vd {
      display: inline-flex;
      align-items: center;
      gap: 4px;
      font-size: .875rem;
      font-weight: 600;
      color: var(--slate-500)
    }

    .bucket:hover .bfoot .vd {
      color: var(--teal-700)
    }

    .more-link {
      margin-top: 36px;
      text-align: center
    }

    .more-link .btn {
      border: 1px solid var(--slate-300);
      background: #fff;
      color: var(--ink);
      padding: 12px 28px;
      font-size: .875rem;
      font-weight: 600
    }

    .more-link .btn:hover {
      border-color: var(--ink)
    }

    /* ===== Process (dark) ===== */
    .process {
      background: var(--ink);
      color: var(--slate-300)
    }

    .process-grid {
      display: grid;
      gap: 56px
    }

    @media(min-width:1024px) {
      .process-grid {
        grid-template-columns: .9fr 1.1fr;
        gap: 80px
      }
    }

    .process .eyebrow {
      color: var(--teal-400)
    }

    .process h2 {
      margin-top: 12px;
      color: #fff;
      font-size: 1.875rem
    }

    @media(min-width:640px) {
      .process h2 {
        font-size: 2.25rem
      }
    }

    .process p.sub {
      margin-top: 16px;
      max-width: 28rem;
      font-size: 1rem;
      color: var(--slate-400);
      line-height: 1.7
    }

    .process-img {
      margin-top: 32px;
      border-radius: 24px;
      overflow: hidden;
      border: 1px solid rgba(255, 255, 255, .1)
    }

    .process-img img {
      width: 100%;
      aspect-ratio: 21/9;
      object-fit: cover
    }

    .process-link {
      margin-top: 32px;
      display: inline-flex;
      align-items: center;
      gap: 8px;
      font-size: .875rem;
      font-weight: 600;
      color: var(--teal-400)
    }

    .process-link:hover {
      color: var(--teal-300)
    }

    .process-link svg {
      width: 16px;
      height: 16px
    }

    .steps-grid {
      display: grid;
      gap: 16px
    }

    @media(min-width:640px) {
      .steps-grid {
        grid-template-columns: 1fr 1fr
      }
    }

    .step-card {
      border-radius: 24px;
      border: 1px solid rgba(255, 255, 255, .1);
      background: rgba(255, 255, 255, .05);
      padding: 28px
    }

    .step-top {
      display: flex;
      align-items: center;
      justify-content: space-between
    }

    .step-ico {
      width: 44px;
      height: 44px;
      border-radius: 16px;
      background: rgba(20, 184, 166, .15);
      display: grid;
      place-items: center;
      color: var(--teal-400)
    }

    .step-ico svg {
      width: 20px;
      height: 20px
    }

    .step-num {
      font-family: var(--font-heading);
      font-size: 1.875rem;
      font-weight: 800;
      color: rgba(255, 255, 255, .1)
    }

    .step-card h3 {
      margin-top: 20px;
      color: #fff;
      font-size: 1.125rem;
      font-weight: 700
    }

    .step-card p {
      margin-top: 10px;
      font-size: .875rem;
      color: var(--slate-400);
      line-height: 1.6
    }

    /* ===== Cities ===== */
    .cities {
      margin-top: 40px;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 12px
    }

    @media(min-width:640px) {
      .cities {
        grid-template-columns: repeat(4, 1fr)
      }
    }

    @media(min-width:1024px) {
      .cities {
        grid-template-columns: repeat(6, 1fr)
      }
    }

    .city {
      display: flex;
      align-items: center;
      gap: 8px;
      border-radius: 12px;
      border: 1px solid var(--border);
      background: #fff;
      padding: 12px 16px;
      font-size: .875rem;
      color: var(--slate-700);
      transition: all .2s
    }

    .city:hover {
      border-color: #99f6e4;
      color: var(--teal-700)
    }

    .city svg {
      width: 16px;
      height: 16px;
      flex-shrink: 0;
      color: var(--teal-600)
    }

    /* ===== Partners ===== */
    .partner-sec {
      padding: 64px 0
    }

    @media(min-width:1024px) {
      .partner-sec {
        padding: 80px 0
      }
    }

    .partner-band {
      text-align: center
    }

    .partner-band+.partner-band {
      margin-top: 40px
    }

    .partner-band h4 {
      font-size: .72rem;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: .2em;
      color: var(--slate-400);
      margin-bottom: 20px;
      text-align: center
    }

    .partner-row {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      justify-content: center
    }

    .partner {
      border-radius: 16px;
      border: 1px solid var(--border);
      background: #fff;
      padding: 12px 24px;
      font-family: var(--font-heading);
      font-weight: 700;
      color: var(--slate-500);
      font-size: 1rem
    }

    /* ===== Testimonials ===== */
    .qcard {
      border-radius: 24px;
      border: 1px solid var(--border);
      background: #fff;
      padding: 28px
    }

    .qcard .quote {
      font-size: 1rem;
      color: var(--slate-700);
      line-height: 1.7
    }

    .qcard .qtop {
      display: flex;
      align-items: center;
      justify-content: space-between
    }

    .qcard .qico {
      width: 40px;
      height: 40px;
      border-radius: 50%;
      background: var(--teal-50);
      color: var(--teal-600);
      display: grid;
      place-items: center;
      flex-shrink: 0
    }

    .qcard .qico svg {
      width: 20px;
      height: 20px
    }

    .qcard .stars {
      display: flex;
      gap: 2px
    }

    .qcard .stars svg {
      width: 16px;
      height: 16px;
      fill: #fbbf24;
      color: #fbbf24
    }

    .qcard .quote {
      margin-top: 20px;
      font-size: 15px;
      color: var(--slate-600);
      line-height: 1.7
    }

    .qcard .by {
      margin-top: 24px;
      padding-top: 20px;
      border-top: 1px solid #f1f5f9;
      display: flex;
      align-items: center;
      gap: 12px
    }

    .av {
      width: 40px;
      height: 40px;
      border-radius: 50%;
      background: var(--ink);
      color: #fff;
      font-family: var(--font-heading);
      font-weight: 700;
      font-size: .875rem;
      display: grid;
      place-items: center;
      flex-shrink: 0
    }

    .qcard .by b {
      font-family: var(--font-heading);
      color: var(--ink);
      display: block;
      font-size: .875rem;
      font-weight: 600
    }

    .qcard .by span {
      font-size: .75rem;
      color: var(--slate-500)
    }

    /* ===== Accreditations ===== */
    .accred {
      display: flex;
      flex-wrap: wrap;
      gap: 14px
    }

    .accred-sec {
      background: var(--ink);
      color: #cbd5e1;
      padding: 80px 0
    }

    @media(min-width:1024px) {
      .accred-sec {
        padding: 112px 0
      }
    }

    .accred-head {
      max-width: 42rem;
      margin: 0 auto;
      text-align: center
    }

    .accred-sec .eyebrow {
      color: var(--teal-400)
    }

    .accred-sec h2 {
      margin-top: 12px;
      color: #fff;
      text-align: center
    }

    .accred-row {
      margin-top: 40px;
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      justify-content: center;
      gap: 16px
    }

    .accred-row .a {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      border-radius: 9999px;
      border: 1px solid rgba(255, 255, 255, .15);
      background: rgba(255, 255, 255, .05);
      padding: 12px 24px;
      font-family: var(--font-heading);
      font-size: .875rem;
      font-weight: 700;
      color: #fff
    }

    .accred-row .a svg {
      width: 16px;
      height: 16px;
      color: var(--teal-400)
    }

    .aregion-grid {
      margin-top: 48px;
      display: grid;
      gap: 20px;
      grid-template-columns: 1fr
    }

    @media(min-width:640px) {
      .aregion-grid {
        grid-template-columns: repeat(2, 1fr)
      }
    }

    @media(min-width:1024px) {
      .aregion-grid {
        grid-template-columns: repeat(4, 1fr)
      }
    }

    .aregion {
      border-radius: 24px;
      border: 1px solid rgba(255, 255, 255, .1);
      background: rgba(255, 255, 255, .05);
      padding: 24px
    }

    .aregion .an {
      display: flex;
      align-items: center;
      gap: 8px;
      font-family: var(--font-heading);
      font-size: 1.125rem;
      font-weight: 700;
      color: #fff
    }

    .aregion .an svg {
      width: 16px;
      height: 16px;
      color: var(--teal-400)
    }

    .aregion .ac {
      margin-top: 8px;
      font-family: var(--font-heading);
      font-size: 1.5rem;
      font-weight: 800;
      color: var(--teal-400)
    }

    .aregion .acities {
      margin-top: 8px;
      font-size: .875rem;
      color: var(--slate-400)
    }

    /* ===== Videos ===== */
    .vcard {
      position: relative;
      display: block;
      border-radius: 24px;
      overflow: hidden;
      border: 1px solid var(--border);
      background: #fff
    }

    .vcard img {
      width: 100%;
      aspect-ratio: 16/9;
      object-fit: cover
    }

    .v-overlay {
      position: absolute;
      inset: 0;
      background: rgba(15, 23, 42, .3);
      display: grid;
      place-items: center;
      transition: background .2s
    }

    .vcard:hover .v-overlay {
      background: rgba(15, 23, 42, .4)
    }

    .v-play {
      width: 64px;
      height: 64px;
      border-radius: 50%;
      background: rgba(255, 255, 255, .9);
      display: grid;
      place-items: center;
      box-shadow: 0 12px 30px -10px rgba(15, 23, 42, .6)
    }

    .v-play svg {
      width: 24px;
      height: 24px;
      color: var(--ink);
      fill: var(--ink);
      margin-left: 3px
    }

    .v-meta {
      position: absolute;
      left: 0;
      right: 0;
      bottom: 0;
      padding: 20px
    }

    .v-meta b {
      font-family: var(--font-heading);
      font-size: 1.125rem;
      color: #fff;
      display: block
    }

    .v-meta span {
      font-size: .72rem;
      font-weight: 500;
      color: rgba(255, 255, 255, .8)
    }

    /* ===== Blog ===== */
    .bcard {
      border-radius: 24px;
      overflow: hidden;
      border: 1px solid var(--border);
      background: #fff;
      transition: all .25s
    }

    .bcard:hover {
      transform: translateY(-4px);
      border-color: #99f6e4;
      box-shadow: 0 18px 50px -28px rgba(15, 23, 42, .28)
    }

    .bimg {
      height: 192px;
      overflow: hidden;
      background: #f1f5f9
    }

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

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

    .bbody {
      padding: 24px;
      display: flex;
      flex-direction: column;
      flex: 1
    }

    .bcat {
      font-size: 11px;
      font-weight: 600;
      color: var(--teal-700);
      text-transform: uppercase;
      letter-spacing: .1em;
      width: fit-content;
      border-radius: 9999px;
      background: var(--teal-50);
      padding: 4px 12px
    }

    .bbody h3 {
      margin-top: 16px;
      font-size: 1.125rem;
      line-height: 1.4;
      font-weight: 700
    }

    .bbody h3:hover {
      color: var(--teal-700)
    }

    .bexcerpt {
      margin-top: 8px;
      font-size: .875rem;
      line-height: 1.6;
      color: var(--slate-500);
      display: -webkit-box;
      -webkit-line-clamp: 2;
      -webkit-box-orient: vertical;
      overflow: hidden
    }

    .bfoot {
      margin-top: auto;
      padding-top: 24px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      font-size: .72rem;
      color: var(--slate-400)
    }

    .bmore {
      display: inline-flex;
      align-items: center;
      gap: 4px;
      font-weight: 600;
      color: var(--teal-700)
    }

    .bmore svg {
      width: 14px;
      height: 14px
    }

    /* ===== CTA band ===== */
    .cta {
      margin: 0 auto;
      max-width: 1400px;
      padding: 0 20px
    }

    @media(min-width:1024px) {
      .cta {
        padding: 0 40px
      }
    }

    .cta-inner {
      position: relative;
      overflow: hidden;
      border-radius: 32px;
      border: 1px solid #a7f3d0;
      background: linear-gradient(135deg, #ecfdf5, #f0fdfa, #fff);
      padding: 56px 32px
    }

    @media(min-width:1024px) {
      .cta-inner {
        padding: 80px 64px
      }
    }

    .cta-ovl {
      position: absolute;
      inset: 0;
      pointer-events: none;
      background-image: linear-gradient(to right, rgba(15, 118, 110, .08) 1px, transparent 1px), linear-gradient(to bottom, rgba(15, 118, 110, .08) 1px, transparent 1px);
      background-size: 32px 32px;
      -webkit-mask-image: radial-gradient(ellipse at 70% 30%, #000 40%, transparent 90%);
      mask-image: radial-gradient(ellipse at 70% 30%, #000 40%, transparent 90%)
    }

    .cta-grid {
      position: relative;
      display: grid;
      gap: 48px;
      align-items: center
    }

    @media(min-width:1024px) {
      .cta-grid {
        grid-template-columns: 1.05fr .95fr;
        gap: 64px
      }
    }

    .cta-badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      border: 1px solid #a7f3d0;
      background: #ecfdf5;
      border-radius: 9999px;
      padding: 6px 14px;
      font-size: .72rem;
      font-weight: 600;
      letter-spacing: .1em;
      color: var(--teal-700)
    }

    .cta-badge svg {
      width: 14px;
      height: 14px
    }

    .cta h2 {
      margin-top: 20px;
      font-size: 1.875rem;
      line-height: 1.1;
      font-weight: 800
    }

    @media(min-width:640px) {
      .cta h2 {
        font-size: 2.25rem
      }
    }

    @media(min-width:1024px) {
      .cta h2 {
        font-size: 2.75rem
      }
    }

    .cta h2 .g {
      color: var(--teal-700)
    }

    .cta .sub {
      margin-top: 16px;
      max-width: 36rem;
      font-size: 1rem;
      line-height: 1.7;
      color: #475569
    }

    .cta-row {
      margin-top: 32px;
      display: flex;
      flex-wrap: wrap;
      gap: 12px
    }

    .cta-primary {
      background: var(--teal-700);
      color: #fff;
      box-shadow: 0 12px 30px -12px rgba(15, 118, 110, .45)
    }

    .cta-primary:hover {
      background: #0d665f
    }

    .cta-card {
      justify-self: end;
      width: 100%;
      max-width: 448px
    }

    .cta-cardinner {
      border-radius: 24px;
      border: 1px solid #f1f5f9;
      background: #fff;
      padding: 28px;
      box-shadow: 0 30px 70px -40px rgba(15, 23, 42, .45)
    }

    .cta-cardinner ul {
      list-style: none
    }

    .cta-perk {
      display: flex;
      align-items: center;
      gap: 16px
    }

    .cta-perk+.cta-perk {
      margin-top: 16px
    }

    .cta-perk .ic {
      width: 44px;
      height: 44px;
      flex-shrink: 0;
      border-radius: 12px;
      background: #ecfdf5;
      color: var(--teal-700);
      display: grid;
      place-items: center
    }

    .cta-perk .ic svg {
      width: 20px;
      height: 20px
    }

    .cta-perk b {
      font-family: var(--font-heading);
      font-size: 1rem;
      font-weight: 600;
      color: var(--ink)
    }

    .cta-dash {
      margin: 20px 0;
      border-top: 1px dashed var(--border)
    }

    .cta-foot {
      font-size: .75rem;
      line-height: 1.6;
      color: var(--slate-500)
    }

    /* ===== Footer ===== */
    footer {
      background: var(--ink);
      color: var(--slate-300);
      margin-top: 96px
    }

    .footer-inner {
      max-width: 1400px;
      margin: 0 auto;
      padding: 64px 20px
    }

    @media(min-width:1024px) {
      .footer-inner {
        padding: 64px 40px
      }
    }

    .footer-grid {
      display: grid;
      gap: 48px;
      grid-template-columns: 1fr
    }

    @media(min-width:768px) {
      .footer-grid {
        grid-template-columns: 1fr 1fr
      }
    }

    @media(min-width:1024px) {
      .footer-grid {
        grid-template-columns: 2fr 1fr 1fr 1fr 1fr
      }
    }

    .footer-brand {
      grid-column: span 2
    }

    @media(max-width:767px) {
      .footer-brand {
        grid-column: auto
      }
    }

    .footer-brand .logo-text {
      color: #fff
    }

    .footer-brand p {
      margin-top: 20px;
      font-size: .875rem;
      line-height: 1.7;
      color: var(--slate-400);
      max-width: 380px
    }

    .footer-contact {
      margin-top: 24px
    }

    .footer-contact p {
      font-size: .875rem;
      color: var(--slate-400);
      display: flex;
      gap: 10px;
      align-items: center;
      margin-bottom: 10px
    }

    .footer-contact p svg {
      width: 16px;
      height: 16px;
      color: var(--teal-400);
      flex-shrink: 0
    }

    .footer-col h5 {
      color: #fff;
      font-family: var(--font-heading);
      font-size: .875rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: .1em
    }

    .footer-col ul {
      list-style: none;
      margin-top: 20px
    }

    .footer-col li {
      margin-bottom: 12px
    }

    .footer-col li a {
      font-size: .875rem;
      color: var(--slate-400);
      transition: color .2s
    }

    .footer-col li a:hover {
      color: var(--teal-400)
    }

    .footer-bottom {
      margin-top: 56px;
      border-top: 1px solid rgba(255, 255, 255, .1);
      padding-top: 32px;
      display: flex;
      flex-direction: column;
      gap: 24px
    }

    @media(min-width:1024px) {
      .footer-bottom {
        flex-direction: row;
        align-items: center;
        justify-content: space-between
      }
    }

    .footer-meta {
      display: flex;
      flex-wrap: wrap;
      gap: 8px 0;
      font-size: .75rem;
      color: var(--slate-400)
    }

    .footer-meta a {
      transition: color .2s;
      padding: 0 12px
    }

    .footer-meta a:hover {
      color: var(--teal-400)
    }

    .footer-meta .sep {
      color: #475569
    }

    .footer-copy {
      font-size: .75rem;
      color: var(--slate-500);
      margin-top: 10px
    }

    .payments {
      display: flex;
      flex-wrap: wrap;
      gap: 6px;
      background: rgba(255, 255, 255, .95);
      border-radius: 16px;
      padding: 10px 14px
    }

    .payments span {
      font-family: var(--font-heading);
      font-size: 11px;
      font-weight: 700;
      color: var(--ink);
      padding: 4px 10px;
      border-radius: 6px
    }

    /* ===== Mobile drawer ===== */
    .drawer {
      position: fixed;
      inset: 0;
      z-index: 50;
      visibility: hidden;
      pointer-events: none
    }

    .drawer.open {
      visibility: visible;
      pointer-events: auto
    }

    .drawer-scrim {
      position: absolute;
      inset: 0;
      background: rgba(15, 23, 42, .4);
      backdrop-filter: blur(4px);
      opacity: 0;
      transition: opacity .3s
    }

    .drawer.open .drawer-scrim {
      opacity: 1
    }

    .drawer-panel {
      position: absolute;
      right: 0;
      top: 0;
      height: 100%;
      width: 86%;
      max-width: 380px;
      background: #fff;
      padding: 24px;
      box-shadow: -12px 0 40px -12px rgba(15, 23, 42, .5);
      transform: translateX(100%);
      transition: transform .32s cubic-bezier(.22, 1, .36, 1);
      display: flex;
      flex-direction: column
    }

    .drawer.open .drawer-panel {
      transform: translateX(0)
    }

    .drawer-head {
      display: flex;
      align-items: center;
      justify-content: space-between;
      margin-bottom: 32px
    }

    .drawer-head span {
      font-family: var(--font-heading);
      font-weight: 800;
      color: var(--ink)
    }

    .drawer-nav {
      display: flex;
      flex-direction: column;
      flex: 1
    }

    .drawer-nav a {
      padding: 14px 0;
      border-bottom: 1px solid #f1f5f9;
      font-size: 1rem;
      font-weight: 500;
      color: var(--slate-700);
      transition: color .2s
    }

    .drawer-nav a:hover,
    .drawer-nav a.active {
      color: var(--teal-700)
    }

    .drawer-cta {
      margin-top: 28px;
      height: 48px;
      width: 100%;
      font-size: 1rem
    }

    /* ghost section background (matches live app) */
    .ghost-sec {
      background: var(--ghost)
    }

    /* ===== Search overlay (header icon) ===== */
    .ovl {
      position: fixed;
      inset: 0;
      z-index: 60;
      visibility: hidden;
      opacity: 0;
      transition: opacity .2s
    }

    .ovl.open {
      visibility: visible;
      opacity: 1
    }

    .ovl-scrim {
      position: absolute;
      inset: 0;
      background: rgba(15, 23, 42, .45);
      backdrop-filter: blur(4px)
    }

    .ovl-panel {
      position: relative;
      max-width: 672px;
      width: 92%;
      margin: 96px auto 0;
      border-radius: 24px;
      background: #fff;
      padding: 8px;
      box-shadow: 0 40px 90px -30px rgba(15, 23, 42, .5);
      transform: translateY(8px);
      transition: transform .2s
    }

    .ovl.open .ovl-panel {
      transform: translateY(0)
    }

    .ovl-head {
      display: flex;
      align-items: center;
      gap: 12px;
      padding: 12px 16px;
      border-bottom: 1px solid #f1f5f9
    }

    .ovl-head svg.lead {
      width: 20px;
      height: 20px;
      color: var(--teal-600)
    }

    .ovl-head input {
      flex: 1;
      height: 48px;
      border: none;
      outline: none;
      background: transparent;
      font-size: 1rem;
      font-family: inherit
    }

    .ovl-head input::placeholder {
      color: var(--slate-400)
    }

    .ovl-head .x {
      width: 36px;
      height: 36px;
      border-radius: 9999px;
      background: #f1f5f9;
      display: grid;
      place-items: center;
      border: none;
      cursor: pointer;
      color: var(--slate-600)
    }

    .ovl-head .x svg {
      width: 16px;
      height: 16px
    }

    .ovl-body {
      max-height: 55vh;
      overflow-y: auto;
      padding: 12px
    }

    .ovl-sec {
      margin-bottom: 20px
    }

    .ovl-sec .l {
      display: flex;
      align-items: center;
      gap: 8px;
      font-size: .72rem;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: .1em;
      color: var(--slate-400);
      margin-bottom: 8px
    }

    .ovl-sec .l svg {
      width: 14px;
      height: 14px
    }

    .pill-s {
      border-radius: 9999px;
      background: #f1f5f9;
      padding: 8px 14px;
      font-size: .875rem;
      color: var(--slate-700);
      border: none;
      cursor: pointer;
      transition: background .2s
    }

    .pill-s:hover {
      background: #e2e8f0
    }

    .pill-t {
      border: 1px solid var(--teal-100);
      background: var(--teal-50);
      color: var(--teal-700)
    }

    .pill-t:hover {
      background: #ccfbf1
    }

    .ovl-row {
      display: flex;
      align-items: center;
      gap: 16px;
      width: 100%;
      border: 1px solid #f1f5f9;
      border-radius: 16px;
      padding: 14px;
      text-align: left;
      background: #fff;
      cursor: pointer;
      transition: all .2s
    }

    .ovl-row:hover {
      border-color: #99f6e4;
      background: rgba(204, 251, 241, .3)
    }

    .ovl-row .n {
      font-weight: 600;
      color: var(--ink);
      overflow: hidden;
      text-overflow: ellipsis;
      white-space: nowrap
    }

    .ovl-row .m {
      font-size: .72rem;
      color: var(--slate-500);
      margin-top: 2px
    }

    .ovl-row .p {
      margin-left: auto;
      flex-shrink: 0;
      font-family: var(--font-heading);
      font-weight: 700;
      color: var(--teal-700)
    }

    .ovl-empty {
      padding: 32px 8px;
      text-align: center
    }

    .ovl-empty b {
      font-family: var(--font-heading);
      color: var(--ink)
    }

    .ovl-empty p {
      margin-top: 4px;
      font-size: .875rem;
      color: var(--slate-500)
    }

    /* ===== Hero search dropdown ===== */
    .hero-dd {
      position: absolute;
      inset-inline: 0;
      top: 100%;
      z-index: 30;
      margin-top: 12px;
      border-radius: 24px;
      border: 1px solid #f1f5f9;
      background: #fff;
      padding: 16px;
      box-shadow: 0 24px 60px -20px rgba(15, 23, 42, .3);
      display: none
    }

    .hero-dd.show {
      display: block;
      animation: fadeUp .25s both
    }

    @keyframes fadeUp {
      from {
        opacity: 0;
        transform: translateY(8px)
      }

      to {
        opacity: 1;
        transform: translateY(0)
      }
    }

    .hero-dd .row {
      display: flex;
      align-items: center;
      gap: 16px;
      border: 1px solid #f1f5f9;
      border-radius: 16px;
      padding: 12px;
      text-align: left
    }

    .hero-dd .row+.row {
      margin-top: 8px
    }

    .hero-dd .row:hover {
      border-color: #99f6e4;
      background: rgba(204, 251, 241, .3)
    }

    .hero-dd .row .nm {
      font-weight: 600;
      color: var(--ink)
    }

    .hero-dd .row .sub {
      font-size: .72rem;
      color: var(--slate-500);
      margin-top: 2px
    }

    .hero-dd .row .pr {
      margin-left: auto;
      font-family: var(--font-heading);
      font-weight: 700;
      color: var(--teal-700)
    }

    .hero-dd .badge {
      display: inline-block;
      background: #f1f5f9;
      color: var(--slate-600);
      border-radius: 9999px;
      padding: 1px 8px;
      font-size: .68rem;
      margin-right: 8px
    }

    /* ===== Phone tuning ===== */
    @media(max-width:639px) {
      .hero {
        padding-top: 72px
      }

      .hero h1 {
        font-size: 2.1rem
      }

      section {
        padding: 56px 0
      }

      .section-head h2 {
        font-size: 1.7rem
      }

      .cta-inner {
        padding: 48px 20px
      }
    }
  


    @media(min-width:768px) {
      #bloggrid {
        grid-template-columns: repeat(3, 1fr) !important
      }
    }
/* Fix for 5 column footer layout */
@media(min-width: 1024px) {
  .footer-grid {
    grid-template-columns: 2fr 1fr 1fr 1fr 1fr !important;
  }
}
/* =========================================
   UNIFIED TYPOGRAPHY (Overrides)
   Enforce consistent sizing and colors for 
   all taglines (.eyebrow), H2, and H3
   ========================================= */

.eyebrow, 
section .eyebrow, 
.process .eyebrow, 
.ghost-sec .eyebrow {
    font-size: 0.75rem !important;
    font-weight: 600 !important;
    letter-spacing: 0.15em !important;
    text-transform: uppercase !important;
    color: var(--teal-700) !important;
    margin-bottom: 12px !important;
}

section h2, 
.process h2, 
.ghost-sec h2 {
    font-family: var(--font-heading) !important;
    font-size: 2.25rem !important;
    font-weight: 800 !important;
    color: var(--ink) !important;
    line-height: 1.15 !important;
    letter-spacing: -0.02em !important;
}

section h3, 
.tcard h3, 
.pcard h3, 
.tcard2 h3, 
.bucket h3, 
.step-card h3 {
    font-family: var(--font-heading) !important;
    font-size: 1.25rem !important;
    font-weight: 700 !important;
    color: var(--ink) !important;
    line-height: 1.3 !important;
}

@media(max-width: 639px) {
    section h2, 
    .process h2, 
    .ghost-sec h2 {
        font-size: 1.75rem !important;
    }
    
    section h3, 
    .tcard h3, 
    .pcard h3, 
    .tcard2 h3, 
    .bucket h3, 
    .step-card h3 {
        font-size: 1.125rem !important;
    }
}

/* =========================================
   DARK SECTION OVERRIDES
   Ensure text is visible on dark backgrounds
   ========================================= */

.process .eyebrow, 
.accred-sec .eyebrow {
    color: var(--teal-400) !important;
}

.process h2, 
.accred-sec h2,
.process h3,
.accred-sec h3 {
    color: #fff !important;
}
/* ===== Page hero ===== */
        .phero {
            border-bottom: 1px solid #f1f5f9;
            background: var(--ghost);
            margin-top: 0;
            padding-top: 76px
        }

        .phero-inner {
            max-width: 1400px;
            margin: 0 auto;
            padding: 56px 20px
        }

        @media(min-width:1024px) {
            .phero-inner {
                padding: 80px 40px
            }
        }

        .crumbs {
            margin-bottom: 24px;
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 6px;
            font-size: .75rem;
            color: var(--slate-500)
        }

        .crumbs a:hover {
            color: var(--teal-700)
        }

        .crumbs .seg {
            display: inline-flex;
            align-items: center;
            gap: 6px
        }

        .crumbs .seg svg {
            width: 12px;
            height: 12px;
            color: var(--slate-300)
        }

        .crumbs .cur {
            color: var(--ink);
            font-weight: 500
        }

        .phero h1 {
            margin-top: 12px;
            max-width: 48rem;
            font-size: 2.25rem;
            font-weight: 800;
            line-height: 1.1
        }

        @media(min-width:640px) {
            .phero h1 {
                font-size: 3rem
            }
        }

        .phero p.sub {
            margin-top: 20px;
            max-width: 32rem;
            font-size: 1rem;
            line-height: 1.7;
            color: var(--slate-500)
        }

        /* ===== Catalog layout ===== */
        .catalog {
            max-width: 1400px;
            margin: 0 auto;
            padding: 48px 20px 64px
        }

        @media(min-width:1024px) {
            .catalog {
                padding: 48px 40px 64px
            }
        }

        .cat-grid {
            display: grid;
            gap: 40px
        }

        @media(min-width:1024px) {
            .cat-grid {
                grid-template-columns: 300px 1fr;
                gap: 48px
            }
        }

        aside.side {
            display: none
        }

        @media(min-width:1024px) {
            aside.side {
                display: block
            }
        }

        .sticky {
            position: sticky;
            top: 112px
        }

        /* ===== Filter panel ===== */
        .fpanel {
            border-radius: 24px;
            border: 1px solid var(--border);
            background: #fff;
            padding: 24px
        }

        .fpanel-head {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding-bottom: 20px
        }

        .fpanel-head .t {
            font-family: var(--font-heading);
            font-size: 1rem;
            font-weight: 800;
            color: var(--ink)
        }

        .freset {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            font-size: .75rem;
            font-weight: 600;
            color: var(--teal-700);
            background: none;
            border: none;
            cursor: pointer
        }

        .freset:hover {
            color: var(--teal-800)
        }

        .freset svg {
            width: 14px;
            height: 14px
        }

        .fgroup {
            border-bottom: 1px solid #f1f5f9;
            padding: 24px 0
        }

        .fgroup.first {
            padding-top: 0
        }

        .fgroup.last {
            border-bottom: 0;
            padding-bottom: 0
        }

        .fgt {
            margin-bottom: 16px;
            font-family: var(--font-heading);
            font-size: .875rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: .1em;
            color: var(--ink)
        }

        .frow {
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 8px 0;
            font-size: .875rem;
            color: var(--slate-600);
            cursor: pointer
        }

        .frow:hover {
            color: var(--ink)
        }

        .fchk {
            position: absolute;
            opacity: 0;
            width: 0;
            height: 0
        }

        .fbox {
            width: 20px;
            height: 20px;
            border-radius: 6px;
            border: 1px solid var(--slate-300);
            background: #fff;
            display: grid;
            place-items: center;
            flex-shrink: 0;
            transition: all .15s
        }

        .fbox svg {
            width: 12px;
            height: 12px;
            color: #fff;
            opacity: 0
        }

        .fchk:checked+.fbox {
            background: var(--teal-600);
            border-color: var(--teal-600)
        }

        .fchk:checked+.fbox svg {
            opacity: 1
        }

        .fcity {
            height: 48px;
            width: 100%;
            border-radius: 12px;
            border: 1px solid var(--border);
            background: #fff;
            padding: 0 14px;
            font-size: .875rem;
            color: var(--slate-700);
            outline: none
        }

        .fcity:focus {
            border-color: var(--teal-500)
        }

        .fnote {
            margin-top: 10px;
            font-size: .75rem;
            color: var(--slate-400)
        }

        .fslider {
            width: 100%;
            height: 6px;
            -webkit-appearance: none;
            appearance: none;
            background: var(--slate-200);
            border-radius: 9999px;
            outline: none;
            margin-top: 8px
        }

        .fslider::-webkit-slider-thumb {
            -webkit-appearance: none;
            width: 20px;
            height: 20px;
            border-radius: 50%;
            background: var(--teal-600);
            border: 3px solid #fff;
            box-shadow: 0 0 0 1px var(--teal-600);
            cursor: pointer
        }

        .fslider::-moz-range-thumb {
            width: 14px;
            height: 14px;
            border-radius: 50%;
            background: var(--teal-600);
            border: 3px solid #fff;
            box-shadow: 0 0 0 1px var(--teal-600);
            cursor: pointer
        }

        .fprice {
            margin-top: 12px;
            display: flex;
            justify-content: space-between;
            font-size: .75rem;
            color: var(--slate-500)
        }

        .fprice b {
            font-weight: 600;
            color: var(--ink)
        }

        .ftoggle {
            margin-top: 16px;
            display: flex;
            width: 100%;
            align-items: center;
            gap: 8px;
            border-radius: 16px;
            border: 1px dashed var(--slate-300);
            background: var(--ghost);
            padding: 12px 16px;
            font-size: .75rem;
            color: var(--slate-500);
            cursor: pointer
        }

        .ftoggle:hover {
            border-color: var(--teal-300)
        }

        .ftoggle svg {
            width: 14px;
            height: 14px;
            flex-shrink: 0
        }

        /* ===== Toolbar ===== */
        .toolbar {
            display: flex;
            flex-direction: column;
            gap: 16px
        }

        .tb-row1 {
            display: flex;
            align-items: center;
            gap: 12px
        }

        .tb-search {
            flex: 1;
            display: flex;
            align-items: center;
            gap: 12px;
            border-radius: 16px;
            border: 1px solid var(--border);
            background: #fff;
            padding: 0 16px
        }

        .tb-search svg {
            width: 18px;
            height: 18px;
            color: var(--teal-600);
            flex-shrink: 0
        }

        .tb-search input {
            height: 48px;
            width: 100%;
            background: transparent;
            border: none;
            outline: none;
            font-size: .875rem
        }

        .tb-search input::placeholder {
            color: var(--slate-400)
        }

        .tb-filterbtn {
            display: inline-flex;
            height: 48px;
            align-items: center;
            gap: 8px;
            border-radius: 16px;
            border: 1px solid var(--border);
            background: #fff;
            padding: 0 16px;
            font-size: .875rem;
            font-weight: 600;
            color: var(--ink);
            cursor: pointer
        }

        .tb-filterbtn svg {
            width: 16px;
            height: 16px
        }

        .tb-filterbtn .count {
            display: grid;
            place-items: center;
            height: 20px;
            min-width: 20px;
            padding: 0 4px;
            border-radius: 9999px;
            background: var(--teal-600);
            font-size: 11px;
            color: #fff
        }

        @media(min-width:1024px) {
            .tb-filterbtn {
                display: none
            }
        }

        .tb-row2 {
            display: flex;
            flex-direction: column;
            gap: 12px
        }

        @media(min-width:640px) {
            .tb-row2 {
                flex-direction: row;
                align-items: center;
                justify-content: space-between
            }
        }

        .tb-count {
            font-size: .875rem;
            color: var(--slate-500)
        }

        .tb-count b {
            font-weight: 600;
            color: var(--ink)
        }

        .tb-sort {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: .875rem;
            color: var(--slate-500)
        }

        .tb-sort select {
            height: 44px;
            border-radius: 12px;
            border: 1px solid var(--border);
            background: #fff;
            padding: 0 12px;
            font-size: .875rem;
            font-weight: 500;
            color: var(--ink);
            outline: none;
            cursor: pointer
        }

        .tb-sort select:focus {
            border-color: var(--teal-500)
        }

        /* chips */
        .chips {
            margin-top: 16px;
            display: flex;
            flex-wrap: wrap;
            gap: 8px
        }

        .chip {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            border-radius: 9999px;
            background: var(--teal-50);
            padding: 6px 12px;
            font-size: .75rem;
            font-weight: 500;
            color: var(--teal-700);
            border: none;
            cursor: pointer
        }

        .chip:hover {
            background: var(--teal-100)
        }

        .chip svg {
            width: 12px;
            height: 12px
        }

        /* ===== Grid ===== */
        .grid {
            margin-top: 32px;
            display: grid;
            gap: 24px;
            grid-template-columns: 1fr
        }

        @media(min-width:768px) {
            .grid {
                grid-template-columns: repeat(2, 1fr)
            }
        }

        @media(min-width:1280px) {
            .grid {
                grid-template-columns: repeat(3, 1fr)
            }
        }

        /* test card */
        .tcard {
            display: flex;
            flex-direction: column;
            border-radius: 24px;
            border: 1px solid var(--border);
            background: #fff;
            padding: 24px;
            transition: all .3s
        }

        .tcard:hover {
            transform: translateY(-4px);
            border-color: #99f6e4;
            box-shadow: 0 18px 50px -28px rgba(15, 23, 42, .28)
        }

        .card-top {
            display: flex;
            align-items: flex-start;
            justify-content: space-between;
            gap: 12px
        }

        .cat-pill {
            border-radius: 9999px;
            padding: 4px 12px;
            font-size: 11px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: .1em;
            background: #f1f5f9;
            color: var(--slate-600)
        }

        .off {
            border-radius: 9999px;
            background: rgba(13, 148, 136, .1);
            padding: 4px 10px;
            font-size: .72rem;
            font-weight: 700;
            color: var(--teal-700)
        }

        .tcard h3 {
            margin-top: 16px;
            font-size: 1.125rem;
            font-weight: 700;
            line-height: 1.4
        }

        .tcard h3 a:hover {
            color: var(--teal-700)
        }

        .tcard .desc {
            margin-top: 8px;
            font-size: .875rem;
            line-height: 1.6;
            color: var(--slate-500);
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden
        }

        .chips2 {
            margin-top: 20px;
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
            font-size: .72rem;
            color: var(--slate-600)
        }

        .chip2 {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            border-radius: 9999px;
            background: #f8fafc;
            padding: 6px 12px
        }

        .chip2 svg {
            width: 14px;
            height: 14px;
            color: var(--teal-600)
        }

        .card-foot {
            margin-top: 24px;
            padding-top: 20px;
            border-top: 1px dashed var(--border);
            display: flex;
            align-items: flex-end;
            justify-content: space-between;
            gap: 12px
        }

        .price {
            font-family: var(--font-heading);
            font-size: 1.5rem;
            font-weight: 800;
            color: var(--ink)
        }

        .mrp {
            font-size: .72rem;
            color: var(--slate-400);
            text-decoration: line-through
        }

        .card-actions {
            display: flex;
            align-items: center;
            gap: 8px
        }

        .details-btn {
            display: none;
            border-radius: 9999px;
            border: 1px solid var(--border);
            background: #fff;
            padding: 0 16px;
            height: 44px;
            font-size: .875rem;
            font-weight: 500;
            color: var(--slate-600)
        }

        @media(min-width:640px) {
            .details-btn {
                display: inline-flex;
                align-items: center
            }
        }

        .details-btn:hover {
            border-color: #99f6e4;
            color: var(--teal-700)
        }

        /* package card */
        .pcard {
            display: flex;
            flex-direction: column;
            border-radius: 24px;
            border: 1px solid var(--border);
            background: #fff;
            padding: 28px;
            transition: all .3s
        }

        .pcard:hover {
            transform: translateY(-4px);
            border-color: #99f6e4;
            box-shadow: 0 24px 60px -30px rgba(15, 23, 42, .3)
        }

        .pcard .cat-pill {
            background: var(--ink);
            color: #fff
        }

        .pcard h3 {
            margin-top: 20px;
            font-size: 1.25rem;
            font-weight: 700;
            line-height: 1.4
        }

        .pcard .desc {
            margin-top: 8px;
            font-size: .875rem;
            color: var(--slate-500)
        }

        .includes-label {
            margin-top: 24px;
            font-size: .72rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: .1em;
            color: var(--slate-400)
        }

        .includes {
            margin-top: 12px;
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 10px;
            font-size: .875rem;
            color: var(--slate-600)
        }

        .includes li {
            display: flex;
            align-items: flex-start;
            gap: 10px
        }

        .check {
            margin-top: 2px;
            width: 20px;
            height: 20px;
            flex-shrink: 0;
            border-radius: 50%;
            background: var(--teal-50);
            display: grid;
            place-items: center
        }

        .check svg {
            width: 12px;
            height: 12px;
            color: var(--teal-600)
        }

        .more {
            padding-left: 32px;
            color: var(--teal-700)
        }

        .pfoot {
            margin-top: 28px;
            padding-top: 24px;
            border-top: 1px dashed var(--border);
            display: flex;
            align-items: flex-end;
            justify-content: space-between;
            gap: 12px
        }

        .pfoot .sub {
            font-size: .72rem;
            color: var(--slate-400)
        }

        .pfoot .sub s {
            color: var(--slate-400)
        }

        /* skeleton */
        .sk {
            border-radius: 24px;
            border: 1px solid var(--border);
            background: #fff;
            padding: 24px
        }

        .sk .line {
            border-radius: 6px
        }

        /* states */
        .state {
            border-radius: 24px;
            padding: 80px 32px;
            text-align: center;
            border: 1px dashed var(--slate-300);
            background: var(--ghost)
        }

        .state.err {
            border: 1px solid #fecaca;
            background: rgba(254, 242, 242, .6)
        }

        .state .ico {
            margin: 0 auto;
            width: 56px;
            height: 56px;
            border-radius: 16px;
            background: #fff;
            display: grid;
            place-items: center;
            color: var(--slate-400);
            box-shadow: 0 1px 2px rgba(0, 0, 0, .04)
        }

        .state.err .ico {
            color: #ef4444
        }

        .state .ico svg {
            width: 24px;
            height: 24px
        }

        .state h3 {
            margin-top: 20px;
            font-size: 1.25rem;
            font-weight: 700;
            color: var(--ink)
        }

        .state p {
            margin-top: 8px;
            font-size: .875rem;
            color: var(--slate-500)
        }

        .state .btn {
            margin-top: 24px
        }

        /* pagination */
        .pagi {
            margin-top: 48px;
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: center;
            gap: 8px
        }

        .pagi button {
            height: 44px;
            min-width: 44px;
            border-radius: 9999px;
            border: 1px solid var(--border);
            background: #fff;
            color: var(--slate-600);
            display: grid;
            place-items: center;
            font-size: .875rem;
            font-weight: 600;
            cursor: pointer;
            transition: all .2s
        }

        .pagi button:hover:not(:disabled) {
            border-color: var(--teal-300)
        }

        .pagi button:disabled {
            opacity: .4;
            cursor: default
        }

        .pagi button.active {
            background: var(--ink);
            border-color: var(--ink);
            color: #fff
        }

        .pagi .num {
            padding: 0 16px
        }

        .pagi svg {
            width: 16px;
            height: 16px
        }

        /* ===== CTA band ===== */
        .cta {
            margin: 0 auto;
            max-width: 1400px;
            padding: 0 20px
        }

        @media(min-width:1024px) {
            .cta {
                padding: 0 40px
            }
        }

        .cta-inner {
            position: relative;
            overflow: hidden;
            border-radius: 32px;
            border: 1px solid #a7f3d0;
            background: linear-gradient(135deg, #ecfdf5, #f0fdfa, #fff);
            padding: 56px 32px
        }

        @media(min-width:1024px) {
            .cta-inner {
                padding: 80px 64px
            }
        }

        .cta-ovl {
            position: absolute;
            inset: 0;
            pointer-events: none;
            background-image: linear-gradient(to right, rgba(15, 118, 110, .08) 1px, transparent 1px), linear-gradient(to bottom, rgba(15, 118, 110, .08) 1px, transparent 1px);
            background-size: 32px 32px;
            -webkit-mask-image: radial-gradient(ellipse at 70% 30%, #000 40%, transparent 90%);
            mask-image: radial-gradient(ellipse at 70% 30%, #000 40%, transparent 90%)
        }

        .cta-grid {
            position: relative;
            display: grid;
            gap: 48px;
            align-items: center
        }

        @media(min-width:1024px) {
            .cta-grid {
                grid-template-columns: 1.05fr .95fr;
                gap: 64px
            }
        }

        .cta-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            border: 1px solid #a7f3d0;
            background: #ecfdf5;
            border-radius: 9999px;
            padding: 6px 14px;
            font-size: .72rem;
            font-weight: 600;
            letter-spacing: .1em;
            color: var(--teal-700)
        }

        .cta-badge svg {
            width: 14px;
            height: 14px
        }

        .cta h2 {
            margin-top: 20px;
            font-size: 1.875rem;
            line-height: 1.1;
            font-weight: 800
        }

        @media(min-width:640px) {
            .cta h2 {
                font-size: 2.25rem
            }
        }

        @media(min-width:1024px) {
            .cta h2 {
                font-size: 2.75rem
            }
        }

        .cta h2 .g {
            color: var(--teal-700)
        }

        .cta .sub {
            margin-top: 16px;
            max-width: 36rem;
            font-size: 1rem;
            line-height: 1.7;
            color: #475569
        }

        .cta-row {
            margin-top: 32px;
            display: flex;
            flex-wrap: wrap;
            gap: 12px
        }

        .cta-primary {
            background: var(--teal-700);
            color: #fff;
            box-shadow: 0 12px 30px -12px rgba(15, 118, 110, .45)
        }

        .cta-primary:hover {
            background: #0d665f
        }

        .cta-card {
            justify-self: end;
            width: 100%;
            max-width: 448px
        }

        .cta-cardinner {
            border-radius: 24px;
            border: 1px solid #f1f5f9;
            background: #fff;
            padding: 28px;
            box-shadow: 0 30px 70px -40px rgba(15, 23, 42, .45)
        }

        .cta-perk {
            display: flex;
            align-items: center;
            gap: 16px
        }

        .cta-perk+.cta-perk {
            margin-top: 16px
        }

        .cta-perk .ic {
            width: 44px;
            height: 44px;
            flex-shrink: 0;
            border-radius: 12px;
            background: #ecfdf5;
            color: var(--teal-700);
            display: grid;
            place-items: center
        }

        .cta-perk .ic svg {
            width: 20px;
            height: 20px
        }

        .cta-perk b {
            font-family: var(--font-heading);
            font-size: 1rem;
            font-weight: 600;
            color: var(--ink)
        }

        .cta-dash {
            margin: 20px 0;
            border-top: 1px dashed var(--border)
        }

        .cta-foot {
            font-size: .75rem;
            line-height: 1.6;
            color: var(--slate-500)
        }

        

/* ===== Mobile filter drawer ===== */
        .mfd {
            position: fixed;
            inset: 0;
            z-index: 50;
            display: none
        }

        .mfd.open {
            display: block
        }

        .mfd-scrim {
            position: absolute;
            inset: 0;
            background: rgba(15, 23, 42, .4);
            backdrop-filter: blur(4px)
        }

        .mfd-panel {
            position: absolute;
            left: 0;
            right: 0;
            bottom: 0;
            max-height: 86vh;
            overflow-y: auto;
            border-radius: 28px 28px 0 0;
            background: #fff;
            padding: 20px;
            animation: slideUp .3s ease
        }

        .mfd-head {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-bottom: 16px
        }

        .mfd-head span {
            font-family: var(--font-heading);
            font-size: 1.125rem;
            font-weight: 800;
            color: var(--ink)
        }

        .mfd-close {
            width: 40px;
            height: 40px;
            border-radius: 9999px;
            background: #f1f5f9;
            border: none;
            cursor: pointer;
            display: grid;
            place-items: center;
            color: var(--slate-600)
        }

        .mfd-close svg {
            width: 16px;
            height: 16px
        }

        .mfd-show {
            margin-top: 16px;
            height: 48px;
            width: 100%;
            border-radius: 9999px;
            background: var(--teal-600);
            color: #fff;
            font-size: .875rem;
            font-weight: 600;
            border: none;
            cursor: pointer
        }

        /* mobile nav drawer */
        .drawer {
            position: fixed;
            inset: 0;
            z-index: 50;
            visibility: hidden;
            pointer-events: none
        }

        .drawer.open {
            visibility: visible;
            pointer-events: auto
        }

        .drawer-scrim {
            position: absolute;
            inset: 0;
            background: rgba(15, 23, 42, .4);
            backdrop-filter: blur(4px);
            opacity: 0;
            transition: opacity .3s
        }

        .drawer.open .drawer-scrim {
            opacity: 1
        }

        .drawer-panel {
            position: absolute;
            right: 0;
            top: 0;
            height: 100%;
            width: 86%;
            max-width: 380px;
            background: #fff;
            padding: 24px;
            box-shadow: -12px 0 40px -12px rgba(15, 23, 42, .5);
            transform: translateX(100%);
            transition: transform .32s cubic-bezier(.22, 1, .36, 1);
            display: flex;
            flex-direction: column
        }

        .drawer.open .drawer-panel {
            transform: translateX(0)
        }

        .drawer-head {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-bottom: 32px
        }

        .drawer-head span {
            font-family: var(--font-heading);
            font-weight: 800;
            color: var(--ink)
        }

        .drawer-nav {
            display: flex;
            flex-direction: column;
            flex: 1
        }

        .drawer-nav a {
            padding: 14px 0;
            border-bottom: 1px solid #f1f5f9;
            font-size: 1rem;
            font-weight: 500;
            color: var(--slate-700)
        }

        .drawer-nav a.active {
            color: var(--teal-700)
        }

        .drawer-cta {
            margin-top: 28px;
            height: 48px;
            width: 100%;
            font-size: 1rem
        }
    


/* Shimmer Animation for Skeletons */
.shimmer {
  background: #f1f5f9;
  background-image: linear-gradient(90deg, #f1f5f9 0px, #f8fafc 40px, #f1f5f9 80px);
  background-size: 300px;
  animation: shimmer 1.5s infinite linear;
}
@keyframes shimmer {
  0% { background-position: -300px 0; }
  100% { background-position: 300px 0; }
}

