/* ==============================================
   KAZJOL — Service landing page styles
   ============================================== */

/* ===== Service hero ===== */
.service-hero {
  padding: 130px 0 60px;
  background: linear-gradient(135deg, #0a1f2c 0%, #1a3548 100%);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.service-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 15% 30%, rgba(0,175,222,0.18) 0, transparent 40%),
    radial-gradient(circle at 85% 70%, rgba(0,140,179,0.20) 0, transparent 40%);
  pointer-events: none;
}
.service-hero .container { position: relative; z-index: 1; max-width: 980px; }
.service-hero h1 {
  font-size: 40px;
  font-weight: 700;
  margin: 14px 0 16px;
  line-height: 1.2;
  letter-spacing: -0.3px;
}
.service-hero .lead {
  font-size: 18px;
  color: rgba(255,255,255,0.9);
  margin: 0 0 26px;
  max-width: 760px;
  line-height: 1.6;
}
.service-hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 14px;
  margin: 0 0 28px;
}
.service-hero-trust span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  padding: 6px 14px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 30px;
}
.service-hero-ctas { display: flex; flex-wrap: wrap; gap: 12px; }
.service-hero-ctas a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  transition: transform .2s ease, background .2s ease;
}
.service-hero-ctas .primary {
  background: #00afde;
  color: #fff;
  box-shadow: 0 8px 24px rgba(0,175,222,.4);
}
.service-hero-ctas .primary:hover { background: #008cb3; transform: translateY(-2px); }
.service-hero-ctas .wa {
  background: #168c3d;
  color: #fff;
  box-shadow: 0 8px 24px rgba(22,140,61,.35);
}
.service-hero-ctas .wa:hover { background: #0f6b2d; transform: translateY(-2px); }

@media (max-width: 991.98px) {
  .service-hero { padding: 140px 0 40px !important; }
  .service-hero h1 { font-size: 26px; }
  .service-hero .lead { font-size: 15px; }
  .service-hero-ctas a { width: 100%; justify-content: center; }
  .service-hero .article-breadcrumbs {
    margin-bottom: 14px !important;
    color: #fff !important;
    opacity: 1 !important;
    font-size: 14px !important;
  }
  .service-hero .article-breadcrumbs a {
    color: #fff !important;
    opacity: 1 !important;
    text-decoration: underline;
  }
}

/* ===== Generic service section ===== */
.service-section { padding: 60px 0; }
.service-section.alt { background: #f5f9fc; }

.service-section h2 {
  font-size: 28px;
  font-weight: 700;
  color: #0a1f2c;
  margin: 0 0 12px;
  line-height: 1.3;
}
.service-section .section-lead {
  font-size: 16px;
  color: #6b7785;
  margin: 0 0 30px;
  max-width: 720px;
}

.service-content {
  font-size: 16px;
  line-height: 1.75;
  color: #2c3e50;
  max-width: 880px;
}
.service-content p { margin: 0 0 14px; }
.service-content h3 {
  font-size: 20px;
  font-weight: 700;
  color: #0a1f2c;
  margin: 28px 0 10px;
}
.service-content ul, .service-content ol {
  margin: 0 0 18px;
  padding-left: 22px;
}
.service-content li { margin-bottom: 6px; }
.service-content strong { color: #0a1f2c; }

/* Process cards (numbered steps) */
.process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}
.process-step {
  background: #fff;
  padding: 24px 22px 22px;
  border-radius: 14px;
  border: 1px solid #e5eaf0;
  box-shadow: 0 2px 8px rgba(10,31,44,0.05);
  position: relative;
  transition: transform .25s ease, box-shadow .25s ease;
}
.process-step:hover { transform: translateY(-4px); box-shadow: 0 10px 24px rgba(10,31,44,0.08); }
.process-step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, #00afde, #008cb3);
  color: #fff;
  font-weight: 700;
  margin-bottom: 14px;
  font-family: "Poppins", system-ui, sans-serif;
}
.process-step h3 {
  font-size: 17px;
  font-weight: 700;
  color: #0a1f2c;
  margin: 0 0 8px;
}
.process-step p { font-size: 14.5px; color: #2c3e50; margin: 0; line-height: 1.5; }

/* For-which-objects feature cards */
.fit-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
}
.fit-card {
  background: #fff;
  padding: 18px 20px;
  border-radius: 12px;
  border-left: 3px solid #00afde;
  box-shadow: 0 2px 6px rgba(10,31,44,0.04);
}
.fit-card strong { display: block; color: #0a1f2c; margin-bottom: 4px; font-size: 15.5px; }
.fit-card span { font-size: 14px; color: #6b7785; line-height: 1.5; }

/* Why-us cards */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
}
.why-card {
  background: #fff;
  padding: 24px 20px;
  border-radius: 14px;
  border: 1px solid #e5eaf0;
  text-align: center;
}
.why-card .num {
  font-size: 36px;
  font-weight: 800;
  background: linear-gradient(135deg, #00afde, #006e91);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 8px;
  font-family: "Poppins", system-ui, sans-serif;
}
.why-card .label {
  font-size: 14px;
  color: #6b7785;
  font-weight: 500;
}

/* Pricing factors table */
.pricing-table {
  width: 100%;
  border-collapse: collapse;
  margin: 14px 0 22px;
  font-size: 15px;
}
.pricing-table th {
  background: #00afde;
  color: #fff;
  padding: 12px 14px;
  text-align: left;
  font-weight: 600;
}
.pricing-table td {
  padding: 12px 14px;
  border-bottom: 1px solid #e5eaf0;
}
.pricing-table tr:nth-child(even) td { background: #f5f9fc; }

/* Big CTA section */
.service-cta-block {
  background: linear-gradient(135deg, #00afde 0%, #006e91 100%);
  border-radius: 18px;
  padding: 44px 40px;
  color: #fff;
  text-align: center;
  box-shadow: 0 14px 32px rgba(0,175,222,.25);
}
.service-cta-block h2 {
  color: #fff;
  font-size: 26px;
  margin: 0 0 10px;
  font-weight: 700;
}
.service-cta-block p {
  color: rgba(255,255,255,0.95);
  margin: 0 0 24px;
  font-size: 16px;
}
.service-cta-buttons {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}
.service-cta-buttons a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  font-size: 15px;
  transition: transform .2s, background .2s;
}
.service-cta-buttons .white {
  background: #fff;
  color: #006e91 !important;
}
.service-cta-buttons .white:hover { transform: translateY(-2px); }
.service-cta-buttons .green {
  background: #168c3d;
  color: #fff !important;
}
.service-cta-buttons .green:hover { background: #0f6b2d; transform: translateY(-2px); }

@media (max-width: 768px) {
  .service-cta-block { padding: 32px 22px; }
  .service-cta-block h2 { font-size: 21px; }
}

/* Services overview grid (for /uslugi/) */
.services-overview-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
}
.svc-card {
  background: #fff;
  border-radius: 16px;
  padding: 28px 26px 24px;
  border: 1px solid #e5eaf0;
  text-decoration: none !important;
  color: inherit;
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: transform .25s, box-shadow .25s, border-color .25s;
  box-shadow: 0 2px 8px rgba(10,31,44,0.05);
}
.svc-card:hover {
  transform: translateY(-6px);
  border-color: #00afde;
  box-shadow: 0 14px 28px rgba(0,175,222,0.18);
  color: inherit;
}
.svc-card-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: linear-gradient(135deg, #00afde, #006e91);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  box-shadow: 0 8px 18px rgba(0,175,222,0.25);
}
.svc-card-icon svg { width: 28px; height: 28px; color: #fff; }
.svc-card h2 {
  font-size: 19px;
  font-weight: 700;
  color: #0a1f2c;
  margin: 0 0 8px;
  line-height: 1.3;
}
.svc-card p {
  font-size: 14.5px;
  color: #2c3e50;
  line-height: 1.55;
  margin: 0 0 14px;
  flex: 1;
}
.svc-card-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #006e91;
  font-weight: 600;
  font-size: 14px;
  margin-top: auto;
}
.svc-card-cta::after { content: "→"; }
