/* ─── KONO COMPANY — Service Pages CSS ─────────────────
   Fichye sa a partagé pou tout 6 paj sèvis yo.
   Pa ekri stil espesifik yon sèvis isit — mete yo nan
   blòk .sv-[nom-sèvis] si nesesè.
   ─────────────────────────────────────────────────────── */

/* ─── Hero ─────────────────────────────────────────── */
.sv-hero {
  padding: 100px 24px 72px;
  text-align: center;
  max-width: 760px;
  margin: 0 auto;
}

.sv-hero-icon {
  width: 72px;
  height: 72px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 28px;
}

.sv-hero-icon svg,
.sv-hero-icon i { width: 32px; height: 32px; color: #fff; }

.sv-hero-title {
  font-size: clamp(26px, 5vw, 44px);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 16px;
}

.sv-hero-sub {
  font-size: 17px;
  color: rgba(255,255,255,0.5);
  max-width: 580px;
  margin: 0 auto 36px;
  line-height: 1.7;
}

.sv-hero-cta {
  display: inline-block;
  background: #fff;
  color: #000;
  font-family: Arial, sans-serif;
  font-size: 14px;
  font-weight: 700;
  padding: 14px 34px;
  border-radius: 50px;
  text-decoration: none;
  transition: opacity .2s;
}
.sv-hero-cta:hover { opacity: .82; }

/* ─── Section ──────────────────────────────────────── */
.sv-section {
  padding: 64px 24px;
  max-width: 960px;
  margin: 0 auto;
}

.sv-section + .sv-section {
  border-top: 1px solid rgba(255,255,255,0.07);
}

.sv-section-title {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: 28px;
}

/* ─── Grille kat ──────────────────────────────────── */
.sv-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 16px;
}

.sv-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: 16px;
  padding: 24px 20px;
}

.sv-card-icon {
  width: 38px;
  height: 38px;
  background: rgba(255,255,255,0.08);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.sv-card-icon i { width: 17px; height: 17px; color: #fff; }

.sv-card-title {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 8px;
}

.sv-card-desc {
  font-size: 13px;
  color: rgba(255,255,255,0.45);
  line-height: 1.65;
}

/* ─── Étapes ──────────────────────────────────────── */
.sv-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 16px;
}

.sv-step {
  text-align: center;
  padding: 20px 12px;
}

.sv-step-num {
  width: 42px;
  height: 42px;
  background: #fff;
  color: #000;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 16px;
  margin: 0 auto 16px;
}

.sv-step-title {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 8px;
}

.sv-step-desc {
  font-size: 12px;
  color: rgba(255,255,255,0.4);
  line-height: 1.6;
}

/* ─── Tags (clients, techno, etc.) ──────────────────── */
.sv-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 8px;
}

.sv-tag {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.11);
  border-radius: 50px;
  padding: 6px 16px;
  font-size: 12px;
  color: rgba(255,255,255,0.65);
}

/* ─── CTA finale ──────────────────────────────────── */
.sv-cta {
  background: rgba(255,255,255,0.04);
  border-top: 1px solid rgba(255,255,255,0.07);
  padding: 72px 24px;
  text-align: center;
}

.sv-cta-title {
  font-size: clamp(22px, 4vw, 34px);
  font-weight: 800;
  margin-bottom: 12px;
}

.sv-cta-sub {
  color: rgba(255,255,255,0.45);
  margin-bottom: 36px;
  font-size: 16px;
}

/* ─── Footer simple ───────────────────────────────── */
.sv-footer {
  padding: 28px 24px;
  text-align: center;
  border-top: 1px solid rgba(255,255,255,0.07);
}

.sv-footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 24px;
  margin-bottom: 12px;
}

.sv-footer a {
  color: rgba(255,255,255,0.35);
  text-decoration: none;
  font-size: 12px;
  transition: color .2s;
}
.sv-footer a:hover { color: #fff; }

.sv-footer-copy {
  font-size: 11px;
  color: rgba(255,255,255,0.2);
}

/* ─── Responsive ──────────────────────────────────── */
@media (max-width: 600px) {
  .sv-hero  { padding: 80px 16px 52px; }
  .sv-section { padding: 48px 16px; }
  .sv-steps { grid-template-columns: 1fr 1fr; }
}
