:root {
    --navy: #0c2440;
    --navy-deep: #081a30;
    --ink: #1a2433;
    --muted: #5a6b80;
    --bg: #ffffff;
    --bg-soft: #f4f7fb;
    --line: #e3e9f1;
    --blue: #1663d6;
    --blue-dark: #114ea9;
    --blue-tint: #e8f0fc;
    --green: #1e9e5a;
    --green-tint: #e7f6ee;
    --wa: #25d366;
    --shadow-sm: 0 1px 2px rgba(12,36,64,.06), 0 2px 8px rgba(12,36,64,.05);
    --shadow-md: 0 2px 4px rgba(12,36,64,.06), 0 10px 28px rgba(12,36,64,.10);
    --radius: 12px;
  }

  * { margin: 0; padding: 0; box-sizing: border-box; }

  html { scroll-behavior: smooth; }

  body {
    background: var(--bg);
    color: var(--ink);
    font-family: 'Source Sans 3', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 16.5px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
  }

  h1, h2, h3 { font-family: 'Manrope', sans-serif; letter-spacing: -0.015em; color: var(--navy); }

  .wrap { max-width: 1120px; margin: 0 auto; padding: 0 28px; }

  section { scroll-margin-top: 92px; }

  /* ---------- Top utility bar ---------- */
  .topbar {
    background: var(--navy);
    color: #c8d6e8;
    font-size: 13.5px;
  }
  .topbar-inner {
    display: flex; align-items: center; justify-content: space-between;
    padding: 8px 0; gap: 16px;
  }
  .topbar a { color: #ffffff; text-decoration: none; font-weight: 600; }
  .topbar-contacts { display: flex; gap: 22px; align-items: center; }
  .topbar-item { display: inline-flex; align-items: center; gap: 7px; white-space: nowrap; }
  .topbar-item svg { flex-shrink: 0; }

  /* ---------- Header ---------- */
  header {
    position: sticky; top: 0; z-index: 90;
    background: rgba(255,255,255,.92);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid transparent;
    transition: box-shadow .25s ease, border-color .25s ease;
  }
  header.scrolled { border-bottom-color: var(--line); box-shadow: var(--shadow-sm); }

  .nav { display: flex; align-items: center; justify-content: space-between; padding: 16px 0; }

  .brand { display: flex; align-items: center; gap: 11px; text-decoration: none; }
  .brand-mark { width: 38px; height: 38px; flex-shrink: 0; }
  .brand-text { line-height: 1.15; }
  .brand-name { font-family: 'Manrope', sans-serif; font-weight: 800; font-size: 19px; color: var(--navy); display: block; }
  .brand-sub { font-size: 11px; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); font-weight: 600; }

  .nav-links { display: flex; align-items: center; gap: 30px; }
  .nav-links a {
    color: var(--ink); text-decoration: none; font-size: 15px; font-weight: 600;
    padding: 4px 0; border-bottom: 2px solid transparent; transition: color .2s, border-color .2s;
  }
  .nav-links a:hover { color: var(--blue); }
  .nav-links a.active { color: var(--blue); border-bottom-color: var(--blue); }

  .btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 9px;
    font-family: 'Source Sans 3', sans-serif; font-weight: 700; font-size: 15.5px;
    padding: 13px 24px; border-radius: 9px; text-decoration: none; cursor: pointer;
    border: none; transition: background .2s, transform .15s, box-shadow .2s;
  }
  .btn:active { transform: translateY(1px); }
  .btn-primary { background: var(--blue); color: #fff; box-shadow: 0 4px 14px rgba(22,99,214,.28); }
  .btn-primary:hover { background: var(--blue-dark); }
  .btn-outline { background: #fff; color: var(--navy); border: 1.5px solid var(--line); }
  .btn-outline:hover { border-color: var(--blue); color: var(--blue); }
  .btn-wa { background: var(--wa); color: #fff; }
  .btn-wa:hover { background: #1fb457; }
  .nav .btn { padding: 11px 20px; font-size: 14.5px; }

  .hamburger {
    display: none; background: none; border: none; cursor: pointer; padding: 8px;
  }
  .hamburger span { display: block; width: 22px; height: 2px; background: var(--navy); margin: 5px 0; transition: .25s; }

  /* ---------- Hero ---------- */
  .hero {
    background:
      radial-gradient(circle at 85% 10%, rgba(22,99,214,.07), transparent 45%),
      linear-gradient(180deg, var(--bg-soft) 0%, #ffffff 100%);
    border-bottom: 1px solid var(--line);
    overflow: hidden;
  }
  .hero-inner {
    display: grid; grid-template-columns: 1.15fr .85fr; gap: 56px; align-items: center;
    padding: 72px 0 80px;
  }
  .eyebrow {
    display: inline-flex; align-items: center; gap: 9px;
    background: var(--blue-tint); color: var(--blue-dark);
    font-size: 13px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase;
    padding: 7px 14px; border-radius: 999px; margin-bottom: 22px;
  }
  .hero h1 { font-size: 46px; line-height: 1.13; font-weight: 800; margin-bottom: 20px; }
  .hero-sub { font-size: 18px; color: var(--muted); max-width: 520px; margin-bottom: 30px; }
  .hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 36px; }
  .hero-points { display: flex; flex-wrap: wrap; gap: 10px 26px; }
  .hero-point { display: inline-flex; align-items: center; gap: 8px; font-size: 14.5px; font-weight: 600; color: var(--ink); }
  .hero-point svg { flex-shrink: 0; }

  /* Live status card */
  .status-card {
    background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
    box-shadow: var(--shadow-md); overflow: hidden;
  }
  .status-head {
    background: var(--navy); color: #fff; padding: 15px 20px;
    display: flex; align-items: center; justify-content: space-between;
  }
  .status-title { font-family: 'Manrope', sans-serif; font-weight: 700; font-size: 14.5px; color: #fff; }
  .status-live { display: inline-flex; align-items: center; gap: 7px; font-size: 12px; font-weight: 700; letter-spacing: .08em; color: #7ee2a8; }
  .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--green); position: relative; }
  .dot::after {
    content: ""; position: absolute; inset: -4px; border-radius: 50%;
    border: 2px solid rgba(30,158,90,.5); animation: ping 2s ease-out infinite;
  }
  @keyframes ping { 0% { transform: scale(.5); opacity: 1; } 100% { transform: scale(1.4); opacity: 0; } }
  .status-body { padding: 8px 20px 6px; }
  .status-row {
    display: flex; align-items: center; justify-content: space-between;
    padding: 13px 0; border-bottom: 1px solid var(--line); font-size: 14.5px;
  }
  .status-row:last-child { border-bottom: none; }
  .status-label { color: var(--muted); }
  .status-value { font-family: 'IBM Plex Mono', monospace; font-weight: 500; color: var(--navy); font-size: 14px; display: inline-flex; align-items: center; gap: 8px; }
  .ok-chip { background: var(--green-tint); color: var(--green); font-family: 'Source Sans 3', sans-serif; font-weight: 700; font-size: 12.5px; padding: 3px 10px; border-radius: 999px; }
  .status-foot { background: var(--bg-soft); border-top: 1px solid var(--line); padding: 12px 20px; font-size: 13px; color: var(--muted); }

  /* ---------- Stats band ---------- */
  .stats { background: #fff; }
  .stats-inner {
    display: grid; grid-template-columns: repeat(4, 1fr);
    padding: 44px 0; gap: 20px;
  }
  .stat { text-align: center; border-left: 1px solid var(--line); }
  .stat:first-child { border-left: none; }
  .stat-num { font-family: 'Manrope', sans-serif; font-weight: 800; font-size: 40px; color: var(--navy); line-height: 1.1; }
  .stat-num .suffix { color: var(--blue); }
  .stat-label { font-size: 14px; color: var(--muted); font-weight: 600; margin-top: 4px; }

  /* ---------- Section scaffolding ---------- */
  .section { padding: 84px 0; }
  .section.soft { background: var(--bg-soft); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
  .section-head { max-width: 640px; margin-bottom: 46px; }
  .section-kicker {
    display: inline-block; color: var(--blue); font-weight: 700; font-size: 13.5px;
    letter-spacing: .1em; text-transform: uppercase; margin-bottom: 12px;
  }
  .section-head h2 { font-size: 34px; font-weight: 800; margin-bottom: 14px; }
  .section-head p { color: var(--muted); font-size: 17px; }

  /* ---------- Services ---------- */
  .services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
  .service-card {
    background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
    padding: 26px 24px 22px; cursor: pointer; position: relative;
    transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
  }
  .service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: #cdd9ea; }
  .service-icon {
    width: 46px; height: 46px; border-radius: 10px; background: var(--blue-tint);
    display: flex; align-items: center; justify-content: center; margin-bottom: 16px;
  }
  .service-card h3 { font-size: 18.5px; font-weight: 800; margin-bottom: 8px; }
  .service-card > p { font-size: 15px; color: var(--muted); }
  .service-more {
    max-height: 0; overflow: hidden; transition: max-height .35s ease, margin .35s ease;
  }
  .service-card.open .service-more { max-height: 220px; margin-top: 14px; }
  .service-more ul { list-style: none; }
  .service-more li {
    font-size: 14.5px; color: var(--ink); padding: 6px 0 6px 24px; position: relative;
    border-top: 1px solid var(--line);
  }
  .service-more li::before {
    content: ""; position: absolute; left: 2px; top: 13px; width: 12px; height: 7px;
    border-left: 2px solid var(--green); border-bottom: 2px solid var(--green); transform: rotate(-45deg);
  }
  .service-toggle {
    display: inline-flex; align-items: center; gap: 6px; margin-top: 14px;
    font-size: 13.5px; font-weight: 700; color: var(--blue);
  }
  .service-toggle svg { transition: transform .3s ease; }
  .service-card.open .service-toggle svg { transform: rotate(180deg); }

  /* ---------- Process ---------- */
  .process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; position: relative; }
  .process-step { padding: 0 26px 0 0; position: relative; }
  .process-num {
    width: 44px; height: 44px; border-radius: 50%; background: #fff;
    border: 2px solid var(--blue); color: var(--blue);
    font-family: 'Manrope', sans-serif; font-weight: 800; font-size: 17px;
    display: flex; align-items: center; justify-content: center; margin-bottom: 18px;
    position: relative; z-index: 1;
  }
  .process-step::before {
    content: ""; position: absolute; top: 22px; left: 44px; right: 0;
    border-top: 2px dashed #c9d6e8;
  }
  .process-step:last-child::before { display: none; }
  .process-step h3 { font-size: 17.5px; font-weight: 800; margin-bottom: 8px; }
  .process-step p { font-size: 14.5px; color: var(--muted); }

  /* ---------- Why us ---------- */
  .why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: start; }
  .why-list { display: flex; flex-direction: column; gap: 6px; }
  .why-item {
    display: flex; gap: 15px; padding: 16px; border-radius: 10px;
    transition: background .2s ease;
  }
  .why-item:hover { background: var(--blue-tint); }
  .why-check {
    width: 26px; height: 26px; border-radius: 50%; background: var(--green-tint);
    display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 2px;
  }
  .why-item h3 { font-size: 16.5px; font-weight: 800; margin-bottom: 3px; }
  .why-item p { font-size: 14.5px; color: var(--muted); }

  .promise-card {
    background: var(--navy); color: #d7e2f0; border-radius: var(--radius);
    padding: 34px 32px; box-shadow: var(--shadow-md); position: sticky; top: 110px;
  }
  .promise-card h3 { color: #fff; font-size: 21px; font-weight: 800; margin-bottom: 14px; }
  .promise-card p { font-size: 15.5px; margin-bottom: 22px; }
  .promise-sign { border-top: 1px solid rgba(255,255,255,.15); padding-top: 18px; font-size: 14px; color: #9fb3cc; }

  /* ---------- Testimonials ---------- */
  .carousel { position: relative; max-width: 780px; margin: 0 auto; }
  .carousel-track-wrap { overflow: hidden; border-radius: var(--radius); }
  .carousel-track { display: flex; transition: transform .5s ease; }
  .t-slide { min-width: 100%; padding: 4px; }
  .t-card {
    background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
    padding: 38px 42px; box-shadow: var(--shadow-sm); text-align: center;
  }
  .t-stars { color: #f5a623; letter-spacing: 3px; font-size: 17px; margin-bottom: 16px; }
  .t-quote { font-size: 18.5px; line-height: 1.65; color: var(--ink); margin-bottom: 22px; }
  .t-role { font-weight: 700; color: var(--navy); font-size: 15px; }
  .t-org { font-size: 13.5px; color: var(--muted); }
  .carousel-controls { display: flex; align-items: center; justify-content: center; gap: 18px; margin-top: 24px; }
  .c-btn {
    width: 42px; height: 42px; border-radius: 50%; border: 1.5px solid var(--line);
    background: #fff; cursor: pointer; display: flex; align-items: center; justify-content: center;
    transition: border-color .2s, color .2s;
    color: var(--navy);
  }
  .c-btn:hover { border-color: var(--blue); color: var(--blue); }
  .c-dots { display: flex; gap: 8px; }
  .c-dot { width: 9px; height: 9px; border-radius: 50%; background: #cdd9ea; border: none; cursor: pointer; padding: 0; transition: background .2s, transform .2s; }
  .c-dot.active { background: var(--blue); transform: scale(1.25); }

  /* ---------- FAQ ---------- */
  .faq-list { max-width: 780px; margin: 0 auto; }
  .faq-item { background: #fff; border: 1px solid var(--line); border-radius: 10px; margin-bottom: 12px; overflow: hidden; }
  .faq-q {
    width: 100%; background: none; border: none; cursor: pointer; text-align: left;
    display: flex; align-items: center; justify-content: space-between; gap: 18px;
    padding: 19px 22px; font-family: 'Manrope', sans-serif; font-weight: 700; font-size: 16.5px; color: var(--navy);
  }
  .faq-q svg { flex-shrink: 0; transition: transform .3s ease; color: var(--blue); }
  .faq-item.open .faq-q svg { transform: rotate(180deg); }
  .faq-a { max-height: 0; overflow: hidden; transition: max-height .35s ease; }
  .faq-a-inner { padding: 0 22px 20px; color: var(--muted); font-size: 15.5px; }

  /* ---------- Contact ---------- */
  .contact-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 48px; align-items: start; }
  .contact-info h2 { font-size: 32px; font-weight: 800; margin-bottom: 14px; }
  .contact-info > p { color: var(--muted); margin-bottom: 28px; }
  .contact-rows { display: flex; flex-direction: column; gap: 14px; margin-bottom: 28px; }
  .contact-row { display: flex; align-items: center; gap: 14px; }
  .contact-ic {
    width: 42px; height: 42px; border-radius: 10px; background: var(--blue-tint);
    display: flex; align-items: center; justify-content: center; flex-shrink: 0;
  }
  .contact-row a { color: var(--navy); font-weight: 700; text-decoration: none; font-size: 16px; }
  .contact-row span { display: block; font-size: 13px; color: var(--muted); font-weight: 600; }
  .areas { font-size: 14px; color: var(--muted); border-top: 1px solid var(--line); padding-top: 20px; }
  .areas strong { color: var(--navy); }

  .form-card {
    background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
    padding: 32px; box-shadow: var(--shadow-md);
  }
  .form-card h3 { font-size: 20px; font-weight: 800; margin-bottom: 6px; }
  .form-card > p { font-size: 14.5px; color: var(--muted); margin-bottom: 22px; }
  .form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
  .field { display: flex; flex-direction: column; gap: 6px; }
  .field.full { grid-column: 1 / -1; }
  .field label { font-size: 13.5px; font-weight: 700; color: var(--navy); }
  .field input, .field select, .field textarea {
    font-family: 'Source Sans 3', sans-serif; font-size: 15.5px; color: var(--ink);
    padding: 12px 14px; border: 1.5px solid var(--line); border-radius: 8px; background: #fff;
    transition: border-color .2s, box-shadow .2s; width: 100%;
  }
  .field input:focus, .field select:focus, .field textarea:focus {
    outline: none; border-color: var(--blue); box-shadow: 0 0 0 3px rgba(22,99,214,.14);
  }
  .field input.error, .field select.error { border-color: #d64545; }
  .form-note { font-size: 13px; color: var(--muted); margin-top: 14px; }
  .form-success {
    display: none; text-align: center; padding: 40px 10px;
  }
  .form-success.show { display: block; }
  .success-ic {
    width: 60px; height: 60px; border-radius: 50%; background: var(--green-tint);
    display: flex; align-items: center; justify-content: center; margin: 0 auto 18px;
  }
  .form-success h3 { margin-bottom: 8px; }
  .form-success p { color: var(--muted); font-size: 15.5px; }

  /* ---------- Footer ---------- */
  footer { background: var(--navy-deep); color: #9fb3cc; padding: 56px 0 28px; font-size: 14.5px; }
  .footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 40px; padding-bottom: 40px; border-bottom: 1px solid rgba(255,255,255,.1); }
  .footer-brand .brand-name { color: #fff; }
  .footer-brand p { margin-top: 12px; max-width: 280px; }
  footer h4 { color: #fff; font-family: 'Manrope', sans-serif; font-size: 14px; letter-spacing: .08em; text-transform: uppercase; margin-bottom: 16px; }
  footer ul { list-style: none; }
  footer li { margin-bottom: 9px; }
  footer a { color: #9fb3cc; text-decoration: none; transition: color .2s; }
  footer a:hover { color: #fff; }
  .footer-bottom { display: flex; align-items: center; justify-content: space-between; gap: 14px; padding-top: 24px; flex-wrap: wrap; }

  /* ---------- Floating buttons ---------- */
  .wa-float {
    position: fixed; right: 22px; bottom: 22px; z-index: 95;
    width: 58px; height: 58px; border-radius: 50%; background: var(--wa);
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 6px 20px rgba(37,211,102,.4); text-decoration: none;
    transition: transform .2s ease;
  }
  .wa-float:hover { transform: scale(1.07); }
  .wa-float::before {
    content: ""; position: absolute; inset: 0; border-radius: 50%;
    border: 3px solid rgba(37,211,102,.45); animation: ping 2.2s ease-out infinite;
  }
  .to-top {
    position: fixed; right: 26px; bottom: 94px; z-index: 94;
    width: 44px; height: 44px; border-radius: 50%; border: 1px solid var(--line);
    background: #fff; color: var(--navy); cursor: pointer; box-shadow: var(--shadow-sm);
    display: flex; align-items: center; justify-content: center;
    opacity: 0; pointer-events: none; transition: opacity .3s ease;
  }
  .to-top.show { opacity: 1; pointer-events: auto; }

  /* ---------- Reveal animation ---------- */
  .reveal { opacity: 0; transform: translateY(22px); transition: opacity .6s ease, transform .6s ease; }
  .reveal.visible { opacity: 1; transform: none; }
  .reveal.d1 { transition-delay: .08s; } .reveal.d2 { transition-delay: .16s; } .reveal.d3 { transition-delay: .24s; }
  .reveal.d4 { transition-delay: .32s; } .reveal.d5 { transition-delay: .4s; }

  @media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    .reveal { opacity: 1; transform: none; transition: none; }
    .dot::after, .wa-float::before { animation: none; }
    * { transition-duration: .01ms !important; }
  }

  /* ---------- Responsive ---------- */
  @media (max-width: 960px) {
    .hero-inner { grid-template-columns: 1fr; gap: 40px; padding: 52px 0 60px; }
    .hero h1 { font-size: 36px; }
    .services-grid { grid-template-columns: 1fr 1fr; }
    .process-grid { grid-template-columns: 1fr 1fr; row-gap: 40px; }
    .process-step:nth-child(2)::before { display: none; }
    .why-grid, .contact-grid { grid-template-columns: 1fr; }
    .promise-card { position: static; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .stats-inner { grid-template-columns: 1fr 1fr; row-gap: 28px; }
    .stat:nth-child(3) { border-left: none; }
  }
  @media (max-width: 680px) {
    .topbar-inner { justify-content: center; }
    .topbar-loc { display: none; }
    .nav-links {
      display: none; position: absolute; top: 100%; left: 0; right: 0;
      background: #fff; border-bottom: 1px solid var(--line); box-shadow: var(--shadow-md);
      flex-direction: column; align-items: stretch; gap: 0; padding: 10px 24px 20px;
    }
    .nav-links.open { display: flex; }
    .nav-links a { padding: 13px 0; border-bottom: 1px solid var(--line); }
    .nav-links a.active { border-bottom-color: var(--line); }
    .nav-links .btn { margin-top: 14px; }
    .hamburger { display: block; }
    .hero h1 { font-size: 31px; }
    .services-grid { grid-template-columns: 1fr; }
    .process-grid { grid-template-columns: 1fr; }
    .process-step::before { display: none; }
    .section { padding: 60px 0; }
    .section-head h2 { font-size: 27px; }
    .form-grid { grid-template-columns: 1fr; }
    .t-card { padding: 28px 22px; }
    .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  }
/* ============ Service page additions ============ */
.breadcrumb { background: var(--bg-soft); border-bottom: 1px solid var(--line); font-size: 13.5px; }
.breadcrumb-inner { padding: 12px 0; color: var(--muted); }
.breadcrumb a { color: var(--muted); text-decoration: none; font-weight: 600; }
.breadcrumb a:hover { color: var(--blue); }
.breadcrumb span.sep { margin: 0 8px; opacity: .5; }
.breadcrumb span.current { color: var(--navy); font-weight: 700; }

.svc-hero {
  background: radial-gradient(circle at 88% 8%, rgba(22,99,214,.07), transparent 45%), linear-gradient(180deg, var(--bg-soft) 0%, #fff 100%);
  border-bottom: 1px solid var(--line);
}
.svc-hero-inner { display: grid; grid-template-columns: 1.2fr .8fr; gap: 52px; align-items: center; padding: 60px 0 66px; }
.svc-hero h1 { font-size: 42px; line-height: 1.15; font-weight: 800; margin-bottom: 18px; }
.svc-hero-sub { font-size: 18px; color: var(--muted); margin-bottom: 28px; max-width: 540px; }
.svc-hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; }

.svc-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  box-shadow: var(--shadow-md); overflow: hidden;
}
.svc-card-head { background: var(--navy); color: #fff; padding: 16px 20px; font-family: 'Manrope', sans-serif; font-weight: 700; font-size: 15px; }
.svc-card-body { padding: 8px 20px 14px; }
.svc-card-row { display: flex; align-items: flex-start; gap: 12px; padding: 13px 0; border-bottom: 1px solid var(--line); font-size: 14.5px; }
.svc-card-row:last-child { border-bottom: none; }
.svc-card-row svg { flex-shrink: 0; margin-top: 3px; }

.prose { max-width: 760px; }
.prose h2 { font-size: 30px; font-weight: 800; margin: 44px 0 16px; }
.prose h2:first-child { margin-top: 0; }
.prose h3 { font-size: 20px; font-weight: 800; margin: 30px 0 10px; }
.prose p { color: var(--muted); margin-bottom: 16px; font-size: 16.5px; }
.prose ul { list-style: none; margin: 0 0 20px; }
.prose ul li { position: relative; padding: 7px 0 7px 30px; color: var(--muted); font-size: 16px; }
.prose ul li::before {
  content: ""; position: absolute; left: 3px; top: 15px; width: 12px; height: 7px;
  border-left: 2.5px solid var(--green); border-bottom: 2.5px solid var(--green); transform: rotate(-45deg);
}
.prose strong { color: var(--navy); font-weight: 700; }

.callout {
  background: var(--blue-tint); border-left: 4px solid var(--blue); border-radius: 0 10px 10px 0;
  padding: 20px 24px; margin: 28px 0;
}
.callout p { color: var(--navy); margin: 0; font-size: 15.5px; }
.callout strong { font-weight: 800; }

.spec-table { width: 100%; border-collapse: collapse; margin: 20px 0 28px; font-size: 15.5px; }
.spec-table th, .spec-table td { text-align: left; padding: 13px 14px; border-bottom: 1px solid var(--line); }
.spec-table th { background: var(--bg-soft); font-family: 'Manrope', sans-serif; font-weight: 700; color: var(--navy); font-size: 14px; }
.spec-table td { color: var(--muted); }
.spec-table td:first-child { color: var(--navy); font-weight: 600; }

.sibling-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.sibling-card {
  background: #fff; border: 1px solid var(--line); border-radius: 10px; padding: 20px;
  text-decoration: none; display: block; transition: transform .2s, box-shadow .2s, border-color .2s;
}
.sibling-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: #cdd9ea; }
.sibling-card h3 { font-size: 16.5px; font-weight: 800; margin-bottom: 6px; }
.sibling-card p { font-size: 14px; color: var(--muted); }
.sibling-card .go { display: inline-flex; align-items: center; gap: 5px; color: var(--blue); font-weight: 700; font-size: 13.5px; margin-top: 10px; }

.cta-band { background: var(--navy); color: #d7e2f0; padding: 56px 0; text-align: center; }
.cta-band h2 { color: #fff; font-size: 30px; font-weight: 800; margin-bottom: 12px; }
.cta-band p { max-width: 560px; margin: 0 auto 26px; font-size: 16.5px; }
.cta-band-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

@media (max-width: 960px) {
  .svc-hero-inner { grid-template-columns: 1fr; gap: 36px; padding: 44px 0 52px; }
  .svc-hero h1 { font-size: 33px; }
  .sibling-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 680px) {
  .svc-hero h1 { font-size: 28px; }
  .prose h2 { font-size: 24px; }
  .sibling-grid { grid-template-columns: 1fr; }
  .spec-table { font-size: 14px; }
  .spec-table th, .spec-table td { padding: 10px 8px; }
}
