/* Swift Host — Dark Theme (Blue · White · Black) */

:root {
  --sh-bg: #070b12;
  --sh-bg-elevated: #0f1623;
  --sh-bg-card: #141c2b;
  --sh-bg-card-hover: #1a2438;
  --sh-border: rgba(255,255,255,0.08);
  --sh-blue: #3b82f6;
  --sh-blue-bright: #60a5fa;
  --sh-blue-dark: #1d4ed8;
  --sh-blue-glow: rgba(59,130,246,0.25);
  --sh-text: #e2e8f0;
  --sh-muted: #94a3b8;
  --sh-white: #ffffff;
  --sh-radius: 12px;
  --sh-nav-h: 76px;
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background: var(--sh-bg);
  color: var(--sh-text);
  line-height: 1.65;
  padding-top: var(--sh-nav-h);
}

a { color: var(--sh-blue-bright); transition: color 0.2s; }
a:hover { color: var(--sh-white); }

h1, h2, h3, h4, h5, h6 {
  color: var(--sh-white);
  font-weight: 700;
  letter-spacing: -0.02em;
}

.text-muted { color: var(--sh-muted) !important; }

/* ── Nav ── */
.sh-navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1050;
  height: var(--sh-nav-h);
  background: rgba(7,11,18,0.85);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--sh-border);
  transition: background 0.3s, box-shadow 0.3s;
}
.sh-navbar.scrolled {
  background: rgba(7,11,18,0.97);
  box-shadow: 0 4px 24px rgba(0,0,0,0.4);
}
.sh-navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}
.sh-logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--sh-white);
  flex-shrink: 0;
  padding-right: 8px;
}
.sh-logo-mark {
  width: 4px;
  height: 32px;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--sh-blue-bright) 0%, var(--sh-blue-dark) 100%);
  flex-shrink: 0;
}
.sh-logo-type {
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.sh-logo-stack {
  display: flex;
  flex-direction: row;
  align-items: baseline;
  gap: 0.4em;
  line-height: 1;
  white-space: nowrap;
}
.sh-logo-swift {
  font-size: 1.85rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--sh-blue-bright);
  line-height: 1;
}
.sh-logo-host {
  font-size: 1.85rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--sh-white);
  line-height: 1;
}
.sh-logo-tag {
  font-size: 0.48rem;
  font-weight: 600;
  letter-spacing: 0.36em;
  text-transform: uppercase;
  color: rgba(148, 163, 184, 0.9);
  line-height: 1;
}
.sh-logo:hover {
  color: var(--sh-white);
  text-decoration: none;
}
.sh-logo:hover .sh-logo-swift {
  color: #93c5fd;
}
.sh-logo-footer .sh-logo-mark {
  height: 28px;
}
.sh-logo-footer .sh-logo-swift,
.sh-logo-footer .sh-logo-host {
  font-size: 1.5rem;
}
.sh-logo-footer .sh-logo-tag {
  font-size: 0.42rem;
  letter-spacing: 0.3em;
}
.sh-logo-footer {
  margin-bottom: 16px;
}
.sh-navbar .navbar-brand { flex-shrink: 0; }
.sh-navbar .nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.sh-navbar .nav-links > li > a,
.sh-navbar .nav-links > li > .nav-drop-toggle {
  display: block;
  padding: 8px 14px;
  color: var(--sh-muted);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  border-radius: 8px;
  transition: color 0.2s, background 0.2s;
  cursor: pointer;
  background: none;
  border: none;
  font-family: inherit;
}
.sh-navbar .nav-links > li > a:hover,
.sh-navbar .nav-links > li > .nav-drop-toggle:hover,
.sh-navbar .nav-links > li > a.active {
  color: var(--sh-white);
  background: rgba(255,255,255,0.06);
}
.sh-navbar .btn-quote {
  background: var(--sh-blue);
  color: #fff !important;
  padding: 10px 20px !important;
  border-radius: 8px;
  font-weight: 600;
  margin-left: 8px;
  box-shadow: 0 0 20px var(--sh-blue-glow);
}
.sh-navbar .btn-quote:hover {
  background: var(--sh-blue-dark);
  color: #fff !important;
}
.sh-nav-toggle {
  display: none;
  background: none;
  border: 1px solid var(--sh-border);
  color: var(--sh-white);
  padding: 8px 12px;
  border-radius: 8px;
  font-size: 20px;
  cursor: pointer;
}

/* Dropdowns */
/* Dropdowns — desktop flyouts */
.nav-dropdown { position: relative; }
.nav-drop-toggle i.bi-chevron-down {
  transition: transform 0.2s ease;
}
@media (min-width: 992px) {
  .nav-drop-menu {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    min-width: 280px;
    background: var(--sh-bg-elevated);
    border: 1px solid var(--sh-border);
    border-radius: var(--sh-radius);
    padding: 16px;
    box-shadow: 0 16px 48px rgba(0,0,0,0.5);
    z-index: 1100;
  }
  .nav-dropdown.open .nav-drop-menu { display: block; }
  .nav-drop-menu.wide { min-width: 640px; padding: 24px; }
}
.nav-drop-menu h6 {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--sh-blue-bright);
  margin: 0 0 12px;
}
.nav-drop-menu ul { list-style: none; padding: 0; margin: 0; }
.nav-drop-menu ul li a {
  display: block;
  padding: 6px 0;
  color: var(--sh-muted);
  font-size: 14px;
  text-decoration: none;
}
.nav-drop-menu ul li a:hover { color: var(--sh-white); }

/* ── Hero ── */
.sh-hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--sh-bg);
}
.sh-hero-home {
  min-height: 92vh;
}
.sh-hero-bg {
  position: absolute;
  inset: 0;
  background: url('../img/hero-home.jpg') center/cover no-repeat;
}
.sh-hero-slides {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.sh-hero-slide {
  position: absolute;
  inset: 0;
  background: center/cover no-repeat;
  opacity: 0;
  transform: scale(1.04);
  animation: sh-hero-slide-fade 25s infinite;
  will-change: opacity, transform;
}
.sh-hero-slide:nth-child(1) { animation-delay: 0s; }
.sh-hero-slide:nth-child(2) { animation-delay: 5s; }
.sh-hero-slide:nth-child(3) { animation-delay: 10s; }
.sh-hero-slide:nth-child(4) { animation-delay: 15s; }
.sh-hero-slide:nth-child(5) { animation-delay: 20s; }
@keyframes sh-hero-slide-fade {
  0% { opacity: 0; transform: scale(1.06); }
  4% { opacity: 1; transform: scale(1.03); }
  18% { opacity: 1; transform: scale(1); }
  22% { opacity: 0; transform: scale(1); }
  100% { opacity: 0; transform: scale(1.03); }
}
.sh-hero-overlay,
.sh-hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(105deg, rgba(7,11,18,0.92) 0%, rgba(7,11,18,0.72) 42%, rgba(15,30,60,0.55) 100%),
    linear-gradient(to top, rgba(7,11,18,0.85), transparent 55%);
  pointer-events: none;
}
.sh-hero-overlay { z-index: 1; }
.sh-hero-grid {
  position: absolute;
  inset: 0;
  z-index: 1;
  background-image:
    linear-gradient(rgba(59,130,246,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(59,130,246,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 90% 80% at 35% 50%, black 15%, transparent 72%);
}
.sh-hero-content { position: relative; z-index: 2; padding: 88px 0 96px; }
.sh-hero-content-wide {
  max-width: 1280px;
}
.sh-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(59,130,246,0.15);
  border: 1px solid rgba(59,130,246,0.3);
  color: var(--sh-blue-bright);
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  margin-bottom: 24px;
}
.sh-hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  line-height: 1.1;
  margin-bottom: 24px;
  max-width: 720px;
}
.sh-hero h1 span { color: var(--sh-blue-bright); }
.sh-hero .lead {
  font-size: 1.15rem;
  color: var(--sh-muted);
  max-width: 560px;
  margin-bottom: 36px;
}
.sh-hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px 16px;
}
.sh-btn-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px 16px;
}
.sh-btn-row-center { justify-content: center; }
.sh-page-hero .sh-hero-actions { justify-content: center; }
.sh-cta .sh-btn-row,
.sh-cta .sh-hero-actions {
  justify-content: center;
  margin-top: 4px;
}
@media (max-width: 575px) {
  .sh-hero-actions .sh-btn,
  .sh-btn-row .sh-btn {
    flex: 1 1 100%;
    justify-content: center;
  }
}

/* Page hero (inner pages) */
.sh-page-hero {
  position: relative;
  padding: 100px 0 72px;
  background: var(--sh-bg-elevated);
  overflow: hidden;
}
.sh-page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('../img/hero-inner.jpg') center/cover no-repeat;
  opacity: 0.22;
}
.sh-page-hero.sh-page-hero-cloud::before {
  background-image: url('../img/hero-cloud.jpg');
  opacity: 0.24;
}
.sh-page-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent, var(--sh-bg-elevated));
}
.sh-page-hero h1 span { color: var(--sh-blue-bright); }

/* Breadcrumb */
.sh-breadcrumb {
  background: var(--sh-bg-elevated);
  border-bottom: 1px solid var(--sh-border);
  padding: 12px 0;
}
.sh-breadcrumb ol {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 13px;
  color: var(--sh-muted);
}
.sh-breadcrumb li:not(:last-child)::after {
  content: '/';
  margin-left: 8px;
  opacity: 0.5;
}
.sh-breadcrumb a {
  color: var(--sh-muted);
  text-decoration: none;
}
.sh-breadcrumb a:hover { color: var(--sh-blue-bright); }
.sh-related-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}
.sh-related-links a {
  display: inline-block;
  padding: 12px 20px;
  background: var(--sh-bg-card);
  border: 1px solid var(--sh-border);
  border-radius: 8px;
  color: var(--sh-blue-bright) !important;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  transition: background 0.2s, border-color 0.2s;
}
.sh-related-links a:hover {
  background: var(--sh-bg-card-hover);
  border-color: rgba(59,130,246,0.3);
  color: var(--sh-white) !important;
}

.sh-compare-wrap { overflow-x: auto; }
.sh-compare-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--sh-bg-card);
  border: 1px solid var(--sh-border);
  border-radius: var(--sh-radius);
  overflow: hidden;
}
.sh-compare-table th,
.sh-compare-table td {
  padding: 16px 20px;
  text-align: left;
  border-bottom: 1px solid var(--sh-border);
  font-size: 14px;
}
.sh-compare-table th {
  background: var(--sh-bg-elevated);
  color: var(--sh-white);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.sh-compare-table td { color: var(--sh-muted); }
.sh-compare-table td:first-child { color: var(--sh-text); font-weight: 500; }
.sh-compare-table tbody tr:last-child td { border-bottom: none; }
.sh-compare-table tbody tr:hover td { background: rgba(255,255,255,0.02); }
.sh-stacks-grid .sh-card h3 { font-size: 1rem; }

.sh-page-toc {
  background: var(--sh-bg-card);
  border-bottom: 1px solid var(--sh-border);
  padding: 14px 0;
  position: sticky;
  top: var(--sh-nav-h);
  z-index: 100;
}
.sh-page-toc ul {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 16px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.sh-page-toc a {
  color: var(--sh-muted);
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
}
.sh-page-toc a:hover { color: var(--sh-blue-bright); }
.sh-specs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}
.sh-spec-card {
  background: var(--sh-bg-card);
  border: 1px solid var(--sh-border);
  border-radius: var(--sh-radius);
  padding: 24px;
}
.sh-spec-card h3 {
  font-size: 1.1rem;
  margin-bottom: 16px;
  color: var(--sh-blue-bright);
}
.sh-spec-card ul {
  list-style: none;
  padding: 0;
  margin: 0 0 16px;
  font-size: 14px;
  color: var(--sh-muted);
}
.sh-spec-card li { margin-bottom: 8px; }
.sh-spec-card li strong { color: var(--sh-text); }
.sh-spec-best {
  font-size: 13px;
  color: var(--sh-muted);
  margin-bottom: 16px;
  line-height: 1.5;
}
.sh-btn-sm { padding: 8px 16px !important; font-size: 13px !important; }
.sh-provider-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}
.sh-provider-tags span {
  padding: 10px 18px;
  background: var(--sh-bg-card);
  border: 1px solid var(--sh-border);
  border-radius: 50px;
  font-size: 14px;
  font-weight: 500;
  color: var(--sh-muted);
}

.sh-page-hero .container { position: relative; z-index: 1; }
.sh-page-hero h1 { font-size: clamp(1.8rem, 4vw, 2.8rem); margin-bottom: 16px; }
.sh-page-hero h1 span { color: var(--sh-blue-bright); }

/* ── Buttons ── */
.sh-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 15px;
  text-decoration: none !important;
  border: none;
  cursor: pointer;
  transition: all 0.2s;
}
.sh-btn-primary {
  background: var(--sh-blue);
  color: #fff !important;
  box-shadow: 0 4px 24px var(--sh-blue-glow);
}
.sh-btn-primary:hover {
  background: var(--sh-blue-dark);
  color: #fff !important;
  transform: translateY(-1px);
  box-shadow: 0 8px 32px var(--sh-blue-glow);
}
.sh-btn-outline {
  background: transparent;
  color: var(--sh-white) !important;
  border: 1px solid var(--sh-border);
}
.sh-btn-outline:hover {
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.2);
  color: var(--sh-white) !important;
}

/* ── Sections ── */
.sh-section { padding: 96px 0; }
.sh-section-alt { background: var(--sh-bg-elevated); }
.sh-section-header { text-align: center; max-width: 640px; margin: 0 auto 56px; }
.sh-section-header h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); margin-bottom: 16px; }
.sh-section-header p { color: var(--sh-muted); font-size: 1.05rem; }

/* Stats bar */
.sh-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 1px;
  background: var(--sh-border);
  border: 1px solid var(--sh-border);
  border-radius: var(--sh-radius);
  overflow: hidden;
}
.sh-stat {
  background: var(--sh-bg-card);
  padding: 28px 20px;
  text-align: center;
}
.sh-stat strong {
  display: block;
  font-size: 1.8rem;
  color: var(--sh-blue-bright);
  font-weight: 800;
  line-height: 1;
  margin-bottom: 8px;
}
.sh-stat span { font-size: 12px; color: var(--sh-muted); text-transform: uppercase; letter-spacing: 0.08em; }

/* Cards */
.sh-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; }
.sh-card {
  background: var(--sh-bg-card);
  border: 1px solid var(--sh-border);
  border-radius: var(--sh-radius);
  padding: 32px;
  transition: border-color 0.25s, transform 0.25s, box-shadow 0.25s;
  height: 100%;
}
.sh-card:hover {
  border-color: rgba(59,130,246,0.4);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.3);
}
.sh-card-icon {
  width: 48px; height: 48px;
  background: rgba(59,130,246,0.15);
  border: 1px solid rgba(59,130,246,0.25);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--sh-blue-bright);
  font-size: 20px;
  margin-bottom: 20px;
}
.sh-card h3 { font-size: 1.05rem; margin-bottom: 10px; }
.sh-card p { color: var(--sh-muted); font-size: 14px; margin-bottom: 16px; }
.sh-card-link { color: var(--sh-blue-bright); font-weight: 600; font-size: 14px; text-decoration: none; }
.sh-card-link:hover { color: var(--sh-white); }

/* Service link card (clickable) */
a.sh-card { display: block; text-decoration: none !important; color: inherit; }

/* Steps */
.sh-steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 24px; }
.sh-step { text-align: center; padding: 24px 16px; }
.sh-step-num {
  width: 48px; height: 48px;
  background: var(--sh-blue);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 18px;
  margin: 0 auto 16px;
  box-shadow: 0 0 24px var(--sh-blue-glow);
}
.sh-step h4 { font-size: 13px; text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 8px; }
.sh-step p { color: var(--sh-muted); font-size: 14px; }

/* Checklist */
.sh-checklist { list-style: none; padding: 0; margin: 0; }
.sh-checklist li {
  padding: 12px 0 12px 32px;
  position: relative;
  border-bottom: 1px solid var(--sh-border);
  color: var(--sh-text);
  font-size: 15px;
}
.sh-checklist li:last-child { border-bottom: none; }
.sh-checklist li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--sh-blue-bright);
  font-weight: 700;
}
.sh-checklist-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 0 32px;
  background: var(--sh-bg-card);
  border: 1px solid var(--sh-border);
  border-radius: var(--sh-radius);
  padding: 24px 28px;
}

/* Contact box — light compact sidebar mini-form */
.sh-contact-box {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  padding: 14px 15px;
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.06);
}
.sh-contact-box-mini {
  max-width: 100%;
}
.sh-contact-box-lead {
  font-size: 12px;
  line-height: 1.45;
  color: #64748b;
  margin: 0 0 10px;
}
.sh-contact-box .sh-contact-form-quick {
  background: transparent;
  border: none;
  box-shadow: none;
  padding: 0;
  margin: 0;
}
.sh-contact-box .sh-contact-form-quick h3 { display: none; }
.sh-contact-box .sh-quick-fields {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.sh-contact-box .sh-form-control {
  width: 100%;
  padding: 7px 10px;
  border: 1px solid #e2e8f0;
  border-radius: 6px;
  background: #f8fafc;
  color: #0f172a;
  font-size: 13px;
  line-height: 1.35;
  transition: border-color 0.15s, box-shadow 0.15s, background 0.15s;
}
.sh-contact-box .sh-form-control::placeholder { color: #94a3b8; }
.sh-contact-box .sh-form-control:focus {
  outline: none;
  border-color: #93c5fd;
  background: #fff;
  box-shadow: 0 0 0 2px rgba(59, 130, 246, 0.12);
}
.sh-contact-box textarea.sh-form-control {
  min-height: 44px;
  max-height: 88px;
  resize: vertical;
}
.sh-contact-box .sh-quick-submit {
  width: 100%;
  margin-top: 2px;
  padding: 8px 12px;
  font-size: 12px;
  font-weight: 600;
  border-radius: 6px;
  box-shadow: none;
}
.sh-contact-box .sh-form-footnote {
  margin: 4px 0 0;
  font-size: 11px;
  color: #94a3b8;
  text-align: center;
  line-height: 1.35;
}
.sh-contact-box .sh-form-footnote a {
  color: #2563eb;
  text-decoration: none;
}
.sh-contact-box .sh-form-footnote a:hover { text-decoration: underline; }
.sh-contact-box .sh-form-success,
.sh-contact-box .sh-form-success-compact {
  padding: 8px 0 2px;
  text-align: center;
}
.sh-contact-box .sh-form-success-icon { font-size: 24px; color: #16a34a; margin-bottom: 4px; }
.sh-contact-box .sh-form-success h3 { font-size: 1rem; margin-bottom: 4px; color: #0f172a; }
.sh-contact-box .sh-form-success p,
.sh-contact-box .sh-form-success-compact p {
  font-size: 12px;
  color: #64748b;
  margin: 0;
  line-height: 1.4;
}
.sh-contact-box-links {
  margin: 8px 0 0;
  padding-top: 8px;
  border-top: 1px solid #f1f5f9;
  font-size: 11px;
  text-align: center;
  color: #94a3b8;
  line-height: 1.4;
}
.sh-contact-box-links a {
  color: #2563eb;
  text-decoration: none;
}
.sh-contact-box-links a:hover { text-decoration: underline; }
.sh-contact-box-links span { margin: 0 4px; color: #cbd5e1; }
.sh-contact-list { list-style: none; padding: 0; margin: 0 0 14px; }
.sh-contact-list li {
  display: flex;
  gap: 14px;
  padding: 12px 0;
  border-bottom: 1px solid var(--sh-border);
  font-size: 14px;
}
.sh-contact-list li:last-child { border-bottom: none; }
.sh-contact-list strong { display: block; font-size: 11px; text-transform: uppercase; letter-spacing: 0.06em; color: var(--sh-muted); margin-bottom: 2px; }

/* FAQ */
.sh-faq { max-width: 760px; margin: 0 auto; }
.sh-faq-item {
  border: 1px solid var(--sh-border);
  border-radius: var(--sh-radius);
  padding: 24px;
  margin-bottom: 12px;
  background: var(--sh-bg-card);
  transition: border-color 0.2s;
}
.sh-faq-item:hover { border-color: rgba(59,130,246,0.3); }
.sh-faq-item h4 { font-size: 15px; margin-bottom: 10px; color: var(--sh-white); }
.sh-faq-item h4::before { content: 'Q · '; color: var(--sh-blue-bright); }
.sh-faq-item p { color: var(--sh-muted); margin: 0; font-size: 14px; }

/* CTA band */
.sh-cta {
  background: linear-gradient(135deg, #0f2040 0%, #1a3a6e 50%, #0f2040 100%);
  border-top: 1px solid var(--sh-border);
  border-bottom: 1px solid var(--sh-border);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.sh-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(59,130,246,0.15) 0%, transparent 70%);
}
.sh-cta .container { position: relative; z-index: 1; }
.sh-cta h2 { margin-bottom: 16px; }
.sh-cta p { color: var(--sh-muted); max-width: 520px; margin: 0 auto 28px; }

/* Emergency */
.sh-emergency {
  background: #0a0a0f;
  border-top: 1px solid rgba(239,68,68,0.2);
  text-align: center;
}
.sh-emergency h2 { color: #fca5a5; }
.sh-emergency .sh-btn-outline { border-color: rgba(239,68,68,0.4); color: #fca5a5 !important; }
.sh-emergency .sh-btn-outline:hover { background: rgba(239,68,68,0.1); }

/* Clients strip */
.sh-clients { text-align: center; padding: 48px 0; }
.sh-clients-label { font-size: 11px; text-transform: uppercase; letter-spacing: 0.12em; color: var(--sh-muted); margin-bottom: 24px; }
.sh-clients-logos { display: flex; flex-wrap: wrap; justify-content: center; gap: 32px; align-items: center; }
.sh-clients-logos img { max-height: 36px; opacity: 0.4; filter: grayscale(100%) brightness(2); transition: opacity 0.2s; }
.sh-clients-logos img:hover { opacity: 0.8; }

/* Info cards */
.sh-info-card {
  background: var(--sh-bg-card);
  border: 1px solid var(--sh-border);
  border-radius: var(--sh-radius);
  padding: 28px;
  text-align: center;
  height: 100%;
}
.sh-info-card .sh-card-icon { margin: 0 auto 16px; }
.sh-info-card h4 { font-size: 12px; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 10px; }
.sh-info-card p { color: var(--sh-muted); font-size: 14px; margin: 0; }

/* Footer */
.sh-footer {
  background: #040608;
  border-top: 1px solid var(--sh-border);
  padding: 64px 0 0;
}
.sh-footer h6 {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--sh-blue-bright);
  margin-bottom: 20px;
}
.sh-footer p, .sh-footer small { color: var(--sh-muted); font-size: 14px; line-height: 1.7; }
.sh-footer ul { list-style: none; padding: 0; margin: 0; }
.sh-footer ul li { margin-bottom: 8px; }
.sh-footer ul a { color: var(--sh-muted); text-decoration: none; font-size: 14px; }
.sh-footer ul a:hover { color: var(--sh-white); }
.sh-footer-bottom {
  border-top: 1px solid var(--sh-border);
  padding: 24px 0;
  margin-top: 48px;
  text-align: center;
  color: var(--sh-muted);
  font-size: 13px;
}

/* Live chat */
.sh-chat {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 1040;
  background: var(--sh-blue);
  color: #fff;
  padding: 14px 22px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 14px;
  text-decoration: none !important;
  box-shadow: 0 4px 24px var(--sh-blue-glow);
  transition: transform 0.2s, box-shadow 0.2s, opacity 0.2s;
}
.sh-chat:hover { transform: translateY(-2px); box-shadow: 0 8px 32px var(--sh-blue-glow); color: #fff !important; }

/* Contact form dark override */
.httpform-container { color: var(--sh-text) !important; }
.httpform-container input,
.httpform-container textarea,
.httpform-container select {
  background: var(--sh-bg-card) !important;
  border: 1px solid var(--sh-border) !important;
  color: var(--sh-text) !important;
  border-radius: 8px !important;
}
.httpform-container label { color: var(--sh-muted) !important; }
.httpform-container button[type="submit"] {
  background: var(--sh-blue) !important;
  border: none !important;
  border-radius: 8px !important;
}

/* Two col layout */
.sh-two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }

/* Mobile nav */
@media (max-width: 991px) {
  :root { --sh-nav-h: 74px; }
  /* backdrop-filter creates a fixed-position containing block — collapses the mobile overlay */
  .sh-navbar {
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    background: rgba(7, 11, 18, 0.97);
  }
  .sh-logo-mark { height: 36px; }
  .sh-logo-swift,
  .sh-logo-host { font-size: 1.65rem; }
  .sh-logo-tag { font-size: 0.42rem; letter-spacing: 0.28em; }
  .sh-nav-toggle { display: block; z-index: 1070; position: relative; }
  body.sh-nav-open { overflow: hidden; }
  body.sh-nav-open .sh-chat {
    opacity: 0;
    pointer-events: none;
    transform: translateY(12px);
  }
  .sh-navbar .nav-links {
    display: none;
    position: fixed;
    top: var(--sh-nav-h);
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1060;
    background: var(--sh-bg);
    flex-direction: column;
    align-items: stretch;
    padding: 12px 16px calc(24px + env(safe-area-inset-bottom, 0px));
    gap: 6px;
    overflow-x: hidden;
    overflow-y: auto;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
    border-top: 1px solid var(--sh-border);
  }
  .sh-navbar .nav-links.open { display: flex; }
  .sh-navbar .nav-links > li {
    width: 100%;
    flex-shrink: 0;
  }
  .sh-navbar .nav-links > li > a,
  .sh-navbar .nav-links > li > .nav-drop-toggle {
    padding: 14px 16px;
    width: 100%;
    min-height: 44px;
  }
  .nav-dropdown {
    position: relative;
    z-index: 1;
    width: 100%;
  }
  .nav-dropdown.open { z-index: 5; }
  .sh-navbar .nav-drop-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    text-align: left;
    -webkit-tap-highlight-color: transparent;
  }
  .nav-dropdown.open > .nav-drop-toggle i.bi-chevron-down {
    transform: rotate(180deg);
  }
  .sh-navbar .nav-drop-menu,
  .sh-navbar .nav-drop-menu.wide,
  .sh-navbar .nav-drop-menu.wide.catalog-menu,
  .sh-navbar .nav-drop-menu.catalog-menu,
  .nav-dropdown .nav-drop-menu {
    position: relative !important;
    left: auto !important;
    right: auto !important;
    top: auto !important;
    transform: none !important;
    width: 100% !important;
    max-width: none !important;
    min-width: 0 !important;
    box-shadow: none;
    border: 1px solid var(--sh-border);
    background: var(--sh-bg-card);
    margin: 0 0 10px;
    padding: 12px 14px;
    border-radius: 10px;
    display: none;
    z-index: auto !important;
    overflow: visible;
  }
  .nav-dropdown.open > .nav-drop-menu {
    display: block !important;
  }
  .nav-drop-menu.wide { min-width: 0; padding: 12px 14px; }
  .nav-drop-menu.catalog-menu .catalog-cols {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .nav-drop-menu.wide .row {
    margin: 0;
    gap: 12px;
  }
  .nav-drop-menu.wide .row > [class*="col-"] {
    width: 100%;
    max-width: 100%;
    flex: 0 0 100%;
  }
  .sh-nav-catalog-top { grid-template-columns: 1fr; gap: 10px; }
  .sh-nav-catalog-hub { max-width: none; }
  .sh-two-col { grid-template-columns: 1fr; }
  .sh-hero { min-height: 70vh; }
  .sh-section { padding: 64px 0; }
  .sh-stats-band-float {
    margin-top: -48px;
    margin-bottom: -24px;
  }
}

/* ── Light page (Contact Us) ── */
body.sh-page-light {
  background: #ffffff;
  color: #334155;
  padding-top: var(--sh-nav-h);
}
body.sh-page-light .sh-navbar {
  background: #070b12;
}
body.sh-page-light .sh-navbar.scrolled {
  background: #070b12;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.4);
}
body.sh-page-light .sh-section-light h2,
body.sh-page-light .sh-section-light h3,
body.sh-page-light .sh-section-light h4,
body.sh-page-light .sh-section-light h5,
body.sh-page-light .sh-section-light h6,
body.sh-page-light .sh-section-header-light h2,
body.sh-page-light .sh-faq-light h4,
body.sh-page-light .sh-contact-sidebar-light h4,
body.sh-page-light .sh-contact-steps-light h5 {
  color: #0f172a;
}
body.sh-page-light .sh-section-light a:not(.sh-btn) {
  color: #2563eb;
}
body.sh-page-light .sh-section-light a:not(.sh-btn):hover {
  color: #1d4ed8;
}
body.sh-page-light .sh-section-light {
  padding: 72px 0;
  background: #ffffff;
}
body.sh-page-light .sh-section-light.sh-section-form {
  background: #f8fafc;
  border-top: 1px solid #e2e8f0;
  border-bottom: 1px solid #e2e8f0;
}
body.sh-page-light .sh-section-light p {
  color: #475569;
  line-height: 1.75;
}
body.sh-page-light .sh-section-header-light {
  text-align: center;
  margin-bottom: 40px;
}
body.sh-page-light .sh-section-header-light p {
  color: #64748b;
  max-width: 560px;
  margin: 12px auto 0;
}
body.sh-page-light .sh-checklist-light li {
  color: #475569;
}
body.sh-page-light .sh-checklist-light li::before {
  color: #2563eb;
}
body.sh-page-light .sh-contact-sidebar-light {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: var(--sh-radius);
  padding: 28px;
}
body.sh-page-light .sh-contact-sidebar-light h4 {
  margin-bottom: 20px;
  font-size: 1rem;
}
body.sh-page-light .sh-contact-list-light {
  list-style: none;
  padding: 0;
  margin: 0;
}
body.sh-page-light .sh-contact-list-light li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  margin-bottom: 18px;
  color: #475569;
  font-size: 14px;
}
body.sh-page-light .sh-contact-list-light i {
  color: #2563eb;
  font-size: 18px;
  margin-top: 2px;
}
body.sh-page-light .sh-contact-list-light strong {
  display: block;
  color: #0f172a;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 2px;
}
body.sh-page-light .sh-contact-steps-light {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: var(--sh-radius);
  padding: 24px;
}
body.sh-page-light .sh-contact-steps-light h5 {
  font-size: 0.95rem;
  margin-bottom: 16px;
}
body.sh-page-light .sh-contact-steps-light ol {
  padding-left: 20px;
  margin: 0;
  color: #475569;
  font-size: 14px;
}
body.sh-page-light .sh-contact-steps-light li {
  margin-bottom: 12px;
  line-height: 1.6;
}
body.sh-page-light .sh-info-card-light {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: var(--sh-radius);
  padding: 28px;
  text-align: center;
  height: 100%;
  box-shadow: 0 2px 12px rgba(15, 23, 42, 0.04);
}
body.sh-page-light .sh-info-card-light h4 {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #0f172a;
  margin-bottom: 10px;
}
body.sh-page-light .sh-info-card-light p {
  color: #64748b;
  font-size: 14px;
  margin: 0;
}
body.sh-page-light .sh-card-icon-light {
  background: #eff6ff;
  color: #2563eb;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 16px;
}
body.sh-page-light .sh-form-wrap {
  background: transparent;
}
.sh-contact-form-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 32px;
  box-shadow: 0 4px 24px rgba(15, 23, 42, 0.06);
}
.sh-contact-form-card h3 {
  color: #0f172a;
  margin-bottom: 8px;
}
.sh-contact-form-sub {
  color: #64748b;
  margin-bottom: 24px;
  font-size: 15px;
}
.sh-form-label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: #334155;
  margin-bottom: 6px;
}
.sh-form-control {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid #cbd5e1;
  border-radius: 8px;
  background: #f8fafc;
  color: #0f172a;
  font-size: 15px;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.sh-form-control:focus {
  outline: none;
  border-color: #2563eb;
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.15);
  background: #fff;
}
.sh-hp {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}
.sh-form-alert-error {
  background: #fef2f2;
  border: 1px solid #fecaca;
  color: #b91c1c;
  padding: 12px 16px;
  border-radius: 8px;
  margin-bottom: 16px;
  font-size: 14px;
}
.sh-form-success {
  text-align: center;
  padding: 40px 20px;
}
.sh-form-success-icon {
  font-size: 56px;
  color: #16a34a;
  margin-bottom: 16px;
}
.sh-form-success h3 {
  color: #0f172a;
  margin-bottom: 8px;
}
.sh-form-success p {
  color: #64748b;
  margin: 0;
}
body.sh-page-light .sh-faq-light .sh-faq-item {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: var(--sh-radius);
  padding: 24px 28px;
  margin-bottom: 12px;
}
body.sh-page-light .sh-faq-light .sh-faq-item h4 {
  font-size: 1rem;
  margin-bottom: 8px;
}
body.sh-page-light .sh-faq-light .sh-faq-item p {
  margin: 0;
  font-size: 14px;
}
body.sh-page-light .sh-btn-outline-light {
  display: inline-block;
  padding: 12px 20px;
  border: 1px solid #cbd5e1;
  border-radius: 8px;
  color: #334155 !important;
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  transition: background 0.2s, border-color 0.2s;
}
body.sh-page-light .sh-btn-outline-light:hover {
  background: #f1f5f9;
  border-color: #94a3b8;
  color: #0f172a !important;
}
body.sh-page-light .sh-footer {
  background: #f8fafc;
  border-top: 1px solid #e2e8f0;
}
body.sh-page-light .sh-footer h6 {
  color: #2563eb;
}
body.sh-page-light .sh-footer p,
body.sh-page-light .sh-footer small,
body.sh-page-light .sh-footer ul a {
  color: #64748b;
}
body.sh-page-light .sh-footer ul a:hover {
  color: #0f172a;
}
body.sh-page-light .sh-footer-bottom {
  border-top: 1px solid #e2e8f0;
  color: #94a3b8;
}
body.sh-page-light .sh-chat {
  box-shadow: 0 4px 20px rgba(37, 99, 235, 0.3);
}
@media (max-width: 991px) {
  body.sh-page-light .sh-navbar .nav-links {
    background: var(--sh-bg);
  }
}

/* ── Homepage & site-wide corporate layout ── */
.sh-corp-light,
.sh-home-light {
  background: #ffffff;
  color: #334155;
  padding: 80px 0;
}
.sh-corp-muted,
.sh-home-muted {
  background: #f8fafc;
  color: #334155;
  padding: 80px 0;
  border-top: 1px solid #e2e8f0;
  border-bottom: 1px solid #e2e8f0;
}
.sh-corp-light h2,
.sh-corp-light h3,
.sh-corp-light h4,
.sh-home-light h2,
.sh-home-light h3,
.sh-home-light h4 {
  color: #0f172a;
}
.sh-corp-light p,
.sh-home-light p {
  color: #475569;
}
.sh-corp-light .text-muted,
.sh-home-light .text-muted {
  color: #64748b !important;
}
.sh-corp-note {
  color: #64748b;
  font-size: 14px;
  line-height: 1.65;
}

/* Dark stats band (homepage + inner pages) */
.sh-stats-band {
  position: relative;
  z-index: 4;
  padding: 0;
}
.sh-stats-band-float {
  margin-top: -72px;
  margin-bottom: -36px;
}
.sh-stats-dark {
  background: var(--sh-bg-card);
  border: 1px solid var(--sh-border);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
}
.sh-stats-dark .sh-stat {
  background: var(--sh-bg-card);
}
.sh-stats-dark .sh-stat strong {
  color: var(--sh-blue-bright);
}
.sh-stats-dark .sh-stat span {
  color: var(--sh-muted);
}

.sh-home-light.sh-catalog-home {
  padding-top: 56px;
  padding-bottom: 88px;
  margin-top: 0;
  position: relative;
  z-index: 2;
  border-radius: 20px 20px 0 0;
  box-shadow: 0 -12px 48px rgba(0, 0, 0, 0.18);
}

/* Corporate pricing cards on light sections */
.sh-pricing-card-corp,
.sh-corp-light .sh-pricing-card,
.sh-corp-muted .sh-pricing-card {
  background: #ffffff;
  border-color: #e2e8f0;
  box-shadow: 0 4px 20px rgba(15, 23, 42, 0.05);
}
.sh-pricing-card-corp:hover,
.sh-corp-light .sh-pricing-card:hover,
.sh-corp-muted .sh-pricing-card:hover {
  border-color: #93c5fd;
  box-shadow: 0 8px 28px rgba(15, 23, 42, 0.08);
}
.sh-pricing-card-corp .sh-price-amount,
.sh-corp-light .sh-price-amount,
.sh-corp-muted .sh-price-amount {
  color: #0f172a;
}
.sh-pricing-card-corp .sh-price-currency,
.sh-pricing-card-corp .sh-price-note,
.sh-corp-light .sh-price-currency,
.sh-corp-light .sh-price-note,
.sh-corp-muted .sh-price-currency,
.sh-corp-muted .sh-price-note {
  color: #64748b;
}
.sh-pricing-card-corp .sh-pricing-specs,
.sh-corp-light .sh-pricing-specs,
.sh-corp-muted .sh-pricing-specs {
  border-color: #e2e8f0;
}
.sh-pricing-card-corp .sh-pricing-specs li,
.sh-corp-light .sh-pricing-specs li,
.sh-corp-muted .sh-pricing-specs li {
  color: #334155;
}
.sh-pricing-card-corp .sh-pricing-features li,
.sh-corp-light .sh-pricing-features li,
.sh-corp-muted .sh-pricing-features li {
  color: #64748b;
}

/* Spec cards on light sections */
.sh-spec-card-light {
  background: #ffffff;
  border: 1px solid #e2e8f0;
}
.sh-spec-card-light h3 {
  color: #0f172a;
}
.sh-spec-card-light li,
.sh-spec-card-light .sh-spec-best {
  color: #64748b;
}

/* Related links on light sections */
.sh-related-links-light a {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  color: #334155;
}
.sh-related-links-light a:hover {
  border-color: #93c5fd;
  color: #0f172a;
  background: #ffffff;
}

/* Catalog blocks on light hub page */
.sh-corp-light .sh-catalog-category-block,
.sh-corp-muted .sh-catalog-category-block {
  background: #ffffff;
  border-color: #e2e8f0;
}
.sh-corp-light .sh-catalog-category-head,
.sh-corp-muted .sh-catalog-category-head {
  border-color: #e2e8f0;
}
.sh-corp-light .sh-catalog-category-head h3 a,
.sh-corp-muted .sh-catalog-category-head h3 a {
  color: #0f172a;
}
.sh-corp-light .sh-catalog-group-tag,
.sh-corp-muted .sh-catalog-group-tag {
  color: #64748b !important;
}
.sh-corp-light .sh-catalog-pillar-title i,
.sh-corp-muted .sh-catalog-pillar-title i {
  color: #2563eb;
}

.sh-corp-light .sh-badge,
.sh-home-light .sh-badge {
  background: rgba(37, 99, 235, 0.08);
  color: #2563eb;
  border: 1px solid rgba(37, 99, 235, 0.12);
}
.sh-corp-light .sh-catalog-home-header h2,
.sh-home-light .sh-catalog-home-header h2 {
  color: #0f172a;
}
.sh-corp-light .sh-ovh-pillar,
.sh-home-light .sh-ovh-pillar {
  background: #f8fafc;
  border-color: #e2e8f0;
}
.sh-corp-light .sh-ovh-pillar-head h3,
.sh-home-light .sh-ovh-pillar-head h3 {
  color: #0f172a;
}
.sh-corp-light .sh-ovh-pillar-summary,
.sh-home-light .sh-ovh-pillar-summary {
  color: #64748b;
}
.sh-corp-light .sh-ovh-pillar-links li,
.sh-home-light .sh-ovh-pillar-links li {
  border-color: #e2e8f0;
}
.sh-corp-light .sh-ovh-pillar-links a,
.sh-home-light .sh-ovh-pillar-links a {
  color: #334155;
}
.sh-corp-light .sh-featured-plans-wrap,
.sh-home-light .sh-featured-plans-wrap {
  border-color: #e2e8f0;
}
.sh-corp-light .sh-featured-plans-head h3,
.sh-home-light .sh-featured-plans-head h3 {
  color: #0f172a;
}
.sh-corp-light .sh-featured-plans-head a,
.sh-home-light .sh-featured-plans-head a {
  color: #2563eb;
}
.sh-corp-light .sh-featured-plan,
.sh-home-light .sh-featured-plan {
  background: #ffffff;
  border-color: #e2e8f0;
}
.sh-corp-light .sh-featured-plan:hover,
.sh-home-light .sh-featured-plan:hover {
  border-color: #93c5fd;
  color: inherit;
}
.sh-corp-light .sh-featured-plan strong,
.sh-home-light .sh-featured-plan strong {
  color: #0f172a;
}
.sh-corp-light .sh-featured-spec,
.sh-home-light .sh-featured-spec {
  color: #64748b;
}
.sh-corp-light .sh-featured-price,
.sh-home-light .sh-featured-price {
  color: #0f172a;
}
.sh-corp-light .sh-ovh-pillar-links a:hover,
.sh-home-light .sh-ovh-pillar-links a:hover {
  color: #0f172a;
}
.sh-corp-muted .sh-clients-label,
.sh-home-muted .sh-clients-label {
  color: #64748b;
}
.sh-corp-muted .sh-clients-logos img,
.sh-home-muted .sh-clients-logos img {
  opacity: 0.5;
  filter: grayscale(100%);
}
.sh-corp-muted .sh-clients-logos img:hover,
.sh-home-muted .sh-clients-logos img:hover {
  opacity: 0.85;
}
.sh-corp-light .sh-btn-outline,
.sh-home-light .sh-btn-outline {
  color: #334155 !important;
  border-color: #cbd5e1;
}
.sh-corp-light .sh-btn-outline:hover,
.sh-home-light .sh-btn-outline:hover {
  background: #f8fafc;
  color: #0f172a !important;
  border-color: #94a3b8;
}

.sh-corp-light.sh-clients,
.sh-home-muted.sh-clients {
  padding: 56px 0;
}
.sh-corp-light.sh-clients .sh-clients-logos img {
  opacity: 0.45;
  filter: grayscale(100%);
}

/* ── Shared corporate UI components ── */
.sh-eyebrow {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--sh-blue-bright);
  margin-bottom: 12px;
}
.sh-eyebrow-light {
  color: #2563eb;
}
.sh-hero-home .sh-hero-content-wide {
  max-width: 1280px;
}
.sh-hero-home h1 {
  max-width: 920px;
  font-size: clamp(2.4rem, 4.8vw, 4.2rem);
}
.sh-hero-home .lead {
  max-width: 720px;
  font-size: clamp(1.05rem, 1.6vw, 1.25rem);
  line-height: 1.65;
}
.sh-hero-home .sh-hero-trust {
  max-width: 920px;
}
@media (prefers-reduced-motion: reduce) {
  .sh-hero-slide {
    animation: none;
    opacity: 0;
    transform: none;
  }
  .sh-hero-slide:first-child {
    opacity: 1;
  }
}
.sh-hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 28px;
  list-style: none;
  padding: 28px 0 0;
  margin: 36px 0 0;
  border-top: 1px solid var(--sh-border);
}
.sh-hero-trust li {
  font-size: 14px;
  color: var(--sh-muted);
  display: flex;
  align-items: center;
  gap: 8px;
}
.sh-hero-trust i {
  color: var(--sh-blue-bright);
}
.sh-section-header-light {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 48px;
}
.sh-section-header-light h2 {
  color: #0f172a;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  margin-bottom: 12px;
}
.sh-section-header-light p {
  color: #64748b;
  font-size: 1.05rem;
  margin: 0 auto;
}
.sh-grid-light {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}
.sh-card-light {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: var(--sh-radius);
  padding: 28px;
  text-decoration: none;
  color: inherit;
  display: block;
  height: 100%;
  transition: border-color 0.25s, transform 0.25s, box-shadow 0.25s;
}
a.sh-card-light {
  text-decoration: none !important;
  color: inherit;
}
.sh-card-light:hover {
  border-color: #93c5fd;
  transform: translateY(-3px);
  box-shadow: 0 12px 36px rgba(15, 23, 42, 0.08);
  color: inherit;
}
.sh-card-light h3 {
  font-size: 1.05rem;
  margin-bottom: 8px;
  color: #0f172a;
}
.sh-card-light p {
  color: #64748b;
  font-size: 14px;
  margin-bottom: 14px;
  line-height: 1.6;
}
.sh-card-link-light {
  color: #2563eb;
  font-weight: 600;
  font-size: 14px;
}
.sh-card-icon-light {
  width: 48px;
  height: 48px;
  background: rgba(37, 99, 235, 0.08);
  border: 1px solid rgba(37, 99, 235, 0.15);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #2563eb;
  font-size: 20px;
  margin-bottom: 18px;
}
.sh-steps-light {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.sh-step-light {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: var(--sh-radius);
  padding: 24px 20px;
  text-align: center;
}
.sh-step-light .sh-step-num {
  background: #2563eb;
  color: #fff;
}
.sh-step-light h4 {
  color: #0f172a;
  font-size: 0.95rem;
  margin: 12px 0 8px;
}
.sh-step-light p {
  color: #64748b;
  font-size: 13px;
  margin: 0;
  line-height: 1.5;
}
.sh-checklist-light li {
  color: #475569;
}
.sh-checklist-light li::before {
  color: #2563eb;
}
.sh-corp-light .sh-checklist-light li,
.sh-corp-muted .sh-checklist-light li,
.sh-home-light .sh-checklist-light li {
  border-bottom-color: #e2e8f0;
}
.sh-checklist-compact li {
  padding: 8px 0 8px 24px;
  font-size: 14px;
  line-height: 1.45;
}
.sh-promise-card {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 20px 22px;
  border-top: 3px solid #2563eb;
  box-shadow: 0 4px 16px rgba(15, 23, 42, 0.05);
}
.sh-promise-card h4 {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: #2563eb;
  margin: 0 0 10px;
}
.sh-promise-card .sh-checklist-compact li:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
.sh-promise-card .sh-checklist-compact li:first-child {
  padding-top: 0;
}
.sh-home-genesis-card {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: var(--sh-radius);
  padding: 28px;
  height: 100%;
}
.sh-home-genesis-card h3 {
  margin-bottom: 10px;
}
.sh-home-genesis-card p {
  color: #64748b;
  font-size: 14px;
  margin-bottom: 20px;
}
.sh-home-intro-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 24px;
}
.sh-home-intro .sh-eyebrow {
  display: block;
}
.sh-faq-light {
  max-width: 760px;
  margin: 0 auto;
}
.sh-faq-light .sh-faq-item {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: var(--sh-radius);
  padding: 22px 26px;
  margin-bottom: 12px;
  transition: border-color 0.2s;
}
.sh-faq-light .sh-faq-item:hover {
  border-color: #93c5fd;
}
.sh-faq-light .sh-faq-item h4 {
  color: #0f172a;
  font-size: 15px;
  margin-bottom: 8px;
}
.sh-faq-light .sh-faq-item h4::before {
  color: #2563eb;
}
.sh-faq-light .sh-faq-item p {
  color: #64748b;
  margin: 0;
  font-size: 14px;
  line-height: 1.65;
}
.sh-faq-light .sh-faq-item a {
  color: #2563eb;
}
.sh-btn-outline-light {
  background: transparent;
  color: #334155 !important;
  border: 1px solid #cbd5e1;
}
.sh-btn-outline-light:hover {
  background: #f8fafc;
  color: #0f172a !important;
  border-color: #94a3b8;
}
@media (max-width: 991px) {
  .sh-stats-band-float {
    margin-top: -48px;
    margin-bottom: -24px;
  }
  .sh-steps-light {
    grid-template-columns: repeat(2, 1fr);
  }
  .sh-home-light.sh-catalog-home {
    margin-top: 0;
    border-radius: 0;
    padding-top: 48px;
  }
}
@media (max-width: 575px) {
  .sh-steps-light {
    grid-template-columns: 1fr;
  }
  .sh-hero-trust {
    flex-direction: column;
    gap: 10px;
  }
}

/* ── Cloud catalog pricing ── */
.sh-pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}
.sh-pricing-card {
  background: var(--sh-bg-card);
  border: 1px solid var(--sh-border);
  border-radius: var(--sh-radius);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
}
.sh-pricing-card:hover {
  border-color: rgba(59,130,246,0.35);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.25);
}
.sh-pricing-header h3 {
  font-size: 1.15rem;
  margin-bottom: 12px;
}
.sh-pricing-price {
  margin-bottom: 20px;
  line-height: 1.2;
}
.sh-price-currency {
  font-size: 0.85rem;
  color: var(--sh-muted);
  vertical-align: super;
}
.sh-price-amount {
  font-size: 2rem;
  font-weight: 800;
  color: var(--sh-white);
  letter-spacing: -0.03em;
}
.sh-price-amount.sh-price-free {
  font-size: 1.5rem;
  color: var(--sh-blue-bright);
}
.sh-price-note {
  display: block;
  font-size: 0.8rem;
  color: var(--sh-muted);
  margin-top: 4px;
}
.sh-pricing-specs {
  list-style: none;
  padding: 0;
  margin: 0 0 16px;
  border-bottom: 1px solid var(--sh-border);
  padding-bottom: 16px;
}
.sh-pricing-specs li {
  font-size: 0.9rem;
  color: var(--sh-text);
  padding: 4px 0;
}
.sh-pricing-specs li::before {
  content: "•";
  color: var(--sh-blue);
  margin-right: 8px;
}
.sh-pricing-features {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
  flex-grow: 1;
}
.sh-pricing-features li {
  font-size: 0.85rem;
  color: var(--sh-muted);
  padding: 3px 0;
  display: flex;
  align-items: flex-start;
  gap: 8px;
}
.sh-pricing-features li i {
  color: var(--sh-blue-bright);
  flex-shrink: 0;
  margin-top: 2px;
}
.sh-pricing-cta {
  width: 100%;
  text-align: center;
  margin-top: 16px;
  padding: 11px 16px;
  justify-content: center;
}
.sh-catalog-card p {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.nav-drop-menu.wide.catalog-menu {
  display: none;
}
@media (min-width: 992px) {
  .nav-drop-menu.wide.catalog-menu {
    display: none;
    position: fixed;
    left: 50%;
    right: auto;
    top: var(--sh-nav-h);
    transform: translateX(-50%);
    width: min(920px, calc(100vw - 32px));
    max-width: 920px;
    min-width: 0;
    padding: 24px 28px;
    z-index: 1100;
    background: var(--sh-bg-elevated);
    border: 1px solid var(--sh-border);
    border-radius: var(--sh-radius);
    box-shadow: 0 16px 48px rgba(0,0,0,0.5);
  }
  .nav-dropdown.open .nav-drop-menu.wide.catalog-menu { display: block; }
}
.nav-drop-menu.catalog-menu .catalog-cols {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.sh-nav-catalog-top {
  border-bottom: 1px solid var(--sh-border);
  margin-bottom: 20px;
  padding-bottom: 16px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}
.sh-nav-catalog-hub {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--sh-blue-bright);
  font-size: 14px;
  padding: 14px 16px;
  border: 1px solid var(--sh-border);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.02);
  transition: border-color 0.2s, background 0.2s;
}
.sh-nav-catalog-hub:hover {
  color: var(--sh-white);
  border-color: rgba(59, 130, 246, 0.35);
  background: rgba(59, 130, 246, 0.08);
}
.sh-nav-catalog-hub i { font-size: 1.25rem; }
.sh-nav-catalog-hub strong { display: block; color: var(--sh-white); font-size: 15px; }
.sh-nav-catalog-hub small { display: block; color: var(--sh-muted); font-size: 12px; font-weight: 400; }
.sh-nav-pillar h6 {
  display: flex;
  align-items: center;
  gap: 8px;
}
.sh-nav-pillar h6 i { color: var(--sh-blue-bright); font-size: 14px; }
.nav-drop-menu ul li a .nav-price {
  display: block;
  font-size: 11px;
  color: var(--sh-muted);
  margin-top: 2px;
}
.nav-drop-menu ul li a {
  line-height: 1.35;
  padding: 8px 0;
}

/* Homepage OVH-style catalog */
.sh-catalog-home-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}
.sh-catalog-home-actions {
  display: flex;
  gap: 12px 16px;
  flex-wrap: wrap;
  align-items: center;
}
.sh-catalog-home-header h2 { margin: 12px 0 8px; }
.sh-ovh-pillars {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}
.sh-ovh-pillar {
  background: var(--sh-bg-card);
  border: 1px solid var(--sh-border);
  border-radius: var(--sh-radius);
  padding: 22px 20px;
  height: 100%;
}
.sh-ovh-pillar-head {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}
.sh-ovh-pillar-head i {
  font-size: 1.35rem;
  color: var(--sh-blue-bright);
}
.sh-ovh-pillar-head h3 {
  font-size: 1rem;
  margin: 0;
}
.sh-ovh-pillar-summary {
  font-size: 0.82rem;
  color: var(--sh-muted);
  margin-bottom: 14px;
  line-height: 1.5;
}
.sh-ovh-pillar-links {
  list-style: none;
  padding: 0;
  margin: 0;
}
.sh-ovh-pillar-links li { border-top: 1px solid var(--sh-border); }
.sh-ovh-pillar-links a {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
  padding: 10px 0;
  text-decoration: none;
  color: var(--sh-text);
  font-size: 0.88rem;
}
.sh-ovh-pillar-links a:hover { color: var(--sh-white); }
.sh-ovh-link-label { flex: 1; }
.sh-ovh-link-price {
  font-size: 0.75rem;
  color: var(--sh-muted);
  white-space: nowrap;
}
.sh-featured-plans-wrap {
  border-top: 1px solid var(--sh-border);
  padding-top: 28px;
}
.sh-featured-plans-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
  gap: 16px;
}
.sh-featured-plans-head h3 { margin: 0; font-size: 1.1rem; }
.sh-featured-plans-head a { font-size: 0.9rem; }
.sh-featured-plans {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 14px;
}
.sh-featured-plan {
  background: var(--sh-bg-elevated);
  border: 1px solid var(--sh-border);
  border-radius: var(--sh-radius);
  padding: 16px 14px;
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  gap: 6px;
  transition: border-color 0.2s, transform 0.2s;
}
.sh-featured-plan:hover {
  border-color: rgba(59,130,246,0.4);
  transform: translateY(-2px);
  color: inherit;
}
.sh-featured-tag {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--sh-blue-bright);
}
.sh-featured-plan strong {
  font-size: 0.95rem;
  color: var(--sh-white);
}
.sh-featured-spec {
  font-size: 0.75rem;
  color: var(--sh-muted);
  line-height: 1.4;
  flex-grow: 1;
}
.sh-featured-price {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--sh-white);
}
.sh-featured-price small {
  font-size: 0.7rem;
  font-weight: 400;
  color: var(--sh-muted);
}

/* Catalog hub pillar layout */
.sh-catalog-pillar-header { margin-bottom: 28px; }
.sh-catalog-pillar-title {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.sh-catalog-pillar-title i {
  font-size: 2rem;
  color: var(--sh-blue-bright);
  margin-top: 4px;
}
.sh-catalog-pillar-title h2 { margin-bottom: 6px; }
.sh-catalog-category-block {
  border: 1px solid var(--sh-border);
  border-radius: var(--sh-radius);
  padding: 24px;
  margin-bottom: 24px;
  background: rgba(255,255,255,0.02);
}
.sh-catalog-category-head {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px 20px;
  margin-bottom: 24px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--sh-border);
}
.sh-catalog-category-head h3 { margin: 0; font-size: 1.25rem; flex: 1 1 auto; min-width: 180px; }
.sh-catalog-category-head h3 a { color: var(--sh-white); text-decoration: none; }
.sh-catalog-category-head h3 a:hover { color: var(--sh-blue-bright); }
.sh-catalog-from {
  font-size: 0.85rem;
  color: var(--sh-blue-bright);
  background: rgba(59,130,246,0.1);
  padding: 6px 12px;
  border-radius: 999px;
  white-space: nowrap;
}
.sh-catalog-view-all {
  margin-left: auto;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  border: 1px solid rgba(148, 163, 184, 0.35);
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--sh-blue-bright) !important;
  text-decoration: none !important;
  white-space: nowrap;
  transition: border-color 0.2s, background 0.2s;
}
.sh-catalog-view-all:hover {
  border-color: rgba(59, 130, 246, 0.45);
  background: rgba(59, 130, 246, 0.08);
  color: var(--sh-white) !important;
}
.sh-corp-light .sh-catalog-view-all,
.sh-corp-muted .sh-catalog-view-all {
  border-color: #cbd5e1;
  color: #2563eb !important;
  background: #fff;
}
.sh-corp-light .sh-catalog-view-all:hover,
.sh-corp-muted .sh-catalog-view-all:hover {
  border-color: #93c5fd;
  background: #f8fafc;
  color: #1d4ed8 !important;
}
.sh-catalog-group { margin-bottom: 24px; }
.sh-catalog-group:last-child { margin-bottom: 0; }
.sh-catalog-group h4 { font-size: 1rem; margin-bottom: 4px; }
.sh-catalog-group-tag { font-size: 0.85rem; margin-bottom: 16px; }
.sh-pricing-grid-compact {
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 16px;
}
.sh-pricing-card-compact { padding: 20px 16px 22px; }
.sh-pricing-card-compact .sh-pricing-header h3 { font-size: 1rem; margin-bottom: 8px; }
.sh-pricing-card-compact .sh-price-amount { font-size: 1.5rem; }
.sh-pricing-card-compact .sh-pricing-price { margin-bottom: 14px; }
.sh-pricing-card-compact .sh-pricing-specs {
  margin-bottom: 12px;
  padding-bottom: 12px;
}
.sh-pricing-card-compact .sh-pricing-cta {
  margin-top: 4px;
  padding: 10px 14px;
  font-size: 13px;
}

@media (max-width: 1199px) {
  .sh-ovh-pillars { grid-template-columns: repeat(2, 1fr); }
  .sh-featured-plans { grid-template-columns: repeat(3, 1fr); }
  .nav-drop-menu.catalog-menu .catalog-cols { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 767px) {
  .sh-ovh-pillars { grid-template-columns: 1fr; }
  .sh-featured-plans { grid-template-columns: repeat(2, 1fr); }
  .sh-catalog-category-head { flex-direction: column; align-items: flex-start; gap: 12px; }
  .sh-catalog-view-all { margin-left: 0; width: 100%; justify-content: center; }
  .sh-nav-catalog-top { grid-template-columns: 1fr; }
}

/* ── Order form ── */
.sh-page-hero-compact { padding-bottom: 32px; }
.sh-order-section-wrap { padding-top: 0; margin-top: -24px; position: relative; z-index: 2; }
.sh-order-layout {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 32px;
  align-items: start;
}
.sh-order-summary {
  position: sticky;
  top: calc(var(--sh-nav-h) + 24px);
}
.sh-order-summary-inner {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 8px 32px rgba(15, 23, 42, 0.08);
}
.sh-order-summary-inner h3 {
  color: #0f172a;
  font-size: 1.1rem;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.sh-order-summary-inner h3 i { color: #2563eb; }
.sh-order-summary-empty {
  font-size: 14px;
  color: #64748b;
  line-height: 1.5;
}
.sh-order-summary-details {
  margin: 0 0 16px;
  font-size: 14px;
}
.sh-order-summary-details > div {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 8px 0;
  border-bottom: 1px solid #f1f5f9;
}
.sh-order-summary-details dt {
  color: #64748b;
  font-weight: 500;
  margin: 0;
}
.sh-order-summary-details dd {
  color: #0f172a;
  font-weight: 600;
  margin: 0;
  text-align: right;
}
.sh-order-summary-addons dd { max-width: 160px; font-size: 12px; font-weight: 500; }
.sh-order-summary-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 0 0;
  border-top: 2px solid #e2e8f0;
  margin-top: 8px;
}
.sh-order-summary-total span { color: #64748b; font-size: 14px; }
.sh-order-summary-total strong { color: #0f172a; font-size: 1.15rem; }
.sh-order-summary-note {
  font-size: 12px;
  color: #94a3b8;
  margin: 16px 0 0;
  line-height: 1.5;
}
.sh-order-form-wrap {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 32px;
  box-shadow: 0 4px 24px rgba(15, 23, 42, 0.06);
}
.sh-order-section {
  border: none;
  margin: 0 0 32px;
  padding: 0 0 32px;
  border-bottom: 1px solid #e2e8f0;
}
.sh-order-section:last-of-type { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
.sh-order-section legend {
  font-size: 1.05rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
}
.sh-order-step {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 999px;
  background: #2563eb;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  flex-shrink: 0;
}
.sh-order-optional {
  font-size: 12px;
  font-weight: 500;
  color: #94a3b8;
  text-transform: none;
}
.sh-order-checkgrid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}
.sh-order-check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 12px 14px;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  cursor: pointer;
  font-size: 14px;
  color: #334155;
  transition: border-color 0.2s, background 0.2s;
}
.sh-order-check:hover { border-color: #93c5fd; background: #f8fafc; }
.sh-order-check input { margin-top: 3px; accent-color: #2563eb; }
.sh-order-check input:checked + span { color: #0f172a; font-weight: 600; }
.sh-order-agree {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: #475569;
  cursor: pointer;
}
.sh-order-agree input { margin-top: 4px; accent-color: #2563eb; }
.sh-order-plan-specs {
  background: #f0f9ff;
  border: 1px solid #bae6fd;
  border-radius: 8px;
  padding: 12px 16px;
  font-size: 14px;
  color: #0c4a6e;
}
.sh-order-submit {
  padding: 14px 28px;
  font-size: 16px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.sh-order-success .sh-order-success-ref {
  font-size: 14px;
  color: #64748b;
  margin-top: 12px;
}
.sh-steps-inline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.sh-nav-catalog-order { color: #16a34a !important; }
.sh-nav-catalog-order strong { color: #16a34a; }
@media (max-width: 991px) {
  .sh-order-layout { grid-template-columns: 1fr; }
  .sh-order-summary { position: static; order: -1; }
  .sh-order-checkgrid { grid-template-columns: 1fr; }
  .sh-steps-inline { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 575px) {
  .sh-steps-inline { grid-template-columns: 1fr; }
  .sh-order-form-wrap { padding: 20px 16px; }
}

/* ── Blog ── */
.sh-page-blog .sh-page-hero-compact { padding-bottom: 40px; }
.sh-breadcrumb-light {
  background: #fff;
  border-bottom: 1px solid #e2e8f0;
}
.sh-breadcrumb-light ol li,
.sh-breadcrumb-light ol li a {
  color: #64748b;
}
.sh-breadcrumb-light ol li a:hover { color: #2563eb; }
.sh-blog-archive { padding-top: 56px; padding-bottom: 72px; }
.sh-blog-toolbar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px 24px;
  margin-bottom: 32px;
}
.sh-blog-toolbar-count {
  font-size: 14px;
  color: #64748b;
}
.sh-blog-toolbar-count strong { color: #0f172a; }
.sh-blog-clear-filter {
  margin-left: 12px;
  font-size: 13px;
  color: #2563eb;
  text-decoration: none;
}
.sh-blog-clear-filter:hover { text-decoration: underline; }
.sh-blog-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.sh-blog-filter {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 12px;
  border: 1px solid #e2e8f0;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 500;
  color: #475569;
  text-decoration: none;
  background: #fff;
  transition: border-color 0.2s, color 0.2s, background 0.2s;
}
.sh-blog-filter span {
  font-size: 11px;
  color: #94a3b8;
  background: #f1f5f9;
  padding: 1px 6px;
  border-radius: 999px;
}
.sh-blog-filter:hover,
.sh-blog-filter.is-active {
  border-color: #93c5fd;
  color: #1d4ed8;
  background: #eff6ff;
}
.sh-blog-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}
.sh-blog-grid-compact { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.sh-blog-card {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
}
.sh-blog-card:hover {
  border-color: #93c5fd;
  box-shadow: 0 12px 32px rgba(15, 23, 42, 0.08);
  transform: translateY(-2px);
}
.sh-blog-card-image {
  display: block;
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
}
.sh-blog-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s;
}
.sh-blog-card:hover .sh-blog-card-image img { transform: scale(1.04); }
.sh-blog-card-category {
  position: absolute;
  left: 12px;
  bottom: 12px;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.78);
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}
.sh-blog-card-body {
  padding: 18px 18px 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.sh-blog-card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 12px;
  color: #94a3b8;
  margin-bottom: 10px;
}
.sh-blog-card-title {
  font-size: 1.08rem;
  line-height: 1.35;
  margin: 0 0 10px;
}
.sh-blog-card-title a {
  color: #0f172a;
  text-decoration: none;
}
.sh-blog-card-title a:hover { color: #2563eb; }
.sh-blog-card-excerpt {
  font-size: 14px;
  line-height: 1.6;
  color: #64748b;
  margin: 0 0 14px;
  flex: 1;
}
.sh-blog-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  list-style: none;
  padding: 0;
  margin: 0 0 14px;
}
.sh-blog-tags li {
  font-size: 11px;
  color: #475569;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  padding: 3px 8px;
  border-radius: 999px;
}
.sh-blog-card-link {
  font-size: 13px;
  font-weight: 600;
  color: #2563eb;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.sh-blog-card-link:hover { color: #1d4ed8; }
.sh-blog-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 40px;
}
.sh-blog-pagination-status {
  font-size: 14px;
  color: #64748b;
}
.sh-blog-empty {
  text-align: center;
  padding: 64px 24px;
  color: #64748b;
}
.sh-blog-empty i {
  font-size: 2.5rem;
  color: #94a3b8;
  margin-bottom: 12px;
}
.sh-blog-empty h1,
.sh-blog-empty h2 {
  color: #0f172a;
  margin-bottom: 10px;
}
.sh-blog-subscribe {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.sh-blog-subscribe h2 {
  font-size: 1.35rem;
  margin-bottom: 8px;
  color: #0f172a;
}
.sh-blog-subscribe p {
  margin: 0;
  color: #64748b;
  max-width: 520px;
}
.sh-blog-article-hero {
  position: relative;
  min-height: 340px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: #0f172a;
}
.sh-blog-article-hero-bg {
  position: absolute;
  inset: 0;
  background: center/cover no-repeat;
  transform: scale(1.02);
}
.sh-blog-article-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15, 23, 42, 0.95) 0%, rgba(15, 23, 42, 0.55) 55%, rgba(15, 23, 42, 0.35) 100%);
}
.sh-blog-article-hero-inner {
  position: relative;
  z-index: 1;
  padding: 56px 0 40px;
  max-width: 860px;
}
.sh-blog-article-category {
  display: inline-block;
  margin-bottom: 14px;
  padding: 5px 12px;
  border-radius: 999px;
  background: rgba(59, 130, 246, 0.2);
  border: 1px solid rgba(147, 197, 253, 0.35);
  color: #bfdbfe;
  font-size: 12px;
  font-weight: 600;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.sh-blog-article-category:hover { color: #fff; background: rgba(59, 130, 246, 0.35); }
.sh-blog-article-hero h1 {
  color: #fff;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  line-height: 1.15;
  margin-bottom: 16px;
}
.sh-blog-article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 20px;
  font-size: 14px;
  color: rgba(226, 232, 240, 0.88);
}
.sh-blog-article-meta i { color: #93c5fd; margin-right: 4px; }
.sh-blog-article-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 40px;
  align-items: start;
  padding: 48px 0 64px;
}
.sh-blog-article-content {
  max-width: 760px;
  font-size: 1.02rem;
  line-height: 1.75;
  color: #334155;
}
.sh-blog-article-content h2 {
  color: #0f172a;
  font-size: 1.45rem;
  margin: 2rem 0 0.85rem;
}
.sh-blog-article-content h3 {
  color: #0f172a;
  font-size: 1.15rem;
  margin: 1.5rem 0 0.65rem;
}
.sh-blog-article-content p { margin-bottom: 1.1rem; }
.sh-blog-article-content ul,
.sh-blog-article-content ol {
  margin: 0 0 1.2rem 1.2rem;
}
.sh-blog-article-content li { margin-bottom: 0.45rem; }
.sh-blog-article-content a {
  color: #2563eb;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.sh-blog-article-content blockquote {
  margin: 1.5rem 0;
  padding: 16px 20px;
  border-left: 4px solid #2563eb;
  background: #f8fafc;
  border-radius: 0 10px 10px 0;
  color: #475569;
  font-style: italic;
}
.sh-blog-table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.25rem 0 1.5rem;
  font-size: 14px;
}
.sh-blog-table th,
.sh-blog-table td {
  border: 1px solid #e2e8f0;
  padding: 10px 12px;
  text-align: left;
  vertical-align: top;
}
.sh-blog-table th {
  background: #f8fafc;
  color: #0f172a;
}
.sh-blog-article-tags {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid #e2e8f0;
}
.sh-blog-article-tags strong {
  display: block;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #64748b;
  margin-bottom: 10px;
}
.sh-blog-related { padding-top: 56px; padding-bottom: 72px; }
@media (max-width: 991px) {
  .sh-blog-grid,
  .sh-blog-grid-compact { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .sh-blog-article-layout { grid-template-columns: 1fr; }
  .sh-blog-article-aside { max-width: 420px; }
}
@media (max-width: 767px) {
  .sh-blog-grid,
  .sh-blog-grid-compact { grid-template-columns: 1fr; }
  .sh-blog-toolbar { flex-direction: column; align-items: flex-start; }
  .sh-blog-subscribe { flex-direction: column; align-items: flex-start; }
}
