  :root {
    --teal-900: #0a4650;
    --teal-700: #0e6b7a;
    --teal-500: #17a2b8;
    --teal-100: #d6eef3;
    --teal-50:  #f0f9fb;
    --ink: #0c1e22;
    --ink-soft: #3a4b4f;
    --muted: #6b7c80;
    --paper: #fbfaf6;
    --cream: #f5efe4;
    --accent: #c97b4e;
    --accent-light: #e9c8a8;
    --line: rgba(12, 30, 34, 0.1);
    --serif: 'Fraunces', Georgia, serif;
    --sans: 'Inter', -apple-system, sans-serif;
  }

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

  html { scroll-behavior: smooth; }

  body {
    font-family: var(--sans);
    color: var(--ink);
    background: var(--paper);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
  }

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

  /* ====== LAYOUT ====== */
  .container { max-width: 1240px; margin: 0 auto; padding: 0 24px; }
  .container-narrow { max-width: 900px; margin: 0 auto; padding: 0 24px; }

  /* ====== NAV ====== */
  .nav {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(251, 250, 246, 0.92);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--line);
  }
  .nav-inner {
    max-width: 1240px;
    margin: 0 auto;
    padding: 18px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .brand {
    font-family: var(--serif);
    font-weight: 600;
    font-size: 1.4rem;
    color: var(--teal-900);
    letter-spacing: -0.01em;
    display: flex;
    align-items: baseline;
    gap: 6px;
  }
  .brand-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--teal-700);
    display: inline-block;
  }
  .brand-sub {
    font-family: var(--sans);
    font-size: 0.7rem;
    font-weight: 500;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: 0.12em;
  }
  .nav-links {
    display: flex;
    gap: 36px;
    align-items: center;
    font-size: 0.94rem;
    font-weight: 500;
  }
  .nav-links a { color: var(--ink-soft); transition: color 0.2s; }
  .nav-links a:hover { color: var(--teal-700); }
  .nav-cta {
    background: var(--teal-700);
    color: #fff !important;
    padding: 10px 20px;
    border-radius: 100px;
    font-weight: 600;
    transition: background 0.2s;
  }
  .nav-cta:hover { background: var(--teal-900); }

  @media (max-width: 820px) {
    .nav-links .link-text { display: none; }
  }

  /* ====== HERO ====== */
  .hero {
    padding: 100px 0 120px;
    position: relative;
    overflow: hidden;
  }
  .hero::before {
    content: "";
    position: absolute;
    top: -300px;
    right: -200px;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, var(--teal-100) 0%, transparent 70%);
    opacity: 0.6;
    z-index: 0;
  }
  .hero-inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 80px;
    align-items: center;
  }
  @media (max-width: 900px) {
    .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  }

  .eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--teal-700);
    text-transform: uppercase;
    letter-spacing: 0.14em;
    margin-bottom: 24px;
  }
  .eyebrow::before {
    content: "";
    width: 28px;
    height: 1px;
    background: var(--teal-700);
  }

  .hero h1 {
    font-family: var(--serif);
    font-weight: 500;
    font-size: clamp(2.4rem, 6vw, 4.4rem);
    line-height: 1.05;
    letter-spacing: -0.02em;
    color: var(--teal-900);
    margin-bottom: 28px;
  }
  .hero h1 em {
    font-style: italic;
    color: var(--teal-700);
    font-weight: 500;
  }
  .hero-lead {
    font-size: 1.18rem;
    color: var(--ink-soft);
    max-width: 560px;
    margin-bottom: 40px;
    line-height: 1.65;
  }

  .hero-cta {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
  }
  .btn-primary {
    background: var(--teal-900);
    color: #fff;
    padding: 16px 32px;
    border-radius: 100px;
    font-weight: 600;
    font-size: 0.98rem;
    border: none;
    cursor: pointer;
    transition: transform 0.2s, background 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 10px;
  }
  .btn-primary:hover { background: var(--teal-700); transform: translateY(-1px); }
  .btn-secondary {
    background: transparent;
    color: var(--teal-900);
    padding: 16px 32px;
    border-radius: 100px;
    border: 1.5px solid var(--teal-900);
    font-weight: 600;
    font-size: 0.98rem;
    cursor: pointer;
    transition: background 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 10px;
  }
  .btn-secondary:hover { background: var(--teal-900); color: #fff; }

  .hero-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 24px;
    padding: 36px;
    box-shadow: 0 20px 60px rgba(12, 30, 34, 0.06);
    position: relative;
  }
  .hero-card-label {
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: 0.14em;
    margin-bottom: 16px;
  }
  .hero-card-quote {
    font-family: var(--serif);
    font-weight: 500;
    font-size: 1.32rem;
    line-height: 1.45;
    color: var(--ink);
    margin-bottom: 24px;
    font-style: italic;
  }
  .hero-card-author {
    display: flex;
    align-items: center;
    gap: 14px;
    padding-top: 20px;
    border-top: 1px solid var(--line);
  }
  .hero-card-author-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--teal-500), var(--teal-900));
    display: grid;
    place-items: center;
    color: #fff;
    font-weight: 700;
    font-size: 0.95rem;
  }
  .hero-card-author-name {
    font-weight: 600;
    font-size: 0.94rem;
  }
  .hero-card-author-role {
    font-size: 0.84rem;
    color: var(--muted);
  }

  /* ====== TRUST BAR ====== */
  .trust {
    padding: 60px 0;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    background: var(--cream);
  }
  .trust-title {
    text-align: center;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: 0.18em;
    margin-bottom: 32px;
  }
  .trust-logos {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 40px;
    align-items: center;
  }
  .trust-logo {
    text-align: center;
    font-family: var(--serif);
    font-weight: 500;
    font-size: 1.15rem;
    color: var(--teal-900);
    opacity: 0.65;
    transition: opacity 0.2s;
  }
  .trust-logo:hover { opacity: 1; }

  /* ====== SECTION: SEGMENTS ====== */
  .section { padding: 120px 0; }
  .section-head { margin-bottom: 72px; max-width: 720px; }
  .section-head h2 {
    font-family: var(--serif);
    font-weight: 500;
    font-size: clamp(2rem, 4.5vw, 3.2rem);
    line-height: 1.1;
    letter-spacing: -0.02em;
    color: var(--teal-900);
    margin-bottom: 20px;
  }
  .section-head h2 em { font-style: italic; color: var(--teal-700); }
  .section-head p {
    font-size: 1.1rem;
    color: var(--ink-soft);
    line-height: 1.65;
  }

  .segments-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
  }
  .segment-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 20px;
    padding: 32px;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
    display: block;
    text-decoration: none;
    color: inherit;
  }
  .segment-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--teal-700);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s;
  }
  .segment-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(12, 30, 34, 0.08);
  }
  .segment-card:hover::before { transform: scaleX(1); }
  .segment-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: var(--teal-100);
    color: var(--teal-700);
    display: grid;
    place-items: center;
    margin-bottom: 20px;
    font-family: var(--serif);
    font-weight: 600;
    font-size: 1.4rem;
  }
  .segment-card h3 {
    font-family: var(--serif);
    font-weight: 600;
    font-size: 1.35rem;
    color: var(--teal-900);
    margin-bottom: 10px;
    letter-spacing: -0.01em;
  }
  .segment-card p {
    font-size: 0.95rem;
    color: var(--ink-soft);
    line-height: 1.6;
    margin-bottom: 16px;
  }
  .segment-link {
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--teal-700);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: gap 0.2s;
  }
  .segment-card:hover .segment-link { gap: 10px; }

  /* ====== SECTION: PROCESS / SOP ====== */
  .process {
    background: linear-gradient(180deg, var(--teal-50) 0%, var(--paper) 100%);
  }
  .process-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
  }
  @media (max-width: 900px) {
    .process-grid { grid-template-columns: 1fr; }
  }

  .process-steps {
    display: flex;
    flex-direction: column;
    gap: 24px;
  }
  .process-step {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 24px 28px;
    display: flex;
    gap: 20px;
    transition: all 0.3s;
  }
  .process-step:hover {
    border-color: var(--teal-700);
    transform: translateX(6px);
  }
  .process-number {
    font-family: var(--serif);
    font-weight: 500;
    font-size: 1.9rem;
    color: var(--teal-700);
    font-style: italic;
    line-height: 1;
    flex-shrink: 0;
  }
  .process-step h4 {
    font-family: var(--serif);
    font-weight: 600;
    font-size: 1.15rem;
    color: var(--teal-900);
    margin-bottom: 6px;
  }
  .process-step p {
    font-size: 0.94rem;
    color: var(--ink-soft);
    line-height: 1.55;
  }

  .sop-visual {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 20px;
    padding: 40px;
    position: relative;
    box-shadow: 0 20px 60px rgba(12, 30, 34, 0.08);
  }
  .sop-visual-label {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--teal-700);
    background: var(--teal-100);
    padding: 6px 12px;
    border-radius: 100px;
    letter-spacing: 0.08em;
    margin-bottom: 20px;
  }
  .sop-visual h3 {
    font-family: var(--serif);
    font-weight: 500;
    font-size: 1.6rem;
    color: var(--teal-900);
    margin-bottom: 24px;
    line-height: 1.25;
  }
  .sop-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 14px;
  }
  .sop-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 0.95rem;
    color: var(--ink-soft);
  }
  .sop-list li::before {
    content: "✓";
    color: var(--teal-700);
    font-weight: 700;
    flex-shrink: 0;
    margin-top: 1px;
  }

  /* ====== SECTION: EXPERTISE / DIFFERENTIATOR ====== */
  .expertise {
    background: var(--teal-900);
    color: #fff;
    position: relative;
    overflow: hidden;
  }
  .expertise::before {
    content: "";
    position: absolute;
    top: -100px;
    left: -100px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(23, 162, 184, 0.15) 0%, transparent 70%);
  }
  .expertise .section-head h2 { color: #fff; }
  .expertise .section-head h2 em { color: var(--accent-light); font-style: italic; }
  .expertise .section-head p { color: rgba(255, 255, 255, 0.75); }

  .expertise-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 32px;
    position: relative;
  }
  .expertise-item {
    padding: 28px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
  }
  .expertise-number {
    font-family: var(--serif);
    font-weight: 500;
    font-style: italic;
    font-size: 3rem;
    color: var(--accent-light);
    line-height: 1;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
  }
  .expertise-item h4 {
    font-family: var(--serif);
    font-weight: 500;
    font-size: 1.3rem;
    color: #fff;
    margin-bottom: 10px;
    letter-spacing: -0.01em;
  }
  .expertise-item p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
  }

  /* ====== SECTION: CASE STUDIES ====== */
  .cases-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 28px;
  }
  .case-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s;
  }
  .case-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(12, 30, 34, 0.1);
  }
  .case-header {
    background: var(--cream);
    padding: 28px 32px;
    border-bottom: 1px solid var(--line);
  }
  .case-category {
    font-size: 0.76rem;
    font-weight: 600;
    color: var(--teal-700);
    text-transform: uppercase;
    letter-spacing: 0.14em;
    margin-bottom: 10px;
  }
  .case-name {
    font-family: var(--serif);
    font-weight: 600;
    font-size: 1.4rem;
    color: var(--teal-900);
    letter-spacing: -0.01em;
  }
  .case-body { padding: 32px; }
  .case-metrics {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--line);
  }
  .case-metric-label {
    font-size: 0.78rem;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 4px;
  }
  .case-metric-value {
    font-family: var(--serif);
    font-weight: 600;
    font-size: 1.15rem;
    color: var(--teal-900);
  }
  .case-quote {
    font-size: 0.95rem;
    color: var(--ink-soft);
    line-height: 1.6;
    font-style: italic;
    padding-left: 16px;
    border-left: 3px solid var(--teal-700);
  }

  /* ====== SECTION: CTA ====== */
  .cta {
    padding: 120px 0;
    text-align: center;
    background: var(--cream);
    position: relative;
    overflow: hidden;
  }
  .cta::before {
    content: "MEDCLEAN";
    position: absolute;
    font-family: var(--serif);
    font-weight: 500;
    font-size: 24rem;
    color: rgba(14, 107, 122, 0.04);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    letter-spacing: -0.04em;
    z-index: 0;
    white-space: nowrap;
    pointer-events: none;
  }
  .cta-inner { position: relative; z-index: 1; }
  .cta h2 {
    font-family: var(--serif);
    font-weight: 500;
    font-size: clamp(2.2rem, 5vw, 3.6rem);
    line-height: 1.1;
    color: var(--teal-900);
    letter-spacing: -0.02em;
    margin-bottom: 24px;
  }
  .cta h2 em { font-style: italic; color: var(--teal-700); }
  .cta p {
    font-size: 1.15rem;
    color: var(--ink-soft);
    max-width: 620px;
    margin: 0 auto 40px;
    line-height: 1.65;
  }
  .cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 48px;
  }
  .cta-contact {
    display: flex;
    justify-content: center;
    gap: 48px;
    flex-wrap: wrap;
    font-size: 0.95rem;
  }
  .cta-contact-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
  }
  .cta-contact-label {
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: 0.12em;
  }
  .cta-contact-value {
    font-family: var(--serif);
    font-weight: 500;
    font-size: 1.1rem;
    color: var(--teal-900);
  }

  /* ====== FOOTER ====== */
  .footer {
    background: var(--teal-900);
    color: rgba(255, 255, 255, 0.75);
    padding: 80px 0 32px;
  }
  .footer-grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 60px;
  }
  @media (max-width: 820px) {
    .footer-grid { grid-template-columns: 1fr 1fr; }
  }
  .footer-brand {
    font-family: var(--serif);
    font-weight: 500;
    font-size: 1.5rem;
    color: #fff;
    margin-bottom: 12px;
  }
  .footer-tagline {
    font-size: 0.94rem;
    line-height: 1.6;
    max-width: 340px;
    margin-bottom: 20px;
  }
  .footer h5 {
    font-size: 0.78rem;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    margin-bottom: 20px;
  }
  .footer ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
  .footer ul a {
    font-size: 0.94rem;
    color: rgba(255, 255, 255, 0.7);
    transition: color 0.2s;
  }
  .footer ul a:hover { color: #fff; }
  .footer-bottom {
    padding-top: 28px;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
    flex-wrap: wrap;
    gap: 16px;
  }
  .footer-bottom a { color: rgba(255, 255, 255, 0.7); }

  /* ====== ANIMATIONS ====== */
  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(24px); }
    to { opacity: 1; transform: translateY(0); }
  }
  .animate-1 { animation: fadeUp 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) both; }
  .animate-2 { animation: fadeUp 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) 0.15s both; }
  .animate-3 { animation: fadeUp 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) 0.3s both; }
  .animate-4 { animation: fadeUp 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) 0.45s both; }

  /* SEO badge */
  .no-vat-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, var(--accent), var(--accent-light));
    color: #fff;
    padding: 6px 14px;
    border-radius: 100px;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    margin-bottom: 20px;
  }

  /* ============ PODSTRONY ============ */
  .subpage-hero {
    background: linear-gradient(135deg, var(--teal-900) 0%, var(--teal-700) 100%);
    color: #fff;
    padding: 140px 0 80px;
    position: relative;
    overflow: hidden;
  }
  .subpage-hero::before {
    content: "";
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(212, 180, 131, 0.08) 0%, transparent 70%);
    border-radius: 50%;
  }
  .subpage-hero .container { position: relative; z-index: 1; }
  .breadcrumb {
    font-size: 0.85rem;
    opacity: 0.7;
    margin-bottom: 24px;
    letter-spacing: 0.05em;
  }
  .breadcrumb a {
    color: var(--cream);
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border-color 0.2s;
  }
  .breadcrumb a:hover { border-bottom-color: var(--cream); }
  .breadcrumb span { margin: 0 8px; opacity: 0.5; }
  .subpage-hero .eyebrow { color: var(--cream); }
  .subpage-hero h1 {
    font-family: 'Fraunces', serif;
    font-size: clamp(2.4rem, 5vw, 4rem);
    line-height: 1.05;
    font-weight: 500;
    letter-spacing: -0.02em;
    margin: 16px 0 24px;
    max-width: 900px;
  }
  .subpage-hero h1 em {
    font-style: italic;
    color: var(--cream);
    font-weight: 400;
  }
  .subpage-hero p.lead {
    font-size: 1.25rem;
    line-height: 1.6;
    max-width: 720px;
    opacity: 0.88;
  }
  .subpage-section { padding: 80px 0; }
  .subpage-section.alt { background: var(--bg-alt); }
  .subpage-section h2 {
    font-family: 'Fraunces', serif;
    font-size: clamp(1.8rem, 3.5vw, 2.5rem);
    line-height: 1.15;
    font-weight: 500;
    letter-spacing: -0.015em;
    color: var(--teal-900);
    margin-bottom: 16px;
    max-width: 820px;
  }
  .subpage-section h2 em { font-style: italic; color: var(--teal-700); }
  .subpage-section .lede {
    font-size: 1.125rem;
    color: var(--ink-soft);
    line-height: 1.7;
    max-width: 720px;
    margin-bottom: 48px;
  }
  .checklist {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 24px;
    list-style: none;
    padding: 0;
  }
  .checklist li {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 24px 28px;
    display: flex;
    gap: 16px;
    align-items: flex-start;
  }
  .checklist.on-alt li { background: #fff; }
  .checklist .check {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--teal-100);
    color: var(--teal-700);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    margin-top: 2px;
  }
  .checklist strong {
    display: block;
    color: var(--teal-900);
    font-weight: 600;
    margin-bottom: 4px;
    font-size: 1.02rem;
  }
  .checklist p { color: var(--ink-soft); font-size: 0.95rem; line-height: 1.6; margin: 0; }
  .sop-box {
    background: var(--teal-900);
    color: #fff;
    border-radius: 24px;
    padding: 48px;
    margin-top: 48px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
  }
  .sop-box h3 {
    font-family: 'Fraunces', serif;
    font-size: 1.8rem;
    font-weight: 500;
    line-height: 1.2;
    margin-bottom: 12px;
  }
  .sop-box p { opacity: 0.85; line-height: 1.6; }
  .sop-box .sop-metrics { display: grid; gap: 20px; }
  .sop-box .sop-metric {
    border-left: 2px solid var(--cream);
    padding-left: 20px;
  }
  .sop-box .sop-metric-value {
    font-family: 'Fraunces', serif;
    font-size: 2.4rem;
    font-weight: 500;
    color: var(--cream);
    line-height: 1;
    margin-bottom: 6px;
  }
  .sop-box .sop-metric-label { font-size: 0.9rem; opacity: 0.85; }
  @media (max-width: 720px) {
    .sop-box { grid-template-columns: 1fr; padding: 32px; }
    .subpage-hero { padding: 110px 0 60px; }
  }

  /* Formularz kontakt */
  .contact-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 64px;
    align-items: start;
  }
  @media (max-width: 820px) { .contact-grid { grid-template-columns: 1fr; gap: 40px; } }
  .contact-info-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 20px;
    padding: 32px;
    margin-bottom: 20px;
  }
  .contact-info-card h4 {
    font-family: 'Fraunces', serif;
    font-size: 1.3rem;
    color: var(--teal-900);
    margin-bottom: 16px;
    font-weight: 500;
  }
  .contact-info-row {
    display: flex;
    gap: 16px;
    padding: 12px 0;
    border-bottom: 1px solid var(--line);
  }
  .contact-info-row:last-child { border-bottom: none; }
  .contact-info-label {
    color: var(--ink-soft);
    font-size: 0.85rem;
    min-width: 90px;
    padding-top: 3px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
  }
  .contact-info-value { color: var(--teal-900); font-weight: 500; }
  .contact-info-value a { color: inherit; text-decoration: none; border-bottom: 1px solid var(--teal-500); }
  .contact-form {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 20px;
    padding: 36px;
  }
  .contact-form label {
    display: block;
    font-size: 0.85rem;
    color: var(--teal-900);
    font-weight: 500;
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
  }
  .contact-form input,
  .contact-form textarea,
  .contact-form select {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--line);
    border-radius: 10px;
    font-family: inherit;
    font-size: 1rem;
    color: var(--teal-900);
    background: #fafaf8;
    margin-bottom: 20px;
    transition: border-color 0.2s;
  }
  .contact-form input:focus,
  .contact-form textarea:focus,
  .contact-form select:focus {
    outline: none;
    border-color: var(--teal-500);
    background: #fff;
  }
  .contact-form textarea { min-height: 120px; resize: vertical; }
  .contact-form button {
    background: var(--teal-700);
    color: #fff;
    border: none;
    padding: 14px 32px;
    border-radius: 10px;
    font-family: inherit;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
  }
  .contact-form button:hover { background: var(--teal-900); }
  .contact-form .consent {
    font-size: 0.82rem;
    color: var(--ink-soft);
    line-height: 1.5;
    margin: -10px 0 20px;
  }
  .contact-form .consent input { width: auto; margin: 0 8px 0 0; }

  /* Polityka - proza */
  .prose { max-width: 780px; margin: 0 auto; }
  .prose h2 {
    font-family: 'Fraunces', serif;
    font-size: 1.8rem;
    color: var(--teal-900);
    margin: 48px 0 16px;
    font-weight: 500;
  }
  .prose h2:first-child { margin-top: 0; }
  .prose h3 {
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    color: var(--teal-900);
    margin: 28px 0 12px;
    font-weight: 600;
  }
  .prose p, .prose li { color: var(--ink-soft); line-height: 1.75; margin-bottom: 14px; }
  .prose ul { padding-left: 22px; margin-bottom: 18px; }
  .prose strong { color: var(--teal-900); }

