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

  :root {
    --bg: #FAF8F5;
    --dark: #0F1923;
    --accent: #E8622A;
    --accent-hover: #D4531E;
    --text: #2A2A2A;
    --text-muted: #6B6B6B;
    --border: #E2DDD8;
    --card-bg: #FFFFFF;
    --success: #2D7D46;
    --warn-bg: #FFF5EF;
  }

  html { scroll-behavior: smooth; overflow-x: hidden; }

  body {
    font-family: 'DM Sans', sans-serif;
    background: var(--bg);
    color: var(--text);
    font-size: 17px;
    line-height: 1.65;
    overflow-x: hidden;
  }

  /* ─── TYPOGRAPHY ─── */
  h1, h2, h3, .display {
    font-family: 'Fraunces', serif;
    line-height: 1.1;
    letter-spacing: -0.02em;
  }

  /* ─── CONTAINER ─── */
  .container {
    max-width: 1080px;
    margin: 0 auto;
    padding: 0 24px;
  }

  /* ─── CONTAINER — ARTICLE OVERRIDE ─── */

  /* ─── NAV ─── */
  nav {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(250,248,245,0.92);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
    padding: 16px 0;
  }
  nav .inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1080px;
    margin: 0 auto;
    padding: 0 24px;
  }
  .nav-logo {
    font-family: 'Fraunces', serif;
    font-weight: 900;
    font-size: 20px;
    color: var(--dark);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
  }
  .nav-logo span {
    background: var(--accent);
    color: #fff;
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 13px;
    font-family: 'DM Sans', sans-serif;
    font-weight: 600;
    letter-spacing: 0;
  }
  .nav-cta {
    background: var(--dark);
    color: #fff;
    border: none;
    padding: 10px 22px;
    border-radius: 6px;
    font-family: 'DM Sans', sans-serif;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    transition: background 0.2s, transform 0.15s;
  }
  .nav-cta:hover { background: var(--accent); transform: translateY(-1px); }

  /* ─── HERO ─── */
  .hero {
    padding: 96px 0 80px;
    position: relative;
    overflow: hidden;
  }
  .hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
  }
  @media (max-width: 960px) { .hero-grid { grid-template-columns: 1fr; } }
  @media (max-width: 960px) { .hero-mockup { display: none; } }
  .hero::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -300px;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(232,98,42,0.08) 0%, transparent 65%);
    pointer-events: none;
  }
  .hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--warn-bg);
    border: 1px solid rgba(232,98,42,0.25);
    color: var(--accent);
    font-size: 13px;
    font-weight: 600;
    padding: 6px 14px;
    border-radius: 100px;
    margin-bottom: 32px;
    letter-spacing: 0.03em;
  }
  .hero-eyebrow::before {
    content: '';
    width: 7px;
    height: 7px;
    background: var(--accent);
    border-radius: 50%;
    display: inline-block;
    animation: pulse-dot 2s infinite;
  }
  @keyframes pulse-dot {
    0%,100% { opacity: 1; }
    50% { opacity: 0.3; }
  }
  .hero h1 {
    font-size: clamp(36px, 5vw, 62px);
    font-weight: 900;
    color: var(--dark);
    max-width: 820px;
    margin-bottom: 28px;
  }
  .hero h1 em {
    font-style: italic;
    color: var(--accent);
  }
  .hero-sub {
    font-size: 20px;
    color: var(--text-muted);
    max-width: 620px;
    margin-bottom: 44px;
    font-weight: 300;
    line-height: 1.55;
  }
  .hero-checks {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 48px;
  }
  .hero-check {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 17px;
  }
  .check-icon {
    width: 22px;
    height: 22px;
    background: var(--success);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 2px;
  }
  .check-icon svg { width: 11px; height: 11px; }
  .hero-actions {
    display: flex;
    gap: 16px;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 56px;
  }
  .btn-primary {
    background: var(--accent);
    color: #fff;
    padding: 18px 36px;
    border-radius: 8px;
    font-size: 17px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: none;
    cursor: pointer;
    transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
    box-shadow: 0 4px 20px rgba(232,98,42,0.35);
  }
  .btn-primary:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(232,98,42,0.4);
  }
  .btn-primary svg { width: 18px; height: 18px; }
  .btn-secondary {
    color: var(--text-muted);
    font-size: 15px;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 6px;
  }
  .btn-secondary:hover { color: var(--dark); }
  .trust-bar {
    display: flex;
    gap: 32px;
    align-items: center;
    flex-wrap: wrap;
    padding-top: 40px;
    border-top: 1px solid var(--border);
  }
  .trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--text-muted);
    font-weight: 500;
  }
  .trust-item svg { width: 16px; height: 16px; color: var(--accent); }

  /* ─── SECTION SHARED ─── */
  section { padding: 96px 0; }
  section:nth-child(even) { }
  .section-label {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 16px;
  }
  .section-h2 {
    font-size: clamp(32px, 4.5vw, 52px);
    font-weight: 900;
    color: var(--dark);
    max-width: 680px;
    margin-bottom: 24px;
  }
  .section-sub {
    font-size: 18px;
    color: var(--text-muted);
    max-width: 600px;
    margin-bottom: 56px;
    line-height: 1.6;
    font-weight: 300;
  }

  /* ─── PROBLEM ─── */
  .problem { background: var(--dark); }
  .problem .section-label { color: rgba(232,98,42,0.9); }
  .problem .section-h2 { color: #fff; max-width: 780px; }
  .problem .section-sub { color: rgba(255,255,255,0.55); }
  .problem-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2px;
    margin-bottom: 64px;
  }
  .problem-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    padding: 36px;
    position: relative;
    transition: background 0.3s;
  }
  .problem-card:hover { background: rgba(255,255,255,0.07); }
  .problem-card .x-mark {
    width: 36px;
    height: 36px;
    background: rgba(232,98,42,0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: var(--accent);
    font-size: 18px;
    font-weight: 700;
  }
  .problem-card h3 {
    font-family: 'Fraunces', serif;
    font-size: 19px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 10px;
    line-height: 1.3;
  }
  .problem-card p {
    font-size: 15px;
    color: rgba(255,255,255,0.5);
    line-height: 1.6;
  }
  .problem-cost {
    background: rgba(232,98,42,0.1);
    border: 1px solid rgba(232,98,42,0.25);
    border-radius: 12px;
    padding: 36px;
    max-width: 760px;
  }
  .problem-cost p {
    color: rgba(255,255,255,0.8);
    font-size: 18px;
    line-height: 1.6;
  }
  .problem-cost strong { color: #fff; }

  /* ─── AGITATION ─── */
  .agitation { background: #F5EDE3; padding: 80px 0; }
  .agitation-inner {
    max-width: 760px;
  }
  .agitation h2 {
    font-size: clamp(26px, 3.5vw, 40px);
    font-weight: 900;
    color: var(--dark);
    margin-bottom: 24px;
    font-family: 'Fraunces', serif;
  }
  .agitation p {
    font-size: 18px;
    color: var(--text);
    margin-bottom: 24px;
    line-height: 1.65;
  }
  .agitation ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 28px;
  }
  .agitation li {
    display: flex;
    gap: 10px;
    font-size: 17px;
    color: var(--text);
  }
  .agitation li::before {
    content: '→';
    color: var(--accent);
    font-weight: 700;
    flex-shrink: 0;
  }
  .agitation .kicker {
    font-family: 'Fraunces', serif;
    font-size: 20px;
    font-weight: 700;
    font-style: italic;
    color: var(--dark);
    border-left: 3px solid var(--accent);
    padding-left: 20px;
    line-height: 1.5;
  }

  /* ─── SOLUTION ─── */
  .solution-intro {
    text-align: center;
    padding: 96px 0 0;
  }
  .solution-intro .section-h2 {
    margin: 0 auto 16px;
    text-align: center;
  }
  .solution-intro .section-sub { margin: 0 auto 0; text-align: center; }

  .steps {
    padding: 80px 0 96px;
  }
  .steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 32px;
    margin-bottom: 56px;
  }
  .step-card {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 36px;
    position: relative;
    overflow: hidden;
    transition: transform 0.25s, box-shadow 0.25s;
  }
  .step-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(0,0,0,0.08);
  }
  .step-number {
    font-family: 'Fraunces', serif;
    font-size: 64px;
    font-weight: 900;
    color: rgba(232,98,42,0.1);
    position: absolute;
    top: 12px;
    right: 20px;
    line-height: 1;
  }
  .step-card h3 {
    font-family: 'Fraunces', serif;
    font-size: 22px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 14px;
    max-width: 200px;
  }
  .step-card p {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.65;
  }

  .results-box {
    background: var(--dark);
    border-radius: 16px;
    padding: 48px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 28px;
  }
  .result-item {
    display: flex;
    gap: 12px;
    align-items: flex-start;
  }
  .result-item .ri-icon {
    width: 28px;
    height: 28px;
    background: var(--success);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 2px;
  }
  .result-item .ri-icon svg { width: 13px; height: 13px; }
  .result-item span {
    color: rgba(255,255,255,0.85);
    font-size: 15px;
    line-height: 1.5;
  }

  /* ─── STACK ─── */
  .stack { background: var(--bg); }
  .stack-hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: start;
    margin-bottom: 64px;
  }
  @media (max-width: 768px) { .stack-hero { grid-template-columns: 1fr; gap: 40px; } }
  .stack-main-card {
    background: var(--dark);
    border-radius: 16px;
    padding: 40px;
  }
  .stack-price-tag {
    font-family: 'Fraunces', serif;
    font-size: 14px;
    color: rgba(255,255,255,0.5);
    margin-bottom: 4px;
    font-weight: 300;
    text-decoration: line-through;
  }
  .stack-price-main {
    font-family: 'Fraunces', serif;
    font-size: 56px;
    font-weight: 900;
    color: #fff;
    line-height: 1;
    margin-bottom: 6px;
  }
  .stack-price-note {
    font-size: 14px;
    color: rgba(255,255,255,0.45);
    margin-bottom: 28px;
  }
  .stack-what {
    background: rgba(255,255,255,0.05);
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 20px;
    font-size: 14px;
    color: rgba(255,255,255,0.7);
  }
  .stack-what h4 {
    font-family: 'DM Sans', sans-serif;
    font-weight: 600;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: rgba(255,255,255,0.4);
    margin-bottom: 10px;
  }
  .stack-what ul { list-style: none; display: flex; flex-direction: column; gap: 7px; }
  .stack-what li { display: flex; gap: 8px; align-items: baseline; }
  .stack-what li::before { content: '✓'; color: #6FCF97; font-weight: 700; flex-shrink: 0; }
  .stack-btn { display: block; margin-top: 24px; }

  .bonuses {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }
  .bonus-item {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 24px;
    display: grid;
    grid-template-columns: 48px 1fr auto;
    gap: 16px;
    align-items: start;
    transition: transform 0.2s, box-shadow 0.2s;
  }
  .bonus-item:hover { transform: translateX(4px); box-shadow: -4px 0 0 var(--accent), 0 4px 16px rgba(0,0,0,0.06); }
  .bonus-icon {
    width: 48px;
    height: 48px;
    background: var(--warn-bg);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
  }
  .bonus-content h4 {
    font-family: 'DM Sans', sans-serif;
    font-weight: 700;
    font-size: 15px;
    color: var(--dark);
    margin-bottom: 4px;
  }
  .bonus-content p {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.5;
  }
  .bonus-value {
    font-size: 12px;
    font-weight: 700;
    color: var(--success);
    background: rgba(45,125,70,0.08);
    padding: 4px 10px;
    border-radius: 100px;
    white-space: nowrap;
    flex-shrink: 0;
  }

  .opieka-box {
    background: #F0F7FF;
    border: 1px solid #C5DFFF;
    border-radius: 12px;
    padding: 32px;
    margin-top: 40px;
  }
  .opieka-box h3 {
    font-family: 'Fraunces', serif;
    font-size: 22px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 8px;
  }
  .opieka-box .price { font-size: 32px; font-family: 'Fraunces', serif; font-weight: 900; color: #1A5CA8; margin-bottom: 16px; }
  .opieka-box ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }
  .opieka-box li { font-size: 15px; color: var(--text); display: flex; gap: 8px; align-items: baseline; }
  .opieka-box li::before { content: '✓'; color: #1A5CA8; font-weight: 700; flex-shrink: 0; }
  .opieka-note { font-size: 13px; color: var(--text-muted); margin-top: 12px; font-style: italic; }

  /* ─── COMPARISON ─── */
  .comparison { background: var(--dark); }
  .comparison .section-h2 { color: #fff; }
  .comparison .section-sub { color: rgba(255,255,255,0.5); }
  .comp-table-wrap { overflow-x: auto; }
  .comp-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 560px;
  }
  .comp-table th {
    font-family: 'DM Sans', sans-serif;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(255,255,255,0.4);
    font-weight: 600;
    padding: 12px 20px;
    text-align: left;
    border-bottom: 1px solid rgba(255,255,255,0.08);
  }
  .comp-table td {
    padding: 18px 20px;
    font-size: 15px;
    color: rgba(255,255,255,0.65);
    border-bottom: 1px solid rgba(255,255,255,0.05);
  }
  .comp-table tr.highlight td {
    background: rgba(232,98,42,0.1);
    color: #fff;
    font-weight: 600;
  }
  .comp-table tr.highlight td:first-child {
    border-left: 3px solid var(--accent);
  }
  .comp-table td .chip {
    background: var(--accent);
    color: #fff;
    font-size: 11px;
    padding: 2px 8px;
    border-radius: 4px;
    font-weight: 700;
    margin-left: 8px;
    white-space: nowrap;
    display: inline-block;
  }
  .roi-box {
    margin-top: 48px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 12px;
    padding: 36px;
  }
  .roi-box p {
    color: rgba(255,255,255,0.75);
    font-size: 17px;
    line-height: 1.65;
    margin-bottom: 12px;
  }
  .roi-box p:last-child { margin-bottom: 0; }
  .roi-box strong { color: #fff; }

  /* ─── PROCESS ─── */
  .process-timeline {
    display: flex;
    flex-direction: column;
    gap: 0;
    position: relative;
    max-width: 760px;
  }
  .process-timeline::before {
    content: '';
    position: absolute;
    left: 28px;
    top: 48px;
    bottom: 48px;
    width: 1px;
    background: var(--border);
  }
  .process-item {
    display: grid;
    grid-template-columns: 56px 1fr;
    gap: 24px;
    padding: 20px 0;
    align-items: start;
  }
  .process-dot {
    width: 56px;
    height: 56px;
    background: var(--dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Fraunces', serif;
    font-size: 13px;
    font-weight: 700;
    color: rgba(255,255,255,0.6);
    flex-shrink: 0;
    position: relative;
    z-index: 1;
    border: 1px solid var(--border);
  }
  .process-dot.active {
    background: var(--accent);
    color: #fff;
    border-color: var(--accent);
  }
  .process-content h4 {
    font-family: 'Fraunces', serif;
    font-weight: 700;
    font-size: 19px;
    color: var(--dark);
    margin-bottom: 6px;
    padding-top: 12px;
  }
  .process-content p { font-size: 15px; color: var(--text-muted); line-height: 1.6; }
  .process-content .tag {
    display: inline-block;
    background: var(--warn-bg);
    color: var(--accent);
    font-size: 12px;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 4px;
    margin-top: 8px;
  }

  /* ─── ABOUT ─── */
  .about { background: #F5EDE3; }
  .about-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 64px;
    align-items: start;
  }
  @media (max-width: 768px) { .about-grid { grid-template-columns: 1fr; gap: 40px; } }
  .about-img-placeholder {
    border-radius: 16px;
    aspect-ratio: 3/4;
    overflow: hidden;
  }
  .about-img-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
  }
  .about-content h2 {
    font-family: 'Fraunces', serif;
    font-size: clamp(28px, 3.5vw, 42px);
    font-weight: 900;
    color: var(--dark);
    margin-bottom: 20px;
  }
  .about-content p {
    font-size: 17px;
    color: var(--text);
    line-height: 1.7;
    margin-bottom: 16px;
  }
  .about-stat-row {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    margin-top: 36px;
    padding-top: 36px;
    border-top: 1px solid rgba(0,0,0,0.1);
  }
  .about-stat .number {
    font-family: 'Fraunces', serif;
    font-size: 36px;
    font-weight: 900;
    color: var(--accent);
    line-height: 1;
  }
  .about-stat .label {
    font-size: 13px;
    color: var(--text-muted);
    margin-top: 4px;
  }
  .about-record {
    background: var(--dark);
    color: #fff;
    border-radius: 10px;
    padding: 20px 24px;
    margin-top: 24px;
    display: flex;
    gap: 16px;
    align-items: center;
  }
  .record-badge {
    background: var(--accent);
    color: #fff;
    font-family: 'Fraunces', serif;
    font-size: 20px;
    font-weight: 900;
    padding: 10px 14px;
    border-radius: 8px;
    white-space: nowrap;
  }
  .about-record p { font-size: 14px; color: rgba(255,255,255,0.7); line-height: 1.5; }
  .about-record strong { color: #fff; font-weight: 600; }

  /* ─── REALIZACJE ─── */
  .realizacje-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
  }
  .realizacja-card {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.25s, box-shadow 0.25s;
  }
  .realizacja-card:hover { transform: translateY(-4px); box-shadow: 0 12px 36px rgba(0,0,0,0.07); }
  .realizacja-preview {
    height: 200px;
    overflow: hidden;
    display: block;
  }
  .realizacja-preview img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    display: block;
    transition: transform 0.4s ease;
  }
  .realizacja-card:hover .realizacja-preview img { transform: scale(1.03); }
  .realizacja-body { padding: 24px; }
  .realizacja-tag {
    display: inline-block;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--accent);
    background: rgba(232,98,42,0.08);
    border-radius: 4px;
    padding: 3px 8px;
    margin-bottom: 10px;
  }
  .realizacja-body h4 { font-size: 17px; font-weight: 700; margin-bottom: 6px; color: var(--text); }
  .realizacja-body p { font-size: 14px; color: var(--text-muted); line-height: 1.6; margin-bottom: 16px; }
  .realizacja-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    font-weight: 600;
    color: var(--accent);
    text-decoration: none;
  }
  .realizacja-link:hover { text-decoration: underline; }

  /* ─── TESTIMONIALS ─── */
  .testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
  }
  .testi-card {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 32px;
    transition: transform 0.25s, box-shadow 0.25s;
  }
  .testi-card:hover { transform: translateY(-4px); box-shadow: 0 12px 36px rgba(0,0,0,0.07); }
  .testi-stars { color: #F5A623; font-size: 16px; margin-bottom: 16px; }
  .testi-card blockquote {
    font-size: 15px;
    color: var(--text);
    line-height: 1.65;
    margin-bottom: 20px;
    font-style: italic;
  }
  .testi-author {
    display: flex;
    align-items: center;
    gap: 12px;
  }
  .testi-avatar {
    width: 40px;
    height: 40px;
    background: var(--border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Fraunces', serif;
    font-weight: 900;
    color: var(--text-muted);
    font-size: 16px;
  }
  .testi-info strong { font-size: 14px; color: var(--dark); display: block; }
  .testi-info span { font-size: 12px; color: var(--text-muted); }
  .testi-placeholder {
    background: #F7F7F5;
    border: 2px dashed var(--border);
    border-radius: 12px;
    padding: 40px;
    text-align: center;
    grid-column: span 3;
  }
  @media (max-width: 960px) { .testi-placeholder { grid-column: span 1; } }
  .testi-placeholder p {
    font-size: 15px;
    color: var(--text-muted);
    margin-bottom: 8px;
  }
  .testi-placeholder strong { color: var(--dark); font-weight: 600; }

  /* ─── FAQ ─── */
  .faq-list { display: flex; flex-direction: column; gap: 0; max-width: 760px; }
  .faq-item {
    border-bottom: 1px solid var(--border);
  }
  .faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 24px 0;
    text-align: left;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    cursor: pointer;
    font-family: 'DM Sans', sans-serif;
    font-size: 17px;
    font-weight: 600;
    color: var(--dark);
    transition: color 0.2s;
  }
  .faq-question:hover { color: var(--accent); }
  .faq-chevron {
    width: 24px;
    height: 24px;
    border: 1px solid var(--border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: transform 0.3s, background 0.2s;
  }
  .faq-item.open .faq-chevron {
    transform: rotate(45deg);
    background: var(--accent);
    border-color: var(--accent);
  }
  .faq-item.open .faq-chevron svg { color: #fff; }
  .faq-chevron svg { width: 12px; height: 12px; }
  .faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
  }
  .faq-answer-inner {
    padding: 0 0 24px;
    font-size: 16px;
    color: var(--text-muted);
    line-height: 1.7;
  }
  .faq-item.open .faq-answer { max-height: 400px; }

  /* ─── GUARANTEE ─── */
  .guarantee {
    background: var(--dark);
    text-align: center;
  }
  .guarantee-box {
    max-width: 680px;
    margin: 0 auto;
  }
  .shield-icon {
    width: 80px;
    height: 80px;
    background: rgba(232,98,42,0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 32px;
    font-size: 36px;
  }
  .guarantee h2 {
    font-family: 'Fraunces', serif;
    font-size: clamp(28px, 4vw, 44px);
    font-weight: 900;
    color: #fff;
    margin-bottom: 20px;
  }
  .guarantee p {
    font-size: 18px;
    color: rgba(255,255,255,0.65);
    margin-bottom: 16px;
    line-height: 1.65;
  }
  .guarantee-steps {
    display: flex;
    flex-direction: column;
    gap: 12px;
    text-align: left;
    background: rgba(255,255,255,0.04);
    border-radius: 12px;
    padding: 28px;
    margin: 32px 0;
  }
  .g-step {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    font-size: 16px;
    color: rgba(255,255,255,0.8);
  }
  .g-num {
    width: 26px;
    height: 26px;
    background: var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 700;
    color: #fff;
    flex-shrink: 0;
  }
  .guarantee .kicker {
    font-size: 16px;
    color: rgba(255,255,255,0.5);
    font-style: italic;
  }
  .guarantee strong { color: rgba(255,255,255,0.85); }

  /* ─── PRICING ─── */
  .pricing-card {
    background: var(--card-bg);
    border: 2px solid var(--dark);
    border-radius: 20px;
    overflow: hidden;
    max-width: 560px;
    margin: 0 auto 40px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.08);
  }
  .pricing-header {
    background: var(--dark);
    padding: 36px 40px;
  }
  .pricing-header .badge {
    display: inline-block;
    background: var(--accent);
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 4px;
    margin-bottom: 16px;
    letter-spacing: 0.05em;
  }
  .pricing-header h3 {
    font-family: 'Fraunces', serif;
    font-size: 28px;
    font-weight: 900;
    color: #fff;
    margin-bottom: 8px;
  }
  .price-row {
    display: flex;
    align-items: baseline;
    gap: 8px;
  }
  .price-main {
    font-family: 'Fraunces', serif;
    font-size: 56px;
    font-weight: 900;
    color: #fff;
    line-height: 1;
  }
  .price-currency { font-size: 24px; color: rgba(255,255,255,0.6); font-family: 'Fraunces', serif; }
  .price-period { font-size: 15px; color: rgba(255,255,255,0.4); }
  .pricing-body { padding: 36px 40px; }
  .pricing-list { list-style: none; display: flex; flex-direction: column; gap: 14px; margin-bottom: 32px; }
  .pricing-list li { display: flex; gap: 10px; align-items: baseline; font-size: 15px; color: var(--text); }
  .pricing-list li .pi { color: var(--success); font-weight: 700; flex-shrink: 0; }
  .pricing-list li .bonus-tag {
    font-size: 11px;
    font-weight: 700;
    background: rgba(232,98,42,0.1);
    color: var(--accent);
    padding: 2px 6px;
    border-radius: 3px;
    margin-left: 4px;
  }
  .pricing-cta-big {
    display: block;
    width: 100%;
    background: var(--accent);
    color: #fff;
    border: none;
    padding: 20px;
    border-radius: 10px;
    font-family: 'DM Sans', sans-serif;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    text-align: center;
    text-decoration: none;
    transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
    box-shadow: 0 4px 20px rgba(232,98,42,0.3);
    margin-bottom: 16px;
  }
  .pricing-cta-big:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(232,98,42,0.4);
  }
  .pricing-sub-note {
    text-align: center;
    font-size: 13px;
    color: var(--text-muted);
  }
  .pricing-value {
    text-align: center;
    margin-bottom: 40px;
  }
  .pricing-value p {
    font-size: 15px;
    color: var(--text-muted);
  }
  .pricing-value .line-through {
    text-decoration: line-through;
    color: var(--text-muted);
  }

  /* ─── URGENCY ─── */
  .urgency {
    background: #FFF9F7;
    border-top: 1px solid rgba(232,98,42,0.15);
    border-bottom: 1px solid rgba(232,98,42,0.15);
    padding: 64px 0;
  }
  .urgency-inner {
    max-width: 680px;
  }
  .urgency h2 {
    font-family: 'Fraunces', serif;
    font-size: clamp(24px, 3vw, 36px);
    font-weight: 900;
    color: var(--dark);
    margin-bottom: 16px;
  }
  .urgency p { font-size: 17px; color: var(--text); line-height: 1.65; margin-bottom: 12px; }

  /* ─── FINAL CTA ─── */
  .final-cta {
    background: var(--dark);
    text-align: center;
    padding: 120px 0;
    position: relative;
    overflow: hidden;
  }
  .final-cta::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(232,98,42,0.12) 0%, transparent 65%);
    pointer-events: none;
  }
  .final-cta h2 {
    font-family: 'Fraunces', serif;
    font-size: clamp(32px, 5vw, 60px);
    font-weight: 900;
    color: #fff;
    max-width: 780px;
    margin: 0 auto 24px;
  }
  .final-cta h2 em { color: var(--accent); font-style: italic; }
  .final-cta p {
    font-size: 18px;
    color: rgba(255,255,255,0.55);
    max-width: 560px;
    margin: 0 auto 48px;
    line-height: 1.6;
  }
  .final-actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
  }
  .contact-row {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 8px;
  }
  .contact-item {
    color: rgba(255,255,255,0.5);
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 6px;
  }
  .contact-item a { color: rgba(255,255,255,0.7); text-decoration: none; }
  .contact-item a:hover { color: #fff; }
  .response-note {
    font-size: 13px;
    color: rgba(255,255,255,0.35);
    margin-top: 12px;
  }

  /* ─── PS ─── */
  .ps-section {
    background: var(--bg);
    padding: 64px 0;
    border-top: 1px solid var(--border);
  }
  .ps-inner { max-width: 680px; }
  .ps-inner p { font-size: 16px; color: var(--text); line-height: 1.7; margin-bottom: 16px; }
  .ps-inner strong { font-weight: 600; color: var(--dark); }
  .ps-inner a { color: var(--accent); text-decoration: none; font-weight: 600; }

  /* ─── FOOTER ─── */
  footer {
    background: var(--dark);
    padding: 40px 0;
    border-top: 1px solid rgba(255,255,255,0.06);
  }
  .footer-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
  }
  .footer-brand {
    font-family: 'Fraunces', serif;
    font-size: 18px;
    font-weight: 900;
    color: rgba(255,255,255,0.8);
  }
  .footer-links {
    display: flex;
    gap: 12px 20px;
    flex-wrap: wrap;
  }
  .footer-links a {
    font-size: 13px;
    color: rgba(255,255,255,0.35);
    text-decoration: none;
    transition: color 0.2s;
  }
  .footer-links a:hover { color: rgba(255,255,255,0.7); }
  .footer-copy {
    font-size: 13px;
    color: rgba(255,255,255,0.25);
    width: 100%;
  }

  /* ─── ANIMATIONS ─── */
  .fade-in {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.6s ease, transform 0.6s ease;
  }
  .fade-in.visible {
    opacity: 1;
    transform: translateY(0);
  }
  .fade-in-delay-1 { transition-delay: 0.1s; }
  .fade-in-delay-2 { transition-delay: 0.2s; }
  .fade-in-delay-3 { transition-delay: 0.3s; }

  /* ─── CONTACT FORM ─── */
  .contact-form-box {
    max-width: 560px;
    margin: 0 auto;
    background: var(--card-bg);
    border: 2px solid var(--border);
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 12px 40px rgba(0,0,0,0.06);
  }
  .contact-form-box h3 {
    font-family: 'Fraunces', serif;
    font-size: 24px;
    font-weight: 900;
    color: var(--dark);
    margin-bottom: 8px;
    text-align: center;
  }
  .contact-form-box .form-sub {
    font-size: 14px;
    color: var(--text-muted);
    text-align: center;
    margin-bottom: 28px;
  }
  .form-group {
    margin-bottom: 16px;
  }
  .form-group label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 6px;
  }
  .form-group input,
  .form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--border);
    border-radius: 8px;
    font-family: 'DM Sans', sans-serif;
    font-size: 15px;
    color: var(--text);
    background: var(--bg);
    transition: border-color 0.2s, box-shadow 0.2s;
    resize: vertical;
  }
  .form-group input:focus,
  .form-group textarea:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(232,98,42,0.12);
  }
  .form-group input::placeholder,
  .form-group textarea::placeholder {
    color: #B0B0B0;
  }
  .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }
  @media (max-width: 480px) { .form-row { grid-template-columns: 1fr; } }
  .form-submit {
    display: block;
    width: 100%;
    background: var(--accent);
    color: #fff;
    border: none;
    padding: 18px;
    border-radius: 10px;
    font-family: 'DM Sans', sans-serif;
    font-size: 17px;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
    box-shadow: 0 4px 20px rgba(232,98,42,0.3);
    margin-top: 8px;
  }
  .form-submit:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(232,98,42,0.4);
  }
  .form-alt {
    text-align: center;
    margin-top: 20px;
    font-size: 13px;
    color: var(--text-muted);
  }
  .form-alt a {
    color: var(--accent);
    text-decoration: none;
    font-weight: 600;
  }

  /* ─── DEVICE MOCKUPS ─── */
  .hero-mockup {
    position: relative;
    width: 100%;
    max-width: 520px;
    margin: 0 auto;
  }
  .mockup-laptop {
    position: relative;
    width: 100%;
    z-index: 1;
  }
  .laptop-frame {
    background: var(--dark);
    border-radius: 12px 12px 0 0;
    padding: 10px 10px 0;
    box-shadow: 0 20px 60px rgba(0,0,0,0.18);
  }
  .laptop-screen {
    background: #fff;
    border-radius: 4px 4px 0 0;
    aspect-ratio: 16/10;
    overflow: hidden;
    position: relative;
  }
  .laptop-screen img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    display: block;
  }
  .laptop-screen .placeholder-screen {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #f0f0f0 0%, #e8e8e8 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    font-size: 14px;
    font-weight: 500;
  }
  .laptop-base {
    background: #1a2530;
    height: 14px;
    border-radius: 0 0 4px 4px;
    position: relative;
  }
  .laptop-base::after {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 2px;
    width: 60px;
    height: 4px;
    background: #2a3540;
    border-radius: 2px;
  }
  .laptop-stand {
    width: 120%;
    margin-left: -10%;
    height: 8px;
    background: linear-gradient(to bottom, #1a2530, #253040);
    border-radius: 0 0 50% 50% / 0 0 100% 100%;
  }

  .mockup-phone {
    position: absolute;
    bottom: -10px;
    right: -30px;
    width: 28%;
    z-index: 2;
    animation: float-phone 4s ease-in-out infinite;
  }
  @keyframes float-phone {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
  }
  .phone-frame {
    background: var(--dark);
    border-radius: 20px;
    padding: 8px;
    box-shadow: 0 16px 48px rgba(0,0,0,0.22);
  }
  .phone-notch {
    width: 40%;
    height: 6px;
    background: #1a2530;
    border-radius: 3px;
    margin: 0 auto 6px;
  }
  .phone-screen {
    background: #fff;
    border-radius: 12px;
    aspect-ratio: 9/17;
    overflow: hidden;
    position: relative;
  }
  .phone-screen img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    display: block;
  }
  .phone-screen .placeholder-screen {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #f0f0f0 0%, #e8e8e8 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    font-size: 10px;
    font-weight: 500;
  }

  /* ─── RESPONSIVE ─── */
  @media (max-width: 640px) {
    section { padding: 64px 0; }
    .hero { padding: 56px 0 48px; }
    .hero h1 { font-size: 36px; }
    .hero-sub { font-size: 17px; }
    .btn-primary { padding: 16px 28px; font-size: 16px; }
    .trust-bar { gap: 20px; }
    .steps-grid { grid-template-columns: 1fr; }
    .results-box { padding: 32px 24px; grid-template-columns: 1fr; }
    .stack-main-card { padding: 28px; }
    .bonus-item { grid-template-columns: 40px 1fr; }
    .bonus-value { display: none; }
    .pricing-header, .pricing-body { padding: 28px 24px; }
    .price-main { font-size: 48px; }
    .final-cta { padding: 80px 0; }
    .about-grid { grid-template-columns: 1fr; }
    .comp-table { font-size: 13px; }
    .comp-table td, .comp-table th { padding: 12px 14px; }
    .footer-inner { flex-direction: column; align-items: flex-start; }
    nav .nav-cta { display: none; }
  }
#cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 9999;
  background: #0F1923;
  border-top: 1px solid rgba(232,98,42,0.3);
  padding: 20px 24px;
  font-family: 'DM Sans', sans-serif;
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.22,1,0.36,1);
  box-shadow: 0 -8px 32px rgba(0,0,0,0.3);
}
#cookie-banner.cb-visible { transform: translateY(0); }
.cb-inner {
  max-width: 1080px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.cb-text { flex: 1; min-width: 280px; }
.cb-text strong { color: #fff; font-size: 15px; display: block; margin-bottom: 4px; }
.cb-text p { color: rgba(255,255,255,0.6); font-size: 13px; line-height: 1.5; margin: 0; }
.cb-text a { color: #E8622A; text-decoration: none; }
.cb-text a:hover { text-decoration: underline; }
.cb-buttons {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  flex-shrink: 0;
}
.cb-btn {
  padding: 10px 18px;
  border-radius: 6px;
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: background 0.2s, transform 0.15s;
  white-space: nowrap;
  min-width: 120px;
  text-align: center;
}
.cb-btn:hover { transform: translateY(-1px); }
/* Równe rozmiary — brak dark patterns */
.cb-btn-accept { background: #E8622A; color: #fff; }
.cb-btn-accept:hover { background: #D4531E; }
.cb-btn-necessary { background: rgba(255,255,255,0.1); color: rgba(255,255,255,0.85); border: 1px solid rgba(255,255,255,0.15); }
.cb-btn-necessary:hover { background: rgba(255,255,255,0.18); }
.cb-btn-settings { background: transparent; color: rgba(255,255,255,0.55); border: 1px solid rgba(255,255,255,0.15); }
.cb-btn-settings:hover { color: rgba(255,255,255,0.85); border-color: rgba(255,255,255,0.3); }

/* Panel ustawień */
#cb-panel { background: #162130; border-top: 1px solid rgba(255,255,255,0.06); margin-top: 16px; }
.cb-panel-inner { max-width: 1080px; margin: 0 auto; padding: 20px 0 8px; }
.cb-panel-inner h3 { color: rgba(255,255,255,0.5); font-size: 11px; text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 16px; font-family: 'DM Sans', sans-serif; font-weight: 700; }
.cb-option { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,0.05); }
.cb-option:last-of-type { border-bottom: none; }
.cb-option-info { flex: 1; }
.cb-option-info strong { color: #fff; font-size: 14px; display: block; margin-bottom: 2px; }
.cb-option-info span { color: rgba(255,255,255,0.4); font-size: 12px; line-height: 1.4; }
.cb-toggle-locked .cb-toggle-on { color: #6FCF97; font-size: 12px; font-weight: 600; }
/* Toggle switch */
.cb-toggle-switch { position: relative; display: inline-block; width: 44px; height: 24px; flex-shrink: 0; }
.cb-toggle-switch input { opacity: 0; width: 0; height: 0; }
.cb-slider { position: absolute; cursor: pointer; inset: 0; background: rgba(255,255,255,0.15); border-radius: 24px; transition: background 0.2s; }
.cb-slider:before { content: ''; position: absolute; width: 18px; height: 18px; left: 3px; bottom: 3px; background: #fff; border-radius: 50%; transition: transform 0.2s; }
.cb-toggle-switch input:checked + .cb-slider { background: #E8622A; }
.cb-toggle-switch input:checked + .cb-slider:before { transform: translateX(20px); }
.cb-panel-actions { padding-top: 16px; }

/* Responsywność */
@media (max-width: 640px) {
  #cookie-banner { padding: 16px; }
  .cb-buttons { width: 100%; flex-direction: column; gap: 8px; }
  .cb-btn { flex: none; width: 100%; min-width: 0; padding: 10px 12px; }
}
.floating-contact {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 90;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
}
.floating-contact .fc-btn {
  position: relative;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 4px 16px rgba(0,0,0,0.18);
  transition: transform 0.2s, box-shadow 0.2s;
}
.floating-contact .fc-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 24px rgba(0,0,0,0.25);
}
.floating-contact .fc-btn svg {
  width: 32px;
  height: 32px;
}
.fc-messenger { background: #0084FF; }
.fc-whatsapp { background: #25D366; }
.fc-phone { background: var(--accent, #E8622A); }

/* Tooltip — tylko desktop */
@media (min-width: 641px) {
  .fc-btn::before {
    content: attr(data-label);
    position: absolute;
    right: 72px;
    background: var(--dark, #0F1923);
    color: #fff;
    font-family: 'DM Sans', sans-serif;
    font-size: 13px;
    font-weight: 500;
    padding: 6px 12px;
    border-radius: 6px;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s;
  }
  .fc-btn:hover::before { opacity: 1; }
}

@media (max-width: 640px) {
  .floating-contact { bottom: 16px; right: 12px; gap: 8px; }
  .floating-contact .fc-btn { width: 42px; height: 42px; }
  .floating-contact .fc-btn svg { width: 22px; height: 22px; }
}

/* ──────────────────────────────────────────────────────── */
/* ARTICLE / BLOG STYLES                                   */
/* ──────────────────────────────────────────────────────── */

/* ─── CONTAINER — ARTICLE ─── */
article .container {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 24px;
}

.article-header { padding: 72px 0 40px; }

.article-meta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 13px;
  color: var(--text-muted);
  font-weight: 500;
  margin-bottom: 24px;
}

.article-meta-tag {
  background: rgba(232,98,42,0.1);
  color: var(--accent);
  padding: 4px 12px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.03em;
}

.article-title {
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 900;
  line-height: 1.08;
  margin-bottom: 20px;
  color: var(--dark);
}

.article-lead {
  font-size: 19px;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 20px;
}

.article-hero-img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  border-radius: 12px;
  margin: 0 0 56px;
  display: block;
}

.article-body {
  margin: 0;
  padding: 0;
  margin-bottom: 64px;
}

.article-body h2 {
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 900;
  margin: 48px 0 20px;
}

.article-body h3 { 
  font-size: 20px; 
  margin: 32px 0 12px; 
}

.article-body p { margin-bottom: 18px; }

.article-body ul,
.article-body ol { margin: 0 0 18px 24px; }

.article-body li { margin-bottom: 8px; }

.article-body blockquote {
  background: rgba(232,98,42,0.06);
  border-left: 3px solid var(--accent);
  border-radius: 0 8px 8px 0;
  padding: 20px 24px;
  margin: 28px 0;
  font-style: italic;
  color: var(--text);
  line-height: 1.6;
}

.article-body strong { color: var(--dark); }

/* ─── CTA BOX ─── */
.cta-box {
  background: var(--dark);
  color: #fff;
  border-radius: 12px;
  padding: 40px;
  margin: 48px 0;
  text-align: center;
}

.cta-box h3 { color: #fff; font-size: 24px; margin-bottom: 12px; }

.cta-box p  { color: rgba(255,255,255,0.7); margin-bottom: 24px; }

.cta-box a  {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  padding: 14px 32px;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s;
}

.cta-box a:hover { background: var(--accent-hover); transform: translateY(-1px); }

/* NAV w artykułach */
.nav-back {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  color: var(--text-muted);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s;
}

.nav-back:hover { color: var(--dark); }

/* ─── TABELA PORÓWNAWCZA ─── */
.compare-table { 
  width: 100%; 
  border-collapse: collapse; 
  margin: 28px 0; 
  font-size: 15px; 
}

.compare-table th { 
  background: var(--dark); 
  color: #fff; 
  padding: 14px 16px; 
  text-align: left; 
  font-size: 13px; 
  font-weight: 600; 
  letter-spacing: 0.03em; 
}

.compare-table th:first-child { border-radius: 8px 0 0 0; }
.compare-table th:last-child  { border-radius: 0 8px 0 0; }

.compare-table td { 
  padding: 14px 16px; 
  border-bottom: 1px solid var(--border); 
  background: var(--card-bg); 
}

.compare-table tr:last-child td { border-bottom: none; }
.compare-table tr:last-child td:first-child { border-radius: 0 0 0 8px; }
.compare-table tr:last-child td:last-child  { border-radius: 0 0 8px 0; }

.compare-table .highlight-row td { 
  background: rgba(232,98,42,0.06); 
  font-weight: 600; 
}

/* ─── NUMEROWANE ELEMENTY ─── */
.tip-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px; height: 36px;
  background: var(--accent);
  color: #fff;
  border-radius: 50%;
  font-family: 'Fraunces', serif;
  font-weight: 900;
  font-size: 18px;
  margin-right: 12px;
  flex-shrink: 0;
  vertical-align: middle;
}

/* ─── FOOTER ──────────────────────────────────────────── */
footer {
  background: var(--dark);
  color: rgba(255,255,255,0.5);
  padding: 48px 0;
  font-size: 14px;
}

.footer-inner {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.footer-brand  { color: #fff; font-weight: 600; font-size: 15px; }
.footer-links  { display: flex; gap: 20px; flex-wrap: wrap; }
.footer-links a { color: rgba(255,255,255,0.5); text-decoration: none; font-size: 13px; transition: color 0.2s; }
.footer-links a:hover { color: rgba(255,255,255,0.7); }
.footer-copy   { width: 100%; text-align: center; margin-top: 16px; font-size: 12px; color: rgba(255,255,255,0.3); }

/* ─── RESPONSIVE ARTYKUŁY ─── */
/* ──────────────────────────────────────────────────────── */
/* BLOG INDEX PAGE                                         */
/* ──────────────────────────────────────────────────────── */

.blog-header { padding: 80px 0 56px; text-align: center; }
.blog-header h1 { font-size: clamp(36px, 5vw, 56px); font-weight: 900; margin-bottom: 16px; }
.blog-header p { font-size: 19px; color: var(--text-muted); max-width: 560px; margin: 0 auto; }

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 32px;
  padding: 0 0 96px;
}

.blog-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.2s, box-shadow 0.2s;
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
}

.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.08);
}

.blog-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.blog-card-body {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.blog-card-tag {
  display: inline-block;
  background: rgba(232,98,42,0.1);
  color: var(--accent);
  padding: 4px 12px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 12px;
  width: fit-content;
}

.blog-card-body h2 {
  font-size: 22px;
  font-weight: 900;
  margin-bottom: 12px;
  line-height: 1.2;
}

.blog-card-body p {
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.55;
  flex: 1;
}

.blog-card-meta {
  padding: 16px 24px;
  border-top: 1px solid var(--border);
  font-size: 13px;
  color: var(--text-muted);
  display: flex;
  gap: 16px;
}

/* ─── RESPONSIVE ─── */
@media (max-width: 640px) {
  .article-hero-img { height: 220px; }
  .cta-box { padding: 28px 20px; }
  .compare-table { font-size: 13px; }
  .compare-table th, .compare-table td { padding: 10px 8px; }
  .footer-inner { flex-direction: column; align-items: flex-start; }
  .blog-grid { grid-template-columns: 1fr; }
}

/* ─── STRONY DOKUMENTÓW (regulamin, polityka, rodo) ─── */

.doc-header {
  padding: 56px 0 40px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 48px;
}
.doc-label {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent);
  background: var(--warn-bg);
  border: 1px solid rgba(232,98,42,0.2);
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 16px;
}
.doc-header h1 {
  font-family: 'Fraunces', serif;
  font-size: clamp(28px, 5vw, 42px);
  font-weight: 900;
  color: var(--dark);
  margin-bottom: 12px;
}
.doc-header .doc-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 14px;
  color: var(--text-muted);
  margin-top: 16px;
}
.doc-meta-item {
  display: flex;
  align-items: center;
  gap: 6px;
}
.doc-meta-item svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}

.doc-body {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 24px 80px;
}

.doc-section {
  margin-bottom: 48px;
  padding: 0;
}
.doc-section h2 {
  font-family: 'Fraunces', serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.sec-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: var(--accent);
  color: #fff;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 700;
  flex-shrink: 0;
}
.doc-section p {
  color: var(--text);
  line-height: 1.7;
  margin-bottom: 12px;
}

.rights-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 12px 0;
}
.rights-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 15px;
  color: var(--text);
  line-height: 1.6;
}
.bullet {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  background: var(--warn-bg);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}
.bullet svg {
  width: 10px;
  height: 10px;
  color: var(--accent);
}

.contact-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.contact-item {
  display: flex;
  gap: 12px;
  font-size: 15px;
}
.contact-item .label {
  color: var(--text-muted);
  min-width: 140px;
  flex-shrink: 0;
}
.contact-item .value {
  color: var(--dark);
  font-weight: 500;
}
.contact-item .value a {
  color: var(--accent);
  text-decoration: none;
}

.highlight-box {
  background: var(--warn-bg);
  border-left: 3px solid var(--accent);
  border-radius: 0 8px 8px 0;
  padding: 16px 20px;
  font-size: 15px;
  color: var(--text);
  margin: 16px 0;
  line-height: 1.6;
}

.toc {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 24px 28px;
  margin-bottom: 40px;
}
.toc-title {
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-muted);
  margin-bottom: 16px;
}
/* Styl spisu treści — wersja z klasą toc-list (polityka prywatności, RODO) */
.toc-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
}
.toc-list li {
  border-bottom: 1px solid var(--border);
}
.toc-list li:last-child {
  border-bottom: none;
}
.toc-list li a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 15px;
  color: var(--text);
  text-decoration: none;
  padding: 10px 4px;
  transition: color 0.2s;
}
.toc-list li a:hover { color: var(--accent); }
.toc-list li a svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  color: var(--text-muted);
}
.toc-num {
  color: var(--accent);
  font-weight: 600;
  margin-right: 8px;
}

/* Styl spisu treści — wersja bez klasy (regulamin) */
.toc ol:not(.toc-list) {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  counter-reset: toc-counter;
}
.toc ol:not(.toc-list) li {
  counter-increment: toc-counter;
  border-bottom: 1px solid var(--border);
}
.toc ol:not(.toc-list) li:last-child {
  border-bottom: none;
}
.toc ol:not(.toc-list) li a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 4px;
  color: var(--text);
  text-decoration: none;
  font-size: 15px;
  transition: color 0.2s;
}
.toc ol:not(.toc-list) li a:hover {
  color: var(--accent);
}
.toc ol:not(.toc-list) li a::before {
  content: counter(toc-counter, decimal-leading-zero);
  color: var(--accent);
  font-weight: 600;
  font-size: 13px;
  min-width: 22px;
  flex-shrink: 0;
}

.info-box {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 20px 24px;
  margin: 16px 0;
  font-size: 15px;
  line-height: 1.7;
}
.info-box p { margin-bottom: 6px; }
.info-box p:last-child { margin-bottom: 0; }

.privacy-content {
  max-width: 720px;
  margin: 0 auto;
  padding: 48px 24px 80px;
}
.privacy-content h1 {
  font-family: 'Fraunces', serif;
  font-size: clamp(28px, 5vw, 38px);
  font-weight: 900;
  color: var(--dark);
  margin-bottom: 8px;
}
.privacy-content h2 {
  font-family: 'Fraunces', serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--dark);
  margin: 32px 0 12px;
}
.privacy-content p {
  color: var(--text);
  line-height: 1.7;
  margin-bottom: 12px;
}
.privacy-content ul {
  padding-left: 20px;
  margin-bottom: 12px;
}
.privacy-content ul li {
  color: var(--text);
  line-height: 1.7;
  margin-bottom: 6px;
}
.privacy-content a { color: var(--accent); text-decoration: none; }

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--accent);
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  margin-top: 32px;
}

.rodo-content {
  max-width: 720px;
  margin: 0 auto;
  padding: 48px 24px 80px;
}
.rodo-content h1 {
  font-family: 'Fraunces', serif;
  font-size: clamp(28px, 5vw, 38px);
  font-weight: 900;
  color: var(--dark);
  margin-bottom: 8px;
}
.rodo-content h2 {
  font-family: 'Fraunces', serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--dark);
  margin: 32px 0 12px;
}
.rodo-content p {
  color: var(--text);
  line-height: 1.7;
  margin-bottom: 12px;
}
.rodo-content ul {
  padding-left: 20px;
  margin-bottom: 12px;
}
.rodo-content ul li {
  color: var(--text);
  line-height: 1.7;
  margin-bottom: 6px;
}

@media (max-width: 640px) {
  .doc-body { padding: 0 16px 60px; }
  .contact-item { flex-direction: column; gap: 2px; }
  .contact-item .label { min-width: unset; }
  .privacy-content, .rodo-content { padding: 32px 16px 60px; }
}
