:root {
      --navy: #06184a;
      --navy-soft: #132a66;
      --cyan: #08b6c8;
      --cyan-dark: #05899b;
      --violet: #8847d8;
      --violet-dark: #6330a8;
      --pink: #ff668f;
      --mint: #6accc9;
      --amber: #ffb347;
      --text: #172349;
      --muted: #65708c;
      --line: #e6ebf5;
      --bg: #f7fbff;
      --white: #ffffff;
      --shadow: 0 22px 60px rgba(7, 26, 75, 0.12);
      --shadow-soft: 0 14px 38px rgba(7, 26, 75, 0.08);
      --gradient-main: linear-gradient(135deg, var(--cyan), var(--violet));
      --gradient-pink: linear-gradient(135deg, var(--pink), var(--violet));
      --gradient-soft: linear-gradient(135deg, rgba(8, 182, 200, 0.12), rgba(136, 71, 216, 0.10));
    }

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

    html {
      scroll-behavior: smooth;
      scroll-padding-top: 100px;
    }

    body {
      font-family: "Inter", system-ui, sans-serif;
      color: var(--text);
      background:
        radial-gradient(circle at 0 0, rgba(8, 182, 200, 0.14), transparent 31%),
        radial-gradient(circle at 100% 12%, rgba(255, 102, 143, 0.13), transparent 28%),
        radial-gradient(circle at 78% 38%, rgba(136, 71, 216, 0.08), transparent 22%),
        var(--bg);
      overflow-x: hidden;
      line-height: 1.65;
    }

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

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

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

    button {
      color: inherit;
    }

    .container {
      width: min(1180px, calc(100% - 40px));
      margin: 0 auto;
    }

    .skip-link {
      position: fixed;
      top: 12px;
      left: 12px;
      z-index: 200;
      padding: 12px 16px;
      border-radius: 999px;
      background: var(--navy);
      color: var(--white);
      font-weight: 800;
      transform: translateY(-160%);
      transition: transform 0.2s ease;
    }

    .skip-link:focus {
      transform: translateY(0);
    }

    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      margin-bottom: 16px;
      color: var(--cyan-dark);
      font-size: 0.78rem;
      font-weight: 900;
      letter-spacing: 0.12em;
      text-transform: uppercase;
    }

    .eyebrow::before {
      content: "";
      width: 34px;
      height: 3px;
      border-radius: 999px;
      background: var(--gradient-main);
    }

    .section-title {
      margin-bottom: 18px;
      color: var(--navy);
      font-family: "Nunito", system-ui, sans-serif;
      font-size: clamp(2rem, 3.2vw, 3.25rem);
      line-height: 1.06;
      letter-spacing: -0.04em;
    }

    .section-title .accent,
    .hero-title .accent {
      background: linear-gradient(135deg, var(--cyan), var(--violet) 60%, var(--pink));
      background-clip: text;
      color: transparent;
      -webkit-background-clip: text;
    }

    .section-lead {
      max-width: 740px;
      color: var(--muted);
      font-size: 1.08rem;
    }

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      min-height: 50px;
      padding: 14px 24px;
      border: 0;
      border-radius: 999px;
      cursor: pointer;
      font-weight: 900;
      letter-spacing: 0.005em;
      text-align: center;
      transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease, background 0.2s ease;
      white-space: nowrap;
    }

    .btn:hover,
    .btn:focus-visible {
      transform: translateY(-2px);
    }

    .btn-primary {
      background: var(--gradient-main);
      color: var(--white);
      box-shadow: 0 16px 30px rgba(8, 182, 200, 0.22);
    }

    .btn-outline {
      border: 2px solid rgba(136, 71, 216, 0.26);
      background: rgba(255, 255, 255, 0.82);
      color: var(--violet-dark);
    }

    .btn-light {
      background: var(--white);
      color: var(--cyan-dark);
      box-shadow: var(--shadow-soft);
    }

    .topbar {
      position: sticky;
      top: 0;
      z-index: 99;
      border-bottom: 1px solid rgba(230, 235, 245, 0.9);
      background: rgba(255, 255, 255, 0.9);
      backdrop-filter: blur(18px);
    }

    .preheader {
      border-bottom: 1px solid rgba(230, 235, 245, 0.9);
      color: var(--muted);
      font-size: 0.9rem;
      font-weight: 800;
    }

    .preheader .container {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 18px;
      min-height: 40px;
    }

    .preheader .container span {
      min-width: 0;
    }

    .preheader .container span:last-child {
      flex: 0 0 auto;
      white-space: nowrap;
    }

    .preheader strong {
      color: var(--navy-soft);
    }

    .preheader a {
      color: var(--cyan-dark);
      font-weight: 900;
    }

    .nav {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 24px;
      min-height: 88px;
    }

    .brand {
      display: flex;
      align-items: center;
      gap: 13px;
      min-width: 230px;
    }

    .brand-mark {
      position: relative;
      width: 56px;
      height: 56px;
      flex: 0 0 auto;
      overflow: hidden;
      border: 1px solid rgba(230, 235, 245, 0.9);
      border-radius: 20px;
      background: var(--white);
      box-shadow: 0 10px 30px rgba(7, 26, 75, 0.10);
    }

    .brand-mark::before,
    .brand-mark::after {
      content: "";
      position: absolute;
      top: 16px;
      width: 15px;
      height: 29px;
      border-radius: 999px;
    }

    .brand-mark::before {
      left: 13px;
      background: var(--cyan);
      transform: rotate(-27deg);
    }

    .brand-mark::after {
      right: 13px;
      background: var(--violet);
      transform: rotate(27deg);
    }

    .brand-dot {
      position: absolute;
      top: 10px;
      left: 50%;
      width: 12px;
      height: 12px;
      border-radius: 50%;
      background: var(--pink);
      transform: translateX(-50%);
    }

    .brand-text strong {
      display: block;
      color: var(--navy);
      font-size: 1.22rem;
      font-weight: 900;
      letter-spacing: 0.22em;
      line-height: 1;
    }

    .brand-text span {
      display: block;
      margin-top: 5px;
      color: var(--muted);
      font-size: 0.68rem;
      font-weight: 800;
      letter-spacing: 0.11em;
      line-height: 1.2;
      text-transform: uppercase;
    }

    .nav-links {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 18px;
      flex: 1 1 auto;
      list-style: none;
      color: var(--navy-soft);
      font-size: 0.95rem;
      font-weight: 900;
    }

    .nav-links a {
      position: relative;
      display: inline-flex;
      padding: 9px 0;
      white-space: nowrap;
    }

    .nav-links a::after {
      content: "";
      position: absolute;
      right: 0;
      bottom: 2px;
      left: 0;
      height: 3px;
      border-radius: 99px;
      background: var(--gradient-main);
      transform: scaleX(0);
      transform-origin: left;
      transition: transform 0.2s ease;
    }

    .nav-links a:hover::after,
    .nav-links a:focus-visible::after,
    .nav-links a.is-active::after {
      transform: scaleX(1);
    }

    .menu-toggle {
      display: none;
      width: 50px;
      height: 50px;
      border: 0;
      border-radius: 16px;
      background: var(--white);
      box-shadow: var(--shadow-soft);
      cursor: pointer;
    }

    .menu-toggle span {
      display: block;
      width: 22px;
      height: 2px;
      margin: 5px auto;
      border-radius: 99px;
      background: var(--navy);
      transition: transform 0.2s ease, opacity 0.2s ease;
    }

    .hero {
      position: relative;
      padding: 74px 0 58px;
      overflow: hidden;
    }

    .hero::before {
      content: "";
      position: absolute;
      top: 18px;
      left: -230px;
      z-index: -1;
      width: 530px;
      height: 530px;
      border: 44px solid rgba(8, 182, 200, 0.08);
      border-radius: 50%;
    }

    .hero::after {
      content: "";
      position: absolute;
      top: 150px;
      right: -110px;
      z-index: -1;
      width: 260px;
      height: 260px;
      border-radius: 50%;
      background: rgba(255, 102, 143, 0.13);
      filter: blur(3px);
    }

    .hero-grid {
      display: grid;
      grid-template-columns: 1.05fr 0.95fr;
      gap: 58px;
      align-items: center;
    }

    .local-pill {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      margin-bottom: 18px;
      padding: 9px 14px;
      border: 1px solid rgba(8, 182, 200, 0.20);
      border-radius: 999px;
      background: rgba(255, 255, 255, 0.78);
      color: var(--cyan-dark);
      font-size: 0.92rem;
      font-weight: 900;
      box-shadow: 0 10px 25px rgba(7, 26, 75, 0.06);
    }

    .hero-title {
      max-width: 790px;
      margin-bottom: 22px;
      color: var(--navy);
      font-family: "Nunito", system-ui, sans-serif;
      max-width: 620px;
      font-size: clamp(2.6rem, 4.5vw, 4.6rem);
      line-height: 1.02;
      letter-spacing: -0.04em;
      margin-bottom: 20px;
    }

    .hero-copy p {
      max-width: 690px;
      margin-bottom: 28px;
      color: var(--muted);
      font-size: 1.17rem;
    }

    .hero-methods {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      gap: 8px 0;
      list-style: none;
      color: var(--navy-soft);
      font-size: 1.02rem;
      font-weight: 900;
      line-height: 1.65;
    }

    .hero-methods li {
      display: inline-flex;
      align-items: center;
      white-space: nowrap;
    }

    .hero-methods li + li::before {
      content: "";
      width: 5px;
      height: 5px;
      margin: 0 12px;
      border-radius: 999px;
      background: var(--cyan-dark);
    }

    .hero-methods span {
      color: var(--cyan-dark);
      padding: 0 7px;
    }

    .hero-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 14px;
      margin-bottom: 30px;
    }

    .hero-assurances {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      max-width: 690px;
      list-style: none;
    }

    .hero-assurances li {
      display: flex;
      align-items: flex-start;
      gap: 10px;
      color: var(--navy-soft);
      font-size: 0.92rem;
      font-weight: 850;
      line-height: 1.4;
    }

    .check,
    .mini-check {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      border-radius: 50%;
      background: var(--gradient-main);
      color: var(--white);
      font-weight: 900;
      line-height: 1;
    }

    .check {
      width: 28px;
      min-width: 28px;
      height: 28px;
      font-size: 0.85rem;
    }

    .mini-check {
      width: 22px;
      min-width: 22px;
      height: 22px;
      font-size: 0.72rem;
    }

    .hero-media {
      position: relative;
      min-height: 570px;
    }

    .hero-card {
      position: relative;
      height: 548px;
      overflow: hidden;
      border: 10px solid rgba(255, 255, 255, 0.78);
      border-radius: 44px;
      background: var(--white);
      box-shadow: var(--shadow);
    }

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

    .hero-card::after {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(180deg, transparent 45%, rgba(6, 24, 74, 0.48));
    }

    .floating-note,
    .floating-badge {
      position: absolute;
      z-index: 2;
      background: rgba(255, 255, 255, 0.95);
      box-shadow: var(--shadow);
      backdrop-filter: blur(12px);
    }

    .floating-note {
      bottom: 46px;
      left: -30px;
      width: min(370px, 86%);
      padding: 21px;
      border-radius: 26px;
    }

    .floating-note strong {
      display: block;
      margin-bottom: 6px;
      color: var(--navy);
      font-size: 1.06rem;
    }

    .floating-note span {
      color: var(--muted);
      font-size: 0.94rem;
    }

    .floating-badge {
      top: 62px;
      right: -18px;
      display: flex;
      align-items: center;
      gap: 12px;
      padding: 14px 18px;
      border-radius: 999px;
      color: var(--navy);
      font-weight: 900;
    }

    .floating-badge span {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 40px;
      height: 40px;
      border-radius: 50%;
      background: var(--gradient-pink);
      color: var(--white);
      font-size: 1.08rem;
    }

    .hero-trust {
      position: absolute;
      right: 26px;
      bottom: 24px;
      z-index: 2;
      display: grid;
      grid-template-columns: repeat(2, auto);
      gap: 10px;
    }

    .trust-chip {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 10px 12px;
      border: 1px solid rgba(255, 255, 255, 0.28);
      border-radius: 999px;
      background: rgba(6, 24, 74, 0.66);
      color: var(--white);
      font-size: 0.84rem;
      font-weight: 800;
      backdrop-filter: blur(12px);
    }

    .symptoms {
      padding: 30px 0 80px;
    }

    .section-head {
      display: flex;
      align-items: flex-end;
      justify-content: space-between;
      gap: 28px;
      margin-bottom: 38px;
    }

    .symptom-groups {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 22px;
    }

    .symptom-group {
      padding: 28px;
      border: 1px solid rgba(230, 235, 245, 0.96);
      border-radius: 30px;
      background: rgba(255, 255, 255, 0.86);
      box-shadow: var(--shadow-soft);
    }

    .symptom-group h3 {
      display: flex;
      align-items: center;
      gap: 12px;
      margin-bottom: 16px;
      color: var(--navy);
      font-size: 1.25rem;
    }

    .symptom-list-big {
      display: grid;
      gap: 12px;
      list-style: none;
    }

    .symptom-list-big li {
      display: flex;
      align-items: flex-start;
      gap: 10px;
      padding: 13px;
      border-radius: 16px;
      background: rgba(247, 251, 255, 0.92);
      color: var(--navy-soft);
      font-size: 0.98rem;
      font-weight: 800;
    }

    .comfort-box {
      margin-top: 22px;
      padding: 18px;
      border: 1px solid rgba(255, 102, 143, 0.18);
      border-radius: 22px;
      background: rgba(255, 102, 143, 0.07);
      color: var(--navy-soft);
      font-weight: 800;
    }

    .intro {
      padding: 88px 0;
      border-radius: 54px 54px 0 0;
      background: var(--white);
    }

    .intro-grid {
      display: grid;
      grid-template-columns: 0.9fr 1.1fr;
      gap: 58px;
      align-items: center;
    }

    .intro-media {
      position: relative;
    }

    .intro-media img {
      width: 100%;
      aspect-ratio: 4 / 5;
      border-radius: 38px;
      box-shadow: var(--shadow);
      object-fit: cover;
    }

    .intro-stat {
      position: absolute;
      right: -28px;
      bottom: 34px;
      max-width: 280px;
      padding: 20px;
      border-radius: 24px;
      background: var(--navy);
      color: var(--white);
      box-shadow: var(--shadow);
    }

    .intro-stat strong {
      display: block;
      margin-bottom: 8px;
      background: linear-gradient(135deg, var(--cyan), var(--pink));
      background-clip: text;
      color: transparent;
      font-size: 2.18rem;
      font-weight: 900;
      line-height: 1;
      -webkit-background-clip: text;
    }

    .intro-list {
      display: grid;
      gap: 16px;
      margin-top: 28px;
    }

    .intro-item {
      display: flex;
      gap: 14px;
      padding: 18px;
      border: 1px solid var(--line);
      border-radius: 22px;
      background: #fbfdff;
    }

    .intro-item strong {
      display: block;
      margin-bottom: 3px;
      color: var(--navy);
    }

    .intro-item p {
      color: var(--muted);
      font-size: 0.98rem;
    }

    .proof-row {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 12px;
      margin-top: 24px;
    }

    .proof-card {
      padding: 15px;
      border: 1px solid rgba(8, 182, 200, 0.18);
      border-radius: 18px;
      background: rgba(8, 182, 200, 0.06);
    }

    .proof-card strong {
      display: block;
      color: var(--navy);
      font-size: 0.98rem;
    }

    .proof-card span {
      color: var(--muted);
      font-size: 0.88rem;
      font-weight: 700;
    }

    .first-visit {
      padding: 92px 0;
      background: linear-gradient(180deg, #ffffff, #f7fbff);
    }

    .visit-grid {
      display: grid;
      grid-template-columns: 0.95fr 1.05fr;
      gap: 46px;
      align-items: center;
    }

    .visit-card {
      padding: 30px;
      border: 1px solid var(--line);
      border-radius: 34px;
      background: var(--white);
      box-shadow: var(--shadow);
    }

    .visit-steps {
      display: grid;
      gap: 14px;
      margin-top: 26px;
      counter-reset: visit;
    }

    .visit-step {
      display: grid;
      grid-template-columns: 50px 1fr;
      gap: 15px;
      padding: 17px;
      border: 1px solid var(--line);
      border-radius: 22px;
      background: #fbfdff;
      counter-increment: visit;
    }

    .visit-step::before {
      content: counter(visit);
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 50px;
      height: 50px;
      border-radius: 18px;
      background: var(--gradient-main);
      color: var(--white);
      font-weight: 900;
    }

    .visit-step strong {
      display: block;
      color: var(--navy);
      margin-bottom: 4px;
    }

    .visit-step p {
      color: var(--muted);
      font-size: 0.96rem;
    }

    .visit-image {
      position: relative;
    }

    .visit-image img {
      width: 100%;
      border-radius: 38px;
      box-shadow: var(--shadow);
      aspect-ratio: 4 / 5;
      object-fit: cover;
    }

    .visit-note {
      position: absolute;
      left: -22px;
      bottom: 30px;
      max-width: 300px;
      padding: 18px;
      border-radius: 22px;
      background: rgba(255, 255, 255, 0.94);
      color: var(--navy-soft);
      font-weight: 800;
      box-shadow: var(--shadow-soft);
    }

    .services {
      padding: 92px 0;
      background: var(--white);
    }

    .path-grid {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 20px;
      margin-bottom: 38px;
    }

    .path-card {
      padding: 28px;
      border: 1px solid var(--line);
      border-radius: 30px;
      background: #fbfdff;
      box-shadow: var(--shadow-soft);
    }

    .path-card h3 {
      margin: 12px 0 10px;
      color: var(--navy);
      font-size: 1.22rem;
    }

    .path-card p {
      color: var(--muted);
      margin-bottom: 16px;
    }

    .method-box {
      padding: 30px;
      border: 1px solid var(--line);
      border-radius: 34px;
      background: linear-gradient(135deg, rgba(8, 182, 200, 0.06), rgba(136, 71, 216, 0.06)), var(--white);
      box-shadow: var(--shadow-soft);
    }

    .method-grid {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 16px;
      margin-top: 24px;
    }

    .method-item {
      display: flex;
      gap: 14px;
      padding: 18px;
      border: 1px solid rgba(230, 235, 245, 0.95);
      border-radius: 22px;
      background: rgba(255, 255, 255, 0.86);
    }

    .method-item strong {
      display: block;
      color: var(--navy);
      margin-bottom: 5px;
    }

    .method-item p {
      color: var(--muted);
      font-size: 0.96rem;
    }

    .icon {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 62px;
      height: 62px;
      flex: 0 0 62px;
      border-radius: 22px;
      background: var(--gradient-main);
      color: var(--white);
      font-size: 1.35rem;
      font-weight: 900;
      box-shadow: 0 14px 28px rgba(8, 182, 200, 0.18);
    }

    .icon svg {
      width: 28px;
      height: 28px;
      stroke-width: 2.2;
    }

    .icon.pink {
      background: var(--gradient-pink);
    }

    .icon.mint {
      background: linear-gradient(135deg, var(--mint), var(--cyan));
    }

    .icon.amber {
      background: linear-gradient(135deg, var(--amber), var(--pink));
    }

    .audience {
      padding: 92px 0;
      background: linear-gradient(180deg, #ffffff, #f7fbff);
    }

    .audience-grid {
      display: grid;
      grid-template-columns: 0.9fr 1.1fr;
      gap: 46px;
      align-items: start;
    }

    .audience-tabs {
      display: grid;
      gap: 14px;
      margin-top: 28px;
    }

    .tab-btn {
      display: flex;
      align-items: center;
      gap: 14px;
      width: 100%;
      padding: 18px;
      border: 1px solid var(--line);
      border-radius: 22px;
      background: #fbfdff;
      color: var(--navy);
      cursor: pointer;
      font-weight: 900;
      text-align: left;
      transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
    }

    .tab-btn span {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 46px;
      height: 46px;
      border-radius: 16px;
      background: var(--gradient-main);
      color: var(--white);
      font-weight: 900;
    }

    .tab-btn small {
      display: block;
      margin-top: 2px;
      color: var(--muted);
      font-size: 0.82rem;
      font-weight: 700;
    }

    .tab-btn.active,
    .tab-btn:hover,
    .tab-btn:focus-visible {
      border-color: rgba(136, 71, 216, 0.26);
      box-shadow: var(--shadow-soft);
      transform: translateY(-2px);
    }

    .audience-panel {
      padding: 34px;
      border: 1px solid var(--line);
      border-radius: 36px;
      background: var(--gradient-soft), #ffffff;
      box-shadow: var(--shadow);
    }

    .audience-panel img {
      width: 100%;
      height: 280px;
      margin-bottom: 26px;
      border-radius: 28px;
      object-fit: cover;
    }

    .audience-panel h3 {
      margin-bottom: 12px;
      color: var(--navy);
      font-size: 1.5rem;
    }

    .audience-panel p {
      margin-bottom: 18px;
      color: var(--muted);
    }

    .symptom-list {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 12px;
      margin-top: 20px;
      list-style: none;
    }

    .symptom-list li {
      display: flex;
      align-items: flex-start;
      gap: 10px;
      padding: 13px;
      border-radius: 16px;
      background: rgba(255, 255, 255, 0.78);
      color: var(--navy-soft);
      font-size: 0.94rem;
      font-weight: 800;
    }

    .diagnosis {
      padding: 92px 0;
      background:
        radial-gradient(circle at 14% 20%, rgba(8, 182, 200, 0.12), transparent 28%),
        radial-gradient(circle at 86% 65%, rgba(255, 102, 143, 0.12), transparent 28%),
        #f8fbff;
    }

    .diagnosis-box {
      display: grid;
      grid-template-columns: 1.05fr 0.95fr;
      gap: 46px;
      align-items: center;
      padding: 44px;
      border: 1px solid var(--line);
      border-radius: 44px;
      background: rgba(255, 255, 255, 0.92);
      box-shadow: var(--shadow);
    }

    .simple-cards {
      display: grid;
      gap: 14px;
      margin-top: 28px;
    }

    .simple-card {
      display: flex;
      gap: 14px;
      padding: 18px;
      border: 1px solid var(--line);
      border-radius: 22px;
      background: #fbfdff;
    }

    .simple-card strong {
      display: block;
      margin-bottom: 4px;
      color: var(--navy);
    }

    .simple-card p {
      color: var(--muted);
      font-size: 0.96rem;
    }

    .diagnosis-media {
      position: relative;
    }

    .diagnosis-media img {
      width: 100%;
      aspect-ratio: 1 / 1;
      border-radius: 36px;
      box-shadow: var(--shadow-soft);
      object-fit: cover;
    }

    .diagnosis-card {
      position: absolute;
      right: 20px;
      bottom: 20px;
      max-width: 280px;
      padding: 18px;
      border-radius: 22px;
      background: rgba(255, 255, 255, 0.94);
      box-shadow: var(--shadow-soft);
    }

    .diagnosis-card strong {
      display: block;
      color: var(--navy);
      margin-bottom: 6px;
    }

    .diagnosis-card span {
      color: var(--muted);
      font-size: 0.9rem;
      font-weight: 700;
    }

    .therapy-camp {
      padding: 92px 0;
      background: var(--white);
    }

    .camp-banner {
      position: relative;
      display: grid;
      grid-template-columns: 1fr 0.9fr;
      gap: 28px;
      align-items: center;
      overflow: hidden;
      padding: 48px;
      border-radius: 44px;
      background:
        linear-gradient(135deg, rgba(8, 182, 200, 0.96), rgba(136, 71, 216, 0.95)),
        url("../images/miracula/turnusy-banner.jpg") center/cover;
      color: var(--white);
      box-shadow: var(--shadow);
    }

    .camp-banner::after {
      content: "";
      position: absolute;
      top: -120px;
      right: -140px;
      width: 360px;
      height: 360px;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.16);
    }

    .camp-content,
    .camp-card {
      position: relative;
      z-index: 1;
    }

    .camp-content h2 {
      margin-bottom: 18px;
      font-family: "Nunito", system-ui, sans-serif;
      font-size: clamp(2rem, 3.4vw, 3.4rem);
      line-height: 1;
      letter-spacing: -0.04em;
    }

    .camp-content p {
      max-width: 660px;
      margin-bottom: 24px;
      color: rgba(255, 255, 255, 0.88);
      font-size: 1.07rem;
    }

    .camp-list {
      display: grid;
      gap: 12px;
      margin-bottom: 28px;
      list-style: none;
    }

    .camp-list li {
      display: flex;
      align-items: center;
      gap: 10px;
      font-weight: 800;
    }

    .camp-list li::before {
      content: "✓";
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 28px;
      height: 28px;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.20);
    }

    .camp-card {
      padding: 28px;
      border: 1px solid rgba(255, 255, 255, 0.26);
      border-radius: 32px;
      background: rgba(255, 255, 255, 0.16);
      backdrop-filter: blur(12px);
    }

    .camp-card h3 {
      margin-bottom: 16px;
      font-size: 1.25rem;
    }

    .price-row {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 14px;
      padding: 16px 0;
      border-bottom: 1px solid rgba(255, 255, 255, 0.22);
    }

    .price-row:last-child {
      border-bottom: 0;
    }

    .price-row strong {
      font-size: 1.35rem;
    }

    .pricing {
      padding: 92px 0;
      background: linear-gradient(180deg, #ffffff, #f8fbff);
    }

    .pricing-layout {
      display: grid;
      grid-template-columns: 1.1fr 0.9fr;
      gap: 24px;
      align-items: start;
      margin-top: 36px;
    }

    .price-table-wrap,
    .price-side {
      border: 1px solid var(--line);
      border-radius: 30px;
      background: var(--white);
      box-shadow: var(--shadow-soft);
      overflow: hidden;
    }

    .price-table {
      width: 100%;
      border-collapse: collapse;
    }

    .price-table th,
    .price-table td {
      padding: 16px 18px;
      border-bottom: 1px solid var(--line);
      text-align: left;
      vertical-align: top;
    }

    .price-table th {
      background: #f7fbff;
      color: var(--navy);
      font-size: 0.86rem;
      font-weight: 900;
      letter-spacing: 0.08em;
      text-transform: uppercase;
    }

    .price-table tr:last-child td {
      border-bottom: 0;
    }

    .price-table td:first-child {
      color: var(--navy);
      font-weight: 900;
    }

    .price-table td:nth-child(2),
    .price-table td:nth-child(3) {
      color: var(--muted);
      font-weight: 800;
      white-space: nowrap;
    }

    .price-table small {
      display: block;
      margin-top: 4px;
      color: var(--muted);
      font-weight: 600;
      line-height: 1.4;
    }

    .price-side {
      padding: 28px;
    }

    .price-side-card {
      padding: 22px;
      border-radius: 24px;
      background: var(--navy);
      color: var(--white);
    }

    .price-side-card + .price-side-card {
      margin-top: 16px;
      background: var(--gradient-main);
    }

    .price-side-card h3 {
      margin-bottom: 10px;
      font-size: 1.2rem;
    }

    .price-side-card p {
      color: rgba(255, 255, 255, 0.78);
    }

    .price-side-card strong {
      display: block;
      margin-top: 14px;
      font-size: 1.7rem;
      line-height: 1.1;
    }

    .note-box {
      margin-top: 16px;
      padding: 18px;
      border: 1px solid rgba(255, 102, 143, 0.22);
      border-radius: 22px;
      background: rgba(255, 102, 143, 0.07);
      color: var(--navy-soft);
      font-size: 0.96rem;
      font-weight: 700;
    }

    .faq {
      padding: 92px 0;
      background: var(--white);
    }

    .faq-grid {
      display: grid;
      grid-template-columns: 0.85fr 1.15fr;
      gap: 42px;
      align-items: start;
    }

    .faq-list {
      display: grid;
      gap: 14px;
    }

    .faq-item {
      border: 1px solid var(--line);
      border-radius: 22px;
      background: #fbfdff;
      box-shadow: 0 10px 24px rgba(7, 26, 75, 0.04);
      overflow: hidden;
    }

    .faq-question {
      width: 100%;
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 20px;
      padding: 18px;
      border: 0;
      background: transparent;
      color: var(--navy);
      cursor: pointer;
      font-weight: 900;
      text-align: left;
    }

    .faq-question span:last-child {
      display: inline-flex;
      justify-content: center;
      align-items: center;
      width: 30px;
      height: 30px;
      border-radius: 50%;
      background: var(--gradient-main);
      color: var(--white);
      flex: 0 0 auto;
    }

    .faq-answer {
      display: none;
      padding: 0 18px 18px;
      color: var(--muted);
      font-size: 0.98rem;
    }

    .faq-item.open .faq-answer {
      display: block;
    }

    .cta {
      padding: 96px 0;
      background: var(--white);
    }

    .cta-box {
      position: relative;
      display: grid;
      grid-template-columns: 0.95fr 1.05fr;
      gap: 36px;
      align-items: start;
      overflow: hidden;
      padding: 50px;
      border-radius: 44px;
      background:
        linear-gradient(135deg, rgba(6, 24, 74, 0.91), rgba(8, 182, 200, 0.80)),
        url("https://images.unsplash.com/photo-1637245048732-adf1a547835e?auto=format&fit=crop&w=1400&q=80") center/cover;
      color: var(--white);
      box-shadow: var(--shadow);
    }

    .cta-copy h2 {
      margin-bottom: 16px;
      font-family: "Nunito", system-ui, sans-serif;
      font-size: clamp(2rem, 3.2vw, 3.4rem);
      line-height: 1.03;
      letter-spacing: -0.04em;
    }

    .cta-copy p {
      max-width: 620px;
      margin-bottom: 26px;
      color: rgba(255, 255, 255, 0.86);
      font-size: 1.08rem;
    }

    .cta-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 14px;
      margin-bottom: 24px;
    }

    .contact-card,
    .contact-form {
      position: relative;
      z-index: 1;
      padding: 28px;
      border-radius: 34px;
      background: rgba(255, 255, 255, 0.94);
      color: var(--text);
      box-shadow: var(--shadow-soft);
    }

    .contact-card {
      margin-top: 26px;
    }

    .contact-card h3,
    .contact-form h3 {
      margin-bottom: 18px;
      color: var(--navy);
      font-size: 1.3rem;
    }

    .contact-list {
      display: grid;
      gap: 14px;
      list-style: none;
    }

    .contact-list li {
      display: flex;
      gap: 12px;
      align-items: flex-start;
      color: var(--muted);
      font-weight: 700;
    }

    .contact-list strong {
      display: block;
      margin-bottom: 2px;
      color: var(--navy);
    }

    .form-grid {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 14px;
    }

    .field {
      display: grid;
      gap: 7px;
    }

    .field.full {
      grid-column: 1 / -1;
    }

    .field label {
      color: var(--navy);
      font-size: 0.88rem;
      font-weight: 900;
    }

    .field input,
    .field textarea,
    .field select {
      width: 100%;
      border: 1px solid var(--line);
      border-radius: 16px;
      background: #fbfdff;
      color: var(--text);
      outline: none;
      padding: 13px 14px;
      transition: border-color 0.2s ease, box-shadow 0.2s ease;
    }

    .field textarea {
      min-height: 124px;
      resize: vertical;
    }

    .field input:focus,
    .field textarea:focus,
    .field select:focus {
      border-color: rgba(8, 182, 200, 0.75);
      box-shadow: 0 0 0 4px rgba(8, 182, 200, 0.12);
    }

    .form-note {
      margin: 12px 0 18px;
      color: var(--muted);
      font-size: 0.86rem;
      font-weight: 700;
    }

    .map-placeholder {
      display: grid;
      min-height: 150px;
      margin-top: 16px;
      padding: 20px;
      place-items: center;
      border: 1px solid rgba(8, 182, 200, 0.22);
      border-radius: 24px;
      background: linear-gradient(135deg, rgba(8, 182, 200, 0.09), rgba(136, 71, 216, 0.09));
      color: var(--navy);
      font-weight: 900;
      text-align: center;
    }

    .testimonials {
      padding: 108px 0;
      background:
        linear-gradient(180deg, #ffffff, #f7fbff);
    }

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

    .testimonial-card {
      display: flex;
      min-height: 100%;
      flex-direction: column;
      padding: 30px;
      border: 1px solid var(--line);
      border-radius: 30px;
      background: rgba(255, 255, 255, 0.92);
      box-shadow: var(--shadow-soft);
    }

    .testimonial-rating {
      margin-bottom: 18px;
      color: var(--amber);
      font-size: 1rem;
      letter-spacing: 0.08em;
      line-height: 1;
    }

    .testimonial-card p {
      flex: 1 1 auto;
      margin-bottom: 24px;
      color: var(--navy-soft);
      font-size: 1rem;
      font-weight: 750;
      line-height: 1.7;
    }

    .testimonial-card strong {
      display: block;
      color: var(--navy);
      font-size: 1.02rem;
    }

    .testimonial-card span {
      display: block;
      margin-top: 3px;
      color: var(--muted);
      font-size: 0.9rem;
      font-weight: 800;
    }

    .footer {
      padding: 50px 0 28px;
      border-top: 1px solid var(--line);
      background: #f5f8ff;
    }

    .footer-grid {
      display: grid;
      grid-template-columns: 1.25fr 0.75fr 0.8fr 0.9fr;
      gap: 34px;
      margin-bottom: 34px;
    }

    .footer h3,
    .footer h4 {
      margin-bottom: 14px;
      color: var(--navy);
    }

    .footer p,
    .footer a,
    .footer li {
      color: var(--muted);
      font-size: 0.95rem;
      font-weight: 700;
    }

    .footer ul {
      display: grid;
      gap: 9px;
      list-style: none;
    }

    .footer-cta {
      margin-top: 16px;
      color: var(--navy);
      font-weight: 900;
    }

    .footer-phone,
    .footer a[href^="tel:"] {
      white-space: nowrap;
      word-break: keep-all;
    }

    .footer-bottom {
      display: flex;
      justify-content: space-between;
      gap: 18px;
      padding-top: 22px;
      border-top: 1px solid var(--line);
      color: var(--muted);
      font-size: 0.9rem;
    }

    .reveal {
      opacity: 0;
      transform: translateY(22px);
      transition: opacity 0.7s ease, transform 0.7s ease;
    }

    .reveal.visible {
      opacity: 1;
      transform: translateY(0);
    }

    @media (prefers-reduced-motion: reduce) {
      html {
        scroll-behavior: auto;
      }

      .reveal,
      .btn,
      .tab-btn,
      .faq-question {
        transition: none;
      }
    }

    @media (max-width: 1100px) {
      .nav-links,
      .topbar .btn-primary {
        display: none;
      }

      .menu-toggle {
        display: block;
      }

      .nav-links.open {
        position: absolute;
        top: calc(100% + 8px);
        right: 20px;
        left: 20px;
        display: grid;
        gap: 10px;
        padding: 22px;
        border: 1px solid var(--line);
        border-radius: 24px;
        background: var(--white);
        box-shadow: var(--shadow);
      }

      .hero-grid,
      .intro-grid,
      .visit-grid,
      .audience-grid,
      .diagnosis-box,
      .camp-banner,
      .pricing-layout,
      .faq-grid,
      .cta-box {
        grid-template-columns: 1fr;
      }

      .hero-media {
        min-height: auto;
      }

      .hero-card {
        height: 470px;
      }

      .symptom-groups,
      .path-grid,
      .method-grid,
      .footer-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }
    }

    @media (min-width: 981px) and (max-width: 1180px) {
      .container {
        width: min(100% - 32px, 1180px);
      }

      .nav {
        gap: 12px;
        min-height: 78px;
      }

      .brand {
        gap: 10px;
        min-width: 178px;
      }

      .topbar .brand-logo {
        width: 48px;
        height: 48px;
        border-radius: 17px;
      }

      .brand-text strong {
        font-size: 1rem;
        letter-spacing: 0.18em;
      }

      .brand-text span {
        font-size: 0.58rem;
        letter-spacing: 0.08em;
      }

      .nav-links {
        gap: 10px;
        font-size: 0.84rem;
      }

      .topbar .btn-primary {
        min-height: 46px;
        padding: 12px 16px;
        font-size: 0.9rem;
      }
    }

    @media (min-width: 981px) and (max-width: 1100px) {
      .nav-links {
        display: flex;
      }

      .topbar .btn-primary {
        display: inline-flex;
      }

      .menu-toggle {
        display: none;
      }
    }

    @media (max-width: 980px) {
      html {
        scroll-padding-top: 88px;
      }

      .preheader .container {
        justify-content: center;
        min-height: 36px;
        padding: 6px 0;
      }

      .preheader .container span:first-child {
        display: none;
      }

      .preheader .container span:last-child {
        overflow: hidden;
        max-width: 100%;
        text-align: center;
        text-overflow: ellipsis;
      }

      .nav {
        min-height: 68px;
      }
    }

    @media (max-width: 720px) {
      .container {
        width: min(100% - 28px, 1180px);
      }

      .preheader .container {
        display: flex;
        min-height: 32px;
        padding: 4px 0;
      }

      .preheader {
        font-size: clamp(0.68rem, 2.9vw, 0.78rem);
        line-height: 1.2;
      }

      .nav {
        min-height: 60px;
      }

      .brand {
        min-width: 0;
        gap: 9px;
      }

      .brand-text strong {
        font-size: 0.92rem;
      }

      .brand-text span {
        display: none;
      }

      .hero {
        padding-top: 28px;
      }

      .symptom-groups,
      .proof-row,
      .path-grid,
      .method-grid,
      .symptom-list,
      .footer-grid,
      .form-grid {
        grid-template-columns: 1fr;
      }

      .section-head {
        display: block;
      }

      .section-head .btn {
        margin-top: 22px;
      }

      .hero-card {
        height: 390px;
        border-radius: 32px;
      }

      .floating-note,
      .floating-badge,
      .intro-stat,
      .visit-note,
      .diagnosis-card {
        position: static;
        width: 100%;
        max-width: none;
        margin-top: 16px;
      }

      .hero-trust {
        position: static;
        grid-template-columns: 1fr;
        margin-top: 14px;
      }

      .trust-chip {
        background: var(--navy);
      }

      .intro,
      .first-visit,
      .services,
      .audience,
      .diagnosis,
      .therapy-camp,
      .pricing,
      .faq,
      .cta {
        padding: 64px 0;
      }

      .diagnosis-box,
      .camp-banner,
      .cta-box {
        padding: 26px;
        border-radius: 32px;
      }

      .price-table-wrap {
        overflow-x: auto;
      }

      .price-table {
        min-width: 700px;
      }

      .footer-bottom {
        flex-direction: column;
      }
    }

    .hero {
  position: relative;
  padding: 72px 0 56px;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
}

.local-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
  padding: 9px 14px;
  border: 1px solid rgba(8, 182, 200, 0.20);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  color: var(--cyan-dark);
  font-size: 0.92rem;
      font-weight: 900;
      box-shadow: 0 10px 25px rgba(7, 26, 75, 0.05);
    }

    .hero .local-pill::before {
      content: "";
      width: 7px;
      height: 7px;
      flex: 0 0 auto;
      border-radius: 999px;
      background: var(--pink);
      box-shadow: 0 0 0 5px rgba(255, 102, 143, 0.12);
    }

.hero-title {
  max-width: 620px;
  margin-bottom: 20px;
  color: var(--navy);
  font-family: "Nunito", system-ui, sans-serif;
  font-size: clamp(2.6rem, 4.5vw, 4.6rem);
  line-height: 1.02;
  letter-spacing: -0.04em;
}

.hero-copy p {
  max-width: 620px;
  margin-bottom: 26px;
  color: var(--muted);
  font-size: 1.08rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 26px;
}

.hero-media {
  position: relative;
}

.hero-card {
  position: relative;
  overflow: hidden;
  border: 10px solid rgba(255, 255, 255, 0.85);
  border-radius: 36px;
  background: #fff;
  box-shadow: var(--shadow);
  aspect-ratio: 4 / 4.6;
}

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

.floating-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 12px 30px rgba(7, 26, 75, 0.10);
  color: var(--navy);
  font-weight: 800;
  font-size: 0.95rem;
}

.floating-badge span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--gradient-pink);
  color: var(--white);
  font-size: 0.95rem;
}

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

  .hero-title,
  .hero-copy p {
    max-width: 100%;
  }
}

@media (max-width: 720px) {
  .hero {
    padding: 28px 0 44px;
  }

  .floating-badge {
    position: static;
    margin-top: 16px;
    width: fit-content;
  }
}

    /* Logo z plików użytkownika */
    .brand-logo {
      width: 56px;
      height: 56px;
      flex: 0 0 auto;
      object-fit: contain;
      border: 1px solid rgba(230, 235, 245, 0.9);
      border-radius: 20px;
      background: var(--white);
      box-shadow: 0 10px 30px rgba(7, 26, 75, 0.10);
    }

    .footer-full-logo {
      display: inline-flex;
      width: min(190px, 100%);
    }

    .footer-full-logo img {
      width: 50%;
      height: auto;
      border-radius: 50%;
      filter: drop-shadow(0 12px 24px rgba(7, 26, 75, 0.10));
    }

    @media (max-width: 720px) {
      .topbar .brand-logo {
        width: 44px;
        height: 44px;
        border-radius: 15px;
      }

      .footer-full-logo {
        width: 170px;
      }
    }

    /* Spacing pass: more breathing room after simplifying the content */
    .section-title {
      margin-bottom: 22px;
      line-height: 1.09;
    }

    .section-lead {
      max-width: 780px;
      line-height: 1.78;
    }

    .hero {
      padding: clamp(58px, 6vw, 82px) 0 clamp(68px, 7vw, 88px);
    }

    .hero-grid {
      grid-template-columns: minmax(0, 1.04fr) minmax(380px, 0.82fr);
      gap: clamp(62px, 8vw, 108px);
    }

    .hero-title {
      max-width: 690px;
      margin-bottom: 24px;
      font-size: clamp(3.35rem, 5.15vw, 4.55rem);
      line-height: 1.05;
    }

    .hero-copy p,
    .path-card p,
    .intro-item p,
    .visit-step p,
    .method-item p,
    .price-side-card p,
    .faq-answer,
    .cta-copy p {
      line-height: 1.72;
    }

    .hero-copy p {
      max-width: 660px;
      margin-bottom: 26px;
      color: #5d6a89;
      font-size: 1.12rem;
    }

    .hero-copy .hero-methods {
      max-width: 700px;
      margin-bottom: 28px;
      color: var(--navy-soft);
      gap: 8px;
      font-size: 0.93rem;
      font-weight: 900;
      line-height: 1.45;
    }

    .hero-methods li {
      padding: 7px 11px;
      border: 1px solid rgba(8, 182, 200, 0.16);
      border-radius: 999px;
      background: rgba(255, 255, 255, 0.66);
      box-shadow: 0 8px 22px rgba(7, 26, 75, 0.04);
    }

    .hero-methods li + li::before {
      display: none;
    }

    .hero-card {
      border-width: 9px;
      border-radius: 34px;
      aspect-ratio: 4 / 4.55;
    }

    .floating-badge {
      top: 22px;
      right: 18px;
      padding: 12px 16px;
      box-shadow: 0 16px 36px rgba(7, 26, 75, 0.14);
    }

    .hero-actions {
      gap: 16px;
      margin-bottom: 0;
    }

    .hero-assurances {
      gap: 0;
      padding-top: 18px;
      border-top: 1px solid rgba(19, 42, 102, 0.13);
    }

    .hero-assurances li {
      padding: 0 18px;
      border-right: 1px solid rgba(19, 42, 102, 0.13);
    }

    .hero-assurances li:first-child {
      padding-left: 0;
    }

    .hero-assurances li:last-child {
      padding-right: 0;
      border-right: 0;
    }

    .hero-assurances .mini-check {
      width: 20px;
      min-width: 20px;
      height: 20px;
      margin-top: 1px;
      font-size: 0.66rem;
    }

    .symptoms {
      padding: 62px 0 112px;
    }

    .intro,
    .first-visit,
    .services,
    .pricing,
    .faq {
      padding: 116px 0;
    }

    .cta {
      padding: 120px 0;
    }

    .section-head {
      align-items: flex-start;
      gap: 44px;
      margin-bottom: 56px;
    }

    .symptom-groups,
    .path-grid {
      gap: 30px;
    }

    .symptom-group,
    .path-card {
      padding: 36px;
    }

    .symptom-group {
      box-shadow: 0 18px 44px rgba(7, 26, 75, 0.07);
    }

    .symptom-group h3 {
      margin-bottom: 24px;
    }

    .symptom-group h3 .icon {
      width: 54px;
      height: 54px;
      flex-basis: 54px;
      border-radius: 18px;
      box-shadow: none;
    }

    .symptom-group h3 .icon svg {
      width: 29px;
      height: 29px;
      stroke-linecap: round;
      stroke-linejoin: round;
    }

    .symptom-list-big {
      gap: 16px;
    }

    .symptom-list-big li {
      padding: 17px;
      line-height: 1.52;
    }

    .symptom-group .symptom-list-big {
      gap: 0;
      padding-top: 8px;
      border-top: 1px solid var(--line);
    }

    .symptom-group .symptom-list-big li {
      padding: 18px 0;
      border-bottom: 1px solid var(--line);
      border-radius: 0;
      background: transparent;
    }

    .symptom-group .symptom-list-big li:last-child {
      border-bottom: 0;
    }

    .comfort-box {
      margin-top: 30px;
      padding: 24px 0 0;
      border: 0;
      border-top: 1px solid rgba(255, 102, 143, 0.24);
      border-radius: 0;
      background: transparent;
      line-height: 1.65;
    }

    .intro-grid,
    .visit-grid {
      gap: clamp(56px, 7vw, 88px);
    }

    .intro-list {
      gap: 22px;
      margin-top: 38px;
    }

    .intro-item {
      gap: 18px;
      padding: 24px;
    }

    .intro-item strong,
    .visit-step strong,
    .method-item strong {
      margin-bottom: 8px;
    }

    .proof-row {
      display: grid;
      gap: 0;
      margin-top: 34px;
      border-top: 1px solid var(--line);
      border-bottom: 1px solid var(--line);
    }

    .proof-card {
      padding: 20px 22px;
      border: 0;
      border-right: 1px solid var(--line);
      border-radius: 0;
      background: transparent;
      line-height: 1.55;
    }

    .proof-card:last-child {
      border-right: 0;
    }

    .visit-card {
      padding: 0;
      border: 0;
      border-radius: 0;
      background: transparent;
      box-shadow: none;
    }

    .visit-steps {
      gap: 20px;
      margin-top: 36px;
    }

    .visit-step {
      grid-template-columns: 40px 1fr;
      gap: 18px;
      padding: 0 0 24px;
      border: 0;
      border-bottom: 1px solid var(--line);
      border-radius: 0;
      background: transparent;
    }

    .visit-step:last-child {
      padding-bottom: 0;
      border-bottom: 0;
    }

    .visit-note {
      left: 24px;
      right: 24px;
      bottom: 24px;
      max-width: none;
      padding: 22px 24px;
      line-height: 1.58;
    }

    .visit-step::before {
      width: 40px;
      height: 40px;
      border-radius: 999px;
    }

    .path-grid {
      margin-bottom: 56px;
    }

    .path-card h3 {
      margin: 18px 0 14px;
      line-height: 1.2;
    }

    .path-card p {
      margin-bottom: 24px;
    }

    .method-box {
      padding: 42px;
    }

    .method-grid {
      gap: 22px;
      margin-top: 34px;
    }

    .method-item {
      gap: 18px;
      padding: 24px;
    }

    .pricing-layout {
      gap: 34px;
      margin-top: 52px;
    }

    .price-table th,
    .price-table td {
      padding: 22px 24px;
    }

    .price-table small {
      margin-top: 8px;
      line-height: 1.58;
    }

    .price-side {
      padding: 34px;
      background: var(--white);
    }

    .price-side-card {
      padding: 0 0 26px;
      border-radius: 0;
      background: transparent;
      color: var(--text);
    }

    .price-side-card + .price-side-card,
    .note-box {
      margin-top: 22px;
    }

    .price-side-card + .price-side-card {
      padding-top: 26px;
      border-top: 1px solid var(--line);
      background: transparent;
    }

    .price-side-card h3 {
      color: var(--navy);
    }

    .price-side-card p {
      color: var(--muted);
    }

    .price-side-card strong {
      color: var(--navy);
      font-size: 1.25rem;
    }

    .note-box {
      padding: 20px 0 0;
      border: 0;
      border-top: 1px solid rgba(255, 102, 143, 0.22);
      border-radius: 0;
      background: transparent;
      line-height: 1.62;
    }

    .faq-grid {
      gap: 72px;
    }

    .faq-list {
      gap: 20px;
    }

    .faq-question {
      padding: 24px 26px;
      line-height: 1.42;
    }

    .faq-answer {
      padding: 0 26px 26px;
    }

    .cta-box {
      gap: 56px;
      padding: 64px;
    }

    .cta-copy h2 {
      margin-bottom: 24px;
      line-height: 1.07;
    }

    .cta-copy p {
      margin-bottom: 34px;
    }

    .cta-actions {
      gap: 16px;
      margin-bottom: 34px;
    }

    .contact-card,
    .contact-form {
      padding: 34px 36px;
      border-radius: 28px;
      background: rgba(255, 255, 255, 0.90);
    }

    .contact-card {
      margin-top: 34px;
    }

    .contact-list,
    .form-grid {
      gap: 18px;
    }

    .field {
      gap: 10px;
    }

    .field input,
    .field textarea,
    .field select {
      padding: 16px 17px;
    }

    .cta-box {
      grid-template-columns: minmax(0, 0.86fr) minmax(460px, 1fr);
      grid-template-areas:
        "copy form"
        "contact form";
      gap: 28px 58px;
      align-items: start;
    }

    .cta-copy {
      grid-area: copy;
      max-width: 620px;
    }

    .cta-copy h2 {
      max-width: 560px;
      font-size: clamp(2.25rem, 3.4vw, 3.2rem);
    }

    .cta-copy p {
      max-width: 560px;
    }

    .cta-actions {
      margin-bottom: 0;
    }

    .contact-card {
      grid-area: contact;
      max-width: 560px;
      margin-top: 0;
    }

    .contact-form {
      grid-area: form;
      align-self: start;
    }

    .contact-card h3,
    .contact-form h3 {
      margin-bottom: 24px;
    }

    .contact-list {
      gap: 0;
      border-top: 1px solid var(--line);
      border-bottom: 1px solid var(--line);
    }

    .contact-list li {
      padding: 18px 0;
      border-bottom: 1px solid var(--line);
    }

    .contact-list li:last-child {
      border-bottom: 0;
    }

    .contact-card .check {
      width: 30px;
      min-width: 30px;
      height: 30px;
      margin-top: 2px;
      font-size: 0.78rem;
    }

    .contact-card iframe {
      display: block;
      width: 100%;
      height: 210px;
      margin-top: 24px;
      border-radius: 22px;
    }

    .pricing-layout {
      grid-template-columns: minmax(320px, 0.95fr) minmax(0, 1.15fr);
      grid-template-areas:
        "feature focus"
        "feature compact";
      gap: 24px;
    }

    .price-feature,
    .price-focus-card,
    .price-compact-list {
      border: 1px solid var(--line);
      background: var(--white);
      box-shadow: var(--shadow-soft);
    }

    .price-feature {
      grid-area: feature;
      display: flex;
      min-height: 100%;
      flex-direction: column;
      align-items: flex-start;
      padding: 42px;
      border-radius: 34px;
      background:
        radial-gradient(circle at 100% 0, rgba(255, 102, 143, 0.16), transparent 34%),
        linear-gradient(135deg, rgba(8, 182, 200, 0.96), rgba(136, 71, 216, 0.96));
      color: var(--white);
    }

    .price-kicker {
      display: inline-flex;
      margin-bottom: 28px;
      padding: 8px 12px;
      border-radius: 999px;
      background: rgba(255, 255, 255, 0.16);
      color: rgba(255, 255, 255, 0.92);
      font-size: 0.78rem;
      font-weight: 900;
      letter-spacing: 0.08em;
      text-transform: uppercase;
    }

    .price-feature h3 {
      margin-bottom: 16px;
      font-family: "Nunito", system-ui, sans-serif;
      font-size: clamp(2rem, 3vw, 3rem);
      line-height: 1.02;
      letter-spacing: -0.03em;
    }

    .price-feature p {
      max-width: 430px;
      color: rgba(255, 255, 255, 0.84);
      font-size: 1.04rem;
      line-height: 1.65;
    }

    .price-value {
      margin: auto 0 28px;
      padding-top: 34px;
    }

    .price-value strong {
      display: block;
      font-size: clamp(3rem, 5vw, 4.8rem);
      line-height: 0.92;
      letter-spacing: -0.05em;
    }

    .price-value span {
      display: block;
      margin-top: 12px;
      color: rgba(255, 255, 255, 0.78);
      font-weight: 900;
    }

    .price-focus-grid {
      grid-area: focus;
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 24px;
    }

    .price-focus-card {
      padding: 30px;
      border-radius: 30px;
    }

    .price-focus-card span {
      display: block;
      margin-bottom: 18px;
      color: var(--cyan-dark);
      font-size: 0.82rem;
      font-weight: 900;
      letter-spacing: 0.08em;
      text-transform: uppercase;
    }

    .price-focus-card strong {
      display: block;
      margin-bottom: 14px;
      color: var(--navy);
      font-family: "Nunito", system-ui, sans-serif;
      font-size: clamp(2.2rem, 3.4vw, 3.4rem);
      line-height: 1;
      letter-spacing: -0.04em;
    }

    .price-focus-card p {
      color: var(--muted);
      font-weight: 750;
      line-height: 1.55;
    }

    .price-compact-list {
      grid-area: compact;
      padding: 8px 30px;
      border-radius: 30px;
    }

    .price-compact-row {
      display: grid;
      grid-template-columns: 1fr auto;
      gap: 24px;
      align-items: center;
      padding: 24px 0;
      border-bottom: 1px solid var(--line);
    }

    .price-compact-row strong {
      display: block;
      color: var(--navy);
      font-size: 1.06rem;
    }

    .price-compact-row span {
      display: block;
      margin-top: 4px;
      color: var(--muted);
      font-weight: 700;
    }

    .price-compact-row b {
      color: var(--navy);
      font-size: 1.22rem;
      white-space: nowrap;
    }

    .pricing-note {
      padding: 22px 0;
      color: var(--muted);
      font-size: 0.94rem;
      font-weight: 750;
      line-height: 1.6;
    }

    @media (max-width: 1100px) {
      .hero-grid,
      .intro-grid,
      .visit-grid,
      .pricing-layout,
      .faq-grid,
      .cta-box {
        gap: 44px;
      }

      .cta-box {
        grid-template-columns: 1fr;
        grid-template-areas:
          "copy"
          "form"
          "contact";
      }

      .cta-copy,
      .contact-card {
        max-width: none;
      }

      .pricing-layout {
        grid-template-columns: 1fr;
        grid-template-areas:
          "feature"
          "focus"
          "compact";
      }

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

    @media (max-width: 720px) {
      .hero {
        padding: 36px 0 60px;
      }

      .hero-assurances {
        grid-template-columns: 1fr;
        gap: 12px;
        padding-top: 18px;
      }

      .hero-assurances li {
        padding: 0;
        border-right: 0;
      }

      .intro,
      .first-visit,
      .services,
      .pricing,
      .testimonials,
      .faq,
      .cta {
        padding: 78px 0;
      }

      .symptoms {
        padding: 44px 0 78px;
      }

      .section-head {
        margin-bottom: 34px;
      }

      .symptom-group,
      .path-card,
      .method-box,
      .visit-card,
      .price-side,
      .contact-card,
      .contact-form,
      .cta-box {
        padding: 28px;
      }

      .symptom-list-big,
      .intro-list,
      .visit-steps,
      .method-grid,
      .faq-list,
      .form-grid {
        gap: 16px;
      }

      .proof-row {
        border: 0;
        gap: 12px;
      }

      .proof-card {
        padding: 16px 0;
        border-right: 0;
        border-bottom: 1px solid var(--line);
      }

      .proof-card:last-child {
        border-bottom: 0;
      }

      .visit-step {
        grid-template-columns: 34px 1fr;
      }

      .visit-step::before {
        width: 34px;
        height: 34px;
      }

      .visit-card {
        padding: 0;
      }

      .contact-card iframe {
        height: 190px;
      }

      .price-feature,
      .price-focus-card,
      .price-compact-list {
        padding: 28px;
      }

      .price-focus-grid {
        grid-template-columns: 1fr;
      }

      .price-compact-list {
        padding-top: 4px;
        padding-bottom: 4px;
      }

      .price-compact-row {
        grid-template-columns: 1fr;
        gap: 8px;
      }
    }

    /* Mobile focus pass: reduce scroll fatigue and keep one clear next step */
    @media (max-width: 720px) {
      body {
        background: #f8fbff;
      }

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

      .hero {
        padding: 32px 0 54px;
      }

      .nav-links.open {
        top: 100%;
        right: 0;
        left: 0;
        width: 100vw;
        gap: 4px;
        padding: 14px 22px 18px;
        border-width: 1px 0 0;
        border-color: rgba(230, 235, 245, 0.96);
        border-radius: 0 0 26px 26px;
        background: rgba(255, 255, 255, 0.98);
        box-shadow: 0 22px 50px rgba(7, 26, 75, 0.14);
        backdrop-filter: blur(18px);
      }

      .nav-links.open a {
        width: 100%;
        min-height: 48px;
        align-items: center;
        justify-content: flex-start;
        gap: 12px;
        padding: 12px 16px;
        border-radius: 16px;
        font-size: 0.94rem;
      }

      .nav-links.open a::before {
        content: "";
        width: 8px;
        height: 8px;
        flex: 0 0 auto;
        border-radius: 999px;
        background: rgba(8, 182, 200, 0.26);
      }

      .nav-links.open a::after {
        display: none;
      }

      .nav-links.open a.is-active {
        background: rgba(8, 182, 200, 0.10);
        color: var(--navy);
      }

      .nav-links.open a.is-active::before {
        background: var(--gradient-main);
      }

      .menu-toggle[aria-expanded="true"] {
        background: rgba(8, 182, 200, 0.10);
        box-shadow: none;
      }

      .menu-toggle[aria-expanded="true"] span:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
      }

      .menu-toggle[aria-expanded="true"] span:nth-child(2) {
        opacity: 0;
      }

      .menu-toggle[aria-expanded="true"] span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
      }

      .hero-grid {
        display: block;
      }

      .hero-media {
        display: block;
        min-height: auto;
        margin-top: 24px;
      }

      .hero-card {
        height: auto;
        border-width: 7px;
        border-radius: 28px;
        aspect-ratio: 1.05 / 1;
      }

      .hero-card::after {
        background: linear-gradient(180deg, transparent 55%, rgba(6, 24, 74, 0.28));
      }

      .floating-badge {
        position: static;
        width: 100%;
        margin-top: 12px;
        justify-content: center;
        font-size: 0.9rem;
      }

      .local-pill {
        max-width: 100%;
        gap: 7px;
        margin-bottom: 14px;
        padding: 0;
        border: 0;
        border-radius: 0;
        background: transparent;
        box-shadow: none;
        font-size: 0.84rem;
        line-height: 1.35;
      }

      .hero-title {
        max-width: 10.5em;
        margin: 18px 0 16px;
        font-size: clamp(2.32rem, 11vw, 3.15rem);
        line-height: 1.04;
        letter-spacing: -0.03em;
      }

      .hero-copy p {
        margin-bottom: 20px;
        font-size: 1rem;
        line-height: 1.58;
      }

      .hero-copy .hero-methods {
        margin-bottom: 22px;
        font-size: 0.94rem;
        line-height: 1.55;
        gap: 8px;
      }

      .hero-methods li {
        padding: 7px 10px;
        border: 1px solid rgba(8, 182, 200, 0.16);
        border-radius: 999px;
        background: rgba(255, 255, 255, 0.66);
        white-space: normal;
      }

      .hero-methods li + li::before {
        display: none;
      }

      .hero-actions {
        display: grid;
        gap: 10px;
        margin-bottom: 0;
      }

      .hero-actions .btn {
        width: 100%;
        justify-content: center;
      }

      .hero-actions .btn-outline {
        display: none;
      }

      .hero-assurances {
        display: grid;
        gap: 0;
        padding: 3px 14px;
        border: 1px solid rgba(8, 182, 200, 0.18);
        border-radius: 18px;
        background: rgba(255, 255, 255, 0.68);
      }

      .hero-assurances li {
        min-height: auto;
        align-items: center;
        gap: 8px;
        padding: 11px 0;
        border: 0;
        border-bottom: 1px solid rgba(19, 42, 102, 0.10);
        border-radius: 0;
        background: transparent;
        font-size: 0.82rem;
        line-height: 1.25;
      }

      .hero-assurances li:last-child {
        padding-right: 0;
        border: 0;
      }

      .intro,
      .first-visit,
      .services,
      .pricing,
      .testimonials,
      .faq,
      .cta {
        padding: 64px 0;
      }

      .symptoms {
        padding: 50px 0 64px;
      }

      .section-head {
        display: block;
        margin-bottom: 24px;
      }

      .section-head .btn {
        display: none;
      }

      .section-title {
        margin-bottom: 14px;
        font-size: clamp(1.95rem, 8.8vw, 2.45rem);
        line-height: 1.08;
      }

      .section-lead {
        font-size: 0.98rem;
        line-height: 1.58;
      }

      .symptom-groups {
        gap: 14px;
      }

      .symptom-group {
        padding: 22px;
        border-radius: 22px;
        box-shadow: 0 12px 28px rgba(7, 26, 75, 0.06);
      }

      .symptom-group h3 {
        margin-bottom: 10px;
        font-size: 1.05rem;
      }

      .symptom-group h3 .icon {
        width: 40px;
        height: 40px;
        flex-basis: 40px;
        border-radius: 14px;
      }

      .symptom-list-big {
        padding-top: 0;
        border-top: 0;
      }

      .symptom-list-big li,
      .symptom-group .symptom-list-big li {
        padding: 12px 0;
        font-size: 0.92rem;
        line-height: 1.45;
      }

      .comfort-box {
        display: none;
      }

      .intro-grid {
        display: grid;
        gap: 24px;
      }

      .intro-copy {
        order: 1;
      }

      .intro-media {
        order: 2;
        margin-top: 4px;
      }

      .intro-media img {
        height: 240px;
        border-radius: 24px;
      }

      .intro-stat,
      .proof-row {
        display: none;
      }

      .intro-list {
        margin-top: 22px;
        gap: 0;
        padding: 3px 16px;
        border: 1px solid var(--line);
        border-radius: 22px;
        background: rgba(255, 255, 255, 0.62);
      }

      .intro-item {
        display: grid;
        grid-template-columns: 26px 1fr;
        gap: 12px;
        padding: 15px 0;
        border: 0;
        border-bottom: 1px solid var(--line);
        border-radius: 0;
        background: transparent;
        box-shadow: none;
      }

      .intro-item:last-child {
        border-bottom: 0;
      }

      .intro-item .check {
        width: 22px;
        min-width: 22px;
        height: 22px;
        margin-top: 2px;
        font-size: 0.7rem;
      }

      .intro-item strong {
        display: block;
        margin-bottom: 3px;
        font-size: 0.96rem;
        line-height: 1.3;
      }

      .intro-item p {
        margin-top: 2px;
        font-size: 0.92rem;
        line-height: 1.46;
      }

      .intro-media {
        margin-top: 18px;
      }

      .visit-grid {
        display: block;
      }

      .visit-card {
        padding: 0;
      }

      .visit-card .section-lead {
        margin-bottom: 20px;
      }

      .visit-steps {
        gap: 0;
        margin-top: 18px;
        border-top: 1px solid var(--line);
      }

      .visit-step {
        grid-template-columns: 32px 1fr;
        gap: 12px;
        padding: 14px 0;
      }

      .visit-step::before {
        width: 32px;
        height: 32px;
        font-size: 0.85rem;
      }

      .visit-step strong {
        margin-bottom: 0;
        font-size: 0.96rem;
      }

      .visit-step p {
        display: none;
      }

      .visit-card > div[style] {
        display: grid !important;
        gap: 10px !important;
        margin-top: 18px !important;
      }

      .visit-card > div[style] .btn {
        width: 100%;
        justify-content: center;
      }

      .visit-image {
        display: block;
        margin-top: 24px;
      }

      .visit-image img {
        border-radius: 24px;
        aspect-ratio: 1.08 / 1;
      }

      .visit-note {
        position: static;
        margin: 12px 0 0;
        padding: 16px;
        border-radius: 18px;
        font-size: 0.88rem;
        line-height: 1.45;
      }

      .path-grid {
        gap: 12px;
        margin-bottom: 0;
      }

      .path-card {
        padding: 22px;
        border-radius: 22px;
      }

      .path-card .icon {
        width: 38px;
        height: 38px;
        border-radius: 13px;
      }

      .path-card h3 {
        margin: 12px 0 8px;
        font-size: 1.08rem;
      }

      .path-card p {
        margin-bottom: 0;
        font-size: 0.92rem;
        line-height: 1.48;
      }

      .path-card .btn,
      .method-box {
        display: none;
      }

      .pricing-layout {
        gap: 14px;
        margin-top: 26px;
      }

      .price-feature {
        padding: 24px 22px;
        border-radius: 24px;
        min-height: auto;
      }

      .price-kicker {
        margin-bottom: 14px;
      }

      .price-feature h3 {
        margin-bottom: 8px;
        font-size: 1.65rem;
      }

      .price-feature p {
        display: none;
      }

      .price-value {
        display: flex;
        align-items: baseline;
        gap: 12px;
        margin: 18px 0 18px;
        padding-top: 0;
      }

      .price-value strong {
        font-size: 2.75rem;
      }

      .price-value span {
        margin-top: 0;
      }

      .price-feature .btn {
        width: 100%;
        justify-content: center;
      }

      .price-focus-grid {
        gap: 12px;
      }

      .price-focus-card {
        display: grid;
        grid-template-columns: 1fr auto;
        gap: 4px 12px;
        align-items: baseline;
        padding: 18px;
        border-radius: 20px;
      }

      .price-focus-card span {
        grid-column: 1;
        margin-bottom: 2px;
        font-size: 0.72rem;
      }

      .price-focus-card strong {
        grid-column: 2;
        grid-row: 1;
        margin-bottom: 0;
        font-size: 1.8rem;
        text-align: right;
      }

      .price-focus-card p {
        grid-column: 1 / -1;
        margin: 0;
        font-size: 0.86rem;
        line-height: 1.35;
      }

      .price-compact-list {
        padding: 6px 18px;
        border-radius: 20px;
      }

      .price-compact-row {
        grid-template-columns: 1fr auto;
        gap: 12px;
        padding: 16px 0;
      }

      .price-compact-row strong {
        font-size: 0.96rem;
      }

      .price-compact-row span {
        font-size: 0.84rem;
        line-height: 1.35;
      }

      .price-compact-row b {
        font-size: 1rem;
      }

      .pricing-note {
        padding: 16px 0;
        font-size: 0.84rem;
        line-height: 1.45;
      }

      .faq-grid {
        display: block;
      }

      .faq .section-lead {
        display: none;
      }

      .faq-list {
        gap: 10px;
      }

      .testimonials-grid {
        gap: 14px;
      }

      .testimonial-card {
        padding: 22px;
        border-radius: 22px;
      }

      .testimonial-card p {
        margin-bottom: 18px;
        font-size: 0.93rem;
        line-height: 1.58;
      }

      .faq-question {
        padding: 16px;
        font-size: 0.94rem;
      }

      .faq-answer {
        padding: 0 16px 16px;
        font-size: 0.9rem;
        line-height: 1.55;
      }

      .cta {
        padding-bottom: 42px;
      }

      .cta-box {
        gap: 18px;
        padding: 24px 22px;
        border-radius: 26px;
        background:
          linear-gradient(145deg, rgba(6, 24, 74, 0.96), rgba(7, 145, 166, 0.90)),
          url("https://images.unsplash.com/photo-1637245048732-adf1a547835e?auto=format&fit=crop&w=1400&q=80") center/cover;
      }

      .cta-copy h2 {
        margin-bottom: 12px;
        font-size: clamp(2rem, 9vw, 2.5rem);
      }

      .cta-copy p {
        margin-bottom: 18px;
        font-size: 0.98rem;
        line-height: 1.55;
      }

      .cta-actions {
        display: grid;
        gap: 10px;
        margin-bottom: 0;
      }

      .cta-actions .btn {
        width: 100%;
        justify-content: center;
      }

      .contact-card,
      .contact-form {
        padding: 22px 18px;
        border-radius: 22px;
      }

      .contact-form {
        order: 2;
      }

      .contact-card {
        order: 3;
      }

      .contact-card h3,
      .contact-form h3 {
        margin-bottom: 16px;
        font-size: 1.12rem;
      }

      .form-grid {
        grid-template-columns: 1fr;
        gap: 12px;
      }

      .field input,
      .field textarea,
      .field select {
        min-height: 48px;
        padding: 12px 14px;
        border-radius: 14px;
        font-size: 1rem;
      }

      .field textarea {
        min-height: 104px;
      }

      .form-note {
        margin: 10px 0 14px;
        font-size: 0.82rem;
      }

      .contact-list li {
        padding: 13px 0;
      }

      .contact-card iframe {
        display: none;
      }

      .footer {
        padding: 34px 0 24px;
      }

      .footer-grid {
        display: grid;
        gap: 22px;
        margin-bottom: 22px;
      }

      .footer-grid > div:nth-child(2),
      .footer-grid > div:nth-child(3) {
        display: none;
      }

      .footer p,
      .footer a,
      .footer li {
        font-size: 0.9rem;
      }

      .footer-bottom {
        display: grid;
        gap: 8px;
        font-size: 0.82rem;
      }
    }

    @media (max-width: 380px) {
      .container {
        width: calc(100% - 32px);
      }

      .hero-title {
        font-size: 2.1rem;
      }

      .hero-assurances li {
        flex-basis: 100%;
      }

      .price-compact-row {
        grid-template-columns: 1fr;
      }
    }

  

    /* Podstrony: zachowanie oryginalnego wyglądu, ale z normalnym menu stron */
    .nav-item {
      position: relative;
    }

    .has-dropdown > a {
      align-items: center;
      gap: 6px;
    }

    .nav-caret {
      display: inline-block;
      color: var(--muted);
      font-size: 0.75rem;
      line-height: 1;
      transform: translateY(1px);
    }

    .dropdown-menu {
      position: absolute;
      top: calc(100% + 10px);
      left: 50%;
      z-index: 40;
      display: grid;
      min-width: 270px;
      padding: 12px;
      border: 1px solid var(--line);
      border-radius: 22px;
      background: rgba(255, 255, 255, 0.98);
      box-shadow: var(--shadow);
      list-style: none;
      opacity: 0;
      visibility: hidden;
      transform: translate(-50%, 8px);
      transition: opacity 0.18s ease, visibility 0.18s ease, transform 0.18s ease;
      backdrop-filter: blur(18px);
    }

    .has-dropdown:hover .dropdown-menu,
    .has-dropdown:focus-within .dropdown-menu {
      opacity: 1;
      visibility: visible;
      transform: translate(-50%, 0);
    }

    .dropdown-menu a {
      display: flex;
      width: 100%;
      padding: 11px 12px;
      border-radius: 14px;
      color: var(--navy-soft);
      font-size: 0.9rem;
      line-height: 1.3;
      white-space: normal;
    }

    .dropdown-menu a:hover,
    .dropdown-menu a:focus-visible,
    .dropdown-menu a.is-active {
      background: rgba(8, 182, 200, 0.09);
      color: var(--navy);
    }

    .dropdown-menu a::after {
      display: none;
    }

    .page-hero {
      padding: 82px 0 70px;
    }

    .page-hero .hero-grid {
      grid-template-columns: 1fr 0.78fr;
    }

    .breadcrumb {
      display: inline-flex;
      flex-wrap: wrap;
      gap: 7px;
      margin-bottom: 18px;
      color: var(--muted);
      font-size: 0.88rem;
      font-weight: 800;
    }

    .breadcrumb a {
      color: var(--cyan-dark);
    }

    .breadcrumb span {
      color: var(--navy-soft);
    }

    .page-section {
      padding: 92px 0;
      background: var(--white);
    }

    .page-section.alt {
      background: linear-gradient(180deg, #ffffff, #f7fbff);
    }

    .page-section.tint {
      background:
        radial-gradient(circle at 14% 20%, rgba(8, 182, 200, 0.12), transparent 28%),
        radial-gradient(circle at 86% 65%, rgba(255, 102, 143, 0.12), transparent 28%),
        #f8fbff;
    }

    .content-grid {
      display: grid;
      grid-template-columns: 0.95fr 1.05fr;
      gap: 46px;
      align-items: start;
    }

    .content-grid.reverse {
      grid-template-columns: 1.05fr 0.95fr;
    }

    .copy-block {
      max-width: 780px;
    }

    .copy-block p + p {
      margin-top: 16px;
    }

    .feature-grid {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 20px;
      margin-top: 34px;
    }

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

    .feature-card {
      padding: 28px;
      border: 1px solid var(--line);
      border-radius: 30px;
      background: #fbfdff;
      box-shadow: var(--shadow-soft);
    }

    .feature-card h3 {
      margin: 14px 0 10px;
      color: var(--navy);
      font-size: 1.22rem;
      line-height: 1.25;
    }

    .feature-card p,
    .feature-card li {
      color: var(--muted);
      font-size: 0.96rem;
      line-height: 1.65;
    }

    .feature-card ul,
    .clean-list {
      display: grid;
      gap: 12px;
      margin-top: 16px;
      list-style: none;
    }

    .clean-list li {
      display: flex;
      gap: 10px;
      align-items: flex-start;
      color: var(--navy-soft);
      font-weight: 800;
      line-height: 1.55;
    }

    .steps-panel {
      padding: 34px;
      border: 1px solid var(--line);
      border-radius: 34px;
      background: var(--gradient-soft), var(--white);
      box-shadow: var(--shadow);
    }

    .mini-price {
      display: inline-flex;
      align-items: baseline;
      gap: 10px;
      margin-top: 18px;
      padding: 12px 16px;
      border-radius: 999px;
      background: rgba(8, 182, 200, 0.09);
      color: var(--navy);
      font-weight: 900;
    }

    .mini-price strong {
      color: var(--cyan-dark);
      font-size: 1.2rem;
    }

    .subpage-media {
      overflow: hidden;
      border: 10px solid rgba(255, 255, 255, 0.85);
      border-radius: 36px;
      background: #fff;
      box-shadow: var(--shadow);
    }

    .subpage-media img {
      width: 100%;
      aspect-ratio: 4 / 4.2;
      object-fit: cover;
    }

    .cta-mini {
      margin-top: 30px;
      display: flex;
      gap: 14px;
      flex-wrap: wrap;
    }

    .inline-note {
      margin-top: 22px;
      padding: 20px;
      border: 1px solid rgba(255, 102, 143, 0.18);
      border-radius: 22px;
      background: rgba(255, 102, 143, 0.07);
      color: var(--navy-soft);
      font-weight: 800;
      line-height: 1.6;
    }

    .table-like {
      display: grid;
      gap: 0;
      margin-top: 28px;
      overflow: hidden;
      border: 1px solid var(--line);
      border-radius: 30px;
      background: var(--white);
      box-shadow: var(--shadow-soft);
    }

    .table-row {
      display: grid;
      grid-template-columns: 1fr auto;
      gap: 22px;
      align-items: center;
      padding: 22px 26px;
      border-bottom: 1px solid var(--line);
    }

    .table-row:last-child {
      border-bottom: 0;
    }

    .table-row strong {
      display: block;
      color: var(--navy);
      font-size: 1.05rem;
    }

    .table-row span {
      display: block;
      margin-top: 4px;
      color: var(--muted);
      font-weight: 700;
    }

    .table-row b {
      color: var(--navy);
      font-size: 1.22rem;
      white-space: nowrap;
    }

    @media (max-width: 1100px) {
      .dropdown-menu {
        position: static;
        min-width: 0;
        padding: 2px 0 0 18px;
        border: 0;
        border-radius: 0;
        background: transparent;
        box-shadow: none;
        opacity: 1;
        visibility: visible;
        transform: none;
      }

      .nav-links.open .has-dropdown > a {
        color: var(--navy);
      }

      .nav-links.open .dropdown-menu a {
        min-height: 40px;
        padding: 8px 12px;
        font-size: 0.86rem;
      }

      .content-grid,
      .content-grid.reverse,
      .page-hero .hero-grid,
      .feature-grid,
      .feature-grid.two {
        grid-template-columns: 1fr;
      }
    }


    @media (min-width: 981px) and (max-width: 1100px) {
      .dropdown-menu {
        position: absolute;
        top: calc(100% + 10px);
        left: 50%;
        min-width: 270px;
        padding: 12px;
        border: 1px solid var(--line);
        border-radius: 22px;
        background: rgba(255, 255, 255, 0.98);
        box-shadow: var(--shadow);
        opacity: 0;
        visibility: hidden;
        transform: translate(-50%, 8px);
      }

      .has-dropdown:hover .dropdown-menu,
      .has-dropdown:focus-within .dropdown-menu {
        opacity: 1;
        visibility: visible;
        transform: translate(-50%, 0);
      }
    }

    @media (max-width: 720px) {
      .page-hero {
        padding: 34px 0 54px;
      }

      .page-section {
        padding: 64px 0;
      }

      .breadcrumb {
        font-size: 0.78rem;
      }

      .feature-grid {
        gap: 12px;
        margin-top: 24px;
      }

      .feature-card,
      .steps-panel {
        padding: 22px;
        border-radius: 22px;
      }

      .feature-card .icon {
        width: 40px;
        height: 40px;
        border-radius: 14px;
      }

      .cta-mini {
        display: grid;
        gap: 10px;
      }

      .cta-mini .btn {
        width: 100%;
      }

      .table-row {
        grid-template-columns: 1fr;
        gap: 8px;
        padding: 18px;
      }

      .table-row b {
        font-size: 1.05rem;
      }
    }


/* WordPress integration */
.admin-bar .topbar {
  top: 32px;
}

@media (max-width: 782px) {
  .admin-bar .topbar {
    top: 46px;
  }
}

.nav-links .current-menu-item > a,
.nav-links .current_page_item > a,
.nav-links .current-menu-ancestor > a,
.nav-links .current_page_ancestor > a {
  color: var(--navy);
}

.nav-links .current-menu-item > a::after,
.nav-links .current_page_item > a::after,
.nav-links .current-menu-ancestor > a::after,
.nav-links .current_page_ancestor > a::after {
  width: 100%;
}

.nav-links .sub-menu {
  list-style: none;
}

.menu-item-has-children {
  position: relative;
}

.menu-item-has-children > .sub-menu {
  position: absolute;
  top: calc(100% + 16px);
  left: 0;
  z-index: 20;
  min-width: 280px;
  padding: 12px;
  border: 1px solid rgba(230, 235, 245, 0.95);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--shadow-soft);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s ease;
}

.menu-item-has-children:hover > .sub-menu,
.menu-item-has-children:focus-within > .sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.menu-item-has-children > .sub-menu a {
  display: flex;
  padding: 10px 12px;
  border-radius: 14px;
  color: var(--text);
  white-space: normal;
}

.menu-item-has-children > .sub-menu a:hover,
.menu-item-has-children > .sub-menu a:focus-visible {
  background: rgba(8, 182, 200, 0.1);
}

.form-feedback {
  margin: 0 0 18px;
  padding: 12px 14px;
  border-radius: 16px;
  font-weight: 800;
}

.form-feedback.success {
  background: rgba(106, 204, 201, 0.16);
  color: var(--cyan-dark);
}

.form-feedback.error {
  background: rgba(255, 102, 143, 0.14);
  color: #b8325a;
}

.subpage-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.7fr);
  gap: 34px;
  align-items: center;
}

.text-link {
  display: inline-flex;
  margin-top: 18px;
  color: var(--cyan-dark);
  font-weight: 900;
}

@media (max-width: 1100px) {
  .menu-item-has-children > .sub-menu {
    position: static;
    min-width: 0;
    padding: 6px 0 0 14px;
    border: 0;
    background: transparent;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    transform: none;
  }

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

/* Keep the contact form visible while scrolling through its CTA section. */
@media (min-width: 1101px) {
  .cta-box {
    overflow: visible;
  }

  .cta-box > .contact-form {
    position: sticky;
    top: 128px;
    align-self: start;
    max-height: calc(100vh - 156px);
    overflow-y: auto;
    overscroll-behavior: contain;
  }
}

@media (max-width: 1100px) {
  .cta-box > .contact-form {
    position: relative;
    top: auto;
    max-height: none;
    overflow: visible;
  }
}

.therapy-archive-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  margin-top: 34px;
}

.therapy-archive-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 30px;
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.therapy-archive-media {
  display: block;
  overflow: hidden;
  aspect-ratio: 1.35 / 1;
  background: #eef8fb;
}

.therapy-archive-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.therapy-archive-card:hover .therapy-archive-media img,
.therapy-archive-card:focus-within .therapy-archive-media img {
  transform: scale(1.045);
}

.therapy-archive-body {
  display: grid;
  gap: 12px;
  padding: 24px;
}

.therapy-archive-pill {
  display: inline-flex;
  width: fit-content;
  padding: 7px 11px;
  border-radius: 999px;
  background: rgba(8, 182, 200, 0.10);
  color: var(--cyan-dark);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.therapy-archive-body h3 {
  color: var(--navy);
  font-size: 1.24rem;
  line-height: 1.25;
}

.therapy-archive-body p {
  color: var(--muted);
  font-size: 0.96rem;
  line-height: 1.62;
}

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

@media (max-width: 720px) {
  .therapy-archive-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .therapy-archive-body {
    padding: 20px;
  }
}

.floating-badge-icon::before {
  content: "";
  display: block;
  width: 17px;
  height: 16px;
  background: var(--white);
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 21.35l-1.45-1.32C5.4 15.36 2 12.28 2 8.5 2 5.42 4.42 3 7.5 3c1.74 0 3.41.81 4.5 2.09C13.09 3.81 14.76 3 16.5 3 19.58 3 22 5.42 22 8.5c0 3.78-3.4 6.86-8.55 11.54L12 21.35z'/%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 21.35l-1.45-1.32C5.4 15.36 2 12.28 2 8.5 2 5.42 4.42 3 7.5 3c1.74 0 3.41.81 4.5 2.09C13.09 3.81 14.76 3 16.5 3 19.58 3 22 5.42 22 8.5c0 3.78-3.4 6.86-8.55 11.54L12 21.35z'/%3E%3C/svg%3E") center / contain no-repeat;
}
/* Mobile menu needs its own scroll area because dropdown groups are expanded. */
@media (max-width: 1100px) {
  .nav-links.open {
    align-content: start;
    max-height: calc(100vh - 118px);
    max-height: calc(100dvh - 118px);
    overflow-y: auto;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
  }

  .admin-bar .nav-links.open {
    max-height: calc(100vh - 150px);
    max-height: calc(100dvh - 150px);
  }
}

@media (max-width: 782px) {
  .admin-bar .nav-links.open {
    max-height: calc(100vh - 164px);
    max-height: calc(100dvh - 164px);
  }
}

/* Keep every subpage hero visually aligned with the home hero pattern. */
.page-hero {
  padding: clamp(58px, 6vw, 82px) 0 clamp(68px, 7vw, 88px);
}

.page-hero .hero-grid {
  grid-template-columns: minmax(0, 1.04fr) minmax(380px, 0.82fr);
  gap: clamp(62px, 8vw, 108px);
  align-items: center;
}

.page-hero .breadcrumb,
.page-hero .local-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  max-width: 100%;
  margin-bottom: 18px;
  padding: 9px 14px;
  border: 1px solid rgba(8, 182, 200, 0.20);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  color: var(--cyan-dark);
  font-size: 0.88rem;
  font-weight: 900;
  line-height: 1.25;
  box-shadow: 0 10px 25px rgba(7, 26, 75, 0.05);
}

.page-hero .breadcrumb::before,
.page-hero .local-pill::before {
  content: "";
  width: 7px;
  height: 7px;
  flex: 0 0 auto;
  border-radius: 999px;
  background: var(--pink);
  box-shadow: 0 0 0 5px rgba(255, 102, 143, 0.12);
}

.page-hero .breadcrumb a,
.page-hero .breadcrumb span {
  color: inherit;
}

.page-hero .breadcrumb span:first-of-type {
  color: rgba(5, 137, 155, 0.48);
}

.page-hero .hero-title {
  max-width: 690px;
  margin-bottom: 24px;
  font-size: clamp(3.05rem, 4.75vw, 4.35rem);
  line-height: 1.05;
}

.page-hero .hero-copy > p {
  max-width: 660px;
  margin-bottom: 28px;
  color: #5d6a89;
  font-size: 1.12rem;
  line-height: 1.72;
}

.page-hero .hero-actions {
  margin-bottom: 0;
}

.page-hero .hero-assurances {
  display: none;
}

.page-hero .hero-card {
  border-width: 9px;
  border-radius: 34px;
  aspect-ratio: 4 / 4.55;
}

.page-hero .floating-badge {
  top: 22px;
  right: 18px;
  padding: 12px 16px;
  box-shadow: 0 16px 36px rgba(7, 26, 75, 0.14);
}

@media (max-width: 1100px) {
  .page-hero .hero-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

@media (max-width: 720px) {
  .page-hero {
    padding: 32px 0 54px;
  }

  .page-hero .breadcrumb,
  .page-hero .local-pill {
    gap: 7px;
    margin-bottom: 14px;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    font-size: 0.84rem;
    line-height: 1.35;
  }

  .page-hero .hero-title {
    max-width: 10.5em;
    margin: 18px 0 16px;
    font-size: clamp(2.32rem, 11vw, 3.15rem);
    line-height: 1.04;
    letter-spacing: -0.03em;
  }

  .page-hero .hero-copy > p {
    margin-bottom: 20px;
    font-size: 1rem;
    line-height: 1.58;
  }

  .page-hero .hero-card {
    height: auto;
    border-width: 7px;
    border-radius: 28px;
    aspect-ratio: 1.05 / 1;
  }

  .page-hero .floating-badge {
    position: static;
    width: 100%;
    margin-top: 12px;
    justify-content: center;
    font-size: 0.9rem;
  }
}
