/* artykuly */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    :root {
      --navy:      #10151b;
      --navy2:     #181f2a;
      --blue:      #09a4fb;
      --blue-dark: #0782c5;
      --blue-pale: #e8f5fe;
      --yellow:    #ffba00;
      --mist:      #f4f5f6;
      --border:    #e2e6ea;
      --text:      #2e3a46;
      --text-soft: #6b7a8d;
      --white:     #ffffff;
    }
    .dc-page-artykuly { scroll-behavior: smooth; }
    .dc-page-artykuly { font-family: 'Inter', sans-serif; background: var(--white); color: var(--navy); overflow-x: hidden; }

    /* ── TOPBAR ── */
    .topbar {
      background: var(--navy); color: rgba(255,255,255,.7);
      font-size: .75rem; padding: 9px 60px;
      display: flex; justify-content: space-between; align-items: center;
    }
    .topbar-left { display: flex; gap: 28px; align-items: center; }
    .topbar-left span { display: flex; align-items: center; gap: 6px; }
    .topbar-left svg { opacity: .6; }
    .topbar-right { display: flex; gap: 20px; align-items: center; }
    .topbar-right a { color: rgba(255,255,255,.55); text-decoration: none; transition: color .2s; }
    .topbar-right a:hover { color: var(--blue); }
    .topbar-phone { background: var(--blue); color: #fff !important; padding: 5px 14px; font-weight: 600; }

    /* ── NAV ── */
    nav {
      position: sticky; top: 0; z-index: 200;
      background: var(--white); border-bottom: 1px solid var(--border);
      display: flex; align-items: center; justify-content: space-between;
      padding: 0 60px; height: 68px;
      box-shadow: 0 1px 0 var(--border);
    }
    .logo { display: flex; align-items: center; text-decoration: none; }
    .logo img { height: 40px; width: auto; }
    .nav-links { display: flex; gap: 4px; list-style: none; }
    .nav-links a {
      font-size: .85rem; font-weight: 500; padding: 8px 14px;
      color: var(--text); text-decoration: none; border-radius: 6px;
      transition: background .2s, color .2s;
    }
    .nav-links a:hover { background: var(--mist); color: var(--navy); }
    .nav-links a.active { background: var(--blue-pale); color: var(--blue); }
    .nav-actions { display: flex; gap: 10px; align-items: center; }
    .nav-phone { font-size: .85rem; font-weight: 600; color: var(--navy); text-decoration: none; display: flex; align-items: center; gap: 7px; }
    .nav-phone svg { color: var(--blue); }
    .nav-cta {
      padding: 10px 22px; background: var(--blue); color: var(--white);
      font-size: .84rem; font-weight: 600; border-radius: 6px;
      text-decoration: none; transition: background .2s;
    }
    .nav-cta:hover { background: var(--blue-dark); }

    /* ── PAGE HERO ── */
    .page-hero {
      background: linear-gradient(120deg, var(--navy) 0%, #1a2840 100%);
      padding: 72px 60px 64px;
    }
    .page-hero-eyebrow {
      display: inline-flex; align-items: center; gap: 8px;
      font-size: .72rem; font-weight: 700; letter-spacing: .12em;
      text-transform: uppercase; color: var(--blue); margin-bottom: 16px;
    }
    .page-hero-eyebrow::before { content: ''; width: 20px; height: 2px; background: var(--blue); border-radius: 2px; }
    .page-hero h1 {
      font-family: 'Syne', sans-serif; font-size: clamp(2rem, 4vw, 3.2rem);
      font-weight: 700; color: var(--white); margin-bottom: 16px; line-height: 1.15;
    }
    .page-hero-sub { font-size: 1rem; color: rgba(255,255,255,.6); max-width: 520px; line-height: 1.7; }

    /* ── FILTER BAR ── */
    .filter-bar {
      background: var(--white); border-bottom: 1px solid var(--border);
      padding: 16px 60px; display: flex; gap: 8px; align-items: center; flex-wrap: wrap;
    }
    .filter-label { font-size: .75rem; font-weight: 600; color: var(--text-soft); margin-right: 8px; text-transform: uppercase; letter-spacing: .08em; }
    .filter-btn {
      padding: 7px 16px; border-radius: 20px; border: 1.5px solid var(--border);
      font-size: .8rem; font-weight: 500; color: var(--text); background: var(--white);
      cursor: pointer; transition: all .2s;
    }
    .filter-btn:hover, .filter-btn.active { background: var(--blue); border-color: var(--blue); color: var(--white); }

    /* ── ARTICLES GRID ── */
    .articles-section { padding: 60px 60px 100px; }
    .articles-featured { margin-bottom: 56px; }
    .featured-label {
      font-size: .72rem; font-weight: 700; letter-spacing: .12em;
      text-transform: uppercase; color: var(--text-soft); margin-bottom: 20px;
    }
    .featured-card {
      display: grid; grid-template-columns: 1fr 1fr; gap: 0;
      border: 1px solid var(--border); border-radius: 16px; overflow: hidden;
      transition: box-shadow .3s; text-decoration: none; color: inherit;
    }
    .featured-card:hover { box-shadow: 0 8px 40px rgba(0,0,0,.1); }
    .featured-img {
      background: linear-gradient(135deg, var(--navy) 0%, #1a2840 100%);
      min-height: 340px; display: flex; align-items: center; justify-content: center;
      position: relative; overflow: hidden;
    }
    .featured-img::before {
      content: ''; position: absolute; inset: 0;
      background: radial-gradient(ellipse at 30% 40%, rgba(9,164,251,.2) 0%, transparent 70%);
    }
    .featured-img-icon { color: rgba(9,164,251,.25); }
    .featured-body { padding: 48px 44px; display: flex; flex-direction: column; justify-content: center; }
    .article-category {
      display: inline-flex; align-items: center; gap: 6px;
      font-size: .72rem; font-weight: 700; letter-spacing: .1em;
      text-transform: uppercase; color: var(--blue);
      background: var(--blue-pale); padding: 5px 12px; border-radius: 4px;
      width: fit-content; margin-bottom: 20px;
    }
    .featured-body h2 {
      font-family: 'Syne', sans-serif; font-size: clamp(1.4rem, 2.5vw, 2rem);
      font-weight: 700; color: var(--navy); line-height: 1.2; margin-bottom: 16px;
    }
    .article-excerpt { font-size: .9rem; line-height: 1.75; color: var(--text-soft); margin-bottom: 28px; }
    .article-meta { display: flex; gap: 20px; align-items: center; flex-wrap: wrap; }
    .article-meta-item { display: flex; align-items: center; gap: 6px; font-size: .78rem; color: var(--text-soft); }
    .article-meta-item svg { opacity: .6; flex-shrink: 0; }
    .read-more {
      display: inline-flex; align-items: center; gap: 8px;
      font-size: .85rem; font-weight: 600; color: var(--blue);
      text-decoration: none; margin-top: 24px; transition: gap .2s;
    }
    .read-more:hover { gap: 12px; }

    /* Articles grid */
    .articles-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
    .article-card {
      border: 1px solid var(--border); border-radius: 12px; overflow: hidden;
      transition: box-shadow .3s, transform .3s; text-decoration: none; color: inherit;
      display: flex; flex-direction: column;
    }
    .article-card:hover { box-shadow: 0 8px 32px rgba(0,0,0,.08); transform: translateY(-3px); }
    .article-card-img {
      height: 180px; background: linear-gradient(135deg, var(--navy2) 0%, #253346 100%);
      display: flex; align-items: center; justify-content: center;
      position: relative; overflow: hidden;
    }
    .article-card-img::after {
      content: ''; position: absolute; inset: 0;
      background: linear-gradient(to bottom, transparent 50%, rgba(0,0,0,.3));
    }
    .article-card-body { padding: 24px; flex-grow: 1; display: flex; flex-direction: column; }
    .article-card h3 {
      font-family: 'Syne', sans-serif; font-size: 1rem; font-weight: 700;
      color: var(--navy); line-height: 1.3; margin: 12px 0 10px;
    }
    .article-card-excerpt { font-size: .83rem; line-height: 1.7; color: var(--text-soft); flex-grow: 1; }
    .article-card-footer {
      display: flex; justify-content: space-between; align-items: center;
      margin-top: 20px; padding-top: 16px; border-top: 1px solid var(--border);
    }
    .article-date { font-size: .75rem; color: var(--text-soft); }
    .article-read-time {
      font-size: .75rem; font-weight: 600; color: var(--blue);
      display: flex; align-items: center; gap: 4px;
    }

    /* Sidebar variant */
    .articles-with-sidebar {
      display: grid; grid-template-columns: 1fr 320px; gap: 48px; margin-top: 56px;
    }
    .sidebar-widget {
      background: var(--mist); border-radius: 12px; padding: 28px;
      border: 1px solid var(--border); margin-bottom: 24px;
    }
    .sidebar-widget-title {
      font-family: 'Syne', sans-serif; font-size: .95rem; font-weight: 700;
      color: var(--navy); margin-bottom: 18px;
      padding-bottom: 14px; border-bottom: 1px solid var(--border);
    }
    .sidebar-topic {
      display: flex; align-items: center; justify-content: space-between;
      padding: 9px 0; border-bottom: 1px solid var(--border); text-decoration: none;
      color: var(--text); font-size: .85rem; transition: color .2s;
    }
    .sidebar-topic:last-child { border-bottom: none; }
    .sidebar-topic:hover { color: var(--blue); }
    .sidebar-topic-count {
      font-size: .75rem; font-weight: 600; color: var(--text-soft);
      background: var(--border); padding: 2px 8px; border-radius: 10px;
    }
    .sidebar-cta {
      background: var(--navy); border-radius: 12px; padding: 28px;
      text-align: center; color: var(--white);
    }
    .sidebar-cta h4 { font-family: 'Syne', sans-serif; font-size: 1.05rem; margin-bottom: 10px; }
    .sidebar-cta p { font-size: .82rem; color: rgba(255,255,255,.6); margin-bottom: 20px; line-height: 1.6; }
    .sidebar-cta a {
      display: block; padding: 12px; background: var(--blue); color: white;
      border-radius: 8px; text-decoration: none; font-weight: 600; font-size: .85rem;
      transition: background .2s;
    }
    .sidebar-cta a:hover { background: var(--blue-dark); }

    /* ── NEWSLETTER ── */
    .newsletter {
      background: linear-gradient(120deg, var(--navy) 0%, #1a2840 100%);
      padding: 72px 60px; text-align: center;
    }
    .newsletter h2 {
      font-family: 'Syne', sans-serif; font-size: clamp(1.6rem, 3vw, 2.4rem);
      font-weight: 700; color: var(--white); margin-bottom: 12px;
    }
    .newsletter p { font-size: .95rem; color: rgba(255,255,255,.6); margin-bottom: 36px; }
    .newsletter-form { display: flex; gap: 12px; max-width: 480px; margin: 0 auto; }
    .newsletter-input {
      flex-grow: 1; padding: 14px 18px; border-radius: 8px;
      border: 1.5px solid rgba(255,255,255,.15);
      background: rgba(255,255,255,.08); color: var(--white);
      font-family: 'Inter', sans-serif; font-size: .9rem;
      outline: none; transition: border-color .2s;
    }
    .newsletter-input::placeholder { color: rgba(255,255,255,.35); }
    .newsletter-input:focus { border-color: var(--blue); }
    .newsletter-btn {
      padding: 14px 28px; background: var(--blue); color: var(--white);
      border: none; border-radius: 8px; font-family: 'Inter', sans-serif;
      font-size: .88rem; font-weight: 700; cursor: pointer; white-space: nowrap;
      transition: background .2s;
    }
    .newsletter-btn:hover { background: var(--blue-dark); }
    .newsletter-note { font-size: .75rem; color: rgba(255,255,255,.35); margin-top: 14px; }

    /* ── FOOTER ── */
    .footer-main {
      background: #0b0f16; padding: 60px 60px 40px;
      display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px;
    }
    .footer-brand img { height: 36px; margin-bottom: 16px; }
    .footer-brand-desc { font-size: .84rem; line-height: 1.75; color: rgba(255,255,255,.4); max-width: 260px; }
    .footer-reg { margin-top: 20px; font-size: .75rem; color: rgba(255,255,255,.25); line-height: 1.8; }
    .footer-col-title { font-size: .72rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: rgba(255,255,255,.35); margin-bottom: 18px; }
    .footer-col-links { display: flex; flex-direction: column; gap: 10px; }
    .footer-col-links a { font-size: .84rem; color: rgba(255,255,255,.5); text-decoration: none; transition: color .2s; }
    .footer-col-links a:hover { color: var(--blue); }
    .footer-bottom {
      background: #07090d; padding: 18px 60px;
      display: flex; justify-content: space-between; align-items: center;
      border-top: 1px solid rgba(255,255,255,.04);
    }
    .footer-bottom-copy { font-size: .75rem; color: rgba(255,255,255,.25); }
    .footer-bottom-links { display: flex; gap: 20px; }
    .footer-bottom-links a { font-size: .75rem; color: rgba(255,255,255,.25); text-decoration: none; transition: color .2s; }
    .footer-bottom-links a:hover { color: var(--blue); }

    /* ── REVEAL ── */
    .reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s cubic-bezier(.16,1,.3,1), transform .7s cubic-bezier(.16,1,.3,1); }
    .reveal.visible { opacity: 1; transform: translateY(0); }
    .reveal-delay-1 { transition-delay: .1s; }
    .reveal-delay-2 { transition-delay: .2s; }
    .reveal-delay-3 { transition-delay: .3s; }

    /* ── RESPONSIVE ── */
    @media (max-width: 1100px) {
      .topbar, nav, .page-hero, .filter-bar, .articles-section, .newsletter, .footer-main, .footer-bottom { padding-left: 32px; padding-right: 32px; }
      .articles-grid { grid-template-columns: 1fr 1fr; }
      .featured-card { grid-template-columns: 1fr; }
      .featured-img { min-height: 220px; }
      .articles-with-sidebar { grid-template-columns: 1fr; }
      .footer-main { grid-template-columns: 1fr 1fr; }
    }
    @media (max-width: 640px) {
      .topbar { display: none; }
      nav { padding: 0 20px; }
      .nav-links, .nav-phone { display: none; }
      .page-hero, .filter-bar, .articles-section, .newsletter { padding-left: 20px; padding-right: 20px; }
      .articles-grid { grid-template-columns: 1fr; }
      .newsletter-form { flex-direction: column; }
      .footer-main { grid-template-columns: 1fr; padding: 36px 20px; }
      .footer-bottom { flex-direction: column; gap: 12px; padding: 16px 20px; }
    }
/* kalkulator */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    :root {
      --navy:      #10151b;
      --navy2:     #181f2a;
      --blue:      #09a4fb;
      --blue-dark: #0782c5;
      --blue-pale: #e8f5fe;
      --yellow:    #ffba00;
      --mist:      #f4f5f6;
      --border:    #e2e6ea;
      --text:      #2e3a46;
      --text-soft: #6b7a8d;
      --white:     #ffffff;
      --green:     #00c98e;
      --green-pale:#e6faf5;
    }
    .dc-page-kalkulator { scroll-behavior: smooth; }
    .dc-page-kalkulator { font-family: 'Inter', sans-serif; background: var(--mist); color: var(--navy); overflow-x: hidden; }

    /* ── TOPBAR ── */
    .topbar {
      background: var(--navy); color: rgba(255,255,255,.7);
      font-size: .75rem; padding: 9px 60px;
      display: flex; justify-content: space-between; align-items: center;
    }
    .topbar-left { display: flex; gap: 28px; align-items: center; }
    .topbar-left span { display: flex; align-items: center; gap: 6px; }
    .topbar-left svg { opacity: .6; }
    .topbar-right { display: flex; gap: 20px; align-items: center; }
    .topbar-right a { color: rgba(255,255,255,.55); text-decoration: none; transition: color .2s; }
    .topbar-right a:hover { color: var(--blue); }
    .topbar-phone { background: var(--blue); color: #fff !important; padding: 5px 14px; font-weight: 600; }

    /* ── NAV ── */
    nav {
      position: sticky; top: 0; z-index: 200;
      background: var(--white); border-bottom: 1px solid var(--border);
      display: flex; align-items: center; justify-content: space-between;
      padding: 0 60px; height: 68px; box-shadow: 0 1px 0 var(--border);
    }
    .logo { display: flex; align-items: center; text-decoration: none; }
    .logo img { height: 40px; width: auto; }
    .nav-links { display: flex; gap: 4px; list-style: none; }
    .nav-links a {
      font-size: .85rem; font-weight: 500; padding: 8px 14px;
      color: var(--text); text-decoration: none; border-radius: 6px;
      transition: background .2s, color .2s;
    }
    .nav-links a:hover { background: var(--mist); color: var(--navy); }
    .nav-links a.active { background: var(--blue-pale); color: var(--blue); }
    .nav-actions { display: flex; gap: 10px; align-items: center; }
    .nav-phone { font-size: .85rem; font-weight: 600; color: var(--navy); text-decoration: none; display: flex; align-items: center; gap: 7px; }
    .nav-phone svg { color: var(--blue); }
    .nav-cta {
      padding: 10px 22px; background: var(--blue); color: var(--white);
      font-size: .84rem; font-weight: 600; border-radius: 6px;
      text-decoration: none; transition: background .2s;
    }
    .nav-cta:hover { background: var(--blue-dark); }

    /* ── PAGE HERO ── */
    .page-hero {
      background: linear-gradient(120deg, var(--navy) 0%, #1a2840 100%);
      padding: 64px 60px 56px;
    }
    .page-hero-eyebrow {
      display: inline-flex; align-items: center; gap: 8px;
      font-size: .72rem; font-weight: 700; letter-spacing: .12em;
      text-transform: uppercase; color: var(--blue); margin-bottom: 16px;
    }
    .page-hero-eyebrow::before { content: ''; width: 20px; height: 2px; background: var(--blue); border-radius: 2px; }
    .page-hero h1 {
      font-family: 'Syne', sans-serif; font-size: clamp(1.8rem, 3.5vw, 2.8rem);
      font-weight: 700; color: var(--white); margin-bottom: 12px; line-height: 1.15;
    }
    .page-hero-sub { font-size: .95rem; color: rgba(255,255,255,.6); max-width: 540px; line-height: 1.7; }
    .page-hero-badges { display: flex; gap: 10px; margin-top: 24px; flex-wrap: wrap; }
    .hero-pill {
      display: flex; align-items: center; gap: 6px;
      background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.12);
      padding: 6px 14px; border-radius: 20px;
      font-size: .76rem; color: rgba(255,255,255,.7); font-weight: 500;
    }
    .hero-pill svg { opacity: .7; }

    /* ── MAIN LAYOUT ── */
    .calc-layout {
      display: grid; grid-template-columns: 1fr 400px; gap: 28px;
      max-width: 1200px; margin: 0 auto; padding: 40px 60px 80px;
    }

    /* ── CALCULATOR ── */
    .calc-card {
      background: var(--white); border-radius: 16px;
      border: 1px solid var(--border);
      overflow: hidden;
    }
    .calc-steps {
      display: flex; border-bottom: 1px solid var(--border);
    }
    .calc-step-tab {
      flex: 1; padding: 16px 12px; text-align: center;
      font-size: .78rem; font-weight: 600; color: var(--text-soft);
      border-bottom: 2px solid transparent; cursor: pointer;
      transition: color .2s; position: relative;
    }
    .calc-step-tab.active { color: var(--blue); border-bottom-color: var(--blue); }
    .calc-step-tab.done { color: var(--green); }
    .calc-step-tab .step-num {
      display: inline-flex; align-items: center; justify-content: center;
      width: 22px; height: 22px; border-radius: 50%;
      background: var(--mist); font-size: .7rem; font-weight: 700;
      margin-right: 6px; transition: background .2s, color .2s;
    }
    .calc-step-tab.active .step-num { background: var(--blue); color: var(--white); }
    .calc-step-tab.done .step-num { background: var(--green); color: var(--white); }

    .calc-body { padding: 36px 40px; }
    .calc-section { display: none; }
    .calc-section.active { display: block; }

    .calc-section-title {
      font-family: 'Syne', sans-serif; font-size: 1.2rem; font-weight: 700;
      color: var(--navy); margin-bottom: 6px;
    }
    .calc-section-sub { font-size: .85rem; color: var(--text-soft); margin-bottom: 28px; line-height: 1.6; }

    /* Media type cards */
    .media-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 28px; }
    .media-card {
      border: 2px solid var(--border); border-radius: 12px;
      padding: 20px 18px; cursor: pointer; transition: all .2s;
      position: relative;
    }
    .media-card:hover { border-color: var(--blue); background: var(--blue-pale); }
    .media-card.selected { border-color: var(--blue); background: var(--blue-pale); }
    .media-card-check {
      position: absolute; top: 12px; right: 12px;
      width: 20px; height: 20px; border-radius: 50%;
      border: 2px solid var(--border); display: flex; align-items: center; justify-content: center;
      transition: all .2s;
    }
    .media-card.selected .media-card-check { background: var(--blue); border-color: var(--blue); }
    .media-card.selected .media-card-check::after { content: '✓'; color: white; font-size: .65rem; font-weight: 700; }
    .media-icon {
      width: 44px; height: 44px; border-radius: 10px;
      background: var(--mist); display: flex; align-items: center; justify-content: center;
      margin-bottom: 12px; transition: background .2s;
    }
    .media-card.selected .media-icon { background: rgba(9,164,251,.15); }
    .media-icon svg { color: var(--text-soft); transition: color .2s; }
    .media-card.selected .media-icon svg { color: var(--blue); }
    .media-name { font-size: .9rem; font-weight: 700; color: var(--navy); margin-bottom: 4px; }
    .media-desc { font-size: .76rem; color: var(--text-soft); line-height: 1.4; }

    /* Quantity slider */
    .qty-group { margin-bottom: 28px; }
    .qty-label {
      font-size: .8rem; font-weight: 600; color: var(--text);
      margin-bottom: 12px; display: flex; justify-content: space-between; align-items: center;
    }
    .qty-value {
      font-family: 'Syne', sans-serif; font-size: 1.1rem; font-weight: 700;
      color: var(--blue); min-width: 60px; text-align: right;
    }
    input[type=range] {
      width: 100%; height: 6px; border-radius: 3px;
      background: var(--border); outline: none; cursor: pointer;
      -webkit-appearance: none; appearance: none;
    }
    input[type=range]::-webkit-slider-thumb {
      -webkit-appearance: none; appearance: none;
      width: 20px; height: 20px; border-radius: 50%;
      background: var(--blue); cursor: pointer;
      box-shadow: 0 2px 8px rgba(9,164,251,.4);
    }
    .qty-marks {
      display: flex; justify-content: space-between;
      font-size: .7rem; color: var(--text-soft); margin-top: 6px;
    }

    /* Options */
    .options-grid { display: flex; flex-direction: column; gap: 12px; margin-bottom: 24px; }
    .option-row {
      display: flex; align-items: center; justify-content: space-between;
      padding: 16px 18px; border: 1.5px solid var(--border); border-radius: 10px;
      cursor: pointer; transition: border-color .2s, background .2s;
    }
    .option-row:hover { border-color: var(--blue); }
    .option-row.selected { border-color: var(--blue); background: var(--blue-pale); }
    .option-left { display: flex; align-items: center; gap: 14px; }
    .option-icon {
      width: 38px; height: 38px; border-radius: 8px;
      background: var(--mist); display: flex; align-items: center; justify-content: center;
      flex-shrink: 0; transition: background .2s;
    }
    .option-row.selected .option-icon { background: rgba(9,164,251,.15); }
    .option-icon svg { color: var(--text-soft); transition: color .2s; }
    .option-row.selected .option-icon svg { color: var(--blue); }
    .option-name { font-size: .88rem; font-weight: 600; color: var(--navy); }
    .option-desc { font-size: .76rem; color: var(--text-soft); margin-top: 2px; }
    .option-price { font-size: .85rem; font-weight: 700; color: var(--blue); white-space: nowrap; }
    .option-price small { font-size: .7rem; font-weight: 400; color: var(--text-soft); }

    /* Toggle switches */
    .toggles-grid { display: flex; flex-direction: column; gap: 10px; margin-bottom: 28px; }
    .toggle-row {
      display: flex; align-items: center; justify-content: space-between;
      padding: 14px 18px; background: var(--mist); border-radius: 10px;
      border: 1px solid var(--border);
    }
    .toggle-left {}
    .toggle-name { font-size: .87rem; font-weight: 600; color: var(--navy); }
    .toggle-desc { font-size: .75rem; color: var(--text-soft); margin-top: 2px; }
    .toggle-right { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
    .toggle-add { font-size: .78rem; color: var(--text-soft); }
    .toggle {
      width: 44px; height: 24px; border-radius: 12px; background: var(--border);
      border: none; cursor: pointer; position: relative; transition: background .25s;
      flex-shrink: 0;
    }
    .toggle::after {
      content: ''; position: absolute; top: 3px; left: 3px;
      width: 18px; height: 18px; border-radius: 50%;
      background: var(--white); transition: transform .25s;
      box-shadow: 0 1px 4px rgba(0,0,0,.2);
    }
    .toggle.on { background: var(--blue); }
    .toggle.on::after { transform: translateX(20px); }

    /* Buttons */
    .calc-nav { display: flex; justify-content: space-between; align-items: center; margin-top: 32px; padding-top: 24px; border-top: 1px solid var(--border); }
    .btn-back {
      padding: 12px 24px; border: 1.5px solid var(--border); border-radius: 8px;
      font-size: .87rem; font-weight: 600; color: var(--text); background: var(--white);
      cursor: pointer; transition: border-color .2s;
    }
    .btn-back:hover { border-color: var(--navy); }
    .btn-next {
      padding: 12px 28px; background: var(--blue); color: var(--white);
      border: none; border-radius: 8px; font-size: .87rem; font-weight: 700;
      cursor: pointer; display: flex; align-items: center; gap: 8px;
      transition: background .2s, transform .15s;
    }
    .btn-next:hover { background: var(--blue-dark); transform: translateY(-1px); }
    .btn-next svg { transition: transform .2s; }
    .btn-next:hover svg { transform: translateX(3px); }

    /* Contact form in calc */
    .contact-form-calc { display: flex; flex-direction: column; gap: 14px; }
    .cf-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
    .cf-group label { display: block; font-size: .72rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; color: var(--text); margin-bottom: 7px; }
    .cf-group input,
    .cf-group select,
    .cf-group textarea {
      width: 100%; padding: 11px 14px; border: 1.5px solid var(--border); border-radius: 8px;
      font-family: 'Inter', sans-serif; font-size: .88rem; color: var(--navy);
      outline: none; background: var(--white); appearance: none;
      transition: border-color .2s, box-shadow .2s;
    }
    .cf-group input:focus,
    .cf-group select:focus,
    .cf-group textarea:focus { border-color: var(--blue); box-shadow: 0 0 0 3px rgba(9,164,251,.1); }
    .cf-group textarea { height: 90px; resize: none; }
    .btn-submit {
      width: 100%; padding: 15px; background: var(--blue); color: var(--white);
      border: none; border-radius: 8px; font-family: 'Inter', sans-serif;
      font-size: .9rem; font-weight: 700; cursor: pointer;
      transition: background .2s, transform .15s; box-shadow: 0 4px 16px rgba(9,164,251,.3);
    }
    .btn-submit:hover { background: var(--blue-dark); transform: translateY(-1px); }

    /* ── SUMMARY SIDEBAR ── */
    .summary-card {
      background: var(--white); border-radius: 16px;
      border: 1px solid var(--border); overflow: hidden;
      position: sticky; top: 88px;
    }
    .summary-header {
      background: var(--navy); padding: 24px 28px;
    }
    .summary-header-title {
      font-family: 'Syne', sans-serif; font-size: 1rem; font-weight: 700;
      color: var(--white); margin-bottom: 4px;
    }
    .summary-header-sub { font-size: .78rem; color: rgba(255,255,255,.5); }
    .summary-body { padding: 24px 28px; }
    .summary-line {
      display: flex; justify-content: space-between; align-items: flex-start;
      padding: 10px 0; border-bottom: 1px solid var(--border);
      font-size: .84rem;
    }
    .summary-line:last-of-type { border-bottom: none; }
    .summary-line-label { color: var(--text-soft); line-height: 1.4; max-width: 160px; }
    .summary-line-val { font-weight: 600; color: var(--navy); text-align: right; }
    .summary-line-val.blue { color: var(--blue); }
    .summary-line-val.green { color: var(--green); }
    .summary-total {
      background: var(--mist); border-radius: 10px;
      padding: 20px; margin-top: 20px;
    }
    .summary-total-label { font-size: .75rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--text-soft); margin-bottom: 8px; }
    .summary-total-price {
      font-family: 'Syne', sans-serif; font-size: 2rem; font-weight: 800;
      color: var(--navy); line-height: 1;
    }
    .summary-total-price span { font-size: .9rem; font-weight: 400; color: var(--text-soft); }
    .summary-total-note { font-size: .74rem; color: var(--text-soft); margin-top: 6px; line-height: 1.5; }
    .summary-savings {
      display: flex; align-items: center; gap: 8px;
      background: var(--green-pale); border: 1px solid rgba(0,201,142,.2);
      border-radius: 8px; padding: 10px 14px; margin-top: 12px;
      font-size: .8rem; color: #00875a; font-weight: 500;
    }
    .summary-savings svg { color: var(--green); flex-shrink: 0; }
    .summary-cta-info { padding: 20px 28px; border-top: 1px solid var(--border); }
    .summary-cta-info p { font-size: .8rem; color: var(--text-soft); line-height: 1.6; }
    .summary-guarantees { padding: 20px 28px; border-top: 1px solid var(--border); display: flex; flex-direction: column; gap: 10px; }
    .guarantee-item { display: flex; align-items: center; gap: 10px; font-size: .78rem; color: var(--text-soft); }
    .guarantee-item svg { color: var(--green); flex-shrink: 0; }

    /* ── TRUST BAR ── */
    .trust-bar {
      background: var(--white); border-top: 1px solid var(--border);
      padding: 32px 60px;
      display: flex; align-items: center; justify-content: center; gap: 48px; flex-wrap: wrap;
    }
    .trust-bar-item { display: flex; align-items: center; gap: 10px; font-size: .82rem; color: var(--text-soft); }
    .trust-bar-item svg { color: var(--blue); flex-shrink: 0; }
    .trust-bar-item strong { color: var(--navy); }

    /* ── FAQ ── */
    .faq-section { background: var(--mist); padding: 72px 60px; }
    .faq-section h2 { font-family: 'Syne', sans-serif; font-size: 1.8rem; font-weight: 700; color: var(--navy); margin-bottom: 36px; text-align: center; }
    .faq-list { max-width: 720px; margin: 0 auto; display: flex; flex-direction: column; gap: 0; }
    .faq-item { border-bottom: 1px solid var(--border); }
    .faq-q {
      display: flex; align-items: center; justify-content: space-between; gap: 16px;
      padding: 20px 0; cursor: pointer; font-size: .92rem; font-weight: 600; color: var(--navy);
    }
    .faq-q svg { flex-shrink: 0; transition: transform .25s; color: var(--blue); }
    .faq-item.open .faq-q svg { transform: rotate(45deg); }
    .faq-a { font-size: .87rem; line-height: 1.75; color: var(--text-soft); padding-bottom: 20px; display: none; }
    .faq-item.open .faq-a { display: block; }

    /* ── FOOTER ── */
    .footer-main {
      background: #0b0f16; padding: 60px 60px 40px;
      display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px;
    }
    .footer-brand img { height: 36px; margin-bottom: 16px; }
    .footer-brand-desc { font-size: .84rem; line-height: 1.75; color: rgba(255,255,255,.4); max-width: 260px; }
    .footer-reg { margin-top: 20px; font-size: .75rem; color: rgba(255,255,255,.25); line-height: 1.8; }
    .footer-col-title { font-size: .72rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: rgba(255,255,255,.35); margin-bottom: 18px; }
    .footer-col-links { display: flex; flex-direction: column; gap: 10px; }
    .footer-col-links a { font-size: .84rem; color: rgba(255,255,255,.5); text-decoration: none; transition: color .2s; }
    .footer-col-links a:hover { color: var(--blue); }
    .footer-bottom {
      background: #07090d; padding: 18px 60px;
      display: flex; justify-content: space-between; align-items: center;
      border-top: 1px solid rgba(255,255,255,.04);
    }
    .footer-bottom-copy { font-size: .75rem; color: rgba(255,255,255,.25); }
    .footer-bottom-links { display: flex; gap: 20px; }
    .footer-bottom-links a { font-size: .75rem; color: rgba(255,255,255,.25); text-decoration: none; transition: color .2s; }
    .footer-bottom-links a:hover { color: var(--blue); }

    @media (max-width: 1100px) {
      .topbar, nav, .page-hero, .calc-layout, .trust-bar, .faq-section { padding-left: 32px; padding-right: 32px; }
      .calc-layout { grid-template-columns: 1fr; }
      .summary-card { position: static; }
      .footer-main { grid-template-columns: 1fr 1fr; padding: 48px 32px; }
      .footer-bottom { padding: 16px 32px; }
    }
    @media (max-width: 640px) {
      .topbar { display: none; }
      nav { padding: 0 20px; }
      .nav-links, .nav-phone { display: none; }
      .page-hero, .calc-layout, .trust-bar, .faq-section { padding-left: 20px; padding-right: 20px; }
      .media-grid { grid-template-columns: 1fr; }
      .cf-row { grid-template-columns: 1fr; }
      .footer-main { grid-template-columns: 1fr; padding: 36px 20px; }
      .footer-bottom { flex-direction: column; gap: 12px; padding: 16px 20px; }
      .trust-bar { gap: 24px; }
    }

/* Blog post single + legacy article pages */
.dc-page-article {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 0;
  background: var(--white);
  font-family: 'Inter', sans-serif;
}
.dc-page-article .article-single-wrap {
  max-width: none;
  margin: 0;
  padding: 0;
}
.dc-page-article .article-back-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 24px;
  margin-bottom: 32px;
}
.dc-page-article .article-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .85rem;
  font-weight: 600;
  color: var(--blue);
  text-decoration: none;
  font-family: 'Inter', sans-serif;
}
.dc-page-article .article-back:hover { text-decoration: underline; }
.dc-article-layout-row > .container-fluid,
.dc-page-article .dc-article-layout-row > .container-fluid.article-single-wrap {
  max-width: 1320px;
  margin: 0 auto;
  padding: 48px 50px 100px;
}
.dc-article-layout-row > .container-fluid .row.article-single-layout,
.dc-page-article .row.article-single-layout {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 48px;
  margin: 0;
}
.dc-article-layout-row .article-single-main,
.dc-page-article .article-single-main {
  flex: 0 1 700px;
  max-width: 700px;
  min-width: 0;
  width: 100%;
  padding: 0;
  float: none;
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  line-height: 1.8;
  color: var(--text);
}
.dc-page-article .article-single-main-inner {
  min-width: 0;
  width: 100%;
}
.dc-article-layout-row .article-single-sidebar-col,
.dc-article-layout-row .row.article-single-layout > .article-single-sidebar,
.dc-page-article .article-single-sidebar-col {
  flex: 0 0 300px;
  max-width: 300px;
  width: 100%;
  padding: 0;
  float: none;
}
.dc-article-layout-row aside.article-single-sidebar,
.dc-page-article aside.article-single-sidebar {
  position: sticky;
  top: 88px;
}
.dc-page-article .dc-article-inline-widget-row > .container-fluid,
.dc-page-article .dc-article-inline-widget-row .container-fluid {
  padding-left: 0;
  padding-right: 0;
  max-width: 100%;
  width: 100%;
}
.dc-page-article .dc-article-inline-widget-row .row { margin: 0; }
.dc-page-article .dc-article-inline-widget-row .moto-cell {
  padding: 0;
  float: none;
  width: 100%;
  max-width: 100%;
}
.dc-page-article [data-widget="blog.post_content"] section#section-content,
.dc-page-article [data-widget="blog.post_content"] section.moto-section {
  max-width: 100% !important;
  width: 100% !important;
  padding: 0 !important;
  margin: 0 !important;
}
.dc-page-article .article-page-hero {
  margin-bottom: 28px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border);
}
.dc-page-article .article-page-hero h1 {
  font-family: 'Syne', sans-serif;
  font-size: clamp(1.75rem, 2.8vw, 2.5rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--navy);
  margin: 0;
}
.dc-page-article .moto-widget-blog__post-name,
.dc-page-article .moto-widget-blog_post_name { margin: 0; }
.dc-page-article .moto-widget-blog__post-name .moto-widget-blog__post-name-title,
.dc-page-article h1.moto-widget-blog__post-name-title,
.dc-page-article .moto-widget-blog_post_name h1,
.dc-page-article .moto-widget-blog-post_name h1 {
  font-family: 'Syne', sans-serif !important;
  font-size: clamp(1.75rem, 2.8vw, 2.5rem) !important;
  font-weight: 700 !important;
  line-height: 1.15 !important;
  color: var(--navy) !important;
  margin: 0 !important;
}
.dc-page-article .moto-widget-blog__post-published-on,
.dc-page-article .moto-widget-blog_post_published_on {
  font-size: .82rem;
  color: var(--text-soft);
  margin: 12px 0 0;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border);
  font-family: 'Inter', sans-serif;
}
.dc-page-article .article-single-prose {
  margin-top: 32px;
}
.dc-page-article .article-single-main [data-widget="blog.post_name"],
.dc-page-article .article-single-main [data-widget="blog.post_published_on"],
.dc-page-article .article-single-main [data-widget="image"],
.dc-page-article .article-single-main .moto-widget-image {
  column-span: all;
}
.dc-page-article .article-single-prose .moto-widget-row,
.dc-page-article .article-single-main > .moto-widget-row,
.dc-page-article .dc-article-prose .moto-widget-row {
  margin: 0 0 1.25em;
}
.dc-page-article .article-single-main .moto-widget-row .container-fluid,
.dc-page-article .article-single-main .container-fluid,
.dc-page-article .dc-article-prose .container-fluid {
  max-width: 100% !important;
  width: 100% !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
}
.dc-page-article .article-single-main .row,
.dc-page-article .dc-article-prose .row { margin: 0; }
.dc-page-article .article-single-main .moto-cell,
.dc-page-article .dc-article-prose .moto-cell {
  float: none;
  width: 100%;
  max-width: 100%;
  padding: 0;
}
.dc-page-article .article-single-main .dc-article-two-column-row > .container-fluid > .row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 34px;
}
.dc-page-article .article-single-main .dc-article-two-column-row .dc-article-column {
  width: auto !important;
  max-width: none;
  min-width: 0;
  padding: 0 !important;
}
.dc-page-article .article-single-main .dc-article-two-column-row .dc-article-column-left {
  padding-right: 18px !important;
  border-right: 1px solid var(--border);
}
.dc-page-article .article-single-main .dc-article-two-column-row .dc-article-column-right {
  padding-left: 0 !important;
}
.dc-page-article .article-single-prose,
.dc-page-article .dc-article-content,
.dc-page-article .dc-article-prose,
.dc-page-article .moto-widget-blog__post-content,
.dc-page-article .moto-widget-blog_post_content,
.dc-page-article .moto-widget-text-content {
  font-family: 'Inter', sans-serif !important;
  font-size: 1rem;
  line-height: 1.8;
  color: var(--text);
}
.dc-page-article .article-single-prose p,
.dc-page-article .dc-article-content p,
.dc-page-article .dc-article-prose p,
.dc-page-article .moto-widget-blog__post-content p,
.dc-page-article .moto-widget-blog_post_content p,
.dc-page-article .moto-widget-text-content p {
  margin: 0 0 1.1em;
  font-size: 1rem;
  line-height: 1.8;
  color: var(--text);
}
.dc-page-article .article-single-prose h2,
.dc-page-article .dc-article-content h2,
.dc-page-article .dc-article-prose h2,
.dc-page-article .moto-widget-blog__post-content h2,
.dc-page-article .moto-widget-text-content h2 {
  font-family: 'Syne', sans-serif;
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--navy);
  margin: 2em 0 .65em;
  line-height: 1.25;
}
.dc-page-article .article-single-prose h3,
.dc-page-article .dc-article-content h3,
.dc-page-article .dc-article-prose h3,
.dc-page-article .moto-widget-blog__post-content h3,
.dc-page-article .moto-widget-text-content h3 {
  font-family: 'Syne', sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--navy);
  margin: 1.6em 0 .5em;
  line-height: 1.3;
}
.dc-page-article .article-single-prose h4,
.dc-page-article .dc-article-content h4,
.dc-page-article .dc-article-prose h4 {
  font-family: 'Syne', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  margin: 1.4em 0 .45em;
}
.dc-page-article .article-single-prose a,
.dc-page-article .dc-article-content a,
.dc-page-article .dc-article-prose a,
.dc-page-article .moto-widget-text-content a {
  color: var(--blue);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.dc-page-article .article-single-prose a:hover,
.dc-page-article .dc-article-content a:hover,
.dc-page-article .dc-article-prose a:hover { color: var(--blue-dark); }
.dc-page-article .article-single-prose ul,
.dc-page-article .article-single-prose ol,
.dc-page-article .dc-article-content ul,
.dc-page-article .dc-article-content ol,
.dc-page-article .dc-article-prose ul,
.dc-page-article .dc-article-prose ol {
  margin: 0 0 1.2em 1.4em;
  padding: 0;
}
.dc-page-article .article-single-prose li,
.dc-page-article .dc-article-content li,
.dc-page-article .dc-article-prose li {
  margin-bottom: .45em;
  line-height: 1.75;
}
.dc-page-article .article-single-prose blockquote,
.dc-page-article .dc-article-content blockquote,
.dc-page-article .dc-article-prose blockquote {
  margin: 1.5em 0;
  padding: 16px 20px;
  border-left: 4px solid var(--blue);
  background: var(--mist);
  border-radius: 0 8px 8px 0;
  color: var(--text-soft);
  font-style: italic;
}
.dc-page-article .moto-widget-image,
.dc-page-article .moto-widget-image__wrapper,
.dc-page-article .article-single-main .moto-widget-image {
  margin: 1.75em 0;
  text-align: center;
  max-width: 100%;
}
.dc-page-article .moto-widget-image img,
.dc-page-article .dc-article-img,
.dc-page-article .article-single-prose img,
.dc-page-article .dc-article-content img,
.dc-page-article .dc-article-prose img,
.dc-page-article .moto-widget-blog__post-content img,
.dc-page-article .article-single-main .moto-widget-image img {
  max-width: 100% !important;
  width: 100% !important;
  height: auto !important;
  border-radius: 12px;
  display: block;
  margin: 0 auto;
  box-shadow: 0 4px 24px rgba(13,33,55,.08);
}
.dc-page-article .moto-widget-spacer,
.dc-page-article .moto-widget-divider { display: none; }
.dc-page-article .moto-spacing-top-large,
.dc-page-article .moto-spacing-top-medium { margin-top: 0 !important; padding-top: 0 !important; }
.dc-page-article .moto-spacing-bottom-large,
.dc-page-article .moto-spacing-bottom-medium { margin-bottom: 0 !important; padding-bottom: 0 !important; }
.dc-page-article .moto-widget-text.moto-spacing-top-auto { margin-top: 0; }
.dc-page-article table.dc-article-table {
  width: 700px;
  max-width: 700px;
  table-layout: fixed;
  margin: 0 0 1.25em;
}
.dc-page-article table.dc-article-table td {
  border: none;
  vertical-align: top;
  word-wrap: break-word;
  overflow-wrap: anywhere;
}
.dc-page-article table.dc-article-table td.dc-article-table-col-left {
  border-right: 1px solid var(--border);
}
.dc-page-article table:not(.dc-article-table) {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5em 0;
  font-size: .92rem;
}
.dc-page-article table:not(.dc-article-table) th,
.dc-page-article table:not(.dc-article-table) td {
  border: 1px solid var(--border);
  padding: 10px 14px;
  text-align: left;
}
.dc-page-article table:not(.dc-article-table) th {
  background: var(--mist);
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  color: var(--navy);
}
@media (max-width: 960px) {
  .dc-page-article .dc-article-layout-row > .container-fluid.article-single-wrap { padding: 32px 32px 72px; }
  .dc-page-article .row.article-single-layout {
    flex-direction: column;
    gap: 40px;
  }
  .dc-page-article .article-single-main,
  .dc-page-article .article-single-sidebar-col {
    flex: 1 1 100%;
    max-width: 100%;
  }
  .dc-page-article aside.article-single-sidebar { position: static; }
  .dc-page-article .article-single-main .dc-article-two-column-row > .container-fluid > .row {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .dc-page-article .article-single-main .dc-article-two-column-row .dc-article-column-left {
    border-right: none;
    padding-right: 0 !important;
  }
  .dc-page-article table.dc-article-table,
  body.datacare-theme table.dc-article-table {
    width: 100% !important;
    max-width: 100% !important;
  }
  .dc-page-article table.dc-article-table tr,
  body.datacare-theme table.dc-article-table tr {
    display: block;
  }
  .dc-page-article table.dc-article-table td,
  body.datacare-theme table.dc-article-table td {
    display: block;
    width: 100% !important;
    border-right: none !important;
  }
}
@media (max-width: 640px) {
  .dc-page-article .article-single-wrap { padding: 24px 20px 64px; }
}
.dc-page-blog .filter-bar { display: none; }
.dc-load-more-btn {
  padding: 14px 36px; border: 1.5px solid var(--border); border-radius: 8px;
  background: var(--white); font-size: .88rem; font-weight: 600; color: var(--text);
  cursor: pointer; transition: all .2s; font-family: 'Inter', sans-serif;
}
.dc-load-more-btn:hover { border-color: var(--blue); color: var(--blue); }
.article-card-img img, .featured-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.sidebar-popular-link {
  font-size: .82rem; line-height: 1.4; padding: 12px 0; align-items: flex-start; gap: 10px;
  display: flex; border-bottom: 1px solid var(--border); text-decoration: none; color: var(--text);
}
.sidebar-popular-link:last-child { border-bottom: none; }
.sidebar-popular-link:hover { color: var(--blue); }
