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

  :root {
    --navy: #081429;
    --teal: #004f6d;
    --red: #e43333;
    --white: #fff;
    --light: #f4f8fb;
    --light2: #e8f2f8;
    --teal-light: #4db8d8;
    --muted: rgba(8, 20, 41, 0.48);
    --font: 'Montserrat', sans-serif;
    --radius: 10px;
    --radius-lg: 14px;
  }

  html {
    scroll-behavior: smooth
  }

  body {
    font-family: var(--font);
    color: var(--navy);
    background: var(--white);
    line-height: 1.6;
    overflow-x: hidden
  }

  ::-webkit-scrollbar {
    width: 4px
  }

  ::-webkit-scrollbar-thumb {
    background: var(--teal);
    border-radius: 2px
  }

  /* ── TOPBAR ── */
  .topbar {
    background: var(--white);
    border-bottom: 1px solid rgba(8, 20, 41, 0.09);
    padding: 7px 48px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 11px;
    color: var(--muted)
  }

  .topbar-left {
    display: flex;
    align-items: center;
    gap: 18px
  }

  .topbar-contact {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--teal);
    font-weight: 600;
    text-decoration: none;
    transition: color .2s
  }

  .topbar-contact:hover {
    color: var(--red)
  }

  .topbar-contact svg {
    flex-shrink: 0
  }

  .topbar-div {
    width: 1px;
    height: 14px;
    background: rgba(8, 20, 41, 0.15)
  }

  .topbar-right {
    display: flex;
    align-items: center;
    gap: 14px
  }

  .pulse {
    display: inline-block;
    width: 6px;
    height: 6px;
    background: var(--red);
    border-radius: 50%;
    animation: blink 1.6s infinite;
    vertical-align: middle;
    margin-right: 5px;
    flex-shrink: 0
  }

  @keyframes blink {

    0%,
    100% {
      opacity: 1
    }

    50% {
      opacity: 0.25
    }
  }

  .badge-247 {
    background: rgba(228, 51, 51, 0.08);
    border: 1px solid rgba(228, 51, 51, 0.25);
    color: var(--red);
    font-size: 10px;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 20px;
    letter-spacing: .06em;
    display: flex;
    align-items: center;
    gap: 4px
  }

  /* ── NAVBAR ── */
  .navbar {
    background: rgba(0, 79, 109, 0.92);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 0 48px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    height: 68px;
    box-shadow: 0 4px 24px rgba(0, 79, 109, 0.25)
  }

  .nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none
  }

  .nav-logo img {
    height: 44px;
    width: auto
  }

  .nav-logo-text strong {
    display: block;
    font-size: 12px;
    font-weight: 800;
    color: var(--white);
    letter-spacing: .04em;
    line-height: 1.2
  }

  .nav-logo-text span {
    font-size: 9px;
    font-weight: 500;
    color: var(--teal-light);
    letter-spacing: .18em
  }

  .nav-links {
    display: flex;
    gap: 0;
    align-items: center
  }

  .nav-links a {
    padding: 0 13px;
    font-size: 12px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.78);
    text-decoration: none;
    height: 68px;
    display: flex;
    align-items: center;
    border-bottom: 2px solid transparent;
    transition: color .2s, border-color .2s;
    letter-spacing: .02em;
    white-space: nowrap
  }

  .nav-links a:hover,
  .nav-links a.active {
    color: var(--white);
    border-bottom-color: var(--red)
  }

  .nav-247 {
    display: flex;
    align-items: center;
    gap: 7px;
    margin-left: 16px;
    padding: 7px 14px;
    background: rgba(228, 51, 51, 0.18);
    border: 1px solid rgba(228, 51, 51, 0.4);
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    color: #ff8080;
    letter-spacing: .04em;
    white-space: nowrap
  }

  /* ── HERO ── */
  .hero {
    background: var(--white);
    padding: 80px 48px 72px;
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 72px;
    align-items: center;
    position: relative;
    border-bottom: 1px solid rgba(8, 20, 41, 0.06)
  }

  .hero-accent-line {
    position: absolute;
    left: 0;
    top: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, var(--red) 0%, var(--teal) 100%)
  }

  .hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(0, 79, 109, 0.07);
    border: 1px solid rgba(0, 79, 109, 0.18);
    color: var(--teal);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .1em;
    padding: 5px 13px;
    border-radius: 20px;
    margin-bottom: 20px
  }

  .hero h1 {
    font-size: 48px;
    font-weight: 800;
    color: var(--navy);
    line-height: 1.1;
    margin-bottom: 16px;
    letter-spacing: -.02em
  }

  .hero h1 em {
    color: var(--red);
    font-style: normal
  }

  .hero-sub {
    font-size: 15px;
    color: var(--muted);
    line-height: 1.75;
    margin-bottom: 32px;
    max-width: 480px
  }

  .hero-sub strong {
    color: var(--teal);
    font-weight: 700
  }

  .hero-search {
    display: flex;
    background: var(--white);
    border: 1.5px solid rgba(8, 20, 41, 0.12);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(8, 20, 41, 0.06);
    margin-bottom: 28px
  }

  .hero-search input {
    flex: 1;
    border: none;
    outline: none;
    padding: 14px 18px;
    font-family: var(--font);
    font-size: 13px;
    color: var(--navy);
    background: transparent
  }

  .hero-search input::placeholder {
    color: rgba(8, 20, 41, 0.35)
  }

  .hero-search-btn {
    background: var(--teal);
    border: none;
    color: var(--white);
    padding: 0 22px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .06em;
    transition: background .2s
  }

  .hero-search-btn:hover {
    background: #003d55
  }

  .hero-quick {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap
  }

  .hero-quick-label {
    font-size: 11px;
    color: var(--muted);
    font-weight: 500
  }

  .hero-quick a {
    font-size: 11px;
    color: var(--teal);
    text-decoration: none;
    padding: 4px 12px;
    border: 1px solid rgba(0, 79, 109, 0.2);
    border-radius: 20px;
    transition: all .2s;
    font-weight: 600
  }

  .hero-quick a:hover {
    background: var(--teal);
    color: var(--white);
    border-color: var(--teal)
  }

  /* Urgency cards (white version) */
  .urgency-cards {
    display: flex;
    flex-direction: column;
    gap: 10px
  }

  .urg-card {
    background: var(--white);
    border: 1px solid rgba(8, 20, 41, 0.09);
    border-radius: var(--radius);
    padding: 16px 20px;
    display: flex;
    align-items: center;
    gap: 14px;
    cursor: pointer;
    transition: all .22s;
    text-decoration: none;
    box-shadow: 0 2px 8px rgba(8, 20, 41, 0.04)
  }

  .urg-card:hover {
    border-color: var(--teal);
    box-shadow: 0 6px 20px rgba(0, 79, 109, 0.1);
    transform: translateX(3px)
  }

  .urg-icon {
    width: 44px;
    height: 44px;
    border-radius: 9px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0
  }

  .urg-icon.red {
    background: rgba(228, 51, 51, 0.08)
  }

  .urg-icon.teal {
    background: rgba(0, 79, 109, 0.08)
  }

  .urg-info h3 {
    font-size: 13px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 2px
  }

  .urg-info p {
    font-size: 11px;
    color: var(--muted)
  }

  .urg-arrow {
    margin-left: auto;
    color: rgba(8, 20, 41, 0.2);
    flex-shrink: 0;
    transition: transform .2s
  }

  .urg-card:hover .urg-arrow {
    transform: translateX(3px)
  }

  /* ── TRUST STRIP ── */
  .trust-strip {
    background: var(--teal);
    padding: 18px 48px;
    display: flex;
    gap: 0;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap
  }

  .trust-item {
    display: flex;
    align-items: center;
    gap: 9px;
    color: var(--white);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .04em;
    padding: 4px 28px
  }

  .trust-div {
    width: 1px;
    height: 20px;
    background: rgba(255, 255, 255, .2)
  }

  /* ── SECTIONS ── */
  .section {
    padding: 80px 48px
  }

  .section-inner {
    max-width: 1200px;
    margin: 0 auto
  }

  .section-label {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .18em;
    color: var(--red);
    text-transform: uppercase;
    margin-bottom: 10px
  }

  .section-title {
    font-size: 32px;
    font-weight: 800;
    color: var(--navy);
    line-height: 1.15;
    margin-bottom: 12px;
    letter-spacing: -.02em
  }

  .section-sub {
    font-size: 15px;
    color: var(--muted);
    margin-bottom: 44px;
    max-width: 560px;
    line-height: 1.7
  }

  .bg-light {
    background: var(--light)
  }

  .bg-teal {
    background: var(--teal)
  }

  .bg-teal .section-label {
    color: rgba(255, 255, 255, 0.6)
  }

  .bg-teal .section-title {
    color: var(--white)
  }

  .bg-teal .section-sub {
    color: rgba(255, 255, 255, .6)
  }

  /* ── PHOTO PLACEHOLDER ── */
  .photo-ph {
    background: #f5f7fa;
    border: 1px dashed rgba(8, 20, 41, 0.12);
    border-radius: 8px 8px 0 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: rgba(8, 20, 41, 0.25);
    font-size: 10px;
    font-weight: 500;
    letter-spacing: .04em;
    text-align: center;
    padding: 12px
  }

  /* ── SERVICES ── */
  .services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px
  }

  .srv-card {
    border: 1px solid rgba(8, 20, 41, 0.08);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all .25s;
    background: var(--white);
    position: relative
  }

  .srv-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 36px rgba(8, 20, 41, 0.09);
    border-color: rgba(0, 79, 109, 0.2)
  }

  .srv-card:hover .srv-accent {
    transform: scaleX(1)
  }

  .srv-body {
    padding: 18px
  }

  .srv-icon-wrap {
    margin-bottom: 10px
  }

  .srv-badge {
    display: inline-block;
    font-size: 9px;
    font-weight: 700;
    color: var(--red);
    border: 1px solid rgba(228, 51, 51, 0.35);
    border-radius: 4px;
    padding: 2px 7px;
    margin-bottom: 7px;
    letter-spacing: .08em;
    background: rgba(228, 51, 51, 0.05)
  }

  .srv-body h3 {
    font-size: 13px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 7px;
    line-height: 1.3
  }

  .srv-body p {
    font-size: 11px;
    color: var(--muted);
    line-height: 1.65;
    margin-bottom: 14px
  }

  .srv-accent {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--teal);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .3s
  }

  .srv-cta {
    font-size: 11px;
    font-weight: 700;
    color: var(--teal);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    letter-spacing: .04em;
    transition: gap .2s
  }

  .srv-cta:hover {
    gap: 8px
  }

  /* ── BUTTONS ── */
  .btn-primary {
    background: var(--red);
    color: var(--white);
    border: none;
    padding: 13px 26px;
    font-family: var(--font);
    font-size: 13px;
    font-weight: 700;
    border-radius: 6px;
    cursor: pointer;
    letter-spacing: .04em;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: background .2s
  }

  .btn-primary:hover {
    background: #c42828
  }

  .btn-teal {
    background: var(--teal);
    color: var(--white);
    border: none;
    padding: 13px 26px;
    font-family: var(--font);
    font-size: 13px;
    font-weight: 700;
    border-radius: 6px;
    cursor: pointer;
    letter-spacing: .04em;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: background .2s
  }

  .btn-teal:hover {
    background: #003d55
  }

  .btn-outline {
    background: transparent;
    color: var(--teal);
    border: 2px solid var(--teal);
    padding: 12px 26px;
    font-family: var(--font);
    font-size: 13px;
    font-weight: 700;
    border-radius: 6px;
    cursor: pointer;
    letter-spacing: .04em;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all .2s
  }

  .btn-outline:hover {
    background: var(--teal);
    color: var(--white)
  }

  .btn-white {
    background: var(--white);
    color: var(--teal);
    border: none;
    padding: 13px 26px;
    font-family: var(--font);
    font-size: 13px;
    font-weight: 700;
    border-radius: 6px;
    cursor: pointer;
    letter-spacing: .04em;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all .2s
  }

  .btn-white:hover {
    background: var(--light)
  }

  /* ── SPECIALTIES ── */
  .spec-search-wrap {
    position: relative;
    margin-bottom: 20px;
    max-width: 360px
  }

  .spec-search-wrap svg {
    position: absolute;
    left: 13px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none
  }

  .spec-search-wrap input {
    width: 100%;
    border: 1.5px solid rgba(8, 20, 41, 0.12);
    border-radius: 8px;
    padding: 11px 14px 11px 40px;
    font-family: var(--font);
    font-size: 13px;
    color: var(--navy);
    outline: none;
    background: var(--white)
  }

  .spec-search-wrap input:focus {
    border-color: var(--teal)
  }

  .spec-filters {
    display: flex;
    gap: 7px;
    margin-bottom: 26px;
    flex-wrap: wrap
  }

  .spec-filter-btn {
    padding: 6px 16px;
    border-radius: 20px;
    font-family: var(--font);
    font-size: 11px;
    font-weight: 600;
    cursor: pointer;
    border: 1.5px solid rgba(8, 20, 41, 0.12);
    background: var(--white);
    color: var(--navy);
    transition: all .2s
  }

  .spec-filter-btn.active,
  .spec-filter-btn:hover {
    background: var(--teal);
    color: var(--white);
    border-color: var(--teal)
  }

  .specs-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 9px
  }

  .spec-item {
    background: var(--white);
    border: 1px solid rgba(8, 20, 41, 0.08);
    border-radius: var(--radius);
    overflow: hidden;
    cursor: pointer;
    transition: all .22s
  }

  .spec-item:hover {
    border-color: var(--teal);
    box-shadow: 0 6px 20px rgba(0, 79, 109, 0.1);
    transform: translateY(-2px)
  }

  .spec-item-body {
    padding: 14px 15px
  }

  .spec-ic {
    margin-bottom: 8px
  }

  .spec-sub {
    font-size: 9px;
    font-weight: 700;
    color: var(--teal);
    letter-spacing: .1em;
    text-transform: uppercase;
    margin-bottom: 4px
  }

  .spec-item h4 {
    font-size: 12px;
    font-weight: 700;
    color: var(--navy);
    line-height: 1.3
  }

  .spec-accent {
    height: 3px;
    background: var(--teal);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .22s
  }

  .spec-item:hover .spec-accent {
    transform: scaleX(1)
  }

  /* ── IMAGING ── */
  .imaging-tabs {
    display: flex;
    gap: 0;
    border-bottom: 2px solid rgba(255, 255, 255, 0.15);
    margin-bottom: 36px
  }

  .img-tab {
    padding: 12px 22px;
    font-size: 13px;
    font-weight: 700;
    color: rgba(255, 255, 255, .5);
    cursor: pointer;
    border-bottom: 3px solid transparent;
    margin-bottom: -2px;
    transition: all .2s;
    letter-spacing: .04em
  }

  .img-tab.active,
  .img-tab:hover {
    color: var(--white);
    border-bottom-color: var(--white)
  }

  .img-tab-content {
    display: none
  }

  .img-tab-content.active {
    display: block
  }

  .acc-item {
    border-bottom: 1px solid rgba(255, 255, 255, .1)
  }

  .acc-header {
    display: flex;
    align-items: center;
    padding: 15px 0;
    cursor: pointer;
    color: rgba(255, 255, 255, .85);
    font-size: 13px;
    font-weight: 700;
    transition: color .2s;
    gap: 10px
  }

  .acc-header:hover {
    color: var(--white)
  }

  .acc-title {
    flex: 1
  }

  .acc-badge-wrap {
    display: flex;
    gap: 6px;
    align-items: center
  }

  .acc-badge {
    display: inline-flex;
    align-items: center;
    font-size: 10px;
    font-weight: 700;
    padding: 3px 9px;
    border-radius: 4px
  }

  .acc-badge.ayuno {
    background: rgba(228, 51, 51, .15);
    color: #f07070;
    border: 1px solid rgba(228, 51, 51, .25)
  }

  .acc-badge.h24 {
    background: rgba(255, 255, 255, .1);
    color: rgba(255, 255, 255, .8);
    border: 1px solid rgba(255, 255, 255, .15)
  }

  .acc-chevron {
    flex-shrink: 0;
    transition: transform .3s;
    color: rgba(255, 255, 255, .35)
  }

  .acc-body {
    display: none;
    padding-bottom: 18px
  }

  .acc-body.open {
    display: block
  }

  .acc-desc {
    font-size: 12px;
    color: rgba(255, 255, 255, .5);
    margin-bottom: 10px;
    line-height: 1.6
  }

  .acc-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 7px
  }

  .acc-tag {
    font-size: 11px;
    color: rgba(255, 255, 255, .6);
    padding: 4px 11px;
    background: rgba(255, 255, 255, .07);
    border-radius: 4px;
    border: 1px solid rgba(255, 255, 255, .1)
  }

  .tac-card {
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: var(--radius-lg);
    padding: 36px
  }

  .tac-card h3 {
    font-size: 22px;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 12px
  }

  .tac-card>p {
    font-size: 14px;
    color: rgba(255, 255, 255, .6);
    line-height: 1.75;
    margin-bottom: 24px
  }

  .tac-feats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px
  }

  .tac-feat {
    display: flex;
    align-items: flex-start;
    gap: 9px;
    font-size: 13px;
    color: rgba(255, 255, 255, .75)
  }

  .tac-dot {
    width: 6px;
    height: 6px;
    background: var(--teal-light);
    border-radius: 50%;
    margin-top: 6px;
    flex-shrink: 0
  }

  /* ── B2B ── */
  .b2b-wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0
  }

  .b2b-left {
    background: var(--white);
    padding: 72px 64px;
    border-right: 1px solid rgba(8, 20, 41, .06)
  }

  .b2b-right {
    background: var(--light);
    padding: 72px 64px
  }

  .b2b-left .section-label {
    color: var(--red)
  }

  .b2b-feats {
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin-bottom: 36px
  }

  .b2b-feat {
    display: flex;
    align-items: flex-start;
    gap: 13px
  }

  .b2b-feat-ic {
    width: 36px;
    height: 36px;
    background: rgba(0, 79, 109, 0.08);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 2px
  }

  .b2b-feat-text h4 {
    font-size: 13px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 3px
  }

  .b2b-feat-text p {
    font-size: 12px;
    color: var(--muted);
    line-height: 1.6
  }

  .equip-cards {
    display: flex;
    flex-direction: column;
    gap: 12px
  }

  .equip-card {
    background: var(--white);
    border: 1px solid rgba(8, 20, 41, .08);
    border-radius: var(--radius);
    padding: 18px 22px;
    display: flex;
    align-items: center;
    gap: 14px;
    box-shadow: 0 2px 8px rgba(8, 20, 41, .04)
  }

  .equip-ic {
    width: 44px;
    height: 44px;
    background: rgba(0, 79, 109, 0.08);
    border-radius: 9px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0
  }

  .equip-info h4 {
    font-size: 13px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 3px
  }

  .equip-info p {
    font-size: 11px;
    color: var(--muted);
    line-height: 1.5
  }

  .contact-box {
    background: var(--white);
    border: 1.5px solid rgba(0, 79, 109, .15);
    border-radius: var(--radius-lg);
    padding: 28px;
    margin-top: 28px
  }

  .contact-box h4 {
    font-size: 14px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 18px
  }

  .contact-row {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid rgba(8, 20, 41, .06)
  }

  .contact-row:last-child {
    border-bottom: none;
    padding-bottom: 0
  }

  .contact-ic {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0
  }

  .contact-ic.red {
    background: rgba(228, 51, 51, .08)
  }

  .contact-ic.teal {
    background: rgba(0, 79, 109, .08)
  }

  .contact-ic.green {
    background: rgba(34, 160, 90, .08)
  }

  .contact-row-info span {
    display: block;
    font-size: 10px;
    font-weight: 700;
    color: var(--muted);
    letter-spacing: .06em;
    text-transform: uppercase;
    margin-bottom: 2px
  }

  .contact-row-info strong {
    font-size: 14px;
    font-weight: 700;
    color: var(--navy)
  }

  .contact-row-info a {
    text-decoration: none;
    color: var(--navy);
    font-weight: 700;
    font-size: 14px
  }

  /* ── INSURERS ── */
  .insurers-grid {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 36px
  }

  .insurer-pill {
    background: var(--white);
    border: 1.5px solid rgba(0, 79, 109, 0.15);
    border-radius: var(--radius);
    padding: 16px 28px;
    font-size: 14px;
    font-weight: 700;
    color: var(--teal);
    transition: all .2s;
    display: flex;
    align-items: center;
    gap: 8px
  }

  .insurer-pill:hover {
    background: var(--teal);
    color: var(--white);
    border-color: var(--teal)
  }

  /* ── FOOTER ── */
  footer {
    background: #004f6d;
    border-top: none;
    padding: 60px 48px 30px
  }

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

  .footer-logo {
    display: flex;
    align-items: center;
    gap: 11px;
    margin-bottom: 14px
  }

  .footer-logo img {
    height: 40px;
    width: auto
  }

  .footer-logo-text strong {
    display: block;
    font-size: 11px;
    font-weight: 800;
    color: var(--white);
    letter-spacing: .04em
  }

  .footer-logo-text span {
    font-size: 9px;
    color: rgba(255, 255, 255, 0.5);
    letter-spacing: .16em
  }

  .footer-brand p {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.75;
    margin-bottom: 18px
  }

  .footer-contact {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.65);
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 7px
  }

  .footer-contact a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-weight: 600
  }

  .footer-col h5 {
    font-size: 9px;
    font-weight: 700;
    letter-spacing: .14em;
    color: rgba(255, 255, 255, 0.4);
    text-transform: uppercase;
    margin-bottom: 14px
  }

  .footer-col a {
    display: block;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    margin-bottom: 8px;
    transition: color .2s
  }

  .footer-col a:hover {
    color: var(--white)
  }

  .footer-social {
    display: flex;
    gap: 8px;
    margin-top: 16px
  }

  .soc-btn {
    width: 34px;
    height: 34px;
    border: 1.5px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    transition: all .2s
  }

  .soc-btn:hover {
    border-color: var(--white);
    color: var(--white)
  }

  .footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    font-size: 11px;
    color: rgba(255, 255, 255, 0.3)
  }

  .footer-emerg {
    color: #ff8080;
    font-weight: 800;
    font-size: 16px;
    text-decoration: none
  }

  /* ── MODAL ── */
  .modal-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(8, 20, 41, .6);
    z-index: 2000;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(4px)
  }

  .modal-overlay.open {
    display: flex
  }

  .modal-box {
    background: var(--white);
    border-radius: 16px;
    max-width: 640px;
    width: 90%;
    max-height: 85vh;
    overflow-y: auto;
    padding: 36px;
    position: relative;
    animation: mIn .22s ease
  }

  @keyframes mIn {
    from {
      opacity: 0;
      transform: scale(.96)
    }

    to {
      opacity: 1;
      transform: scale(1)
    }
  }

  .modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    background: rgba(8, 20, 41, .06);
    border: none;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    font-size: 18px;
    cursor: pointer;
    color: var(--muted);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .2s
  }

  .modal-close:hover {
    background: rgba(8, 20, 41, .12)
  }

  .modal-label {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .14em;
    color: var(--teal);
    text-transform: uppercase;
    margin-bottom: 7px
  }

  .modal-title {
    font-size: 26px;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 18px;
    letter-spacing: -.01em
  }

  .modal-sec {
    margin-top: 16px
  }

  .modal-sec h4 {
    font-size: 10px;
    font-weight: 700;
    color: var(--teal);
    letter-spacing: .1em;
    text-transform: uppercase;
    margin-bottom: 6px
  }

  .modal-sec p {
    font-size: 14px;
    color: rgba(8, 20, 41, .7);
    line-height: 1.7
  }

  .modal-contacts {
    display: flex;
    gap: 10px;
    margin-top: 26px;
    flex-wrap: wrap
  }

  .modal-contact-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    border-radius: 7px;
    font-family: var(--font);
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    cursor: pointer;
    border: none;
    transition: all .2s
  }

  .modal-contact-btn.tel {
    background: var(--teal);
    color: var(--white)
  }

  .modal-contact-btn.tel:hover {
    background: #003d55
  }

  .modal-contact-btn.wa {
    background: #25d366;
    color: var(--white)
  }

  .modal-contact-btn.wa:hover {
    background: #1aad54
  }

  /* ── FADE ANIMATIONS ── */
  .fade-up {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity .55s ease, transform .55s ease
  }

  .fade-up.visible {
    opacity: 1;
    transform: translateY(0)
  }

  /* ══════════════════════════════════════════════════
  RESPONSIVE — Desktop wide  ≥ 1280px  (refuerzo)
  RESPONSIVE — Tablet        769–1279px
  RESPONSIVE — Mobile        ≤ 768px
  ══════════════════════════════════════════════════ */

  /* ── HAMBURGER BUTTON (hidden on desktop) ── */
  .nav-hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    cursor: pointer;
    padding: 6px;
    margin-left: auto
  }

  .nav-hamburger span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: all .25s
  }

  .nav-hamburger.open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg)
  }

  .nav-hamburger.open span:nth-child(2) {
    opacity: 0
  }

  .nav-hamburger.open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg)
  }

  /* ── DESKTOP WIDE ≥ 1280px ── */
  @media (min-width:1280px) {

    .topbar,
    .navbar,
    .section,
    .hero {
      padding-left: 64px;
      padding-right: 64px
    }
  }

  /* ── TABLET  769 – 1279px ── */
  @media (max-width:1279px) and (min-width:769px) {
    .topbar {
      padding: 6px 24px;
      flex-wrap: wrap;
      gap: 6px
    }

    .topbar-right {
      gap: 10px
    }

    .navbar {
      padding: 0 24px;
      height: 60px
    }

    .nav-links a {
      padding: 0 9px;
      font-size: 11px;
      height: 60px
    }

    .nav-247 {
      margin-left: 10px;
      font-size: 10px;
      padding: 5px 10px
    }

    .nav-logo-text strong {
      font-size: 11px
    }

    .hero {
      padding: 56px 24px;
      gap: 40px;
      grid-template-columns: 1fr 1fr
    }

    .hero h1 {
      font-size: 36px
    }

    .trust-strip {
      padding: 14px 24px;
      gap: 0
    }

    .trust-item {
      padding: 4px 14px;
      font-size: 11px
    }

    .section {
      padding: 60px 24px
    }

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

    .specs-grid {
      grid-template-columns: repeat(3, 1fr)
    }

    .b2b-wrap {
      grid-template-columns: 1fr 1fr
    }

    .b2b-left,
    .b2b-right {
      padding: 48px 32px
    }

    .footer-top {
      grid-template-columns: 1.4fr 1fr 1fr 1fr;
      gap: 28px;
      padding: 0
    }

    footer {
      padding: 48px 24px 24px
    }

    /* imaging grid */
    #tab-xray>div[style*="grid-template-columns"] {
      display: flex;
      flex-direction: column;
      gap: 0
    }
  }

  /* ── MOBILE  ≤ 768px ── */
  @media (max-width:768px) {

    /* Topbar */
    .topbar {
      padding: 6px 16px;
      flex-wrap: wrap;
      gap: 4px;
      justify-content: center
    }

    .topbar-left {
      flex-wrap: wrap;
      gap: 6px;
      justify-content: center
    }

    .topbar-right {
      gap: 8px;
      justify-content: center;
      width: 100%
    }

    .topbar-div {
      display: none
    }

    /* Navbar */
    .navbar {
      padding: 0 16px;
      height: 56px;
      flex-wrap: wrap;
      position: sticky;
      top: 0;
      z-index: 1000
    }

    .nav-hamburger {
      display: flex
    }

    .nav-links {
      display: none;
      flex-direction: column;
      width: 100%;
      background: rgba(0, 79, 109, 0.98);
      position: absolute;
      top: 56px;
      left: 0;
      right: 0;
      z-index: 999;
      padding: 10px 0;
      border-top: 1px solid rgba(255, 255, 255, 0.1);
      box-shadow: 0 8px 24px rgba(0, 79, 109, 0.3)
    }

    .nav-links.open {
      display: flex
    }

    .nav-links a {
      height: auto;
      padding: 12px 20px;
      border-bottom: none;
      font-size: 13px;
      border-left: 3px solid transparent
    }

    .nav-links a:hover,
    .nav-links a.active {
      border-bottom: none;
      border-left-color: var(--red)
    }

    .nav-247 {
      display: none
    }

    /* Hero */
    .hero {
      padding: 40px 16px 32px;
      display: flex;
      flex-direction: column;
      gap: 28px
    }

    .hero-accent-line {
      display: none
    }

    .hero h1 {
      font-size: 30px;
      letter-spacing: -.01em
    }

    .hero-sub {
      font-size: 14px;
      margin-bottom: 20px
    }

    .hero-search {
      flex-direction: row
    }

    .hero-search input {
      font-size: 12px;
      padding: 12px 14px
    }

    .hero-search-btn {
      padding: 0 16px;
      font-size: 10px
    }

    .hero-quick {
      gap: 6px
    }

    .urgency-cards {
      gap: 8px
    }

    .urg-card {
      padding: 12px 14px
    }

    /* Trust strip */
    .trust-strip {
      padding: 10px 12px;
      gap: 0;
      flex-direction: column;
      align-items: flex-start
    }

    .trust-item {
      padding: 4px 0;
      font-size: 11px
    }

    .trust-div {
      display: none
    }

    /* Sections */
    .section {
      padding: 48px 16px
    }

    .section-title {
      font-size: 24px
    }

    .section-sub {
      font-size: 13px;
      margin-bottom: 28px
    }

    /* Services grid */
    .services-grid {
      grid-template-columns: 1fr
    }

    /* Specs */
    .spec-search-wrap {
      max-width: 100%
    }

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

    .spec-filters {
      gap: 5px
    }

    .spec-filter-btn {
      font-size: 10px;
      padding: 4px 10px
    }

    /* Imaging */
    .imaging-tabs {
      flex-wrap: nowrap;
      overflow-x: auto;
      -webkit-overflow-scrolling: touch;
      padding-bottom: 4px
    }

    .img-tab {
      white-space: nowrap;
      font-size: 11px;
      padding: 10px 14px
    }

    #tab-xray>div[style*="grid-template-columns"] {
      display: flex;
      flex-direction: column;
      gap: 0
    }

    /* TAC card */
    .tac-card {
      padding: 20px
    }

    .tac-feats {
      grid-template-columns: 1fr
    }

    /* B2B */
    .b2b-wrap {
      display: flex;
      flex-direction: column
    }

    .b2b-left,
    .b2b-right {
      padding: 40px 16px
    }

    .b2b-left {
      border-right: none;
      border-bottom: 1px solid rgba(8, 20, 41, .06)
    }

    /* Insurers */
    .insurers-grid {
      gap: 8px
    }

    .insurer-pill {
      padding: 12px 16px;
      font-size: 13px
    }

    /* Footer */
    footer {
      padding: 40px 16px 20px
    }

    .footer-top {
      grid-template-columns: 1fr;
      gap: 32px
    }

    .footer-bottom {
      flex-direction: column;
      gap: 4px;
      text-align: center
    }

    /* Modal */
    .modal-box {
      padding: 24px;
      max-height: 90vh
    }

    .modal-title {
      font-size: 20px
    }

    .modal-contacts {
      flex-direction: column
    }

    .modal-contact-btn {
      justify-content: center
    }

    /* Buttons stacking */
    .hero-cta-wrap {
      flex-direction: column;
      gap: 10px
    }
  }