/* ============================================================
   VYOMCLOUD - MAIN STYLESHEET  (PERF + A11Y HARDENED)
   Layout is byte-for-byte the same as before, plus the edits
   from the "vps hosting" change-request doc:
     - .guarantee-secondary (7-day guarantee line under hero)
     - .vps-plan-highlights (24/7 support / instant setup / dev-fit)
     - .vps-price-renew ("Renews at the same price")
     - .vps-cta-cell / .vps-view-features (Get Now + View Features)
     - .vpsf-* (plan features modal)
     - .vpsfaq-grid (flat 2-col grid so row lines match up)
   ============================================================ */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --site-max-width: 1440px;
  --site-padding-desktop: 3rem;
  --site-padding-tablet: 2rem;
  --site-padding-mobile: 1.25rem;

  --font-primary: 'Plus Jakarta Sans', 'Segoe UI', sans-serif;
  --font-headings: 'Plus Jakarta Sans', 'Segoe UI', sans-serif;

  --color-primary: #0069ff;
  --color-primary-dark: #0069ff;

  /* AA-safe blue for TEXT on white (6.8:1). #0069ff is 3.3:1 and fails. */
  --color-primary-text: #0069ff;

  --color-text-primary: #120A1F;
  --color-text-secondary: white;
  --color-text-tertiary: #667085;
  --color-background: #f8fbff;
  --color-white: white;
  --color-border: #e5e7eb;
  --color-muted: #667085;

  --section-padding: 60px;
  --section-gap: 60px;

  /* ==========================================================
     TYPE SCALE - fluid. Unchanged.
     ========================================================== */
  --t-hero:    clamp(28px, 1.30rem + 2.10vw, 44px);
  --t-section: clamp(26px, 1.30rem + 1.75vw, 40px);
  --t-block:   clamp(22px, 1.20rem + 1.00vw, 30px);
  --t-panel:   clamp(20px, 1.15rem + 0.50vw, 24px);
  --t-card:    clamp(15.5px, 0.93rem + 0.20vw, 17.5px);
  --t-lead:    clamp(15px, 0.90rem + 0.25vw, 17px);
  --t-eyebrow: 13px;

  --fw-display: 800;
  --fw-heading: 700;
  --fw-eyebrow: 700;

  --lh-display: 1.18;
  --lh-heading: 1.30;
  --lh-lead: 1.65;
  --ls-display: -0.02em;
  --ls-eyebrow: 1.4px;

  --h-ink: #120A1F;
  --h-lead: #120A1F;
  --h-accent: var(--color-primary);
  --h-accent-text: var(--color-primary-text);

  --h-gap-hero: 24px;
  --h-gap-section: 16px;
  --h-gap-block: 12px;
  --h-gap-card: 8px;

  --gloss-speed: 2.8s;
  --gloss-width: 60%;

  /* AA-safe solid-button ramp. Top stop was #2d8cff (3.3:1 vs white). */
  --btn-grad: linear-gradient(180deg, #0069ff 0%, #0058d6 55%, #0047ad 100%);
}

body {
  overflow-x: hidden;
  width: 100%;
  background-color: var(--color-background);
  color: #333;
  line-height: 1.6;
  font-size: 16px;
  font-family: var(--font-primary);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img, svg, video { max-width: 100%; }

/* ------------------------------------------------------------
   A11Y UTILITIES
   ------------------------------------------------------------ */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}

:focus-visible {
  outline: 3px solid var(--h-accent-text);
  outline-offset: 2px;
  border-radius: 4px;
}

/* Inline icon system - replaces the Font Awesome webfont on this page.
   Sized in em so every existing font-size rule keeps working. */
.vc-i {
  width: 1em;
  height: 1em;
  display: block;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.vc-i--fill { fill: currentColor; stroke: none; }

/* ============================================================
   BASE HEADINGS
   ============================================================ */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-headings);
  color: var(--h-ink);
  text-wrap: balance;
}

h1 {
  font-size: var(--t-hero);
  font-weight: var(--fw-display);
  line-height: var(--lh-display);
  letter-spacing: var(--ls-display);
  margin-bottom: var(--h-gap-hero);
}

h2 {
  font-size: var(--t-section);
  font-weight: var(--fw-display);
  line-height: var(--lh-heading);
  letter-spacing: var(--ls-display);
  margin-bottom: var(--h-gap-section);
}

h3 {
  font-size: var(--t-panel);
  font-weight: var(--fw-heading);
  line-height: var(--lh-heading);
  margin-bottom: var(--h-gap-block);
}

h4 { font-size: 20px; font-weight: var(--fw-heading); line-height: 1.4; margin-bottom: var(--h-gap-card); }
h5 { font-size: 18px; font-weight: 600; line-height: 1.5; margin-bottom: var(--h-gap-card); }
h6 { font-size: 16px; font-weight: 600; line-height: 1.5; margin-bottom: var(--h-gap-card); }

p { font-size: 1rem; line-height: 1.6; color: var(--color-text-primary); margin-bottom: 10px; }
small { font-size: 0.875rem; }

/* ============================================================
   INVERTED SECTIONS
   ============================================================ */
.customized-container,
.guarantee-container,
.vps-features-grid .traffic-card,
.vps-hosting-section .blue-bg {
  --h-ink: white;
  --h-lead: rgba(255, 255, 255, 0.92);
  --h-accent-text: white;
}

/* ============================================================
   ACCENT WORD
   ============================================================ */
.gradient-blue,
#gblue,
.accent,
.compare-highlight-head {
  color: var(--h-accent-text);
}

.customized-container .gradient-blue,
.guarantee-container .gradient-blue,
.blue-bg .gradient-blue,
.traffic-card .gradient-blue { color: currentColor; }

/* ============================================================
   RANK: SECTION
   ============================================================ */
.vps-title,
.section-title,
.why-choose-title,
.header-section h1,
.header-section h2,
.features-included-container h2,
.datacenter-content h2,
.empower-content h2,
.success-content h2,
.customized-content h2,
.guarantee-content h2,
.testimonial-header h2,
.faq-header h2,
.deploy-header h2,
.usecases-header h2,
.trust-header h2,
.vpsfaq-header h2 {
  font-size: var(--t-section);
  font-weight: var(--fw-display);
  line-height: var(--lh-heading);
  letter-spacing: var(--ls-display);
  color: var(--h-ink);
  margin: 0 0 var(--h-gap-section);
}

/* ============================================================
   RANK: BLOCK
   ============================================================ */
.vps-features-grid .feature-card h3,
.vps-features-grid .traffic-text h3,
.vps-features-grid .vcores-text h3,
.vps-features-grid .backup-text h3,
.vps-features-grid .root-access-description h3,
.vps-hosting-section .feature-card h3 {
  font-size: var(--t-block);
  font-weight: var(--fw-heading);
  line-height: var(--lh-heading);
  letter-spacing: 0;
  color: #120A1F;
}
.feature-card.blue-bg h3,
.feature-card.blue-bg p {
    color: #fff !important;
}
/* ============================================================
   RANK: CARD
   ============================================================ */
.usecase-text h3,
.trust-text h3,
.vpsfaq-question,
.deploy-card-text .name,
.compare-table thead tr:nth-child(2) th h3 {
  font-size: var(--t-card);
  font-weight: var(--fw-heading);
  line-height: 1.4;
  color: var(--h-ink);
}

/* ============================================================
   RANK: LEAD
   ============================================================ */
.vps-description,
.section-description,
.why-choose-text,
.header-section .subtitle,
.features-included-container p,
.datacenter-content p,
.empower-content p,
.success-content p,
.customized-content p,
.guarantee-content p,
.testimonial-header p,
.deploy-header p,
.usecases-header p,
.trust-header p,
.vpsfaq-header p {
  font-size: var(--t-lead);
  font-weight: 400;
  line-height: var(--lh-lead);
  color: var(--h-lead);
  margin-bottom: 20px;
}

.deploy-header p:last-child,
.usecases-header p:last-child,
.trust-header p:last-child,
.vpsfaq-header p:last-child,
.testimonial-header p:last-child,
.header-section .subtitle:last-child,
.why-choose-text:last-child { margin-bottom: 0; }

.usecase-text p,
.trust-text p,
.vpsfaq-a p {
  font-size: 14px;
  line-height: 1.65;
  color: var(--h-lead);
  margin: 0;
}
.deploy-card-text .desc { font-size: 12.5px; line-height: 1.5; color: var(--h-lead); margin: 0; }

/* ============================================================
   RANK: EYEBROW
   ============================================================ */
.deploy-eyebrow,
.vpsfaq-eyebrow,
.hero-left .small-title,
.deploy-group-label {
  display: inline-block;
  font-size: var(--t-eyebrow);
  font-weight: var(--fw-eyebrow);
  line-height: 1.4;
  letter-spacing: var(--ls-eyebrow);
  text-transform: uppercase;
  color: var(--h-accent-text);
  margin-bottom: var(--h-gap-block);
}

.hero-left .small-title { color: var(--h-ink); opacity: 0.9; padding-top: 0px; }

/* ============================================================
   CONTAINERS
   ============================================================ */
.site-container,
.container,
.layout-container {
  max-width: var(--site-max-width);
  width: 100%;
  margin: 0 auto;
  padding: 0 var(--site-padding-desktop);
}

@media (max-width: 1024px) {
  .site-container, .container, .layout-container { padding: 0 var(--site-padding-tablet); }
}
@media (max-width: 768px) {
  .site-container, .container, .layout-container { padding: 0 var(--site-padding-mobile); }
}

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero-section {
  padding: 60px 0 80px;
  background: linear-gradient(180deg, #f8fbff 0%, #ffffff 100%);
  position: relative;
  overflow: hidden;
}

.hero-section .container {
  display: flex;
  align-items: stretch; /* Enforces equal height on both columns */
  justify-content: space-between;
  gap: 40px;
  position: relative;
  z-index: 1;
}
.hero-section {
  padding-bottom: 0 !important;
}

.hero-section .site-container {
  padding-bottom: 0 !important;
}


/* ------------------------------------------------------------
   LEFT COLUMN
   ------------------------------------------------------------ */
.hero-left {
  flex: 0 0 55%;
  max-width: 55%;
  display: flex;
  flex-direction: column;
  /* justify-content: space-between;  */
}

.hero-left-content {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.hero-left h1 {
  font-size: var(--t-hero, 42px);
  font-weight: var(--fw-display, 800);
  line-height: var(--lh-display, 1.15);
  letter-spacing: var(--ls-display, -0.02em);
  color: var(--h-ink, #0f172a);
  margin: 0;
}

.hero-description {
  font-size: 16px;
  line-height: 1.6;
  color: #475569;
  margin: 0;
}

.hero-left .guarantee {
  display: inline-flex;
  align-items: center;
  flex-wrap: nowrap;
  white-space: nowrap;
  gap: 6px;
  font-size: 13.5px;
  color: #64748b;
  margin-top: 10px;
}

/* ------------------------------------------------------------
   MANAGED CALLOUT BANNER
   ------------------------------------------------------------ */
.managed-callout {
  width: 100%;
  max-width: 100%;
  margin-top: 28px;
  padding: 16px 24px;
  background: rgba(240, 246, 255, 0.85);
  border: 1px solid rgba(0, 105, 255, 0.12);
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  box-sizing: border-box;
}

.managed-callout-text {
  /* display: flex; */
  align-items: center;
  gap: 12px;
  flex: 1 1 auto;
}

.managed-callout-text strong {
  font-size: 16px;
  font-weight: 700;
  color: #0f172a;
  white-space: nowrap;
}

.managed-callout-text p {
  margin: 0;
  font-size: 14.5px;
  color: #475569;
  white-space: nowrap;
}

.managed-callout-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: #0069ff;
  color: #ffffff;
  font-weight: 600;
  font-size: 14px;
  border-radius: 999px;
  text-decoration: none;
  white-space: nowrap;
  flex-shrink: 0;
  transition: background 0.2s ease, transform 0.2s ease;
}

.managed-callout-btn:hover {
  background: #0052cc;
  transform: translateY(-1px);
}

/* ------------------------------------------------------------
   RIGHT COLUMN (FORM CONTAINER)
   ------------------------------------------------------------ */
.hero-right {
  flex: 0 0 42%;
  max-width: 42%;
  display: flex;
  align-items: flex-start;
  justify-content: center;
}

.hero-visual-link {
  display: block;
  width: 100%;
  max-width: 560px;
  text-decoration: none;
  border-radius: 0;
  overflow: visible;
  box-shadow: none;
  border: none;
  background: transparent;
  transition: none;
}

.hero-visual-image {
  display: block;
  width: 80%;
  height: 70%;
  object-fit: contain;
}

/* ------------------------------------------------------------
   RESPONSIVE BREAKPOINTS
   ------------------------------------------------------------ */
@media (max-width: 1200px) {
  .hero-left {
    flex: 0 0 52%;
    max-width: 52%;
  }
  .hero-right {
    flex: 0 0 45%;
    max-width: 45%;
  }
  .managed-callout-text p {
    white-space: normal;
  }
}

@media (max-width: 767px) {
  .hero-section .container {
    flex-direction: column;
    align-items: stretch;
    gap: 40px;
  }
  .hero-left,
  .hero-right {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .hero-visual-link {
    max-width: 100%;
  }
  .managed-callout {
    margin-top: 32px;
  }
}

@media (max-width: 640px) {
  .hero-left .guarantee {
    white-space: normal;
    flex-wrap: wrap;
  }
  .managed-callout {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    padding: 18px;
  }
  .managed-callout-text {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }
  .managed-callout-text strong {
    white-space: normal;
  }
  .managed-callout-btn {
    width: 100%;
    justify-content: center;
  }
  .hero-visual-link {
    max-width: 100%;
  }
}


/* ============================================================
   SHARED BITS
   ============================================================ */
.feature-list { list-style: none; margin: 0 0 0px; }
.feature-list li { margin-bottom: 12px; font-size: 16px; color: var(--h-ink); display: flex; align-items: center; }
.feature-list li::before { content: "\2713"; color: var(--h-accent-text); margin-right: 10px; font-weight: bold; font-size: 18px; }

.header { max-width: 800px; margin: 0 auto; text-align: center; }

.buttons { display: flex; gap: 16px; margin-bottom: 0px; flex-wrap: wrap; }

.start-btn, .trial-btn {
  padding: 14px 32px;
  border-radius: 10px;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  font-weight: 600;
  letter-spacing: 0.02em;
  font-family: inherit;
  line-height: 1.5;
}

.start-btn {
  display: inline-block;
  background: var(--btn-grad);
  color: #fff;
  text-decoration: none;
  border: none;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 105, 255, 0.25);
}

.trial-btn {
  display: inline-block;
  border: 2px solid #e5e7eb;
  background: white;
  color: #120A1F;
  text-decoration: none;
}

.start-btn:hover,
.start-btn:focus,
.start-btn:active {
  background: var(--btn-grad);
  color: #fff;
  border: none;
  box-shadow: 0 8px 20px rgba(0, 105, 255, 0.25);
  transform: none;
  text-decoration: none;
}

.trial-btn:hover,
.trial-btn:focus,
.trial-btn:active {
  background: #fff;
  color: #120A1F;
  border: 2px solid #e5e7eb;
  box-shadow: none;
  transform: none;
  text-decoration: none;
}

.guarantee { font-size: 14px; color: #0052cc; display: flex; align-items: center; gap: 6px; font-weight: 600; margin-left: 10px; }

/* Second guarantee line under the hero (7-Day Money-Back Guarantee),
   added below the existing "99.5% Uptime · Root Access · DDoS
   Protection" line. Reuses .guarantee's look, just stacked below it. */
.guarantee-secondary { margin-top: 8px; }

/* ============================================================
   GLOSSY BUTTON SYSTEM
   The sweep now animates `transform` instead of `left`.
   Same visual, but it no longer forces layout on every frame
   for ~20 elements simultaneously. This was the single largest
   contributor to main-thread work on this page.
   ============================================================ */
.start-btn,
.trial-btn,
.vps-contact-btn,
.customized-btn,
.chat-now-btn,
.security-cta-btn,
.datacenter-btn,
.empower-btn,
.success-btn,
.managed-callout-btn,
.hero-btn-submit,
.hero-btn-close-success,
.testimonial-nav-btn,
.deploy-tab,
.vpsw-btn,
.vpsw-cta,
.vps-btn {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.start-btn::after,
.trial-btn::after,
.vps-contact-btn::after,
.customized-btn::after,
.chat-now-btn::after,
.security-cta-btn::after,
.datacenter-btn::after,
.empower-btn::after,
.success-btn::after,
.managed-callout-btn::after,
.hero-btn-submit::after,
.hero-btn-close-success::after,
.testimonial-nav-btn::after,
.deploy-tab.active::after,
.vpsw-btn-next::after,
.vpsw-cta-solid::after,
.vpsw-cta-ghost::after,
.vps-btn::after {
  content: "";
  position: absolute;
  top: -50%;
  left: -120%;
  width: var(--gloss-width);
  height: 200%;
  background: linear-gradient(
    115deg,
    transparent 0%,
    rgba(255, 255, 255, 0.15) 35%,
    rgba(255, 255, 255, 0.55) 50%,
    rgba(255, 255, 255, 0.15) 65%,
    transparent 100%
  );
  transform: translate3d(0, 0, 0) skewX(-25deg);
  animation: glossyMove var(--gloss-speed) linear infinite;
  pointer-events: none;
  z-index: 1;
}

.trial-btn::after,
.customized-btn::after,
.chat-now-btn::after,
.hero-btn-close-success::after,
.testimonial-nav-btn::after,
.vpsw-cta-ghost::after {
  background: linear-gradient(
    115deg,
    transparent 0%,
    rgba(0, 105, 255, 0.06) 35%,
    rgba(0, 105, 255, 0.20) 50%,
    rgba(0, 105, 255, 0.06) 65%,
    transparent 100%
  );
}

/* left:-120% -> left:140% is a 260% travel of the *button* width.
   The sweep is 60% wide, so 260/60 = 433.33% of its own width. */
@keyframes glossyMove {
  from { transform: translate3d(0, 0, 0) skewX(-25deg); }
  to   { transform: translate3d(433.33%, 0, 0) skewX(-25deg); }
}

.start-btn > *,
.trial-btn > *,
.vps-contact-btn > *,
.customized-btn > *,
.chat-now-btn > *,
.security-cta-btn > *,
.datacenter-btn > *,
.empower-btn > *,
.success-btn > *,
.managed-callout-btn > *,
.hero-btn-submit > *,
.testimonial-nav-btn > *,
.vpsw-btn > *,
.vpsw-cta > * { position: relative; z-index: 2; }

/* ============================================================
   KPI STRIP
   ============================================================ */
.kpi-strip { background: white; padding: 20px 0; overflow: hidden; color: var(--h-ink); content-visibility: auto; contain-intrinsic-size: auto 72px; }
.kpi-strip .kpi-container, .kpi-strip > .site-container, .kpi-strip > .container, .kpi-strip > .layout-container {
  max-width: none; width: 100%; padding-left: 0; padding-right: 0; margin-left: 0; margin-right: 0;
}
.kpi-marquee { width: 100%; overflow: hidden; }
.kpi-track {
  display: flex;
  gap: 40px;
  will-change: transform;
  animation: kpi-scroll var(--kpi-speed, 40s) linear infinite;
}
@keyframes kpi-scroll {
  0% { transform: translate3d(0, 0, 0); }
  100% { transform: translate3d(calc(-1 * var(--kpi-shift, 1000px)), 0, 0); }
}
.kpi-seq { display: flex; gap: 40px; flex-shrink: 0; }
.kpi-card { background: transparent; border-radius: 12px; padding: 4px 8px; text-align: center; color: rgb(0, 0, 0); min-width: 120px; }
.kpi-k { font-size: 24px; font-weight: 900; margin-bottom: 4px; }
.kpi-l { font-size: 12px; opacity: 1; color: #3f3f46; text-transform: uppercase; letter-spacing: 0.5px; }

/* ============================================================
   WHY CHOOSE — BOLD CARD LAYOUT (wch-) [GLOSSY - NO HOVER / NO NUMBERS]
   ============================================================ */
.wch {
  position: relative;
  padding: 88px 0 92px;
  background:
    radial-gradient(1200px 520px at 15% -10%, rgba(0, 105, 255, 0.12) 0%, transparent 65%),
    radial-gradient(900px 480px at 110% 20%, rgba(79, 70, 229, 0.10) 0%, transparent 65%),
    linear-gradient(180deg, #ffffff 0%, #f4f8ff 55%, #ffffff 100%);
  overflow: hidden;
  content-visibility: auto;
  contain-intrinsic-size: auto 1400px;
}

.wch::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0, 105, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 105, 255, 0.035) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse at 50% 40%, #000 35%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse at 50% 40%, #000 35%, transparent 80%);
  pointer-events: none;
}

.wch .why-choose-container { position: relative; z-index: 1; }

.wch-head { text-align: center; max-width: 820px; margin: 0 auto 56px; }
.wch-head .deploy-eyebrow { margin-bottom: 14px; }
.wch-title {
  font-size: var(--t-section, 36px);
  font-weight: var(--fw-display, 800);
  line-height: var(--lh-heading, 1.2);
  letter-spacing: var(--ls-display, -0.02em);
  color: var(--h-ink, #0f172a);
  margin: 0 0 16px;
}
.wch-sub { font-size: var(--t-lead, 17px); line-height: var(--lh-lead, 1.6); color: var(--h-lead, #475569); margin: 0; }

/* ------------------------------------------------------------
   GRID CONFIGURATION:
   Row 1-2: Big Card Left (3 cols x 2 rows) | 2 Small Cards Right (3 cols x 1 row each)
   Row 3-4: 2 Small Cards Left (3 cols x 1 row each) | Big Card Right (3 cols x 2 rows)
   ------------------------------------------------------------ */
.wch-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-template-rows: repeat(4, minmax(220px, auto));
  gap: 22px;
  width: min(100%, calc(var(--site-max-width, 1600px) - 32px));
  max-width: 100%;
  margin: 0 auto;
}
@media (min-width: 1600px) { .wch-grid { width: 100%; } }

/* ------------------------------------------------------------
   STATIC GLOSSY / GLASSMORPHISM CARD STYLING (HOVER REMOVED)
   ------------------------------------------------------------ */
.wch-card {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  isolation: isolate;
  
  /* Glassmorphism Surface Base */
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(16px) saturate(180%);
  -webkit-backdrop-filter: blur(16px) saturate(180%);
  
  /* Glossy Specular Border & Shadow */
  border: 1px solid rgba(255, 255, 255, 0.8);
  box-shadow: 
    0 10px 30px -10px rgba(0, 105, 255, 0.08),
    0 1px 3px 0 rgba(15, 23, 42, 0.04),
    inset 0 1px 1px 0 rgba(255, 255, 255, 0.9);
}

/* Glass Reflection Highlight Overlay */
.wch-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 45%;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.45) 0%, rgba(255, 255, 255, 0) 100%);
  pointer-events: none;
  z-index: 0;
}

.wch-card-bg {
  position: absolute; inset: 0; z-index: -1;
  background: radial-gradient(520px 260px at 0% 0%, rgba(0, 105, 255, 0.06) 0%, transparent 60%), linear-gradient(180deg, rgba(255, 255, 255, 0.5) 0%, rgba(255, 255, 255, 0.8) 100%);
  pointer-events: none;
}

/* Positioning Rules for Alternating Grid Layout */
.wch-card:nth-of-type(1) { grid-column: 1 / span 3; grid-row: 1 / span 2; } /* Card 01: Big (Left) */
.wch-card:nth-of-type(2) { grid-column: 4 / span 3; grid-row: 1 / span 1; } /* Card 02: Small (Right Top) */
.wch-card:nth-of-type(3) { grid-column: 4 / span 3; grid-row: 2 / span 1; } /* Card 03: Small (Right Bottom) */

.wch-card:nth-of-type(4) { grid-column: 1 / span 3; grid-row: 3 / span 1; } /* Card 04: Small (Left Top) */
.wch-card:nth-of-type(5) { grid-column: 1 / span 3; grid-row: 4 / span 1; } /* Card 05: Small (Left Bottom) */
.wch-card:nth-of-type(6) { grid-column: 4 / span 3; grid-row: 3 / span 2; } /* Card 06: Big (Right) */

/* Specific Background Variations */
.wch-card.wch-hero { color: #0f172a; }
.wch-card.wch-hero .wch-card-bg {
  background: radial-gradient(620px 300px at 100% 120%, rgba(0, 105, 255, 0.15) 0%, transparent 60%), radial-gradient(480px 240px at -10% -10%, rgba(124, 58, 237, 0.08) 0%, transparent 60%), linear-gradient(135deg, rgba(255, 255, 255, 0.8) 0%, rgba(241, 247, 255, 0.8) 100%);
}

.wch-card.wch-6 .wch-card-bg {
  background: linear-gradient(135deg, rgba(0, 105, 255, 0.06) 0%, rgba(255, 255, 255, 0) 55%), radial-gradient(520px 260px at 100% 100%, rgba(250, 204, 21, 0.10) 0%, transparent 60%), rgba(255, 255, 255, 0.8);
}

/* Inner Layout & Components */
.wch-card-inner {
  position: relative;
  z-index: 1;
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 28px;
  box-sizing: border-box;
}
.wch-hero .wch-card-inner { padding: 32px; }

.wch-card-top { display: flex; align-items: flex-start; justify-content: flex-start; gap: 12px; }

.wch-icon {
  width: 52px; height: 52px; border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  color: #ffffff;
  background: #0069ff;
  flex: 0 0 auto;
}
.wch-card:nth-of-type(2) .wch-icon { background: #0069ff}
.wch-card:nth-of-type(3) .wch-icon { background: #0069ff}
.wch-card:nth-of-type(4) .wch-icon { background: #0069ff }
.wch-card:nth-of-type(5) .wch-icon { background: #0069ff }
.wch-card:nth-of-type(6) .wch-icon { background: #0069ff }
.wch-icon svg { width: 24px; height: 24px; stroke-width: 2.1; fill: none; stroke: currentColor; }

.wch-card-body { flex: 1 1 auto; display: flex; flex-direction: column; justify-content: flex-start; }

.wch-card-body h3 { font-size: 20px; font-weight: 800; line-height: 1.25; letter-spacing: -0.01em; color: var(--h-ink, #0f172a); margin: 0 0 10px; }
.wch-hero .wch-card-body h3 { font-size: 24px; margin-bottom: 12px; }
.wch-card-body p { font-size: 14.5px; line-height: 1.65; color: var(--h-lead, #475569); margin: 0; }
.wch-hero .wch-card-body p { font-size: 15.5px; }

.wch-stat-row {
  display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 10px;
  margin-top: 22px; padding: 18px 18px 16px; border-radius: 16px;
  background: rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.8);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.02);
}
.wch-stat { display: flex; flex-direction: column; align-items: flex-start; gap: 2px; }
.wch-stat b { font-size: 16px; font-weight: 800; line-height: 1.1; color: #0052cc; }
.wch-stat small { font-size: 11.5px; font-weight: 600; color: #64748b; letter-spacing: 0.01em; }

.wch-badge-row { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 20px; }
.wch-badge {
  display: inline-flex; align-items: center; padding: 7px 12px; border-radius: 999px;
  font-size: 12.5px; font-weight: 700; letter-spacing: 0.01em;
  color: #4338ca; background: rgba(139, 92, 246, 0.12); border: 1px solid rgba(139, 92, 246, 0.22);
}

.wch-callout--stack { 
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  width: 100%; 
  margin-top: 22px; 
}
.wch-callout-k {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  padding: 16px 10px 14px; border-radius: 14px;
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(0, 105, 255, 0.15); text-align: center;
  backdrop-filter: blur(4px);
}
.wch-callout-k b { font-size: 17px; font-weight: 800; line-height: 1.1; color: #0052cc; margin-bottom: 4px; }
.wch-callout-k small { font-size: 11.5px; font-weight: 600; color: #64748b; letter-spacing: 0.01em; line-height: 1.25; }

/* Responsive Adjustments */
@media (max-width: 1200px) {
  .wch-grid { grid-template-columns: repeat(2, 1fr); grid-template-rows: auto; }
  .wch-card:nth-of-type(1), .wch-card:nth-of-type(2), .wch-card:nth-of-type(3),
  .wch-card:nth-of-type(4), .wch-card:nth-of-type(5), .wch-card:nth-of-type(6) { 
    grid-column: span 2; grid-row: auto; 
  }
}

@media (max-width: 640px) {
  .wch { padding: 56px 0 60px; }
  .wch-grid { grid-template-columns: 1fr; gap: 16px; }
  .wch-card:nth-of-type(1), .wch-card:nth-of-type(2), .wch-card:nth-of-type(3),
  .wch-card:nth-of-type(4), .wch-card:nth-of-type(5), .wch-card:nth-of-type(6) { 
    grid-column: span 1; 
  }
  .wch-card-inner { padding: 22px; }
  .wch-stat-row { grid-template-columns: repeat(3, 1fr); }
}

/* ============================================================
   PRICING - VPS PLAN TABLE (17 plans)
   ============================================================ */
.vps-plans-section { padding: 40px 0; background: linear-gradient(180deg, white 0%, #f9fbff 100%); }
.vps-container { text-align: center; display: flex; flex-direction: column; align-items: center; justify-content: center; }
.vps-title { text-align: center; width: 100%; }
.vps-description { max-width: 600px; margin-left: auto; margin-right: auto; text-align: center; }

/* "24/7 Expert Support · Instant Setup · Great fit for dev teams
   and admins" highlight strip, shown above the pricing table. */
.vps-plan-highlights {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 12px 28px;
  list-style: none;
  margin: 0 0 8px;
  padding: 0;
}
.vps-plan-highlights li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14.5px;
  font-weight: 600;
  color: var(--h-ink);
}
.vps-plan-highlights .vc-i {
  width: 18px;
  height: 18px;
  color: var(--h-accent-text);
}
@media (max-width: 600px) {
  .vps-plan-highlights { gap: 10px 18px; }
  .vps-plan-highlights li { font-size: 13.5px; }
}

#plans { scroll-margin-top: 140px; }
#vps-plans-section { scroll-margin-top: 100px; }

.vps-table-wrap {
  width: 100%;
  margin-top: 32px;
  background: white;
  border: 1px solid var(--color-border);
  border-radius: 12px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.vps-price-table {
  width: 100%;
  min-width: 860px;
  border-collapse: collapse;
  background: white;
  text-align: left;
}

.vps-price-table caption { text-align: left; }

.vps-price-table thead th {
  position: sticky;
  top: 0;
  z-index: 2;
  background: #fbfcfe;
  padding: 20px 24px;
  font-size: 15px;
  font-weight: 700;
  color: var(--h-ink);
  white-space: nowrap;
  border-bottom: 1px solid var(--color-border);
}

.vps-price-table tbody td,
.vps-price-table tbody th {
  padding: 18px 24px;
  font-size: 15px;
  font-weight: 400;
  color: var(--h-ink);
  border-bottom: 1px solid #eef1f5;
  vertical-align: middle;
  white-space: nowrap;
  text-align: left;
}

.vps-price-table tbody tr:last-child td,
.vps-price-table tbody tr:last-child th { border-bottom: none; }
.vps-price-table tbody tr { transition: background 0.18s ease; }
.vps-price-table tbody tr:hover { background: #f7faff; }

.vps-price-table .vps-plan-cell {
  font-weight: 600;
  color: var(--h-ink);
  letter-spacing: 0.01em;
}

.vps-price-table .vps-price-cell {
  font-weight: 700;
  color: var(--h-ink);
}

/* "Renews at the same price" note under the monthly price */
.vps-price-renew {
  display: block;
  margin-top: 4px;
  font-size: 11.5px;
  font-weight: 500;
  color: var(--h-lead);
  opacity: 0.7;
  white-space: normal;
}

.vps-cta-cell {
  width: 1%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
}

.vps-contact-btn {
  display: inline-block;
  min-width: 108px;
  padding: 11px 24px;
  border: none;
  border-radius: 8px;
  background: var(--btn-grad);
  color: #fff;
  font-family: inherit;
  font-size: 14.5px;
  font-weight: 600;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  box-shadow: 0 6px 14px rgba(0, 105, 255, 0.22);
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}
.vps-contact-btn:hover,
.vps-contact-btn:focus,
.vps-contact-btn:active {
  color: #fff;
  text-decoration: none;
  transform: translateY(-1px);
  box-shadow: 0 10px 20px rgba(0, 105, 255, 0.28);
}
.vps-contact-btn:focus-visible { outline: 3px solid var(--h-accent-text); outline-offset: 2px; }

/* "View Features" link below the Get Now button, opens the
   plan-features modal. */
.vps-view-features {
  appearance: none;
  border: none;
  background: none;
  padding: 0;
  font-family: inherit;
  font-size: 13px;
  font-weight: 600;
  color: var(--h-accent-text);
  text-decoration: underline;
  cursor: pointer;
  white-space: nowrap;
}
.vps-view-features:hover,
.vps-view-features:focus-visible { text-decoration: none; }

.vps-table-note {
  margin: 18px auto 0;
  max-width: 720px;
  font-size: 14px;
  line-height: 1.6;
  color: var(--h-lead);
  text-align: center;
}
.vps-table-note a { color: var(--h-accent-text); font-weight: 600; text-decoration: underline; }
.vps-table-note a:hover { text-decoration: none; }

@media (max-width: 1199px) {
  .vps-price-table thead th { padding: 16px 18px; font-size: 14.5px; }
  .vps-price-table tbody td,
  .vps-price-table tbody th { padding: 15px 18px; font-size: 14.5px; }
  .vps-contact-btn { min-width: 96px; padding: 10px 18px; font-size: 14px; }
}

@media (max-width: 767px) {
  .vps-table-wrap {
    border: none;
    background: transparent;
    box-shadow: none;
    overflow-x: visible;
    margin-top: 24px;
  }
  .vps-price-table { min-width: 0; display: block; }
  .vps-price-table thead { display: none; }
  .vps-price-table tbody { display: block; }

  .vps-price-table tbody tr {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2px 12px;
    background: white;
    border: 1px solid var(--color-border);
    border-radius: 12px;
    padding: 16px 18px 18px;
    margin-bottom: 14px;
    box-shadow: 0 6px 18px rgba(16, 24, 40, 0.05);
  }
  .vps-price-table tbody tr:hover { background: white; }

  .vps-price-table tbody td,
  .vps-price-table tbody th {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 7px 0;
    border-bottom: none;
    white-space: normal;
    font-size: 14px;
  }

  .vps-price-table tbody td::before,
  .vps-price-table tbody th::before {
    content: attr(data-label);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    color: #667085;
  }

  .vps-price-table .vps-plan-cell {
    grid-column: 1 / -1;
    justify-content: flex-start;
    font-size: 16px;
    font-weight: 700;
    padding-bottom: 12px;
    margin-bottom: 6px;
    border-bottom: 1px solid #eef1f5;
  }
  .vps-price-table .vps-plan-cell::before { content: none; }

  .vps-price-table .vps-price-cell { font-size: 16px; align-items: flex-end; flex-direction: column; }
  .vps-price-renew { text-align: right; }

  .vps-cta-cell {
    grid-column: 1 / -1;
    width: auto;
    padding-top: 14px;
    align-items: stretch;
  }
  .vps-cta-cell::before { content: none; }
  .vps-contact-btn { width: 100%; padding: 12px 20px; }
  .vps-view-features { text-align: center; padding-top: 2px; }
}

/* ============================================================
   VPS PLAN FEATURES MODAL
   ============================================================ */
.vpsf-overlay {
  position: fixed;
  inset: 0;
  z-index: 99998;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px 16px;
  background: rgba(15, 23, 42, .55);
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
}
.vpsf-overlay.vpsf-active { display: flex; }

.vpsf-modal {
  position: relative;
  width: 100%;
  max-width: 420px;
  max-height: calc(100vh - 48px);
  overflow-y: auto;
  background: white;
  border-radius: 18px;
  box-shadow: 0 24px 70px rgba(15, 23, 42, .22);
  padding: 30px 26px 26px;
  animation: vpsf-pop .2s ease-out;
}
@keyframes vpsf-pop {
  from { opacity: 0; transform: translate3d(0, 12px, 0) scale(.98); }
  to   { opacity: 1; transform: none; }
}

.vpsf-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 9px;
  background: #f1f5f9;
  color: #5b6774;
  font-size: 20px;
  line-height: 1;
  cursor: pointer;
}
.vpsf-close:hover { background: #e2e8f0; color: #0f172a; }

.vpsf-eyebrow {
  margin: 0 0 4px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--h-accent-text);
}
.vpsf-modal h3 { margin: 0 0 6px; font-size: 20px; }

.vpsf-price {
  margin: 0 0 18px;
  font-size: 14px;
  color: #5b6774;
}
.vpsf-price #vpsfPrice { font-size: 22px; font-weight: 800; color: var(--h-ink); }
.vpsf-renew { font-weight: 500; }

.vpsf-specs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin: 0 0 18px;
  padding: 14px 10px;
  background: #f8fafc;
  border-radius: 11px;
  list-style: none;
}
.vpsf-specs li { text-align: center; }
.vpsf-specs b { display: block; font-size: 16px; font-weight: 750; color: var(--h-ink); }
.vpsf-specs small { display: block; margin-top: 2px; font-size: 11px; color: #5b6774; }

.vpsf-included-label {
  margin: 0 0 8px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #5b6774;
}

.vpsf-features {
  list-style: none;
  margin: 0 0 22px;
  padding: 0;
  display: grid;
  gap: 9px;
}
.vpsf-features li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13.5px;
  color: var(--h-ink);
}
.vpsf-features .vc-i { width: 16px; height: 16px; color: #16a34a; flex: 0 0 auto; }

.vpsf-buy-btn { display: block; width: 100%; }

@media (max-width: 480px) {
  .vpsf-overlay { padding: 14px 10px; }
  .vpsf-modal { padding: 24px 18px 20px; }
  .vpsf-specs { grid-template-columns: repeat(2, 1fr); }
}

/* ============================================================
   CENTERED SECTION HEADERS
   ============================================================ */
.section-header-centered { text-align: center; margin-bottom: 40px; }
.section-description { max-width: 100%; margin-left: auto; margin-right: auto; }

/* ============================================================
   COMPARISON TABLE
   ============================================================ */
.vps-compare-section {
  padding: 60px 0;
  background: white;
  content-visibility: auto;
  contain-intrinsic-size: auto 720px;
}
.compare-table-wrap { overflow-x: auto; border-radius: 16px; border: 1px solid #e5e7eb; box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06); }
.compare-table { width: 100%; border-collapse: collapse; min-width: 760px; background: white; }
.compare-table th, .compare-table td { padding: 20px 22px; text-align: left; font-size: 14.5px; color: var(--h-ink); border-bottom: 1px solid #e5e7eb; vertical-align: top; }
.compare-table thead tr:first-child th,
.compare-table thead tr:first-child td { border-bottom: none; padding-bottom: 0; }
.compare-blank { background: transparent; }
.compare-badge-cell { padding: 0 0 12px; }
.compare-badge { display: block; text-align: center; background: #0069ff; color: #fff; font-weight: 700; font-size: 13px; text-transform: uppercase; letter-spacing: 0.4px; padding: 8px 0; border-radius: 8px 8px 0 0; }
.compare-table thead tr:nth-child(2) th { border-bottom: 1px solid #e5e7eb; }
.compare-table thead tr:nth-child(2) th h3 { margin: 0; }
.compare-table thead tr:nth-child(2) th.compare-highlight-head h3 { color: var(--h-accent-text); }
.row-label { font-weight: 700; color: var(--h-ink); white-space: nowrap; }
.compare-highlight-cell, .compare-highlight-head { background: linear-gradient(135deg, rgba(0, 105, 255, 0.06), rgba(0, 105, 255, 0.03)); }
.compare-table tbody tr:last-child td,
.compare-table tbody tr:last-child th { border-bottom: none; }
@media (max-width: 768px) {
  .compare-table th, .compare-table td { padding: 14px 16px; font-size: 13.5px; }
}

/* ============================================================
   FEATURES INCLUDED GRID
   ============================================================ */
.features-included-section {
  background: white;
  content-visibility: auto;
  contain-intrinsic-size: auto 1500px;
}
.features-included-container p { margin-left: auto; margin-right: auto; }

.vps-features-grid, .vps-features-alt .features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 40px;
  margin-top: 40px;
}

.vps-features-grid .feature-card {
  background-color: #f8f9ff;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.vps-features-grid .feature-image {
  height: 380px; display: flex; align-items: center; justify-content: center;
  padding: 20px; background-color: white;
  width: 100%; max-width: 100%;
  aspect-ratio: 4 / 3;
  box-sizing: border-box;
  overflow: hidden;
}
.vps-features-grid .feature-image img {
  max-width: 100%; max-height: 100%;
  width: auto; height: auto;
  object-fit: contain; object-position: center;
  display: block; margin: 0 auto;
}
.vps-features-grid .resources-image { background-color: white; }
.vps-features-grid .resources-icons { display: flex; flex-wrap: wrap; justify-content: center; align-items: center; width: 100%; height: 100%; padding: 20px; }
.vps-features-grid .resource-icon { width: 60px; height: 60px; background-color: white; border-radius: 10px; display: flex; align-items: center; justify-content: center; margin: 5px; box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); }
.vps-features-grid .resource-icon svg { font-size: 24px; color: #4f46e5; }

.vps-features-grid .feature-card h3 { margin: 20px 20px 10px; text-align: left; }
.vps-features-grid .feature-card p { font-size: 14px; color: var(--h-lead); padding: 0 20px 20px; text-align: left; margin: 0; }

.vps-features-grid .root-access-card { grid-column: 3; grid-row: 1 / span 2; background-color: white; display: grid; grid-template-rows: auto 1fr auto; }
.vps-features-grid .root-access-content { text-align: left; background-color: white; }
.vps-features-grid .person-image {
  height: 100%; overflow: hidden;
  width: 100%; max-width: 100%;
  display: flex; align-items: center; justify-content: center;
}
.vps-features-grid .person-image img {
  width: 100%; max-width: 100%;
  height: 100%; max-height: 100%;
  object-fit: cover; object-position: center;
  padding: 20px;
  box-sizing: border-box;
  display: block;
}
.vps-features-grid .root-access-description { padding: 20px; background-color: white; }
.vps-features-grid .root-access-description h3, .vps-features-grid .root-access-description p { text-align: left; margin-left: 0; padding-left: 0; }

.security-cta-btn {
  display: inline-block; margin-top: 16px; padding: 12px 28px;
  background: var(--btn-grad);
  color: white; border: none; border-radius: 8px; font-size: 14px; font-weight: 600;
  text-decoration: none; cursor: pointer; transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 105, 255, 0.3);
  font-family: inherit;
}
.security-cta-btn:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(0, 105, 255, 0.4); color: white; }

.vps-features-grid .backup-card { grid-column: 1 / span 2; background-color: #eafaf0; display: flex; flex-direction: column; }
.vps-features-grid .backup-content { display: flex; flex-grow: 1; }
.vps-features-grid .backup-image, .vps-features-grid .backup-text {
  flex: 1; padding: 20px; display: flex; align-items: center; justify-content: center;
  min-width: 0; max-width: 50%;
}
.vps-features-grid .backup-image img {
  max-width: 100%; max-height: 100%;
  width: auto; height: auto;
  object-fit: contain; border-radius: 5px;
  display: block;
}
.vps-features-grid .backup-text { flex-direction: column; justify-content: center; align-items: flex-start; }
.vps-features-grid .backup-text h3, .vps-features-grid .backup-text p { text-align: left; padding-left: 0; margin-left: 0; }

.vps-features-grid .vcores-card { background-color: #e3f2fd; display: flex; flex-direction: column; justify-content: space-between; grid-column: 1; }
.vps-features-grid .vcores-image {
  height: 200px; padding: 20px; display: flex; align-items: center; justify-content: center; overflow: hidden;
  width: 100%; max-width: 100%;
  flex-shrink: 0;
}
.vps-features-grid .vcores-image img {
  max-width: 100%; max-height: 150px;
  width: auto; height: auto;
  object-fit: contain; display: block;
}
.vps-features-grid .vcores-text { padding: 20px 20px 24px; flex-grow: 1; }
.vps-features-grid .vcores-text h3, .vps-features-grid .vcores-text p { text-align: left; margin-left: 0; padding-left: 0; }
.vps-features-grid .vcores-text h3 { margin: 0 0 12px; }
.vps-features-grid .vcores-text p { margin: 0; padding-bottom: 0; }

.vps-features-grid .traffic-card {
  background-color: #2f4256; color: white; position: relative; display: flex;
  flex-direction: row; justify-content: space-between; align-items: stretch;
  grid-column: 2 / span 2; padding: 0;
  min-height: 320px;
}
.vps-features-grid .traffic-content { flex-grow: 1; display: flex; flex-direction: column; }
.vps-features-grid .traffic-image {
  width: 50%; max-width: 500px; min-width: 0;
  overflow: hidden; display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; padding: 20px;
}
.vps-features-grid .traffic-image img {
  max-width: 100%; max-height: 320px;
  width: auto; height: auto;
  object-fit: contain; display: block;
}
.vps-features-grid .traffic-text { width: 50%; padding: 28px 30px; display: flex; flex-direction: column; justify-content: center; min-width: 0; }
.vps-features-grid .traffic-text h3 { text-align: left; margin: 0 0 14px; padding: 0; }
.vps-features-grid .traffic-text p { color: var(--h-lead); text-align: left; padding: 0; margin: 0; font-size: 16px; font-weight: 500; line-height: 1.65; }

@media (min-width: 1200px) {
  .vps-features-grid .traffic-image { max-width: 600px; }
  .vps-features-grid .traffic-image img { max-height: 360px; }
}

@media (max-width: 992px) {
  .vps-features-grid, .vps-features-alt .features-grid { grid-template-columns: repeat(2, 1fr); }
  .vps-features-grid .root-access-card, .vps-features-grid .backup-card { grid-column: auto; grid-row: auto; }
  .vps-features-grid .backup-content { flex-direction: column; }
  .vps-features-grid .backup-image, .vps-features-grid .backup-text { max-width: 100%; width: 100%; }
}
@media (min-width: 768px) and (max-width: 995px) {
  .vps-features-grid, .vps-features-alt .features-grid { grid-template-columns: repeat(2, 1fr); gap: 18px; }
  .vps-features-grid .root-access-card, .vps-features-grid .backup-card, .vps-features-grid .traffic-card, .vps-features-grid .vcores-card { grid-column: auto; grid-row: auto; }
  .vps-features-grid .traffic-card { flex-direction: row; padding: 0; min-height: auto; }
  .vps-features-grid .traffic-image { width: 45%; max-width: 300px; padding: 15px; }
  .vps-features-grid .traffic-text { width: 55%; padding: 18px 18px 20px; }
  .vps-features-grid .feature-image { height: 170px; }
  .vps-features-grid .vcores-image { height: 180px; }
  .vps-features-grid .traffic-image img { max-height: 200px; }
  .vps-features-grid .person-image img { padding: 14px; }
}
@media (max-width: 768px) {
  .vps-features-grid, .vps-features-alt .features-grid { grid-template-columns: 1fr; gap: 24px; }
  .vps-features-grid .vcores-text, .vps-features-grid .backup-text { text-align: center; }
  .vps-features-grid .vcores-text h3,
  .vps-features-grid .vcores-text p,
  .vps-features-grid .backup-text h3,
  .vps-features-grid .backup-text p,
  .vps-features-grid .root-access-description h3,
  .vps-features-grid .root-access-description p,
  .vps-features-grid .traffic-text h3,
  .vps-features-grid .traffic-text p {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    padding-left: 0;
    padding-right: 0;
  }
  .vps-features-grid .traffic-card { flex-direction: column; min-height: auto; padding: 0; }
  .vps-features-grid .traffic-image, .vps-features-grid .traffic-text { width: 100%; }
  .vps-features-grid .traffic-image { height: auto; padding: 20px 20px 8px; }
  .vps-features-grid .traffic-image img { max-height: 220px; width: auto; max-width: 100%; }
  .vps-features-grid .traffic-text { padding: 8px 20px 24px; }
  .vps-features-grid .traffic-text h3 { margin: 0 auto 12px; }
  .vps-features-grid .traffic-text p { margin: 0 auto; }
  .vps-features-grid .vcores-image { height: auto; padding: 20px 20px 10px; }
  .vps-features-grid .vcores-image img { max-height: 140px; }
  .vps-features-grid .vcores-text { padding: 10px 20px 24px; }
  .vps-features-grid .vcores-text h3 { margin: 0 auto 12px; }
  .vps-features-grid .vcores-text p { margin: 0 auto; }
  .security-cta-btn { display: block; text-align: center; margin: 16px auto 0; }
  .vps-features-grid .root-access-card, .vps-features-grid .backup-card, .vps-features-grid .traffic-card, .vps-features-grid .vcores-card { grid-column: auto; grid-row: auto; }
  .vps-features-grid .backup-card h3 { align-items: center; justify-content: center; align-self: center; text-align: center; }
  .vps-features-grid .backup-image { padding: 20px 20px 10px; }
  .vps-features-grid .backup-text { padding: 10px 20px 24px; align-items: center; }
  .vps-features-grid .person-image { height: 240px; }
  .vps-features-grid .person-image img { padding: 16px; }
  .vps-features-grid .root-access-description { padding: 16px 20px 24px; }
  .vps-features-grid .root-access-description h3 { margin: 0 auto 12px; }
  .vps-features-grid .root-access-description p { margin: 0 auto; }
  .vps-features-grid .feature-card h3 { margin-left: auto; margin-right: auto; text-align: center; }
  .vps-features-grid .feature-card p { padding: 0 20px 20px; text-align: center; }
}
@media (max-width: 600px) {
  .vps-features-grid, .vps-features-alt .features-grid { gap: 20px; }
  .vps-features-grid .feature-card { border-radius: 12px; }
  .vps-features-grid .feature-card p { padding: 0 16px 18px; }
  .vps-features-grid .feature-image { height: auto; min-height: 150px; padding: 14px; aspect-ratio: auto; }
  .vps-features-grid .feature-image img { max-height: 150px; }
  .vps-features-grid .vcores-image { padding: 16px 16px 8px; }
  .vps-features-grid .vcores-image img { max-height: 120px; }
  .vps-features-grid .vcores-text { padding: 8px 16px 20px; }
  .vps-features-grid .backup-image { padding: 16px 16px 8px; }
  .vps-features-grid .backup-text { padding: 8px 16px 20px; }
  .vps-features-grid .person-image { height: 200px; }
  .vps-features-grid .person-image img { padding: 14px; }
  .vps-features-grid .root-access-description { padding: 14px 16px 20px; }
  .vps-features-grid .traffic-image { padding: 16px 16px 8px; }
  .vps-features-grid .traffic-image img { max-height: 180px; }
  .vps-features-grid .traffic-text { padding: 8px 16px 20px; }
}
@media (max-width: 420px) {
  .vps-features-grid, .vps-features-alt .features-grid { gap: 16px; }
  .vps-features-grid .resources-icons { padding: 12px; }
  .vps-features-grid .resource-icon { width: 48px; height: 48px; }
  .vps-features-grid .resource-icon svg { font-size: 20px; }
  .vps-features-grid .feature-image { min-height: 130px; padding: 10px; }
  .vps-features-grid .feature-image img { max-height: 120px; }
  .vps-features-grid .vcores-image { padding: 14px 14px 6px; }
  .vps-features-grid .vcores-image img { max-height: 100px; }
  .vps-features-grid .vcores-text { padding: 6px 14px 18px; }
  .vps-features-grid .vcores-text h3 { margin-bottom: 10px; }
  .vps-features-grid .traffic-image { position: relative; width: 100%; overflow: hidden; height: auto; padding: 14px 14px 4px; }
  .vps-features-grid .traffic-image img { max-height: 150px; }
  .vps-features-grid .traffic-text { padding: 6px 14px 18px; }
  .vps-features-grid .traffic-text h3 { margin-bottom: 10px; }
  .vps-features-grid .backup-image { padding: 14px 14px 6px; }
  .vps-features-grid .backup-text { padding: 6px 14px 18px; }
  .vps-features-grid .person-image { height: 180px; }
  .vps-features-grid .person-image img { padding: 10px; }
  .vps-features-grid .root-access-description { padding: 12px 14px 18px; }
  .vps-features-grid { height: auto; }
  .vps-features-grid .feature-card p { padding: 0 14px 16px; }
}

/* ============================================================
   CTA + GUARANTEE BANNERS
   ============================================================ */
.customized-cta, .guarantee-section {
  max-width: var(--site-max-width);
  margin: 0 auto;
  width: 100%;
  content-visibility: auto;
  contain-intrinsic-size: auto 460px;
}
@media (max-width: 1024px) { .customized-cta, .guarantee-section { padding-left: var(--site-padding-tablet); padding-right: var(--site-padding-tablet); } }
@media (max-width: 768px) { .customized-cta, .guarantee-section { padding-left: var(--site-padding-mobile); padding-right: var(--site-padding-mobile); } }

.customized-container, .guarantee-container {
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  background: linear-gradient(135deg, #0069ff, #0069ff);
  color: white;
  border-radius: 24px;
  padding: 20px 50px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.customized-content, .guarantee-content { flex: 1; }
.guarantee-content { flex: 4.3; }
.guarantee-image { flex: 0.9; }
.customized-content p, .guarantee-content p { margin-bottom: 30px; }

.customized-content .feature-list li { color: white; }
.customized-content .feature-list li::before { color: white; }

.customized-btn, .chat-now-btn {
  display: inline-block;
  padding: 16px 32px; background: white; color: #0052cc; border: none; border-radius: 10px;
  font-family: inherit; font-size: 16px; font-weight: 600; line-height: 1.2; cursor: pointer;
  text-decoration: none; text-align: center;
  transition: all 0.3s ease; margin-top: 10px;
}
.customized-btn:hover, .chat-now-btn:hover { color: #0052cc; text-decoration: none; transform: translateY(-2px); box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2); }

.customized-image, .guarantee-image { flex: 1; text-align: center; position: relative; }
.customized-image img, .guarantee-image img {
  max-width: 100%; height: auto; border-radius: 16px;
  aspect-ratio: 4 / 3; object-fit: contain;
}


@media (max-width: 992px) {
  .customized-container, .guarantee-container { flex-direction: column; gap: 30px; padding: 30px; }
  .customized-content, .guarantee-content { padding: 20px 0; text-align: center; }
  .customized-content .feature-list li { justify-content: center; }
}
@media (max-width: 768px) {
  .customized-container, .guarantee-container { padding: 25px; }
}
@media (max-width: 576px) {
  .customized-container, .guarantee-container { padding: 20px; gap: 20px; border-radius: 16px; }
  .guarantee-content { padding: 10px 0; }
  .guarantee-content p { margin-bottom: 20px; }
}

/* ============================================================
   DATACENTER
   ============================================================ */
.datacenter-section { padding: 40px 0; background: #f8fbff; background-image: radial-gradient(#e2e8f0 1px, transparent 1px); background-size: 30px 30px; position: relative; overflow: hidden; }
.datacenter-container { display: flex; align-items: center; gap: 60px; }

.datacenter-globe { flex: 1; text-align: left; position: relative; }
.datacenter-globe::before, .datacenter-globe::after {
  content: ''; position: absolute; width: 10px; height: 10px; background-color: #0069ff; border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(0, 105, 255, 0.3); animation: pulse 2s infinite;
}
.datacenter-globe::before { top: 30%; right: 35%; }
.datacenter-globe::after { bottom: 40%; left: 40%; }

@keyframes pulse {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(0, 105, 255, 0.7); }
  70% { transform: scale(1); box-shadow: 0 0 0 10px rgba(0, 105, 255, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(0, 105, 255, 0); }
}

.datacenter-globe img { max-width: 100%; height: auto; animation: float 6s ease-in-out infinite; }
@keyframes float {
  0% { transform: translate3d(0, 0, 0); }
  50% { transform: translate3d(0, -15px, 0); }
  100% { transform: translate3d(0, 0, 0); }
}

.datacenter-content h2 { text-align: left; }
.datacenter-content p { text-align: left; max-width: 100%; }
.datacenter-btn {
  padding: 16px 32px; background: #0069ff; color: white; border: none; border-radius: 10px;
  font-family: inherit; font-size: 16px; font-weight: 600; cursor: pointer;
  transition: all 0.3s ease; margin-top: 10px;
}
.datacenter-btn:hover { background: #0058d6; transform: translateY(-2px); box-shadow: 0 6px 20px rgba(0, 105, 255, 0.35); }

@media (max-width: 900px) {
  .datacenter-container { flex-direction: column; gap: 30px; }
  .datacenter-globe { order: 1; }
  .datacenter-content { order: 2; text-align: center; }
  .datacenter-content h2, .datacenter-content p { text-align: center; margin-left: auto; margin-right: auto; }
  .datacenter-btn { margin: 10px auto; display: block; }
}

/* ============================================================
   EMPOWER / SUCCESS
   ============================================================ */
.empower-section, .success-section { padding: 40px 0; }
.success-section { background: #f8fbff; }
.empower-container, .success-container { display: flex; align-items: center; gap: 60px; }

.empower-content, .success-content { flex: 1; }
.empower-content p, .success-content p { margin-bottom: 30px; }

.empower-features, .success-features { list-style: none; margin-bottom: 30px; }
.empower-features li, .success-features li { padding: 12px 0; font-size: 16px; color: var(--h-ink); display: flex; align-items: center; }
.empower-features li::before, .success-features li::before { content: "\2713"; color: var(--h-accent-text); margin-right: 12px; font-weight: bold; }

.empower-btn, .success-btn {
  padding: 16px 32px; background: var(--btn-grad); color: white; border: none;
  border-radius: 10px; font-family: inherit; font-size: 16px; font-weight: 600; cursor: pointer; transition: all 0.3s ease;
}
.empower-btn:hover, .success-btn:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(0, 105, 255, 0.35); }

.empower-image { flex: 1; text-align: right; }
.success-image { flex: 1; text-align: left; max-width: 550px; }
.empower-image img, .success-image img { max-width: 100%; height: auto; border-radius: 16px; }

/* ============================================================
   MANAGED VPS FEATURE ROWS
   ============================================================ */
.vps-hosting-section {
  padding: 40px 0;
  background-color: #f8fbff;
  position: relative;
  overflow: hidden;
  content-visibility: auto;
  contain-intrinsic-size: auto 1300px;
}

.header-section { text-align: center; margin-bottom: 40px; }
.header-section .subtitle { max-width: 800px; margin: 0 auto; }

.features-grid { display: flex; flex-direction: column; gap: 20px; }
.feature-row { display: flex; gap: 20px; }
.top-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.bottom-row { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 20px; }

.vps-hosting-section .feature-card { border-radius: 15px; overflow: hidden; display: flex; position: relative; min-height: 200px; box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15); }
.blue-bg { background-color: #0062ee; }
.blue-light-bg { background-color: #fafafa; color: #333; }

.vps-hosting-section .feature-content { padding: 30px; z-index: 2; min-width: 0; }
#flexOne .feature-content, #flexOne .feature-image { flex: 1; }

.vps-hosting-section .feature-card h3 { margin: 0 0 15px; }
.blue-light-bg h3 { color: var(--h-accent-text); }
.vps-hosting-section .feature-card p { font-size: 14.5px; margin: 0 0 16px; padding: 0; line-height: 1.7; }
.blue-light-bg p { color: #120A1F; }
.blue-bg p { color:#120A1F; }
.vps-hosting-section .feature-card p:last-child { margin-bottom: 0; }

.feature-image {
  position: relative; overflow: hidden; display: flex; align-items: center; justify-content: center;
  background-color: white;
  width: 100%; max-width: 100%; min-width: 0; flex-shrink: 0;
}
.feature-image img {
  width: auto; height: auto;
  max-width: 100%; max-height: 100%;
  object-fit: contain; object-position: center;
  display: block;
}

.vps-hosting-section .top-row .feature-card { display: flex; flex-direction: row; align-items: stretch; }
.vps-hosting-section .top-row .feature-content,
.vps-hosting-section .top-row .feature-image { width: 50%; min-width: 0; }
.vps-hosting-section .top-row .feature-image { max-height: none; height: auto; padding: 20px; min-height: 240px; }
.vps-hosting-section .top-row .feature-image img { max-height: 300px; }

.vps-hosting-section .bottom-row .feature-card { display: flex; flex-direction: column; }
.vps-hosting-section .bottom-row .feature-content { width: 100%; padding: 24px 24px 20px; }
.vps-hosting-section .bottom-row .feature-image { width: 100%; height: auto; min-height: 140px; padding: 14px; order: -1; }
.vps-hosting-section .bottom-row .feature-image img { max-height: 150px; }

.progress-dots { display: flex; gap: 11px; margin-top: 20px; justify-content: center; align-items: center; }
.dot { width: 30px; height: 5px; background-color: #d0d0d0; border-radius: 5px; }
.dot.active { background-color: #0069ff; }

.security-icons { display: flex; gap: 20px; margin: 0 0 16px; justify-content: center; align-items: center; }
.security-icon { width: 60px; height: 60px; background-color: rgba(255, 255, 255, 0.24); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 24px; color: #fff; }

.resource-icons { display: flex; flex-wrap: wrap; gap: 16px; margin-top: 16px; justify-content: center; align-items: center; }
.resource-icon { width: 48px; height: 48px; background-color: rgba(0, 120, 255, 0.1); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 18px; color: #0052cc; }

.scalability-chart {
  display: flex; align-items: center; justify-content: center; padding: 16px 16px 20px;
  width: 100%; max-width: 100%; min-height: 0; order: -1;
}
.scalability-icon {
    max-width: 110px;
    max-height: 140px;
    width: auto;
    height: auto;
    object-fit: contain;
    display: block;
    filter: brightness(0);
}

.os-badges { position: absolute; bottom: 12px; right: 12px; display: flex; gap: 8px; flex-wrap: wrap; justify-content: flex-end; }
.os-badge { background-color: rgba(255, 255, 255, 0.96); padding: 4px 9px; border-radius: 5px; font-size: 11px; font-weight: 700; }
.os-badge.linux { color: #333; }
.os-badge.windows { color: #0052cc; }

@media (max-width: 992px) {
  .vps-hosting-section .top-row,
  .vps-hosting-section .bottom-row { grid-template-columns: 1fr; gap: 20px; }
  .vps-hosting-section .top-row .feature-card { flex-direction: column; }
  .vps-hosting-section .top-row .feature-content,
  .vps-hosting-section .top-row .feature-image { width: 100%; min-width: 0; }
  .vps-hosting-section .feature-image { min-height: 200px; height: auto; max-height: none; padding: 18px; }
  .vps-hosting-section .top-row .feature-image { padding: 18px 18px 6px; min-height: 180px; }
  .vps-hosting-section .top-row .feature-image img { max-height: 220px; }
  .vps-hosting-section .bottom-row .feature-image { min-height: 160px; padding: 16px 16px 4px; }
  .vps-hosting-section .bottom-row .feature-image img { max-height: 140px; }
  .vps-hosting-section .bottom-row .feature-content { padding: 10px 20px 22px; }
  .scalability-chart { padding: 16px 16px 4px; }
  .scalability-icon { max-width: 90px; max-height: 120px; }
  .os-badges { bottom: 8px; right: 8px; gap: 6px; }
  .os-badge { font-size: 10px; padding: 3px 7px; }
  .security-icons { margin-top: 0; }
}
@media (max-width: 900px) {
  .vps-hosting-section { padding: 15px 0; }
}
@media (max-width: 768px) {
  .vps-hosting-section .top-row,
  .vps-hosting-section .bottom-row { gap: 20px; }
  .vps-hosting-section .feature-content { padding: 22px 20px 24px; }
  .vps-hosting-section .feature-card h3 { text-align: center; }
  .vps-hosting-section .feature-card p { text-align: center; margin-bottom: 14px; }
  .vps-hosting-section .top-row .feature-image { padding: 18px 18px 4px; }
  .vps-hosting-section .top-row .feature-image img { max-height: 190px; }
  .vps-hosting-section .bottom-row .feature-image { min-height: 140px; padding: 16px 16px 2px; }
  .vps-hosting-section .bottom-row .feature-image img { max-height: 120px; }
  .scalability-chart { padding: 16px 16px 2px; }
  .scalability-icon { max-width: 80px; max-height: 110px; }
  .security-icons { margin: 0 0 14px; gap: 16px; }
  .security-icon { width: 52px; height: 52px; font-size: 22px; }
  .resource-icons { gap: 14px; margin-top: 14px; }
  .resource-icon { width: 44px; height: 44px; font-size: 16px; }
  .progress-dots { margin-top: 16px; }
}
@media (max-width: 600px) {
  .vps-hosting-section .feature-content { padding: 18px 16px 20px; }
  .vps-hosting-section .feature-card p { font-size: 14px; margin-bottom: 12px; }
  .vps-hosting-section .top-row .feature-image { padding: 16px 16px 2px; min-height: 160px; }
  .vps-hosting-section .top-row .feature-image img { max-height: 160px; }
  .vps-hosting-section .bottom-row .feature-image { min-height: 130px; padding: 14px 14px 2px; }
  .vps-hosting-section .bottom-row .feature-image img { max-height: 110px; }
  .scalability-chart { padding: 14px 14px 2px; }
  .scalability-icon { max-width: 70px; max-height: 95px; }
  .os-badges { bottom: 6px; right: 6px; gap: 4px; }
  .os-badge { font-size: 10px; padding: 3px 6px; }
  .security-icons { gap: 14px; }
  .security-icon { width: 48px; height: 48px; font-size: 20px; }
  .resource-icons { gap: 12px; }
  .resource-icon { width: 42px; height: 42px; font-size: 16px; }
}
@media (max-width: 420px) {
  .vps-hosting-section .feature-content { padding: 16px 14px 18px; }
  .vps-hosting-section .top-row .feature-image { padding: 14px 14px 0; min-height: 140px; }
  .vps-hosting-section .top-row .feature-image img { max-height: 140px; }
  .vps-hosting-section .bottom-row .feature-image { min-height: 110px; padding: 12px 12px 0; }
  .vps-hosting-section .bottom-row .feature-image img { max-height: 95px; }
  .scalability-chart { padding: 12px 12px 0; }
  .scalability-icon { max-width: 60px; max-height: 85px; }
  .security-icons { gap: 12px; }
  .security-icon { width: 44px; height: 44px; font-size: 18px; }
  .resource-icons { gap: 10px; margin-top: 12px; }
  .resource-icon { width: 40px; height: 40px; font-size: 15px; }
}

/* ============================================================
   MANAGED CALLOUT
   ============================================================ */
.managed-callout {
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
  background: linear-gradient(135deg, rgba(0, 105, 255, 0.05), rgba(96, 165, 250, 0.05));
  border-radius: 16px; padding: 20px 24px; margin-top: 24px;
}
.managed-callout-text strong { display: block; font-size: 16px; color: #101828; margin-bottom: 2px; }
.managed-callout-text p { font-size: 14px; color: #344054; margin: 0; }
.managed-callout-btn {
  display: inline-flex; align-items: center; gap: 6px; background: #0062ee; color: #fff; font-weight: 600;
  font-size: 14px; padding: 12px 20px; border-radius: 999px; white-space: nowrap; text-decoration: none; flex-shrink: 0;
}
.managed-callout {
  width: 100%;
  max-width: 600px;
  /* margin-left: auto; */
}
.managed-callout-text {
  min-width: 0;
}
.managed-callout-btn:hover { background: #0052cc; color: #fff; }
@media (max-width: 640px) {
  .managed-callout { flex-direction: column; align-items: flex-start; }
  .managed-callout-btn { align-self: stretch; justify-content: center; }
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonial-section {
  padding: 40px 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  position: relative;
  overflow: hidden;
  content-visibility: auto;
  contain-intrinsic-size: auto 860px;
}
.testimonial-section::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle at 30% 50%, rgba(0, 105, 255, 0.08) 0%, transparent 50%),
              radial-gradient(circle at 70% 50%, rgba(32, 201, 151, 0.08) 0%, transparent 50%);
  pointer-events: none;
}
.testimonial-section .container { position: relative; z-index: 1; }

.testimonial-header { text-align: center; margin-bottom: 4rem; }
.testimonial-header p { max-width: 800px; margin-left: auto; margin-right: auto; }

.testimonial-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; margin-bottom: 3rem; }
.testimonial-card { display: flex; flex-direction: column; background: white; padding: 2.5rem; border-radius: 12px; transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1); min-height: 320px; position: relative; }

/* decorative glyph moved into a pseudo-element so it is not a
   text node the contrast audit can fail on */
.testimonial-card .quote-icon {
  font-size: 48px;
  color: var(--h-accent);
  line-height: 1;
  margin-bottom: 1rem;
  opacity: 0.25;
  height: 48px;
}
.testimonial-card .quote-icon::before { content: "\201C"; }

.testimonial-card .testimonial-text { font-size: 1rem; line-height: 1.7; color: var(--h-ink); margin-bottom: auto; font-weight: 400; }
.testimonial-card .testimonial-divider { height: 2px; background: linear-gradient(135deg, #ff6b6b, #feca57, #48dbfb, #ff9ff3, #54a0ff); margin: 1.5rem 0 1.25rem; border-radius: 2px; width: 60px; }
.testimonial-card .testimonial-author { display: flex; flex-direction: column; gap: 0.25rem; }
.testimonial-card .author-name { font-size: 1rem; font-weight: 700; color: var(--h-ink); margin: 0; }
.testimonial-card .author-role { font-size: 0.875rem; color: #4b5563; font-weight: 500; }

.testimonial-navigation { display: flex; justify-content: center; align-items: center; gap: 16px; margin-top: 2rem; }
.testimonial-nav-btn { width: 50px; height: 50px; border-radius: 50%; border: 2px solid #d0d5dd; background: white; cursor: pointer; color: #0052cc; display: flex; align-items: center; justify-content: center; }
.testimonial-nav-btn svg { width: 20px; height: 20px; position: relative; z-index: 2; }

@media (max-width: 1024px) {
  .testimonial-grid { gap: 24px; grid-template-columns: repeat(2, 1fr); }
  .testimonial-card { padding: 2rem; min-height: 300px; }
}
@media (max-width: 768px) {
  .testimonial-header { margin-bottom: 2.5rem; }
  .testimonial-grid { grid-template-columns: 1fr; gap: 20px; }
  .testimonial-card { padding: 1.75rem; min-height: auto; width: 100%; }
  .testimonial-card .quote-icon { font-size: 40px; height: 40px; }
  .testimonial-card .testimonial-text { font-size: 0.95rem; line-height: 1.6; }
  .testimonial-navigation { margin-top: 1.5rem; gap: 12px; }
  .testimonial-nav-btn { width: 44px; height: 44px; }
}
@media (max-width: 480px) {
  .testimonial-card { padding: 1.5rem; }
  .testimonial-card .testimonial-text { font-size: 0.9rem; }
}

/* ============================================================
   SECTION RHYTHM
   ============================================================ */
.hero-section, .kpi-strip, .vps-plans-section, .features-included-section,
.customized-cta, .datacenter-section, .empower-section, .success-section,
.guarantee-section, .vps-hosting-section, .testimonial-section, .faq-section {
  padding-top: 60px;
  padding-bottom: 60px;
}
.hero-section { padding-top: 40px; }
.kpi-strip { padding-top: 20px; padding-bottom: 20px; }

@media (max-width: 1024px) {
  .hero-section, .vps-plans-section, .features-included-section, .customized-cta,
  .datacenter-section, .empower-section, .success-section, .guarantee-section,
  .vps-hosting-section, .testimonial-section, .faq-section { padding-top: 50px; padding-bottom: 50px; }
}
@media (max-width: 768px) {
  .hero-section, .vps-plans-section, .features-included-section, .customized-cta,
  .datacenter-section, .empower-section, .success-section, .guarantee-section,
  .vps-hosting-section, .testimonial-section, .faq-section { padding-top: 40px; padding-bottom: 40px; }
}

/* ============================================================
   SCROLL POPUP
   ============================================================ */
.popup-overlay {
  position: fixed; top: 0; left: 0; width: 100%; height: 100%;
  background: rgba(0, 0, 0, 0.6); backdrop-filter: blur(4px); z-index: 9999;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; visibility: hidden; transition: opacity 0.3s ease, visibility 0.3s ease;
}
.popup-overlay.active { opacity: 1; visibility: visible; }

.popup-container {
  position: relative; background: white; border-radius: 16px; box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
  width: 90%; max-width: 500px; max-height: 90vh; overflow: hidden;
  transform: scale(0.9) translateY(20px); transition: transform 0.3s ease;
}
.popup-overlay.active .popup-container { transform: scale(1) translateY(0); }

.popup-header { display: flex; align-items: center; justify-content: space-between; padding: 16px 20px; background: linear-gradient(135deg, #0069ff 0%, #0069ff 100%); border-bottom: 1px solid #e5e7eb; }
.popup-title { font-size: 18px; font-weight: 600; color: white; margin: 0; }
.popup-close { width: 32px; height: 32px; background: rgba(255, 255, 255, 0.2); border: none; border-radius: 8px; font-size: 20px; line-height: 1; color: white; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: background 0.2s ease; flex-shrink: 0; }
.popup-close:hover { background: rgba(255, 255, 255, 0.3); }
.popup-body { padding: 0; background: white; }
.popup-iframe { width: 100%; height: 480px; border: none; display: block; }

@media (max-width: 768px) {
  .popup-container { width: 95%; max-width: none; margin: 10px; border-radius: 12px; }
  .popup-header { padding: 14px 16px; }
  .popup-title { font-size: 16px; }
  .popup-close { width: 28px; height: 28px; font-size: 18px; }
  .popup-iframe { height: 420px; }
}
@media (max-width: 480px) {
  .popup-container { width: 100%; margin: 5px; border-radius: 8px; }
  .popup-iframe { height: 400px; border-radius: 8px; }
}

/* ============================================================
   DEPLOY / USE CASES / TRUST
   ============================================================ */
.deploy-section .container,
.usecases-section .container,
.trust-section .container {
  max-width: var(--site-max-width);
  width: 100%;
  margin: 0 auto;
  padding: 0 3rem;
}

.deploy-section   { padding: 60px 0; background: white; content-visibility: auto; contain-intrinsic-size: auto 1500px; }
.usecases-section { padding: 60px 0; background: linear-gradient(180deg, #f8fbff 0%, #eef4ff 100%); content-visibility: auto; contain-intrinsic-size: auto 1600px; }
.trust-section    { padding: 60px 0; background: linear-gradient(180deg, #fbfcff 0%, white 100%); content-visibility: auto; contain-intrinsic-size: auto 1100px; }

.deploy-header,
.usecases-header,
.trust-header {
  max-width: 100%;
  margin: 0 auto 40px;
  text-align: center;
}
.usecases-header { max-width: 100%; margin-bottom: 44px; }
.deploy-header { max-width: 720px; margin-bottom: 40px; }
.trust-header h2 { margin-bottom: 0; width: 100%; }

.usecases-header p { margin-top: 20px; }
.trust-header p { margin-top: 16px; }

.usecases-header h2 .accent { position: relative; }
.usecases-header h2 .accent::after {
  content: '';
  position: absolute;
  left: 4px;
  right: 4px;
  bottom: -6px;
  height: 3px;
  border-radius: 3px;
  background: var(--h-accent);
}

/* ---- One-Click Deploy: tabs + search ---- */
.deploy-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}

.deploy-tabs {
  display: inline-flex;
  padding: 5px;
  background: white;
  border: 1.5px solid var(--color-border);
  border-radius: 999px;
  gap: 4px;
}
.deploy-tab {
  appearance: none;
  border: none;
  background: transparent;
  cursor: pointer;
  font-family: inherit;
  font-size: 14.5px;
  font-weight: 600;
  color: #0052cc;
  padding: 10px 22px;
  border-radius: 999px;
  transition: background 0.25s ease, color 0.25s ease, box-shadow 0.25s ease;
  white-space: nowrap;
}
.deploy-tab.active {
  background: #0062ee;
  color: white;
}
.deploy-tab:not(.active):hover { background: rgba(0, 105, 255, 0.06); }
.deploy-tab > * { position: relative; z-index: 2; }

.deploy-search { position: relative; width: 280px; max-width: 100%; }
.deploy-search input {
  width: 100%;
  font-family: inherit;
  font-size: 14px;
  padding: 12px 16px 12px 40px;
  border-radius: 999px;
  border: 1.5px solid #d0d5dd;
  background: white;
  color: var(--h-ink);
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.deploy-search input:focus {
  border-color: var(--h-accent-text);
  box-shadow: 0 0 0 4px rgba(0, 105, 255, 0.10);
}
.deploy-search input::placeholder { color: #667085; opacity: 1; }
.deploy-search svg {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
  color: #667085;
  pointer-events: none;
}

.deploy-panel { display: none; }
.deploy-panel.active { display: block; animation: deployFadeIn 0.25s ease; }
@keyframes deployFadeIn {
  from { opacity: 0; transform: translate3d(0, 4px, 0); }
  to   { opacity: 1; transform: translate3d(0, 0, 0); }
}

.deploy-group { margin-bottom: 28px; }
.deploy-group:last-child { margin-bottom: 0; }

.deploy-group-label {
  display: block;
  padding-bottom: 12px;
  margin-bottom: 16px;
  border-bottom: 1px solid var(--color-border);
}

.deploy-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

/* now a real <button>; resets keep it pixel-identical to the old <a> */
.deploy-card {
  appearance: none;
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  text-align: left;
  width: 100%;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  border: 1.5px solid var(--color-border);
  border-radius: 12px;
  background: white;
  text-decoration: none;
  cursor: pointer;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}
.deploy-card:hover {
  border-color: rgba(0, 105, 255, 0.35);
  box-shadow: 0 10px 24px rgba(0, 105, 255, 0.10);
  transform: translateY(-2px);
}

.deploy-card-text { flex: 1 1 auto; min-width: 0; }
.deploy-card-text .name {
  margin: 0 0 2px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.deploy-card-text .desc {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.deploy-card-arrow {
  flex: 0 0 auto;
  width: 16px;
  height: 16px;
  color: #667085;
  transition: color 0.2s ease, transform 0.2s ease;
}
.deploy-card:hover .deploy-card-arrow { color: var(--h-accent-text); transform: translate(2px, -2px); }

.deploy-empty {
  padding: 40px 20px;
  text-align: center;
  color: #667085;
  font-size: 14px;
  display: none;
}
.deploy-empty.show { display: block; }

/* ---- Shared icon boxes ---- */
.deploy-card-icon,
.usecase-icon,
.trust-icon {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}
.deploy-card-icon { width: 40px; height: 40px; border-radius: 10px; }
.deploy-card-icon svg { width: 20px; height: 20px; }

.usecase-icon { width: 48px; height: 48px; border-radius: 12px; }
.usecase-icon svg { width: 24px; height: 24px; }

.trust-icon { width: 56px; height: 56px; border-radius: 12px; }
.trust-icon svg { width: 30px; height: 30px; }

/* ---- Deploy responsive ---- */
@media (max-width: 600px) {
  .deploy-section .container { padding: 0 1.2rem; }
  .deploy-header { margin-bottom: 28px; }

  .deploy-controls {
    flex-direction: column;
    align-items: stretch;
    margin-bottom: 28px;
  }
  .deploy-tabs {
    width: 100%;
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 8px;
    padding: 4px;
  }
  .deploy-tab {
    flex: 1 1 auto;
    min-width: 120px;
    padding: 9px 14px;
    font-size: 13.5px;
    white-space: normal;
    text-align: center;
  }
  .deploy-search {
    width: 100%;
    margin-top: 12px;
  }
  .deploy-search input {
    padding: 12px 14px 12px 40px;
    font-size: 14px;
  }

  .deploy-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  .deploy-card {
    gap: 12px;
    padding: 12px 14px;
  }
  .deploy-card-text .name,
  .deploy-card-text .desc {
    white-space: normal;
  }
  .deploy-card-arrow {
    margin-left: auto;
  }
}

@media (max-width: 420px) {
  .deploy-section .container { padding: 0 1rem; }
  .deploy-tabs { gap: 6px; }
  .deploy-tab { min-width: 100px; font-size: 13px; padding: 9px 12px; }
  .deploy-grid { grid-template-columns: 1fr; }
  .deploy-card { flex-wrap: wrap; }
  .deploy-card-icon { width: 38px; height: 38px; }
  .deploy-card-icon svg { width: 18px; height: 18px; }
  .deploy-card-arrow { width: 18px; height: 18px; }
  .deploy-search input { padding-left: 38px; }
}

@media (max-width: 320px) {
  .deploy-section .container { padding: 0 0.8rem; }
  .deploy-header { margin-bottom: 24px; }
  .deploy-tabs { padding: 3px; }
  .deploy-tab {
    min-width: 0;
    flex: 1 1 100%;
    padding: 10px 10px;
  }
  .deploy-card { gap: 10px; padding: 12px; }
}

/* ---- VPS Use Cases grid ---- */
.usecases-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  align-items: start;
}

.usecase-column {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.usecase-card {
  display: block;
  width: 100%;
  background: rgba(255, 255, 255, 0.72);
  border: 1.5px solid rgba(0, 105, 255, 0.2);
  border-radius: 20px;
  padding: 18px 22px;
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.usecase-card[open] {
  box-shadow: 0 16px 32px rgba(0, 105, 255, 0.10);
  border-color: rgba(0, 105, 255, 0.35);
}

.usecase-summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  list-style: none;
  cursor: pointer;
  user-select: none;
}

.usecase-summary::-webkit-details-marker {
  display: none;
}

.usecase-summary-main {
  display: flex;
  align-items: center;
  gap: 16px;
  flex: 1;
  min-width: 0;
}

.usecase-title {
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.35;
  color: var(--h-ink);
}

.usecase-toggle {
  position: relative;
  width: 32px;
  height: 32px;
  border-radius: 10px;
  background: #eff6ff;
  flex-shrink: 0;
}

.usecase-toggle::before,
.usecase-toggle::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 14px;
  height: 2px;
  background: #0069ff;
  border-radius: 999px;
  transform: translate(-50%, -50%);
}

.usecase-toggle::after {
  transform: translate(-50%, -50%) rotate(90deg);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.usecase-card[open] .usecase-toggle::after {
  transform: translate(-50%, -50%) rotate(0deg);
  opacity: 0;
}

.usecase-content {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.35s ease, opacity 0.25s ease, margin-top 0.25s ease;
  margin-top: 0;
}

.usecase-card[open] .usecase-content {
  max-height: 360px;
  opacity: 1;
  margin-top: 14px;
}

.usecase-content p {
  margin: 0;
  color: #475569;
  line-height: 1.7;
  font-size: 1rem;
}

body.vps-hosting .usecase-card:hover,
body.vps-hosting .usecase-card:focus-within,
body.vps-hosting .trust-card:hover,
body.vps-hosting .deploy-card:hover {
  transform: none;
  box-shadow: none;
}

body.vps-hosting .usecases-section {
  padding-bottom: 28px;
}

body.vps-hosting .footer {
  margin: 0 !important;
}

body.vps-hosting .footer__bottom {
  margin-top: 0 !important;
}

/* ---- Trust grid ---- */
.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.trust-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  border-radius: 16px;
  padding: 26px 22px;
  border: 1px solid transparent;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  background: linear-gradient(135deg, var(--bg-from), var(--bg-to));
  border-color: var(--border-tint);
}
.trust-card:hover { transform: translateY(-4px); box-shadow: 0 16px 32px rgba(0, 0, 0, 0.06); }

.trust-card .trust-icon {
  background: linear-gradient(135deg, var(--accent-from), var(--accent-to));
}

.trust-card.c1 { --bg-from:#eaf1ff; --bg-to:#f3f8ff; --border-tint:rgba(0,105,255,.14);  --accent-from:#2e7bff; --accent-to:#0047c9; }
.trust-card.c2 { --bg-from:#fff1e2; --bg-to:#fff8ef; --border-tint:rgba(217,119,6,.16);  --accent-from:#ffb340; --accent-to:#f97316; }
.trust-card.c3 { --bg-from:#e6f9ef; --bg-to:#f2fdf7; --border-tint:rgba(16,163,74,.16);  --accent-from:#34d399; --accent-to:#059669; }
.trust-card.c4 { --bg-from:#f4eeff; --bg-to:#f9f5ff; --border-tint:rgba(124,58,237,.16); --accent-from:#a78bfa; --accent-to:#7c3aed; }
.trust-card.c5 { --bg-from:#fdeceb; --bg-to:#fef5f4; --border-tint:rgba(220,38,38,.16);  --accent-from:#f87171; --accent-to:#dc2626; }
.trust-card.c6 { --bg-from:#e7fbfa; --bg-to:#f2fdfc; --border-tint:rgba(13,148,136,.16); --accent-from:#2dd4bf; --accent-to:#0d9488; }
.trust-card.c7 { --bg-from:#fdecf5; --bg-to:#fef4f9; --border-tint:rgba(219,39,119,.16); --accent-from:#f472b6; --accent-to:#db2777; }
.trust-card.c8 { --bg-from:#fef6e0; --bg-to:#fffaee; --border-tint:rgba(202,138,4,.16);  --accent-from:#facc15; --accent-to:#ca8a04; }
.trust-card.c9 { --bg-from:#eef0ff; --bg-to:#f5f6ff; --border-tint:rgba(79,70,229,.16);  --accent-from:#818cf8; --accent-to:#4f46e5; }

.trust-text h3 { margin: 0 0 8px; }

/* ---- Trust-card icon svgs use the colored gradient background,
        so icons themselves must be white and crisp. ---- */
.trust-card .trust-icon { color: #ffffff; }
.trust-card .trust-icon svg { width: 26px; height: 26px; stroke-width: 2.1; }

/* ============================================================
   VPS - "FEATURES OF EVERY VPS PLAN" SECTION
   Group labels + card grid (Security / Networking / Mgt / Perf)
   ============================================================ */
.features-included-section {
  padding: 80px 0;
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 55%, #ffffff 100%);
  content-visibility: auto;
  contain-intrinsic-size: auto 1400px;
}
.features-included-section .section-header-centered {
  margin-bottom: 56px;
}
.features-included-section .section-header-centered .section-description {
  max-width: 760px;
}

.vfi-group {
  margin-bottom: 52px;
}
.vfi-group:last-child {
  margin-bottom: 0;
}

.vfi-group-head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 22px;
}

.vfi-letter {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  flex: 0 0 auto;
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.08);
}
.vfi-group.vfi-a  .vfi-letter       { background: linear-gradient(135deg, #2e7bff 0%, #0052cc 100%); } /* A: Security */
.vfi-group.vfi-b  .vfi-letter       { background: linear-gradient(135deg, #2dd4bf 0%, #0d9488 100%); } /* B: Networking */
.vfi-group.vfi-c  .vfi-letter       { background: linear-gradient(135deg, #ffb340 0%, #f97316 100%); } /* C: Management */
.vfi-group.vfi-d  .vfi-letter       { background: linear-gradient(135deg, #34d399 0%, #059669 100%); } /* D: Performance */
.vfi-letter svg { width: 22px; height: 22px; stroke-width: 2.2; }

.vfi-group-title {
  font-size: 20px;
  font-weight: 750;
  line-height: 1.25;
  color: var(--h-ink);
  margin: 0;
  letter-spacing: -0.01em;
}

/* Chips inside cards (e.g. "ISO 27001:2022") */
.vfi-chip {
  display: inline-flex;
  align-items: center;
  margin-top: 10px;
  padding: 5px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.01em;
  background: rgba(0, 105, 255, 0.10);
  color: #0052cc;
  border: 1px solid rgba(0, 105, 255, 0.18);
}

/* Sublists inside cards (BGP bullets) */
.vfi-sublist {
  margin: 10px 0 0;
  padding: 0;
  list-style: none;
}
.vfi-sublist li {
  position: relative;
  padding: 4px 0 4px 20px;
  font-size: 13.5px;
  line-height: 1.55;
  color: var(--h-lead);
}
.vfi-sublist li::before {
  content: "";
  position: absolute;
  left: 2px;
  top: 12px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, #2dd4bf, #0d9488);
  box-shadow: 0 0 0 3px rgba(45, 212, 191, 0.18);
}

@media (max-width: 1024px) {
  .deploy-section .container,
  .usecases-section .container,
  .trust-section .container { padding: 0 2rem; }

  .deploy-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-grid  { grid-template-columns: repeat(2, 1fr); }

  .features-included-section { padding: 60px 0; }
  .features-included-section .section-header-centered { margin-bottom: 44px; }
  .vfi-group { margin-bottom: 44px; }
}

@media (max-width: 900px) {
  .usecases-grid { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .deploy-section .container,
  .usecases-section .container,
  .trust-section .container { padding: 0 1.25rem; }

  .deploy-controls { flex-direction: column; align-items: stretch; }
  .deploy-tabs { justify-content: center; overflow-x: auto; }
  .deploy-search { width: 100%; }
  .deploy-grid { grid-template-columns: 1fr; }

  .usecase-card { padding: 18px; }
  .trust-card   { padding: 20px; }
  .trust-grid   { grid-template-columns: 1fr; }

  .features-included-section { padding: 48px 0; }
  .features-included-section .section-header-centered { margin-bottom: 36px; }
  .vfi-group-head { gap: 12px; margin-bottom: 18px; }
  .vfi-letter { width: 38px; height: 38px; border-radius: 10px; }
  .vfi-letter svg { width: 20px; height: 20px; }
  .vfi-group-title { font-size: 18px; }
  .vfi-group { margin-bottom: 36px; }
  .trust-card .trust-icon { width: 48px; height: 48px; }
  .trust-card .trust-icon svg { width: 22px; height: 22px; }
  .vfi-sublist li { padding: 3px 0 3px 18px; }
}

/* ============================================================
   VPS HOSTING FAQ - namespaced "vpsfaq-"
   Heading WRAPS the button (h3 > button), which is the
   pattern screen readers expect for an accordion.
   ============================================================ */
.vpsfaq-section {
  padding: 60px 0;
  background: linear-gradient(180deg, white 0%, var(--color-background) 100%);
  font-family: var(--font-primary);
  content-visibility: auto;
  contain-intrinsic-size: auto 800px;
}

.vpsfaq-container {
  max-width: var(--site-max-width);
  width: 100%;
  margin: 0 auto;
  padding: 0 var(--site-padding-desktop);
}

.vpsfaq-header {
  max-width: 720px;
  margin: 0 auto 44px;
  text-align: center;
}

.vpsfaq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: start;
    align-content: start;
    gap: 0 48px;
    margin-top: 10px;
    height: fit-content;
    min-height: 0;
}

.vpsfaq-column {
    display: flex;
    flex-direction: column;
    min-width: 0;
    height: fit-content;
}

.vpsfaq-item {
  display: flex;
  flex-direction: column;
  border-bottom: 1px solid var(--color-border);
  padding: 20px 0;
}

/* Each column stacks independently, so opening an item does not
   add empty space beneath an item in the adjacent column. */
.vpsfaq-column > .vpsfaq-item:first-child {
  padding-top: 0;
}

.vpsfaq-question { margin: 0; }

.vpsfaq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font: inherit;
  color: inherit;
  padding: 0;
}

.vpsfaq-q-text { flex: 1; }

.vpsfaq-icon {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 2px solid var(--h-accent-text);
  color: var(--h-accent-text);
  transition: background 0.2s ease, color 0.2s ease;
}

.vpsfaq-icon svg {
  width: 14px;
  height: 14px;
}

.vpsfaq-icon .vpsfaq-vline {
  transition: opacity 0.2s ease;
}

.vpsfaq-item .vpsfaq-vline { opacity: 1; }
.vpsfaq-item.vpsfaq-open .vpsfaq-vline { opacity: 0; }

.vpsfaq-item.vpsfaq-open .vpsfaq-icon {
  background: white;
  color: var(--h-accent-text);
}

.vpsfaq-a {
  display: grid;
  grid-template-rows: 0fr;
  opacity: 0;
  transition: grid-template-rows 0.3s ease, opacity 0.3s ease;
}

.vpsfaq-a > * {
  min-height: 0;
  overflow: hidden;
}

.vpsfaq-a h4 {
  overflow: hidden;
  min-height: 0;
  line-height: 1.7;
  margin: 0;
  font-size: 1rem;
  font-weight: 400;
  color: var(--h-lead);
}

.vpsfaq-item.vpsfaq-open .vpsfaq-a {
  grid-template-rows: 1fr;
  opacity: 1;
  margin-top: 14px;
}

@media (max-width: 1024px) {
  .vpsfaq-container { padding: 0 var(--site-padding-tablet); }
}

@media (max-width: 900px) {
  .vpsfaq-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .vpsfaq-column > .vpsfaq-item:first-child { padding-top: 20px; }
  .vpsfaq-column:first-child > .vpsfaq-item:first-child { padding-top: 0; }
}

@media (max-width: 768px) {
  .vpsfaq-container { padding: 0 var(--site-padding-mobile); }
}


/* ============================================================
   "HELP ME CHOOSE" VPS WIZARD - namespaced .vpsw-
   ============================================================ */
.vpsw-overlay {
  --vpsw-blue: #0062ee;
  --vpsw-blue-dark: #0052cc;
  --vpsw-blue-soft: #eaf3ff;
  --vpsw-ink: #0f172a;
  --vpsw-muted: #5b6774;
  --vpsw-line: #e2e8f0;
  --vpsw-line-soft: #eef2f7;
  --vpsw-surface: white;
  --vpsw-radius: 14px;
  --vpsw-shadow: 0 24px 70px rgba(15, 23, 42, .22);

  position: fixed;
  inset: 0;
  z-index: 99999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px 16px;
  background: rgba(15, 23, 42, .55);
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
  font-family: inherit;
}

.vpsw-overlay.vpsw-open { display: flex; }

.vpsw-modal {
  position: relative;
  width: 100%;
  max-width: 620px;
  max-height: calc(100vh - 48px);
  overflow-y: auto;
  background: var(--vpsw-surface);
  border-radius: 18px;
  box-shadow: var(--vpsw-shadow);
  padding: 26px 26px 22px;
  animation: vpsw-pop .22s ease-out;
}

.vpsw-modal.vpsw-wide { max-width: 900px; }

@keyframes vpsw-pop {
  from { opacity: 0; transform: translate3d(0, 14px, 0) scale(.985); }
  to   { opacity: 1; transform: none; }
}

.vpsw-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 9px;
  background: #f1f5f9;
  color: var(--vpsw-muted);
  font-size: 18px;
  line-height: 1;
  cursor: pointer;
  transition: background .16s ease, color .16s ease;
}
.vpsw-close:hover { background: #e2e8f0; color: var(--vpsw-ink); }

.vpsw-title {
  margin: 0 0 4px;
  font-size: 20px;
  font-weight: 700;
  color: var(--vpsw-ink);
  letter-spacing: -.01em;
}
.vpsw-sub {
  margin: 0 0 16px;
  font-size: 13.5px;
  color: var(--vpsw-muted);
}

.vpsw-progress {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin-bottom: 22px;
}
.vpsw-progress span {
  height: 4px;
  border-radius: 99px;
  background: var(--vpsw-line);
  transition: background .25s ease;
}
.vpsw-progress span.vpsw-done { background: var(--vpsw-blue); }
.vpsw-progress span.vpsw-current { background: #0069ff; }

.vpsw-q {
  margin: 0 0 6px;
  font-size: 16.5px;
  font-weight: 700;
  color: var(--vpsw-ink);
}
.vpsw-hint {
  margin: 0 0 14px;
  font-size: 13px;
  color: var(--vpsw-muted);
}

.vpsw-group-label {
  margin: 18px 0 8px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .09em;
  text-transform: uppercase;
  color: #5b6774;
}
.vpsw-group-label:first-child { margin-top: 0; }

.vpsw-options { display: grid; gap: 10px; }
.vpsw-options.vpsw-two { grid-template-columns: 1fr 1fr; }

.vpsw-opt {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  padding: 13px 14px;
  text-align: left;
  background: var(--vpsw-surface);
  border: 1.5px solid var(--vpsw-line);
  border-radius: var(--vpsw-radius);
  cursor: pointer;
  font-family: inherit;
  transition: border-color .16s ease, background .16s ease, box-shadow .16s ease;
}
.vpsw-opt:hover { border-color: #b9d4ff; background: #fafcff; }
.vpsw-opt:focus-visible { outline: 3px solid var(--vpsw-blue); outline-offset: 2px; }
.vpsw-opt.vpsw-selected {
  border-color: var(--vpsw-blue);
  background: #f5f9ff;
  box-shadow: 0 0 0 3px rgba(0, 105, 255, .10);
}

.vpsw-radio {
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  border: 1.5px solid #94a3b8;
  border-radius: 50%;
  position: relative;
  transition: border-color .16s ease;
}
.vpsw-opt.vpsw-selected .vpsw-radio { border-color: var(--vpsw-blue); }
.vpsw-opt.vpsw-selected .vpsw-radio::after {
  content: "";
  position: absolute;
  inset: 3px;
  border-radius: 50%;
  background: var(--vpsw-blue);
}

.vpsw-icon {
  flex: 0 0 auto;
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  font-size: 17px;
  background: var(--vpsw-blue-soft);
}

.vpsw-opt-text { min-width: 0; }
.vpsw-opt-name {
  margin: 0;
  font-size: 14.5px;
  font-weight: 650;
  color: var(--vpsw-ink);
}
.vpsw-opt-desc {
  margin: 2px 4px 0;
  font-size: 12.5px;
  line-height: 1.35;
  color: var(--vpsw-muted);
}
.vpsw-tag-price {
  margin-left: 6px;
  font-size: 12px;
  font-weight: 700;
  color: #a35c00;
}

.vpsw-options.vpsw-two .vpsw-opt { flex-direction: row-reverse; justify-content: space-between; }
.vpsw-options.vpsw-two .vpsw-opt .vpsw-opt-text { flex: 1; }
.vpsw-options.vpsw-two .vpsw-opt .vpsw-icon { order: -1; }

.vpsw-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 22px;
  padding-top: 16px;
  border-top: 1px solid var(--vpsw-line-soft);
}
.vpsw-step-count { font-size: 13px; color: var(--vpsw-muted); }

.vpsw-btn {
  border: 0;
  border-radius: 99px;
  padding: 10px 20px;
  font-family: inherit;
  font-size: 14px;
  font-weight: 650;
  cursor: pointer;
  transition: background .16s ease, opacity .16s ease, transform .12s ease;
}
.vpsw-btn:active { transform: translateY(1px); }
.vpsw-btn:focus-visible { outline: 3px solid var(--vpsw-blue); outline-offset: 2px; }

.vpsw-btn-back {
  background: var(--vpsw-surface);
  border: 1.5px solid var(--vpsw-line);
  color: var(--vpsw-muted);
}
.vpsw-btn-back:hover:not(:disabled) { border-color: #94a3b8; color: var(--vpsw-ink); }

.vpsw-btn-next { background: var(--vpsw-blue); color: #fff; }
.vpsw-btn-next:hover:not(:disabled) { background: var(--vpsw-blue-dark); }
.vpsw-btn:disabled { opacity: .55; cursor: not-allowed; }

.vpsw-results { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

.vpsw-plan {
  position: relative;
  border: 1.5px solid var(--vpsw-line);
  border-radius: var(--vpsw-radius);
  padding: 20px 18px 18px;
}
.vpsw-plan.vpsw-best {
  border-color: var(--vpsw-blue);
  box-shadow: 0 0 0 3px rgba(0, 105, 255, .10);
}

.vpsw-plan-badge {
  position: absolute;
  top: -11px;
  left: 16px;
  padding: 3px 11px;
  border-radius: 99px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .02em;
  background: #e2e8f0;
  color: #3f4b5b;
}
.vpsw-plan.vpsw-best .vpsw-plan-badge { background: var(--vpsw-blue); color: #fff; }

.vpsw-plan-name {
  margin: 4px 0 6px;
  font-size: 17px;
  font-weight: 700;
  color: var(--vpsw-ink);
}
.vpsw-plan-price {
  margin: 0;
  font-size: 30px;
  font-weight: 800;
  color: var(--vpsw-ink);
  letter-spacing: -.02em;
}
.vpsw-plan-price span {
  font-size: 14px;
  font-weight: 600;
  color: var(--vpsw-muted);
}
.vpsw-plan-meta {
  margin: 6px 0 0;
  font-size: 12.5px;
  color: var(--vpsw-muted);
}

.vpsw-specs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin: 16px 0;
  padding: 14px 12px;
  background: #f8fafc;
  border-radius: 11px;
}
.vpsw-spec { text-align: center; }
.vpsw-spec b {
  display: block;
  font-size: 17px;
  font-weight: 750;
  color: var(--vpsw-ink);
}
.vpsw-spec small {
  display: block;
  margin-top: 2px;
  font-size: 11.5px;
  color: var(--vpsw-muted);
}

.vpsw-note {
  display: block;
  margin-bottom: 12px;
  padding: 7px 10px;
  border-radius: 8px;
  font-size: 11.5px;
  line-height: 1.4;
  background: #fff7ed;
  color: #92400e;
}

.vpsw-bestfor-label {
  margin: 0 0 6px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #5b6774;
}
.vpsw-bestfor {
  margin: 0 0 16px;
  padding: 0;
  list-style: none;
}
.vpsw-bestfor li {
  position: relative;
  padding-left: 15px;
  margin-bottom: 5px;
  font-size: 13px;
  color: #334155;
}
.vpsw-bestfor li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 7px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #0069ff;
}

.vpsw-cta {
  display: block;
  width: 100%;
  padding: 12px;
  border-radius: 10px;
  text-align: center;
  font-family: inherit;
  font-size: 14px;
  font-weight: 650;
  text-decoration: none;
  transition: background .16s ease, color .16s ease;
}
.vpsw-cta-solid { background: var(--vpsw-blue); color: #fff; }
.vpsw-cta-solid:hover { background: var(--vpsw-blue-dark); color: #fff; }
.vpsw-cta-ghost {
  background: var(--vpsw-surface);
  border: 1.5px solid var(--vpsw-blue);
  color: var(--vpsw-blue);
}
.vpsw-cta-ghost:hover { background: var(--vpsw-blue-soft); }

.vpsw-restart {
  display: block;
  margin: 18px auto 0;
  padding: 4px;
  border: 0;
  background: none;
  font-family: inherit;
  font-size: 13px;
  color: var(--vpsw-muted);
  text-decoration: underline;
  cursor: pointer;
}
.vpsw-restart:hover { color: var(--vpsw-blue); }

.vpsw-talk {
  margin: 16px 0 0;
  font-size: 12.5px;
  text-align: center;
  color: var(--vpsw-muted);
}
.vpsw-talk a { color: var(--vpsw-blue); font-weight: 600; text-decoration: underline; }
.vpsw-talk a:hover { text-decoration: none; }

@media (max-width: 720px) {
  .vpsw-overlay { padding: 12px 10px; }
  .vpsw-modal { padding: 22px 18px 18px; max-height: calc(100vh - 24px); }
  .vpsw-options.vpsw-two { grid-template-columns: 1fr; }
  .vpsw-results { grid-template-columns: 1fr; gap: 22px; }
  .vpsw-title { font-size: 18px; }
  .vpsw-btn { padding: 10px 16px; }
}

/* ============================================================
   1. NON-MEDIA BUG FIXES
   ============================================================ */
.vps-features-grid .root-access-card { grid-template-rows: 1fr auto auto; }

.vps-features-grid .feature-image {
  height: auto; min-height: 240px; max-height: 380px; aspect-ratio: auto;
}

.vps-card, .deploy-card, .usecase-card, .trust-card, .testimonial-card { min-width: 0; }

/* ============================================================
   2. <=1399px
   ============================================================ */
@media (max-width: 1399px) {
  .hero-section .container { gap: 24px; }
  .hero-left   { flex: 0 0 38%; }
  .hero-center { flex: 0 0 18%; }
}

/* ============================================================
   3. <=1279px - HERO to 2 columns
   ============================================================ */
@media (max-width: 1279px) {
  .hero-section .container { flex-wrap: nowrap; gap: 32px; padding-top: 60px; }
  .hero-center { display: none; }
  .hero-left  { flex: 1 1 48%; }
  .hero-right { flex: 1 1 52%; }
  .hero-right .hero-form-container { max-width: 520px; }
  .hero-left h1 { font-size: clamp(30px, 3.4vw, 40px); }

  .buttons { gap: 12px; }
  .start-btn, .trial-btn { padding: 13px 24px; font-size: 15px; }
  .managed-callout { padding: 18px 20px; gap: 16px; }
  .managed-callout-btn { padding: 11px 18px; }

  .hero-section, .vps-plans-section, .features-included-section,
  .vps-hosting-section, .usecases-section, .trust-section,
  .deploy-section, .testimonial-section, .vpsfaq-section { overflow-x: clip; }
}

/* ============================================================
   4. <=1199px - GRIDS to 2 columns
   ============================================================ */
@media (max-width: 1199px) {

  .vps-features-grid,
  .vps-features-alt .features-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 1fr;
    gap: 24px;
  }

  .vps-features-grid .root-access-card,
  .vps-features-grid .vcores-card,
  .vps-features-grid .backup-card,
  .vps-features-grid .traffic-card {
    grid-column: auto;
    grid-row: auto;
    min-height: 0;
  }

  .vps-features-grid .backup-card,
  .vps-features-grid .traffic-card {
    flex-direction: column;
  }
  .vps-features-grid .backup-card .feature-content,
  .vps-features-grid .traffic-card .traffic-text {
    width: 100%;
    padding: 28px;
  }

  .vps-features-grid .root-access-card { display: flex; flex-direction: column; }
  .vps-features-grid .person-image { height: 260px; flex: 0 0 auto; }
  .vps-features-grid .root-access-description { padding: 0 20px 24px; }

  .vps-hosting-section .top-row { grid-template-columns: 1fr; }
  .vps-hosting-section .top-row .feature-card { flex-direction: row; }
  .vps-hosting-section .top-row .feature-content { width: 56%; padding: 26px; }
  .vps-hosting-section .top-row .feature-image { width: 44%; min-height: 220px; }
  .vps-hosting-section .top-row .feature-image img { max-height: 260px; }

  .vps-hosting-section .bottom-row { grid-template-columns: repeat(2, 1fr); }
  .vps-hosting-section .bottom-row .feature-card:last-child {
    grid-column: 1 / span 2;
    flex-direction: row;
  }
  .vps-hosting-section .bottom-row .feature-card:last-child .feature-content { width: 60%; }
  .vps-hosting-section .bottom-row .feature-card:last-child .feature-image { width: 40%; order: 0; }

  .vps-hosting-section .feature-card h3,
  .vps-hosting-section .feature-card p { text-align: left; }
  .security-icons, .resource-icons { justify-content: flex-start; }

  .customized-container, .guarantee-container { gap: 32px; padding: 24px 32px; }
}

/* ============================================================
   5. <=991px - full stack
   ============================================================ */
@media (max-width: 991px) {
  .vps-features-grid .traffic-image,
  .vps-features-grid .traffic-text { width: 50%; }

  .vps-hosting-section .bottom-row { grid-template-columns: 1fr; }
  .vps-hosting-section .bottom-row .feature-card:last-child {
    grid-column: auto; flex-direction: column;
  }
  .vps-hosting-section .bottom-row .feature-card:last-child .feature-content,
  .vps-hosting-section .bottom-row .feature-card:last-child .feature-image { width: 100%; }
  .vps-hosting-section .bottom-row .feature-card:last-child .feature-image { order: -1; }

  .empower-container, .success-container {
    flex-direction: column; gap: 32px; text-align: center;
  }
  .empower-image, .success-image { text-align: center; max-width: 100%; order: -1; }
  .empower-features li, .success-features li { justify-content: center; }
  .empower-btn, .success-btn { margin: 0 auto; display: block; }
}

/* ============================================================
   6. <=767px - one column, stacked CTAs
   ============================================================ */
@media (max-width: 767px) {
  .vps-features-grid,
  .vps-features-alt .features-grid { grid-template-columns: 1fr; }
  .vps-features-grid .backup-card,
  .vps-features-grid .traffic-card { grid-column: auto; }
  .vps-features-grid .traffic-image,
  .vps-features-grid .traffic-text { width: 100%; }

  .vps-hosting-section .top-row .feature-card { flex-direction: column; }
  .vps-hosting-section .top-row .feature-content,
  .vps-hosting-section .top-row .feature-image { width: 100%; }
  .vps-hosting-section .top-row .feature-image { order: -1; }

  .buttons { flex-direction: column; align-items: stretch; }
  .start-btn, .trial-btn { text-align: center; width: 100%; }
  .guarantee { margin-left: 0; justify-content: center; text-align: center; }
  .guarantee-secondary { margin-left: 0; }
}

/* ============================================================
   7. REDUCED MOTION - now covers every animation on the page.
      Last block in the file, so no !important is needed.
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  .start-btn::after,
  .trial-btn::after,
  .vps-contact-btn::after,
  .customized-btn::after,
  .chat-now-btn::after,
  .security-cta-btn::after,
  .datacenter-btn::after,
  .empower-btn::after,
  .success-btn::after,
  .managed-callout-btn::after,
  .hero-btn-submit::after,
  .hero-btn-close-success::after,
  .testimonial-nav-btn::after,
  .deploy-tab.active::after,
  .vpsw-btn-next::after,
  .vpsw-cta-solid::after,
  .vpsw-cta-ghost::after,
  .vps-btn::after { animation: none; display: none; }

  .kpi-track,
  .vps-rocket-wrap,
  .vps-rocket-flame,
  .vps-trail,
  .vps-float,
  .vps-uptime,
  .vps-uptime-dot,
  .vps-speed,
  .datacenter-globe img,
  .datacenter-globe::before,
  .datacenter-globe::after,
  .deploy-panel.active,
  .vpsw-modal,
  .vpsf-modal { animation: none; }

  .usecase-card,
  .trust-card,
  .deploy-card,
  .vps-contact-btn,
  .customized-btn,
  .chat-now-btn,
  .security-cta-btn { transition: none; }

  .usecase-card:hover,
  .trust-card:hover,
  .deploy-card:hover { transform: none; }
}
.vps-standards-section {
  padding: 72px 0 78px;
  background: #ffffff;
}

.vps-standards-section .container {
  max-width: 1440px;
}

.vps-standards-section .section-header-centered {
  margin-bottom: 42px;
}

.vps-standards-section .deploy-eyebrow {
  margin: 0 0 16px;
  color: #0069ff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

/* .vps-standards-section .section-title {
  max-width: 1180px;
  margin: 0 auto 18px;
  font-size: clamp(2.7rem, 3.6vw, 5rem);
  line-height: 0.98;
  letter-spacing: -0.06em;
  font-weight: 800;
  color: #111827;
} */

.vps-standards-section .section-description {
  max-width: 720px;
  margin: 0 auto;
  font-size: 18px;
  color: #5a6677;
}

.vps-bento-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(220px, 1fr));
  gap: 18px;
}

.vps-bento-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 240px;
  padding: 22px 20px 18px;
  border-radius: 18px;
  border: 1px solid transparent;
  overflow: hidden;
}

.vps-bento-bar {
  display: block;
  width: 30px;
  height: 3px;
  border-radius: 999px;
  margin-bottom: 18px;
  background: currentColor;
  opacity: 0.65;
}

.vps-bento-card h4 {
  margin: 0 0 14px;
  font-size: clamp(1.05rem, 1.35vw, 1.6rem);
  line-height: 1.18;
  letter-spacing: -0.04em;
  color: inherit;
  font-weight: 700;
}

.vps-bento-card p {
  margin: 0;
  font-size: 14.5px;
  line-height: 1.7;
  color: inherit;
  opacity: 0.9;
}

.vps-bento-tag {
  margin-top: auto;
  padding-top: 18px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: inherit;
  opacity: 0.7;
}

.vps-bento-card.is-primary {
  background: linear-gradient(135deg, #1f5ae6 0%, #1b4bca 100%);
  color: #ffffff;
  border-color: rgba(255,255,255,0.1);
}

.vps-bento-card.is-primary-alt {
  background: linear-gradient(135deg, #2d5fe6 0%, #1e4dd0 100%);
  color: #ffffff;
  border-color: rgba(255,255,255,0.1);
}

.vps-bento-card.is-dark {
  background: linear-gradient(135deg, #0d2d6c 0%, #12367f 100%);
  color: #ffffff;
  border-color: rgba(255,255,255,0.08);
}

.vps-bento-card.is-light {
  background: #edf4ff;
  border-color: #dfeafc;
  color: #0f172a;
}

.vps-bento-card.is-soft {
  background: linear-gradient(180deg, #edf4ff 0%, #e3eefc 100%);
  border-color: #dfeafc;
  color: #0f172a;
}

.vps-bento-card.is-soft-alt {
  background: linear-gradient(180deg, #dfeafe 0%, #d5e7ff 100%);
  border-color: #d1e0fa;
  color: #0f172a;
}

@media (max-width: 1100px) {
  .vps-bento-grid {
    grid-template-columns: repeat(2, minmax(220px, 1fr));
  }
}

@media (max-width: 640px) {
  .vps-standards-section {
    padding: 52px 0 62px;
  }

  .vps-standards-section .deploy-eyebrow {
    margin-bottom: 12px;
  }

  .vps-standards-section .section-title {
    margin-bottom: 12px;
    letter-spacing: -0.05em;
  }

  .vps-standards-section .section-description {
    font-size: 16px;
  }

  .vps-bento-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .vps-bento-card {
    min-height: 210px;
    padding: 18px 16px 16px;
    border-radius: 16px;
  }

  .vps-bento-card p {
    font-size: 13.5px;
  }
}

/* ===== accordion use-cases w/ visual ===== */
.uc-layout{display:grid; grid-template-columns:1fr 1fr; gap:0;}
.uc-col{padding:0 56px 0 0;}
.uc-col + .uc-col{padding:0 0 0 56px; border-left:1px solid #1E2A45;}
.uc-col-title{font-size:clamp(24px,2.6vw,30px); font-weight:700; color:#fff; margin-bottom:36px; max-width:340px;}
.uc-acc{border-top:1px solid #1E2A45;}
.uc-acc-item{border-bottom:1px solid #1E2A45; padding:26px 0; cursor:pointer;}
.uc-acc-item .row{display:flex; justify-content:space-between; align-items:center; gap:16px;}
.uc-acc-item h4{font-size:19px; font-weight:600; color:#fff; margin:0;}
.uc-acc-item .ico{font-family:'JetBrains Mono'; color:#7C8AA8; font-size:20px; flex:none; transition:transform .25s;}
.uc-acc-item.open .ico{transform:rotate(45deg); color:var(--cyan);}
.uc-acc-item .body{max-height:0; overflow:hidden; transition:max-height .35s ease;}
.uc-acc-item.open .body{max-height:160px;}
.uc-acc-item .body p{font-size:15px; color:#AEB8D0; line-height:1.65; margin:16px 0 14px; max-width:440px;}
.uc-acc-item .body a{font-size:14px; font-weight:600; color:var(--cyan); text-decoration:none;}


