    :root {
      /* Medicross brand — unified with the homepage design system (assets/home.css) */
      --brand: #D42B2B;
      --brand-dark: color-mix(in srgb, var(--brand) 82%, #000);
      --brand-deep: color-mix(in srgb, var(--brand) 66%, #000);
      --brand-soft: color-mix(in srgb, var(--brand) 76%, #fff);
      --accent: #2E6BF0;
      --navy: #211E1A;
      --navy-2: #2E2820;
      --teal: var(--accent);
      --teal-dark: color-mix(in srgb, var(--accent) 78%, #000);
      --teal-light: color-mix(in srgb, var(--accent) 10%, #fff);
      --red: var(--brand);
      --red-dark: var(--brand-dark);
      --ink: #211E1A;
      --muted: #6B655C;
      --line: rgba(33, 30, 26, .12);
      --bg: #FBF7F1;
      --bg-soft: #F3EEE7;
      --shadow: 0 26px 46px -24px rgba(33, 30, 26, .32);
      --shadow-soft: 0 14px 30px -18px rgba(33, 30, 26, .22);
      --radius: 20px;
    }

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

    html { scroll-behavior: smooth; }

    body {
      font-family: "Manrope", system-ui, -apple-system, sans-serif;
      color: var(--ink);
      background: var(--bg);
      line-height: 1.65;
      font-size: 16px;
      -webkit-font-smoothing: antialiased;
    }

    h1, h2, h3, .serif { font-family: "Newsreader", Georgia, serif; color: var(--navy); }

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

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

    .container { max-width: 1180px; margin: 0 auto; padding: 0 24px; }

    section { padding: 92px 0; }

    /* ============ Helpers ============ */
    .eyebrow {
      display: inline-flex; align-items: center; gap: 10px;
      text-transform: uppercase; letter-spacing: 3.5px;
      font-size: 12px; font-weight: 700; color: var(--teal-dark);
      margin-bottom: 16px;
    }
    .eyebrow::before {
      content: ""; width: 34px; height: 2px; background: var(--red); display: inline-block;
    }
    .section-title { font-size: clamp(30px, 4vw, 42px); line-height: 1.18; font-weight: 600; margin-bottom: 18px; }
    .section-lead { color: var(--muted); font-size: 17px; max-width: 640px; }
    .center { text-align: center; }
    .center .eyebrow::after { content: ""; width: 34px; height: 2px; background: var(--red); display: inline-block; }
    .center .section-lead { margin-left: auto; margin-right: auto; }

    .btn {
      display: inline-flex; align-items: center; justify-content: center; gap: 10px;
      font-family: "Manrope", sans-serif; font-weight: 700; font-size: 15px;
      padding: 15px 28px; border-radius: 999px; border: 2px solid transparent;
      cursor: pointer; transition: all .25s ease; white-space: nowrap;
    }
    .btn-primary { background: var(--red); color: #fff; box-shadow: 0 10px 24px rgba(226, 59, 67, .30); }
    .btn-primary:hover { background: var(--red-dark); transform: translateY(-2px); }
    .btn-teal { background: var(--teal); color: #fff; box-shadow: 0 10px 24px rgba(14, 157, 169, .30); }
    .btn-teal:hover { background: var(--teal-dark); transform: translateY(-2px); }
    .btn-outline { border-color: rgba(255,255,255,.55); color: #fff; background: transparent; }
    .btn-outline:hover { background: rgba(255,255,255,.12); border-color: #fff; }
    .btn-outline-navy { border-color: var(--navy); color: var(--navy); background: transparent; }
    .btn-outline-navy:hover { background: var(--navy); color: #fff; }

    .reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s ease, transform .7s ease; }
    .reveal.visible { opacity: 1; transform: none; }
    @media (prefers-reduced-motion: reduce) {
      html { scroll-behavior: auto; }
      .reveal { opacity: 1; transform: none; transition: none; }
    }

    /* ============ Topbar ============ */
    .topbar { background: var(--navy); color: rgba(255,255,255,.85); font-size: 13px; }
    .topbar-inner { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 9px 0; }
    .topbar-group { display: flex; align-items: center; gap: 22px; flex-wrap: wrap; }
    .topbar a { display: inline-flex; align-items: center; gap: 7px; transition: color .2s; }
    .topbar a:hover { color: #fff; }
    .topbar svg { width: 14px; height: 14px; flex: none; }
    .topbar .accent { color: var(--brand-soft); font-weight: 700; }

    /* ============ Header ============ */
    .header {
      position: sticky; top: 0; z-index: 90; background: #fff;
      border-bottom: 1px solid var(--line); transition: box-shadow .25s ease;
    }
    .header.scrolled { box-shadow: 0 6px 24px rgba(10,42,67,.08); }
    .header-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; min-height: 150px; }
    @media (max-width: 640px) { .header-inner { min-height: 108px; } }

    .logo { display: flex; align-items: center; gap: 12px; }
    .logo-img { height: 130px; width: auto; display: block; }
    @media (max-width: 640px) { .logo-img { height: 92px; } }
    .footer .logo-chip { display: inline-block; background: #fff; border-radius: 12px; padding: 10px 18px; }
    .footer .logo-img { height: 92px; }
    .logo-mark {
      width: 46px; height: 46px; border-radius: 12px; flex: none;
      background: linear-gradient(135deg, var(--teal) 0%, var(--teal-dark) 100%);
      display: grid; place-items: center; color: #fff;
      box-shadow: 0 6px 16px rgba(14,157,169,.35);
    }
    .logo-mark svg { width: 24px; height: 24px; }
    .logo-text { line-height: 1.15; }
    .logo-text strong { display: block; font-family: "Newsreader", serif; font-size: 19px; letter-spacing: .5px; color: var(--navy); font-weight: 700; }
    .logo-text span { font-size: 11px; text-transform: uppercase; letter-spacing: 2.2px; color: var(--red); font-weight: 700; }

    .nav { display: flex; align-items: center; gap: 20px; }
    .nav a { font-size: 14px; font-weight: 600; color: var(--navy); position: relative; padding: 6px 0; white-space: nowrap; }
    .nav a::after {
      content: ""; position: absolute; left: 0; bottom: 0; width: 0; height: 2px;
      background: var(--red); transition: width .25s ease;
    }
    .nav a:hover::after { width: 100%; }
    .header .btn { padding: 12px 22px; font-size: 14px; }

    .burger { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
    .burger span { display: block; width: 26px; height: 3px; background: var(--navy); border-radius: 2px; margin: 5px 0; transition: all .3s; }

    .mobile-nav { display: none; background: #fff; border-bottom: 1px solid var(--line); max-height: calc(100vh - 108px); overflow-y: auto; }
    .mobile-nav.open { display: block; }
    .mobile-nav a { display: block; padding: 14px 24px; font-weight: 600; color: var(--navy); border-top: 1px solid var(--line); }
    .mobile-nav .btn { margin: 14px 24px 20px; display: inline-flex; }

    /* ---- Desktop dropdown ---- */
    .nav .has-sub { position: relative; }
    .nav .has-sub > a { display: inline-flex; align-items: center; gap: 5px; }
    .nav .has-sub > a svg { width: 12px; height: 12px; transition: transform .25s; }
    .nav .has-sub:hover > a svg { transform: rotate(180deg); }
    .nav .sub {
      position: absolute; top: 100%; left: -14px; min-width: 250px; padding-top: 14px;
      opacity: 0; visibility: hidden; transform: translateY(8px);
      transition: opacity .22s ease, transform .22s ease, visibility .22s;
    }
    .nav .has-sub:hover .sub, .nav .has-sub:focus-within .sub { opacity: 1; visibility: visible; transform: translateY(0); }
    .nav .sub-inner {
      background: #fff; border: 1px solid var(--line); border-radius: 12px;
      box-shadow: var(--shadow); padding: 8px; overflow: hidden;
    }
    .nav .sub a { display: block; padding: 10px 14px; border-radius: 8px; font-weight: 600; font-size: 13.5px; }
    .nav .sub a::after { display: none; }
    .nav .sub a:hover { background: var(--teal-light); color: var(--teal-dark); }

    /* ---- Mobile nav groups (accordion) ---- */
    .mobile-group-toggle {
      display: flex; align-items: center; justify-content: space-between; width: 100%;
      padding: 14px 24px; background: var(--red); color: #fff; border: none;
      border-top: 1px solid rgba(255,255,255,.2); font-family: inherit;
      font-size: 15px; font-weight: 600; cursor: pointer; text-align: left;
    }
    .mobile-group-toggle svg { width: 16px; height: 16px; transition: transform .3s; }
    .mobile-group.open .mobile-group-toggle svg { transform: rotate(180deg); }
    .mobile-group-items { display: none; background: #FBE4E5; }
    .mobile-group.open .mobile-group-items { display: block; }
    .mobile-group-items a { border-top: 1px solid rgba(226,59,67,.12); padding-left: 38px; font-weight: 500; }

    /* ---- Subpage hero + content ---- */
    .page-hero {
      position: relative; overflow: hidden; color: #fff; padding: 84px 0 72px;
      background:
        radial-gradient(1100px 500px at 85% -10%, rgba(14,157,169,.35), transparent 60%),
        radial-gradient(700px 420px at -10% 110%, rgba(226,59,67,.22), transparent 55%),
        linear-gradient(135deg, var(--navy) 0%, var(--navy-2) 60%, #3a332c 100%);
    }
    /* The photo comes from a background-image in the section's style
       attribute. It used to be passed in a --hero-img custom property, but a
       relative url() inside a custom property resolves against the stylesheet
       in Chromium and against the document elsewhere, so the same string can
       never be right in both — every hero photo 404'd. The dark overlay lives
       on ::before instead, so the page only has to name the file. */
    .page-hero.has-bg {
      background-size: cover;
      background-position: center;
    }
    .page-hero::before {
      content: ""; position: absolute; inset: 0;
      background-image: radial-gradient(rgba(255,255,255,.07) 1px, transparent 1px);
      background-size: 26px 26px;
    }
    .page-hero.has-bg::before {
      background-image:
        linear-gradient(120deg, rgba(10,42,67,.94) 0%, rgba(10,42,67,.82) 45%, rgba(10,42,67,.55) 100%),
        radial-gradient(rgba(255,255,255,.07) 1px, transparent 1px);
      background-size: auto, 26px 26px;
    }
    .page-hero .container { position: relative; }
    .page-hero h1 { font-family: "Newsreader", serif; font-size: clamp(30px, 4.5vw, 46px); line-height: 1.15; margin: 14px 0 16px; color: #fff; }
    .page-hero .lead { max-width: 720px; font-size: 16.5px; line-height: 1.75; color: rgba(255,255,255,.85); }
    .breadcrumbs { font-size: 13px; color: rgba(255,255,255,.65); display: flex; flex-wrap: wrap; gap: 8px; align-items: center; margin-bottom: 6px; }
    .breadcrumbs a { color: rgba(255,255,255,.85); font-weight: 600; }
    .breadcrumbs a:hover { color: #fff; }

    /* minmax(0, …) rather than 1fr: a plain 1fr track is floored at the
       item's min-content width, so one nowrap CTA in the sidebar was widening
       the whole column past the viewport on phones */
    .article-layout { display: grid; grid-template-columns: minmax(0, 1fr) 340px; gap: 44px; align-items: start; }
    .article-layout.sidebar-left { grid-template-columns: 380px minmax(0, 1fr); }
    .article h2 { font-family: "Newsreader", serif; font-size: clamp(24px, 3vw, 32px); color: var(--navy); margin: 38px 0 16px; }
    .article h2:first-child { margin-top: 0; }
    .article h3 { font-size: 19px; color: var(--navy); margin: 28px 0 12px; }
    .article p { color: var(--muted); line-height: 1.8; margin-bottom: 16px; }
    .article ul { margin: 0 0 18px 4px; list-style: none; }
    .article ul li { position: relative; padding-left: 28px; margin-bottom: 10px; color: var(--muted); line-height: 1.7; }
    .article ul li::before {
      content: "✓"; position: absolute; left: 0; top: 1px; width: 19px; height: 19px;
      border-radius: 50%; background: var(--teal-light); color: var(--teal-dark);
      font-size: 11px; font-weight: 800; display: grid; place-items: center;
    }
    .article figure { margin: 26px 0; }
    .article figure img { border-radius: var(--radius); box-shadow: var(--shadow-soft); width: 100%; max-height: 480px; object-fit: contain; background: #fff; border: 1px solid var(--line); }
    .article figcaption { font-size: 13px; color: var(--muted); margin-top: 10px; }
    .page-sidebar { position: sticky; top: 96px; display: grid; gap: 22px; }
    .sidebar-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 26px 24px; box-shadow: var(--shadow-soft); }
    .sidebar-card.navy { background: linear-gradient(140deg, var(--navy) 0%, var(--navy-2) 100%); color: #fff; border: none; }
    .sidebar-card.navy h3 { color: #fff; }
    .sidebar-card h3 { font-size: 17px; color: var(--navy); margin-bottom: 14px; }
    /* these span the card, so they are allowed to wrap — "Întreabă
       specialistul pe WhatsApp" on one line is wider than a phone */
    .sidebar-card .btn { width: 100%; justify-content: center; margin-top: 6px; white-space: normal; }
    .sidebar-list { list-style: none; }
    .sidebar-list a {
      display: flex; align-items: center; justify-content: space-between; gap: 10px;
      padding: 11px 0; border-bottom: 1px solid var(--line); font-size: 14px; font-weight: 600; color: var(--navy);
    }
    .sidebar-card.navy .sidebar-list a { color: rgba(255,255,255,.88); border-color: rgba(255,255,255,.14); }
    .sidebar-list a:hover { color: var(--teal-dark); }
    .sidebar-card.navy .sidebar-list a:hover { color: var(--brand-soft); }
    .sidebar-list li:last-child a { border-bottom: none; }
    .fact-row { display: flex; justify-content: space-between; gap: 12px; padding: 10px 0; border-bottom: 1px solid var(--line); font-size: 14px; }
    .fact-row:last-child { border-bottom: none; }
    .fact-row .k { color: var(--muted); }
    .fact-row .v { font-weight: 700; color: var(--navy); text-align: right; white-space: nowrap; }
    .sidebar-card.navy .fact-row { border-color: rgba(255,255,255,.16); }
    .sidebar-card.navy .fact-row .k { color: rgba(255,255,255,.78); }
    .sidebar-card.navy .fact-row .v { color: var(--brand-soft); }

    .pack-list { list-style: none; }
    .pack-list li {
      display: flex; align-items: flex-start; gap: 10px; padding: 9px 0;
      border-bottom: 1px solid var(--line); font-size: 14px; color: var(--muted); line-height: 1.5;
    }
    .pack-list li:last-child { border-bottom: none; }
    .pack-list .pk {
      flex: none; width: 20px; height: 20px; border-radius: 50%; margin-top: 1px;
      background: var(--teal-light); color: var(--teal-dark); display: grid; place-items: center;
    }

    /* ---- Price chip (subpage hero) ---- */
    .price-chip {
      display: inline-flex; align-items: baseline; gap: 12px;
      background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.28);
      border-radius: 14px; padding: 12px 22px; margin-top: 24px;
    }
    .price-chip strong { font-family: "Newsreader", serif; font-size: 27px; color: var(--brand-soft); }
    .price-chip span { font-size: 11.5px; letter-spacing: 2px; font-weight: 800; text-transform: uppercase; color: rgba(255,255,255,.85); }

    /* ---- Before/after gallery ---- */
    .gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; margin: 26px 0 10px; }
    .gallery-grid figure { border-radius: 12px; overflow: hidden; border: 1px solid var(--line); box-shadow: var(--shadow-soft); margin: 0; }
    .gallery-grid img { width: 100%; height: 200px; object-fit: cover; transition: transform .3s; }
    .gallery-grid figure:hover img { transform: scale(1.05); }

    /* ---- Photo procedure cards (homepage + related) ---- */
    .proc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 44px; }
    .proc-card {
      background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
      overflow: hidden; box-shadow: var(--shadow-soft); display: block;
      transition: transform .25s, box-shadow .25s;
    }
    .proc-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
    .proc-card img { width: 100%; height: 215px; object-fit: cover; }
    .proc-card .pc-body { padding: 20px 22px 24px; }
    .proc-card h3 { font-size: 18px; color: var(--navy); margin-bottom: 8px; }
    .proc-card p { font-size: 14px; color: var(--muted); line-height: 1.65; margin-bottom: 12px; }
    .proc-card .pc-link { font-size: 13.5px; font-weight: 700; color: var(--teal-dark); }
    .proc-card:hover .pc-link { color: var(--red); }

    .proc-grid.grid-4 { grid-template-columns: repeat(4, 1fr); }
    @media (max-width: 1024px) { .proc-grid.grid-4 { grid-template-columns: repeat(2, 1fr); } }
    @media (max-width: 640px) { .proc-grid.grid-4 { grid-template-columns: 1fr; } }

    /* ---- Video players ---- */
    .video-wrap {
      position: relative; border-radius: var(--radius); overflow: hidden;
      box-shadow: var(--shadow); aspect-ratio: 16 / 9; background: #1a1714;
    }
    .video-wrap video, .video-wrap iframe { width: 100%; height: 100%; display: block; border: 0; object-fit: cover; }
    .video-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; margin-top: 44px; }
    .video-grid.cols-3 { grid-template-columns: repeat(3, 1fr); }
    .video-card .vc-label { margin-top: 12px; font-weight: 700; color: var(--navy); font-size: 15px; }
    .video-card .vc-sub { font-size: 13px; color: var(--muted); }
    @media (max-width: 860px) { .video-grid, .video-grid.cols-3 { grid-template-columns: 1fr; } }

    /* ---- Photo strip gallery ---- */
    .photo-strip { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-top: 40px; }
    .photo-strip img {
      width: 100%; height: 190px; object-fit: cover; border-radius: 12px;
      border: 1px solid var(--line); box-shadow: var(--shadow-soft); transition: transform .3s;
    }
    .photo-strip img:hover { transform: scale(1.03); }
    @media (max-width: 1024px) { .photo-strip { grid-template-columns: repeat(2, 1fr); } }
    @media (max-width: 640px) { .photo-strip { grid-template-columns: 1fr 1fr; } .photo-strip img { height: 130px; } }

    /* ---- Partner rows ---- */
    .partner-row { display: grid; grid-template-columns: 460px 1fr; gap: 44px; align-items: center; padding: 34px 0; border-bottom: 1px solid var(--line); }
    .partner-row:last-child { border-bottom: none; }
    .partner-row img { border-radius: var(--radius); box-shadow: var(--shadow); width: 100%; height: 300px; object-fit: cover; }
    .partner-row.flip img { order: 2; }
    .partner-row h3 { font-family: "Newsreader", serif; font-size: 25px; color: var(--navy); margin-bottom: 12px; }
    .partner-row p { color: var(--muted); line-height: 1.8; margin-bottom: 12px; }

    /* ---- About panel photo ---- */
    .about-panel > img { width: 100%; height: 100%; object-fit: cover; display: block; }

    /* ============ Hero ============ */
    .hero {
      position: relative; overflow: hidden; color: #fff; padding: 100px 0 110px;
      background:
        linear-gradient(100deg, rgba(10,42,67,.96) 0%, rgba(10,42,67,.88) 42%, rgba(10,42,67,.55) 72%, rgba(10,42,67,.35) 100%),
        url('materials/images/hero_parteneri.webp') center 30%/cover no-repeat;
    }
    .hero::before {
      content: ""; position: absolute; inset: 0; opacity: .5; pointer-events: none;
      background-image: radial-gradient(rgba(255,255,255,.07) 1px, transparent 1px);
      background-size: 26px 26px;
    }
    .hero-inner { position: relative; display: grid; grid-template-columns: 1.15fr .85fr; gap: 64px; align-items: center; }
    .hero .eyebrow { color: var(--brand-soft); }
    .hero h1 { color: #fff; font-size: clamp(36px, 5vw, 56px); line-height: 1.12; font-weight: 600; margin-bottom: 22px; }
    .hero h1 em { font-style: italic; color: var(--brand-soft); }
    .hero p.lead { color: rgba(255,255,255,.82); font-size: 18px; max-width: 560px; margin-bottom: 34px; }
    .hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 40px; }

    .hero-badges { display: flex; gap: 26px; flex-wrap: wrap; }
    .hero-badge { display: flex; align-items: center; gap: 10px; font-size: 13.5px; font-weight: 600; color: rgba(255,255,255,.88); }
    .hero-badge svg { width: 20px; height: 20px; flex: none; color: var(--brand-soft); }

    .hero-card {
      background: #fff; border-radius: 18px; padding: 34px 32px; color: var(--ink);
      box-shadow: 0 30px 70px rgba(4, 18, 30, .45);
    }
    .hero-card h3 { font-size: 23px; margin-bottom: 6px; }
    .hero-card .sub { font-size: 14px; color: var(--muted); margin-bottom: 22px; }
    .hero-card .sub strong { color: var(--red); }
    .field { margin-bottom: 14px; }
    .field label { display: block; font-size: 12.5px; font-weight: 700; letter-spacing: .4px; color: var(--navy); margin-bottom: 6px; }
    .field input, .field select, .field textarea {
      width: 100%; padding: 12px 14px; border: 1.5px solid var(--line); border-radius: 10px;
      font-family: inherit; font-size: 14.5px; color: var(--ink); background: #fff;
      transition: border-color .2s, box-shadow .2s;
    }
    .field input:focus, .field select:focus, .field textarea:focus {
      outline: none; border-color: var(--teal); box-shadow: 0 0 0 3px rgba(14,157,169,.15);
    }
    .hero-card .btn { width: 100%; margin-top: 6px; }
    .hero-card .note { font-size: 12px; color: var(--muted); margin-top: 12px; text-align: center; }

    /* ============ Stats strip ============ */
    .stats { background: #fff; padding: 0; }
    .stats-inner {
      display: grid; grid-template-columns: repeat(4, 1fr);
      background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
      box-shadow: var(--shadow-soft); margin-top: -58px; position: relative; z-index: 5;
      overflow: hidden;
    }
    .stat { padding: 30px 26px; text-align: center; border-left: 1px solid var(--line); }
    .stat:first-child { border-left: none; }
    .stat .num { font-family: "Newsreader", serif; font-size: 34px; font-weight: 700; color: var(--teal-dark); line-height: 1.1; }
    .stat .lbl { font-size: 13.5px; color: var(--muted); font-weight: 600; margin-top: 6px; }

    /* ============ About ============ */
    .about-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
    .about-visual { position: relative; }
    .about-panel {
      border-radius: 20px; overflow: hidden; box-shadow: var(--shadow); aspect-ratio: 4 / 4.6;
      background:
        radial-gradient(400px 300px at 80% 15%, rgba(255,255,255,.25) 0%, transparent 60%),
        linear-gradient(160deg, var(--teal) 0%, var(--teal-dark) 45%, var(--navy-2) 100%);
      position: relative;
    }
    .about-panel svg.skyline { position: absolute; left: 0; right: 0; bottom: 0; width: 100%; height: auto; opacity: .95; }
    .about-float {
      position: absolute; right: -26px; bottom: 42px; background: #fff; border-radius: 14px;
      box-shadow: var(--shadow); padding: 18px 22px; display: flex; gap: 14px; align-items: center; max-width: 280px;
    }
    .about-float .icon {
      width: 46px; height: 46px; border-radius: 12px; background: var(--red); color: #fff;
      display: grid; place-items: center; flex: none;
    }
    .about-float .icon svg { width: 24px; height: 24px; }
    .about-float strong { display: block; font-size: 15px; color: var(--navy); }
    .about-float span { font-size: 12.5px; color: var(--muted); }

    .features { margin-top: 30px; display: grid; gap: 18px; }
    .feature { display: flex; gap: 16px; }
    .feature .fi {
      width: 46px; height: 46px; flex: none; border-radius: 12px;
      background: var(--teal-light); color: var(--teal-dark); display: grid; place-items: center;
    }
    .feature .fi svg { width: 23px; height: 23px; }
    .feature strong { display: block; font-size: 16px; color: var(--navy); margin-bottom: 3px; }
    .feature p { font-size: 14.5px; color: var(--muted); }

    /* ============ Specialties ============ */
    .specialties { background: var(--bg-soft); }
    .spec-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 28px; margin-bottom: 48px; flex-wrap: wrap; }
    .spec-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 22px; }
    .spec-card {
      background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
      padding: 28px 24px; transition: transform .25s ease, box-shadow .25s ease, border-color .25s;
    }
    .spec-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: transparent; }
    .spec-icon {
      width: 54px; height: 54px; border-radius: 14px; margin-bottom: 18px;
      background: var(--teal-light); color: var(--teal-dark); display: grid; place-items: center;
      transition: background .25s, color .25s;
    }
    .spec-card:hover .spec-icon { background: var(--teal); color: #fff; }
    .spec-icon svg { width: 27px; height: 27px; }
    .spec-card h3 { font-family: "Manrope", sans-serif; font-size: 16.5px; font-weight: 700; color: var(--navy); margin-bottom: 7px; }
    .spec-card p { font-size: 13.5px; color: var(--muted); }

    /* ============ Steps ============ */
    .steps-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px; margin-top: 54px; }
    .step { position: relative; padding: 30px 26px 26px; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); }
    .step .n {
      font-family: "Newsreader", serif; font-size: 44px; font-weight: 700;
      color: var(--teal); opacity: .28; line-height: 1; margin-bottom: 12px;
    }
    .step h3 { font-family: "Manrope", sans-serif; font-size: 16.5px; font-weight: 800; margin-bottom: 8px; }
    .step p { font-size: 14px; color: var(--muted); }
    .step::after {
      content: "→"; position: absolute; top: 50%; right: -22px; transform: translateY(-50%);
      color: var(--red); font-size: 20px; font-weight: 800; z-index: 2;
    }
    .step:last-child::after { display: none; }

    /* ============ Included / all-inclusive ============ */
    .included {
      background:
        linear-gradient(140deg, rgba(10,42,67,.95) 0%, rgba(15,58,92,.92) 70%, rgba(12,74,102,.90) 100%),
        url('materials/images/king-suit_007-scaled.jpg') center/cover no-repeat fixed;
      color: #fff;
    }
    .included .eyebrow { color: var(--brand-soft); }
    .included .section-title { color: #fff; }
    .included .section-lead { color: rgba(255,255,255,.75); }
    .inc-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; margin-top: 54px; }
    .inc-card {
      background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.14);
      border-radius: var(--radius); padding: 28px 24px; transition: background .25s, transform .25s;
    }
    .inc-card:hover { background: rgba(255,255,255,.11); transform: translateY(-5px); }
    .inc-card .ii { width: 50px; height: 50px; border-radius: 13px; background: color-mix(in srgb, var(--brand-soft) 30%, transparent); color: var(--brand-soft); display: grid; place-items: center; margin-bottom: 18px; }
    .inc-card .ii svg { width: 26px; height: 26px; }
    .inc-card h3 { color: #fff; font-family: "Manrope", sans-serif; font-size: 16.5px; font-weight: 700; margin-bottom: 8px; }
    .inc-card p { font-size: 13.5px; color: rgba(255,255,255,.72); }

    /* ============ Partners ============ */
    .partner-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 54px; }
    .partner-card {
      background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 30px 28px;
      transition: transform .25s, box-shadow .25s;
    }
    .partner-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
    .partner-logo {
      font-family: "Newsreader", serif; font-size: 21px; font-weight: 700; color: var(--navy);
      display: flex; align-items: center; gap: 12px; margin-bottom: 14px;
    }
    .partner-logo .dot { width: 12px; height: 12px; border-radius: 4px; background: var(--teal); flex: none; }
    .partner-card p { font-size: 14px; color: var(--muted); margin-bottom: 14px; }
    .partner-tags { display: flex; flex-wrap: wrap; gap: 8px; }
    .partner-tags span {
      font-size: 11.5px; font-weight: 700; letter-spacing: .4px; color: var(--teal-dark);
      background: var(--teal-light); border-radius: 999px; padding: 5px 12px;
    }

    /* ============ Offers ============ */
    .offers { background: var(--bg-soft); }
    .offer-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; margin-top: 54px; }
    .offer-card {
      background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
      padding: 30px 26px; text-align: center; position: relative; overflow: hidden;
      transition: transform .25s, box-shadow .25s;
    }
    .offer-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
    .offer-card::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 4px; background: linear-gradient(90deg, var(--teal), var(--red)); }
    .offer-card .tag { font-size: 11px; font-weight: 800; letter-spacing: 2px; text-transform: uppercase; color: var(--red); margin-bottom: 10px; display: block; }
    .offer-card h3 { font-family: "Manrope", sans-serif; font-size: 18px; font-weight: 800; margin-bottom: 14px; }
    .offer-price { font-family: "Newsreader", serif; font-size: 38px; font-weight: 700; color: var(--teal-dark); line-height: 1; }
    .offer-price small { font-size: 14px; font-family: "Manrope", sans-serif; font-weight: 600; color: var(--muted); display: block; margin-top: 6px; }
    .offer-card ul { list-style: none; margin: 20px 0 24px; text-align: left; }
    .offer-card li { font-size: 13.5px; color: var(--muted); padding: 6px 0 6px 26px; position: relative; }
    .offer-card li::before {
      content: "✓"; position: absolute; left: 2px; color: var(--teal); font-weight: 800;
    }
    .offer-card .btn { width: 100%; padding: 12px 18px; font-size: 14px; }
    .offers .note { text-align: center; margin-top: 30px; color: var(--muted); font-size: 14px; }
    .offers .note strong { color: var(--red); }

    /* ============ Insurance banner ============ */
    .insurance { padding: 0 0 92px; }
    .insurance-inner {
      border-radius: 20px; padding: 46px 52px; color: #fff;
      background: linear-gradient(120deg, var(--brand) 0%, var(--brand-deep) 100%);
      display: flex; align-items: center; justify-content: space-between; gap: 32px; flex-wrap: wrap;
      box-shadow: 0 22px 50px rgba(226,59,67,.35);
    }
    .insurance-inner h3 { color: #fff; font-size: clamp(22px, 2.6vw, 30px); margin-bottom: 8px; }
    .insurance-inner p { color: rgba(255,255,255,.88); font-size: 15.5px; max-width: 560px; }
    .insurance-inner .btn { background: #fff; color: var(--red-dark); flex: none; }
    .insurance-inner .btn:hover { transform: translateY(-2px); box-shadow: 0 12px 26px rgba(0,0,0,.18); }

    /* ============ Testimonials ============ */
    .testimonials { background: #fff; }
    .t-track { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 54px; }
    .t-card {
      background: var(--bg-soft); border: 1px solid var(--line); border-radius: var(--radius);
      padding: 32px 28px; display: flex; flex-direction: column; gap: 18px;
    }
    .t-stars { color: #F2B01E; letter-spacing: 3px; font-size: 15px; }
    .t-card blockquote { font-size: 15px; color: var(--ink); font-style: italic; flex: 1; border: none; }
    .t-who { display: flex; align-items: center; gap: 13px; }
    .t-avatar {
      width: 44px; height: 44px; border-radius: 50%; flex: none; color: #fff;
      display: grid; place-items: center; font-weight: 800; font-size: 16px;
      background: linear-gradient(135deg, var(--teal), var(--navy-2));
    }
    .t-who strong { display: block; font-size: 14.5px; color: var(--navy); }
    .t-who span { font-size: 12.5px; color: var(--muted); }

    /* ============ FAQ ============ */
    .faq { background: var(--bg-soft); }
    .faq-list { max-width: 820px; margin: 48px auto 0; }
    .faq-item { background: #fff; border: 1px solid var(--line); border-radius: 12px; margin-bottom: 14px; overflow: hidden; }
    .faq-q {
      width: 100%; background: none; border: none; cursor: pointer; text-align: left;
      display: flex; align-items: center; justify-content: space-between; gap: 18px;
      padding: 20px 24px; font-family: "Manrope", sans-serif; font-size: 16px; font-weight: 700; color: var(--navy);
    }
    .faq-q .chev { flex: none; width: 26px; height: 26px; border-radius: 50%; background: var(--teal-light); color: var(--teal-dark); display: grid; place-items: center; transition: transform .3s, background .3s, color .3s; }
    .faq-q .chev svg { width: 14px; height: 14px; }
    .faq-item.open .chev { transform: rotate(180deg); background: var(--teal); color: #fff; }
    .faq-a { max-height: 0; overflow: hidden; transition: max-height .35s ease; }
    .faq-a p { padding: 0 24px 22px; font-size: 14.5px; color: var(--muted); }

    /* ============ Contact ============ */
    .contact-inner { display: grid; grid-template-columns: .9fr 1.1fr; gap: 60px; align-items: start; }
    .c-item { display: flex; gap: 16px; margin-top: 26px; }
    .c-item .ci {
      width: 48px; height: 48px; flex: none; border-radius: 12px;
      background: var(--teal-light); color: var(--teal-dark); display: grid; place-items: center;
    }
    .c-item .ci svg { width: 23px; height: 23px; }
    .c-item strong { display: block; font-size: 15.5px; color: var(--navy); margin-bottom: 2px; }
    .c-item a, .c-item span { font-size: 14.5px; color: var(--muted); }
    .c-item a:hover { color: var(--teal-dark); }

    .contact-form {
      background: #fff; border: 1px solid var(--line); border-radius: 18px;
      padding: 38px 36px; box-shadow: var(--shadow-soft);
    }
    .contact-form h3 { font-size: 24px; margin-bottom: 6px; }
    .contact-form .sub { font-size: 14px; color: var(--muted); margin-bottom: 24px; }
    .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
    .contact-form .note { font-size: 12px; color: var(--muted); margin-top: 14px; }

    /* ============ Footer ============ */
    .footer { background: var(--navy); color: rgba(255,255,255,.75); padding: 74px 0 0; font-size: 14px; }
    .footer-grid { display: grid; grid-template-columns: 1.3fr 1fr 1fr 1.2fr; gap: 48px; padding-bottom: 54px; }
    .footer h4 { color: #fff; font-family: "Manrope", sans-serif; font-size: 15px; font-weight: 800; letter-spacing: 1px; text-transform: uppercase; margin-bottom: 20px; }
    .footer ul { list-style: none; }
    .footer li { margin-bottom: 11px; }
    .footer a { transition: color .2s; }
    .footer a:hover { color: var(--brand-soft); }
    .footer .logo-text strong { color: #fff; }
    .footer p.desc { margin-top: 16px; line-height: 1.7; color: rgba(255,255,255,.65); }
    /* Medical disclaimer — required on every page. Deliberately quiet, but
       legible: it is a legal notice, not decoration, so it never drops below
       12.5px and keeps a readable line length. */
    .footer-disclaimer {
      border-top: 1px solid rgba(255,255,255,.12);
      padding: 26px 0 6px;
      font-size: 12.5px; line-height: 1.75;
      color: rgba(255,255,255,.52);
      max-width: 105ch;
    }
    .footer-disclaimer p { margin-bottom: 11px; }
    .footer-disclaimer p:last-child { margin-bottom: 0; }
    .footer-disclaimer strong { color: rgba(255,255,255,.75); font-weight: 700; }

    .footer-bottom {
      border-top: 1px solid rgba(255,255,255,.12); padding: 22px 0;
      display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap;
      font-size: 13px; color: rgba(255,255,255,.55);
    }

    /* ============ WhatsApp float ============ */
    .wa-float {
      position: fixed; right: 22px; bottom: 22px; z-index: 95;
      width: 58px; height: 58px; border-radius: 50%;
      background: #25D366; color: #fff; display: grid; place-items: center;
      box-shadow: 0 12px 30px rgba(37, 211, 102, .45);
      transition: transform .25s;
    }
    .wa-float:hover { transform: scale(1.08); }
    .wa-float svg { width: 30px; height: 30px; }

    /* ============ Responsive ============ */
    @media (max-width: 1200px) {
      .nav { display: none; }
      .header .btn-cta { display: none; }
      .burger { display: block; }
    }
    @media (max-width: 1024px) {
      .hero-inner { grid-template-columns: 1fr; gap: 48px; }
      .spec-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
      .steps-grid, .inc-grid, .offer-grid { grid-template-columns: repeat(2, 1fr); }
      .step::after { display: none; }
      .partner-grid { grid-template-columns: repeat(2, 1fr); }
      .footer-grid { grid-template-columns: 1fr 1fr; }
      .about-inner, .contact-inner { grid-template-columns: 1fr; gap: 48px; }
      .about-float { right: 8px; }
      .article-layout { grid-template-columns: minmax(0, 1fr); }
      /* the contact page puts its sidebar first in the DOM; stacked, the form
         is what people came for, so it goes on top */
      .article-layout.sidebar-left { grid-template-columns: minmax(0, 1fr); }
      .article-layout.sidebar-left > aside { order: 2; }
      .page-sidebar { position: static; }
      .gallery-grid { grid-template-columns: repeat(2, 1fr); }
      .proc-grid { grid-template-columns: 1fr 1fr; }
      .partner-row { grid-template-columns: 1fr; gap: 24px; }
      .partner-row.flip img { order: 0; }
    }
    @media (max-width: 640px) {
      section { padding: 68px 0; }
      .topbar-inner { justify-content: center; }
      .topbar-group.right { display: none; }
      .stats-inner { grid-template-columns: 1fr 1fr; }
      .stat { border-left: none; border-top: 1px solid var(--line); }
      .stat:nth-child(-n+2) { border-top: none; }
      .stat:nth-child(even) { border-left: 1px solid var(--line); }
      .spec-grid { grid-template-columns: 1fr; }
      .steps-grid, .inc-grid, .offer-grid, .partner-grid, .t-track { grid-template-columns: 1fr; }
      .proc-grid { grid-template-columns: 1fr; }
      .form-row { grid-template-columns: 1fr; }
      .insurance-inner { padding: 36px 28px; }
      .footer-grid { grid-template-columns: 1fr; gap: 36px; }
      .hero { padding: 72px 0 96px; }
    }
