:root {
  --bg: #0a0a0a;
  --bg-card: #151515;
  --border: #2a2a2a;
  --brand-orange: #ff6a00;
  --brand-pink: #f4035b;
  --brand-purple: #9901e1;
  --brand-blue: #3022ee;
  --gradient-brand: linear-gradient(90deg, var(--brand-orange), var(--brand-pink), var(--brand-purple), var(--brand-blue));
  --accent: var(--brand-pink);
  --accent-dark: #c4024a;
  --text: #f5f5f5;
  --text-muted: #9a9a9a;
  --radius: 12px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  line-height: 1.5;
}

a { color: inherit; text-decoration: none; }

/* Header */
.site-header {
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(6px);
  z-index: 100;
}
.site-header::before {
  content: "";
  display: block;
  height: 3px;
  background: var(--gradient-brand);
}
.header-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.logo {
  font-weight: 800;
  font-size: 20px;
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}
.logo-mark { color: var(--accent); }
.logo-img { height: 40px; width: auto; display: block; }
.main-nav { display: flex; gap: 24px; flex: 1; }
.main-nav a { color: var(--text-muted); font-weight: 600; font-size: 14px; }
.main-nav a:hover { color: var(--text); }

.header-controls { display: flex; align-items: center; gap: 12px; }
.secure-badge {
  font-size: 12px;
  color: var(--text-muted);
  display: none;
}
@media (min-width: 700px) { .secure-badge { display: inline; } }

.dropdown { position: relative; }
.dropdown-toggle {
  background: var(--bg-card);
  border: 1px solid var(--border);
  color: var(--text);
  padding: 8px 14px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
}
.dropdown-menu {
  display: none;
  position: absolute;
  right: 0;
  top: calc(100% + 6px);
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 8px;
  min-width: 180px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0,0,0,0.4);
}
.dropdown.open .dropdown-menu { display: block; }
.dropdown-item {
  display: block;
  padding: 10px 14px;
  font-size: 14px;
  color: var(--text-muted);
}
.dropdown-item:hover { background: rgba(255,255,255,0.05); color: var(--text); }
.flag-icon { width: 20px; height: 15px; object-fit: cover; border-radius: 2px; vertical-align: middle; display: inline-block; }
.dropdown-item.active { color: var(--brand-pink); font-weight: 700; }

/* Hero banner image */
.hero-banner {
  max-width: 1100px;
  margin: 24px auto 0;
  padding: 0 24px;
}
.hero-banner img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 16px;
}

/* Hero */
.hero {
  max-width: 700px;
  margin: 0 auto;
  padding: 64px 24px 32px;
  text-align: center;
}
.hero h1 { font-size: 40px; font-weight: 800; margin-bottom: 16px; }
.hero h1 .accent {
  background: var(--gradient-brand); -webkit-background-clip: text; background-clip: text; color: transparent;
}
.hero-subtitle { color: var(--text-muted); font-size: 17px; }

/* Hero badges */
.badge-row {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; margin-top: 28px;
}
.badge-pill {
  background: var(--bg-card); border: 1px solid var(--border); border-radius: 30px;
  padding: 10px 18px; font-size: 13px; font-weight: 700; color: var(--text);
}

/* Why choose us */
.why-choose { max-width: 1100px; margin: 0 auto; padding: 32px 24px 80px; text-align: center; }
.why-choose h2 { font-size: 28px; font-weight: 800; margin-bottom: 8px; }
.why-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 20px; margin-top: 40px; text-align: left;
}
.why-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius); padding: 26px; }
.why-icon { font-size: 30px; margin-bottom: 14px; }
.why-card h3 { font-size: 17px; font-weight: 800; margin-bottom: 8px; }
.why-card p { color: var(--text-muted); font-size: 14px; line-height: 1.6; }

/* FAQ */
.faq { max-width: 780px; margin: 0 auto; padding: 0 24px 90px; }
.faq h2 { font-size: 28px; font-weight: 800; text-align: center; margin-bottom: 32px; }
.faq-item { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius); padding: 22px 26px; margin-bottom: 14px; }
.faq-item h3 { font-size: 16px; font-weight: 800; margin-bottom: 8px; color: var(--brand-pink); }
.faq-item p { color: #cfcfcf; font-size: 14px; line-height: 1.6; }

/* Plans */
.plans { max-width: 1100px; margin: 0 auto; padding: 32px 24px 80px; text-align: center; }
.plans h2 { font-size: 28px; font-weight: 800; margin-bottom: 8px; }
.plans-subtitle { color: var(--text-muted); margin-bottom: 40px; }

.plan-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  text-align: left;
}
.plan-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.plan-card.featured { border-color: var(--brand-purple); box-shadow: 0 0 0 1px var(--brand-purple), 0 8px 32px rgba(153, 1, 225, 0.15); }
.plan-badge {
  position: absolute;
  top: -13px;
  right: 20px;
  background: var(--gradient-brand);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 20px;
}
.plan-card h3 { font-size: 20px; font-weight: 700; }
.plan-desc { color: var(--text-muted); font-size: 14px; }
.plan-price { margin: 12px 0; }
.plan-price .original { color: var(--text-muted); font-size: 15px; text-decoration: line-through; display: block; margin-bottom: 2px; }
.plan-price .amount { font-size: 32px; font-weight: 800; }
.plan-price .period { color: var(--text-muted); font-size: 13px; display: block; }
.plan-price .per-month-note { color: var(--text-muted); font-size: 12px; display: inline-block; margin-top: 6px; background: var(--bg); border-radius: 20px; padding: 4px 10px; }

.btn {
  display: inline-block;
  text-align: center;
  padding: 12px 20px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 15px;
  cursor: pointer;
  border: none;
}
.btn-primary { background: var(--gradient-brand); color: #fff; transition: filter 0.15s, transform 0.15s; }
.btn-primary:hover { filter: brightness(1.12); transform: translateY(-1px); }
.btn-full { width: 100%; }

/* Checkout */
.checkout { max-width: 900px; margin: 0 auto; padding: 48px 24px 80px; }
.back-link { color: var(--text-muted); font-size: 14px; display: inline-block; margin-bottom: 24px; }
.checkout h1 { font-size: 30px; font-weight: 800; margin-bottom: 8px; }
.checkout-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-top: 32px;
}
@media (max-width: 700px) { .checkout-grid { grid-template-columns: 1fr; } }

.order-summary, .checkout-form {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
}
.order-summary h2 { font-size: 16px; margin-bottom: 16px; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.05em; }
.summary-row, .summary-total {
  display: flex;
  justify-content: space-between;
  padding: 12px 0;
  font-size: 15px;
}
.summary-row { border-bottom: 1px solid var(--border); color: var(--text-muted); }
.summary-total { font-weight: 800; font-size: 20px; margin-top: 8px; }

.checkout-form label {
  display: block;
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 16px;
}
.checkout-form input {
  display: block;
  width: 100%;
  margin-top: 6px;
  padding: 12px 14px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--text);
  font-size: 15px;
}
.checkout-form input:focus { outline: none; border-color: var(--brand-blue); box-shadow: 0 0 0 3px rgba(48, 34, 238, 0.25); }

.screens-picker { margin-bottom: 22px; }
.screens-picker h3 { font-size: 14px; text-transform: uppercase; letter-spacing: 0.04em; color: var(--text-muted); margin-bottom: 4px; }
.screens-subtitle { color: var(--text-muted); font-size: 13px; margin-bottom: 14px; }
.screens-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}
@media (max-width: 480px) { .screens-grid { grid-template-columns: repeat(2, 1fr); } }
.screens-option {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 14px 8px;
  cursor: pointer;
  color: var(--text);
  transition: border-color 0.15s, transform 0.15s;
  font-family: inherit;
}
.screens-option:hover { transform: translateY(-2px); }
.screens-option.active {
  background: var(--gradient-brand);
  border-color: transparent;
  color: #fff;
}
.screens-count { font-size: 22px; font-weight: 800; line-height: 1.1; }
.screens-unit { font-size: 11px; text-transform: uppercase; letter-spacing: 0.04em; font-weight: 700; }
.screens-option .screens-desc { font-size: 11px; color: var(--text-muted); margin-top: 4px; text-align: center; }
.screens-option.active .screens-desc { color: rgba(255, 255, 255, 0.85); }

.trust-row {
  display: flex;
  justify-content: space-between;
  margin-top: 16px;
  font-size: 12px;
  color: var(--text-muted);
  flex-wrap: wrap;
  gap: 8px;
}

/* Result pages */
.result-page {
  max-width: 480px;
  margin: 0 auto;
  padding: 100px 24px;
  text-align: center;
}
.result-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  font-weight: 800;
  margin: 0 auto 24px;
}
.result-icon.success { background: #1d8a4a; color: #fff; }
.result-icon.cancel { background: var(--accent); color: #fff; }
.result-page h1 { font-size: 26px; margin-bottom: 12px; }
.result-page p { color: var(--text-muted); margin-bottom: 28px; }

/* Country selection modal (first visit) */
.country-modal-backdrop {
  position: fixed; inset: 0; background: rgba(0, 0, 0, 0.75);
  display: flex; align-items: center; justify-content: center;
  z-index: 300; padding: 24px;
}
.country-modal {
  background: var(--bg-card); border: 1px solid var(--border); border-radius: 20px;
  padding: 36px; max-width: 440px; width: 100%; text-align: center;
}
.country-modal h2 { font-size: 22px; font-weight: 800; margin-bottom: 8px; }
.country-modal p { color: var(--text-muted); font-size: 14px; margin-bottom: 24px; }
.country-modal-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.country-modal-option {
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  background: var(--bg); border: 1px solid var(--border); border-radius: 12px;
  padding: 20px 12px; font-weight: 700; font-size: 14px; transition: border-color 0.15s, transform 0.15s;
}
.country-modal-option:hover { border-color: var(--brand-pink); transform: translateY(-2px); }
.flag-icon-lg { width: 48px; height: 36px; object-fit: cover; border-radius: 4px; }

/* WhatsApp floating button */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 58px;
  height: 58px;
  background: #25d366;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
  z-index: 200;
  transition: transform 0.15s;
}
.whatsapp-float:hover { transform: scale(1.08); }
.whatsapp-float svg { width: 30px; height: 30px; }

/* Footer */
.site-footer {
  border-top: 1px solid var(--border);
  padding: 24px;
  text-align: center;
  color: var(--text-muted);
  font-size: 13px;
}
.footer-links {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 12px;
  flex-wrap: wrap;
}
.footer-links a { color: var(--text-muted); font-size: 13px; }
.footer-links a:hover { color: var(--text); }

.footer-columns {
  max-width: 1100px; margin: 0 auto; padding: 40px 24px 24px;
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 24px; text-align: left;
}
@media (max-width: 700px) { .footer-columns { grid-template-columns: 1fr 1fr; } }
.footer-col h4 { color: var(--text); font-size: 13px; text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 14px; }
.footer-col a { display: block; color: var(--text-muted); font-size: 14px; margin-bottom: 10px; }
.footer-col a:hover { color: var(--text); }
.footer-col .logo-img { height: 34px; }
.footer-copy { text-align: center; padding: 20px 24px 0; border-top: 1px solid var(--border); margin: 0 24px; }

/* Legal pages */
.legal-page { max-width: 760px; margin: 0 auto; padding: 48px 24px 80px; }
.legal-content h1 { font-size: 30px; font-weight: 800; margin-bottom: 4px; }
.legal-updated { color: var(--text-muted); font-size: 13px; margin-bottom: 32px; }
.legal-content h2 { font-size: 18px; font-weight: 700; margin: 28px 0 10px; }
.legal-content p, .legal-content li { color: #cfcfcf; font-size: 15px; line-height: 1.7; }
.legal-content ul { padding-left: 20px; margin-bottom: 12px; }
.legal-content a { color: var(--brand-blue); text-decoration: underline; }

/* Policy page (privacy) - card style */
.policy-hero { text-align: center; padding: 24px 24px 8px; }
.policy-kicker {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(244, 3, 91, 0.12); border: 1px solid rgba(244, 3, 91, 0.35);
  color: var(--brand-pink); font-size: 12px; font-weight: 800; letter-spacing: 0.08em;
  padding: 8px 16px; border-radius: 20px; text-transform: uppercase;
}
.policy-title { font-size: 38px; font-weight: 900; font-style: italic; margin: 20px 0 10px; }
.policy-title .accent {
  background: var(--gradient-brand); -webkit-background-clip: text; background-clip: text; color: transparent;
}
.policy-updated { color: var(--text-muted); font-size: 15px; }

.policy-section { max-width: 780px; margin: 24px auto; padding: 0 24px; }
.policy-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: 16px; padding: 28px; }
.policy-card.glow { background: linear-gradient(180deg, rgba(244, 3, 91, 0.08), var(--bg-card)); border-color: rgba(244, 3, 91, 0.3); }
.policy-card-title { display: flex; align-items: center; gap: 10px; font-size: 19px; font-weight: 800; font-style: italic; color: var(--brand-pink); margin-bottom: 14px; }
.policy-card p, .policy-card li, .policy-subcard p { color: #cfcfcf; font-size: 15px; line-height: 1.7; }
.policy-list { padding-left: 20px; margin-top: 8px; }
.policy-list li { margin-bottom: 8px; }

.policy-subcards { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 600px) { .policy-subcards { grid-template-columns: 1fr; } }
.policy-subcard { background: var(--bg-card); border: 1px solid var(--border); border-radius: 16px; padding: 20px 24px; }
.policy-subcard-title { display: flex; align-items: center; gap: 8px; font-weight: 700; margin-bottom: 8px; color: #fff; }

.policy-heading-plain { font-size: 19px; font-weight: 800; font-style: italic; color: var(--brand-pink); margin: 8px 0 10px; }
.policy-footer-note { text-align: center; color: var(--text-muted); font-size: 14px; margin: 32px auto 8px; max-width: 780px; padding: 0 24px; }
