/* CIMA Advisors — shared website styles (extracted from Landing Page) */
@import url("colors_and_type.css");

/* ---------- page-level ---------- */
  body {
    background: var(--surface);
    color: var(--ink);
  }
  .wrap {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 var(--s-6);
  }
  @media (max-width: 780px) {
    .wrap { padding: 0 var(--s-5); }
  }

  /* ---------- nav ---------- */
  .nav {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(255,255,255,0.96);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid var(--line);
  }
  .nav-inner {
    height: 76px;
    display: flex;
    align-items: center;
    gap: var(--s-6);
  }
  .nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
  }
  .nav-logo .lockup { height: 44px; width: auto; display: block; }
  .nav-links {
    display: flex;
    gap: var(--s-5);
    margin-left: auto;
    align-items: center;
  }
  .nav-links a {
    font-family: var(--font-sans);
    font-weight: 500;
    font-size: 15px;
    color: var(--ink-soft);
    text-decoration: none;
    padding: 6px 2px;
    transition: color var(--dur-micro) var(--ease-standard);
  }
  .nav-links a:hover { color: var(--navy-900); }
  .lang {
    display: inline-flex;
    background: var(--surface-alt);
    border-radius: var(--radius-pill);
    padding: 3px;
    font-family: var(--font-sans);
    font-weight: 600;
    font-size: 12px;
    letter-spacing: 0.08em;
  }
  .lang button {
    background: transparent;
    border: 0;
    padding: 6px 12px;
    border-radius: var(--radius-pill);
    color: var(--ink-soft);
    cursor: pointer;
    text-transform: uppercase;
    font: inherit;
    transition: background var(--dur-micro) var(--ease-standard),
                color var(--dur-micro) var(--ease-standard);
  }
  .lang button.is-active {
    background: var(--navy-900);
    color: #fff;
  }
  .nav-links a.nav-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--blue-600);
    color: #fff;
    text-decoration: none;
    font-family: var(--font-sans);
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    padding: 13px 22px;
    border-radius: var(--radius-pill);
    white-space: nowrap;
    box-shadow: 0 6px 18px rgba(37, 99, 235, 0.28);
    transition: background var(--dur-micro) var(--ease-standard),
                transform var(--dur-micro) var(--ease-standard),
                box-shadow var(--dur-micro) var(--ease-standard);
  }
  .nav-links a.nav-cta .ic-sm { width: 16px; height: 16px; }
  .nav-links a.nav-cta:hover { background: #1d4ed8; box-shadow: 0 10px 24px rgba(37, 99, 235, 0.32); }
  .nav-links a.nav-cta:active { transform: scale(0.98); }

  /* ---------- hero ---------- */
  .hero { padding: var(--s-9) 0 var(--s-8); }
  .hero-grid {
    display: grid;
    grid-template-columns: 1.05fr 1fr;
    gap: var(--s-8);
    align-items: center;
  }
  @media (max-width: 980px) {
    .hero { padding: var(--s-7) 0; }
    .hero-grid { grid-template-columns: 1fr; gap: var(--s-7); }
  }
  .eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-sans);
    font-weight: 700;
    font-size: 12px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--blue-700);
    white-space: nowrap;
  }
  .eyebrow::before {
    content: "";
    width: 24px;
    height: 2px;
    background: var(--blue-600);
    display: block;
    flex: none;
  }
  .hero h1 {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: clamp(48px, 6vw, 80px);
    line-height: 0.98;
    letter-spacing: -0.01em;
    text-transform: uppercase;
    color: var(--navy-900);
    margin: var(--s-4) 0 var(--s-5);
    text-wrap: balance;
  }
  .hero h1 .accent { color: var(--blue-600); }
  .hero p.lead {
    font-size: 19px;
    line-height: 1.55;
    color: var(--ink-soft);
    max-width: 540px;
    margin-bottom: var(--s-6);
    text-wrap: pretty;
  }
  .cta-row {
    display: flex;
    flex-wrap: wrap;
    gap: var(--s-3);
    margin-bottom: var(--s-6);
  }
  .btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 22px;
    border-radius: var(--radius-pill);
    font-family: var(--font-sans);
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    text-decoration: none;
    border: 0;
    cursor: pointer;
    white-space: nowrap;
    transition: background var(--dur-micro) var(--ease-standard),
                transform var(--dur-micro) var(--ease-standard),
                box-shadow var(--dur-micro) var(--ease-standard);
  }
  .btn-primary {
    background: var(--blue-600);
    color: #fff;
    box-shadow: 0 6px 18px rgba(37, 99, 235, 0.28);
  }
  .btn-primary:hover { background: #1d4ed8; box-shadow: 0 10px 24px rgba(37, 99, 235, 0.32); }
  .btn-primary:active { transform: scale(0.98); }
  .btn-secondary {
    background: var(--navy-900);
    color: #fff;
  }
  .btn-secondary:hover { background: #142566; }
  .btn-secondary:active { transform: scale(0.98); }
  .btn-ghost {
    background: transparent;
    color: var(--navy-900);
    border: 1px solid var(--line);
  }
  .btn-ghost:hover { background: var(--surface-alt); }

  .trust {
    display: flex;
    align-items: center;
    gap: var(--s-5);
    flex-wrap: wrap;
  }
  .trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-sans);
    font-size: 13px;
    font-weight: 500;
    color: var(--ink-soft);
    white-space: nowrap;
  }
  .trust-item .dot {
    width: 8px; height: 8px; border-radius: 50%;
    background: var(--blue-600);
  }

  /* hero photo + callouts */
  .hero-visual {
    position: relative;
    aspect-ratio: 5 / 6;
    border-radius: var(--radius-lg);
    overflow: visible;
  }
  .hero-visual::before {
    content: "";
    position: absolute;
    top: 28px; right: -28px; bottom: -28px; left: 28px;
    border-radius: var(--radius-lg);
    background: var(--blue-50);
    z-index: 0;
  }
  .photo { z-index: 1; }
  .photo {
    position: absolute;
    inset: 0;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
  }
  .photo image-slot { position: absolute; inset: 0; width: 100%; height: 100%; display: block; }

  .callout {
    position: absolute;
    background: #fff;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    padding: 16px 18px;
    display: flex;
    gap: 12px;
    align-items: flex-start;
    width: 240px;
    z-index: 3;
  }
  .callout .icon {
    flex: 0 0 36px;
    width: 36px; height: 36px;
    border-radius: 50%;
    background: var(--blue-600);
    color: #fff;
    display: grid;
    place-items: center;
  }
  .callout .label {
    font-family: var(--font-sans);
    font-weight: 700;
    font-size: 11px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--blue-700);
    margin-bottom: 4px;
  }
  .callout .body {
    font-size: 13px;
    line-height: 1.4;
    color: var(--ink);
  }
  .callout.top-right { top: -18px; right: -20px; }
  .callout.bottom-left { bottom: -24px; left: -24px; }
  @media (max-width: 980px) {
    .callout.top-right { right: 8px; }
    .callout.bottom-left { left: 8px; }
  }

  /* ---------- service strip ---------- */
  .services {
    background: var(--surface-alt);
    padding: var(--s-8) 0;
    border-top: 1px solid var(--line-soft);
    border-bottom: 1px solid var(--line-soft);
  }
  .section-head {
    text-align: center;
    margin-bottom: var(--s-7);
  }
  .section-head h2 {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: clamp(32px, 4vw, 48px);
    letter-spacing: -0.005em;
    line-height: 1.05;
    text-transform: uppercase;
    color: var(--navy-900);
    margin: 10px 0 var(--s-3);
  }
  .section-head p {
    color: var(--ink-soft);
    font-size: 17px;
    max-width: 640px;
    margin: 0 auto;
    text-wrap: pretty;
  }
  .service-grid {
    display: flex;
    flex-direction: column;
    gap: var(--s-5);
  }
  .service-row {
    display: flex;
    justify-content: center;
    gap: var(--s-5);
    flex-wrap: wrap;
  }
  .service-card {
    flex: 1 1 248px;
    max-width: 282px;
  }
  @media (max-width: 520px) { .service-card { max-width: none; flex-basis: 100%; } }
  .service-card {
    background: #fff;
    border-radius: var(--radius-md);
    padding: var(--s-6) var(--s-5);
    box-shadow: var(--shadow-sm);
    transition: box-shadow var(--dur-layout) var(--ease-standard),
                transform var(--dur-layout) var(--ease-standard);
    cursor: pointer;
    position: relative;
    overflow: hidden;
  }
  .service-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
  }
  .service-card .badge {
    width: 44px; height: 44px;
    border-radius: 50%;
    background: var(--blue-50);
    color: var(--blue-700);
    display: grid; place-items: center;
    margin-bottom: var(--s-4);
  }
  .service-card h3 {
    font-family: var(--font-sans);
    font-weight: 700;
    font-size: 18px;
    color: var(--navy-900);
    margin: 0 0 8px;
  }
  .service-card p {
    font-size: 14px;
    line-height: 1.5;
    color: var(--ink-soft);
    margin: 0 0 var(--s-4);
  }
  .service-card .more {
    font-family: var(--font-sans);
    font-weight: 700;
    font-size: 12px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--blue-700);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
  }

  /* ---------- why CIMA ---------- */
  .why { padding: var(--s-9) 0; }
  .why-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: var(--s-8);
    align-items: center;
  }
  @media (max-width: 980px) { .why-grid { grid-template-columns: 1fr; } }
  .stat-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--s-5);
    margin-top: var(--s-6);
  }
  .stat {
    background: #fff;
    border: 1px solid var(--line-soft);
    border-radius: var(--radius-md);
    padding: var(--s-5);
  }
  .stat .num {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 44px;
    line-height: 1;
    color: var(--blue-600);
    letter-spacing: -0.01em;
  }
  .stat .lbl {
    font-family: var(--font-sans);
    font-size: 13px;
    color: var(--ink-soft);
    margin-top: 6px;
    line-height: 1.4;
  }
  .checks {
    list-style: none;
    padding: 0;
    margin: var(--s-5) 0 0;
    display: grid;
    gap: 14px;
  }
  .checks li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 16px;
    color: var(--ink);
  }
  .checks .b {
    flex: 0 0 22px;
    width: 22px; height: 22px;
    border-radius: 50%;
    background: var(--blue-600);
    color: #fff;
    display: grid; place-items: center;
    margin-top: 1px;
  }
  .why-photo {
    aspect-ratio: 4 / 5;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    position: relative;
  }
  .why-photo image-slot { position: absolute; inset: 0; width: 100%; height: 100%; display: block; }

  /* ---------- process ---------- */
  .process {
    background: var(--navy-900);
    color: #fff;
    padding: var(--s-9) 0;
    position: relative;
  }
  .process .section-head h2 { color: #fff; }
  .process .section-head p { color: rgba(255,255,255,0.7); }
  .process .eyebrow { color: var(--blue-400); }
  .process .eyebrow::before { background: var(--blue-400); }
  .steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--s-6);
    margin-top: var(--s-6);
  }
  @media (max-width: 880px) { .steps { grid-template-columns: 1fr; } }
  .step {
    position: relative;
    padding: var(--s-5) 0;
  }
  .step .n {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 64px;
    line-height: 1;
    color: var(--blue-400);
    opacity: 0.6;
    letter-spacing: -0.02em;
  }
  .step h3 {
    font-family: var(--font-sans);
    font-weight: 700;
    font-size: 22px;
    color: #fff;
    margin: var(--s-3) 0 var(--s-2);
  }
  .step p {
    color: rgba(255,255,255,0.75);
    font-size: 15px;
    line-height: 1.55;
    max-width: 360px;
  }
  .step + .step::before { display: none; }

  /* ---------- bilingual / team note ---------- */
  .team {
    padding: var(--s-9) 0;
    background: var(--surface);
  }
  .team-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: var(--s-8);
    align-items: center;
  }
  @media (max-width: 980px) { .team-grid { grid-template-columns: 1fr; } }
  .pull {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: clamp(24px, 2.6vw, 34px);
    line-height: 1.22;
    color: var(--navy-900);
    text-wrap: balance;
    max-width: 560px;
  }
  .pull span { color: var(--blue-600); }
  .credentials {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: var(--s-5);
  }
  .credentials .chip {
    background: var(--surface-alt);
    border: 1px solid var(--line);
    padding: 8px 14px;
    border-radius: var(--radius-pill);
    font-size: 13px;
    color: var(--ink);
    font-weight: 500;
  }

  /* ---------- contact CTA ---------- */
  .contact {
    padding: 0 0 var(--s-9);
  }
  .contact-card {
    background: var(--navy-900);
    color: #fff;
    border-radius: var(--radius-lg);
    padding: var(--s-8);
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: var(--s-7);
    align-items: center;
    position: relative;
    overflow: hidden;
  }
  @media (max-width: 880px) {
    .contact-card { grid-template-columns: 1fr; padding: var(--s-7); }
  }
  .contact h2 {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: clamp(32px, 4.5vw, 56px);
    text-transform: uppercase;
    line-height: 1.02;
    letter-spacing: -0.005em;
    color: #fff;
    margin: 0 0 var(--s-4);
  }
  .contact .lead {
    font-size: 17px;
    color: rgba(255,255,255,0.82);
    margin-bottom: var(--s-5);
    max-width: 440px;
  }
  .form-card {
    background: #fff;
    color: var(--ink);
    border-radius: var(--radius-md);
    padding: var(--s-5);
    display: grid;
    gap: 12px;
    box-shadow: var(--shadow-lg);
  }
  .form-card label {
    display: grid;
    gap: 6px;
    font-family: var(--font-sans);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--ink-soft);
  }
  .form-card input,
  .form-card select,
  .form-card textarea {
    font-family: var(--font-sans);
    font-size: 15px;
    color: var(--ink);
    padding: 11px 13px;
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
    background: #fff;
    width: 100%;
  }
  .form-card input:focus,
  .form-card select:focus,
  .form-card textarea:focus {
    outline: none;
    border-color: var(--blue-600);
    box-shadow: 0 0 0 3px rgba(37,99,235,0.18);
  }
  .form-card textarea { min-height: 88px; resize: vertical; }
  .form-card .form-row { display: flex; gap: 12px; }
  .form-card .form-row label { flex: 1; min-width: 0; }
  @media (max-width: 520px) { .form-card .form-row { flex-direction: column; } }
  .form-card .btn-primary { width: 100%; justify-content: center; padding: 14px; }

  /* ---------- footer ---------- */
  footer {
    background: var(--navy-950);
    color: #fff;
  }
  .footer-services {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    align-items: center;
    padding: var(--s-5) 0;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    gap: var(--s-4);
  }
  @media (max-width: 880px) { .footer-services { grid-template-columns: repeat(2, 1fr); gap: var(--s-3); } }
  .fsi {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #fff;
    font-family: var(--font-sans);
    font-weight: 700;
    font-size: 12px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    white-space: nowrap;
  }
  .fsi .b {
    width: 30px; height: 30px;
    border-radius: 50%;
    background: var(--blue-700);
    display: grid; place-items: center;
    color: #fff;
  }
  .fsi-url { color: var(--blue-200); letter-spacing: 0.04em; text-transform: none; font-weight: 600; }

  .footer-cols {
    padding: var(--s-7) 0 var(--s-5);
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: var(--s-6);
  }
  @media (max-width: 880px) { .footer-cols { grid-template-columns: 1fr 1fr; } }
  .footer-cols h4 {
    font-family: var(--font-sans);
    font-weight: 700;
    font-size: 12px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--blue-200);
    margin: 0 0 var(--s-3);
  }
  .footer-cols a, .footer-cols p {
    display: block;
    color: rgba(255,255,255,0.75);
    text-decoration: none;
    font-size: 14px;
    line-height: 1.7;
  }
  .footer-cols a:hover { color: #fff; }
  .footer-brand .word {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 22px;
    color: #fff;
    letter-spacing: 0.04em;
  }
  .footer-brand .sub {
    font-size: 11px;
    letter-spacing: 0.18em;
    color: var(--blue-200);
    text-transform: uppercase;
    margin-top: 2px;
  }
  .footer-brand p { margin-top: var(--s-4); max-width: 340px; }
  .footer-legal {
    padding: var(--s-4) 0 var(--s-5);
    border-top: 1px solid rgba(255,255,255,0.08);
    font-size: 12px;
    color: rgba(255,255,255,0.55);
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: var(--s-3);
  }

  /* generic icon size */
  .ic { width: 18px; height: 18px; }
  .ic-lg { width: 22px; height: 22px; }
  .ic-sm { width: 14px; height: 14px; }

  /* hide language-specific blocks based on data-lang on <body> */
  body[data-lang="en"] [data-i18n="es"] { display: none; }
  body[data-lang="es"] [data-i18n="en"] { display: none; }

/* ============================================================
   SERVICE DETAIL PAGE  (Taxes, Accounting, … — shared)
   ============================================================ */

/* ---- navy service hero ---- */
.svc-hero {
  background: var(--navy-900);
  color: #fff;
  padding: var(--s-7) 0 var(--s-8);
  position: relative;
  overflow: hidden;
}
.svc-hero::after {
  /* faint mountain-ish glow, no hard gradient on the surface */
  content: "";
  position: absolute;
  width: 720px; height: 720px;
  right: -180px; top: -260px;
  background: radial-gradient(circle, rgba(96,165,250,0.16), transparent 68%);
  pointer-events: none;
}
.svc-hero .wrap { position: relative; z-index: 1; }
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,0.6);
  margin-bottom: var(--s-6);
  flex-wrap: wrap;
}
.breadcrumb a { color: rgba(255,255,255,0.6); text-decoration: none; }
.breadcrumb a:hover { color: #fff; }
.breadcrumb .sep { opacity: 0.5; }
.breadcrumb .here { color: var(--blue-200); }

.svc-hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: var(--s-8);
  align-items: start;
}
@media (max-width: 980px) { .svc-hero-grid { grid-template-columns: 1fr; gap: var(--s-7); } }

.svc-hero .eyebrow { color: var(--blue-400); }
.svc-hero .eyebrow::before { background: var(--blue-400); }
.svc-hero h1 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(42px, 4.6vw, 62px);
  line-height: 1.0;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  color: #fff;
  margin: var(--s-4) 0 var(--s-5);
  text-wrap: balance;
}
.svc-hero h1 .accent { color: var(--blue-400); }
.svc-hero .lead {
  font-size: 19px;
  line-height: 1.55;
  color: rgba(255,255,255,0.82);
  max-width: 520px;
  margin-bottom: var(--s-6);
  text-wrap: pretty;
}
.svc-hero .btn-onlight { background: #fff; color: var(--navy-900); }
.svc-hero .btn-onlight:hover { background: var(--blue-50); }
.svc-hero .btn-ghost-dark {
  background: transparent; color: #fff;
  border: 1px solid rgba(255,255,255,0.28);
}
.svc-hero .btn-ghost-dark:hover { background: rgba(255,255,255,0.08); }
.svc-hero .trust-item { color: rgba(255,255,255,0.78); }
.svc-hero .trust-item .dot { background: var(--blue-400); }

.svc-hero-visual {
  position: relative;
  aspect-ratio: 5 / 4;
  min-height: 320px;
  border-radius: var(--radius-lg);
  overflow: visible;
}
.svc-hero-visual .photo {
  position: absolute; inset: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.svc-hero-visual .photo image-slot { width: 100%; height: 100%; display: block; }

/* ---- section scaffolding ---- */
.svc-section { padding: var(--s-9) 0; }
.svc-section.alt { background: var(--surface-alt); }
.svc-head { max-width: 720px; margin-bottom: var(--s-7); }
.svc-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.svc-head h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(30px, 3.6vw, 44px);
  line-height: 1.04;
  letter-spacing: -0.005em;
  text-transform: uppercase;
  color: var(--navy-900);
  margin: 10px 0 var(--s-3);
}
.svc-head p { font-size: 17px; color: var(--ink-soft); line-height: 1.55; text-wrap: pretty; }

/* ---- "what's included" grid ---- */
.incl-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s-5);
}
@media (max-width: 920px) { .incl-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .incl-grid { grid-template-columns: 1fr; } }
.incl-card {
  background: #fff;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-md);
  padding: var(--s-6) var(--s-5);
  box-shadow: var(--shadow-sm);
}
.svc-section.alt .incl-card { border-color: var(--line); }
.incl-card .badge {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--blue-50); color: var(--blue-700);
  display: grid; place-items: center; margin-bottom: var(--s-4);
}
.incl-card h3 {
  font-family: var(--font-sans); font-weight: 700; font-size: 18px;
  color: var(--navy-900); margin: 0 0 8px;
}
.incl-card p { font-size: 14px; line-height: 1.5; color: var(--ink-soft); margin: 0; }

/* ---- packages ---- */
.pkg-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s-5);
  align-items: stretch;
}
@media (max-width: 920px) { .pkg-grid { grid-template-columns: 1fr; max-width: 460px; margin: 0 auto; } }
.pkg {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: var(--s-6);
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-sm);
}
.pkg.featured {
  border-color: var(--blue-600);
  box-shadow: 0 12px 32px rgba(37,99,235,0.16);
  position: relative;
}
.pkg.featured .tag {
  position: absolute; top: -12px; left: var(--s-6);
  background: var(--blue-600); color: #fff;
  font-size: 11px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
  padding: 5px 12px; border-radius: var(--radius-pill);
}
.pkg .pkg-name {
  font-family: var(--font-sans); font-weight: 700; font-size: 14px;
  letter-spacing: 0.1em; text-transform: uppercase; color: var(--blue-700);
  margin-bottom: var(--s-3);
}
.pkg .pkg-for { font-size: 14px; color: var(--ink-soft); line-height: 1.5; margin-bottom: var(--s-5); min-height: 42px; }
.pkg ul { list-style: none; padding: 0; margin: 0 0 var(--s-6); display: grid; gap: 12px; }
.pkg li { display: flex; align-items: flex-start; gap: 10px; font-size: 15px; color: var(--ink); line-height: 1.4; }
.pkg li .c {
  flex: 0 0 20px; width: 20px; height: 20px; border-radius: 50%;
  background: var(--blue-600); color: #fff; display: grid; place-items: center; margin-top: 1px;
}
.pkg .btn { margin-top: auto; justify-content: center; }

/* ---- FAQ accordion ---- */
.faq { max-width: 820px; margin: 0 auto; display: grid; gap: 12px; }
.faq details {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 4px var(--s-5);
}
.svc-section.alt .faq details { border-color: var(--line); }
.faq summary {
  list-style: none;
  cursor: pointer;
  display: flex; align-items: center; justify-content: space-between; gap: var(--s-4);
  padding: var(--s-4) 0;
  font-family: var(--font-sans); font-weight: 600; font-size: 17px;
  color: var(--navy-900);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary .plus {
  flex: 0 0 26px; width: 26px; height: 26px; border-radius: 50%;
  background: var(--blue-50); color: var(--blue-700);
  display: grid; place-items: center; transition: transform var(--dur-micro) var(--ease-standard);
}
.faq details[open] summary .plus { transform: rotate(45deg); }
.faq .faq-body { padding: 0 0 var(--s-4); font-size: 15px; line-height: 1.6; color: var(--ink-soft); max-width: 680px; }

/* ---- related services ---- */
.rel-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--s-5); }
@media (max-width: 760px) { .rel-grid { grid-template-columns: 1fr; } }
.rel-card {
  display: flex; align-items: center; gap: var(--s-4);
  background: #fff; border: 1px solid var(--line-soft);
  border-radius: var(--radius-md); padding: var(--s-5);
  text-decoration: none; box-shadow: var(--shadow-sm);
  transition: box-shadow var(--dur-layout) var(--ease-standard), transform var(--dur-layout) var(--ease-standard);
}
.rel-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.rel-card .badge {
  flex: 0 0 44px; width: 44px; height: 44px; border-radius: 50%;
  background: var(--blue-50); color: var(--blue-700); display: grid; place-items: center;
}
.rel-card .rel-name { font-family: var(--font-sans); font-weight: 700; font-size: 16px; color: var(--navy-900); }
.rel-card .rel-go { font-size: 12px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--blue-700); margin-top: 2px; }
