/* ehost - Shared Styles */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
.visually-hidden { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }

:root {
  --blue: #1565C0;
  --blue-dark: #0D47A1;
  --blue-light: #1E88E5;
  --blue-xlight: #E3F2FD;
  --accent: #FF6B00;
  --accent-light: #FFF3E0;
  --green: #2E7D32;
  --green-light: #E8F5E9;
  --purple: #6A1B9A;
  --purple-light: #F3E5F5;
  --teal: #00695C;
  --teal-light: #E0F2F1;
  --text: #0D1117;
  --text-2: #374151;
  --text-3: #6B7280;
  --border: #E5E7EB;
  --surface: #F9FAFB;
  --white: #FFFFFF;
  --radius: 10px;
  --radius-lg: 16px;
  --shadow: 0 1px 3px rgba(0,0,0,0.08), 0 4px 12px rgba(0,0,0,0.06);
  --shadow-lg: 0 4px 24px rgba(0,0,0,0.1), 0 1px 4px rgba(0,0,0,0.06);
}

@font-face {
  font-family: 'Inter Fallback';
  src: local('Arial');
  ascent-override: 90.49%;
  descent-override: 22.56%;
  line-gap-override: 0%;
  size-adjust: 107.64%;
}
body { font-family: 'Inter', 'Inter Fallback', sans-serif; color: var(--text); background: var(--white); line-height: 1.6; font-size: 16px; }

/* ═══════════════════════════════════════════════════════
   MEGA NAV
═══════════════════════════════════════════════════════ */
.main-nav { position: sticky; top: 0; z-index: 300; background: #fff; border-bottom: 1px solid var(--border); }
.nav-inner { max-width: 1320px; margin: 0 auto; display: flex; align-items: center; height: 66px; padding: 0 20px; }
.logo { text-decoration: none; display: flex; align-items: center; margin-right: 12px; flex-shrink: 0; }
.logo-img { height: 34px; width: auto; display: block; }
.footer-logo img { height: 30px; width: auto; display: block; margin-bottom: 10px; }

/* Nav menu (desktop: horizontal flex) */
.nav-menu { display: flex; align-items: center; flex: 1; height: 100%; overflow: visible; }

/* Each nav item */
.nav-item { position: static; height: 100%; display: flex; align-items: center; }

/* Nav buttons/links */
.nav-btn { all: unset; padding: 0 11px; height: 100%; cursor: pointer; font-size: 13.5px; font-weight: 500; color: #374151; display: flex; align-items: center; gap: 4px; white-space: nowrap; transition: color 0.15s; font-family: inherit; border-radius: 0; }
.nav-btn svg { width: 14px; height: 14px; flex-shrink: 0; transition: transform 0.2s; }
.nav-btn:hover, .nav-btn.current { color: var(--blue); }
.nav-item:hover .nav-btn svg, .nav-btn[aria-expanded="true"] svg { transform: rotate(180deg); }
.nav-item:hover .nav-btn { color: var(--blue); }
a.nav-btn { text-decoration: none; }

/* Dropdown panel */
.nav-drop {
  display: none; position: absolute; top: 100%; left: 0; right: 0;
  background: #fff; border-top: 1px solid var(--border);
  box-shadow: 0 16px 48px rgba(0,0,0,0.10);
  z-index: 400; padding: 20px 0;
}
.nav-item:hover .nav-drop { display: block; }
.drop-inner { max-width: 1320px; margin: 0 auto; padding: 0 24px; display: flex; gap: 32px; }
.drop-col { display: flex; flex-direction: column; gap: 4px; min-width: 220px; }
.drop-col-wide { min-width: 280px; }
.drop-section-title { font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: var(--text-3); padding: 4px 12px 8px; }
.drop-item { display: flex; align-items: center; gap: 12px; padding: 9px 12px; border-radius: 10px; text-decoration: none; transition: background 0.1s; }
.drop-item:hover { background: var(--surface); }
.di-icon { width: 38px; height: 38px; border-radius: 9px; display: flex; align-items: center; justify-content: center; font-size: 17px; flex-shrink: 0; }
.di-title { font-size: 13.5px; font-weight: 600; color: var(--text); line-height: 1.2; }
.di-desc { font-size: 11.5px; color: var(--text-3); margin-top: 2px; }
.drop-divider { width: 1px; background: var(--border); margin: 4px 8px; flex-shrink: 0; }
.drop-promo { background: linear-gradient(135deg, var(--blue), var(--blue-light)); border-radius: 12px; padding: 18px; color: white; min-width: 200px; display: flex; flex-direction: column; justify-content: space-between; }
.drop-promo-title { font-size: 15px; font-weight: 700; margin-bottom: 6px; }
.drop-promo-desc { font-size: 12px; opacity: 0.85; line-height: 1.5; margin-bottom: 14px; }
.drop-promo-btn { background: white; color: var(--blue); font-size: 12px; font-weight: 700; padding: 7px 14px; border-radius: 7px; text-decoration: none; display: inline-block; }

/* Right side of nav */
.nav-right { display: flex; align-items: center; gap: 4px; margin-left: 12px; flex-shrink: 0; }
.nav-secondary-link { font-size: 13.5px; font-weight: 500; color: #374151; text-decoration: none; padding: 7px 10px; border-radius: 8px; white-space: nowrap; transition: color 0.15s; }
.nav-secondary-link:hover { color: var(--blue); }
.nav-cta-btn { background: var(--blue); color: white !important; font-size: 13.5px; font-weight: 600; padding: 9px 18px; border-radius: 9px; text-decoration: none; white-space: nowrap; transition: background 0.15s; margin-left: 4px; }
.nav-cta-btn:hover { background: var(--blue-dark); }

/* Hamburger */
.nav-burger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 8px; margin-left: 8px; }
.nav-burger span { display: block; width: 22px; height: 2px; background: var(--text); border-radius: 2px; transition: all 0.25s; }
.nav-burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-burger.open span:nth-child(2) { opacity: 0; }
.nav-burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile overlay */
.nav-backdrop { display: none; position: fixed; inset: 0; background: rgba(0,0,0,0.4); z-index: 299; }
.nav-backdrop.show { display: block; }

/* ── MOBILE ── */
@media (max-width: 960px) {
  .nav-menu { display: none; flex-direction: column; align-items: stretch; position: fixed; top: 0; left: 0; bottom: 0; width: min(320px, 88vw); background: white; z-index: 500; overflow-y: auto; padding: 72px 0 24px; box-shadow: 4px 0 24px rgba(0,0,0,0.15); transform: translateX(-100%); transition: transform 0.28s ease; }
  .nav-menu.nav-open { display: flex; transform: translateX(0); }
  .nav-item { height: auto; flex-direction: column; align-items: stretch; }
  .nav-btn { height: auto; padding: 13px 20px; border-radius: 0; justify-content: space-between; font-size: 15px; border-bottom: 1px solid var(--border); }
  a.nav-btn { padding: 13px 20px; }
  .nav-drop { display: none !important; position: static; box-shadow: none; border: none; padding: 0; background: var(--surface); }
  .nav-item.mob-open .nav-drop { display: block !important; }
  .nav-item.mob-open > .nav-btn { position: sticky; top: 0; z-index: 10; background: #fff; }
  .drop-inner { flex-direction: column; gap: 0; padding: 8px 8px; }
  .drop-col { min-width: 0; gap: 2px; }
  .drop-divider, .drop-promo { display: none; }
  .drop-section-title { padding: 8px 12px 4px; }
  .drop-item { padding: 8px 10px; }
  .nav-right { margin-left: auto; }
  .nav-secondary-link { display: none; }
  .nav-burger { display: flex; }
}

/* ALERT BANNER */
.alert-banner { background: var(--accent); color: var(--white); text-align: center; padding: 10px 24px; font-size: 13.5px; font-weight: 500; }

/* HERO */
.hero { padding: 72px 24px 88px; text-align: center; position: relative; overflow: hidden; }
.hero-pattern::before { content: ''; position: absolute; inset: 0; background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E"); }
.hero-content { position: relative; max-width: 820px; margin: 0 auto; }
.hero-badge { display: inline-flex; align-items: center; gap: 6px; background: rgba(255,255,255,0.15); color: rgba(255,255,255,0.95); padding: 5px 16px; border-radius: 20px; font-size: 13px; font-weight: 500; margin-bottom: 24px; border: 1px solid rgba(255,255,255,0.2); }
.hero h1 { font-size: clamp(30px, 5vw, 50px); font-weight: 800; color: var(--white); line-height: 1.15; margin-bottom: 16px; letter-spacing: -1px; }
.hero h1 em { color: #FFD54F; font-style: normal; }
.hero p { font-size: 18px; color: rgba(255,255,255,0.85); margin-bottom: 36px; max-width: 580px; margin-left: auto; margin-right: auto; }

/* HERO BLUE */
.hero-blue { background: linear-gradient(135deg, #0D47A1 0%, #1565C0 40%, #1E88E5 100%); }
.hero-purple { background: linear-gradient(135deg, #4A148C 0%, #6A1B9A 40%, #8E24AA 100%); }
.hero-teal { background: linear-gradient(135deg, #004D40 0%, #00695C 40%, #00897B 100%); }
.hero-green { background: linear-gradient(135deg, #1B5E20 0%, #2E7D32 40%, #388E3C 100%); }
.hero-orange { background: linear-gradient(135deg, #BF360C 0%, #D84315 40%, #E64A19 100%); }
.hero-dark { background: linear-gradient(135deg, #0D1117 0%, #1F2937 40%, #374151 100%); }

/* STATS BAR */
.stats { background: var(--white); border-top: 1px solid var(--border); padding: 32px 24px; }
.stats-inner { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; text-align: center; }
.stat-num { font-size: 30px; font-weight: 800; color: var(--blue); line-height: 1; margin-bottom: 4px; }
.stat-label { font-size: 13px; color: var(--text-3); font-weight: 500; }

/* BREADCRUMB */
.breadcrumb { background: var(--surface); border-bottom: 1px solid var(--border); padding: 10px 24px; }
.breadcrumb-inner { max-width: 1200px; margin: 0 auto; display: flex; align-items: center; gap: 6px; font-size: 13px; color: var(--text-3); }
.breadcrumb-inner a { color: var(--blue); text-decoration: none; }
.breadcrumb-inner span { color: var(--text-3); }

/* SECTION */
section { padding: 72px 24px; }
.section-inner { max-width: 1200px; margin: 0 auto; }
.section-header { text-align: center; margin-bottom: 48px; }
.section-tag { display: inline-block; background: var(--blue-xlight); color: var(--blue); font-size: 12px; font-weight: 600; padding: 4px 12px; border-radius: 20px; text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 12px; }
.section-tag.orange { background: var(--accent-light); color: var(--accent); }
.section-tag.green { background: var(--green-light); color: var(--green); }
.section-tag.purple { background: var(--purple-light); color: var(--purple); }
.section-tag.teal { background: var(--teal-light); color: var(--teal); }
h2.section-title { font-size: clamp(26px, 3.5vw, 36px); font-weight: 800; color: var(--text); letter-spacing: -0.5px; margin-bottom: 12px; }
.section-sub { font-size: 17px; color: var(--text-3); max-width: 560px; margin: 0 auto; }

/* PLAN CARDS */
.plans-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 20px; }
.plan-card { background: var(--white); border: 1.5px solid var(--border); border-radius: var(--radius-lg); padding: 28px 24px; position: relative; transition: box-shadow 0.2s, border-color 0.2s; }
.plan-card:hover { box-shadow: var(--shadow-lg); border-color: #BFDBFE; }
.plan-card.featured { border-color: var(--blue); border-width: 2px; }
.plan-badge { position: absolute; top: -12px; left: 50%; transform: translateX(-50%); background: var(--blue); color: var(--white); font-size: 11px; font-weight: 700; padding: 4px 14px; border-radius: 20px; white-space: nowrap; text-transform: uppercase; letter-spacing: 0.5px; }
.plan-badge.orange { background: var(--accent); }
.plan-badge.green { background: var(--green); }
.plan-badge.purple { background: var(--purple); }
.plan-name { font-size: 18px; font-weight: 700; color: var(--text); margin-bottom: 4px; }
.plan-desc { font-size: 13px; color: var(--text-3); margin-bottom: 20px; min-height: 36px; line-height: 1.5; }
.plan-price { margin-bottom: 20px; }
.plan-price .amount { font-size: 36px; font-weight: 800; color: var(--text); line-height: 1; }
.plan-price .currency { font-size: 20px; font-weight: 700; color: var(--text-2); vertical-align: top; margin-top: 4px; display: inline-block; }
.plan-price .period { font-size: 13px; color: var(--text-3); }
.plan-price .old-price { font-size: 14px; color: var(--text-3); text-decoration: line-through; margin-left: 6px; }
.plan-price .save-badge { display: inline-block; background: #FEF3C7; color: #92400E; font-size: 11px; font-weight: 700; padding: 2px 7px; border-radius: 6px; margin-left: 6px; vertical-align: middle; }
.plan-cta { display: block; width: 100%; padding: 11px; text-align: center; background: var(--blue-xlight); color: var(--blue); border: 1.5px solid #BFDBFE; border-radius: 9px; font-size: 14px; font-weight: 600; text-decoration: none; transition: all 0.15s; cursor: pointer; margin-bottom: 20px; font-family: inherit; }
.plan-cta:hover { background: var(--blue); color: var(--white); border-color: var(--blue); }
.plan-card.featured .plan-cta { background: var(--blue); color: var(--white); border-color: var(--blue); }
.plan-card.featured .plan-cta:hover { background: var(--blue-dark); }
.plan-divider { border: none; border-top: 1px solid var(--border); margin: 16px 0; }
.plan-features { list-style: none; display: flex; flex-direction: column; gap: 9px; }
.plan-features li { display: flex; align-items: flex-start; gap: 8px; font-size: 13.5px; color: var(--text-2); }
.plan-features li::before { content: ''; width: 16px; height: 16px; min-width: 16px; background: var(--green-light); border-radius: 50%; background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M3.5 8l3 3 6-6' stroke='%232E7D32' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E"); background-size: contain; margin-top: 2px; }
.plan-features li.highlight { color: var(--blue); font-weight: 600; }

/* VPS CARDS */
.vps-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 20px; }
.vps-card { background: var(--white); border: 1.5px solid var(--border); border-radius: var(--radius-lg); padding: 24px; transition: box-shadow 0.2s, border-color 0.2s; }
.vps-card:hover { box-shadow: var(--shadow-lg); border-color: #BFDBFE; }
.vps-card.featured { border-color: var(--blue); border-width: 2px; }
.vps-header { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 20px; }
.vps-name { font-size: 17px; font-weight: 700; color: var(--text); }
.vps-badge { font-size: 10px; font-weight: 700; color: var(--blue); text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 2px; }
.vps-price-tag { font-size: 26px; font-weight: 800; color: var(--blue); text-align: right; }
.vps-price-tag span { font-size: 13px; font-weight: 500; color: var(--text-3); display: block; }
.vps-specs { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 20px; }
.vps-spec { background: var(--surface); border-radius: 8px; padding: 10px 12px; }
.vps-spec-label { font-size: 11px; color: var(--text-3); text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 2px; }
.vps-spec-val { font-size: 15px; font-weight: 700; color: var(--text); }
.vps-cta { display: block; width: 100%; padding: 10px; text-align: center; border-radius: 8px; background: var(--blue-xlight); color: var(--blue); border: 1.5px solid #BFDBFE; font-size: 14px; font-weight: 600; text-decoration: none; transition: all 0.15s; cursor: pointer; margin-bottom: 14px; font-family: inherit; }
.vps-cta:hover { background: var(--blue); color: var(--white); }
.vps-card.featured .vps-cta { background: var(--blue); color: var(--white); }
.vps-features { list-style: none; display: flex; flex-direction: column; gap: 7px; }
.vps-features li { display: flex; align-items: flex-start; gap: 8px; font-size: 13px; color: var(--text-2); }
.vps-features li::before { content: ''; width: 16px; height: 16px; min-width: 16px; background: var(--green-light); border-radius: 50%; background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M3.5 8l3 3 6-6' stroke='%232E7D32' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E"); background-size: contain; margin-top: 2px; }

/* FEATURES GRID */
.features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 20px; }
.feature-card { background: var(--surface); border-radius: var(--radius-lg); padding: 24px; display: flex; gap: 16px; align-items: flex-start; }
.feature-icon { width: 44px; height: 44px; min-width: 44px; background: var(--white); border-radius: 10px; border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; font-size: 22px; }
.feature-title { font-size: 15px; font-weight: 700; color: var(--text); margin-bottom: 4px; }
.feature-desc { font-size: 13px; color: var(--text-3); line-height: 1.5; }

/* COMPARE TABLE */
.compare-table { width: 100%; border-collapse: collapse; }
.compare-table th { background: var(--blue); color: var(--white); padding: 14px 18px; font-size: 14px; font-weight: 600; text-align: center; }
.compare-table th:first-child { text-align: left; border-radius: 10px 0 0 0; }
.compare-table th:last-child { border-radius: 0 10px 0 0; }
.compare-table td { padding: 13px 18px; border-bottom: 1px solid var(--border); font-size: 14px; text-align: center; }
.compare-table td:first-child { text-align: left; font-weight: 500; color: var(--text-2); }
.compare-table tr:last-child td { border-bottom: none; }
.compare-table tr:nth-child(even) td { background: var(--surface); }
.check { color: var(--green); font-weight: 700; font-size: 16px; }
.cross { color: #9CA3AF; font-size: 16px; }
.featured-col { background: var(--blue-xlight) !important; font-weight: 600; color: var(--blue) !important; }

/* DOMAIN TABLE */
.domain-table { width: 100%; border-collapse: collapse; }
.domain-table th { background: var(--blue); color: var(--white); padding: 12px 20px; font-size: 13px; font-weight: 600; text-align: left; }
.domain-table th:first-child { border-radius: 10px 0 0 0; }
.domain-table th:last-child { border-radius: 0 10px 0 0; }
.domain-table td { padding: 14px 20px; border-bottom: 1px solid var(--border); font-size: 14px; }
.domain-table tr:last-child td { border-bottom: none; }
.domain-table tr:nth-child(even) td { background: var(--surface); }
.domain-table tr:hover td { background: var(--blue-xlight); }
.domain-ext { font-weight: 700; color: var(--blue); font-size: 16px; }
.domain-price { font-weight: 600; color: var(--text); }

/* BUTTONS */
.btn-primary { background: var(--blue); color: var(--white); padding: 12px 24px; border: none; border-radius: 9px; font-size: 15px; font-weight: 600; cursor: pointer; transition: background 0.15s; text-decoration: none; display: inline-block; font-family: inherit; }
.btn-primary:hover { background: var(--blue-dark); }
.btn-accent { background: var(--accent); color: var(--white); padding: 12px 24px; border: none; border-radius: 9px; font-size: 15px; font-weight: 600; cursor: pointer; transition: background 0.15s; text-decoration: none; display: inline-block; }
.btn-accent:hover { background: #E65100; }
.btn-outline { background: transparent; color: var(--blue); padding: 11px 22px; border: 1.5px solid var(--blue); border-radius: 9px; font-size: 15px; font-weight: 600; cursor: pointer; text-decoration: none; display: inline-block; transition: all 0.15s; }
.btn-outline:hover { background: var(--blue-xlight); }
.btn-sm { padding: 6px 14px; background: var(--blue-xlight); color: var(--blue); border: 1px solid #BFDBFE; border-radius: 6px; font-size: 13px; font-weight: 600; text-decoration: none; transition: all 0.15s; display: inline-block; cursor: pointer; }
.btn-sm:hover { background: var(--blue); color: var(--white); }
.btn-white { background: var(--white); color: var(--blue); padding: 13px 28px; border: none; border-radius: 9px; font-size: 15px; font-weight: 700; cursor: pointer; text-decoration: none; display: inline-block; transition: background 0.15s; }
.btn-white:hover { background: #F0F9FF; }
.btn-outline-white { background: transparent; color: var(--white); padding: 13px 28px; border: 2px solid rgba(255,255,255,0.5); border-radius: 9px; font-size: 15px; font-weight: 600; cursor: pointer; text-decoration: none; display: inline-block; transition: border-color 0.15s; }
.btn-outline-white:hover { border-color: var(--white); }

/* CTA BANNER */
.cta-banner { background: linear-gradient(135deg, #0D47A1 0%, #1565C0 60%, #1E88E5 100%); padding: 64px 24px; text-align: center; }
.cta-banner h2 { font-size: clamp(24px, 3vw, 36px); font-weight: 800; color: var(--white); margin-bottom: 12px; }
.cta-banner p { font-size: 17px; color: rgba(255,255,255,0.85); margin-bottom: 32px; }
.cta-buttons { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* PARTNERS */
.partners { background: var(--surface); padding: 36px 24px; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.partners-inner { max-width: 1200px; margin: 0 auto; text-align: center; }
.partners p { font-size: 12px; color: var(--text-3); font-weight: 600; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 18px; }
.partner-logos { display: flex; gap: 12px; justify-content: center; align-items: center; flex-wrap: wrap; }
.partner-logo { padding: 7px 18px; background: var(--white); border: 1px solid var(--border); border-radius: 8px; font-size: 13px; font-weight: 700; color: var(--text-2); }

/* TESTIMONIALS */
.testi-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 20px; }
.testi-card { background: var(--white); border: 1.5px solid var(--border); border-radius: var(--radius-lg); padding: 24px; }
.stars { color: #F59E0B; font-size: 15px; margin-bottom: 12px; letter-spacing: 1px; }
.testi-text { font-size: 14px; color: var(--text-2); line-height: 1.6; margin-bottom: 16px; font-style: italic; }
.testi-author { display: flex; align-items: center; gap: 10px; }
.testi-avatar { width: 38px; height: 38px; border-radius: 50%; background: var(--blue); color: var(--white); display: flex; align-items: center; justify-content: center; font-size: 13px; font-weight: 700; }
.testi-name { font-size: 14px; font-weight: 600; color: var(--text); }
.testi-role { font-size: 12px; color: var(--text-3); }

/* FAQ */
.faq-list { max-width: 800px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item { background: var(--white); border: 1.5px solid var(--border); border-radius: var(--radius); overflow: hidden; }
.faq-q { padding: 18px 20px; font-size: 15px; font-weight: 600; color: var(--text); cursor: pointer; display: flex; justify-content: space-between; align-items: center; }
.faq-q:hover { background: var(--surface); }
.faq-arrow { font-size: 18px; color: var(--text-3); transition: transform 0.2s; }
.faq-a { padding: 0 20px 18px; font-size: 14px; color: var(--text-3); line-height: 1.7; display: none; }
.faq-item.open .faq-a { display: block; }
.faq-item.open .faq-arrow { transform: rotate(180deg); }
.faq-item.open { border-color: var(--blue); }

/* TWO COL */
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.two-col.reverse { direction: rtl; }
.two-col.reverse > * { direction: ltr; }
@media (max-width: 768px) { .two-col { grid-template-columns: 1fr; gap: 32px; } .two-col.reverse { direction: ltr; } }

/* INFO CARD */
.info-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 16px; }
.info-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 24px; text-align: center; }
.info-icon { font-size: 32px; margin-bottom: 12px; }
.info-title { font-size: 15px; font-weight: 700; color: var(--text); margin-bottom: 6px; }
.info-desc { font-size: 13px; color: var(--text-3); line-height: 1.5; }

/* HIGHLIGHT BOX */
.highlight-box { background: var(--blue-xlight); border: 1.5px solid #BFDBFE; border-radius: var(--radius-lg); padding: 28px 32px; }
.highlight-box.orange { background: var(--accent-light); border-color: #FED7AA; }
.highlight-box.green { background: var(--green-light); border-color: #A7F3D0; }

/* UPTIME BADGE */
.uptime-badge { display: inline-flex; align-items: center; gap: 6px; background: var(--green-light); color: var(--green); padding: 4px 12px; border-radius: 20px; font-size: 12px; font-weight: 600; margin-bottom: 16px; }
.uptime-dot { width: 7px; height: 7px; background: var(--green); border-radius: 50%; }

/* FOOTER */
footer { background: #0D1117; color: rgba(255,255,255,0.7); padding: 56px 24px 32px; }
.footer-inner { max-width: 1200px; margin: 0 auto; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
.footer-logo { font-size: 22px; font-weight: 800; color: var(--white); letter-spacing: -0.5px; margin-bottom: 12px; }
.footer-logo span { color: var(--accent); }
.footer-desc { font-size: 13.5px; line-height: 1.7; margin-bottom: 20px; }
.footer-col h3 { font-size: 12px; font-weight: 700; color: var(--white); text-transform: uppercase; letter-spacing: 0.8px; margin-bottom: 16px; }
.footer-col a { display: block; font-size: 13.5px; color: rgba(255,255,255,0.6); text-decoration: none; margin-bottom: 8px; transition: color 0.15s; }
.footer-col a:hover { color: var(--white); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 24px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
.footer-bottom p { font-size: 13px; }
.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a { font-size: 13px; color: rgba(255,255,255,0.5); text-decoration: none; }
.footer-bottom-links a:hover { color: var(--white); }

/* UTILS */
.bg-alt { background: var(--surface); }
.text-center { text-align: center; }
.mt-8 { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mb-32 { margin-bottom: 32px; }
.note { font-size: 13px; color: var(--text-3); text-align: center; margin-top: 24px; }
.note strong { color: var(--text-2); }

/* RESPONSIVE */
@media (max-width: 768px) {
  .nav-links { display: none; }
  .stats-inner { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .plans-grid { grid-template-columns: 1fr; }
  .vps-grid { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
}
