/* Shared styles dla service-landing pages SYKUR */
:root {
  --sky: #1C43F9;
  --sky-light: #5B9DEF;
  --navy: #0F0A4E;
  --navy-text: #22314D;
  --cream: #F5F5F0;
  --bone: #ECE7DD;
  --white: #FFFFFF;
  --ink: #111111;
  --muted: #5d6878;
  --line: rgba(15,10,78,0.12);
  --shadow-sm: 0 4px 12px rgba(15,10,78,0.06);
  --shadow-md: 0 12px 32px rgba(15,10,78,0.10);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Inter, system-ui, Arial, sans-serif;
  color: var(--ink);
  line-height: 1.65;
  background: var(--white);
}
a { color: var(--sky); text-decoration: none; transition: color 0.15s; }
a:hover { color: var(--sky-light); }
img { max-width: 100%; height: auto; display: block; }
.container { width: min(960px, calc(100% - 32px)); margin: 0 auto; }

/* Nav (identyczny z main) */
.nav { background: rgba(255,255,255,0.96); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); border-bottom: 1px solid var(--line); position: sticky; top: 0; z-index: 100; }
.nav-inner { display: flex; align-items: center; justify-content: space-between; padding: 16px 0; gap: 16px; }
.nav-logo img { height: 48px; width: auto; }
.nav-links { display: flex; gap: 28px; align-items: center; }
.nav-links a { color: var(--navy-text); font-weight: 600; font-size: 15px; }
.nav-links a.nav-cta { background: linear-gradient(135deg, var(--sky), var(--navy)); color: var(--white); padding: 10px 22px; border-radius: 10px; font-weight: 700; font-size: 14px; transition: transform 0.2s, box-shadow 0.2s; }
.nav-links a.nav-cta:hover { color: var(--white); transform: translateY(-1px); box-shadow: 0 8px 20px rgba(28,67,249,0.35); }
@media (max-width: 720px) { .nav-links a:not(.nav-cta) { display: none; } .nav-logo img { height: 40px; } }

/* Breadcrumb */
.breadcrumb { padding: 16px 0; background: var(--bone); font-size: 13px; }
.breadcrumb ol { list-style: none; padding: 0; margin: 0; display: flex; gap: 8px; flex-wrap: wrap; }
.breadcrumb li { color: var(--muted); }
.breadcrumb li::after { content: '›'; margin-left: 8px; color: var(--muted); }
.breadcrumb li:last-child::after { content: ''; }
.breadcrumb a { color: var(--navy-text); font-weight: 600; }

/* Hero */
.service-hero {
  position: relative;
  padding: 64px 0 80px;
  overflow: hidden;
  isolation: isolate;
  min-height: 380px;
  display: flex;
  align-items: center;
}
.service-hero-bg { position: absolute; inset: 0; z-index: -2; }
.service-hero-bg picture, .service-hero-bg img { width: 100%; height: 100%; object-fit: cover; }
.service-hero::before { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg, rgba(15,10,78,0.82) 0%, rgba(28,67,249,0.50) 100%); z-index: -1; }
.service-hero-content { position: relative; z-index: 2; max-width: 720px; }
.service-eyebrow { display: inline-block; color: var(--sky-light); font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; font-size: 12px; margin-bottom: 16px; padding: 5px 12px; background: rgba(91,157,239,0.18); border: 1px solid rgba(91,157,239,0.35); border-radius: 99px; }
.service-hero h1 { font-size: clamp(2rem, 4vw, 3rem); line-height: 1.1; letter-spacing: -0.02em; color: var(--white); margin: 0 0 18px; font-weight: 800; text-shadow: 0 2px 24px rgba(15,10,78,0.45); }
.service-hero-sub { font-size: clamp(16px, 1.3vw, 19px); color: rgba(255,255,255,0.92); margin: 0 0 28px; max-width: 600px; }
.service-hero-cta { display: flex; gap: 12px; flex-wrap: wrap; }
.btn { display: inline-block; padding: 14px 28px; border-radius: 10px; font-weight: 700; font-size: 15px; border: 2px solid transparent; transition: transform 0.2s, box-shadow 0.2s; cursor: pointer; }
.btn-primary { background: linear-gradient(135deg, var(--sky) 0%, var(--navy) 100%); color: var(--white); box-shadow: 0 8px 24px rgba(28,67,249,0.35); }
.btn-primary:hover { color: var(--white); transform: translateY(-2px); box-shadow: 0 14px 32px rgba(28,67,249,0.50); }
.btn-secondary { background: rgba(255,255,255,0.10); color: var(--white); border-color: rgba(255,255,255,0.45); backdrop-filter: blur(8px); }
.btn-secondary:hover { color: var(--white); background: rgba(255,255,255,0.20); transform: translateY(-2px); }

/* Content sections */
.content { padding: 72px 0; }
.content.alt { background: var(--bone); }
.content h2 { font-size: clamp(24px, 3vw, 34px); color: var(--navy); margin: 0 0 16px; letter-spacing: -0.01em; font-weight: 800; }
.content h3 { font-size: 19px; color: var(--navy); margin: 24px 0 10px; font-weight: 700; }
.content p { color: var(--navy-text); margin: 0 0 14px; font-size: 16px; }
.content ul { padding-left: 22px; color: var(--navy-text); }
.content ul li { margin-bottom: 8px; font-size: 15px; }
.intro-lead { font-size: 18px; color: var(--navy-text); max-width: 720px; margin: 0 0 32px; }

/* Two-column layout */
.two-col { display: grid; grid-template-columns: 1.5fr 1fr; gap: 48px; align-items: start; }
.aside-card { background: var(--white); border: 1px solid var(--line); border-radius: 18px; padding: 28px; box-shadow: var(--shadow-sm); position: sticky; top: 100px; }
.aside-card h3 { color: var(--navy); font-size: 17px; margin: 0 0 14px; font-weight: 700; }
.aside-card p { font-size: 14px; margin: 0 0 14px; }
.aside-cta { display: block; text-align: center; background: var(--sky); color: var(--white); padding: 12px 18px; border-radius: 10px; font-weight: 700; font-size: 14px; transition: background 0.2s; }
.aside-cta:hover { background: var(--navy); color: var(--white); }
.aside-meta { font-size: 13px; color: var(--muted); margin-top: 14px; padding-top: 14px; border-top: 1px solid var(--line); }
@media (max-width: 760px) { .two-col { grid-template-columns: 1fr; gap: 28px; } .aside-card { position: static; } }

/* Cross-links cards */
.related-services { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 18px; }
.related-card { background: var(--white); border: 1px solid var(--line); border-radius: 14px; padding: 22px; transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s; text-decoration: none; }
.related-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: rgba(28,67,249,0.35); }
.related-card h3 { color: var(--navy); font-size: 16px; margin: 0 0 8px; font-weight: 700; }
.related-card p { color: var(--muted); font-size: 13px; margin: 0; }
.related-card-link { color: var(--sky); font-weight: 700; font-size: 13px; margin-top: 10px; display: inline-block; }

/* FAQ */
.faq-list { display: flex; flex-direction: column; gap: 14px; }
.faq-item { background: var(--white); border: 1px solid var(--line); border-radius: 14px; padding: 22px 26px; }
.faq-item h3 { font-size: 17px; margin: 0 0 10px; color: var(--navy); }
.faq-item p { font-size: 15px; margin: 0; }

/* Final CTA */
.final-cta { background: linear-gradient(135deg, var(--navy) 0%, #1a1463 100%); color: var(--bone); padding: 72px 0; text-align: center; }
.final-cta h2 { color: var(--white); margin: 0 0 14px; }
.final-cta p { color: rgba(245,245,240,0.78); font-size: 17px; max-width: 560px; margin: 0 auto 28px; }

/* Footer (identyczny z main) */
.footer { background: var(--navy); color: var(--cream); padding: 60px 0 28px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 48px; margin-bottom: 36px; }
.footer-brand img { height: 56px; width: auto; margin-bottom: 18px; }
.footer-brand p { color: rgba(245,245,240,0.78); font-size: 14px; margin: 0; max-width: 380px; }
.footer h4 { color: var(--white); font-size: 13px; text-transform: uppercase; letter-spacing: 0.14em; margin: 0 0 16px; font-weight: 700; }
.footer ul { list-style: none; padding: 0; margin: 0; }
.footer li { margin-bottom: 10px; }
.footer a { color: rgba(245,245,240,0.85); font-size: 14px; }
.footer a:hover { color: var(--sky-light); }
.footer-bottom { padding-top: 24px; border-top: 1px solid rgba(245,245,240,0.18); display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; font-size: 12px; color: rgba(245,245,240,0.62); }
@media (max-width: 760px) { .footer-grid { grid-template-columns: 1fr; gap: 28px; } }

/* prefers-reduced-motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
