/*
 * HostStack — simple, readable styles for our own HTML (header, footer, homepage bands).
 * Fetched WordPress body content still uses Tailwind (app.css). Edit this file like normal CSS.
 */

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* --- Header shell --- */
#hs-site-header.site-header,
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: #fff;
  border-bottom: 1px solid #e2e8f0;
  box-shadow: 0 1px 3px rgb(0 0 0 / 0.06);
}

/* Promo bar */
.site-promo {
  background: linear-gradient(90deg, #ea580c, #ea580c, #d97706);
  color: #fff;
  border-bottom: 1px solid rgba(194, 65, 12, 0.35);
}
.site-promo-inner {
  max-width: 72rem;
  margin: 0 auto;
  padding: 0.65rem 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  box-sizing: border-box;
}
@media (min-width: 640px) {
  .site-promo-inner {
    flex-direction: row;
    flex-wrap: wrap;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
    gap: 0.5rem 0.75rem;
  }
}
.site-promo-text {
  max-width: 48rem;
  margin: 0;
  text-align: center;
  font-size: 0.75rem;
  font-weight: 500;
  line-height: 1.375;
}
@media (min-width: 640px) {
  .site-promo-text {
    text-align: left;
    font-size: 0.875rem;
  }
}
.site-promo-text strong {
  font-weight: 600;
}
.site-promo-code {
  font-size: 0.85em;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-weight: 600;
  padding: 0.125rem 0.375rem;
  border-radius: 0.25rem;
  background: rgba(255, 255, 255, 0.18);
}
.site-promo-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  flex-shrink: 0;
}
.site-btn-promo-ghost {
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.4);
  background: rgba(255, 255, 255, 0.12);
  border-radius: 0.5rem;
  padding: 0.35rem 0.75rem;
  font-size: 0.75rem;
  font-weight: 600;
  cursor: pointer;
  min-height: 2.25rem;
}
@media (min-width: 640px) {
  .site-btn-promo-ghost {
    font-size: 0.875rem;
  }
}
.site-btn-promo-solid {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.25rem;
  padding: 0.35rem 0.75rem;
  border-radius: 0.5rem;
  background: #fff;
  color: #c2410c;
  font-size: 0.75rem;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 1px 2px rgb(0 0 0 / 0.06);
}
@media (min-width: 640px) {
  .site-btn-promo-solid {
    font-size: 0.875rem;
  }
}
.site-btn-promo-solid:hover {
  background: #fff7ed;
}

/* Main nav row */
.site-nav-row {
  max-width: 72rem;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  min-height: 4rem;
  padding: 0 1rem;
  box-sizing: border-box;
}
@media (min-width: 640px) {
  .site-nav-row {
    gap: 0.75rem;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}
.site-logo {
  display: flex;
  align-items: center;
  min-height: 2.75rem;
  min-width: 0;
  flex-shrink: 1;
  text-decoration: none;
  border-radius: 0.5rem;
}
.site-logo img {
  display: block;
  height: 2.25rem;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  object-position: left;
}
@media (min-width: 640px) {
  .site-logo img {
    height: 2.75rem;
  }
}

/* Desktop nav */
.site-nav-main {
  display: none;
  flex: 1 1 auto;
  align-items: center;
  justify-content: center;
  min-width: 0;
  gap: 0.125rem;
}
@media (min-width: 768px) {
  .site-nav-main {
    display: flex;
  }
}
.site-nav-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  min-height: 2.5rem;
  padding: 0.5rem 0.625rem;
  border-radius: 0.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: #475569;
  text-decoration: none;
}
.site-nav-link:hover {
  background: #f8fafc;
  color: #ea580c;
}

/* Dropdown */
.site-dropdown {
  position: relative;
  display: flex;
  align-items: stretch;
}
.site-dropdown-trigger {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  min-height: 2.5rem;
  padding: 0.5rem 0.625rem;
  border-radius: 0.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: #475569;
  text-decoration: none;
}
.site-dropdown-trigger:hover {
  background: #f8fafc;
  color: #ea580c;
}
.site-dropdown-chevron {
  color: #94a3b8;
  flex-shrink: 0;
}
.site-dropdown:hover .site-dropdown-chevron {
  color: #f97316;
}
.site-dropdown-panel {
  position: absolute;
  left: 0;
  top: 100%;
  z-index: 60;
  min-width: 14rem;
  padding-top: 0.5rem;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.15s ease, visibility 0.15s;
}
.site-dropdown:hover .site-dropdown-panel,
.site-dropdown:focus-within .site-dropdown-panel {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
}
.site-dropdown-box {
  border-radius: 0.75rem;
  border: 1px solid #e2e8f0;
  background: #fff;
  padding: 0.375rem 0;
  box-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.08);
}
.site-dropdown-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.625rem 0.75rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: #334155;
  text-decoration: none;
  border-radius: 0.5rem;
  margin: 0 0.25rem;
}
.site-dropdown-link:hover {
  background: #fff7ed;
  color: #c2410c;
}

/* CTA + mobile menu */
.site-nav-cta {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.5rem;
  flex-shrink: 0;
}
@media (min-width: 640px) {
  .site-nav-cta {
    gap: 0.75rem;
  }
}
.site-link-client {
  display: none;
  align-items: center;
  justify-content: center;
  height: 2.5rem;
  padding: 0 0.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: #475569;
  text-decoration: none;
  border-radius: 0.5rem;
}
@media (min-width: 400px) {
  .site-link-client {
    display: inline-flex;
  }
}
@media (min-width: 640px) {
  .site-link-client {
    padding: 0 0.875rem;
  }
}
.site-link-client:hover {
  color: #ea580c;
}
.site-btn-getstarted {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 2.5rem;
  padding: 0 1rem;
  border-radius: 9999px;
  background: #f97316;
  color: #fff;
  font-size: 0.875rem;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 4px 6px -1px rgb(249 115 22 / 0.25);
  animation: hs-header-cta 3s ease-in-out infinite;
}
@media (prefers-reduced-motion: reduce) {
  .site-btn-getstarted {
    animation: none;
  }
}
.site-btn-getstarted:hover {
  background: #ea580c;
  animation: none;
}
.site-menu-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border: 1px solid #e2e8f0;
  background: #fff;
  color: #334155;
  border-radius: 0.5rem;
  cursor: pointer;
}
.site-menu-btn:hover {
  background: #f8fafc;
}
.site-menu-btn svg {
  width: 1.5rem;
  height: 1.5rem;
}
@media (min-width: 768px) {
  .site-menu-btn {
    display: none;
  }
}

/* Accent strip under nav */
.site-header-accent {
  height: 0.375rem;
  width: 100%;
  background: linear-gradient(to right, #fef3c7, #fff7ed, #fef3c7);
}

/* Mobile drawer */
.hs-nav-drawer-overlay {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 40;
  background: rgb(15 23 42 / 0.4);
}
.hs-nav-drawer-panel {
  position: fixed;
  left: 0;
  right: 0;
  z-index: 50;
  max-height: 85vh;
  overflow-y: auto;
  background: #fff;
  border-bottom: 1px solid #e2e8f0;
  padding: 0.75rem 1rem 2rem;
  box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1);
}
@media (min-width: 768px) {
  .hs-nav-drawer-overlay,
  .hs-nav-drawer-panel {
    display: none !important;
  }
}
.site-drawer-nav {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.site-drawer-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  min-height: 2.75rem;
  padding: 0 0.5rem;
  border-radius: 0.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: #1e293b;
  text-decoration: none;
}
.site-drawer-link:hover {
  background: #fff7ed;
}
.site-drawer-muted {
  display: flex;
  align-items: center;
  min-height: 2.5rem;
  padding: 0.5rem;
  border-radius: 0.5rem;
  font-size: 0.875rem;
  color: #475569;
  text-decoration: none;
}
.site-drawer-muted:hover {
  background: #f1f5f9;
}
.site-drawer-details {
  border-radius: 0.5rem;
  border: 1px solid #f1f5f9;
  background: rgb(248 250 252 / 0.8);
}
.site-drawer-details summary {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  min-height: 2.75rem;
  padding: 0.5rem 0.75rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: #1e293b;
  cursor: pointer;
  list-style: none;
}
.site-drawer-details summary::-webkit-details-marker {
  display: none;
}
.site-drawer-details summary .site-dropdown-chevron {
  margin-left: auto;
}
.site-drawer-sub {
  border-top: 1px solid #f1f5f9;
  padding: 0.25rem 0.5rem;
}
.site-drawer-sublink {
  display: flex;
  align-items: center;
  min-height: 2.5rem;
  padding: 0 0.5rem 0 1rem;
  font-size: 0.8125rem;
  color: #334155;
  text-decoration: none;
  border-radius: 0.5rem;
}
.site-drawer-sublink:hover {
  background: #fff7ed;
  color: #c2410c;
}
.site-drawer-cta {
  margin-top: 0.5rem;
  display: flex;
  align-items: center;
  min-height: 2.75rem;
  padding: 0 0.5rem;
  border-radius: 0.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: #ea580c;
  text-decoration: none;
}
.site-drawer-cta:hover {
  background: #fff7ed;
}
.site-drawer-client {
  margin-top: 0.5rem;
  display: flex;
  align-items: center;
  min-height: 2.75rem;
  padding: 0 0.5rem;
  border: 1px solid #e2e8f0;
  border-radius: 0.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: #334155;
  text-decoration: none;
}
.site-drawer-client:hover {
  background: #f8fafc;
}

/* --- Trust strip (homepage) --- */
.site-trust {
  background: rgb(15 23 42 / 0.85);
  border-bottom: 1px solid rgb(255 255 255 / 0.1);
  color: #94a3b8;
}
.site-trust-inner {
  max-width: 72rem;
  margin: 0 auto;
  padding: 0.75rem 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  font-size: 0.75rem;
}
@media (min-width: 640px) {
  .site-trust-inner {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem 1.5rem;
    padding: 0.75rem 1.5rem;
    font-size: 0.875rem;
  }
}
.site-trust-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  column-gap: 0.65rem;
  row-gap: 0.35rem;
}
/* Flex ignores whitespace text nodes between <a> tags — do not rely on literal spaces */
.site-trust a {
  font-weight: 500;
  text-decoration: none;
}
.site-trust a.site-trust-em {
  color: #22d3ee;
}
.site-trust a.site-trust-em:hover {
  color: #67e8f9;
}
.site-trust a.site-trust-muted {
  color: #cbd5e1;
}
.site-trust a.site-trust-muted:hover {
  color: #22d3ee;
}
.site-trust-dot {
  display: inline;
  flex-shrink: 0;
  margin: 0 0.2rem;
  color: #64748b;
  font-weight: 400;
}
@media (min-width: 640px) {
  .site-trust-dot {
    margin: 0 0.35rem;
  }
}

/* --- India site: link to global USD-first mirror --- */
.site-intl-banner {
  background: rgb(30 41 59 / 0.95);
  border-bottom: 1px solid rgb(255 255 255 / 0.08);
  color: #cbd5e1;
  font-size: 0.8125rem;
}
.site-intl-banner-inner {
  max-width: 72rem;
  margin: 0 auto;
  padding: 0.5rem 1rem;
  text-align: center;
}
@media (min-width: 640px) {
  .site-intl-banner-inner {
    padding: 0.5rem 1.5rem;
    font-size: 0.875rem;
  }
}
.site-intl-banner a {
  color: #38bdf8;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.site-intl-banner a:hover {
  color: #7dd3fc;
}

/*
 * Support, contact, and similar pages: body uses text-slate-50; flex children on white/slate-50
 * surfaces still inherit that light color if Tailwind utilities fail — fix contrast globally.
 */
body.text-slate-50 main [class~="bg-white"],
body.text-slate-50 main [class~="bg-slate-50"] {
  color-scheme: light;
  color: #0f172a;
}
body.text-slate-50 main [class~="bg-white"] h1,
body.text-slate-50 main [class~="bg-white"] h2,
body.text-slate-50 main [class~="bg-white"] h3,
body.text-slate-50 main [class~="bg-slate-50"] h1,
body.text-slate-50 main [class~="bg-slate-50"] h2,
body.text-slate-50 main [class~="bg-slate-50"] h3,
body.text-slate-50 main [class~="bg-white"] .text-slate-900,
body.text-slate-50 main [class~="bg-white"] .text-slate-800,
body.text-slate-50 main [class~="bg-slate-50"] .text-slate-900,
body.text-slate-50 main [class~="bg-slate-50"] .text-slate-800 {
  color: #0f172a !important;
}
body.text-slate-50 main [class~="bg-white"] .text-slate-600,
body.text-slate-50 main [class~="bg-white"] .text-slate-700,
body.text-slate-50 main [class~="bg-slate-50"] .text-slate-600,
body.text-slate-50 main [class~="bg-slate-50"] .text-slate-700,
body.text-slate-50 main [class~="bg-white"] address,
body.text-slate-50 main [class~="bg-slate-50"] address {
  color: #475569 !important;
}
body.text-slate-50 main [class~="bg-white"] label,
body.text-slate-50 main [class~="bg-slate-50"] label {
  color: #334155 !important;
}
body.text-slate-50 main [class~="bg-white"] .text-white,
body.text-slate-50 main [class~="bg-white"] button.text-white,
body.text-slate-50 main [class~="bg-slate-50"] .text-white,
body.text-slate-50 main [class~="bg-slate-50"] button.text-white {
  color: #fff !important;
}
body.text-slate-50 main [class~="bg-white"] input,
body.text-slate-50 main [class~="bg-white"] textarea,
body.text-slate-50 main [class~="bg-white"] select,
body.text-slate-50 main [class~="bg-slate-50"] input,
body.text-slate-50 main [class~="bg-slate-50"] textarea,
body.text-slate-50 main [class~="bg-slate-50"] select {
  color: #0f172a !important;
  background-color: #fff !important;
  border: 1px solid #cbd5e1 !important;
}
body.text-slate-50 main [class~="bg-white"] a.text-orange-700,
body.text-slate-50 main [class~="bg-slate-50"] a.text-orange-700 {
  color: #c2410c !important;
}
body.text-slate-50 main [class~="bg-white"] .text-orange-600,
body.text-slate-50 main [class~="bg-slate-50"] .text-orange-600 {
  color: #ea580c !important;
}
body.text-slate-50 main [class~="bg-white"] input::placeholder,
body.text-slate-50 main [class~="bg-white"] textarea::placeholder,
body.text-slate-50 main [class~="bg-slate-50"] input::placeholder,
body.text-slate-50 main [class~="bg-slate-50"] textarea::placeholder {
  color: #94a3b8 !important;
}

/* --- “Why HostStack” band --- */
.site-why {
  border-bottom: 1px solid rgb(255 255 255 / 0.1);
  background: linear-gradient(to bottom, rgb(15 23 42 / 0.5), #020617);
  color: #e2e8f0;
}
.site-why-inner {
  max-width: 72rem;
  margin: 0 auto;
  padding: 2.5rem 1rem;
}
@media (min-width: 640px) {
  .site-why-inner {
    padding: 3.5rem 1.5rem;
  }
}
.site-why h2 {
  margin: 0;
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: -0.025em;
  color: #fff;
  text-wrap: balance;
}
@media (min-width: 640px) {
  .site-why h2 {
    font-size: 1.875rem;
  }
}
.site-why-lead {
  margin: 0.75rem 0 0;
  max-width: 48rem;
  color: #94a3b8;
  text-wrap: pretty;
}
.site-why-grid {
  margin: 2rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 1rem;
}
@media (min-width: 640px) {
  .site-why-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (min-width: 1024px) {
  .site-why-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
.site-why-card {
  margin: 0;
  border-radius: 0.75rem;
  border: 1px solid rgb(255 255 255 / 0.1);
  background: rgb(15 23 42 / 0.4);
  padding: 1.25rem;
}
.site-why-card h3 {
  margin: 0;
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
}
.site-why-card p {
  margin: 0.5rem 0 0;
  font-size: 0.875rem;
  color: #94a3b8;
}
.site-why-card a {
  color: #22d3ee;
  text-decoration: none;
}
.site-why-card a:hover {
  text-decoration: underline;
}
.site-why-actions {
  margin-top: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
@media (min-width: 640px) {
  .site-why-actions {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
  }
}
.site-btn-cyan {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  border-radius: 9999px;
  background: #22d3ee;
  color: #020617;
  font-size: 0.875rem;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 10px 15px -3px rgb(6 182 212 / 0.2);
}
.site-btn-cyan:hover {
  background: #67e8f9;
}
.site-btn-outline-light {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  border-radius: 9999px;
  border: 1px solid rgb(255 255 255 / 0.2);
  color: #fff;
  font-size: 0.875rem;
  font-weight: 600;
  text-decoration: none;
}
.site-btn-outline-light:hover {
  background: rgb(255 255 255 / 0.05);
}
.site-why-migrate {
  font-size: 0.875rem;
  font-weight: 500;
  color: #22d3ee;
  text-decoration: none;
}
.site-why-migrate:hover {
  color: #67e8f9;
}

/* --- Compare teaser (growth pages) --- */
.site-compare-teaser {
  margin-top: 3.5rem;
  border-top: 1px solid rgb(255 255 255 / 0.1);
  padding-top: 3rem;
}
.site-compare-teaser h2 {
  margin: 0;
  font-size: 1.25rem;
  font-weight: 700;
  color: #fff;
}
.site-compare-teaser > p {
  margin: 0.5rem 0 0;
  font-size: 0.875rem;
  color: #94a3b8;
}
.site-compare-grid {
  margin-top: 1.5rem;
  display: grid;
  gap: 1rem;
}
@media (min-width: 640px) {
  .site-compare-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
.site-compare-card {
  display: block;
  border-radius: 0.75rem;
  border: 1px solid rgb(255 255 255 / 0.1);
  background: rgb(15 23 42 / 0.4);
  padding: 1.25rem;
  text-decoration: none;
  color: inherit;
}
.site-compare-card:hover {
  border-color: rgb(6 182 212 / 0.4);
}
.site-compare-card h3 {
  margin: 0;
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
}
.site-compare-card p {
  margin: 0.5rem 0 0;
  font-size: 0.875rem;
  color: #94a3b8;
}

/* --- Pre-footer CTA --- */
.site-prefooter {
  max-width: 48rem;
  margin: 3rem auto 0;
  padding: 1.5rem;
  border-radius: 1rem;
  border: 1px solid rgb(6 182 212 / 0.25);
  background: rgb(15 23 42 / 0.6);
  text-align: center;
}
@media (min-width: 640px) {
  .site-prefooter {
    padding: 2rem;
  }
}
.site-prefooter-kicker {
  margin: 0;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #22d3ee;
}
.site-prefooter h3 {
  margin: 0.5rem 0 0;
  font-size: 1.125rem;
  font-weight: 600;
  color: #fff;
  text-wrap: balance;
}
.site-prefooter-actions {
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: center;
  gap: 0.75rem;
}
@media (min-width: 640px) {
  .site-prefooter-actions {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
  }
}
.site-prefooter-actions a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 600;
  text-decoration: none;
}
.site-prefooter-actions a.site-pf-primary {
  background: #22d3ee;
  color: #020617;
}
.site-prefooter-actions a.site-pf-primary:hover {
  background: #67e8f9;
}
.site-prefooter-actions a.site-pf-outline {
  border: 1px solid rgb(255 255 255 / 0.2);
  color: #fff;
}
.site-prefooter-actions a.site-pf-outline:hover {
  background: rgb(255 255 255 / 0.05);
}
.site-prefooter-actions a.site-pf-muted {
  border: 1px solid rgb(255 255 255 / 0.15);
  color: #e2e8f0;
  font-weight: 500;
}
.site-prefooter-actions a.site-pf-muted:hover {
  background: rgb(255 255 255 / 0.05);
}
.site-prefooter-foot {
  margin: 1rem 0 0;
  font-size: 0.75rem;
  color: #64748b;
}
.site-prefooter-foot a {
  color: #22d3ee;
  text-decoration: none;
}
.site-prefooter-foot a:hover {
  text-decoration: underline;
}

/* --- Mobile bottom bar inner --- */
.site-mobile-bar-inner {
  max-width: 32rem;
  margin: 0 auto;
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 0.5rem;
  padding: 0 0.25rem;
}
.site-mobile-bar-inner a {
  flex: 1 1 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 9999px;
  padding: 0.625rem 0.75rem;
  text-align: center;
  font-size: 0.75rem;
  font-weight: 600;
  text-decoration: none;
}
@media (min-width: 640px) {
  .site-mobile-bar-inner a {
    font-size: 0.875rem;
  }
}
.site-mobile-bar-inner a.site-mb-primary,
.site-mobile-bar-inner a.site-mb-plans {
  background: #22d3ee;
  color: #020617;
  font-weight: 700;
  box-shadow: 0 10px 15px -3px rgb(6 182 212 / 0.2);
}
.site-mobile-bar-inner a.site-mb-signup {
  border: 1px solid rgb(255 255 255 / 0.25);
  background: rgb(255 255 255 / 0.05);
  color: #fff;
}

/* --- Footer --- */
#hs-site-footer.site-footer,
.site-footer {
  width: 100%;
  box-sizing: border-box;
  border-top: 1px solid rgb(255 255 255 / 0.06);
  background: #0f1115;
  color: #94a3b8;
  font-size: 0.875rem;
}
.site-footer-inner {
  width: 100%;
  max-width: 72rem;
  margin: 0 auto;
  box-sizing: border-box;
  padding: 4rem 1.25rem calc(4rem + env(safe-area-inset-bottom, 0));
}
@media (min-width: 640px) {
  .site-footer-inner {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}
.site-footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  width: 100%;
  align-items: start;
}
@media (min-width: 640px) {
  .site-footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (min-width: 1024px) {
  .site-footer-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 2.5rem;
  }
}
.site-footer-brand {
  max-width: 24rem;
}
@media (min-width: 1024px) {
  .site-footer-brand {
    max-width: none;
  }
}
.site-footer-wordmark {
  margin: 0;
  font-size: 1.125rem;
  font-weight: 700;
  letter-spacing: -0.025em;
}
.site-footer-wordmark .w {
  color: #fff;
}
.site-footer-wordmark .o {
  color: #f97316;
}
.site-footer-note {
  margin: 1rem 0 0;
  font-size: 0.875rem;
  line-height: 1.625;
  color: #94a3b8;
}
.site-footer-col h3,
.site-footer-col .site-footer-col-title {
  margin: 0;
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: -0.025em;
  color: #fff;
}
.site-footer-list {
  margin: 1rem 0 0;
  padding: 0;
  list-style: none;
}
.site-footer-list li {
  margin: 0.625rem 0 0;
}
.site-footer-list li:first-child {
  margin-top: 0;
}
.site-footer-list a {
  display: inline-block;
  padding: 0.125rem 0;
  font-size: 0.875rem;
  color: #94a3b8;
  text-decoration: underline;
  text-decoration-color: rgb(148 163 184 / 0.35);
  text-underline-offset: 0.2em;
}
.site-footer-list a:hover {
  color: #fb923c;
  text-decoration-color: rgb(251 146 60 / 0.6);
}
.site-footer-contact-list {
  margin: 1rem 0 0;
  padding: 0;
  list-style: none;
}
.site-footer-contact-list > li {
  margin: 1rem 0 0;
}
.site-footer-contact-list > li:first-child {
  margin-top: 0;
}
.site-footer-contact-row {
  display: flex;
  gap: 0.75rem;
}
.site-footer-contact-row svg {
  flex-shrink: 0;
  width: 1.25rem;
  height: 1.25rem;
  margin-top: 0.125rem;
  color: #f97316;
}
.site-footer-contact-row a {
  color: #94a3b8;
  text-decoration: none;
}
.site-footer-contact-row a:hover {
  color: #fb923c;
}
.site-footer-bottom {
  margin-top: 3rem;
  margin-bottom: 0;
  padding-top: 2rem;
  border-top: 1px solid rgb(255 255 255 / 0.06);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  font-size: 0.75rem;
  color: #64748b;
  text-align: center;
  justify-content: center;
}
@media (min-width: 640px) {
  .site-footer-bottom {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

/*
 * Store landings (VPS, cloud, etc.): body uses text-slate-50; light sections must not
 * inherit that onto white/slate-50 surfaces (white-on-white / unreadable cards).
 * Also pin nav dropdown SVG sizes (flex row must not let icons grow).
 */
#hs-site-header.hs-header-light .site-dropdown-link {
  align-items: center;
}
#hs-site-header.hs-header-light .site-dropdown-link .hs-nav-dd-icon,
#hs-site-header.hs-header-light .site-dropdown-link svg.hs-nav-dd-icon {
  width: 1.125rem !important;
  height: 1.125rem !important;
  min-width: 1.125rem !important;
  min-height: 1.125rem !important;
  max-width: 1.125rem !important;
  max-height: 1.125rem !important;
  flex: 0 0 auto !important;
  color: #f97316;
}
#hs-site-header.hs-header-light .site-nav-link .hs-nav-top-icon,
#hs-site-header.hs-header-light .site-dropdown-trigger .hs-nav-top-icon {
  width: 1.125rem !important;
  height: 1.125rem !important;
  min-width: 1.125rem !important;
  flex: 0 0 auto !important;
}
#hs-site-header.hs-header-light .site-dropdown-trigger .hs-nav-chevron {
  width: 0.875rem !important;
  height: 0.875rem !important;
  flex: 0 0 auto !important;
}

section#plans {
  color-scheme: light;
  color: #0f172a;
}
/* India /cloud-hosting: dark “comparison” band uses bg-slate-950, not bg-slate-50 — don’t inherit body text-slate-50 into headings */
[data-hs-store-landing] main > section[class~="bg-slate-950"] {
  color-scheme: dark;
  color: #e2e8f0;
}
[data-hs-store-landing] main > section[class~="bg-slate-950"] h2 {
  color: #fff;
}
[data-hs-store-landing] main > section[class~="bg-slate-950"] a.text-orange-400 {
  color: #fb923c;
}
/* Use ~= so bg-slate-950 is not matched by *="bg-slate-50" */
[data-hs-store-landing] main > section[class~="bg-slate-50"],
[data-hs-store-landing] main > section[class~="bg-white"] {
  color-scheme: light;
  color: #0f172a;
}
[data-hs-store-landing] main > section[class~="bg-slate-50"] h1,
[data-hs-store-landing] main > section[class~="bg-slate-50"] h2,
[data-hs-store-landing] main > section[class~="bg-slate-50"] h3,
[data-hs-store-landing] main > section[class~="bg-white"] h2,
[data-hs-store-landing] main > section[class~="bg-white"] h3 {
  color: #0f172a;
}
[data-hs-store-landing] main > section[class~="bg-slate-50"] p,
[data-hs-store-landing] main > section[class~="bg-white"] p,
[data-hs-store-landing] main > section[class~="bg-slate-50"] li,
[data-hs-store-landing] main > section[class~="bg-white"] li {
  color: #334155;
}

[data-hs-plan-card] {
  color-scheme: light !important;
  background: #fff !important;
  color: #0f172a !important;
}
[data-hs-plan-card] h3,
[data-hs-plan-card] .text-slate-900 {
  color: #0f172a !important;
}
[data-hs-plan-card] p,
[data-hs-plan-card] li,
[data-hs-plan-card] .text-slate-500,
[data-hs-plan-card] .text-slate-600,
[data-hs-plan-card] .text-slate-700 {
  color: #475569 !important;
}
[data-hs-plan-card] .text-orange-500 {
  color: #f97316 !important;
}
[data-hs-plan-card] .text-white {
  color: #fff !important;
}
[data-hs-plan-card] .bg-slate-50 {
  background-color: #f8fafc !important;
}
[data-hs-plan-card] a[data-hs-track],
[data-hs-plan-card] .bg-orange-500 {
  background-color: #f97316 !important;
  color: #fff !important;
}
[data-hs-plan-card] a.text-slate-500,
[data-hs-plan-card] .underline.text-slate-500 {
  color: #64748b !important;
}

select[data-hs-vps-location-select],
select[data-hs-vps-location-select] option {
  color-scheme: light;
  background-color: #fff !important;
  color: #0f172a !important;
}
[data-hs-store-landing] label[for="hs-vps-location"] {
  color: #1e293b !important;
}

/* --- Conversion: primary CTA attention (subtle; respects reduced motion) --- */
a.hs-cta-primary {
  position: relative;
  box-shadow:
    0 0 0 0 rgba(34, 211, 238, 0.45),
    0 4px 18px rgba(6, 182, 212, 0.35);
  animation: hs-cta-glow 2.2s ease-in-out infinite;
}
a.hs-cta-primary:hover {
  animation: none;
  box-shadow: 0 6px 24px rgba(6, 182, 212, 0.45);
}
@media (prefers-reduced-motion: reduce) {
  a.hs-cta-primary {
    animation: none;
  }
}
@keyframes hs-cta-glow {
  0%,
  100% {
    box-shadow:
      0 0 0 0 rgba(34, 211, 238, 0.35),
      0 4px 16px rgba(6, 182, 212, 0.3);
  }
  50% {
    box-shadow:
      0 0 0 5px rgba(34, 211, 238, 0.12),
      0 6px 22px rgba(6, 182, 212, 0.42);
  }
}

/* Human “contact” strip on dark hero (initials = eye-line without stock photos) */
.hs-human-cta {
  margin-top: 1.25rem;
  display: flex;
  max-width: 28rem;
  align-items: center;
  gap: 0.75rem;
  border-radius: 1rem;
  border: 1px solid rgba(34, 211, 238, 0.22);
  background: rgba(15, 23, 42, 0.55);
  padding: 0.75rem 1rem;
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.04) inset;
}
.hs-human-faces {
  display: flex;
  flex-shrink: 0;
}
.hs-face {
  display: flex;
  height: 2.5rem;
  width: 2.5rem;
  align-items: center;
  justify-content: center;
  border-radius: 9999px;
  border: 2px solid #020617;
  background: linear-gradient(145deg, #06b6d4, #0891b2);
  font-size: 0.8rem;
  font-weight: 800;
  color: #f0fdfa;
}
.hs-face-2 {
  margin-left: -0.6rem;
  background: linear-gradient(145deg, #10b981, #047857);
}

@keyframes hs-header-cta {
  0%,
  100% {
    filter: brightness(1);
  }
  50% {
    filter: brightness(1.08);
  }
}

.site-mobile-bar-inner a.site-mb-wa {
  flex: 0 0 auto;
  min-width: 2.75rem;
  max-width: 3.25rem;
  padding-left: 0.5rem;
  padding-right: 0.5rem;
  background: #15803d;
  color: #fff;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  border: 1px solid rgba(255, 255, 255, 0.2);
}
.site-mobile-bar-inner a.site-mb-wa:hover {
  background: #16a34a;
}
