/* ============================================
 *    ReadyServer — Shared Stylesheet
 *       ============================================ */

/* --- Reset & Base --- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --sky-300: #93c5fd;
  --sky-500: #38bdf8;
  --blue-600: #2563eb;
  --blue-700: #1d4ed8;
  --blue-800: #1e3a5f;
  --navy-900: #0f172a;
  --navy-800: #1e293b;
  --slate-700: #334155;
  --slate-500: #64748b;
  --slate-300: #cbd5e1;
  --slate-200: #e2e8f0;
  --slate-100: #f1f5f9;
  --slate-50: #f8fafc;
  --white: #ffffff;
  --green-500: #22c55e;
  --green-100: #dcfce7;
  --yellow-400: #facc15;
  --font: "Inter", system-ui, -apple-system, sans-serif;
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.08), 0 1px 2px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.14);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font);
  color: var(--navy-900);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a {
  text-decoration: none;
  color: inherit;
}
img {
  display: block;
  max-width: 100%;
}
ul {
  list-style: none;
}
button {
  cursor: pointer;
  font-family: var(--font);
  border: none;
}

/* --- Container --- */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ============================================
 *    LOGO
 *       ============================================ */
.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--navy-900);
  white-space: nowrap;
  width: 160px;
}
.logo-icon {
  width: 32px;
  height: 32px;
  background: var(--blue-600);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 900;
  font-size: 0.8rem;
  letter-spacing: -0.5px;
}
.logo--light {
  color: var(--white);
}

/* ============================================
 *    BUTTONS
 *       ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: var(--radius-sm);
  font-size: 0.9375rem;
  font-weight: 600;
  transition: all 0.18s ease;
  white-space: nowrap;
}
.btn svg {
  width: 18px;
  height: 18px;
  color: var(--white);
  flex-shrink: 0;
}
.btn-primary {
  background: var(--blue-600);
  color: var(--white);
}
.btn-primary:hover {
  background: var(--blue-700);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.35);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255, 255, 255, 0.45);
}
.btn-outline:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.75);
}

.btn-dark {
  background: var(--white);
  color: var(--blue-600);
  font-weight: 700;
}
.btn-dark:hover {
  background: var(--slate-100);
  transform: translateY(-1px);
}
.btn-dark svg {
  color: var(--blue-600);
}

.btn-card {
  width: 100%;
  padding: 13px 24px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.9375rem;
  text-align: center;
  transition: all 0.18s ease;
}
.btn-card-light {
  background: transparent;
  color: var(--blue-600);
  border: 1.5px solid var(--blue-600);
}
.btn-card-light:hover {
  background: var(--blue-600);
  color: var(--white);
}

.btn-card-dark {
  background: var(--blue-600);
  color: var(--white);
  border: 1.5px solid var(--blue-600);
}
.btn-card-dark:hover {
  background: var(--blue-700);
}

/* ============================================
 *    HEADER / NAV
 *       ============================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--slate-200);
  height: 68px;
  display: flex;
  align-items: center;
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-links a {
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--slate-700);
  transition: color 0.15s;
}
.nav-links a:hover {
  color: var(--blue-600);
}

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 28px;
  cursor: pointer;
  background: none;
  padding: 2px;
}
.nav-hamburger span {
  display: block;
  height: 2px;
  background: var(--navy-900);
  border-radius: 2px;
  transition: all 0.25s;
}

/* Mobile menu */
.mobile-menu {
  display: none;
  flex-direction: column;
  position: fixed;
  top: 68px;
  left: 0;
  right: 0;
  background: var(--white);
  border-bottom: 1px solid var(--slate-200);
  padding: 16px 24px 24px;
  gap: 4px;
  z-index: 99;
  box-shadow: var(--shadow-md);
}
.mobile-menu.open {
  display: flex;
}
.mobile-menu a {
  padding: 12px 0;
  font-size: 1rem;
  font-weight: 500;
  color: var(--slate-700);
  border-bottom: 1px solid var(--slate-100);
}
.mobile-menu a:last-child {
  border-bottom: none;
}

/* ============================================
 *    HERO SECTION
 *       ============================================ */
.hero {
  background: linear-gradient(270deg, #0f172a 0%, #1e3a5f 70%, #2563eb 100%);
  padding: 100px 0 80px;
  text-align: center;
  color: var(--white);
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 100px;
  padding: 4px 16px;
  font-size: 0.8125rem;
  font-weight: 500;
  margin-bottom: 28px;
  color: var(--sky-300);
}
.badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--sky-500);
  flex-shrink: 0;
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.6;
    transform: scale(0.85);
  }
}
.hero-title {
  font-size: clamp(2rem, 4vw, 4rem);
  font-weight: 800;
  line-height: 1.2;
  max-width: 800px;
  margin: 0 auto 20px;
  letter-spacing: -0.5px;
}
.hero-sub {
  font-size: 1.0625rem;
  color: rgba(255, 255, 255, 0.75);
  max-width: 720px;
  margin: 0 auto 36px;
  line-height: 1.7;
}
.hero-ctas {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}
.trust-row {
  display: flex;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
}
.trust-icon {
  width: 18px;
  height: 18px;
  color: var(--sky-500);
  flex-shrink: 0;
}

/* ============================================
 *    SECTION SHARED
 *       ============================================ */
section {
  padding: 80px 0;
}

.section-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--blue-600);
  margin-bottom: 12px;
}
.section-title {
  font-size: clamp(1.6rem, 3vw, 2.25rem);
  font-weight: 800;
  color: var(--navy-900);
  line-height: 1.2;
  margin-bottom: 14px;
  letter-spacing: -0.3px;
}
.section-sub {
  font-size: 1rem;
  color: var(--slate-500);
  max-width: 560px;
  line-height: 1.7;
}
.section-header {
  text-align: center;
  margin-bottom: 48px;
}
.section-header .section-sub {
  margin: 0 auto;
}

/* ============================================
 *    FEATURES SECTION
 *       ============================================ */
.features {
  background: var(--slate-50);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.feature-card {
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-md);
  padding: 28px;
  transition:
    box-shadow 0.2s,
    transform 0.2s;
}
.feature-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.feature-icon {
  width: 44px;
  height: 44px;
  background: #eff6ff;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  color: var(--blue-600);
}
.feature-icon svg {
  width: 22px;
  height: 22px;
}

.feature-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy-900);
  margin-bottom: 8px;
}
.feature-desc {
  font-size: 0.875rem;
  color: var(--slate-500);
  line-height: 1.65;
}

/* ============================================
 *    PRICING SECTION
 *       ============================================ */
.pricing {
  background: var(--white);
}

.pricing-layout {
  display: grid;
  grid-template-rows: auto auto;
  gap: 32px;
  align-items: start;
}
.vps-spec-card {
  background: var(--slate-50);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-md);
  padding: 28px;
  text-align: center;
}
.vps-spec-card h3 {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--navy-900);
  margin-bottom: 10px;
}
.vps-spec-card p {
  font-size: 0.875rem;
  color: var(--slate-500);
  margin-bottom: 24px;
  line-height: 1.6;
}

.spec-price-line {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 14px;
  border-radius: 999px;
  background: #eff6ff;
  color: var(--blue-600);
  font-size: 0.875rem;
  font-weight: 800;
  letter-spacing: 0.2px;
  margin-bottom: 18px;
}
.spec-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.spec-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 20px;
  border-radius: var(--radius-sm);
  background: var(--white);
}
.spec-val {
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy-900);
}
.spec-label {
  font-size: 0.75rem;
  color: var(--slate-500);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.spec-icon {
  width: 20px;
  height: 20px;
  color: var(--blue-600);
  margin-bottom: 6px;
}
.spec-icon svg {
  width: 20px;
  height: 20px;
}

.plan-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.plan-card {
  border-radius: var(--radius-md);
  padding: 24px;
  border: 1.5px solid var(--slate-200);
  background: var(--white);
  display: flex;
  flex-direction: column;
  gap: 0;
  transition: box-shadow 0.2s;
}
.plan-card:hover {
  box-shadow: var(--shadow-lg);
}
.plan-card--featured {
  background: var(--navy-900);
  border-color: var(--navy-900);
  color: var(--white);
}

.plan-badges {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 14px;
}
.badge {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  padding: 4px 10px;
  border-radius: 100px;
}
.badge-popular {
  background: var(--blue-600);
  color: var(--white);
}
.badge-promo {
  background: var(--green-500);
  color: var(--white);
}
.badge-double {
  background: #7c3aed;
  color: var(--white);
}

.plan-name {
  font-size: 1.0625rem;
  font-weight: 700;
  margin-bottom: 4px;
  color: var(--navy-900);
}
.plan-card--featured .plan-name {
  color: var(--white);
}

.plan-price {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--navy-900);
  margin-bottom: 2px;
  letter-spacing: -0.5px;
}
.plan-card--featured .plan-price {
  color: var(--white);
}

.plan-points-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 10px;
}
.plan-points-base,
.plan-points-bonus {
  font-size: 0.8125rem;
  color: var(--slate-500);
  padding: 4px 8px;
  border-radius: 999px;
  background: var(--slate-100);
}
.plan-card--featured .plan-points-base,
.plan-card--featured .plan-points-bonus {
  color: rgba(255, 255, 255, 0.78);
  background: rgba(255, 255, 255, 0.08);
}

.plan-points-eq {
  font-size: 0.8125rem;
  font-weight: 800;
  color: var(--slate-500);
}
.plan-card--featured .plan-points-eq {
  color: rgba(255, 255, 255, 0.55);
}

.plan-points {
  font-size: 0.875rem;
  font-weight: 800;
  color: var(--blue-600);
  padding: 4px 8px;
  border-radius: 999px;
  background: #eff6ff;
}
.plan-card--featured .plan-points {
  color: var(--sky-500);
  background: rgba(14, 165, 233, 0.12);
}
.plan-points-simple {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--blue-600);
  margin-bottom: 6px;
}
.plan-card--featured .plan-points-simple {
  color: rgba(255, 255, 255, 0.75);
}

.plan-desc {
  font-size: 0.8125rem;
  color: var(--slate-500);
  margin-bottom: 4px;
  line-height: 1.5;
}
.plan-card--featured .plan-desc {
  color: rgba(255, 255, 255, 0.6);
}

.plan-usage {
  background: var(--slate-50);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-sm);
  padding: 14px 14px 12px;
  margin: 14px 0 16px;
}
.plan-card--featured .plan-usage {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.12);
}
.plan-usage-main {
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--navy-900);
  line-height: 1.35;
  margin-bottom: 4px;
}
.plan-card--featured .plan-usage-main {
  color: var(--white);
}
.plan-usage-alt {
  font-size: 0.8125rem;
  color: var(--slate-500);
  line-height: 1.45;
}
.plan-card--featured .plan-usage-alt {
  color: rgba(255, 255, 255, 0.7);
}

.plan-promo {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--green-500);
  margin-bottom: 16px;
}

.plan-divider {
  height: 1px;
  background: var(--slate-200);
  margin: 16px 0;
}
.plan-card--featured .plan-divider {
  background: rgba(255, 255, 255, 0.15);
}

.plan-features {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
  flex: 1;
}
.plan-feature {
  font-size: 0.8125rem;
  color: var(--slate-700);
  line-height: 1.45;
}
.plan-card--featured .plan-feature {
  color: rgba(255, 255, 255, 0.8);
}
.plan-card--featured .plan-feature span {
  color: var(--sky-500);
}

/* ============================================
 *    HOW IT WORKS
 *       ============================================ */
.how-it-works {
  background: var(--slate-100);
}

.hiw-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  text-align: center;
}
.hiw-step {
  max-width: 320px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-self: center;
}

.step-num-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
}
.step-num {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--blue-600);
  color: var(--white);
  font-size: 0.875rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}
.step-icon {
  width: 48px;
  height: 48px;
  background: #eff6ff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue-600);
}
.step-icon svg {
  width: 22px;
  height: 22px;
}

.step-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy-900);
  margin-bottom: 6px;
}
.step-desc {
  font-size: 0.875rem;
  color: var(--slate-500);
  line-height: 1.6;
}

/* ============================================
 *    FAQ SECTION
 *       ============================================ */
.faq {
  background: var(--white);
}

.faq-list {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
}
.faq-item {
  border-bottom: 1px solid var(--slate-200);
}
.faq-item:first-child {
  border-top: 1px solid var(--slate-200);
}

.faq-question {
  width: 100%;
  background: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  text-align: left;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--navy-900);
  gap: 16px;
  cursor: pointer;
  transition: color 0.15s;
}
.faq-question:hover {
  color: var(--blue-600);
}

.faq-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  position: relative;
  color: var(--slate-500);
  transition: transform 0.25s;
}
.faq-icon::before,
.faq-icon::after {
  content: "";
  position: absolute;
  background: currentColor;
  border-radius: 2px;
  transition: all 0.25s;
}
.faq-icon::before {
  width: 12px;
  height: 2px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.faq-icon::after {
  width: 2px;
  height: 12px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.faq-item.open .faq-icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
  opacity: 0;
}
.faq-item.open .faq-question {
  color: var(--blue-600);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.3s ease,
    padding 0.3s ease;
}
.faq-item.open .faq-answer {
  max-height: 300px;
  padding-bottom: 16px;
}

.faq-answer p {
  font-size: 0.9rem;
  color: var(--slate-500);
  line-height: 1.7;
}

/* ============================================
 *    FINAL CTA SECTION
 *       ============================================ */
.final-cta {
  background: linear-gradient(90deg, #1e3a5f 0%, #0f172a 100%);
  color: var(--white);
  text-align: center;
  padding: 80px 0;
}
.final-cta .section-title {
  color: var(--white);
}
.final-cta .section-sub {
  color: rgba(255, 255, 255, 0.65);
  margin: 0 auto 36px;
}
.cta-trust {
  margin-top: 20px;
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.5);
}

/* ============================================
 *    FOOTER
 *       ============================================ */
.site-footer {
  background: var(--navy-900);
  color: rgba(255, 255, 255, 0.55);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 40px 0 32px;
}
.footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 24px;
  margin-bottom: 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  gap: 24px;
  flex-wrap: wrap;
}
.footer-nav {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
}
.footer-nav a {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
  transition: color 0.15s;
}
.footer-nav a:hover {
  color: var(--white);
}
.footer-social {
  display: flex;
  gap: 16px;
  align-items: center;
}
.social-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.55);
  transition:
    background 0.15s,
    color 0.15s;
}
.social-icon:hover {
  background: rgba(255, 255, 255, 0.16);
  color: var(--white);
}
.social-icon svg {
  width: 15px;
  height: 15px;
}

.footer-bottom {
  text-align: center;
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.35);
}

/* ============================================
 *    PAYMENT SUCCESS PAGE
 *       ============================================ */

/* Minimal header for success page */
.cp-header {
  background: var(--white);
  border-bottom: 1px solid var(--slate-200);
  height: 68px;
  display: flex;
  align-items: center;
}
.cp-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cp-support {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--blue-600);
  transition: color 0.15s;
}
.cp-support:hover {
  color: var(--blue-700);
}

/* Success hero */
.success-section {
  text-align: center;
  padding: 80px 24px 60px;
  background: linear-gradient(90deg, #ffffff 0%, #f0fdf4 100%);
}
.success-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--green-500);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 28px;
  box-shadow: 0 0 0 12px rgba(34, 197, 94, 0.12);
}
.success-icon svg {
  width: 34px;
  height: 34px;
  color: var(--white);
}

.success-title {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  color: var(--navy-900);
  margin-bottom: 14px;
  letter-spacing: -0.4px;
}
.success-sub {
  font-size: 1rem;
  color: var(--slate-500);
  line-height: 1.7;
  max-width: 440px;
  margin: 0 auto;
}

/* What's next */
.whats-next {
  padding: 60px 0 80px;
  background: var(--slate-50);
}
.whats-next h2 {
  font-size: clamp(1.4rem, 2.5vw, 1.875rem);
  font-weight: 800;
  color: var(--navy-900);
  text-align: center;
  margin-bottom: 40px;
  letter-spacing: -0.3px;
}
.next-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 900px;
  margin: 0 auto;
}
.next-card {
  background: var(--white);
  border: 1.5px solid var(--slate-200);
  border-radius: var(--radius-md);
  padding: 32px 28px;
  height: fit-content;
  text-align: center;
  transition:
    box-shadow 0.2s,
    transform 0.2s;
}
.next-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.next-step-num {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #eff6ff;
  color: var(--blue-600);
  font-size: 0.875rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}
.next-card-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  color: var(--blue-600);
}
.next-card-icon svg {
  width: 24px;
  height: 24px;
}
.next-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy-900);
  margin-bottom: 8px;
}
.next-step-note {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 4px 10px;
  border-radius: 999px;
  background: #eff6ff;
  color: var(--blue-600);
  font-size: 0.6875rem;
  font-weight: 800;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.next-card p {
  font-size: 0.875rem;
  color: var(--slate-500);
  line-height: 1.65;
}
.next-card p b {
  color: var(--navy-900);
  font-weight: 700;
}

/* App store badges */
.app-badges {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: center;
  margin-top: 16px;
}
.app-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--navy-900);
  color: var(--white);
  border-radius: 8px;
  padding: 8px 14px;
  font-size: 0.75rem;
  line-height: 1.3;
  cursor: pointer;
  transition: opacity 0.15s;
  min-width: 130px;
}
.app-badge:hover {
  opacity: 0.85;
}
.app-badge svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}
.app-badge-sub {
  font-size: 0.625rem;
  opacity: 0.7;
  display: block;
}
.app-badge-name {
  font-weight: 700;
  display: block;
  font-size: 0.8125rem;
}

/* CP footer */
.cp-footer {
  background: var(--navy-900);
  padding: 32px 0;
  text-align: center;
}
.cp-footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.cp-footer p {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.4);
  line-height: 1.6;
}
.cp-footer a {
  color: rgba(255, 255, 255, 0.6);
  transition: color 0.15s;
}
.cp-footer a:hover {
  color: var(--white);
}

/* ============================================
 *    RESPONSIVE — TABLET
 *       ============================================ */
@media (max-width: 1024px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .pricing-layout {
    grid-template-columns: 1fr;
  }
  .vps-spec-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    align-items: start;
  }
  .vps-spec-card .spec-grid {
    grid-template-columns: repeat(4, 1fr);
  }
  .plan-cards {
    grid-template-columns: repeat(3, 1fr);
  }
  .hiw-steps {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }
}

/* ============================================
 *    RESPONSIVE — MOBILE
 *       ============================================ */
@media (max-width: 768px) {
  section {
    padding: 56px 0;
  }

  /* Nav */
  .nav-links {
    display: none;
  }
  .nav-hamburger {
    display: flex;
  }

  /* Hero */
  .hero {
    padding: 64px 0 56px;
  }
  .hero-title {
    font-size: 1.75rem;
  }
  .trust-row {
    gap: 16px;
  }
  .trust-item {
    font-size: 0.8125rem;
  }

  /* Features */
  .features-grid {
    grid-template-columns: 1fr;
  }

  /* Pricing */
  .pricing-layout {
    grid-template-columns: 1fr;
  }
  .vps-spec-card {
    display: block;
  }
  .vps-spec-card .spec-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .plan-cards {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  /* HIW */
  .hiw-steps {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  /* Next cards */
  .next-cards {
    grid-template-columns: 1fr;
  }

  /* Footer */
  .footer-top {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
}

@media (max-width: 480px) {
  .hero-ctas {
    flex-direction: column;
    align-items: center;
  }
  .hero-ctas .btn {
    width: 100%;
    justify-content: center;
    max-width: 300px;
  }
  .hero-title {
    font-size: 1.5rem;
  }
  .trust-row {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }
  .final-cta .hero-ctas .btn {
    max-width: 260px;
  }
}

