@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@500;600;700&display=swap');

.hc {
  --hc-ink: #0b1f44;
  --hc-muted: #4a6285;
  --hc-line: rgba(15, 48, 96, 0.12);
  --hc-accent: #1d4ed8;
  --hc-accent-soft: #2563eb;
  --hc-bg: #f3f8fc;
  --hc-surface: #ffffff;
  --hc-sky: #d9eefb;
  font-family: "Inter", sans-serif;
  color: var(--hc-ink);
  background: var(--hc-surface);
}

.hc h1,
.hc h2,
.hc h3,
.hc .hc-metrics-list strong,
.hc-timeline-list time {
  font-family: "Inter", sans-serif;
  letter-spacing: -0.03em;
}

/* Bannière uniquement : police actuelle (Space Grotesk + italique) */
.hc .hc-brand {
  font-family: "Space Grotesk", "Segoe UI", sans-serif;
  letter-spacing: -0.045em;
}

.hc a {
  text-decoration: none;
}

/* ── Hero ── */
.hc-hero {
  position: relative;
  overflow: hidden;
  padding: 72px 0 64px;
  background:
    radial-gradient(ellipse 55% 70% at 88% 18%, rgba(56, 189, 248, 0.28) 0%, transparent 58%),
    radial-gradient(ellipse 40% 50% at 8% 85%, rgba(37, 99, 235, 0.12) 0%, transparent 55%),
    linear-gradient(118deg, #eaf5fc 0%, #d7eefb 48%, #c8e5f7 100%);
}

.hc-hero--solo {
  padding: 88px 0 100px;
}

.hc-hero--solo .hc-hero-grid {
  grid-template-columns: 1fr;
}

.hc-hero--solo .hc-hero-copy {
  max-width: 40rem;
}

.hc-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(11, 31, 68, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(11, 31, 68, 0.035) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.45), transparent 85%);
  pointer-events: none;
}

.hc-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 40px;
  align-items: center;
}

.hc-brand {
  margin: 0 0 10px;
  font-size: clamp(2.4rem, 5vw, 3.5rem);
  font-weight: 700;
  line-height: 0.95;
  color: var(--hc-ink);
  font-style: italic;
  animation: hc-rise 0.7s ease both;
}

.hc-hero h1 {
  margin: 0 0 16px;
  font-size: clamp(1.55rem, 2.6vw, 2.15rem);
  font-weight: 600;
  font-style: normal;
  line-height: 1.2;
  color: #16315f;
  animation: hc-rise 0.7s ease 0.08s both;
}
.hc-hero h1 em {
  font-style: normal;
  font-weight: 800;
  color: var(--hc-primary, #1e3a8a);
}

.hc-lead {
  margin: 0 0 28px;
  max-width: 34rem;
  font-size: 1.08rem;
  line-height: 1.65;
  color: var(--hc-muted);
  animation: hc-rise 0.7s ease 0.16s both;
}

.hc-hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  animation: hc-rise 0.7s ease 0.24s both;
}

.hc-hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  animation: hc-float-in 0.9s ease 0.18s both;
}

.hc-hero-visual img {
  width: auto;
  max-width: min(100%, 340px);
  max-height: 360px;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 18px 32px rgba(15, 48, 96, 0.12));
}

.hc-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 22px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.hc-btn-primary {
  background: var(--hc-accent);
  color: #fff;
}

.hc-btn-primary:hover {
  background: #1e40af;
  color: #fff;
  transform: translateX(2px);
}

.hc-btn-ghost {
  background: rgba(255, 255, 255, 0.55);
  color: var(--hc-ink);
  border: 1px solid rgba(15, 48, 96, 0.12);
}

.hc-btn-ghost:hover {
  background: #fff;
  color: var(--hc-ink);
}

/* ── Metrics ── */
.hc-metrics {
  padding: 0;
  margin-top: -28px;
  position: relative;
  z-index: 2;
}

.hc-metrics-list {
  list-style: none;
  margin: 0;
  padding: 22px 28px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  background: var(--hc-surface);
  border: 1px solid var(--hc-line);
  border-radius: 16px;
  box-shadow: 0 18px 40px rgba(15, 48, 96, 0.06);
}

.hc-metrics-list li {
  text-align: center;
  padding: 8px 10px;
}

.hc-metrics-list strong {
  display: block;
  font-size: clamp(1.5rem, 2.4vw, 2rem);
  font-weight: 700;
  color: var(--hc-ink);
  margin-bottom: 4px;
}

.hc-metrics-list span {
  color: var(--hc-muted);
  font-size: 0.92rem;
}

/* ── Shared sections ── */
.hc-story,
.hc-infra,
.hc-team,
.hc-timeline {
  padding: 88px 0;
}

.hc-solutions {
  padding: 88px 0 100px;
}

.hc-section-head {
  max-width: 40rem;
  margin-bottom: 40px;
}

.hc-section-head--center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.hc-section-head h2,
.hc-story h2 {
  margin: 0 0 12px;
  font-family: "Inter", sans-serif;
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 800;
  font-style: normal;
  line-height: 1.15;
  letter-spacing: -0.03em;
  color: #0f172a;
}

.hc-section-head p,
.hc-story p,
.hc-infra article p {
  margin: 0;
  color: var(--hc-muted);
  font-size: 1.05rem;
  line-height: 1.7;
}

.hc-story p + p {
  margin-top: 14px;
}

.hc-note {
  margin-top: 18px !important;
  padding-top: 18px;
  border-top: 1px solid var(--hc-line);
  font-size: 0.98rem !important;
}

/* ── Story ── */
.hc-story-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 48px;
  align-items: center;
}

.hc-story-figure {
  margin: 0;
  padding: 18px;
  border-radius: 20px;
  background:
    radial-gradient(circle at 70% 20%, rgba(56, 189, 248, 0.2), transparent 45%),
    linear-gradient(160deg, #eef6fc, #e2eef8);
}

.hc-story-figure img {
  width: 100%;
  height: auto;
  display: block;
}

/* ── Infra ── */
.hc-infra {
  background:
    linear-gradient(180deg, #f7fbfe 0%, #eef5fb 100%);
}

.hc-infra-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px 48px;
}

.hc-infra-grid article {
  padding-top: 8px;
  border-top: 2px solid rgba(37, 99, 235, 0.35);
}

.hc-infra-grid h3 {
  margin: 14px 0 10px;
  font-size: 1.2rem;
  font-weight: 650;
  color: var(--hc-ink);
}

/* ── Team ── */
.hc-team-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 280px));
  justify-content: center;
  gap: 40px 64px;
}

.hc-person {
  text-align: center;
}

.hc-person img {
  width: 148px;
  height: 148px;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 18px;
  background: #e8f1fa;
  transition: transform 0.35s ease;
}

.hc-person:hover img {
  transform: translateY(-4px);
}

.hc-person h3 {
  margin: 0 0 6px;
  font-size: 1.2rem;
  font-weight: 650;
}

.hc-person > p {
  margin: 0 0 14px;
  color: var(--hc-accent-soft);
  font-size: 0.92rem;
  font-weight: 600;
}

.hc-person-links {
  display: flex;
  justify-content: center;
  gap: 10px;
}

.hc-person-links a {
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  color: var(--hc-ink);
  background: var(--hc-bg);
  border: 1px solid var(--hc-line);
  transition: background 0.2s ease, color 0.2s ease;
}

.hc-person-links a:hover {
  background: var(--hc-accent);
  color: #fff;
  border-color: var(--hc-accent);
}

.hc-person-links .hc-icon-x svg {
  display: block;
}

/* ── Timeline ── */
.hc-timeline {
  background: var(--hc-bg);
}

.hc-timeline-list {
  list-style: none;
  margin: 0 auto;
  padding: 0;
  max-width: 640px;
  position: relative;
}

.hc-timeline-list::before {
  content: '';
  position: absolute;
  left: 62px;
  top: 6px;
  bottom: 6px;
  width: 2px;
  background: linear-gradient(180deg, rgba(37, 99, 235, 0.55), rgba(37, 99, 235, 0.08));
}

.hc-timeline-list li {
  position: relative;
  display: grid;
  grid-template-columns: 88px 1fr;
  gap: 20px;
  align-items: start;
  padding: 0 0 28px 0;
}

.hc-timeline-list li:last-child {
  padding-bottom: 0;
}

.hc-timeline-list time {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--hc-accent);
  text-align: right;
  padding-top: 2px;
}

.hc-timeline-list span {
  position: relative;
  display: block;
  padding: 2px 0 0 18px;
  color: var(--hc-muted);
  line-height: 1.55;
}

.hc-timeline-list span::before {
  content: '';
  position: absolute;
  left: -5px;
  top: 8px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid var(--hc-accent-soft);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.12);
}

/* ── Solutions ── */
.hc-solutions-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.hc-solutions-list a {
  display: block;
  padding: 22px 24px;
  border-radius: 14px;
  border: 1px solid var(--hc-line);
  background: var(--hc-surface);
  transition: border-color 0.2s ease, transform 0.2s ease, background 0.2s ease;
}

.hc-solutions-list a:hover {
  border-color: rgba(37, 99, 235, 0.45);
  background: #f7fbff;
  transform: translateY(-2px);
}

.hc-solutions-list strong {
  display: block;
  margin-bottom: 6px;
  font-family: "Inter", sans-serif;
  font-size: 1.08rem;
  font-weight: 800;
  font-style: normal;
  color: var(--hc-ink);
}

.hc-solutions-list span {
  color: var(--hc-muted);
  font-size: 0.95rem;
  line-height: 1.55;
}

/* ── Motion ── */
@keyframes hc-rise {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes hc-float-in {
  from {
    opacity: 0;
    transform: translateY(24px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@media (prefers-reduced-motion: reduce) {
  .hc-brand,
  .hc-hero h1,
  .hc-lead,
  .hc-hero-cta,
  .hc-hero-visual {
    animation: none;
  }

  .hc-person:hover img,
  .hc-solutions-list a:hover,
  .hc-btn-primary:hover {
    transform: none;
  }
}

/* ── Responsive ── */
@media (max-width: 991px) {
  .hc-hero-grid,
  .hc-story-grid,
  .hc-infra-grid,
  .hc-solutions-list {
    grid-template-columns: 1fr;
  }

  .hc-hero-visual {
    order: -1;
  }

  .hc-hero-visual img {
    max-width: min(100%, 240px);
    max-height: 260px;
  }

  .hc-metrics-list {
    grid-template-columns: 1fr;
    text-align: left;
  }

  .hc-metrics-list li {
    text-align: left;
    display: flex;
    align-items: baseline;
    gap: 12px;
    padding: 6px 0;
  }

  .hc-metrics-list strong {
    margin-bottom: 0;
    min-width: 7rem;
  }

  .hc-team-grid {
    grid-template-columns: 1fr;
  }

  .hc-timeline-list::before {
    left: 48px;
  }

  .hc-timeline-list li {
    grid-template-columns: 64px 1fr;
    gap: 14px;
  }
}

@media (max-width: 575px) {
  .hc-hero,
  .hc-story,
  .hc-infra,
  .hc-team,
  .hc-timeline,
  .hc-solutions {
    padding-left: 0;
    padding-right: 0;
  }

  .hc-hero {
    padding-top: 56px;
    padding-bottom: 44px;
  }

  .hc-story,
  .hc-infra,
  .hc-team,
  .hc-timeline,
  .hc-solutions {
    padding-top: 64px;
    padding-bottom: 64px;
  }

  .hc-metrics {
    margin-top: -18px;
  }

  .hc-metrics-list {
    border-radius: 12px;
    padding: 16px 18px;
  }
}

/* ── Section pad helpers ── */
.hc-section { padding: 88px 0; }
.hc-section--soft {
  background: linear-gradient(180deg, #f7fbfe 0%, #eef5fb 100%);
}
.hc-section--muted { background: var(--hc-bg); }
.hc-section--end { padding-bottom: 100px; }

.hc-section-head { max-width: 42rem; margin-bottom: 40px; }
.hc-section-head--center { margin-left: auto; margin-right: auto; text-align: center; }
.hc-section-head h2 {
  margin: 0 0 12px;
  font-family: "Inter", sans-serif;
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 800;
  font-style: normal;
  line-height: 1.15;
  letter-spacing: -0.03em;
  color: #0f172a;
}
.hc-section-head p {
  margin: 0;
  color: var(--hc-muted);
  font-size: 1.05rem;
  line-height: 1.7;
}

/* ── Location / campus ── */
.hc-locations {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.hc-location {
  overflow: hidden;
  border-radius: 16px;
  border: 1px solid var(--hc-line);
  background: var(--hc-surface);
  transition: transform 0.25s ease, border-color 0.25s ease;
}
.hc-location:hover {
  transform: translateY(-3px);
  border-color: rgba(37, 99, 235, 0.4);
}
.hc-location-media {
  height: 160px;
  background-size: cover;
  background-position: center;
}
.hc-location-body { padding: 20px 22px 24px; }
.hc-location-body .hc-loc-code {
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--hc-ink);
  margin: 0 0 4px;
}
.hc-location-body .hc-loc-place {
  margin: 0;
  color: var(--hc-muted);
  font-size: 0.95rem;
}
.hc-location-body ul {
  list-style: none;
  margin: 14px 0 0;
  padding: 0;
}
.hc-location-body li {
  position: relative;
  padding: 4px 0 4px 18px;
  color: var(--hc-muted);
  font-size: 0.9rem;
}
.hc-location-body li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.7em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--hc-accent-soft);
}

/* ── Feature split rows ── */
.hc-split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 48px;
  align-items: center;
  margin-bottom: 56px;
}
.hc-split:last-child { margin-bottom: 0; }
/* Inverse les colonnes quel que soit l’ordre DOM (texte/image) */
.hc-split--reverse {
  direction: rtl;
}
.hc-split--reverse > * {
  direction: ltr;
}
.hc-split h3 {
  margin: 0 0 12px;
  font-size: 1.45rem;
  font-weight: 650;
}
.hc-split p {
  margin: 0 0 12px;
  color: var(--hc-muted);
  line-height: 1.7;
}
.hc-split-visual {
  margin: 0;
  padding: 18px;
  border-radius: 20px;
  background:
    radial-gradient(circle at 70% 20%, rgba(56, 189, 248, 0.2), transparent 45%),
    linear-gradient(160deg, #eef6fc, #e2eef8);
}
.hc-split-visual img { width: 100%; height: auto; display: block; }

/* ── Why grid ── */
.hc-why {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px 40px;
}
.hc-why article { border-top: 2px solid rgba(37, 99, 235, 0.35); padding-top: 14px; }
.hc-why h3 { margin: 0 0 8px; font-size: 1.1rem; font-weight: 650; }
.hc-why p { margin: 0; color: var(--hc-muted); line-height: 1.6; font-size: 0.98rem; }

/* ── Peering ── */
.hc-peering {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px 28px;
  align-items: center;
}
.hc-peering img {
  width: 100%;
  max-height: 36px;
  object-fit: contain;
  filter: grayscale(1);
  opacity: 0.75;
  transition: filter 0.2s ease, opacity 0.2s ease;
}
.hc-peering img:hover { filter: none; opacity: 1; }

/* ── Checklist blocks ── */
.hc-checks {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.hc-checks article {
  padding-top: 12px;
  border-top: 2px solid rgba(37, 99, 235, 0.35);
}
.hc-checks h3 { margin: 0 0 12px; font-size: 1.1rem; font-weight: 650; }
.hc-checks ul { list-style: none; margin: 0; padding: 0; }
.hc-checks li {
  position: relative;
  padding: 5px 0 5px 18px;
  color: var(--hc-muted);
  font-size: 0.95rem;
  line-height: 1.45;
}
.hc-checks li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.75em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--hc-accent-soft);
}

/* ── Pricing table housing ── */
.hc-table-wrap {
  overflow-x: auto;
  border: 1px solid var(--hc-line);
  border-radius: 16px;
  background: var(--hc-surface);
}
.hc-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 720px;
}
.hc-table th,
.hc-table td {
  padding: 14px 16px;
  text-align: center;
  border-bottom: 1px solid var(--hc-line);
  font-size: 0.92rem;
  color: var(--hc-muted);
}
.hc-table th {
  font-family: "Inter", sans-serif;
  font-weight: 650;
  color: var(--hc-ink);
  background: #f7fbfe;
}
.hc-table th .hc-unit {
  display: block;
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--hc-muted);
  margin-top: 2px;
}
.hc-table td:first-child,
.hc-table th:first-child {
  text-align: left;
  font-weight: 600;
  color: var(--hc-ink);
  white-space: nowrap;
}
.hc-table .hc-price {
  font-family: "Inter", sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--hc-accent);
  display: block;
}
.hc-table .hc-price-sub { font-size: 0.78rem; color: var(--hc-muted); }
.hc-table tr.hc-row-price td { background: #f0f7ff; }

.hc-hero-locs {
  list-style: none;
  margin: 0 0 1.5rem;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem 1rem;
  animation: hc-rise 0.7s ease 0.2s both;
}
.hc-hero-locs li {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.45rem 0.85rem;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--hc-line, #e2e8f0);
  border-radius: 999px;
  font-size: 0.92rem;
  color: var(--hc-ink, #0f172a);
}
.hc-hero-locs img {
  border-radius: 2px;
  flex-shrink: 0;
}
.hc-hero-locs strong {
  color: var(--hc-primary, #1e3a8a);
  font-weight: 750;
}

.hc-table-locs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 0.35rem 1.5rem;
}
.hc-table-loc {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: var(--hc-ink, #0f172a);
  font-size: 0.92rem;
  font-weight: 600;
  white-space: nowrap;
}
.hc-table-loc img {
  border-radius: 2px;
  flex-shrink: 0;
}
.hc-table tr.hc-row-locs td {
  vertical-align: middle;
}
.hc-badge-opt {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 999px;
  background: #eff6ff;
  color: var(--hc-accent);
  font-size: 0.78rem;
  font-weight: 600;
}

/* ── Tabs ── */
.hc-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin-bottom: 28px;
}
.hc-tabs button {
  border: 1px solid var(--hc-line);
  background: var(--hc-surface);
  color: var(--hc-ink);
  padding: 10px 18px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}
.hc-tabs button.is-active,
.hc-tabs button:hover {
  background: var(--hc-accent);
  border-color: var(--hc-accent);
  color: #fff;
}
.hc-tab-panel { display: none; }
.hc-tab-panel.is-active { display: block; }
.hc-tab-copy {
  max-width: 48rem;
  margin: 0 auto;
  text-align: center;
  color: var(--hc-muted);
  line-height: 1.7;
}
.hc-tab-copy h3 {
  margin: 0 0 12px;
  color: var(--hc-ink);
  font-size: 1.3rem;
}

/* ── Remote / dual ── */
.hc-dual {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.hc-dual article {
  padding: 28px 26px;
  border-radius: 16px;
  border: 1px solid var(--hc-line);
  background: var(--hc-surface);
}
.hc-dual article.hc-dual-accent {
  background: linear-gradient(160deg, #16315f, #1d4ed8);
  border-color: transparent;
  color: #fff;
}
.hc-dual h3 { margin: 0 0 10px; font-size: 1.2rem; font-weight: 800; color: var(--hc-ink); }
.hc-dual-accent h3 { color: #fff; }
.hc-dual p { margin: 0 0 18px; line-height: 1.65; color: var(--hc-muted); font-size: 0.98rem; }
.hc-dual-accent p { color: rgba(255,255,255,0.82); }
.hc-dual .hc-price-line {
  font-family: "Inter", sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--hc-accent);
}
.hc-dual-accent .hc-price-line { color: #fff; }
.hc-dual .hc-price-note { font-size: 0.85rem; color: var(--hc-muted); margin-left: 6px; }
.hc-dual-accent .hc-price-note { color: rgba(255,255,255,0.7); }

/* ── Steps ── */
.hc-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 28px;
}
.hc-steps article {
  padding-top: 12px;
  border-top: 2px solid rgba(37, 99, 235, 0.35);
}
.hc-steps h3 { margin: 10px 0 8px; font-size: 1.05rem; }
.hc-steps p { margin: 0 0 10px; color: var(--hc-muted); font-size: 0.95rem; line-height: 1.55; }
.hc-steps .hc-delay { font-size: 0.85rem; color: var(--hc-accent); font-weight: 600; }

.hc-price-bar {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  padding: 18px 20px;
  border-radius: 14px;
  border: 1px solid var(--hc-line);
  background: #f7fbfe;
}
.hc-price-bar div {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  font-size: 0.95rem;
  color: var(--hc-muted);
}
.hc-price-bar strong { color: var(--hc-ink); font-family: "Inter", sans-serif; }

/* ── Partners strip ── */
.hc-partners {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 28px 40px;
}
.hc-partners img {
  height: 28px;
  width: auto;
  max-width: 110px;
  object-fit: contain;
  opacity: 0.7;
  filter: grayscale(1);
}

@media (max-width: 991px) {
  .hc-locations,
  .hc-checks,
  .hc-steps,
  .hc-why,
  .hc-dual,
  .hc-split,
  .hc-price-bar {
    grid-template-columns: 1fr;
  }
  .hc-split--reverse {
    direction: ltr;
  }
  .hc-peering { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 575px) {
  .hc-peering { grid-template-columns: repeat(2, 1fr); }
  .hc-section { padding: 64px 0; }
}
