/* ── Shared Software Section Styles ── */

/* nav dropdown */
.sw-dropdown { position: relative; }
.sw-dd-trigger {
  display: flex;
  align-items: center;
  gap: 4px;
  cursor: pointer;
}
.sw-dd-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 8px;
  min-width: 280px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.12);
  z-index: 100;
}
.sw-dd-menu::before {
  content: '';
  position: absolute;
  top: -12px;
  left: -10px;
  right: -10px;
  height: 12px;
}
.sw-dropdown:hover .sw-dd-menu { display: flex; flex-direction: column; gap: 2px; }
.sw-dd-menu a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  border-radius: 10px;
  text-decoration: none;
  transition: background 0.15s;
  color: var(--text);
}
.sw-dd-menu a:hover { background: var(--bg); }
.dd-icon { font-size: 20px; flex-shrink: 0; width: 36px; text-align: center; }
.sw-dd-menu a strong { display: block; font-size: 13px; font-weight: 600; margin-bottom: 2px; }
.sw-dd-menu a em { display: block; font-size: 11px; font-style: normal; color: var(--text-muted, #888); }

/* trust bar */
.sw-trust-bar {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 20px 0;
}
.sw-trust-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
}
.sw-trust-item {
  padding: 8px 32px;
  text-align: center;
}
.sw-trust-item strong {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 2px;
}
.sw-trust-item span {
  font-size: 11px;
  color: var(--text-muted, #999);
}
.sw-divider {
  width: 1px;
  height: 36px;
  background: var(--border);
  flex-shrink: 0;
}

/* category cards grid */
.sw-category-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.sw-cat-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 28px;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: var(--surface);
  text-decoration: none;
  color: var(--text);
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
}
.sw-cat-card:hover {
  border-color: var(--accent);
  box-shadow: 0 4px 24px rgba(0,0,0,0.08);
  transform: translateY(-2px);
}
.sw-cat-cta {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--accent-contrast, #111);
}
.sw-cat-cta:hover {
  background: var(--accent-hover);
  border-color: var(--accent-hover);
  box-shadow: 0 4px 24px rgba(228,161,0,0.3);
}
.sw-cat-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: rgba(228,161,0,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
}
.sw-cat-cta .sw-cat-icon { background: rgba(0,0,0,0.1); color: var(--accent-contrast, #111); }
.sw-cat-body h3 { font-size: 17px; font-weight: 700; margin-bottom: 8px; }
.sw-cat-body p { font-size: 13.5px; color: var(--text-muted, #777); line-height: 1.7; margin-bottom: 14px; }
.sw-cat-cta .sw-cat-body p { color: rgba(0,0,0,0.6); }
.sw-cat-body ul { list-style: none; padding: 0; display: flex; flex-direction: column; gap: 5px; }
.sw-cat-body ul li { font-size: 12.5px; color: var(--text-muted, #888); padding-left: 14px; position: relative; }
.sw-cat-body ul li::before { content: "·"; position: absolute; left: 0; color: var(--accent); font-weight: 700; }
.sw-cat-cta .sw-cat-body ul li { color: rgba(0,0,0,0.55); }
.sw-cat-arrow {
  font-size: 12px;
  font-weight: 600;
  color: var(--accent);
  margin-top: auto;
}
.sw-cat-cta .sw-cat-arrow { color: var(--accent-contrast, #111); }

/* service list on sub-pages */
.sw-service-list { display: flex; flex-direction: column; gap: 12px; }
.sw-service-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px 24px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: var(--surface);
  transition: border-color 0.2s;
}
.sw-service-item:hover { border-color: var(--accent); }
.sw-service-num {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: rgba(228,161,0,0.12);
  color: var(--accent);
  font-size: 12px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}
.sw-service-item h4 { font-size: 14px; font-weight: 600; margin-bottom: 4px; }
.sw-service-item p { font-size: 13px; color: var(--text-muted, #888); line-height: 1.65; }

/* process steps */
.sw-process { display: flex; flex-direction: column; gap: 0; }
.sw-process-step {
  display: flex;
  gap: 24px;
  padding: 28px 0;
  border-bottom: 1px solid var(--border);
}
.sw-process-step:last-child { border-bottom: none; }
.sw-step-num {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--accent-contrast, #111);
  font-family: "Unbounded", sans-serif;
  font-size: 14px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.sw-step-body h3 { font-size: 16px; font-weight: 600; margin-bottom: 8px; }
.sw-step-body p { font-size: 13.5px; color: var(--text-muted, #888); line-height: 1.75; }

/* tech tags */
.sw-stack-row {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.sw-stack-group { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.sw-stack-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-muted, #999);
  width: 100px;
  flex-shrink: 0;
}
.sw-tag {
  font-size: 12px;
  font-weight: 500;
  padding: 5px 12px;
  border-radius: 6px;
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--text);
}

/* faq */
.sw-faq { display: flex; flex-direction: column; gap: 10px; }
details.sw-faq-item {
  border: 1px solid var(--border);
  border-radius: 10px;
  background: var(--surface);
  overflow: hidden;
}
details.sw-faq-item summary {
  padding: 16px 20px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
details.sw-faq-item summary::-webkit-details-marker { display: none; }
details.sw-faq-item summary::after { content: "+"; font-size: 20px; color: var(--accent); flex-shrink: 0; }
details.sw-faq-item[open] summary::after { content: "−"; }
.sw-faq-body { padding: 0 20px 18px; font-size: 13px; line-height: 1.8; color: var(--text-muted, #888); }

/* erp module grid */
.sw-erp-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.sw-erp-card {
  padding: 20px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: var(--surface);
}
.sw-erp-card h4 { font-size: 13.5px; font-weight: 600; margin-bottom: 6px; display: flex; align-items: center; gap: 8px; }
.sw-erp-card h4::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--accent); flex-shrink: 0; }
.sw-erp-card p { font-size: 12.5px; color: var(--text-muted, #888); line-height: 1.6; }

/* page breadcrumb with back link */
.sw-back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 500;
  color: var(--text-muted, #888);
  text-decoration: none;
  margin-bottom: 8px;
  transition: color 0.15s;
}
.sw-back:hover { color: var(--accent); }

/* ── Software-only footer ──────────────────────────────────── */
.sw-footer {
  margin-top: var(--space-7);
  background: #0d0d0d;
  color: #ccc;
}
.sw-footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 2rem;
  padding: 3rem 0 2.5rem;
}
.sw-footer-brand .brand {
  font-family: "Unbounded", sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  display: block;
  margin-bottom: 10px;
}
.sw-footer-brand p {
  font-size: 13px;
  color: #888;
  line-height: 1.65;
  margin: 0 0 14px;
  max-width: 240px;
}
.sw-footer-remote {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 11px;
  font-weight: 600;
  color: var(--accent);
  background: rgba(228,161,0,.1);
  border: 1px solid rgba(228,161,0,.25);
  border-radius: 999px;
  padding: 5px 12px;
}
.sw-footer h5 {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: #fff;
  margin: 0 0 14px;
}
.sw-footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.sw-footer-links a {
  font-size: 13px;
  color: #888;
  text-decoration: none;
  transition: color .15s;
}
.sw-footer-links a:hover { color: var(--accent); }
.sw-footer-contact-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: #888;
  margin-bottom: 8px;
}
.sw-footer-contact-item a { color: #888; text-decoration: none; transition: color .15s; }
.sw-footer-contact-item a:hover { color: var(--accent); }
.sw-footer-contact-icon {
  width: 28px; height: 28px; border-radius: 7px;
  background: rgba(255,255,255,.06);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  color: #aaa;
}
.sw-footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 1.1rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: .75rem;
}
.sw-footer-bottom-copy { font-size: 12px; color: #555; }
.sw-footer-badges { display: flex; align-items: center; gap: 10px; }
.sw-footer-badge {
  display: flex; align-items: center; gap: 5px;
  font-size: 11px; color: #555;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 7px;
  padding: 4px 10px;
}
@media (max-width: 768px) {
  .sw-footer-grid { grid-template-columns: 1fr 1fr; gap: 1.5rem; padding: 2rem 0; }
  .sw-footer-bottom { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 480px) {
  .sw-footer-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .sw-category-grid { grid-template-columns: 1fr; }
  .sw-erp-grid { grid-template-columns: 1fr 1fr; }
  .sw-trust-inner { gap: 16px; }
  .sw-divider { display: none; }
  .sw-stack-label { width: 80px; }
}
@media (max-width: 480px) {
  .sw-erp-grid { grid-template-columns: 1fr; }
}

/* ════════════════════════════════════════════════════════════
   Software home v3 — AI Studio design (scoped to body.sw-page-v2)
   ════════════════════════════════════════════════════════════ */
.sw-page-v2 {
  font-family: "Inter", system-ui, sans-serif;
  background: #f7f9fc;
  color: #1e293b;
}
.sw-page-v2 .container { width: min(1120px, calc(100% - 48px)); }

/* header tweaks to match design */
.sw-page-v2 .site-header { background: rgba(247,249,252,.82); backdrop-filter: blur(10px); border-bottom: 1px solid rgba(226,232,240,.6); }
.sw-page-v2 .brand { font-family: "Space Grotesk", sans-serif; font-weight: 700; letter-spacing: 1.5px; font-size: 19px; color: #0f172a; }
.sw-page-v2 .brand-suffix { font-weight: 300; color: #64748b; }
.sw-page-v2 .nav-links { font-size: 13px; font-weight: 600; color: #475569; }
.sw-page-v2 .nav-links a:hover, .sw-page-v2 .sw-dd-trigger:hover { color: #0f172a; }
.sw-page-v2 .btn.primary { background: #c89b25; border-color: #c89b25; color: #fff; border-radius: 12px; font-size: 13px; box-shadow: 0 8px 18px rgba(200,155,37,.18); }
.sw-page-v2 .btn.primary:hover { background: #b0871e; border-color: #b0871e; }

.swx-main { display: flex; flex-direction: column; gap: 96px; padding-bottom: 96px; }
.sw-page-v2 h1, .sw-page-v2 h2, .sw-page-v2 h3, .sw-page-v2 h4, .sw-page-v2 h5 { font-family: "Space Grotesk", sans-serif; }

/* ── HERO ── */
.swx-hero { padding-top: clamp(32px, 6vw, 80px); }
.swx-hero-grid {
  display: grid; grid-template-columns: 7fr 5fr; gap: 48px; align-items: center;
}
.swx-hero-copy { display: flex; flex-direction: column; gap: 22px; }
.swx-eyebrow { font-size: 11px; letter-spacing: 3px; font-weight: 800; color: #94a3b8; text-transform: uppercase; }
.swx-hero-copy h1 {
  font-weight: 700; letter-spacing: -1.5px; line-height: 1.05;
  font-size: clamp(2.1rem, 4.6vw, 3.375rem); color: #0f172a; margin-top: -8px;
}
.swx-hero-copy > p { color: #64748b; font-size: 15px; line-height: 1.7; font-weight: 300; max-width: 34rem; }
.swx-hero-actions { display: flex; flex-wrap: wrap; gap: 16px; padding-top: 4px; }
.swx-btn-dark, .swx-btn-light {
  display: inline-flex; align-items: center; gap: 8px; font-size: 13px; font-weight: 600;
  padding: 14px 24px; border-radius: 12px; text-decoration: none; transition: all .2s ease;
}
.swx-btn-dark { background: #0f172a; color: #fff; box-shadow: 0 14px 28px rgba(15,23,42,.16); }
.swx-btn-dark:hover { background: #000; color: #fff; }
.swx-btn-dark svg { transition: transform .2s ease; }
.swx-btn-dark:hover svg { transform: translateX(3px); }
.swx-btn-light { background: #fff; color: #475569; border: 1px solid #e2e8f0; }
.swx-btn-light:hover { background: #f8fafc; color: #0f172a; }

.swx-hero-art { display: flex; justify-content: center; align-items: center; }
.swx-hero-img {
  width: 100%; max-width: 460px; aspect-ratio: 4 / 3; border-radius: 24px; overflow: hidden;
  border: 1px solid rgba(255,255,255,.5); box-shadow: 0 40px 80px -20px rgba(40,55,90,.35);
  animation: swxFloat 6s ease-in-out infinite;
}
.swx-hero-img img { width: 100%; height: 100%; object-fit: cover; display: block; user-select: none; }
@keyframes swxFloat { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }

/* ── Trust capsule ── */
.swx-capsule {
  margin-top: 64px; background: #fff; border: 1px solid rgba(226,232,240,.8); border-radius: 24px;
  padding: 26px 20px; box-shadow: 0 10px 40px -15px rgba(100,116,139,.18);
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px;
}
.swx-cap-item { display: flex; gap: 12px; align-items: flex-start; padding: 8px 22px; position: relative; }
.swx-cap-item + .swx-cap-item::before { content: ""; position: absolute; left: 0; top: 4px; bottom: 4px; width: 1px; background: #f1f5f9; }
.swx-cap-ico { width: 32px; height: 32px; border-radius: 50%; background: rgba(200,155,37,.1); color: #c89b25; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.swx-cap-ico svg { width: 16px; height: 16px; }
.swx-cap-item h4 { font-size: 12px; font-weight: 600; color: #334155; margin-bottom: 3px; }
.swx-cap-item p { font-size: 10.5px; color: #94a3b8; font-weight: 300; line-height: 1.55; }

/* ── Section heading ── */
.swx-section { display: flex; flex-direction: column; gap: 40px; }
.swx-head { text-align: center; display: flex; flex-direction: column; gap: 8px; max-width: 640px; margin: 0 auto; padding: 0 24px; }
.swx-kicker { font-size: 12px; font-weight: 700; letter-spacing: 3px; color: #c89b25; text-transform: uppercase; }
.swx-head h2, .swx-head h3 { font-weight: 600; letter-spacing: -.5px; color: #0f172a; }
.swx-head h2 { font-size: clamp(1.75rem, 3vw, 2.25rem); }
.swx-head h3 { font-size: clamp(1.5rem, 2.4vw, 1.875rem); }
.swx-head p { font-size: 13px; color: #94a3b8; font-weight: 300; }

/* ── Service showcase cards ── */
.swx-showcase { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; max-width: 980px; }
.swx-service-card {
  position: relative; overflow: hidden; min-height: 460px; background: #fff;
  border: 1px solid #f1f5f9; border-radius: 24px; padding: 32px; text-decoration: none; color: inherit;
  display: flex; flex-direction: column; justify-content: space-between;
  box-shadow: 0 20px 50px -25px rgba(40,55,90,.25); transition: box-shadow .3s ease, border-color .3s ease, transform .3s ease;
}
.swx-service-card:hover { box-shadow: 0 30px 60px -25px rgba(40,55,90,.35); border-color: #e2e8f0; transform: translateY(-3px); }
.swx-sc-top { display: flex; flex-direction: column; gap: 6px; position: relative; z-index: 2; }
.swx-sc-ico { width: 48px; height: 48px; border-radius: 16px; background: #f1f5f9; border: 1px solid rgba(226,232,240,.6); display: flex; align-items: center; justify-content: center; color: #1e293b; margin-bottom: 12px; transition: transform .3s ease; }
.swx-sc-ico svg { width: 24px; height: 24px; }
.swx-service-card:hover .swx-sc-ico { transform: scale(1.05); }
.swx-service-card h4 { font-size: 24px; font-weight: 600; color: #0f172a; }
.swx-sc-label { font-size: 11px; color: #94a3b8; letter-spacing: .5px; }
.swx-sc-top ul { list-style: none; padding: 0; margin: 14px 0 0; display: flex; flex-direction: column; gap: 9px; }
.swx-sc-top ul li { display: flex; align-items: center; gap: 10px; font-size: 14px; color: #475569; }
.swx-sc-top ul li::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: #94a3b8; flex-shrink: 0; }
.swx-sc-gear {
  position: absolute; right: 24px; bottom: 24px; width: 130px; height: 130px; border-radius: 50%;
  overflow: hidden; border: 1px solid rgba(255,255,255,.6); box-shadow: 0 12px 30px -8px rgba(40,55,90,.3);
  z-index: 1; background: rgba(255,255,255,.1);
}
.swx-sc-gear img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s ease; }
.swx-service-card:hover .swx-sc-gear img { transform: rotate(40deg); }

/* ── Process / Pricing band ── */
.swx-band { background: rgba(248,250,252,.6); border-top: 1px solid rgba(226,232,240,.5); border-bottom: 1px solid rgba(226,232,240,.5); padding: 64px 0; }
.swx-band-inner { display: flex; flex-direction: column; gap: 64px; max-width: 980px; }
.swx-pp-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; align-items: stretch; }

.swx-gold-card {
  position: relative; overflow: hidden; min-height: 320px; border-radius: 24px; padding: 32px;
  display: flex; flex-direction: column; justify-content: space-between; text-decoration: none;
  background: linear-gradient(135deg, #d97706, #b45309); color: #fff;
  box-shadow: 0 24px 50px -20px rgba(180,83,9,.5); transition: box-shadow .3s ease, transform .3s ease;
}
.swx-gold-card:hover { box-shadow: 0 30px 60px -20px rgba(180,83,9,.6); transform: translateY(-3px); }
.swx-gc-glow { position: absolute; inset: 0; background: linear-gradient(40deg, rgba(146,64,14,.3), transparent 50%, rgba(255,255,255,.15)); mix-blend-mode: overlay; pointer-events: none; }
.swx-gc-top { position: relative; z-index: 1; display: flex; flex-direction: column; gap: 12px; }
.swx-gc-kicker { font-size: 10px; letter-spacing: 3px; font-weight: 700; text-transform: uppercase; color: #fde68a; }
.swx-gold-card h4 { font-size: 30px; font-weight: 600; color: #fff; }
.swx-gc-top p { font-size: 14px; font-weight: 300; line-height: 1.65; color: rgba(255,251,235,.95); padding-right: 12px; }
.swx-gc-foot { position: relative; z-index: 1; display: flex; align-items: center; justify-content: space-between; margin-top: 24px; padding-top: 16px; border-top: 1px solid rgba(255,255,255,.15); }
.swx-gc-foot > span:first-child { display: inline-flex; align-items: center; gap: 7px; font-size: 12px; font-weight: 600; color: #fef3c7; }
.swx-gold-card:hover .swx-gc-foot > span:first-child { text-decoration: underline; }
.swx-gc-circle { width: 40px; height: 40px; border-radius: 50%; background: rgba(255,255,255,.12); display: flex; align-items: center; justify-content: center; font-size: 15px; transition: background .2s ease; }
.swx-gold-card:hover .swx-gc-circle { background: rgba(255,255,255,.22); }

.swx-pp-card { background: #fff; border: 1px solid #f1f5f9; border-radius: 24px; padding: 32px; min-height: 320px; box-shadow: 0 20px 50px -25px rgba(40,55,90,.25); display: flex; flex-direction: column; justify-content: space-between; }
.swx-pp-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 16px; }
.swx-pp-head h4 { font-size: 24px; font-weight: 600; color: #0f172a; }
.swx-check-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.swx-check-list li { display: flex; align-items: flex-start; gap: 10px; font-size: 12.5px; color: #475569; line-height: 1.6; }
.swx-chk { color: #c89b25; flex-shrink: 0; margin-top: 1px; }
.swx-chk svg { width: 15px; height: 15px; }
.swx-pp-link { margin-top: 16px; color: #c89b25; font-size: 12px; font-weight: 700; text-decoration: none; display: inline-block; }
.swx-pp-link:hover { color: #b0871e; }

/* ── What sets us apart — editorial layout ── */
.swx-apart { display: grid; grid-template-columns: .82fr 1.18fr; gap: 56px; max-width: 980px; margin: 0 auto; width: 100%; align-items: start; }
.swx-apart-intro { position: sticky; top: 96px; }
.swx-apart-tag { font-size: 12px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: #c89b25; }
.swx-apart-intro h3 { font-family: "Space Grotesk", sans-serif; font-size: clamp(1.6rem, 2.6vw, 2.1rem); font-weight: 600; color: #0f172a; letter-spacing: -.5px; margin: 12px 0 14px; }
.swx-apart-intro p { font-size: 14px; color: #64748b; font-weight: 300; line-height: 1.65; max-width: 26ch; }
.swx-apart-list { display: flex; flex-direction: column; }
.swx-apart-row { display: flex; gap: 24px; padding: 28px 0; border-top: 1px solid #e7edf4; }
.swx-apart-row:first-child { border-top: none; padding-top: 4px; }
.swx-apart-row:last-child { padding-bottom: 0; }
.swx-apart-num { font-family: "Space Grotesk", sans-serif; font-size: 14px; font-weight: 600; color: #c89b25; padding-top: 4px; min-width: 26px; }
.swx-apart-body h5 { font-family: "Space Grotesk", sans-serif; font-size: 18px; font-weight: 600; color: #0f172a; margin-bottom: 8px; letter-spacing: -.2px; }
.swx-apart-body p { font-size: 13.5px; color: #64748b; font-weight: 300; line-height: 1.7; max-width: 52ch; }

/* ── Responsive ── */
@media (max-width: 1024px) {
  .swx-hero-grid { grid-template-columns: 1fr; gap: 36px; }
  .swx-hero-art { order: -1; }
}
@media (max-width: 860px) {
  .swx-capsule { grid-template-columns: 1fr 1fr; gap: 10px; }
  .swx-cap-item:nth-child(odd)::before { display: none; }
  .swx-showcase { grid-template-columns: 1fr; }
  .swx-pp-grid { grid-template-columns: 1fr; }
  .swx-service-card { min-height: 0; }
  .swx-apart { grid-template-columns: 1fr; gap: 28px; }
  .swx-apart-intro { position: static; }
}
@media (max-width: 520px) {
  .swx-capsule { grid-template-columns: 1fr; }
  .swx-cap-item::before { display: none !important; }
  .swx-hero-actions .swx-btn-dark, .swx-hero-actions .swx-btn-light { width: 100%; justify-content: center; }
}
