/* Service / info pages — same design tokens as the landing */
:root {
  --blue:    #1B4FCC;
  --blue-md: #2B62E8;
  --sky:     #EBF2FF;
  --sky2:    #F5F8FF;
  --border:  #D6E3FF;
  --text:    #0F1C3F;
  --muted:   #5A6A8A;
  --white:   #FFFFFF;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

/* ---------- NAV ---------- */
.p-nav {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem; padding: .85rem 5vw;
  border-bottom: 1px solid var(--border);
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(10px);
  position: sticky; top: 0; z-index: 50;
}
.p-logo img { height: 42px; width: auto; display: block; }
.p-nav-actions { display: flex; align-items: center; gap: .5rem; flex-wrap: wrap; }
.p-lang, .p-navlink {
  display: inline-flex; align-items: center;
  color: var(--text); font-weight: 800; font-size: .82rem; text-decoration: none;
  padding: .45rem .6rem; border: 1.5px solid var(--border); border-radius: 8px;
  white-space: nowrap; transition: border-color .2s, color .2s;
}
.p-lang:hover, .p-navlink:hover { border-color: var(--blue); color: var(--blue); }
.p-cta-sm {
  background: var(--blue); color: var(--white); font-weight: 800; font-size: .82rem;
  padding: .55rem .95rem; border-radius: 9px; text-decoration: none; white-space: nowrap;
  transition: background .2s;
}
.p-cta-sm:hover { background: var(--blue-md); }

/* ---------- BREADCRUMBS ---------- */
.p-crumbs {
  padding: .9rem 5vw 0; font-size: .8rem; color: var(--muted);
  display: flex; gap: .4rem; flex-wrap: wrap;
}
.p-crumbs a { color: var(--muted); text-decoration: none; }
.p-crumbs a:hover { color: var(--blue); }

/* ---------- HERO ---------- */
.p-hero {
  padding: 2.2rem 5vw 2.6rem;
  max-width: 860px;
}
.p-hero h1 {
  font-size: clamp(1.85rem, 4.6vw, 2.9rem);
  line-height: 1.15; font-weight: 900; letter-spacing: -.02em;
  margin: .2rem 0 .8rem;
}
.p-tagline {
  font-size: clamp(1rem, 2.1vw, 1.16rem);
  color: var(--muted); margin: 0 0 1.6rem; max-width: 62ch;
}

/* ---------- BUTTONS ---------- */
.p-btn {
  display: inline-block; background: var(--blue); color: var(--white);
  font-weight: 800; font-size: .95rem; text-decoration: none;
  padding: .85rem 1.6rem; border-radius: 11px;
  box-shadow: 0 6px 18px rgba(27,79,204,.22);
  transition: background .2s, transform .15s;
}
.p-btn:hover { background: var(--blue-md); transform: translateY(-1px); }
.p-btn-wa {
  display: inline-block; background: var(--white); color: var(--blue);
  font-weight: 800; font-size: .95rem; text-decoration: none;
  padding: .85rem 1.6rem; border-radius: 11px; border: 2px solid var(--border);
  transition: border-color .2s;
}
.p-btn-wa:hover { border-color: var(--blue); }

/* ---------- CONTENT ---------- */
.p-main { padding: 0 5vw 3rem; max-width: 860px; }
.p-main h2 {
  font-size: clamp(1.3rem, 2.7vw, 1.65rem); font-weight: 900;
  letter-spacing: -.015em; margin: 2.4rem 0 .8rem;
}
.p-main h3 {
  font-size: 1.08rem; font-weight: 800; margin: 1.6rem 0 .5rem;
}
.p-main p { margin: 0 0 1rem; }
.p-main ul, .p-main ol { margin: 0 0 1.2rem; padding-left: 1.3rem; }
.p-main li { margin-bottom: .5rem; }
.p-main ol { counter-reset: step; list-style: none; padding-left: 0; }
.p-main ol > li {
  counter-increment: step; position: relative;
  padding-left: 2.6rem; margin-bottom: .85rem;
}
.p-main ol > li::before {
  content: counter(step);
  position: absolute; left: 0; top: .05rem;
  width: 1.8rem; height: 1.8rem; border-radius: 50%;
  background: var(--sky); color: var(--blue);
  font-weight: 900; font-size: .85rem;
  display: flex; align-items: center; justify-content: center;
}
.p-main a { color: var(--blue); }
/* buttons keep their own colours (link rule above would otherwise win on specificity) */
.p-main a.p-btn { color: var(--white); }
.p-main a.p-btn-wa { color: var(--blue); }
.p-main strong { font-weight: 800; }
.p-main blockquote {
  margin: 1.4rem 0; padding: .9rem 1.2rem;
  background: var(--sky2); border-left: 4px solid var(--blue);
  border-radius: 0 10px 10px 0; color: var(--muted);
}

/* ---------- FAQ ---------- */
.p-faq { margin-top: 2.8rem; }
.p-faq details {
  border: 1px solid var(--border); border-radius: 12px;
  padding: .95rem 1.1rem; margin-bottom: .7rem; background: var(--sky2);
}
.p-faq summary {
  cursor: pointer; font-weight: 800; font-size: .98rem;
  list-style: none; position: relative; padding-right: 1.8rem;
}
.p-faq summary::-webkit-details-marker { display: none; }
.p-faq summary::after {
  content: "+"; position: absolute; right: 0; top: -.1rem;
  color: var(--blue); font-size: 1.35rem; font-weight: 700; line-height: 1;
}
.p-faq details[open] summary::after { content: "–"; }
.p-faq details p { margin: .7rem 0 0; color: var(--muted); }

/* ---------- FINAL CTA ---------- */
.p-final {
  margin-top: 3rem; padding: 2.2rem 1.6rem;
  background: var(--sky); border-radius: 18px; text-align: center;
}
.p-final h2 { margin: 0 0 .6rem; }
.p-final p { color: var(--muted); margin: 0 auto 1.4rem; max-width: 52ch; }
.p-final-actions { display: flex; gap: .7rem; justify-content: center; flex-wrap: wrap; }

/* ---------- FOOTER ---------- */
.p-footer {
  border-top: 1px solid var(--border);
  padding: 1.8rem 5vw 2.4rem; background: var(--sky2);
}
.p-foot-links {
  display: flex; gap: .5rem 1.1rem; flex-wrap: wrap; margin-bottom: 1rem;
}
.p-foot-links a {
  color: var(--text); font-size: .85rem; font-weight: 600; text-decoration: none;
}
.p-foot-links a:hover { color: var(--blue); }
.p-foot-legal { color: var(--muted); font-size: .78rem; }

@media (max-width: 600px) {
  .p-nav { padding: .7rem 5vw; }
  .p-logo img { height: 34px; }
  .p-nav-actions { gap: .35rem; }
  .p-lang, .p-navlink { padding: .4rem .5rem; font-size: .78rem; }
  .p-cta-sm { padding: .5rem .75rem; font-size: .78rem; }
  .p-final { padding: 1.8rem 1.1rem; }
  .p-btn, .p-btn-wa { width: 100%; text-align: center; }
}
