  *,
  *::before,
  *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
  }

  :root {
    --brand: #0089d0;
    --brand-dark: #006faa;
    --brand-light: #e6f4fb;
    --white: #ffffff;
    --gray-50: #f8f9fa;
    --gray-100: #f1f3f5;
    --gray-200: #e9ecef;
    --gray-300: #dee2e6;
    --gray-500: #adb5bd;
    --gray-700: #495057;
    --gray-900: #1a1d20;
    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 22px;
    --radius-xl: 32px;
    --shadow-sm: 0 2px 12px rgba(0, 137, 208, 0.08);
    --shadow-md: 0 8px 32px rgba(0, 137, 208, 0.12);
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --max-w: 1240px;
  }

  html {
    scroll-behavior: auto;
  }

  body {
    font-family: 'Outfit', sans-serif;
    font-size: 18px;
    color: var(--gray-900);
    background: var(--white);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
  }

  /* ─── UTILITIES ─── */
  .container {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 2rem;
  }

  .section-label {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--brand);
    background: var(--brand-light);
    padding: 5px 14px;
    border-radius: 100px;
    margin-bottom: 1rem;
  }

  .section-title {
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    font-weight: 700;
    letter-spacing: -0.03em;
    line-height: 1.15;
    color: var(--gray-900);
    margin-bottom: 1rem;
  }

  .section-sub {
    font-size: 1.2rem;
    font-weight: 400;
    color: var(--gray-700);
    line-height: 1.5;
    max-width: 54ch;
  }

  .btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 13px 28px;
    border-radius: var(--radius-sm);
    font-family: 'Outfit', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    transition: all var(--transition);
    border: 2px solid transparent;
    white-space: nowrap;
  }

  .btn-primary {
    background: var(--brand);
    color: var(--white);
    border-color: var(--brand);
  }

  .btn-primary:hover {
    background: var(--brand-dark);
    border-color: var(--brand-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
  }

  .btn-primary:active {
    transform: scale(0.98);
  }

  .btn-outline {
    background: transparent;
    color: var(--brand);
    border-color: var(--brand);
  }

  .btn-outline:hover {
    background: var(--brand-light);
    transform: translateY(-2px);
  }

  .btn-outline:active {
    transform: scale(0.98);
  }

  .btn-ghost {
    background: rgba(255, 255, 255, 0.15);
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(8px);
  }

  .btn-ghost:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
  }

  /* ─── NAVBAR ─── */
  #navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(255, 255, 255, 0.98);
    border-bottom: 1px solid transparent;
    transition: border-color var(--transition), box-shadow var(--transition);
    padding: 0;
  }

  #navbar.scrolled {
    border-bottom-color: var(--gray-200);
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.06);
  }

  .nav-topbar {
    background: #E86F68;
    color: var(--white);
    font-size: 0.82rem;
    letter-spacing: 0.01em;
  }

  .nav-topbar .container {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    min-height: 34px;
    padding-top: 6px;
    padding-bottom: 6px;
  }

  .nav-back {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    transition: opacity var(--transition);
    white-space: nowrap;
  }

  .nav-back:hover {
    text-decoration: underline;
    text-underline-offset: 3px;
  }

  .nav-back-icon,
  .nav-back-icon svg {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
  }

  .nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
    gap: 2rem;
  }

  .nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    flex-shrink: 0;
  }

  .nav-logo-mark {
    width: 170px;
    height: 44px;
    background: transparent;
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .nav-logo-mark img {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }

  .nav-logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
  }

  .nav-logo-name {
    font-size: 1rem;
    font-weight: 700;
    color: var(--gray-900);
    letter-spacing: -0.02em;
  }

  .nav-logo-tagline {
    font-size: 0.7rem;
    font-weight: 400;
    color: var(--gray-500);
    letter-spacing: 0.04em;
  }

  .nav-links {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    list-style: none;
  }

  .nav-links a {
    display: block;
    padding: 8px 14px;
    border-radius: var(--radius-sm);
    font-size: 1.02rem;
    font-weight: 500;
    color: var(--gray-700);
    text-decoration: none;
    transition: all var(--transition);
    cursor: pointer;
  }

  .nav-links a:hover {
    color: var(--brand);
    background: var(--brand-light);
  }

  .nav-phone {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 0;
    border-radius: 0;
    font-size: 1.22rem;
    font-weight: 700;
    color: var(--brand);
    background: transparent;
    text-decoration: none;
    transition: all var(--transition);
    flex-shrink: 0;
  }

  .nav-phone:hover {
    color: var(--brand-dark);
    text-decoration: underline;
    text-underline-offset: 4px;
  }

  .nav-phone-icon,
  .nav-phone-icon svg {
    width: 16px;
    height: 16px;
  }

  .nav-hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 8px;
    background: none;
    border: none;
  }

  .nav-hamburger span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--gray-900);
    border-radius: 2px;
    transition: all var(--transition);
  }

  /* ─── HERO ─── */
  #hero {
    min-height: 100dvh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    overflow: hidden;
    position: relative;
  }

  .hero-left {
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding: 146px 5% 80px;
  }

  .hero-left-inner {
    max-width: 520px;
    width: 100%;
  }

  .hero-right {
    position: relative;
    background:
      linear-gradient(135deg, rgba(0, 80, 130, 0.88) 0%, rgba(0, 137, 208, 0.72) 60%, rgba(0, 30, 70, 0.82) 100%),
      url('../img/img-3.jpg') top center/cover no-repeat;
  }

  .hero-right::after {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Ccircle cx='30' cy='30' r='1'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
  }

  .hero-title {
    font-size: clamp(2.2rem, 3.8vw, 3.6rem);
    font-weight: 700;
    letter-spacing: -0.04em;
    line-height: 1.1;
    color: var(--gray-900);
    margin-bottom: 1.25rem;
  }

  .hero-title span {
    color: var(--brand);
    font-weight: 700;
  }

  .hero-sub {
    font-size: 1.2rem;
    font-weight: 400;
    color: var(--gray-700);
    line-height: 1.5;
    margin-bottom: 2.5rem;
    max-width: 52ch;
  }

  .hero-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
  }

  .hero-cta {
    padding: 16px 36px;
    font-size: 1.12rem;
  }


  /* ─── SEKCJA OGÓLNA ─── */
  .section {
    padding: 100px 0;
  }

  .section-alt {
    background: var(--gray-50);
  }

  .section-header {
    margin-bottom: 3.5rem;
  }

  .section-header.centered {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .section-header.centered .section-sub {
    text-align: center;
    max-width: 56ch;
  }

  /* ─── SPECJALIŚCI ─── */
  #specialists .specialists-slider {
    position: relative;
    margin-top: 3rem;
  }

  #specialists .specialists-swiper {
    padding: 0.25rem 0.25rem 0.75rem;
    border-radius: var(--radius-md);
  }

  #specialists .specialists-swiper .swiper-slide {
    height: auto;
  }

  #specialists .specialists-swiper .spec-card {
    height: 100%;
  }

  #specialists .specialists-swiper img {
    -webkit-user-drag: none;
    user-select: none;
  }

  #specialists .specialists-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.75rem;
    margin-top: 1.25rem;
  }

  #specialists .slider-btn {
    width: 44px;
    height: 44px;
    border-radius: 999px;
    border: 1px solid var(--gray-200);
    background: rgba(255, 255, 255, 0.9);
    box-shadow: var(--shadow-sm);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-900);
    cursor: pointer;
    transition: transform var(--transition), background var(--transition), opacity var(--transition);
    z-index: 2;
  }

  #specialists .slider-btn svg {
    width: 18px;
    height: 18px;
  }

  #specialists .slider-btn:hover {
    background: var(--white);
    transform: scale(1.03);
  }

  #specialists .slider-btn:active {
    transform: scale(0.98);
  }

  #specialists .slider-btn[disabled] {
    opacity: 0.35;
    cursor: default;
  }

  .spec-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-md);
    overflow: hidden;
  }

  .spec-card-img {
    width: 100%;
    aspect-ratio: 3/4;
    background: var(--gray-100);
    position: relative;
    overflow: hidden;
  }

  .spec-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(0.15);
  }

  .spec-card-img-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--gray-100), var(--brand-light));
  }

  .spec-card-img-placeholder svg {
    width: 64px;
    height: 64px;
    opacity: 0.35;
  }

  .spec-card-body {
    padding: 1rem 1.1rem 1.25rem;
  }

  .spec-card-name {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: 3px;
  }

  .spec-card-spec {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--brand);
    background: var(--brand-light);
    display: inline-block;
    padding: 3px 10px;
    border-radius: 100px;
  }

  /* ─── ZALETY ─── */
  #why .why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
    margin-top: 3rem;
  }

  .why-box {
    padding: 1.75rem;
    border-radius: var(--radius-md);
    background: var(--white);
    border: 1px solid var(--gray-200);
    transition: all var(--transition);
    position: relative;
    overflow: hidden;
  }

  .why-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--brand);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transition);
    border-radius: 2px 2px 0 0;
  }

  .why-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-sm);
    background: var(--brand-light);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    color: var(--brand);
  }

  .why-icon svg,
  .why-icon i svg {
    width: 24px;
    height: 24px;
  }

  .why-box h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: 0.5rem;
  }

  .why-box p {
    font-size: 1.1rem;
    color: var(--gray-700);
    line-height: 1.6;
  }

  /* ─── DIAGNOSTYKA ─── */
  #diagnostics .diag-wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
  }

  .diag-visual {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    aspect-ratio: 1/1;
    background: var(--gray-100);
  }

  .diag-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
  }

  .diag-visual-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--brand-light), var(--gray-100));
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 280px;
  }

  .diag-visual-placeholder svg {
    width: 80px;
    height: 80px;
    color: var(--brand);
    opacity: 0.4;
  }

  .diag-badge {
    position: absolute;
    bottom: 1.5rem;
    left: 1.5rem;
    background: var(--white);
    border-radius: var(--radius-sm);
    padding: 0.75rem 1rem;
    box-shadow: var(--shadow-md);
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--gray-900);
  }

  .diag-badge-icon {
    width: 32px;
    height: 32px;
    background: var(--brand);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .diag-badge-icon svg {
    width: 18px;
    height: 18px;
  }

  .diag-stat {
    color: var(--brand);
    font-size: 1.1rem;
    font-weight: 700;
  }

  .diag-text h2 {
    margin-bottom: 2rem;
  }

  .diag-text p {
    margin-bottom: 1rem;
  }

  .diag-points {
    list-style: none;
    padding: 0;
    margin: 1.25rem 0 0;
    display: grid;
    gap: 1rem;
    max-width: 58ch;
    counter-reset: diag-point;
  }

  .diag-points li {
    font-size: 1.15rem;
    font-weight: 400;
    color: var(--gray-700);
    line-height: 1.7;
    position: relative;
    padding-left: 2.75rem;
  }

  .diag-points li::before {
    counter-increment: diag-point;
    content: counter(diag-point);
    width: 26px;
    height: 26px;
    border-radius: 999px;
    background: var(--brand);
    color: var(--white);
    font-weight: 700;
    font-size: 0.85rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    left: 0;
    top: 0.15em;
  }

  .diag-points strong {
    color: var(--gray-900);
    font-weight: 600;
  }

  .diag-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1.5rem;
  }

  .diag-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    border-radius: 100px;
    background: var(--brand-light);
    color: var(--brand-dark);
    font-size: 0.82rem;
    font-weight: 500;
  }

  .diag-pill svg {
    width: 13px;
    height: 13px;
  }

  /* ─── KOMPLEKSOWA OPIEKA ─── */
  #comprehensive {
    background: linear-gradient(160deg, #003d6b 0%, #0089d0 60%, #005e9c 100%);
    position: relative;
    overflow: hidden;
  }

  #comprehensive::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 700px;
    height: 700px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.04);
    pointer-events: none;
  }

  #comprehensive::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.03);
    pointer-events: none;
  }

  #comprehensive .section-label {
    background: rgba(255, 255, 255, 0.15);
    color: rgba(255, 255, 255, 0.9);
  }

  #comprehensive .section-title {
    color: var(--white);
  }

  #comprehensive .section-sub {
    color: rgba(255, 255, 255, 0.75);
  }

  .comp-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    z-index: 1;
  }

  .comp-title {
    margin-bottom: 0;
  }

  .comp-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    margin-top: 3rem;
    width: 100%;
    position: relative;
    z-index: 1;
  }

  .comp-cta {
    margin-top: 2.5rem;
    display: flex;
    justify-content: center;
  }

  .comp-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.85rem;
    padding: 1.25rem 1.5rem;
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.12);
    transition: all var(--transition);
    backdrop-filter: blur(4px);
  }

  .comp-item-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }

  .comp-item-icon svg,
  .comp-item-icon i svg {
    width: 20px;
    height: 20px;
    color: var(--white);
  }

  .comp-item h4 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--white);
    margin: 0;
  }

  /* ─── CENNIK ─── */
  #pricing {
    background: var(--white);
    border-top: 1px solid var(--gray-200);
    border-bottom: 1px solid var(--gray-200);
    padding: 80px 0;
  }

  .pricing-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
  }

  .pricing-text h2 {
    margin-bottom: 0.5rem;
  }

  .pricing-text p {
    font-size: 1.05rem;
    color: var(--gray-700);
    max-width: 44ch;
  }

  /* ─── CHIRURGIA PLASTYCZNA ─── */
  #plasticsurgery {
    background: var(--gray-50);
  }

  .ps-wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
  }

  .ps-content {}

  .ps-logo-area {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 1.5rem;
    width: fit-content;
  }

  .ps-logo-mark {
    width: 230px;
    height: 60px;
    border-radius: 0;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .ps-logo-mark img {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }

  .ps-logo-text h3 {
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--gray-900);
  }

  .ps-logo-text span {
    font-size: 0.75rem;
    color: var(--gray-500);
  }

  .ps-points {
    list-style: none;
    padding: 0;
    margin: 1.25rem 0 0;
    display: grid;
    gap: 0.75rem;
    max-width: 60ch;
  }

  .ps-points li {
    display: flex;
    align-items: flex-start;
    gap: 0.7rem;
    font-size: 1.08rem;
    font-weight: 400;
    color: var(--gray-700);
    line-height: 1.7;
  }

  .ps-check,
  .ps-check svg {
    width: 18px;
    height: 18px;
    margin-top: 0.25em;
    color: var(--brand);
    flex-shrink: 0;
  }

  .ps-note {
    margin-top: 1.25rem;
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--gray-700);
    max-width: 60ch;
  }

  .ps-cta {
    margin-top: 1rem;
  }

  .ps-visual-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .ps-visual {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    aspect-ratio: 1/1;
    background: var(--gray-200);
  }

  .ps-logo-area--below {
    margin: 1.25rem auto 0;
  }

  .ps-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
  }

  .ps-visual-placeholder {
    width: 100%;
    height: 100%;
    min-height: 380px;
    background: linear-gradient(135deg, #f5f3ff, #ede9fe);
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .ps-visual-placeholder svg {
    width: 80px;
    height: 80px;
    color: #8b5cf6;
    opacity: 0.35;
  }

  .btn-purple {
    background: linear-gradient(135deg, var(--brand), var(--brand-dark));
    color: var(--white);
    border-color: transparent;
  }

  .btn-purple:hover {
    background: linear-gradient(135deg, var(--brand-dark), #005b8e);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 137, 208, 0.25);
  }

  /* ─── KONTAKT ─── */
  #contact {
    background: var(--white);
  }

  .contact-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    align-items: start;
  }

  .contact-info {}

  .contact-details {
    margin-top: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }

  .contact-row {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
  }

  .contact-row-icon {
    width: 40px;
    height: 40px;
    border-radius: var(--radius-sm);
    background: var(--brand-light);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--brand);
    margin-top: 2px;
  }

  .contact-row-icon svg,
  .contact-row-icon i svg {
    width: 20px;
    height: 20px;
  }

  .contact-item-label {
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--gray-500);
    margin-bottom: 2px;
  }

  .contact-item-value {
    font-size: 1.05rem;
    font-weight: 500;
    color: var(--gray-900);
    text-decoration: none;
  }

  .contact-item-value:hover {
    color: var(--brand);
  }

  .contact-map {
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--gray-200);
    height: 100%;
    min-height: 380px;
    background: var(--gray-100);
    position: relative;
  }

  .contact-map iframe {
    width: 100%;
    height: 100%;
    border: none;
    min-height: 380px;
  }

  .contact-map-placeholder {
    width: 100%;
    height: 100%;
    min-height: 380px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    background: var(--gray-100);
    color: var(--gray-500);
    font-size: 0.9rem;
  }

  .contact-map-placeholder svg {
    width: 48px;
    height: 48px;
    opacity: 0.4;
  }

  .contact-cta {
    margin-top: 2rem;
  }

  /* ─── FOOTER ─── */
  footer {
    background: var(--gray-900);
    padding: 2.5rem 0;
    text-align: center;
  }

  .footer-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
  }

  .footer-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
  }

  .footer-logo-mark {
    width: 170px;
    height: 40px;
    background: transparent;
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .footer-logo-mark img {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }

  .footer-logo span {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--white);
  }

  .footer-text {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.4);
  }

  /* ─── RESPONSIVE ─── */
  @media (max-width: 960px) {
    .nav-links {
      display: none;
    }

    .nav-hamburger {
      display: none;
    }

    #hero {
      grid-template-columns: 1fr;
    }

    .hero-right {
      grid-row: 2;
      min-height: 42vh;
    }

    .hero-left {
      grid-row: 1;
      justify-content: flex-start;
      margin-top: 0;
      padding: 144px 2rem 36px;
      min-height: auto;
      background: var(--white);
    }

    .hero-left-inner {
      max-width: 100%;
    }

    .hero-title {
      font-size: clamp(2.6rem, 6vw, 3.4rem);
      line-height: 1.08;
    }

    #diagnostics .diag-wrap,
    .ps-wrap,
    .contact-grid {
      grid-template-columns: 1fr;
      gap: 2.5rem;
    }

    /* 1-kolumnowe: najpierw zdjęcie, potem tekst */
    #plasticsurgery .ps-visual {
      grid-row: 1;
    }

    #plasticsurgery .ps-content {
      grid-row: 2;
    }

    #contact .contact-map {
      grid-row: 1;
    }

    #contact .contact-info {
      grid-row: 2;
    }

    .comp-grid {
      grid-template-columns: repeat(2, 1fr);
    }

    .why-grid {
      grid-template-columns: repeat(2, 1fr);
    }

    .ps-visual-placeholder {
      min-height: 220px;
    }
  }

  @media (max-width: 640px) {
    .section {
      padding: 70px 0;
    }

    .container {
      padding: 0 1.25rem;
    }

    .hero-left {
      margin-top: 0;
      padding: 130px 1.25rem 28px;
      min-height: auto;
    }

    .nav-topbar {
      font-size: 0.78rem;
    }

    .nav-topbar .container {
      min-height: 32px;
      padding-left: 1.25rem;
      padding-right: 1.25rem;
    }

    .hero-right {
      min-height: 46vh;
    }

    .hero-title {
      font-size: clamp(2.5rem, 9vw, 3.05rem);
    }

    #specialists .specialists-swiper {
      padding: 0.1rem 0.1rem 0.6rem;
    }

    #specialists .spec-card-img {
      aspect-ratio: 4/5;
    }

    #specialists .specialists-nav {
      display: none;
    }

    .why-grid {
      grid-template-columns: 1fr !important;
    }

    .comp-grid {
      grid-template-columns: 1fr;
    }

    .ps-procedures {
      grid-template-columns: 1fr;
    }

    .pricing-inner {
      flex-direction: column;
      align-items: flex-start;
    }

    .footer-inner {
      flex-direction: column;
    }
  }

  /* ─── ANIMATIONS ─── */
  .fade-up {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease, transform 0.6s ease;
  }

  .fade-up.visible {
    opacity: 1;
    transform: translateY(0);
  }

  .fade-up-delay-1 {
    transition-delay: 0.1s;
  }

  .fade-up-delay-2 {
    transition-delay: 0.2s;
  }

  .fade-up-delay-3 {
    transition-delay: 0.3s;
  }