/* ═══════════════════════════════════════════════════════════════
   BalVPS Main Stylesheet
   ═══════════════════════════════════════════════════════════════ */

/* ── CSS Variables ── */
:root {
  --purple: #7C3AED;
  --purple-mid: #9D5FF5;
  --purple-light: #EEEDFE;
  --purple-dark: #3C3489;
  --dark: #1A0A3D;
  --muted: #9E8FC0;
  --border: #E0D9FF;
  --bg: #F8F7FF;
  --white: #FFFFFF;
  --text: #1A0A3D;
  --text-secondary: #6B7280;
  --green-bg: #EAF3DE;
  --green-text: #27500A;
  --gray-bg: #F1EFE8;
  --gray-text: #444441;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

/* ── Skip to Content (Accessibility) ── */
.skip-to-content {
  position: absolute;
  top: -40px;
  left: 0;
  background: var(--purple);
  color: white;
  padding: 8px 16px;
  text-decoration: none;
  border-radius: 0 0 4px 0;
  z-index: 1000;
  font-size: 14px;
  font-weight: 500;
}

.skip-to-content:focus {
  top: 0;
}

/* ── Container ── */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 80px;
}

@media (max-width: 1024px) {
  .container {
    padding: 0 40px;
  }
}

@media (max-width: 640px) {
  .container {
    padding: 0 16px;
  }
}

/* ── Navigation ── */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 0;
  transition: background 0.2s, box-shadow 0.2s;
}

nav.scrolled {
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(8px);
  box-shadow: 0 1px 0 var(--border);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.nav-logo-mark {
  width: 38px;
  height: 30px;
  background: var(--purple);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 500;
  color: white;
  flex-shrink: 0;
}

.nav-logo-text {
  font-size: 20px;
  font-weight: 500;
  color: var(--dark);
}

.nav-logo-text span {
  color: var(--purple);
  font-weight: 400;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.nav-links a {
  font-size: 15px;
  color: var(--text-secondary);
  text-decoration: none;
  transition: color 0.15s;
}

.nav-links a:hover {
  color: var(--dark);
}

.nav-login {
  background: transparent !important;
  color: var(--text-secondary) !important;
  border: 1px solid var(--border) !important;
  padding: 8px 20px;
  border-radius: 100px;
  font-size: 14px !important;
  font-weight: 500;
  transition: border-color 0.15s, color 0.15s !important;
}

.nav-login:hover {
  border-color: var(--purple) !important;
  color: var(--purple) !important;
}

.nav-cta {
  background: var(--purple);
  color: white !important;
  padding: 9px 20px;
  border-radius: 100px;
  font-size: 14px !important;
  font-weight: 500;
  transition: background 0.15s !important;
}

.nav-cta:hover {
  background: #6D28D9 !important;
  color: white !important;
}

.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}

.nav-burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--dark);
  border-radius: 2px;
  transition: all 0.2s;
}

.nav-mobile {
  display: none;
  position: fixed;
  top: 64px;
  left: 0;
  right: 0;
  background: white;
  border-bottom: 1px solid var(--border);
  padding: 16px;
  z-index: 99;
}

.nav-mobile.open {
  display: block;
}

.nav-mobile a {
  display: block;
  padding: 10px 0;
  color: var(--dark);
  text-decoration: none;
  font-size: 15px;
  border-bottom: 1px solid var(--border);
}

.nav-mobile a:last-child {
  border: none;
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }
  .nav-burger {
    display: flex;
  }
}

/* ── Page Hero ── */
.page-hero {
  padding: 120px 0 60px;
  background: var(--white);
}

.page-hero h1 {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 500;
  color: var(--dark);
  margin-bottom: 12px;
  letter-spacing: -0.3px;
}

.page-hero p {
  font-size: 17px;
  color: var(--text-secondary);
  max-width: 600px;
  line-height: 1.6;
}

/* ── Hero (Homepage) ── */
.hero {
  padding: 140px 0 80px;
  background: var(--white);
  text-align: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--purple-light);
  color: var(--purple-dark);
  font-size: 13px;
  font-weight: 500;
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 24px;
}

.hero-badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--purple);
}

.hero h1 {
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 500;
  line-height: 1.1;
  color: var(--dark);
  margin-bottom: 20px;
  letter-spacing: -0.5px;
}

.hero h1 span {
  color: var(--purple);
}

.hero-sub {
  font-size: 18px;
  color: var(--text-secondary);
  max-width: 560px;
  margin: 0 auto 32px;
  line-height: 1.6;
}

.hero-cta {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

/* ── Section Labels & Titles ── */
.section-label {
  font-size: 12px;
  font-weight: 500;
  color: var(--purple);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.section-title {
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 500;
  color: var(--dark);
  margin-bottom: 8px;
  letter-spacing: -0.3px;
}

.section-sub {
  font-size: 16px;
  color: var(--text-secondary);
  max-width: 560px;
  line-height: 1.6;
}

/* ── Fact Bar ── */
.fact-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
}

.fact {
  font-size: 13px;
  color: var(--text-secondary);
  padding: 5px 12px;
  border-radius: 100px;
  border: 1px solid var(--border);
  background: var(--white);
}

/* ── Buttons ── */
.btn-primary {
  background: var(--purple);
  color: white;
  border: none;
  padding: 13px 28px;
  border-radius: 100px;
  font-size: 15px;
  font-weight: 500;
  font-family: inherit;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: background 0.15s, transform 0.1s;
}

.btn-primary:hover {
  background: #6D28D9;
}

.btn-primary:active {
  transform: scale(0.98);
}

.btn-outline {
  background: transparent;
  color: var(--purple);
  border: 1.5px solid var(--purple);
  padding: 12px 28px;
  border-radius: 100px;
  font-size: 15px;
  font-weight: 500;
  font-family: inherit;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: background 0.15s, transform 0.1s;
}

.btn-outline:hover {
  background: var(--purple-light);
}

.btn-outline:active {
  transform: scale(0.98);
}

.btn-primary-white,
.btn-white {
  background: white;
  color: var(--dark);
  border: none;
  padding: 13px 28px;
  border-radius: 100px;
  font-size: 15px;
  font-weight: 500;
  font-family: inherit;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: background 0.15s, transform 0.1s;
}

.btn-primary-white:hover,
.btn-white:hover {
  background: var(--purple-light);
}

.btn-primary-white:active,
.btn-white:active {
  transform: scale(0.98);
}

/* ── Breadcrumb ── */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 8px;
}

.breadcrumb a {
  font-size: 13px;
  color: var(--text-secondary);
  text-decoration: none;
}

.breadcrumb a:hover {
  color: var(--purple);
}

.breadcrumb span {
  font-size: 13px;
  color: var(--text-secondary);
}

.breadcrumb strong {
  font-size: 13px;
  color: var(--dark);
}

/* ── Features Section ── */
.features {
  padding: 80px 0;
  background: var(--bg);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 40px;
}

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

.feature-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px;
  transition: border-color 0.2s, transform 0.2s;
}

.feature-card:hover {
  border-color: var(--purple);
  transform: translateY(-2px);
}

.feature-icon {
  width: 44px;
  height: 44px;
  background: var(--purple-light);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.feature-icon svg {
  width: 22px;
  height: 22px;
}

.feature-title {
  font-size: 16px;
  font-weight: 500;
  color: var(--dark);
  margin-bottom: 6px;
}

.feature-text {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ── Pricing Section ── */
.pricing {
  padding: 80px 0;
  background: var(--white);
}

.pricing-header {
  margin-bottom: 40px;
}

.plans-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
  margin-top: 40px;
}

@media (max-width: 1024px) {
  .plans-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

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

.plan-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  transition: border-color 0.2s, transform 0.2s;
  position: relative;
}

.plan-card:hover {
  border-color: var(--muted);
  transform: translateY(-2px);
}

.plan-card.featured {
  border: 2px solid var(--purple);
  padding: 22px;
}

.plan-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--purple);
  color: white;
  font-size: 11px;
  font-weight: 500;
  padding: 3px 12px;
  border-radius: 100px;
  white-space: nowrap;
}

.plan-name {
  font-size: 13px;
  font-weight: 500;
  color: var(--purple);
  margin-bottom: 8px;
}

.plan-price {
  font-size: 26px;
  font-weight: 500;
  color: var(--dark);
  line-height: 1;
  margin-bottom: 4px;
}

.plan-price span {
  font-size: 13px;
  color: var(--text-secondary);
  font-weight: 400;
}

.plan-specs {
  list-style: none;
  margin: 14px 0;
  flex: 1;
}

.plan-specs li {
  font-size: 12px;
  color: var(--text-secondary);
  padding: 4px 0;
  border-bottom: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.plan-specs li:last-child {
  border: none;
}

.plan-specs li strong {
  color: var(--dark);
  font-weight: 500;
}

.plan-cta {
  width: 100%;
  background: var(--purple);
  color: white;
  border: none;
  padding: 10px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 500;
  font-family: inherit;
  cursor: pointer;
  text-decoration: none;
  display: block;
  text-align: center;
  transition: background 0.15s;
  margin-top: auto;
}

.plan-cta:hover {
  background: #6D28D9;
}

.pricing-note {
  font-size: 12px;
  color: var(--text-secondary);
  margin-top: 16px;
}

.pricing-note a {
  color: var(--purple);
}

/* ── Audience Section ── */
.audience {
  padding: 80px 0;
  background: var(--bg);
}

.audience-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 40px;
}

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

.audience-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px;
}

.audience-icon {
  width: 44px;
  height: 44px;
  background: var(--purple-light);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.audience-title {
  font-size: 17px;
  font-weight: 500;
  color: var(--dark);
  margin-bottom: 8px;
}

.audience-text {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 12px;
}

.audience-plan {
  font-size: 12px;
  color: var(--purple);
  font-weight: 500;
  background: var(--purple-light);
  padding: 4px 10px;
  border-radius: 100px;
  display: inline-block;
}

/* ── Datacenter Section ── */
.datacenter {
  padding: 80px 0;
  background: var(--white);
}

.dc-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  margin-top: 40px;
}

@media (max-width: 768px) {
  .dc-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

.dc-text p {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 16px;
}

.dc-link {
  color: var(--purple);
  text-decoration: none;
  font-weight: 500;
  font-size: 15px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.dc-link:hover {
  text-decoration: underline;
}

.dc-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.dc-stat {
  background: var(--bg);
  border-radius: 12px;
  padding: 20px;
}

.dc-stat-value {
  font-size: 28px;
  font-weight: 500;
  color: var(--purple);
  line-height: 1;
  margin-bottom: 4px;
}

.dc-stat-label {
  font-size: 12px;
  color: var(--text-secondary);
}

/* ── FAQ Section ── */
.faq {
  padding: 80px 0;
  background: var(--bg);
}

.faq-list {
  margin-top: 40px;
  max-width: 720px;
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: 12px;
  margin-bottom: 8px;
  overflow: hidden;
  background: var(--white);
}

.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px;
  background: none;
  border: none;
  font-family: inherit;
  font-size: 15px;
  font-weight: 500;
  color: var(--dark);
  cursor: pointer;
  text-align: left;
  gap: 12px;
  transition: background 0.15s;
}

.faq-q:hover {
  background: var(--bg);
}

.faq-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--purple-light);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.15s, transform 0.2s;
}

.faq-item.open .faq-icon {
  background: var(--purple);
  transform: rotate(45deg);
}

.faq-item.open .faq-icon svg path {
  stroke: white;
}

.faq-a {
  display: none;
  padding: 0 20px 18px;
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.7;
  border-top: 1px solid var(--border);
  padding-top: 14px;
}

.faq-item.open .faq-a {
  display: block;
}

.faq-more {
  margin-top: 20px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: var(--purple);
  text-decoration: none;
  font-weight: 500;
  font-size: 15px;
}

.faq-more:hover {
  text-decoration: underline;
}

/* ── CTA Banner ── */
.cta-banner {
  padding: 80px 0;
  background: var(--white);
}

.cta-inner {
  background: var(--dark);
  border-radius: 24px;
  padding: 60px 48px;
  text-align: center;
}

@media (max-width: 640px) {
  .cta-inner {
    padding: 40px 24px;
  }
}

.cta-inner h2 {
  font-size: clamp(22px, 3vw, 34px);
  font-weight: 500;
  color: white;
  margin-bottom: 12px;
  letter-spacing: -0.3px;
}

.cta-inner p {
  font-size: 16px;
  color: var(--muted);
  margin-bottom: 32px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

/* ── Footer ── */
footer {
  background: var(--bg);
  border-top: 1px solid var(--border);
  padding: 48px 0 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 32px;
  margin-bottom: 40px;
}

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

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

.footer-brand .nav-logo {
  margin-bottom: 10px;
}

.footer-brand p {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-top: 8px;
}

.footer-col h4 {
  font-size: 13px;
  font-weight: 500;
  color: var(--dark);
  margin-bottom: 12px;
}

.footer-col a {
  display: block;
  font-size: 13px;
  color: var(--text-secondary);
  text-decoration: none;
  margin-bottom: 8px;
  transition: color 0.15s;
}

.footer-col a:hover {
  color: var(--purple);
}

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
}

.footer-bottom p {
  font-size: 12px;
  color: var(--text-secondary);
}

/* ── Animations ── */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-badge {
  animation: fadeUp 0.5s ease both;
}

.hero h1 {
  animation: fadeUp 0.5s ease 0.1s both;
}

.hero-sub {
  animation: fadeUp 0.5s ease 0.2s both;
}

.hero-cta {
  animation: fadeUp 0.5s ease 0.3s both;
}

.fact-bar {
  animation: fadeUp 0.5s ease 0.4s both;
}

/* ═══════════════════════════════════════════════════════════════
   PAGE-SPECIFIC STYLES
   ═══════════════════════════════════════════════════════════════ */

/* ── About Page ── */
.about-intro {
  padding: 120px 0 80px;
  background: var(--white);
}

.about-intro h1 {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 500;
  color: var(--dark);
  margin-bottom: 20px;
  max-width: 640px;
  letter-spacing: -0.3px;
  line-height: 1.2;
}

.about-intro p {
  font-size: 17px;
  color: var(--text-secondary);
  max-width: 600px;
  line-height: 1.7;
  margin-bottom: 16px;
}

.about-section {
  padding: 80px 0;
}

.about-section:nth-child(even) {
  background: var(--bg);
}

.about-section:nth-child(odd) {
  background: var(--white);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

@media (max-width: 768px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

.about-text p {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 16px;
}

.about-text p:last-child {
  margin: 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.stat-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 20px;
}

.stat-val {
  font-size: 32px;
  font-weight: 500;
  color: var(--purple);
  line-height: 1;
  margin-bottom: 4px;
}

.stat-lbl {
  font-size: 13px;
  color: var(--text-secondary);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 40px;
}

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

.value-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 24px;
}

.value-icon {
  width: 40px;
  height: 40px;
  background: var(--purple-light);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}

.value-title {
  font-size: 16px;
  font-weight: 500;
  color: var(--dark);
  margin-bottom: 8px;
}

.value-text {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ── Plans Page ── */
.plans-hero {
  padding: 120px 0 60px;
  background: var(--white);
}

.include-section {
  padding: 80px 0;
  background: var(--bg);
}

.include-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 40px;
}

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

.include-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 24px;
  display: flex;
  gap: 16px;
}

.include-icon {
  width: 44px;
  height: 44px;
  background: var(--purple-light);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.include-title {
  font-size: 15px;
  font-weight: 500;
  color: var(--dark);
  margin-bottom: 5px;
}

.include-text {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ── Features Page ── */
.spec-section {
  padding: 80px 0;
}

.spec-section:nth-child(even) {
  background: var(--bg);
}

.spec-section:nth-child(odd) {
  background: var(--white);
}

.spec-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-top: 40px;
}

@media (max-width: 768px) {
  .spec-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

.spec-icon-big {
  width: 64px;
  height: 64px;
  background: var(--purple-light);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.spec-title {
  font-size: 24px;
  font-weight: 500;
  color: var(--dark);
  margin-bottom: 12px;
  letter-spacing: -0.2px;
}

.spec-text {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.7;
}

.spec-badge {
  display: inline-block;
  font-size: 12px;
  font-weight: 500;
  color: var(--purple-dark);
  background: var(--purple-light);
  padding: 4px 12px;
  border-radius: 100px;
  margin-top: 12px;
}

.spec-visual {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px;
}

.spec-visual-title {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-secondary);
  margin-bottom: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.spec-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  font-size: 14px;
}

.spec-row:last-child {
  border: none;
}

.spec-row span {
  color: var(--text-secondary);
}

.spec-row strong {
  color: var(--dark);
  font-weight: 500;
}

.os-grid {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 12px;
}

.os-badge {
  font-size: 13px;
  padding: 6px 14px;
  border-radius: 8px;
  font-weight: 500;
}

.os-linux {
  background: #EAF3DE;
  color: #27500A;
}

.os-windows {
  background: #E6F1FB;
  color: #0C447C;
}

.dc-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 12px;
}

.dc-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 14px;
}

.dc-item-title {
  font-size: 12px;
  font-weight: 500;
  color: var(--text-secondary);
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.dc-item-val {
  font-size: 15px;
  font-weight: 500;
  color: var(--dark);
}

/* ── FAQ Page ── */
.faq-page {
  padding: 80px 0;
}

.faq-group {
  margin-bottom: 48px;
}

.faq-group-title {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-secondary);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 16px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--border);
}

.faq-contact {
  background: var(--bg);
  border-radius: 16px;
  padding: 32px;
  text-align: center;
  margin-top: 48px;
}

.faq-contact h3 {
  font-size: 20px;
  font-weight: 500;
  color: var(--dark);
  margin-bottom: 8px;
}

.faq-contact p {
  font-size: 15px;
  color: var(--text-secondary);
  margin-bottom: 20px;
}

/* ── Contact Page ── */
.contact-page {
  padding: 80px 0;
  background: var(--bg);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-top: 40px;
}

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

.contact-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 24px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
  transition: border-color 0.2s;
}

.contact-card:hover {
  border-color: var(--purple);
}

.contact-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-email {
  font-size: 15px;
  font-weight: 500;
  margin-bottom: 4px;
}

.contact-email a {
  text-decoration: none;
  transition: opacity 0.15s;
}

.contact-email a:hover {
  opacity: 0.7;
}

.contact-desc {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.5;
}

.location-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 24px;
  display: flex;
  gap: 16px;
  align-items: center;
  margin-top: 16px;
}

.location-icon {
  width: 44px;
  height: 44px;
  background: var(--purple-light);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.before-write {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 16px;
}

@media (max-width: 640px) {
  .before-write {
    flex-direction: column;
    text-align: center;
  }
}

.before-write p {
  font-size: 14px;
  color: var(--text-secondary);
}

/* ── Legal Pages ── */
.legal-page {
  padding: 80px 0;
  background: var(--bg);
}

.legal-inner {
  max-width: 760px;
}

.legal-header {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px;
  margin-bottom: 24px;
}

.legal-title {
  font-size: 32px;
  font-weight: 500;
  color: var(--dark);
  margin-bottom: 8px;
  letter-spacing: -0.3px;
}

.legal-meta {
  font-size: 13px;
  color: var(--text-secondary);
}

.legal-toc {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 20px 24px;
  margin-bottom: 24px;
}

.legal-toc h3 {
  font-size: 13px;
  font-weight: 500;
  color: var(--dark);
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.legal-toc a {
  display: block;
  font-size: 13px;
  color: var(--purple);
  text-decoration: none;
  padding: 4px 0;
  border-bottom: 1px solid var(--border);
}

.legal-toc a:last-child {
  border: none;
}

.legal-toc a:hover {
  text-decoration: underline;
}

.legal-section {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 24px;
  margin-bottom: 12px;
}

.legal-section h2 {
  font-size: 17px;
  font-weight: 500;
  color: var(--dark);
  margin-bottom: 12px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--border);
}

.legal-section p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 10px;
}

.legal-section p:last-child {
  margin: 0;
}

.legal-section ul {
  margin: 8px 0 10px 20px;
}

.legal-section ul li {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 4px;
}

.legal-section a {
  color: var(--purple);
}

.sla-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 12px;
}

.sla-table th {
  background: var(--purple-light);
  color: var(--purple-dark);
  padding: 10px 14px;
  text-align: left;
  font-size: 13px;
  font-weight: 500;
}

.sla-table td {
  padding: 10px 14px;
  border-bottom: 1px solid var(--border);
  font-size: 13px;
  color: var(--text-secondary);
}

.sla-table tr:last-child td {
  border: none;
}

.legal-nav {
  display: flex;
  gap: 8px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}

.legal-nav-item {
  font-size: 13px;
  padding: 6px 14px;
  border-radius: 100px;
  border: 1px solid var(--border);
  color: var(--text-secondary);
  text-decoration: none;
  background: var(--white);
  transition: all 0.15s;
}

.legal-nav-item:hover {
  border-color: var(--purple);
  color: var(--purple);
}

.legal-nav-item.active {
  background: var(--purple);
  color: white;
  border-color: var(--purple);
}
