/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; }
body { font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif; color: #1a1a2e; background: #fff; line-height: 1.7; }
img { max-width: 100%; height: auto; display: block; }
a { color: #2563eb; text-decoration: none; transition: color .2s; }
a:hover { color: #1d4ed8; }
ul, ol { list-style: none; }
h1, h2, h3, h4 { line-height: 1.3; font-weight: 700; }

/* ===== LAYOUT ===== */
.wrapper, .container { max-width: 1140px; margin: 0 auto; padding: 0 24px; }
.section { padding: 80px 0; }
.section--gray { background: #f8f9fb; }
.section--dark { background: #1a1a2e; color: #e0e0e0; }
.section--accent { background: #2563eb; color: #fff; }

/* ===== HEADER ===== */
.header { background: #fff; border-bottom: 1px solid #e5e7eb; position: sticky; top: 0; z-index: 100; }
.header .wrapper, .header .container, .header .header__inner { display: flex; align-items: center; justify-content: space-between; height: 72px; max-width: 1140px; margin: 0 auto; padding: 0 24px; }
.logo { font-size: 1.5rem; font-weight: 800; color: #1a1a2e; display: flex; align-items: center; gap: 8px; }
.logo span { color: #2563eb; }
.nav { display: flex; gap: 32px; align-items: center; }
.nav a, .nav__list a, .nav__link { color: #4b5563; font-size: .95rem; font-weight: 500; position: relative; text-decoration: none; }
.nav a:hover, .nav a.active, .nav__link:hover, .nav__link.active { color: #2563eb; }
.nav a.active::after { content: ''; position: absolute; bottom: -4px; left: 0; right: 0; height: 2px; background: #2563eb; border-radius: 1px; }
.nav__list { display: flex; gap: 32px; list-style: none; }
.nav-btn, .hamburger { display: none; font-size: 1.5rem; cursor: pointer; background: none; border: none; color: #1a1a2e; }
.hamburger { flex-direction: column; gap: 5px; width: 28px; padding: 0; }
.hamburger__line { display: block; width: 100%; height: 2px; background: #1a1a2e; border-radius: 1px; transition: .3s; }

/* ===== NAV DROPDOWN (Pozycjonowanie w menu głównym) ===== */
.nav-dropdown { position: relative; display: inline-block; }
.nav-dropdown__trigger { background: none; border: none; padding: 0; margin: 0; cursor: pointer; color: #4b5563; font-size: .95rem; font-weight: 500; font-family: inherit; display: inline-flex; align-items: center; gap: 6px; line-height: 1; transition: color .2s; }
.nav-dropdown__trigger:hover, .nav-dropdown__trigger:focus-visible { color: #2563eb; outline: none; }
.nav-dropdown__caret { transition: transform .2s; flex-shrink: 0; margin-top: 1px; }
.nav-dropdown:hover .nav-dropdown__caret,
.nav-dropdown:focus-within .nav-dropdown__caret,
.nav-dropdown.is-open .nav-dropdown__caret { transform: rotate(180deg); }

.nav-dropdown__menu { position: absolute; top: calc(100% + 18px); left: 50%; transform: translateX(-50%) translateY(-8px); background: #fff; border: 1px solid #e5e7eb; border-radius: 14px; box-shadow: 0 24px 60px rgba(26,26,46,.14), 0 6px 16px rgba(0,0,0,.05); list-style: none; padding: 8px; min-width: 280px; opacity: 0; visibility: hidden; transition: opacity .2s, transform .2s, visibility .2s; z-index: 200; }
/* Niewidzialny mostek między triggerem a menu — zapobiega zamknięciu podczas najechania w szczelinę */
.nav-dropdown__menu::after { content: ''; position: absolute; top: -18px; left: 0; right: 0; height: 18px; background: transparent; }
/* Mała strzałka wskazująca na trigger */
.nav-dropdown__menu::before { content: ''; position: absolute; top: -7px; left: 50%; transform: translateX(-50%) rotate(45deg); width: 14px; height: 14px; background: #fff; border-left: 1px solid #e5e7eb; border-top: 1px solid #e5e7eb; border-radius: 2px 0 0 0; }

.nav-dropdown:hover .nav-dropdown__menu,
.nav-dropdown:focus-within .nav-dropdown__menu { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }

.nav-dropdown__menu li { padding: 0; margin: 0; }
.nav-dropdown__menu a { display: flex; flex-direction: column; gap: 2px; padding: 12px 16px; border-radius: 10px; font-size: .94rem; color: #1a1a2e; font-weight: 600; text-decoration: none; transition: background .15s, transform .15s; position: relative; }
.nav-dropdown__menu a:hover, .nav-dropdown__menu a:focus-visible { background: linear-gradient(135deg, #f0f4ff 0%, #dbeafe 100%); color: #2563eb; outline: none; transform: translateX(2px); }
.nav-dropdown__title { display: block; font-size: .95rem; font-weight: 600; line-height: 1.3; }
.nav-dropdown__meta { display: block; font-size: .78rem; color: #9ca3af; font-weight: 500; margin-top: 2px; line-height: 1.3; }
.nav-dropdown__menu a:hover .nav-dropdown__meta { color: #6b7280; }

/* MOBILE: dropdown otwierany przez tap (JS dodaje .is-open) */
@media (max-width: 768px) {
    .nav-dropdown { width: 100%; }
    .nav-dropdown__trigger { width: 100%; justify-content: space-between; padding: 6px 0; font-size: .95rem; }
    .nav-dropdown__menu { position: static; transform: none; min-width: 0; box-shadow: none; border: none; border-left: 2px solid #e5e7eb; border-radius: 0; padding: 4px 0 4px 16px; margin: 8px 0 0 8px; opacity: 1; visibility: hidden; max-height: 0; overflow: hidden; transition: max-height .25s, visibility .25s; }
    .nav-dropdown__menu::before, .nav-dropdown__menu::after { display: none; }
    /* Na mobile tylko .is-open otwiera — hover nie działa */
    .nav-dropdown:hover .nav-dropdown__menu,
    .nav-dropdown:focus-within .nav-dropdown__menu { opacity: 0; visibility: hidden; max-height: 0; }
    .nav-dropdown.is-open .nav-dropdown__menu { opacity: 1; visibility: visible; max-height: 400px; }
    .nav-dropdown__menu a { padding: 10px 12px; }
    .nav-dropdown__menu a:hover { transform: none; }
}

/* ===== HERO ===== */
.hero { padding: 100px 0 80px; background: linear-gradient(135deg, #f0f4ff 0%, #e8eeff 50%, #fff 100%); }
.hero__content { max-width: 720px; }
.hero__badge { display: inline-block; background: #dbeafe; color: #2563eb; font-size: .8rem; font-weight: 600; padding: 6px 14px; border-radius: 20px; margin-bottom: 20px; letter-spacing: .02em; }
.hero h1, .hero__title { font-size: 2.8rem; margin-bottom: 20px; color: #1a1a2e; font-weight: 800; }
.hero h1 em { font-style: normal; color: #2563eb; }
.hero p, .hero__subtitle { font-size: 1.15rem; color: #4b5563; margin-bottom: 32px; max-width: 640px; line-height: 1.8; }
.hero__buttons { display: flex; gap: 16px; flex-wrap: wrap; }

/* ===== BUTTONS ===== */
.btn { display: inline-block; padding: 14px 28px; border-radius: 8px; font-size: .95rem; font-weight: 600; cursor: pointer; transition: all .2s; border: none; }
.btn--primary { background: #2563eb; color: #fff; }
.btn--primary:hover { background: #1d4ed8; color: #fff; }
.btn--outline { background: transparent; color: #2563eb; border: 2px solid #2563eb; }
.btn--outline:hover { background: #2563eb; color: #fff; }
.btn--white { background: #fff; color: #2563eb; }
.btn--white:hover { background: #f0f4ff; color: #1d4ed8; }

/* ===== SECTION HEADERS ===== */
.section__header { margin-bottom: 48px; }
.section__header--center { text-align: center; }
.section__label { display: inline-block; font-size: .8rem; font-weight: 600; color: #2563eb; text-transform: uppercase; letter-spacing: .08em; margin-bottom: 8px; }
.section__title { font-size: 2rem; margin-bottom: 12px; }
.section__desc, .section__subtitle { font-size: 1.05rem; color: #6b7280; max-width: 640px; line-height: 1.7; margin-bottom: 16px; }
.section__header--center .section__desc { margin: 0 auto; }
.section__content { margin-bottom: 24px; }
.section__content p { margin-bottom: 16px; color: #374151; line-height: 1.8; }
.section__cta { text-align: center; margin-top: 40px; }

/* ===== GRID ===== */
.grid { display: grid; gap: 24px; }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }

/* ===== CARDS ===== */
.card { background: #fff; border-radius: 12px; border: 1px solid #e5e7eb; overflow: hidden; transition: transform .2s, box-shadow .2s; }
.card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(0,0,0,.08); }
.card__img { width: 100%; height: 200px; object-fit: cover; background: #e5e7eb; }
.card__body { padding: 24px; }
.card__tag { font-size: .75rem; font-weight: 600; color: #2563eb; text-transform: uppercase; letter-spacing: .06em; margin-bottom: 8px; }
.card__title { font-size: 1.15rem; margin-bottom: 8px; color: #1a1a2e; }
.card__title a { color: inherit; }
.card__title a:hover { color: #2563eb; }
.card__desc { font-size: .9rem; color: #6b7280; margin-bottom: 16px; }
.card__meta { font-size: .8rem; color: #9ca3af; display: flex; gap: 16px; }
.card__link { font-size: .9rem; font-weight: 600; color: #2563eb; display: inline-flex; align-items: center; gap: 6px; }
.card__link::after { content: '→'; }

/* ===== SERVICE CARD ===== */
.svc-card { background: #fff; border-radius: 12px; border: 1px solid #e5e7eb; padding: 32px; text-align: center; transition: transform .2s, box-shadow .2s; }
.svc-card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(0,0,0,.08); }
.svc-card__icon { width: 64px; height: 64px; margin: 0 auto 20px; background: #dbeafe; border-radius: 16px; display: flex; align-items: center; justify-content: center; font-size: 1.8rem; }
.svc-card__title { font-size: 1.1rem; margin-bottom: 10px; }
.svc-card__title a { color: #1a1a2e; text-decoration: none; }
.svc-card__title a:hover { color: #2563eb; }
.svc-card__desc { font-size: .9rem; color: #6b7280; margin-bottom: 16px; }

/* ===== STEPS ===== */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.step, .steps__item { text-align: center; position: relative; }
.step__num, .steps__number { width: 52px; height: 52px; background: #2563eb; color: #fff; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.2rem; font-weight: 700; margin: 0 auto 16px; }
.step__title, .steps__title { font-size: 1rem; font-weight: 600; margin-bottom: 8px; }
.step__desc, .steps__desc { font-size: .88rem; color: #6b7280; line-height: 1.7; }

/* ===== TEXT CONTENT ===== */
.content { max-width: 800px; }
.content h2 { font-size: 1.5rem; margin: 40px 0 16px; color: #1a1a2e; }
.content p { margin-bottom: 16px; color: #374151; }
.content strong { color: #1a1a2e; }
.content ul { margin: 16px 0; padding-left: 24px; }
.content ul li { position: relative; padding-left: 20px; margin-bottom: 8px; color: #374151; }
.content ul li::before { content: ''; position: absolute; left: 0; top: 10px; width: 8px; height: 8px; background: #2563eb; border-radius: 50%; }
.content a { color: #2563eb; font-weight: 500; border-bottom: 1px solid transparent; }
.content a:hover { border-bottom-color: #2563eb; }

/* ===== TWO COLUMN ===== */
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
.two-col__img, .two-col__left .placeholder-img { border-radius: 12px; background: #e5e7eb; min-height: 360px; }
.two-col__right p { margin-bottom: 16px; color: #374151; line-height: 1.8; }
.two-col__right strong { color: #1a1a2e; }
.placeholder-img { background: linear-gradient(135deg, #dbeafe, #e5e7eb); border-radius: 12px; min-height: 360px; display: flex; align-items: center; justify-content: center; color: #9ca3af; font-size: .9rem; }

/* ===== STATS ===== */
.stats { display: flex; gap: 48px; margin-top: 32px; }
.stat, .stats__item { text-align: center; }
.stat__num, .stats__number { font-size: 2rem; font-weight: 800; color: #2563eb; display: block; }
.stat__label, .stats__label { font-size: .85rem; color: #6b7280; display: block; }

/* ===== FAQ ===== */
.faq-item, .faq__item { border-bottom: 1px solid #e5e7eb; padding: 20px 0; }
.faq-item__q, .faq__question { font-size: 1.05rem; font-weight: 600; color: #1a1a2e; cursor: pointer; display: flex; justify-content: space-between; align-items: center; }
.faq-item__q::after { content: '+'; font-size: 1.4rem; color: #2563eb; flex-shrink: 0; margin-left: 16px; }
.faq-item__a, .faq__answer { font-size: .95rem; color: #4b5563; padding-top: 12px; line-height: 1.7; }

/* ===== CTA BANNER ===== */
.cta-banner { text-align: center; padding: 64px 24px; }
.cta-banner h2, .cta-banner__title { font-size: 2rem; color: #fff; margin-bottom: 16px; }
.cta-banner p, .cta-banner__text { font-size: 1.1rem; margin-bottom: 32px; opacity: .9; max-width: 640px; margin-left: auto; margin-right: auto; line-height: 1.7; }

/* ===== CONTACT ===== */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; }
.contact-info { display: flex; flex-direction: column; gap: 24px; }
.contact-item, .contact-info__item { display: flex; gap: 16px; align-items: flex-start; }
.contact-item__icon, .contact-info__icon { width: 48px; height: 48px; background: #dbeafe; border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 1.2rem; color: #2563eb; flex-shrink: 0; }
.contact-item__text h4, .contact-info__item strong { font-size: .95rem; margin-bottom: 4px; display: block; }
.contact-item__text p, .contact-info__item p { font-size: .9rem; color: #6b7280; }
.form, .contact-form { display: flex; flex-direction: column; gap: 16px; }
.form input, .form textarea, .contact-form__input, .contact-form__textarea { width: 100%; padding: 14px 16px; border: 1px solid #d1d5db; border-radius: 8px; font-size: .95rem; font-family: inherit; transition: border-color .2s; }
.form input:focus, .form textarea:focus, .contact-form__input:focus, .contact-form__textarea:focus { outline: none; border-color: #2563eb; }
.form textarea, .contact-form__textarea { resize: vertical; min-height: 120px; }
.contact-form__group { display: flex; flex-direction: column; gap: 6px; }
.contact-form__label { font-size: .9rem; font-weight: 500; color: #374151; }
.btn--full { width: 100%; text-align: center; }

/* ===== BLOG POST (single) ===== */
.post { max-width: 780px; margin: 0 auto; }
.post__header { margin-bottom: 32px; }
.post__tag { display: inline-block; background: #dbeafe; color: #2563eb; font-size: .75rem; font-weight: 600; padding: 4px 12px; border-radius: 20px; margin-bottom: 16px; text-transform: uppercase; letter-spacing: .04em; }
.post__title { font-size: 2.2rem; line-height: 1.3; margin-bottom: 16px; }
.post__meta { font-size: .9rem; color: #9ca3af; display: flex; gap: 10px; align-items: center; }
.post__img { width: 100%; height: 400px; background: linear-gradient(135deg, #dbeafe, #e0e7ff); border-radius: 12px; margin-bottom: 40px; display: flex; align-items: center; justify-content: center; color: #9ca3af; font-size: .9rem; }
.post__content { margin-bottom: 64px; }
.post__content h2 { font-size: 1.45rem; margin: 40px 0 16px; color: #1a1a2e; }
.post__content p { margin-bottom: 18px; color: #374151; line-height: 1.85; }
.post__content strong { color: #1a1a2e; }
.post__content a { color: #2563eb; font-weight: 500; text-decoration: none; border-bottom: 1px solid transparent; transition: border-color .2s; }
.post__content a:hover { border-bottom-color: #2563eb; }
.post__content ul { margin: 20px 0; padding: 0; }
.post__content ul li { position: relative; padding: 8px 0 8px 28px; color: #374151; line-height: 1.7; border-bottom: 1px solid #f3f4f6; }
.post__content ul li:last-child { border-bottom: none; }
.post__content ul li::before { content: ''; position: absolute; left: 0; top: 16px; width: 8px; height: 8px; background: #2563eb; border-radius: 50%; }
.post__content code { background: #f3f4f6; padding: 2px 6px; border-radius: 4px; font-size: .9em; color: #e11d48; }

/* --- Inline image w artykule blogowym (markdown ![alt](url)) --- */
.post__inline-img { margin: 36px 0; padding: 0; }
.post__inline-img img { width: 100%; height: auto; border-radius: 14px; box-shadow: 0 16px 40px rgba(37,99,235,.12), 0 4px 12px rgba(0,0,0,.04); display: block; }
.post__inline-img figcaption { margin-top: 12px; font-size: .85rem; color: #9ca3af; text-align: center; font-style: italic; line-height: 1.5; }

/* --- Tabele w artykule blogowym (markdown |col|col|) --- */
.post__table-wrap { margin: 28px 0; overflow-x: auto; border-radius: 12px; box-shadow: 0 4px 16px rgba(37,99,235,.08); }
.post__table { width: 100%; border-collapse: collapse; font-size: .93rem; background: #fff; }
.post__table th { background: linear-gradient(135deg, #f0f4ff 0%, #dbeafe 100%); color: #1a1a2e; font-weight: 700; text-align: left; padding: 14px 16px; border-bottom: 2px solid #2563eb; font-size: .9rem; letter-spacing: .01em; }
.post__table td { padding: 12px 16px; border-bottom: 1px solid #f3f4f6; color: #374151; line-height: 1.55; vertical-align: top; }
.post__table tbody tr:last-child td { border-bottom: none; }
.post__table tbody tr:hover { background: #fafbfc; }
.post__table strong { color: #1a1a2e; }
@media (max-width: 640px) {
    .post__table { font-size: .85rem; }
    .post__table th, .post__table td { padding: 10px 12px; }
    .post__inline-img { margin: 24px 0; }
}
.post__related { border-top: 1px solid #e5e7eb; padding-top: 48px; }
.post__related h2 { font-size: 1.4rem; margin-bottom: 24px; }
.post__related .card__img { height: 160px; }
@media (max-width: 768px) {
    .post__title { font-size: 1.6rem; }
    .post__img { height: 240px; }
    .post__related .grid--3 { grid-template-columns: 1fr; }
}

/* ===== BLOG CARD (homepage) ===== */
.blog-card { background: #fff; border-radius: 12px; border: 1px solid #e5e7eb; overflow: hidden; transition: transform .2s, box-shadow .2s; }
.blog-card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(0,0,0,.08); }
.blog-card__img { width: 100%; height: 180px; background: linear-gradient(135deg, #dbeafe, #e0e7ff); display: flex; align-items: center; justify-content: center; color: #9ca3af; font-size: .9rem; }
.blog-card__body { padding: 20px 24px 24px; }
.blog-card__date { font-size: .8rem; color: #9ca3af; display: block; margin-bottom: 8px; }
.blog-card__title { font-size: 1.05rem; margin-bottom: 8px; line-height: 1.4; }
.blog-card__title a { color: #1a1a2e; text-decoration: none; }
.blog-card__title a:hover { color: #2563eb; }
.blog-card__desc { font-size: .88rem; color: #6b7280; line-height: 1.6; }

/* ===== BLOG LIST ===== */
.blog-featured { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; margin-bottom: 48px; }
.blog-featured .card__img { height: 280px; }
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }

/* ===== PAGINATION ===== */
.pagination { display: flex; justify-content: center; gap: 8px; margin-top: 48px; }
.pagination a, .pagination span { width: 40px; height: 40px; display: flex; align-items: center; justify-content: center; border-radius: 8px; font-size: .9rem; font-weight: 500; }
.pagination a { border: 1px solid #d1d5db; color: #4b5563; }
.pagination a:hover { border-color: #2563eb; color: #2563eb; }
.pagination .active { background: #2563eb; color: #fff; border: none; }

/* ===== BREADCRUMBS ===== */
.breadcrumbs { font-size: .85rem; color: #9ca3af; padding: 16px 0; }
.breadcrumbs a { color: #6b7280; }
.breadcrumbs a:hover { color: #2563eb; }
.breadcrumbs span { margin: 0 8px; }

/* ===== FOOTER ===== */
.footer { background: #1a1a2e; color: #9ca3af; padding: 64px 0 0; }
.footer-grid, .footer__grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; padding-bottom: 48px; border-bottom: 1px solid #2a2a3e; }
.footer__logo { font-size: 1.3rem; font-weight: 800; color: #fff; margin-bottom: 12px; }
.footer__logo span { color: #2563eb; }
.footer__desc { font-size: .9rem; line-height: 1.7; margin-bottom: 20px; color: #9ca3af; }
.footer__col { }
.footer h4, .footer__heading { font-size: .9rem; font-weight: 600; color: #fff; text-transform: uppercase; letter-spacing: .06em; margin-bottom: 16px; }
.footer ul li, .footer__links li { margin-bottom: 10px; }
.footer ul li a, .footer__links a { color: #9ca3af; font-size: .9rem; }
.footer ul li a:hover, .footer__links a:hover { color: #fff; }
.footer__links { list-style: none; }
.footer-bottom, .footer__bottom { padding: 24px 0; text-align: center; font-size: .82rem; }
.footer .logo { margin-bottom: 12px; }
.footer .logo span { color: #2563eb; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .grid--4, .steps { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .hero h1 { font-size: 2rem; }
  .section { padding: 56px 0; }
  .section__title { font-size: 1.6rem; }
  .grid--2, .grid--3, .blog-grid, .blog-featured, .two-col, .contact-grid { grid-template-columns: 1fr; }
  .two-col { gap: 32px; }
  .stats { flex-wrap: wrap; gap: 24px; }
  .nav { display: none; position: absolute; top: 72px; left: 0; right: 0; background: #fff; flex-direction: column; padding: 24px; gap: 16px; border-bottom: 1px solid #e5e7eb; box-shadow: 0 8px 24px rgba(0,0,0,.08); }
  .nav.open, .nav.nav--open { display: flex; }
  .nav__list { flex-direction: column; gap: 16px; }
  .nav-btn, .hamburger { display: flex; }
  .footer-grid, .footer__grid { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .hero { padding: 64px 0 48px; }
  .hero h1 { font-size: 1.6rem; }
  .hero__buttons { flex-direction: column; }
  .steps { grid-template-columns: 1fr; }
}

/* ============================================================
   ===== STRONA USŁUGI (service-page) — rozbudowany widok =====
   ============================================================ */

/* --- HERO USŁUGI --- */
.svc-hero { background: linear-gradient(135deg, #f0f4ff 0%, #e8eeff 50%, #fff 100%); padding: 72px 0 80px; }
.svc-hero__inner { display: grid; grid-template-columns: 1.15fr 1fr; gap: 56px; align-items: center; }
.svc-hero__badge { display: inline-block; background: #dbeafe; color: #2563eb; font-size: .8rem; font-weight: 600; padding: 6px 14px; border-radius: 20px; margin-bottom: 20px; letter-spacing: .02em; }
.svc-hero__title { font-size: 2.6rem; line-height: 1.2; font-weight: 800; color: #1a1a2e; margin-bottom: 18px; }
.svc-hero__subtitle { font-size: 1.1rem; color: #4b5563; line-height: 1.75; margin-bottom: 28px; max-width: 560px; }
.svc-hero__cta { display: flex; gap: 14px; flex-wrap: wrap; }
.svc-hero__visual { position: relative; }
.svc-hero__visual img { border-radius: 16px; box-shadow: 0 24px 60px rgba(37,99,235,.18); width: 100%; height: auto; min-height: 300px; object-fit: cover; }
.svc-hero__visual .placeholder-img { border-radius: 16px; min-height: 340px; box-shadow: 0 24px 60px rgba(37,99,235,.15); }

/* --- STATS BAR (pasek statystyk) --- */
.stats-bar-wrap { padding: 0; margin-top: -44px; position: relative; z-index: 2; }
.stats-bar { background: #1a1a2e; color: #fff; border-radius: 16px; display: grid; grid-template-columns: repeat(4, 1fr); padding: 28px 16px; box-shadow: 0 20px 50px rgba(26,26,46,.22); }
.stats-bar__item { text-align: center; padding: 8px 16px; border-right: 1px solid #2a2a3e; }
.stats-bar__item:last-child { border-right: none; }
.stats-bar__num { display: block; font-size: 2rem; font-weight: 800; color: #fff; line-height: 1.1; margin-bottom: 6px; background: linear-gradient(90deg, #60a5fa, #93c5fd); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.stats-bar__label { font-size: .82rem; color: #9ca3af; letter-spacing: .02em; }

/* --- TREŚĆ GŁÓWNA --- */
.svc-content { max-width: 820px; margin: 0 auto; }
.svc-content h2 { font-size: 1.6rem; margin: 44px 0 16px; color: #1a1a2e; position: relative; padding-left: 20px; }
.svc-content h2::before { content: ''; position: absolute; left: 0; top: 8px; bottom: 8px; width: 4px; background: #2563eb; border-radius: 2px; }
.svc-content h2:first-child { margin-top: 0; }
.svc-content p { margin-bottom: 18px; color: #374151; line-height: 1.85; font-size: 1.02rem; }
.svc-content strong { color: #1a1a2e; background: linear-gradient(180deg, transparent 62%, #dbeafe 62%); padding: 0 2px; }

/* --- TARGET CARD (dla kogo) --- */
.target-card { background: #fff; border-radius: 16px; border: 1px solid #e5e7eb; padding: 32px 28px; transition: transform .2s, box-shadow .2s, border-color .2s; text-align: center; }
.target-card:hover { transform: translateY(-6px); box-shadow: 0 20px 50px rgba(37,99,235,.12); border-color: #2563eb; }
.target-card__icon { font-size: 2.4rem; margin-bottom: 16px; display: block; line-height: 1; }
.target-card__title { font-size: 1.15rem; font-weight: 700; margin-bottom: 10px; color: #1a1a2e; }
.target-card__desc { color: #6b7280; font-size: .95rem; line-height: 1.65; }

/* --- CHECK LIST (features jako stringi) --- */
.check-list { list-style: none; display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px 32px; max-width: 960px; margin: 0 auto; padding: 0; }
.check-list li { position: relative; padding: 10px 0 10px 40px; color: #374151; font-size: 1rem; line-height: 1.6; }
.check-list li::before { content: '✓'; position: absolute; left: 0; top: 8px; width: 26px; height: 26px; background: #dbeafe; color: #2563eb; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: .9rem; }

/* --- WHY US CARDS --- */
.why-card { background: #fff; border-radius: 14px; padding: 28px; border: 1px solid #e5e7eb; transition: all .2s; }
.why-card:hover { box-shadow: 0 16px 40px rgba(37,99,235,.1); transform: translateY(-3px); }
.why-card__icon { width: 54px; height: 54px; background: linear-gradient(135deg, #dbeafe, #bfdbfe); border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 1.6rem; margin-bottom: 18px; }
.why-card__title { font-size: 1.1rem; font-weight: 700; margin-bottom: 8px; color: #1a1a2e; }
.why-card__desc { color: #6b7280; font-size: .93rem; line-height: 1.65; }

/* --- INLINE CTA (w połowie strony) --- */
.inline-cta-wrap { padding: 56px 0; background: #fff; }
.inline-cta { background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%); color: #fff; border-radius: 18px; padding: 36px 44px; display: flex; align-items: center; justify-content: space-between; gap: 32px; flex-wrap: wrap; box-shadow: 0 20px 60px rgba(37,99,235,.28); position: relative; overflow: hidden; }
.inline-cta::before { content: ''; position: absolute; right: -40px; top: -40px; width: 200px; height: 200px; background: rgba(255,255,255,.08); border-radius: 50%; }
.inline-cta__text { position: relative; z-index: 1; flex: 1; min-width: 260px; }
.inline-cta__text h3 { font-size: 1.4rem; margin-bottom: 6px; color: #fff; font-weight: 700; }
.inline-cta__text p { color: #dbeafe; font-size: .98rem; margin: 0; line-height: 1.6; }
.inline-cta .btn { position: relative; z-index: 1; flex-shrink: 0; }

/* --- TIMELINE (proces realizacji) --- */
.timeline { max-width: 820px; margin: 0 auto; position: relative; }
.timeline::before { content: ''; position: absolute; left: 26px; top: 12px; bottom: 12px; width: 2px; background: linear-gradient(180deg, #2563eb 0%, #dbeafe 100%); }
.timeline__item { display: grid; grid-template-columns: 56px 1fr; gap: 24px; padding: 8px 0 28px; position: relative; }
.timeline__item:last-child { padding-bottom: 0; }
.timeline__num { width: 54px; height: 54px; background: #2563eb; color: #fff; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.2rem; font-weight: 800; box-shadow: 0 8px 24px rgba(37,99,235,.3); z-index: 1; flex-shrink: 0; border: 4px solid #fff; }
.timeline__body { padding-top: 10px; }
.timeline__title { font-size: 1.15rem; font-weight: 700; margin-bottom: 6px; color: #1a1a2e; }
.timeline__desc { color: #6b7280; font-size: .98rem; line-height: 1.75; }

/* --- PORÓWNANIE (compare) --- */
.compare { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; max-width: 960px; margin: 0 auto; }
.compare__col { background: #fff; border-radius: 16px; padding: 32px; border: 2px solid; }
.compare__col--good { border-color: #10b981; background: linear-gradient(180deg, #ecfdf5 0%, #fff 100%); }
.compare__col--bad { border-color: #e5e7eb; background: #fff; }
.compare__col h3 { font-size: 1.15rem; margin-bottom: 20px; display: flex; align-items: center; gap: 10px; color: #1a1a2e; }
.compare__col--good h3::before { content: '✓'; width: 28px; height: 28px; background: #10b981; color: #fff; border-radius: 50%; display: inline-flex; align-items: center; justify-content: center; font-size: .9rem; font-weight: 700; flex-shrink: 0; }
.compare__col--bad h3::before { content: '✕'; width: 28px; height: 28px; background: #e5e7eb; color: #6b7280; border-radius: 50%; display: inline-flex; align-items: center; justify-content: center; font-size: .85rem; font-weight: 700; flex-shrink: 0; }
.compare__col ul { list-style: none; padding: 0; }
.compare__col li { padding: 11px 0 11px 28px; position: relative; font-size: .95rem; line-height: 1.55; border-bottom: 1px solid #f3f4f6; }
.compare__col li:last-child { border-bottom: none; }
.compare__col--good li { color: #065f46; }
.compare__col--good li::before { content: '+'; position: absolute; left: 4px; top: 10px; color: #10b981; font-weight: 800; font-size: 1.15rem; line-height: 1; }
.compare__col--bad li { color: #6b7280; }
.compare__col--bad li::before { content: '−'; position: absolute; left: 6px; top: 10px; color: #9ca3af; font-weight: 800; font-size: 1.15rem; line-height: 1; }

/* --- TECH BADGES --- */
.tech-badges { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; max-width: 820px; margin: 0 auto; }
.tech-badge { background: #fff; border: 1px solid #e5e7eb; padding: 10px 18px; border-radius: 24px; font-size: .9rem; font-weight: 600; color: #374151; transition: all .2s; }
.tech-badge:hover { border-color: #2563eb; color: #2563eb; background: #f0f4ff; transform: translateY(-2px); }

/* --- PAKIETY (packages) --- */
.packages { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; align-items: stretch; }
.package { background: #fff; border: 1px solid #e5e7eb; border-radius: 16px; padding: 32px 28px; display: flex; flex-direction: column; position: relative; transition: all .2s; }
.package:hover { box-shadow: 0 16px 40px rgba(0,0,0,.06); transform: translateY(-4px); }
.package--featured { border: 2px solid #2563eb; box-shadow: 0 16px 50px rgba(37,99,235,.18); transform: scale(1.03); background: linear-gradient(180deg, #fff 0%, #f8faff 100%); }
.package--featured:hover { transform: scale(1.03) translateY(-4px); }
.package__tag { position: absolute; top: -13px; left: 50%; transform: translateX(-50%); background: #2563eb; color: #fff; font-size: .72rem; font-weight: 700; padding: 6px 14px; border-radius: 20px; text-transform: uppercase; letter-spacing: .05em; white-space: nowrap; }
.package__header { text-align: center; padding-bottom: 20px; border-bottom: 1px solid #f3f4f6; margin-bottom: 20px; }
.package__name { font-size: 1.3rem; font-weight: 700; margin-bottom: 10px; color: #1a1a2e; }
.package__price { font-size: 1.85rem; font-weight: 800; color: #2563eb; margin-bottom: 8px; line-height: 1.1; }
.package__desc { color: #6b7280; font-size: .9rem; line-height: 1.5; }
.package__features { list-style: none; flex: 1; margin-bottom: 24px; padding: 0; }
.package__features li { padding: 9px 0 9px 28px; position: relative; font-size: .93rem; color: #374151; line-height: 1.5; }
.package__features li::before { content: '✓'; position: absolute; left: 0; top: 9px; color: #10b981; font-weight: 800; }

/* --- TESTIMONIAL --- */
.testimonial { max-width: 820px; margin: 0 auto; text-align: center; padding: 16px 24px 32px; position: relative; }
.testimonial__mark { font-size: 6rem; line-height: .8; color: #dbeafe; font-family: Georgia, serif; margin-bottom: -20px; font-weight: 800; }
.testimonial__quote { font-size: 1.3rem; line-height: 1.6; color: #1a1a2e; font-style: italic; margin-bottom: 24px; font-weight: 400; }
.testimonial__author { display: flex; flex-direction: column; gap: 4px; font-size: .95rem; }
.testimonial__author strong { color: #1a1a2e; font-weight: 700; }
.testimonial__author span { color: #6b7280; font-size: .88rem; }

/* --- FAQ (details/summary) --- */
.faq details.faq-item { border: 1px solid #e5e7eb; border-radius: 12px; background: #fff; margin-bottom: 12px; padding: 0; transition: border-color .2s, box-shadow .2s; }
.faq details.faq-item[open] { border-color: #2563eb; box-shadow: 0 8px 24px rgba(37,99,235,.08); }
.faq summary.faq-item__q { font-size: 1.02rem; font-weight: 600; color: #1a1a2e; cursor: pointer; padding: 18px 22px; list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 16px; }
.faq summary.faq-item__q::-webkit-details-marker { display: none; }
.faq summary.faq-item__q::after { content: '+'; font-size: 1.6rem; color: #2563eb; flex-shrink: 0; font-weight: 300; transition: transform .2s; line-height: 1; }
.faq details[open] summary.faq-item__q::after { content: '−'; }
.faq .faq-item__a { padding: 0 22px 20px; color: #4b5563; font-size: .96rem; line-height: 1.75; margin: 0; }

/* ============================================================
   ===== STRONA GŁÓWNA — split hero, visuals, target banners =====
   ============================================================ */

/* --- HERO split (text + visual obok) --- */
.hero--split { padding: 72px 0 64px; }
.hero--split .hero__grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: 56px; align-items: center; }
.hero--split .hero__text { max-width: 620px; }
.hero--split .hero__badge { margin-bottom: 18px; }
.hero--split .hero__title { margin-bottom: 20px; font-size: 2.6rem; line-height: 1.2; }
.hero--split .hero__subtitle { margin-bottom: 28px; font-size: 1.08rem; line-height: 1.75; }
.hero--split .hero__visual { position: relative; }
.hero--split .hero__visual img { width: 100%; height: auto; border-radius: 18px; box-shadow: 0 30px 80px rgba(37,99,235,.2), 0 12px 30px rgba(0,0,0,.06); display: block; }
.hero--split .hero__visual::before { content: ''; position: absolute; top: -20px; right: -20px; width: 140px; height: 140px; background: radial-gradient(circle, #dbeafe 0%, transparent 70%); border-radius: 50%; z-index: -1; }
.hero--split .hero__visual::after { content: ''; position: absolute; bottom: -24px; left: -24px; width: 100px; height: 100px; background: radial-gradient(circle, #fde68a 0%, transparent 70%); border-radius: 50%; z-index: -1; opacity: .5; }

/* --- TWO-COL balanced (obraz + content, równowaga wizualna) --- */
.two-col--balanced { display: grid; grid-template-columns: 1fr 1.2fr; gap: 56px; align-items: center; }
.two-col__img-wrap { position: relative; }
.two-col__img-wrap img { width: 100%; height: auto; border-radius: 16px; box-shadow: 0 20px 50px rgba(37,99,235,.15), 0 8px 20px rgba(0,0,0,.04); display: block; }
.two-col__content p { margin-bottom: 16px; color: #374151; line-height: 1.85; font-size: 1rem; }
.two-col__content strong { color: #1a1a2e; background: linear-gradient(180deg, transparent 62%, #dbeafe 62%); padding: 0 2px; }

/* --- TARGET CARD z banerem (dla kogo) --- */
.target-card--with-img { padding: 0; text-align: left; overflow: hidden; display: flex; flex-direction: column; }
.target-card--with-img .target-card__banner { width: 100%; aspect-ratio: 16 / 9; overflow: hidden; background: #f0f4ff; }
.target-card--with-img .target-card__banner img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .4s ease; }
.target-card--with-img:hover .target-card__banner img { transform: scale(1.04); }
.target-card--with-img .target-card__body { padding: 24px 26px 28px; flex: 1; display: flex; flex-direction: column; }
.target-card--with-img .target-card__icon { font-size: 1.8rem; margin-bottom: 10px; }
.target-card--with-img .target-card__title { font-size: 1.15rem; margin-bottom: 10px; }
.target-card--with-img .target-card__desc { text-align: left; }

/* --- PROCESS LAYOUT (timeline + grafika sticky) --- */
.process-layout { display: grid; grid-template-columns: 1fr 1.15fr; gap: 56px; align-items: start; max-width: 1080px; margin: 0 auto; }
.process-layout__visual { position: sticky; top: 100px; }
.process-layout__visual img { width: 100%; height: auto; border-radius: 16px; box-shadow: 0 20px 50px rgba(37,99,235,.15), 0 8px 20px rgba(0,0,0,.04); display: block; }
.process-layout .timeline { max-width: none; margin: 0; }

/* --- RESPONSIVE: home visuals --- */
@media (max-width: 960px) {
    .hero--split .hero__grid { grid-template-columns: 1fr; gap: 40px; }
    .hero--split .hero__text { max-width: none; text-align: center; }
    .hero--split .hero__badge,
    .hero--split .hero__buttons { justify-content: center; }
    .hero--split .hero__buttons { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; }
    .hero--split .hero__title { font-size: 2.1rem; }
    .hero--split .hero__visual { max-width: 540px; margin: 0 auto; }
    .hero--split .hero__visual::before,
    .hero--split .hero__visual::after { display: none; }

    .two-col--balanced { grid-template-columns: 1fr; gap: 32px; }
    .two-col__img-wrap { max-width: 540px; margin: 0 auto; }

    .process-layout { grid-template-columns: 1fr; gap: 32px; }
    .process-layout__visual { position: static; max-width: 540px; margin: 0 auto; }
}
@media (max-width: 640px) {
    .hero--split { padding: 48px 0 40px; }
    .hero--split .hero__title { font-size: 1.65rem; }
    .hero--split .hero__buttons .btn { width: 100%; text-align: center; }
    .target-card--with-img .target-card__body { padding: 20px 22px 24px; }
}

/* ============================================================
   ===== KONTAKT (modern) — karty + elevated form card =====
   ============================================================ */

.contact-section { position: relative; overflow: hidden; background: linear-gradient(180deg, #f8f9fb 0%, #f0f4ff 100%); }
.contact-section::before { content: ''; position: absolute; top: -120px; right: -120px; width: 480px; height: 480px; background: radial-gradient(circle, rgba(37,99,235,.08) 0%, transparent 70%); border-radius: 50%; pointer-events: none; }
.contact-section::after { content: ''; position: absolute; bottom: -100px; left: -100px; width: 380px; height: 380px; background: radial-gradient(circle, rgba(251,113,133,.06) 0%, transparent 70%); border-radius: 50%; pointer-events: none; }
.contact-section .wrapper { position: relative; z-index: 1; }

.contact-modern { display: grid; grid-template-columns: 1fr 1.3fr; gap: 40px; align-items: start; margin-top: 16px; }

/* --- LEWA KOLUMNA: contact-card --- */
.contact-modern__info { display: flex; flex-direction: column; gap: 14px; }

.contact-card { background: #fff; border: 1px solid #e5e7eb; border-radius: 14px; padding: 20px 22px; display: flex; gap: 16px; align-items: center; transition: transform .25s, box-shadow .25s, border-color .25s; text-decoration: none; color: inherit; }
a.contact-card:hover { border-color: #2563eb; box-shadow: 0 16px 40px rgba(37,99,235,.12); transform: translateY(-3px); }
a.contact-card:hover .contact-card__arrow { color: #2563eb; transform: translateX(4px); }
a.contact-card:hover .contact-card__value { color: #2563eb; }
.contact-card--static { cursor: default; }

.contact-card__icon { width: 52px; height: 52px; border-radius: 12px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; color: #2563eb; }
.contact-card__icon--phone { background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%); }
.contact-card__icon--mail { background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%); color: #b45309; }
.contact-card__icon--location { background: linear-gradient(135deg, #fce7f3 0%, #fbcfe8 100%); color: #be185d; }

.contact-card__body { flex: 1; display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.contact-card__label { font-size: .72rem; font-weight: 700; color: #9ca3af; text-transform: uppercase; letter-spacing: .08em; }
.contact-card__value { font-size: 1.08rem; font-weight: 700; color: #1a1a2e; transition: color .2s; word-break: break-word; }
.contact-card__meta { font-size: .82rem; color: #9ca3af; margin-top: 2px; }
.contact-card__arrow { font-size: 1.3rem; color: #d1d5db; transition: transform .2s, color .2s; flex-shrink: 0; }

/* Highlight "Bezpłatna wycena w 24h" */
.contact-highlight { background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%); color: #fff; padding: 22px 24px; border-radius: 14px; display: flex; gap: 16px; align-items: flex-start; box-shadow: 0 18px 40px rgba(37,99,235,.3); position: relative; overflow: hidden; }
.contact-highlight::before { content: ''; position: absolute; top: -40px; right: -40px; width: 160px; height: 160px; background: rgba(255,255,255,.1); border-radius: 50%; }
.contact-highlight__icon { width: 46px; height: 46px; background: rgba(255,255,255,.15); border-radius: 12px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; color: #fde68a; z-index: 1; position: relative; }
.contact-highlight__text { flex: 1; z-index: 1; position: relative; }
.contact-highlight__text strong { display: block; font-size: 1.05rem; margin-bottom: 4px; color: #fff; font-weight: 700; }
.contact-highlight__text p { color: rgba(255,255,255,.88); font-size: .88rem; line-height: 1.55; margin: 0; }

/* --- PRAWA KOLUMNA: elevated form card --- */
.contact-modern__form { background: #fff; border-radius: 20px; padding: 36px 36px 30px; box-shadow: 0 24px 60px rgba(26,26,46,.08), 0 4px 16px rgba(0,0,0,.04); border: 1px solid #f3f4f6; position: relative; }
.contact-modern__form::before { content: ''; position: absolute; top: -2px; left: 40px; right: 40px; height: 4px; background: linear-gradient(90deg, #2563eb, #60a5fa, #fb7185); border-radius: 0 0 4px 4px; }

.contact-form-modern__header { margin-bottom: 24px; padding-bottom: 20px; border-bottom: 1px solid #f3f4f6; }
.contact-form-modern__header h3 { font-size: 1.4rem; margin-bottom: 6px; color: #1a1a2e; font-weight: 700; }
.contact-form-modern__header p { font-size: .92rem; color: #6b7280; margin: 0; line-height: 1.55; }

.contact-form-modern { display: flex; flex-direction: column; gap: 18px; }
.form-row { display: flex; flex-direction: column; gap: 18px; }
.form-row--two { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

.form-field { display: flex; flex-direction: column; gap: 7px; }
.form-field label { font-size: .82rem; font-weight: 600; color: #374151; letter-spacing: .01em; display: flex; align-items: center; gap: 8px; }
.form-field__optional { font-size: .7rem; font-weight: 500; color: #9ca3af; background: #f3f4f6; padding: 2px 8px; border-radius: 10px; text-transform: none; letter-spacing: 0; }
.form-field input, .form-field textarea { width: 100%; padding: 13px 16px; border: 1.5px solid #e5e7eb; border-radius: 10px; font-size: .95rem; font-family: inherit; transition: border-color .2s, background .2s, box-shadow .2s; background: #fafafa; color: #1a1a2e; }
.form-field input::placeholder, .form-field textarea::placeholder { color: #c2c6cd; }
.form-field input:focus, .form-field textarea:focus { outline: none; border-color: #2563eb; background: #fff; box-shadow: 0 0 0 4px rgba(37,99,235,.12); }
.form-field textarea { resize: vertical; min-height: 110px; line-height: 1.55; }

.contact-form-modern__submit { margin-top: 6px; display: inline-flex; align-items: center; justify-content: center; gap: 10px; padding: 15px 28px; font-size: 1rem; font-weight: 600; }
.contact-form-modern__arrow { transition: transform .2s; display: inline-block; }
.contact-form-modern__submit:hover .contact-form-modern__arrow { transform: translateX(5px); }

.contact-form-modern__privacy { font-size: .8rem; color: #9ca3af; text-align: center; margin: 10px 0 0; line-height: 1.6; display: flex; align-items: center; justify-content: center; gap: 6px; flex-wrap: wrap; }
.contact-form-modern__privacy svg { flex-shrink: 0; color: #9ca3af; }
.contact-form-modern__privacy a { color: #6b7280; text-decoration: underline; }
.contact-form-modern__privacy a:hover { color: #2563eb; }

/* --- Responsive kontakt --- */
@media (max-width: 960px) {
    .contact-modern { grid-template-columns: 1fr; gap: 28px; }
    .contact-modern__form { padding: 28px 24px; }
}
@media (max-width: 640px) {
    .form-row--two { grid-template-columns: 1fr; gap: 18px; }
    .contact-modern__form { padding: 24px 20px; border-radius: 16px; }
    .contact-modern__form::before { left: 24px; right: 24px; }
    .contact-card { padding: 16px 18px; gap: 14px; }
    .contact-card__icon { width: 44px; height: 44px; }
    .contact-highlight { padding: 18px 20px; }
}

/* --- SERVICE CARD jako link (klikalna cała karta) --- */
a.svc-card--link { display: flex; flex-direction: column; text-decoration: none; color: inherit; position: relative; }
a.svc-card--link:hover { border-color: #2563eb; color: inherit; }
a.svc-card--link:hover .svc-card__title { color: #2563eb; }
a.svc-card--link .svc-card__arrow { display: inline-block; margin-top: auto; padding-top: 16px; font-size: .88rem; font-weight: 600; color: #2563eb; letter-spacing: .01em; transition: letter-spacing .2s; }
a.svc-card--link:hover .svc-card__arrow { letter-spacing: .03em; }

/* --- SEKCJA „nietypowy projekt" (custom_cta) --- */
.custom-project-cta { max-width: 720px; margin: 0 auto; text-align: center; background: #fff; border: 2px dashed #2563eb; border-radius: 20px; padding: 48px 40px; }
.custom-project-cta__icon { font-size: 3rem; margin-bottom: 16px; line-height: 1; }
.custom-project-cta__title { font-size: 1.7rem; font-weight: 800; margin-bottom: 16px; color: #1a1a2e; }
.custom-project-cta__text { font-size: 1rem; line-height: 1.75; color: #4b5563; margin-bottom: 28px; }
@media (max-width: 640px) {
    .custom-project-cta { padding: 32px 24px; }
    .custom-project-cta__title { font-size: 1.3rem; }
    .custom-project-cta__icon { font-size: 2.4rem; }
}

/* --- FINAL CTA (przyciski) --- */
.cta-banner__buttons { display: flex; justify-content: center; gap: 14px; flex-wrap: wrap; }
.btn--outline-white { background: transparent; color: #fff; border: 2px solid rgba(255,255,255,.6); }
.btn--outline-white:hover { background: #fff; color: #2563eb; border-color: #fff; }

/* --- RESPONSIVE --- */
@media (max-width: 960px) {
  .svc-hero__inner { grid-template-columns: 1fr; gap: 32px; }
  .svc-hero__title { font-size: 2rem; }
  .svc-hero { padding: 56px 0 64px; }
  .stats-bar { grid-template-columns: repeat(2, 1fr); gap: 20px 0; padding: 22px 16px; }
  .stats-bar__item { border-right: none; border-bottom: 1px solid #2a2a3e; padding-bottom: 20px; }
  .stats-bar__item:nth-last-child(-n+2) { border-bottom: none; padding-bottom: 8px; }
  .stats-bar__item:nth-child(2n) { border-right: none; }
  .stats-bar__num { font-size: 1.65rem; }
  .packages { grid-template-columns: 1fr; gap: 32px; }
  .package--featured { transform: none; }
  .package--featured:hover { transform: translateY(-4px); }
  .compare { grid-template-columns: 1fr; }
  .check-list { grid-template-columns: 1fr; gap: 6px; }
  .inline-cta { flex-direction: column; text-align: center; padding: 28px 24px; align-items: stretch; }
  .inline-cta__text { min-width: 0; }
  .inline-cta .btn { width: 100%; }
}
@media (max-width: 640px) {
  .svc-hero__title { font-size: 1.65rem; }
  .svc-hero__cta { flex-direction: column; }
  .svc-hero__cta .btn { width: 100%; text-align: center; }
  .stats-bar { grid-template-columns: 1fr; padding: 8px 16px; }
  .stats-bar__item { border-right: none; border-bottom: 1px solid #2a2a3e; padding: 16px 0; }
  .stats-bar__item:last-child { border-bottom: none; }
  .svc-content h2 { font-size: 1.3rem; padding-left: 16px; }
  .testimonial__quote { font-size: 1.08rem; }
  .testimonial__mark { font-size: 4.5rem; }
  .timeline::before { left: 22px; }
  .timeline__num { width: 46px; height: 46px; font-size: 1.05rem; }
  .timeline__item { grid-template-columns: 46px 1fr; gap: 18px; }
  .compare__col { padding: 24px 20px; }
  .cta-banner__buttons { flex-direction: column; }
  .cta-banner__buttons .btn { width: 100%; }
}
