/* NHC Hosting v5 — PlanetHoster-inspired layout */
@import url('https://fonts.googleapis.com/css2?family=Lato:wght@300;400;700;900&display=swap');

:root {
  --navy: #0d1e34;
  --navy-light: #132d4f;
  --navy-dark: #091728;
  --body-bg: #f5f7fa;
  --white: #ffffff;
  --text-dark: #1a2b3c;
  --text-body: #4a5568;
  --text-light: #8896a6;
  --red: #ec3d3d;
  --red-hover: #d63030;
  --green: #22c55e;
  --green-dark: #0a5134;
  --green-brand: #80b941;
  --green-brand-hover: #6da832;
  --yellow: #ffba01;
  --blue: #3b82f6;
  --border: #e2e8f0;
  --radius: 6px;
  --shadow: 0 2px 8px rgba(0,0,0,0.06);
  --shadow-lg: 0 8px 32px rgba(0,0,0,0.1);
  --transition: 0.3s ease;
  --topbar-h: 36px;
  --nav-h: 56px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Lato', -apple-system, sans-serif;
  background: var(--body-bg);
  color: var(--text-body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ========== TOP BAR ========== */
.topbar {
  background: #002b4a;
  color: #fff;
  font-size: 13px;
  height: 36px;
  display: flex;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 101;
}
.topbar .container {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0;
  max-width: 100%;
  width: 100%;
  padding: 0 40px;
}
.topbar a { color: #fff; font-weight: 400; transition: color var(--transition); font-size: 12px; padding: 0 12px; }
.topbar a:hover { color: var(--green-brand); }
.status-dot {
  width: 8px; height: 8px;
  background: var(--green);
  border-radius: 50%;
  display: inline-block;
  margin-right: 5px;
  animation: blink 2s infinite;
}
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:.2} }
.topbar-sep { color: rgba(255,255,255,0.3); font-size: 11px; padding: 0 4px; }
.topbar-flag { width: 20px; height: 14px; vertical-align: middle; margin-right: 4px; border-radius: 2px; }

/* ========== MAIN NAV ========== */
.main-nav {
  background: #fff;
  position: sticky;
  top: 36px;
  z-index: 100;
  display: flex;
  align-items: center;
  padding: 0 100px;
  height: 56px;
  transition: background var(--transition);
  border-bottom: 4px solid var(--green-brand);
}
.nav-logo {
  font-size: 17px;
  font-weight: 900;
  color: var(--navy);
  padding-right: 20px;
  margin-right: 8px;
  border-right: 1px solid #ccc;
  white-space: nowrap;
  line-height: 56px;
}
.nav-logo .accent { color: var(--red); }
.nav-links { display: flex; align-items: center; }
.nav-links li { position: relative; }
.nav-links li a {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 18px 14px;
  font-size: 13px;
  font-weight: 700;
  color: #555;
  transition: color var(--transition);
}
.nav-links li a:hover { color: var(--red); }
.nav-links li::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 4px;
  background: var(--red);
  transition: width var(--transition);
}
.nav-links li:hover::after { width: 100%; }
.nav-right { margin-left: auto; display: flex; align-items: center; gap: 12px; }
.btn-nav-green {
  background: var(--green-brand);
  color: #fff;
  padding: 10px 24px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: background var(--transition);
}
.btn-nav-green:hover { background: var(--green-brand-hover); }

/* Burger */
.burger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  flex-direction: column;
  gap: 5px;
}
.burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: all var(--transition);
}

/* Mobile Menu */
.mobile-menu {
  display: none;
  position: fixed;
  top: calc(36px + 56px);
  left: 0;
  right: 0;
  bottom: 0;
  background: #fff;
  z-index: 98;
  flex-direction: column;
  padding: 24px;
  gap: 0;
  overflow-y: auto;
}
.mobile-menu.active { display: flex; }
.mobile-menu a {
  display: block;
  padding: 16px 0;
  font-size: 16px;
  font-weight: 700;
  color: var(--navy);
  border-bottom: 1px solid var(--border);
}
.mobile-menu a:last-child { border: none; }
.mobile-menu-btn {
  margin-top: 16px;
  background: var(--green-brand) !important;
  color: #fff !important;
  text-align: center;
  padding: 14px !important;
  border-radius: 6px;
  border: none !important;
}

/* ========== HERO ========== */
.hero {
  background: var(--navy);
  background-image: url('/images/hero-bg.webp');
  background-size: cover;
  background-position: center top;
  color: #fff;
  padding: 80px 0 60px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: 60px; right: 20%;
  width: 6px; height: 6px;
  background: rgba(255,255,255,0.4);
  border-radius: 50%;
  box-shadow:
    200px 80px 0 rgba(255,255,255,0.2),
    400px 30px 0 rgba(255,255,255,0.3),
    150px 200px 0 rgba(255,255,255,0.15),
    350px 150px 0 rgba(255,255,255,0.25),
    500px 100px 0 rgba(255,255,255,0.1),
    50px 300px 0 rgba(255,255,255,0.2);
  animation: twinkle 4s ease-in-out infinite;
}
@keyframes twinkle { 0%,100%{opacity:1} 50%{opacity:0.3} }
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: center;
}
.hero h1 {
  font-size: 36px;
  font-weight: 900;
  line-height: 1.25;
  margin-bottom: 16px;
}
.hero .subtitle {
  font-size: 16px;
  font-style: italic;
  color: rgba(255,255,255,0.85);
  margin-bottom: 16px;
}
.hero .subtitle strong { color: #fff; font-style: normal; }
.hero .desc {
  font-size: 14px;
  color: rgba(255,255,255,0.7);
  line-height: 1.8;
  margin-bottom: 32px;
  max-width: 500px;
}
.hero-price-badge {
  background: var(--green-dark);
  display: inline-block;
  padding: 14px 24px;
  border-radius: var(--radius);
  margin-bottom: 8px;
}
.hero-price-badge .label {
  font-size: 12px;
  color: rgba(255,255,255,0.7);
  display: block;
  margin-bottom: 2px;
}
.hero-price-badge .price {
  font-size: 28px;
  font-weight: 900;
  color: #fff;
}
.hero-price-badge .period { font-size: 13px; color: rgba(255,255,255,0.7); }
.hero-guarantee {
  font-size: 12px;
  font-style: italic;
  color: rgba(255,255,255,0.5);
  margin-bottom: 20px;
}
.hero-cta { display: flex; gap: 12px; flex-wrap: wrap; }
.btn-yellow {
  background: var(--yellow);
  color: #111;
  padding: 14px 28px;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 700;
  transition: all var(--transition);
  border: none; cursor: pointer;
}
.btn-yellow:hover { background: #e5a800; transform: translateY(-1px); }
.btn-outline-w {
  background: transparent;
  color: #fff;
  padding: 14px 28px;
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 4px;
  font-size: 14px;
  font-weight: 700;
  transition: all var(--transition);
}
.btn-outline-w:hover { border-color: #fff; background: rgba(255,255,255,0.05); }
.hero-rocket {
  display: flex;
  justify-content: center;
  align-items: flex-end;
}
.hero-rocket img {
  height: 360px;
  width: auto;
  filter: drop-shadow(0 20px 60px rgba(0,0,0,0.4));
}

/* ========== STATS BAR ========== */
.stats-bar {
  background: var(--navy-light);
  background-image: url('/images/hero-bg.webp');
  background-size: cover;
  background-position: center bottom;
  padding: 40px 0;
  color: #fff;
  position: relative;
}
.stats-bar::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(13,30,52,0.85);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
  position: relative;
  z-index: 1;
}
.stat-item .stat-number {
  font-size: 42px;
  font-weight: 900;
  color: #fff;
}
.stat-item .stat-label {
  font-size: 14px;
  font-weight: 700;
  color: rgba(255,255,255,0.8);
  margin-top: 4px;
}

/* ========== SECTIONS ========== */
.section { padding: 80px 0; }
.section-dark { background: var(--navy); color: #fff; }
.section-title { font-size: 24px; font-weight: 900; color: var(--text-dark); margin-bottom: 12px; }
.section-dark .section-title { color: #fff; }
.section-subtitle { font-size: 15px; color: var(--text-light); margin-bottom: 48px; max-width: 640px; line-height: 1.7; }
.section-dark .section-subtitle { color: rgba(255,255,255,0.7); }

/* ========== PRICING ========== */
.pricing-section { padding: 60px 0 80px; }
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 20px rgba(0,0,0,0.08);
  border: 1px solid var(--border);
}
.pricing-card {
  background: #fff;
  padding: 32px 20px;
  border-right: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  transition: all var(--transition);
  position: relative;
}
.pricing-card:hover { background: #f9fafb; }
.pricing-card:last-child { border-right: none; }
.pricing-card.featured { background: var(--navy); color: #fff; }
.pricing-card.featured:hover { background: var(--navy-light); }
.pricing-card.popular {
  background: #f8fbff;
  border-top: 3px solid var(--blue);
}
.pricing-card.popular::before {
  content: '⭐ PLUS POPULAIRE';
  position: absolute;
  top: 8px; right: 8px;
  background: var(--blue);
  color: #fff;
  font-size: 9px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 4px;
  letter-spacing: 0.3px;
}
.pricing-icon {
  width: 40px; height: 40px;
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 12px;
  font-size: 18px;
}
.pricing-icon.blue { background: #dbeafe; }
.pricing-icon.purple { background: #ede9fe; }
.pricing-icon.green { background: #dcfce7; }
.pricing-icon.orange { background: #fff7ed; }
.pricing-card.featured .pricing-icon { background: rgba(255,255,255,0.1); }
.pricing-name { font-size: 15px; font-weight: 700; margin-bottom: 4px; color: var(--text-dark); }
.pricing-card.featured .pricing-name { color: #fff; }
.pricing-desc { font-size: 12px; color: var(--text-light); margin-bottom: 20px; }
.pricing-card.featured .pricing-desc { color: rgba(255,255,255,0.6); }
.pricing-price { margin-bottom: 20px; }
.pricing-price .amount { font-size: 28px; font-weight: 900; color: var(--text-dark); }
.pricing-card.featured .pricing-price .amount { color: #fff; }
.pricing-price .period { font-size: 12px; color: var(--text-light); }
.pricing-card.featured .pricing-price .period { color: rgba(255,255,255,0.6); }
.pricing-features { flex: 1; margin-bottom: 24px; }
.pricing-features li { font-size: 12px; padding: 5px 0; color: var(--text-body); border-bottom: 1px solid #f1f5f9; }
.pricing-card.featured .pricing-features li { color: rgba(255,255,255,0.8); border-color: rgba(255,255,255,0.08); }
.pricing-features li:last-child { border: none; }
.btn-card {
  display: block; text-align: center; padding: 12px;
  border-radius: 4px; font-size: 13px; font-weight: 700;
  transition: all var(--transition); margin-top: auto;
}
.btn-card.green { background: var(--green-brand); color: #fff; }
.btn-card.green:hover { background: var(--green-brand-hover); }
.btn-card.outline { border: 2px solid var(--green-brand); color: var(--green-brand); background: transparent; }
.btn-card.outline:hover { background: var(--green-brand); color: #fff; }
.pricing-card.featured .btn-card.outline { border-color: var(--yellow); color: var(--yellow); }
.pricing-card.featured .btn-card.outline:hover { background: var(--yellow); color: #111; }

/* ========== FEATURES ========== */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.feature-card {
  padding: 28px;
  border-radius: var(--radius);
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  transition: all var(--transition);
}
.feature-card:hover { background: rgba(255,255,255,0.07); border-color: rgba(255,255,255,0.15); }
.feature-icon { font-size: 28px; margin-bottom: 14px; }
.feature-card h3 { font-size: 15px; font-weight: 700; margin-bottom: 10px; color: #fff; }
.feature-card p { font-size: 13px; color: rgba(255,255,255,0.65); line-height: 1.7; }

/* ========== FAQ ========== */
.faq-section { padding: 80px 0; }
.faq-title { font-size: 18px; font-weight: 900; color: var(--text-dark); margin-bottom: 32px; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-question {
  display: flex; justify-content: space-between; align-items: center;
  padding: 18px 0; cursor: pointer;
  font-size: 14px; font-weight: 600; color: var(--text-dark);
  transition: color var(--transition);
}
.faq-question:hover { color: var(--green-brand); }
.faq-question::after { content: '+'; font-size: 22px; color: var(--text-light); transition: transform var(--transition); }
.faq-item.open .faq-question::after { content: '−'; color: var(--green-brand); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease, padding 0.3s ease; font-size: 14px; color: var(--text-body); line-height: 1.8; }
.faq-item.open .faq-answer { max-height: 300px; padding-bottom: 18px; }

/* ========== SUPPORT ========== */
.support-section { background: var(--navy); padding: 80px 0; color: #fff; }
.support-grid { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 60px; align-items: center; }
.support-grid h2 { font-size: 26px; font-weight: 900; margin-bottom: 16px; }
.support-grid p { color: rgba(255,255,255,0.7); margin-bottom: 24px; font-size: 14px; line-height: 1.7; }
.btn-outline-green {
  display: inline-block;
  border: 2px solid var(--green-brand);
  color: var(--green-brand);
  padding: 12px 28px;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 700;
  transition: all var(--transition);
  margin-bottom: 24px;
}
.btn-outline-green:hover { background: var(--green-brand); color: #fff; }
.support-channels { display: flex; gap: 16px; margin-top: 8px; }
.support-channel {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  padding: 10px 20px;
  border-radius: 24px;
  font-size: 13px;
  font-weight: 700;
  display: flex; align-items: center; gap: 8px;
}
.channel-icon { font-size: 16px; }
.support-visual { text-align: center; }

/* ========== NEWSLETTER ========== */
.newsletter { background: var(--green-brand); padding: 24px 0; }
.newsletter-grid { display: grid; grid-template-columns: 1fr 1.5fr; align-items: center; gap: 40px; }
.newsletter-left { display: flex; align-items: center; gap: 12px; color: #fff; font-size: 16px; }
.newsletter-icon { font-size: 24px; }
.newsletter-right { display: flex; gap: 0; }
.newsletter-input {
  flex: 1;
  padding: 14px 20px;
  border: none;
  border-radius: 4px 0 0 4px;
  background: var(--green-dark);
  color: #fff;
  font-size: 14px;
}
.newsletter-input::placeholder { color: rgba(255,255,255,0.5); }
.btn-newsletter {
  background: var(--yellow);
  color: #111;
  padding: 14px 24px;
  border: none;
  border-radius: 0 4px 4px 0;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  white-space: nowrap;
  transition: background var(--transition);
}
.btn-newsletter:hover { background: #e5a800; }

/* ========== FOOTER ========== */
.footer { background: var(--navy-dark); color: #fff; padding: 60px 0 0; }
.footer-main { display: grid; grid-template-columns: 1.3fr 2.7fr; gap: 60px; padding-bottom: 40px; }
.footer-brand .logo { font-size: 20px; font-weight: 900; margin-bottom: 4px; }
.footer-brand .logo .accent { color: var(--red); }
.footer-tagline { font-size: 12px; color: var(--green-brand); margin-bottom: 16px; font-style: italic; }
.footer-brand > p { font-size: 12px; color: rgba(255,255,255,0.5); line-height: 1.7; margin-bottom: 16px; max-width: 300px; }
.footer-certs { display: flex; gap: 6px; flex-wrap: wrap; margin-bottom: 20px; }
.cert-badge { background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1); padding: 4px 8px; border-radius: 4px; font-size: 10px; color: rgba(255,255,255,0.6); }
.footer-buttons { display: flex; flex-direction: column; gap: 10px; margin-bottom: 16px; max-width: 260px; }
.btn-footer-green {
  display: block; text-align: center;
  background: var(--green-brand); color: #fff;
  padding: 14px; border-radius: 4px;
  font-size: 14px; font-weight: 700;
  transition: background var(--transition);
}
.btn-footer-green:hover { background: var(--green-brand-hover); }
.btn-footer-yellow {
  display: block; text-align: center;
  background: var(--yellow); color: #111;
  padding: 14px; border-radius: 4px;
  font-size: 14px; font-weight: 700;
  transition: background var(--transition);
}
.btn-footer-yellow:hover { background: #e5a800; }
.footer-payments { display: flex; gap: 6px; flex-wrap: wrap; }
.pay-badge { padding: 5px 10px; border-radius: 4px; font-size: 11px; font-weight: 700; }
.pay-badge.visa { background: #1a1f71; color: #fff; }
.pay-badge.mc { background: #eb001b; color: #fff; }
.pay-badge.amex { background: #006fcf; color: #fff; }
.pay-badge.paypal { background: #003087; color: #fff; }
.pay-badge.other { background: #333; color: #fff; }
.footer-links { display: flex; flex-direction: column; gap: 32px; }
.footer-links-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; }
.footer-col h4 { font-size: 13px; font-weight: 700; text-transform: uppercase; margin-bottom: 16px; color: #fff; }
.footer-col a { display: block; font-size: 12px; color: rgba(255,255,255,0.55); padding: 4px 0; transition: color var(--transition); }
.footer-col a:hover { color: var(--green-brand); }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding: 20px 0;
  border-top: 3px solid var(--green-brand);
  margin-top: 40px;
}
.footer-bottom-left { display: flex; align-items: center; gap: 16px; }
.green-badge { font-size: 11px; font-weight: 700; color: var(--green-brand); background: rgba(128,185,65,0.1); padding: 4px 10px; border-radius: 4px; }
.copyright { font-size: 11px; color: rgba(255,255,255,0.35); }
.footer-bottom-right { display: flex; align-items: center; gap: 24px; }
.footer-legal { display: flex; gap: 16px; }
.footer-legal a { font-size: 11px; color: rgba(255,255,255,0.4); transition: color var(--transition); }
.footer-legal a:hover { color: var(--green-brand); }
.footer-social { display: flex; gap: 10px; }
.footer-social a {
  width: 28px; height: 28px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,0.08);
  border-radius: 50%;
  font-size: 12px; color: rgba(255,255,255,0.6);
  transition: all var(--transition);
}
.footer-social a:hover { background: var(--green-brand); color: #fff; }

/* ========== HIGHLIGHT SECTIONS ========== */
.highlight-section { padding: 80px 0; }
.purple-section { background: linear-gradient(135deg, #2d1b69 0%, #4c1d95 100%); color: #fff; }
.highlight-grid { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 60px; align-items: center; }
.highlight-content h2 { font-size: 28px; font-weight: 900; margin-bottom: 16px; line-height: 1.3; }
.highlight-content h2 em { font-style: italic; color: var(--green-brand); }
.highlight-content p { font-size: 14px; line-height: 1.8; margin-bottom: 16px; opacity: 0.85; }
.check-list { list-style: none; margin-top: 20px; }
.check-list li {
  padding: 10px 0;
  padding-left: 28px;
  position: relative;
  font-size: 14px;
  line-height: 1.5;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.check-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--green-brand);
  font-weight: 700;
  font-size: 16px;
}
.check-list li:last-child { border: none; }
.highlight-visual { display: flex; align-items: center; justify-content: center; }
.ai-badge {
  font-size: 120px;
  font-weight: 900;
  color: rgba(255,255,255,0.15);
  font-style: italic;
  text-shadow: 0 0 60px rgba(139,92,246,0.3);
}
.ecosystem-diagram {
  position: relative;
  width: 300px;
  height: 300px;
}
.eco-center {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  background: var(--blue);
  color: #fff;
  width: 120px; height: 120px;
  border-radius: 50%;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  font-size: 13px; font-weight: 700;
  text-align: center;
  box-shadow: 0 4px 20px rgba(59,130,246,0.3);
}
.eco-center small { font-size: 9px; font-weight: 400; opacity: 0.8; }
.eco-item {
  position: absolute;
  font-size: 11px;
  font-weight: 600;
  color: var(--text-dark);
  white-space: nowrap;
}
.eco-1 { top: 10%; right: 0; }
.eco-2 { top: 30%; right: -20px; }
.eco-3 { top: 55%; right: -10px; }
.eco-4 { bottom: 20%; right: 0; }
.eco-5 { bottom: 5%; right: 20px; }

/* ========== HERO EXTRAS ========== */
.hero-tag {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  padding: 6px 12px;
  border-radius: 4px;
  font-size: 12px;
  color: rgba(255,255,255,0.9);
  font-weight: 600;
}
.hero-stats-box {
  background: rgba(0,0,0,0.4);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  padding: 24px;
  backdrop-filter: blur(8px);
  min-width: 240px;
}
.hero-stat-line {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  font-size: 14px;
}
.hero-stat-line:last-child { border: none; }
.hero-stat-line span { color: rgba(255,255,255,0.6); }
.hero-stat-line strong { color: var(--green-brand); font-size: 16px; }

/* ========== COMPARE TABLE ========== */
.compare-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow);
  margin-top: 24px;
}
.compare-table th {
  background: var(--navy);
  color: #fff;
  padding: 14px 16px;
  text-align: center;
  font-weight: 700;
  font-size: 14px;
}
.compare-table th:first-child { text-align: left; }
.compare-table td {
  padding: 12px 16px;
  border-bottom: 1px solid #f1f5f9;
  text-align: center;
  color: var(--text-body);
}
.compare-table td:first-child { text-align: left; font-weight: 600; color: var(--text-dark); }
.compare-table tr:hover td { background: #f8fafc; }
.compare-table .compare-section td {
  background: var(--body-bg);
  padding: 10px 16px;
  border: none;
  font-size: 12px;
  text-align: left;
}

/* ========== CONTENT BLOCKS ========== */
.content-block { max-width: 800px; }
.content-block h4 { font-size: 16px; font-weight: 700; color: var(--text-dark); margin: 24px 0 8px; }
.content-block p { font-size: 14px; line-height: 1.8; color: var(--text-body); margin-bottom: 16px; }

/* Info Cards Row */
.info-cards-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 40px; }
.info-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 32px 24px;
  text-align: center;
  transition: all var(--transition);
  box-shadow: var(--shadow);
}
.info-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.info-card-icon { font-size: 36px; margin-bottom: 16px; }
.info-card h4 { font-size: 18px; font-weight: 700; color: var(--text-dark); margin-bottom: 8px; }
.info-card p { font-size: 13px; color: var(--text-body); line-height: 1.6; margin-bottom: 16px; }
.info-card-price { font-size: 14px; font-weight: 700; color: var(--green-brand); background: rgba(128,185,65,0.1); padding: 6px 14px; border-radius: 20px; }

/* Plans Detail Grid */
.plans-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.plan-detail-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: all var(--transition);
}
.plan-detail-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-2px); }
.plan-detail-header {
  padding: 24px;
  color: #fff;
  text-align: center;
}
.plan-detail-header.blue { background: linear-gradient(135deg, #1e3a5f, #2563eb); }
.plan-detail-header.purple { background: linear-gradient(135deg, #3b1e5f, #8b5cf6); }
.plan-detail-header.green { background: linear-gradient(135deg, #1e5f3a, #22c55e); }
.plan-detail-icon { font-size: 32px; display: block; margin-bottom: 8px; }
.plan-detail-header h3 { font-size: 18px; font-weight: 700; margin-bottom: 4px; }
.plan-detail-header p { font-size: 12px; opacity: 0.8; }
.plan-detail-body { padding: 24px; }
.plan-detail-body h4 { font-size: 14px; font-weight: 700; color: var(--text-dark); margin-bottom: 8px; margin-top: 16px; }
.plan-detail-body h4:first-child { margin-top: 0; }
.plan-detail-body p { font-size: 13px; color: var(--text-body); line-height: 1.7; margin-bottom: 12px; }
.plan-detail-for {
  margin-top: 16px;
  padding: 16px;
  background: #f8fafc;
  border-left: 3px solid var(--green-brand);
  border-radius: 0 6px 6px 0;
}
.plan-detail-for strong { font-size: 13px; color: var(--text-dark); display: block; margin-bottom: 4px; }
.plan-detail-for p { font-size: 12px; margin-bottom: 0; }

/* ========== DETAIL PLAN BLOCKS ========== */
.detail-plans { display: flex; flex-direction: column; gap: 0; }
.detail-plan-block {
  padding: 32px;
  border: 1px solid var(--border);
  border-left: 4px solid var(--border);
  background: #fff;
  margin-bottom: -1px;
}
.detail-plan-block:first-child { border-radius: 8px 8px 0 0; }
.detail-plan-block:last-child { border-radius: 0 0 8px 8px; }
.detail-plan-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}
.detail-plan-header img {
  background: var(--navy);
  border-radius: 50%;
  padding: 6px;
}
.detail-plan-header h3 { font-size: 16px; font-weight: 700; color: var(--text-dark); margin: 0; }
.detail-plan-intro { font-size: 14px; color: var(--text-light); margin-bottom: 16px; }
.detail-plan-block h4 { font-size: 14px; font-weight: 700; color: var(--text-dark); margin: 16px 0 8px; }
.detail-plan-block p { font-size: 13px; color: var(--text-body); line-height: 1.8; margin-bottom: 12px; }

/* ========== SECURITY TABLE ========== */
.security-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  margin-top: 32px;
  margin-bottom: 40px;
}
.security-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 24px 16px;
  text-align: center;
  position: relative;
  transition: all var(--transition);
  box-shadow: var(--shadow);
}
.security-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.security-layer {
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--navy);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 10px;
}
.security-card-icon { font-size: 28px; margin: 12px 0; }
.security-card h4 { font-size: 14px; font-weight: 700; color: var(--text-dark); margin-bottom: 6px; }
.security-tool { font-size: 11px; color: var(--green-brand); font-weight: 700; margin-bottom: 8px; }
.security-card > p:last-child { font-size: 12px; color: var(--text-light); line-height: 1.5; }
.security-details { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.security-detail-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 24px;
  box-shadow: var(--shadow);
}
.security-detail-card h4 { font-size: 15px; font-weight: 700; color: var(--text-dark); margin-bottom: 10px; }
.security-detail-card p { font-size: 13px; color: var(--text-body); line-height: 1.7; }

/* ========== RESPONSIVE ========== */
@media (max-width: 1100px) {
  .topbar .container, .main-nav { padding: 0 24px; }
}
@media (max-width: 992px) {
  .main-nav { display: flex; }
  .nav-links { display: none; }
  .nav-right { display: none; }
  .burger { display: flex; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-rocket { display: none; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: 1fr 1fr; }
  .features-grid { grid-template-columns: 1fr; }
  .support-grid { grid-template-columns: 1fr; }
  .support-visual { display: none; }
  .footer-main { grid-template-columns: 1fr; }
  .footer-links-row { grid-template-columns: 1fr 1fr; }
  .info-cards-row { grid-template-columns: 1fr; }
  .plans-grid { grid-template-columns: 1fr; }
  .security-grid { grid-template-columns: repeat(3, 1fr); }
  .security-details { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .pricing-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .footer-links-row { grid-template-columns: 1fr; }
  .security-grid { grid-template-columns: 1fr 1fr; }
  .hero h1 { font-size: 26px; }
  .newsletter-grid { grid-template-columns: 1fr; gap: 16px; }
  .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }
  .footer-bottom-right { flex-direction: column; gap: 12px; }
}

/* ========== VPS PAGE — PLANETHOSTER STYLE ========== */

/* VPS Hero — green gradient */
.vps-hero {
  background: linear-gradient(135deg, #4cc966 0%, #2db87a 30%, #45d9a0 60%, #3ecf8e 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
  color: #fff;
}
.vps-hero::before {
  content: '';
  position: absolute;
  top: -50%; right: -20%;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(255,255,255,0.15) 0%, transparent 70%);
  border-radius: 50%;
}
.vps-hero::after {
  content: '';
  position: absolute;
  bottom: -30%; left: 10%;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
  border-radius: 50%;
}
.vps-hero-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.vps-hero-visual { text-align: center; }
.vps-hero-logo {
  font-size: 42px;
  font-weight: 900;
  letter-spacing: -1px;
  text-transform: uppercase;
  color: #fff;
  text-shadow: 0 2px 20px rgba(0,0,0,0.15);
}
.vps-hero-logo span { font-weight: 300; }
.vps-hero-powered {
  font-size: 12px;
  opacity: 0.7;
  margin-top: 4px;
}
.vps-hero-content h1 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 16px;
  line-height: 1.3;
}
.vps-hero-content p {
  font-size: 13px;
  line-height: 1.7;
  opacity: 0.9;
  margin-bottom: 12px;
}
.vps-hero-price-box {
  display: inline-block;
  background: rgba(255,255,255,0.3);
  border-radius: 6px;
  padding: 10px 28px;
  margin-top: 20px;
  margin-bottom: 20px;
}
.vps-hero-price-inner {
  display: flex;
  align-items: baseline;
  gap: 4px;
}
.vps-price-amount {
  font-size: 48px;
  font-weight: 900;
  line-height: 1;
}
.vps-price-period {
  font-size: 16px;
  opacity: 0.8;
}
.vps-diamond {
  margin-bottom: 16px;
}
.vps-spec-svg {
  fill: #00c6be;
  flex-shrink: 0;
}
.btn-vps-order {
  display: inline-block;
  background: #f5a623;
  color: #fff;
  padding: 12px 32px;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 700;
  margin-top: 8px;
  transition: background 0.3s;
}
.btn-vps-order:hover { background: #e09000; }

/* VPS Pricing Grid — 6 cards */
.vps-pricing-section {
  padding: 80px 0;
  background: var(--body-bg);
}
.vps-pricing-title {
  font-size: 28px;
  font-weight: 900;
  color: var(--text-dark);
  margin-bottom: 12px;
}
.vps-pricing-subtitle {
  font-size: 14px;
  color: var(--text-body);
  line-height: 1.7;
  max-width: 800px;
  margin-bottom: 48px;
}
.vps-plans-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.vps-plan-card {
  background: #fff;
  border: 2px solid #e0f5f0;
  border-radius: 16px;
  padding: 32px 24px;
  text-align: center;
  transition: all 0.3s;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.vps-plan-card:hover {
  border-color: #3ecf8e;
  box-shadow: 0 8px 32px rgba(62,207,142,0.12);
  transform: translateY(-4px);
}
.vps-plan-card h3 {
  font-size: 14px;
  font-weight: 400;
  color: var(--text-body);
  margin-bottom: 4px;
}
.vps-plan-price { margin-bottom: 20px; }
.vps-plan-amount {
  font-size: 32px;
  font-weight: 900;
  color: #3ecf8e;
}
.vps-plan-period {
  font-size: 14px;
  color: var(--text-light);
}
.vps-plan-specs {
  list-style: none;
  width: 100%;
  margin-bottom: 16px;
  text-align: left;
}
.vps-plan-specs li {
  padding: 8px 0;
  font-size: 13px;
  color: var(--text-body);
  display: flex;
  align-items: center;
  gap: 10px;
}
.vps-plan-specs li strong {
  font-weight: 700;
}
.vps-plan-desc {
  font-size: 12px;
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: 20px;
  flex: 1;
}
.btn-vps-commander {
  display: inline-block;
  border: 2px solid #3ecf8e;
  color: #3ecf8e;
  padding: 10px 32px;
  border-radius: 24px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.5px;
  transition: all 0.3s;
}
.btn-vps-commander:hover {
  background: #3ecf8e;
  color: #fff;
}
.vps-plan-note {
  font-size: 11px;
  color: #3ecf8e;
  margin-top: 12px;
  font-weight: 600;
}

/* VPS Configurator */
.vps-configurator-section {
  padding: 80px 0;
  background: #fff;
}
.vps-config-title {
  font-size: 28px;
  font-weight: 900;
  color: var(--text-dark);
  margin-bottom: 16px;
  text-align: center;
}
.vps-config-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  margin-bottom: 48px;
}
.vps-config-tags span {
  font-size: 12px;
  color: #3ecf8e;
  font-weight: 600;
}
.vps-config-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 40px;
  align-items: start;
}
.vps-config-sliders {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 40px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
}
.vps-slider-group {
  margin-bottom: 32px;
  padding-bottom: 32px;
  border-bottom: 1px solid #f1f5f9;
}
.vps-slider-group:last-child { margin-bottom: 0; padding-bottom: 0; border: none; }
.vps-slider-label {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}
.vps-slider-icon { font-size: 18px; }
.vps-slider-name { font-size: 14px; font-weight: 700; color: var(--text-dark); flex: 1; }
.vps-slider-value {
  font-size: 14px;
  font-weight: 700;
  color: #3ecf8e;
  background: #e8faf3;
  padding: 4px 12px;
  border-radius: 4px;
}
.vps-slider-controls {
  display: flex;
  align-items: center;
  gap: 12px;
}
.vps-slider-btn {
  width: 32px; height: 32px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: #fff;
  font-size: 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-body);
  transition: all 0.2s;
}
.vps-slider-btn:hover { border-color: #3ecf8e; color: #3ecf8e; }
.vps-slider-controls input[type="range"] {
  flex: 1;
  height: 6px;
  -webkit-appearance: none;
  appearance: none;
  background: linear-gradient(to right, #3ecf8e 0%, #e2e8f0 0%);
  border-radius: 3px;
  outline: none;
}
.vps-slider-controls input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 20px; height: 20px;
  border-radius: 50%;
  background: #3ecf8e;
  border: 3px solid #fff;
  box-shadow: 0 2px 6px rgba(62,207,142,0.3);
  cursor: pointer;
}
.vps-slider-controls input[type="range"]::-moz-range-thumb {
  width: 20px; height: 20px;
  border-radius: 50%;
  background: #3ecf8e;
  border: 3px solid #fff;
  box-shadow: 0 2px 6px rgba(62,207,142,0.3);
  cursor: pointer;
}
.vps-slider-range {
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  color: var(--text-light);
  margin-top: 8px;
}

/* VPS Summary card */
.vps-config-summary {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
  position: sticky;
  top: 120px;
}
.vps-config-summary h3 {
  background: linear-gradient(135deg, #e8faf3 0%, #d4f7e8 100%);
  padding: 16px 24px;
  font-size: 16px;
  font-weight: 700;
  color: var(--text-dark);
  text-align: center;
  border-bottom: 1px solid #d4f7e8;
}
.vps-summary-line {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 24px;
  border-bottom: 1px solid #f1f5f9;
  font-size: 13px;
}
.vps-summary-line strong { color: var(--text-dark); display: block; font-size: 13px; }
.vps-summary-line span:last-child { font-weight: 700; color: var(--text-dark); }
.vps-summary-included {
  background: #e8faf3;
  color: #3ecf8e;
  padding: 2px 10px;
  border-radius: 4px;
  font-size: 11px;
  font-weight: 700;
}
.vps-summary-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  background: #fafafa;
  border-bottom: 1px solid #f1f5f9;
}
.vps-summary-total span { font-size: 12px; font-weight: 700; color: var(--text-dark); }
.vps-summary-total small { font-size: 11px; color: #3ecf8e; }
.vps-total-price {
  font-size: 24px;
  font-weight: 900;
  color: #3ecf8e;
}
.vps-total-price small { font-size: 12px; color: var(--text-light); }
.vps-summary-help {
  display: flex;
  gap: 10px;
  align-items: center;
  padding: 16px 24px;
  border-bottom: 1px solid #f1f5f9;
}
.vps-summary-help span { font-size: 20px; }
.vps-summary-help p { font-size: 11px; color: var(--text-body); margin: 0; line-height: 1.5; }
.vps-summary-savings {
  font-size: 11px;
  color: #3ecf8e;
  font-weight: 600;
  text-align: center;
  padding: 12px 24px;
  font-style: italic;
}
.btn-vps-order-lg {
  display: block;
  background: linear-gradient(135deg, #3ecf8e 0%, #2db87a 100%);
  color: #fff;
  text-align: center;
  padding: 16px;
  font-size: 16px;
  font-weight: 700;
  margin: 0 24px 24px;
  border-radius: 6px;
  transition: all 0.3s;
}
.btn-vps-order-lg:hover { background: linear-gradient(135deg, #2db87a 0%, #1fa86a 100%); transform: translateY(-1px); }

/* VPS Responsive */
@media (max-width: 992px) {
  .vps-hero-grid { grid-template-columns: 1fr; }
  .vps-hero-visual { display: none; }
  .vps-plans-grid { grid-template-columns: 1fr 1fr; }
  .vps-config-grid { grid-template-columns: 1fr; }
  .vps-config-summary { position: static; }
}
@media (max-width: 600px) {
  .vps-plans-grid { grid-template-columns: 1fr; }
  .vps-config-tags { flex-direction: column; align-items: flex-start; }
}
