/* CyberGhost VPN Mirror — style.css */
@import url('https://fonts.googleapis.com/css2?family=Nunito+Sans:wght@400;600;700;800&display=swap');
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.0/css/all.min.css');

:root {
  --primary:       #FFCC00;
  --primary-dark:  #E6B800;
  --primary-hover: #FFD633;
  --bg:            #1A1A2E;
  --bg-dark:       #0F0F1E;
  --bg-card:       #252540;
  --surface:       #1E1E35;
  --text:          #FFFFFF;
  --text-muted:    #A0A0C0;
  --text-dark:     #1A1A2E;
  --accent:        #00D4AA;
  --danger:        #FF4757;
  --border:        rgba(255,255,255,0.08);

  --radius-sm:     6px;
  --radius-md:     12px;
  --radius-lg:     20px;
  --radius-xl:     32px;

  --shadow-card:   0 4px 24px rgba(0,0,0,0.3);
  --shadow-glow:   0 0 40px rgba(255,204,0,0.15);

  --space-xs:  4px;
  --space-sm:  8px;
  --space-md:  16px;
  --space-lg:  32px;
  --space-xl:  64px;
  --space-2xl: 96px;

  --max-w: 1200px;
  --header-h: 70px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html, body { overflow-x: hidden; max-width: 100%; scroll-behavior: smooth; }
body { font-family: 'Nunito Sans', sans-serif; font-size: 16px; line-height: 1.6; background: var(--bg); color: var(--text); }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ── HEADER ── */
.site-header {
  position: sticky; top: 0; z-index: 1000;
  background: var(--bg-dark);
  border-bottom: 1px solid var(--border);
  height: var(--header-h);
}
.nav {
  max-width: var(--max-w); margin: 0 auto; padding: 0 var(--space-lg);
  height: 100%; display: flex; align-items: center; gap: var(--space-lg);
}
.brand { flex-shrink: 0; }
.logo { height: 36px; width: auto; }
.nav-links {
  display: flex; align-items: center; gap: var(--space-md);
  flex: 1; list-style: none;
}
.nav-links a {
  color: var(--text-muted); font-weight: 600; font-size: 14px;
  padding: 6px 10px; border-radius: var(--radius-sm);
  transition: color .2s;
  white-space: nowrap;
}
.nav-links a:hover { color: var(--text); }
.nav-right { display: flex; align-items: center; gap: var(--space-md); margin-left: auto; flex-shrink: 0; }

/* Dropdown / Lang switcher */
.dropdown { position: relative; }
.dropdown-trigger {
  display: flex; align-items: center; gap: 6px;
  background: transparent; border: 1px solid var(--border);
  color: var(--text-muted); font-size: 14px; font-weight: 600;
  padding: 8px 12px; border-radius: var(--radius-sm); cursor: pointer;
  transition: border-color .2s, color .2s;
  font-family: inherit;
}
.dropdown-trigger:hover { color: var(--text); border-color: var(--primary); }
.dropdown-panel {
  position: absolute; top: 100%; right: 0;
  margin-top: 0; padding-top: 8px;
  display: none; min-width: 130px; z-index: 1100;
}
.dropdown-panel-inner {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-md); overflow: hidden;
  box-shadow: var(--shadow-card);
}
.dropdown:hover .dropdown-panel,
.dropdown:focus-within .dropdown-panel { display: block; }
.dropdown-panel a {
  display: block; padding: 10px 16px;
  font-size: 14px; font-weight: 600; color: var(--text-muted);
  transition: background .15s, color .15s;
}
.dropdown-panel a:hover { background: var(--surface); color: var(--text); }

/* CTA button */
.btn-cta {
  display: inline-block;
  background: var(--primary); color: var(--text-dark);
  font-weight: 800; font-size: 14px;
  padding: 10px 22px; border-radius: var(--radius-xl);
  transition: background .2s, transform .15s;
  white-space: nowrap;
}
.btn-cta:hover { background: var(--primary-hover); transform: translateY(-1px); }
.btn-cta-lg {
  font-size: 17px; padding: 16px 36px; border-radius: var(--radius-xl);
}
.btn-outline {
  display: inline-block;
  border: 2px solid var(--primary); color: var(--primary);
  font-weight: 700; font-size: 14px;
  padding: 10px 22px; border-radius: var(--radius-xl);
  transition: background .2s, color .2s;
}
.btn-outline:hover { background: var(--primary); color: var(--text-dark); }

/* Mobile toggle */
.nav-toggle {
  display: none; background: none; border: none;
  color: var(--text); font-size: 22px; cursor: pointer; padding: 6px;
  order: 99;
}

/* ── HERO ── */
.hero {
  background: linear-gradient(135deg, var(--bg-dark) 0%, var(--bg) 60%, #1e1a40 100%);
  padding: var(--space-2xl) 0;
  position: relative; overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background: url('/assets/images/hero-bg.jpg') center/cover no-repeat;
  opacity: 0.08;
}
.hero-inner {
  max-width: var(--max-w); margin: 0 auto; padding: 0 var(--space-lg);
  display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-xl);
  align-items: center; position: relative;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(255,204,0,.15); border: 1px solid rgba(255,204,0,.3);
  color: var(--primary); font-size: 13px; font-weight: 700;
  padding: 6px 14px; border-radius: var(--radius-xl); margin-bottom: var(--space-md);
}
.hero h1 {
  font-size: clamp(32px, 5vw, 54px); font-weight: 800; line-height: 1.15;
  margin-bottom: var(--space-md);
}
.hero h1 span { color: var(--primary); }
.hero-sub {
  font-size: 18px; color: var(--text-muted); margin-bottom: var(--space-lg);
  max-width: 500px;
}
.hero-ctas { display: flex; gap: var(--space-md); flex-wrap: wrap; }
.hero-stats {
  display: flex; gap: var(--space-lg); margin-top: var(--space-lg); flex-wrap: wrap;
}
.hero-stat { text-align: center; }
.hero-stat-num { font-size: 28px; font-weight: 800; color: var(--primary); }
.hero-stat-label { font-size: 13px; color: var(--text-muted); margin-top: 4px; }
.hero-img { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-glow); }

/* ── SECTIONS ── */
.section { padding: var(--space-2xl) 0; }
.section-alt { background: var(--surface); }
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 var(--space-lg); }
.section-header { text-align: center; margin-bottom: var(--space-xl); }
.section-header h2 { font-size: clamp(26px, 4vw, 40px); font-weight: 800; margin-bottom: var(--space-md); }
.section-header h2 span { color: var(--primary); }
.section-header p { font-size: 17px; color: var(--text-muted); max-width: 640px; margin: 0 auto; }
.label {
  display: inline-block; font-size: 12px; font-weight: 700; letter-spacing: 1.5px;
  text-transform: uppercase; color: var(--primary); margin-bottom: var(--space-sm);
}

/* Feature grid */
.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-lg); }
.feature-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: var(--space-lg);
  transition: transform .2s, border-color .2s;
}
.feature-card:hover { transform: translateY(-4px); border-color: rgba(255,204,0,.3); }
.feature-icon {
  width: 52px; height: 52px; border-radius: var(--radius-md);
  background: rgba(255,204,0,.12); display: flex; align-items: center; justify-content: center;
  font-size: 22px; color: var(--primary); margin-bottom: var(--space-md);
}
.feature-card h3 { font-size: 18px; font-weight: 700; margin-bottom: 8px; }
.feature-card p { font-size: 15px; color: var(--text-muted); }

/* Stats row */
.stats-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--space-lg); text-align: center; }
.stat-num { font-size: clamp(32px, 4vw, 48px); font-weight: 800; color: var(--primary); }
.stat-label { font-size: 14px; color: var(--text-muted); margin-top: 12px; }

/* Image split row */
.split-row { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-xl); align-items: center; }
.split-row.reverse { direction: rtl; }
.split-row.reverse > * { direction: ltr; }
.split-content h2 { font-size: clamp(24px, 3.5vw, 36px); font-weight: 800; margin-bottom: var(--space-md); }
.split-content h2 span { color: var(--primary); }
.split-content p { font-size: 16px; color: var(--text-muted); margin-bottom: var(--space-md); }
.split-img { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-card); }

/* Check list */
.check-list { list-style: none; }
.check-list li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 15px; margin-bottom: 12px; color: var(--text-muted);
}
.check-list li::before {
  content: '✓'; color: var(--accent); font-weight: 800; font-size: 14px;
  flex-shrink: 0; margin-top: 2px;
}

/* Image strip */
.image-strip { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-md); }
.image-strip img { border-radius: var(--radius-md); aspect-ratio: 4/3; object-fit: cover; width: 100%; }

/* Pricing */
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-lg); }
.pricing-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: var(--space-lg);
  position: relative; transition: transform .2s;
}
.pricing-card:hover { transform: translateY(-4px); }
.pricing-card.popular {
  border-color: var(--primary);
  box-shadow: 0 0 30px rgba(255,204,0,.2);
}
.pricing-badge {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--primary); color: var(--text-dark);
  font-size: 12px; font-weight: 800; padding: 4px 16px; border-radius: 20px;
  white-space: nowrap;
}
.pricing-plan { font-size: 14px; font-weight: 700; color: var(--text-muted); margin-bottom: 8px; }
.pricing-price { margin-bottom: var(--space-md); }
.pricing-amount { font-size: 42px; font-weight: 800; color: var(--primary); }
.pricing-period { font-size: 14px; color: var(--text-muted); }
.pricing-billing { font-size: 13px; color: var(--text-muted); margin-top: 4px; }
.pricing-save {
  display: inline-block; background: rgba(255,204,0,.15);
  color: var(--primary); font-size: 12px; font-weight: 700;
  padding: 3px 10px; border-radius: 20px; margin-bottom: var(--space-md);
}
.pricing-features { list-style: none; margin-bottom: var(--space-lg); }
.pricing-features li {
  display: flex; align-items: center; gap: 8px;
  font-size: 14px; color: var(--text-muted); margin-bottom: 10px;
}
.pricing-features li i { color: var(--accent); font-size: 13px; }
.pricing-card .btn-cta,
.pricing-card .btn-outline { display: block; text-align: center; width: 100%; }

/* Testimonials */
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-lg); }
.testimonial-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: var(--space-lg);
}
.testimonial-stars { color: var(--primary); font-size: 14px; margin-bottom: var(--space-sm); }
.testimonial-text { font-size: 15px; color: var(--text-muted); margin-bottom: var(--space-md); font-style: italic; }
.testimonial-author { font-size: 14px; font-weight: 700; }

/* FAQ */
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-q {
  width: 100%; background: none; border: none; color: var(--text);
  font-family: inherit; font-size: 16px; font-weight: 700;
  text-align: left; padding: var(--space-md) 0; cursor: pointer;
  display: flex; align-items: center; justify-content: space-between; gap: var(--space-md);
}
.faq-q i { color: var(--primary); flex-shrink: 0; transition: transform .3s; }
.faq-item.open .faq-q i { transform: rotate(180deg); }
.faq-a { display: none; padding-bottom: var(--space-md); font-size: 15px; color: var(--text-muted); }
.faq-item.open .faq-a { display: block; }

/* Platform icons */
.platforms-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: var(--space-md); text-align: center; }
.platform-item {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-md); padding: var(--space-md) var(--space-sm);
  transition: border-color .2s, transform .2s;
}
.platform-item:hover { border-color: rgba(255,204,0,.3); transform: translateY(-2px); }
.platform-item i { font-size: 28px; color: var(--primary); margin-bottom: 8px; display: block; }
.platform-item span { font-size: 12px; font-weight: 600; color: var(--text-muted); }

/* CTA section */
.cta-section {
  background: linear-gradient(135deg, #252540 0%, #1e1a40 100%);
  text-align: center; padding: var(--space-2xl) 0;
}
.cta-section h2 { font-size: clamp(26px, 4vw, 42px); font-weight: 800; margin-bottom: var(--space-md); }
.cta-section h2 span { color: var(--primary); }
.cta-section p { font-size: 17px; color: var(--text-muted); margin-bottom: var(--space-lg); }
.cta-btns { display: flex; gap: var(--space-md); justify-content: center; flex-wrap: wrap; }

/* Guarantee badge */
.guarantee-badge {
  display: inline-flex; align-items: center; gap: 10px;
  margin-top: var(--space-md); font-size: 14px; color: var(--text-muted);
}
.guarantee-badge i { color: var(--accent); font-size: 20px; }

/* FOOTER */
.site-footer {
  background: var(--bg-dark); border-top: 1px solid var(--border);
  padding: var(--space-xl) 0 var(--space-lg);
}
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: var(--space-xl); margin-bottom: var(--space-xl); }
.footer-brand .logo { height: 32px; margin-bottom: var(--space-md); }
.footer-brand p { font-size: 14px; color: var(--text-muted); max-width: 280px; }
.footer-col h4 { font-size: 13px; font-weight: 800; letter-spacing: 1px; text-transform: uppercase; color: var(--primary); margin-bottom: var(--space-md); }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { font-size: 14px; color: var(--text-muted); transition: color .2s; }
.footer-col ul li a:hover { color: var(--text); }
.footer-bottom {
  border-top: 1px solid var(--border); padding-top: var(--space-md);
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: var(--space-md);
}
.footer-bottom p { font-size: 13px; color: var(--text-muted); }
.footer-social { display: flex; gap: var(--space-md); }
.footer-social a { color: var(--text-muted); font-size: 18px; transition: color .2s; }
.footer-social a:hover { color: var(--primary); }

/* ── INNER PAGE HERO ── */
.page-hero {
  background: linear-gradient(135deg, var(--bg-dark) 0%, var(--bg) 100%);
  padding: var(--space-xl) 0; text-align: center;
}
.page-hero h1 { font-size: clamp(28px, 4vw, 46px); font-weight: 800; margin-bottom: var(--space-md); }
.page-hero h1 span { color: var(--primary); }
.page-hero p { font-size: 18px; color: var(--text-muted); max-width: 600px; margin: 0 auto; }

/* Responsive 3-column card grid */
.card-grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; margin-bottom: 48px; }

/* Legal pages */
.legal-content { max-width: 800px; margin: 0 auto; padding: var(--space-xl) var(--space-lg); }
.legal-content h2 { font-size: 22px; font-weight: 700; margin: var(--space-lg) 0 var(--space-md); color: var(--primary); }
.legal-content h3 { font-size: 18px; font-weight: 700; margin: var(--space-md) 0 8px; }
.legal-content p { font-size: 15px; color: var(--text-muted); margin-bottom: var(--space-md); }
.legal-content ul { padding-left: var(--space-md); margin-bottom: var(--space-md); }
.legal-content ul li { font-size: 15px; color: var(--text-muted); margin-bottom: 8px; list-style: disc; }

/* Contact form */
.contact-form { max-width: 600px; margin: 0 auto; }
.form-group { margin-bottom: var(--space-md); }
.form-group label { display: block; font-size: 14px; font-weight: 700; margin-bottom: 6px; }
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%; background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-sm); color: var(--text); font-family: inherit; font-size: 15px;
  padding: 12px 16px; transition: border-color .2s;
}
.form-group input:focus,
.form-group textarea:focus { outline: none; border-color: var(--primary); }
.form-group textarea { resize: vertical; min-height: 120px; }

/* Comparison table */
.compare-wrap { overflow-x: auto; }
.compare-table { width: 100%; border-collapse: collapse; }
.compare-table th, .compare-table td {
  padding: 14px 16px; text-align: left;
  border-bottom: 1px solid var(--border); font-size: 14px;
}
.compare-table th { background: var(--bg-card); font-weight: 700; color: var(--text-muted); font-size: 13px; text-transform: uppercase; }
.compare-table td:first-child { color: var(--text-muted); }
.compare-table .yes { color: var(--accent); font-weight: 700; }
.compare-table .no { color: var(--danger); font-weight: 700; }
.compare-table tr:hover td { background: rgba(255,255,255,.02); }

/* ── MOBILE ── */
@media (max-width: 768px) {
  .nav { padding: 0 0 0 var(--space-md); gap: 0; }
  .nav-right .btn-cta { display: none; }
  .nav-toggle { margin-left: auto; padding: 8px var(--space-md) 8px 8px; }
  .card-grid-3 { grid-template-columns: 1fr !important; }
  .nav-links {
    display: none;
    position: absolute; top: 100%; left: 0; right: 0;
    flex-direction: column; align-items: center;
    height: auto; max-height: none; overflow: visible;
    background: var(--bg-dark); box-shadow: 0 8px 16px rgba(0,0,0,.4);
    padding: var(--space-md) 0; z-index: 999;
  }
  .nav-links.open { display: flex; }
  .nav-links li { width: 100%; text-align: center; }
  .nav-links a { display: block; padding: 14px 0; font-size: 17px; width: 100%; }
  .nav-links .lang-switcher-mobile {
    display: flex; justify-content: center; width: 100%;
    margin-top: var(--space-sm); padding: var(--space-sm) 0;
  }
  .nav-links .lang-switcher-mobile a {
    padding: 8px 16px; font-size: 15px; white-space: nowrap;
    color: var(--text-muted); border: 1px solid var(--border); border-radius: var(--radius-sm);
    margin: 0 4px;
  }
  .nav-right .dropdown { display: none; }
  .nav-right { margin-left: auto; }
  .nav-toggle { display: block; }

  .hero-inner { grid-template-columns: 1fr; }
  .hero-img { display: none; }
  .hero h1 { font-size: 30px; }
  .hero-ctas { flex-direction: column; }
  .btn-cta, .hero-cta, .cta-button {
    display: block; margin-left: auto; margin-right: auto;
    text-align: center; width: max-content; max-width: 90%;
  }
  .hero-ctas .btn-cta,
  .hero-ctas .btn-outline { width: 100%; max-width: 320px; text-align: center; }
  .cta-wrap { display: flex; justify-content: center; width: 100%; }

  .features-grid { grid-template-columns: 1fr; }
  .stats-row { grid-template-columns: 1fr 1fr; }
  .split-row { grid-template-columns: 1fr; }
  .split-row.reverse { direction: ltr; }
  .split-img { display: none; }
  .image-strip { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .platforms-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .cta-btns { flex-direction: column; align-items: center; }
  .cta-btns .btn-cta,
  .cta-btns .btn-outline { width: 100%; max-width: 320px; text-align: center; }
  .hero-stats { justify-content: center; }
}
@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
  .platforms-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-row { grid-template-columns: 1fr; }
}
