@import url("/assets/google-fonts/google-fonts.css");

:root {
    --orange: #ff6a13;
    --orange-dark: #e55a00;
    --navy: #1a2332;
    --navy-mid: #243040;
    --text: #3d4a58;
    --text-light: #6b7685;
    --border: #e4e8ed;
    --bg-light: #f7f8fa;
    --white: #ffffff;
    --radius: 10px;
    --shadow: 0 2px 16px rgba(0,0,0,0.08);
    --shadow-hover: 0 6px 28px rgba(0,0,0,0.13);
    --font-head: 'Roboto Condensed', sans-serif;
    --font-body: 'DM Sans', sans-serif;
  }

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

  html { scroll-behavior: smooth; font-size: 16px; }

  body {
    font-family: var(--font-body);
    color: var(--text);
    line-height: 1.65;
    background: var(--white);
  }

  a { color: inherit; text-decoration: none; }
  img { max-width: 100%; height: auto; display: block; }

  .container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 24px;
  }

  /* ─── NAV ─────────────────────────────────────── */
  .nav {
    position: sticky;
    top: 0;
    z-index: 100;
    background: var(--white);
    border-bottom: 1px solid var(--border);
    box-shadow: 0 1px 8px rgba(0,0,0,0.06);
  }
  .nav__inner {
    display: flex;
    align-items: center;
    gap: 32px;
    height: 68px;
  }
  .nav__logo img { height: 38px; width: auto; }
  .nav__links {
    display: flex;
    gap: 24px;
    list-style: none;
    flex: 1;
    margin-left: 12px;
  }
  .nav__links a {
    font-size: 14px;
    font-weight: 500;
    color: var(--text);
    transition: color .2s;
  }
  .nav__links a:hover { color: var(--orange); }
  .nav__cta {
    background: var(--orange);
    color: #fff !important;
    padding: 9px 22px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    white-space: nowrap;
    transition: background .2s;
    flex-shrink: 0;
  }
  .nav__cta:hover { background: var(--orange-dark); }

  @media (max-width: 768px) {
    .nav__links { display: none; }
    .nav__inner { justify-content: space-between; }
  }

  /* ─── HERO ────────────────────────────────────── */
  .hero {
    background: linear-gradient(135deg, var(--navy) 0%, #243a52 60%, #1e3a4a 100%);
    color: #fff;
    padding: 80px 0 72px;
    position: relative;
    overflow: hidden;
  }
  .hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('wp-content/uploads/2024/02/Magazyn-wysokiego-skladowania.webp') center/cover no-repeat;
    opacity: .13;
  }
  .hero__inner {
    position: relative;
    max-width: 720px;
  }
  .hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,106,19,.15);
    border: 1px solid rgba(255,106,19,.3);
    color: #ffaa70;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: .06em;
    text-transform: uppercase;
    padding: 5px 14px;
    border-radius: 20px;
    margin-bottom: 20px;
  }
  .hero__badge span { width: 7px; height: 7px; border-radius: 50%; background: var(--orange); }
  .hero h1 {
    font-family: var(--font-head);
    font-size: clamp(32px, 5vw, 52px);
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 20px;
  }
  .hero h1 em { color: var(--orange); font-style: italic; }
  .hero__sub {
    font-size: 17px;
    color: rgba(255,255,255,.8);
    max-width: 600px;
    margin-bottom: 36px;
    line-height: 1.7;
  }
  .hero__sub strong { color: #fff; }
  .hero__btns { display: flex; gap: 14px; flex-wrap: wrap; }
  .btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 13px 26px;
    border-radius: 7px;
    font-size: 15px;
    font-weight: 600;
    transition: all .2s;
    cursor: pointer;
  }
  .btn--orange { background: var(--orange); color: #fff; }
  .btn--orange:hover { background: var(--orange-dark); transform: translateY(-1px); }
  .btn--ghost {
    border: 1.5px solid rgba(255,255,255,.4);
    color: #fff;
  }
  .btn--ghost:hover { background: rgba(255,255,255,.1); }
  .btn--navy { background: var(--navy); color: #fff; }
  .btn--navy:hover { background: var(--navy-mid); transform: translateY(-1px); }

  /* ─── STATS ───────────────────────────────────── */
  .stats {
    background: var(--navy);
    color: #fff;
    padding: 0;
  }
  .stats__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border-top: 1px solid rgba(255,255,255,.1);
  }
  .stats__item {
    padding: 28px 24px;
    border-right: 1px solid rgba(255,255,255,.1);
    text-align: center;
  }
  .stats__item:last-child { border-right: none; }
  .stats__num {
    font-family: var(--font-head);
    font-size: 32px;
    font-weight: 700;
    color: var(--orange);
    line-height: 1;
    margin-bottom: 4px;
  }
  .stats__label { font-size: 12px; color: rgba(255,255,255,.6); line-height: 1.4; }

  @media (max-width: 640px) {
    .stats__grid { grid-template-columns: repeat(2, 1fr); }
    .stats__item:nth-child(2) { border-right: none; }
    .stats__item:nth-child(3) { border-right: 1px solid rgba(255,255,255,.1); }
  }

  /* ─── PROCESS WIDGET ──────────────────────────── */
  .process-wrap {
    background: var(--navy-mid);
    padding: 36px 0;
  }
  .process-widget {
    background: rgba(255,255,255,.05);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: var(--radius);
    padding: 24px 32px;
    display: flex;
    align-items: center;
    gap: 32px;
    flex-wrap: wrap;
  }
  .process-widget__label {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: rgba(255,255,255,.5);
    margin-bottom: 4px;
  }
  .process-widget__status {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: #fff;
    font-weight: 600;
  }
  .pulse {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: #22d167;
    box-shadow: 0 0 0 0 rgba(34,209,103,.4);
    animation: pulse 2s infinite;
  }
  @keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(34,209,103,.4); }
    70% { box-shadow: 0 0 0 8px rgba(34,209,103,0); }
    100% { box-shadow: 0 0 0 0 rgba(34,209,103,0); }
  }
  .process-steps {
    display: flex;
    gap: 0;
    flex: 1;
  }
  .process-step {
    flex: 1;
    text-align: center;
    padding: 12px 16px;
    position: relative;
  }
  .process-step:not(:last-child)::after {
    content: '→';
    position: absolute;
    right: -8px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--orange);
    font-size: 16px;
  }
  .process-step__num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px; height: 32px;
    border-radius: 50%;
    background: var(--orange);
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 6px;
  }
  .process-step__title { font-size: 11px; font-weight: 700; color: #fff; margin-bottom: 2px; }
  .process-step__sub { font-size: 10px; color: rgba(255,255,255,.5); }
  .process-quick-links {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    margin-top: 12px;
  }
  .process-link {
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 8px;
    padding: 14px 16px;
    color: #fff;
    transition: all .2s;
  }
  .process-link:hover {
    background: rgba(255,106,19,.15);
    border-color: rgba(255,106,19,.3);
  }
  .process-link strong { display: block; font-size: 13px; font-weight: 700; margin-bottom: 2px; }
  .process-link span { font-size: 11px; color: rgba(255,255,255,.5); }

  @media (max-width: 768px) {
    .process-quick-links { grid-template-columns: repeat(2, 1fr); }
  }

  /* ─── SECTIONS COMMON ─────────────────────────── */
  section { padding: 80px 0; }
  .section-badge {
    display: inline-block;
    background: rgba(255,106,19,.08);
    color: var(--orange);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    padding: 4px 12px;
    border-radius: 20px;
    margin-bottom: 12px;
  }
  h2 {
    font-family: var(--font-head);
    font-size: clamp(26px, 4vw, 38px);
    font-weight: 700;
    color: var(--navy);
    line-height: 1.2;
    margin-bottom: 16px;
  }
  h2 em { color: var(--orange); font-style: italic; }
  .section-intro {
    font-size: 16px;
    color: var(--text-light);
    max-width: 640px;
    margin-bottom: 48px;
    line-height: 1.7;
  }
  h3 {
    font-family: var(--font-head);
    font-size: 20px;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 10px;
    line-height: 1.3;
  }

  /* ─── FEATURES ────────────────────────────────── */
  .features { background: var(--bg-light); }
  .features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
  .feature-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 28px;
    transition: all .25s;
  }
  .feature-card:hover {
    box-shadow: var(--shadow-hover);
    transform: translateY(-3px);
    border-color: rgba(255,106,19,.2);
  }
  .feature-badge {
    display: inline-block;
    background: rgba(255,106,19,.08);
    color: var(--orange);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
    padding: 3px 10px;
    border-radius: 20px;
    margin-bottom: 14px;
  }
  .feature-card p {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 14px;
    line-height: 1.6;
  }
  .feature-benefit {
    font-size: 13px;
    color: var(--text);
    padding: 10px 14px;
    background: var(--bg-light);
    border-left: 3px solid var(--orange);
    border-radius: 0 6px 6px 0;
  }
  .feature-benefit strong { color: var(--navy); }

  @media (max-width: 900px) {
    .features-grid { grid-template-columns: repeat(2, 1fr); }
  }
  @media (max-width: 560px) {
    .features-grid { grid-template-columns: 1fr; }
  }

  /* ─── GALLERY ─────────────────────────────────── */
  .gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }
  .gallery-card {
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    background: var(--white);
    transition: all .25s;
  }
  .gallery-card:hover { box-shadow: var(--shadow-hover); transform: translateY(-3px); }
  .gallery-card__img-wrap {
    position: relative;
    background: var(--bg-light);
  }
  .gallery-card__url {
    position: absolute;
    top: 10px; left: 10px;
    background: rgba(26,35,50,.7);
    backdrop-filter: blur(4px);
    color: rgba(255,255,255,.7);
    font-size: 10px;
    font-family: monospace;
    padding: 3px 8px;
    border-radius: 4px;
  }
  .gallery-card__tag {
    position: absolute;
    top: 10px; right: 10px;
    background: var(--orange);
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: .04em;
  }
  .gallery-card__img-wrap img {
    width: 100%;
    aspect-ratio: 16/9;
    object-fit: cover;
  }
  .gallery-card__body { padding: 20px 22px; }
  .gallery-card__caption {
    font-size: 12px;
    color: var(--text-light);
    font-style: italic;
    margin-bottom: 10px;
  }
  .gallery-card__app {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: .06em;
    color: var(--orange);
    font-weight: 700;
    margin-bottom: 6px;
  }
  .gallery-card__title {
    font-size: 15px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 8px;
    font-family: var(--font-head);
  }
  .gallery-card__desc { font-size: 13px; color: var(--text-light); line-height: 1.55; }
  .gallery-link {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    color: var(--orange);
    font-size: 14px;
    font-weight: 600;
    margin-top: 32px;
    transition: gap .2s;
  }
  .gallery-link:hover { gap: 8px; }

  @media (max-width: 900px) {
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  }
  @media (max-width: 560px) {
    .gallery-grid { grid-template-columns: 1fr; }
  }

  /* ─── TECH ────────────────────────────────────── */
  .tech { background: var(--bg-light); }
  .tech__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
  }
  .tech__points { display: flex; flex-direction: column; gap: 24px; }
  .tech__point h3 { font-size: 18px; margin-bottom: 6px; }
  .tech__point p { font-size: 14px; color: var(--text-light); }
  .tech__table {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
  }
  .tech__table-title {
    background: var(--navy);
    color: #fff;
    font-family: var(--font-head);
    font-size: 14px;
    font-weight: 600;
    padding: 14px 20px;
    letter-spacing: .04em;
  }
  .tech__row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 13px 20px;
    border-bottom: 1px solid var(--border);
    font-size: 13px;
    gap: 16px;
  }
  .tech__row:last-child { border-bottom: none; }
  .tech__row-label { color: var(--text-light); flex-shrink: 0; }
  .tech__row-val { color: var(--navy); font-weight: 600; text-align: right; }

  @media (max-width: 768px) {
    .tech__grid { grid-template-columns: 1fr; gap: 40px; }
  }

  /* ─── INTEGRATIONS ────────────────────────────── */
  .integrations-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
  .int-card {
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 24px;
    background: var(--white);
    transition: all .25s;
  }
  .int-card:hover {
    box-shadow: var(--shadow-hover);
    border-color: rgba(255,106,19,.2);
    transform: translateY(-2px);
  }
  .int-badge {
    display: inline-block;
    background: var(--bg-light);
    color: var(--navy);
    font-size: 11px;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 6px;
    margin-bottom: 12px;
    font-family: var(--font-head);
    letter-spacing: .03em;
  }
  .int-card h3 { font-size: 16px; margin-bottom: 8px; }
  .int-card p { font-size: 13px; color: var(--text-light); line-height: 1.55; }

  @media (max-width: 768px) {
    .integrations-grid { grid-template-columns: repeat(2, 1fr); }
  }
  @media (max-width: 480px) {
    .integrations-grid { grid-template-columns: 1fr; }
  }

  /* ─── LONG TEXT ───────────────────────────────── */
  .longtext { background: var(--bg-light); }
  .longtext__grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    align-items: start;
  }
  .longtext__content h2 { font-size: 28px; margin-bottom: 16px; }
  .longtext__content h3 { font-size: 18px; margin: 28px 0 10px; }
  .longtext__content p {
    font-size: 15px;
    color: var(--text-light);
    margin-bottom: 18px;
    line-height: 1.75;
  }
  .longtext__content p strong { color: var(--navy); }
  .longtext__aside {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }
  .aside-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 20px;
  }
  .aside-card__num {
    font-family: var(--font-head);
    font-size: 28px;
    font-weight: 700;
    color: var(--orange);
    margin-bottom: 4px;
  }
  .aside-card__label { font-size: 13px; color: var(--text-light); }

  @media (max-width: 900px) {
    .longtext__grid { grid-template-columns: 1fr; }
    .longtext__aside { flex-direction: row; flex-wrap: wrap; }
    .aside-card { flex: 1; min-width: 160px; }
  }

  /* ─── STEPS (WDROŻENIE) ───────────────────────── */
  .steps { background: var(--white); }
  .steps__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-top: 0;
  }
  .step-card {
    display: flex;
    gap: 20px;
    padding: 28px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: var(--white);
    transition: all .25s;
  }
  .step-card:hover { box-shadow: var(--shadow-hover); border-color: rgba(255,106,19,.2); }
  .step-num {
    flex-shrink: 0;
    width: 44px; height: 44px;
    border-radius: 50%;
    background: var(--orange);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-head);
    font-size: 18px;
    font-weight: 700;
  }
  .step-card h3 { font-size: 17px; margin-bottom: 8px; }
  .step-card p { font-size: 13px; color: var(--text-light); line-height: 1.6; }

  @media (max-width: 640px) {
    .steps__grid { grid-template-columns: 1fr; }
  }

  /* ─── INDUSTRIES ──────────────────────────────── */
  .industries { background: var(--bg-light); }
  .industries-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
  .ind-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 28px;
    transition: all .25s;
  }
  .ind-card:hover {
    box-shadow: var(--shadow-hover);
    border-color: rgba(255,106,19,.25);
    transform: translateY(-3px);
  }
  .ind-badge {
    display: inline-block;
    background: rgba(255,106,19,.08);
    color: var(--orange);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
    padding: 3px 10px;
    border-radius: 20px;
    margin-bottom: 14px;
  }
  .ind-card h3 { font-size: 18px; margin-bottom: 10px; }
  .ind-card p { font-size: 14px; color: var(--text-light); line-height: 1.6; }

  @media (max-width: 768px) {
    .industries-grid { grid-template-columns: 1fr; }
  }

  /* ─── LICENSING ───────────────────────────────── */
  .licensing { background: var(--white); }
  .licensing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
  .lic-card {
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 28px;
    background: var(--white);
    transition: all .25s;
  }
  .lic-card:hover {
    box-shadow: var(--shadow-hover);
    border-color: rgba(255,106,19,.25);
    transform: translateY(-3px);
  }
  .lic-badge {
    display: inline-block;
    background: var(--bg-light);
    color: var(--navy);
    font-size: 11px;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 6px;
    margin-bottom: 14px;
  }
  .lic-card h3 { font-size: 18px; margin-bottom: 10px; }
  .lic-card p { font-size: 14px; color: var(--text-light); line-height: 1.6; }

  @media (max-width: 768px) {
    .licensing-grid { grid-template-columns: 1fr; }
  }

  /* ─── KNOWLEDGE ───────────────────────────────── */
  .knowledge { background: var(--bg-light); }
  .knowledge-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
  }
  .know-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 20px;
    transition: all .25s;
  }
  .know-card:hover {
    box-shadow: var(--shadow-hover);
    border-color: rgba(255,106,19,.2);
    transform: translateY(-2px);
  }
  .know-badge {
    display: inline-block;
    background: rgba(255,106,19,.08);
    color: var(--orange);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .05em;
    text-transform: uppercase;
    padding: 2px 8px;
    border-radius: 20px;
    margin-bottom: 10px;
  }
  .know-card h3 { font-size: 14px; font-weight: 700; margin-bottom: 8px; line-height: 1.4; }
  .know-card p { font-size: 12px; color: var(--text-light); margin-bottom: 12px; line-height: 1.5; }
  .know-link {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 12px;
    font-weight: 600;
    color: var(--orange);
    transition: gap .2s;
  }
  .know-link:hover { gap: 8px; }

  @media (max-width: 900px) {
    .knowledge-grid { grid-template-columns: repeat(2, 1fr); }
  }
  @media (max-width: 480px) {
    .knowledge-grid { grid-template-columns: 1fr; }
  }

  /* ─── CTA BANNER ──────────────────────────────── */
  .cta-banner {
    background: linear-gradient(135deg, var(--navy) 0%, #243a52 100%);
    padding: 72px 0;
    text-align: center;
    color: #fff;
  }
  .cta-banner h2 {
    color: #fff;
    font-size: clamp(24px, 4vw, 36px);
    margin-bottom: 16px;
  }
  .cta-banner p {
    color: rgba(255,255,255,.75);
    font-size: 16px;
    max-width: 560px;
    margin: 0 auto 32px;
    line-height: 1.7;
  }
  .cta-banner__btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

  /* ─── FAQ ─────────────────────────────────────── */
  .faq { background: var(--white); }
  .faq__grid { max-width: 820px; margin: 0 auto; }
  .faq .section-badge,
  .faq h2,
  .faq .section-intro { text-align: center; }
  .faq-item {
    border-bottom: 1px solid var(--border);
  }
  .faq-item:first-of-type { border-top: 1px solid var(--border); }
  .faq-q {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    padding: 20px 0;
    cursor: pointer;
    font-weight: 600;
    font-size: 15px;
    color: var(--navy);
    user-select: none;
    background: none;
    border: none;
    width: 100%;
    text-align: left;
    font-family: var(--font-body);
  }
  .faq-icon {
    font-size: 22px;
    color: var(--orange);
    flex-shrink: 0;
    font-weight: 400;
    transition: transform .3s ease;
    line-height: 1;
  }
  .faq-item.open .faq-icon { transform: rotate(45deg); }
  .faq-a-wrap {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows .35s ease;
  }
  .faq-item.open .faq-a-wrap { grid-template-rows: 1fr; }
  .faq-a-inner { overflow: hidden; }
  .faq-a {
    font-size: 14px;
    color: var(--text-light);
    padding: 0 0 20px;
    line-height: 1.7;
    max-width: 680px;
  }
  .faq-num {
    font-family: var(--font-head);
    font-size: 12px;
    font-weight: 700;
    color: var(--orange);
    background: rgba(255,106,19,.08);
    padding: 2px 8px;
    border-radius: 4px;
    flex-shrink: 0;
  }

  /* ─── CONTACT ─────────────────────────────────── */
  .contact { background: var(--bg-light); }
  .contact__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
  }
  .contact__info-block {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 24px 28px;
    margin-bottom: 16px;
  }
  .contact__info-label {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: .07em;
    color: var(--text-light);
    font-weight: 600;
    margin-bottom: 6px;
  }
  .contact__info-val {
    font-size: 18px;
    font-weight: 700;
    color: var(--navy);
  }
  .contact__info-val a:hover { color: var(--orange); }
  .contact__legal {
    font-size: 12px;
    color: var(--text-light);
    margin-top: 20px;
    line-height: 1.6;
  }
  .contact__form {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 32px;
  }
  .contact__form h3 { margin-bottom: 20px; }
  .form-row { margin-bottom: 16px; }
  .form-row label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 6px;
  }
  .form-row input,
  .form-row textarea {
    width: 100%;
    border: 1px solid var(--border);
    border-radius: 6px;
    padding: 10px 14px;
    font-size: 14px;
    font-family: var(--font-body);
    color: var(--navy);
    outline: none;
    transition: border-color .2s;
    background: var(--white);
  }
  .form-row input:focus,
  .form-row textarea:focus { border-color: var(--orange); }
  .form-row textarea { resize: vertical; min-height: 100px; }
  .form-submit {
    width: 100%;
    background: var(--orange);
    color: #fff;
    border: none;
    padding: 13px;
    border-radius: 7px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    font-family: var(--font-body);
    transition: background .2s;
    margin-top: 4px;
  }
  .form-submit:hover { background: var(--orange-dark); }

  @media (max-width: 768px) {
    .contact__grid { grid-template-columns: 1fr; }
  }

  /* ─── FOOTER ──────────────────────────────────── */
  .footer {
    background: var(--navy);
    color: rgba(255,255,255,.7);
    padding: 56px 0 0;
  }
  .footer__grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255,255,255,.1);
  }
  .footer__logo { height: 36px; width: auto; margin-bottom: 16px; filter: brightness(0) invert(1); }
  .footer__about { font-size: 13px; line-height: 1.7; margin-bottom: 20px; }
  .footer__contact { font-size: 13px; line-height: 2; }
  .footer__contact a { color: rgba(255,255,255,.7); }
  .footer__contact a:hover { color: var(--orange); }
  .footer__col-title {
    font-family: var(--font-head);
    font-size: 13px;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: .07em;
    margin-bottom: 16px;
  }
  .footer__links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
  .footer__links a { font-size: 13px; color: rgba(255,255,255,.6); transition: color .2s; }
  .footer__links a:hover { color: var(--orange); }
  .footer__socials {
    display: flex;
    gap: 10px;
    margin-top: 16px;
  }
  .footer__social {
    width: 34px; height: 34px;
    border: 1px solid rgba(255,255,255,.15);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 700;
    color: rgba(255,255,255,.6);
    transition: all .2s;
  }
  .footer__social:hover { background: var(--orange); border-color: var(--orange); color: #fff; }
  .footer__bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 0;
    font-size: 12px;
    color: rgba(255,255,255,.4);
    flex-wrap: wrap;
    gap: 10px;
  }
  .footer__bottom-links { display: flex; gap: 20px; }
  .footer__bottom-links a { color: rgba(255,255,255,.4); }
  .footer__bottom-links a:hover { color: rgba(255,255,255,.7); }

  @media (max-width: 900px) {
    .footer__grid { grid-template-columns: 1fr 1fr; }
  }
  @media (max-width: 560px) {
    .footer__grid { grid-template-columns: 1fr; }
  }

  /* ─── FAQ I GLOSARIUSZ W TREŚCI ARTYKUŁU ──────── */
  /* Akordeon FAQ osadzony w .article-body - karty zamiast samych linii,
     plus nadpisanie ogólnych reguł .article-body p/div, które wygrywały
     specyficznością nad .faq-a. */
  .article-body .faq__grid {
    max-width: 100%;
    margin: 24px 0 8px;
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
  .article-body .faq-item {
    background: var(--bg-light);
    border: 1px solid var(--border);
    border-radius: 8px;
    overflow: hidden;
    transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
  }
  .article-body .faq-item:first-of-type { border-top: 1px solid var(--border); }
  .article-body .faq-item:hover { border-color: #d3d9e0; }
  .article-body .faq-item.open {
    background: var(--white);
    border-color: rgba(255,106,19,.45);
    box-shadow: var(--shadow);
  }
  .article-body .faq-q {
    padding: 16px 18px;
    font-size: 15px;
    line-height: 1.45;
    align-items: flex-start;
    gap: 12px;
    /* bazowe space-between wyśrodkowywało krótkie pytania między numerem
       a ikoną - tu tekst trzyma się lewej, a ikona jest dopychana w prawo */
    justify-content: flex-start;
    text-align: left;
  }
  .article-body .faq-q .faq-icon { margin-left: auto; }
  .article-body .faq-q:hover { color: var(--orange-dark); }
  .article-body .faq-q:focus-visible {
    outline: 2px solid var(--orange);
    outline-offset: -2px;
    border-radius: 8px;
  }
  .article-body .faq-num {
    font-size: 11px;
    padding: 3px 7px;
    margin-top: 1px;
  }
  .article-body .faq-icon { margin-top: -2px; }
  .article-body .faq-a-inner { overflow: hidden; }
  .article-body .faq-a {
    font-size: 14.5px;
    line-height: 1.7;
    color: var(--text-light);
    max-width: none;
    margin: 0;
    padding: 0 18px 16px 54px;
  }
  .article-body .faq-a + .faq-a { padding-top: 10px; }
  .article-body .faq-a a { color: var(--orange); }
  @media (max-width: 560px) {
    .article-body .faq-q { padding: 14px; gap: 10px; }
    .article-body .faq-a { padding: 0 14px 14px 14px; }
  }

  /* Glosariusz pojęć - karty z akcentem, wspólne dla wszystkich podstron */
  .article-body .glossary-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 12px;
    margin: 24px 0 8px;
    padding: 0;
  }
  .article-body .glossary-item {
    background: var(--bg-light);
    border: 1px solid var(--border);
    border-left: 3px solid var(--orange);
    border-radius: 0 8px 8px 0;
    padding: 14px 16px;
    transition: box-shadow .2s ease, transform .2s ease;
  }
  .article-body .glossary-item:hover {
    box-shadow: var(--shadow);
    transform: translateY(-1px);
  }
  .article-body .glossary-item dt {
    font-family: var(--font-head);
    font-weight: 700;
    color: var(--navy);
    font-size: 15px;
    line-height: 1.3;
    margin-bottom: 5px;
  }
  .article-body .glossary-item dd {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
  }
  @media (max-width: 560px) {
    .article-body .glossary-grid { grid-template-columns: 1fr; }
  }
