/* Theme & global settings */

:root {
  --bg-purple: #5b21b6;
  --bg-blue: #3b82f6;
  --text-main: #eef2ff;
  --text-muted: #c4ccff;

  /* Offers */
  --offer-vpn: linear-gradient(135deg, #0f766e, #22c55e);
  --offer-stream: linear-gradient(135deg, #2563eb, #22d3ee);
  --offer-ai: linear-gradient(135deg, #db2777, #f97316);

  /* Reviews */
  --reviews-bg: #3b2591;
  --review-card: #ff6b00;

  --radius-lg: 1.5rem;
  --radius-md: 1rem;
  --radius-pill: 999px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'SF Pro Text',
    system-ui, sans-serif;
  background: linear-gradient(180deg, var(--bg-purple), var(--bg-blue));
  color: var(--text-main);
  min-height: 100vh;
  overflow-x: hidden;
}

html {
  scroll-behavior: smooth;
}

/* Background bubbles */

.bg-bubbles {
  position: fixed;
  inset: 0;
  overflow: hidden;
  z-index: -1;
  pointer-events: none;
}

.bubble {
  position: absolute;
  border-radius: 999px;
  background: radial-gradient(circle at 30% 30%, #ffffff, rgba(255, 255, 255, 0));
  opacity: 0.17;
  filter: blur(2px);
}

.bubble-1 {
  width: 260px;
  height: 260px;
  top: -60px;
  left: -40px;
}

.bubble-2 {
  width: 220px;
  height: 220px;
  top: 80px;
  right: -70px;
}

.bubble-3 {
  width: 180px;
  height: 180px;
  bottom: 120px;
  left: -60px;
}

.bubble-4 {
  width: 260px;
  height: 260px;
  bottom: -120px;
  right: -80px;
}

/* Layout helpers */

.container {
  width: min(1100px, 100%);
  margin: 0 auto;
  padding: 0 1.25rem;
}

.section {
  padding: 3.5rem 0;
}

.section-title {
  text-align: center;
  font-size: 1.9rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin: 0 0 2rem;
}

.section-subtitle {
  display: block;
  font-size: 0.85rem;
  font-weight: 500;
  margin-top: 0.35rem;
  color: var(--text-muted);
}

/* Page wrapper blur */

.page-wrapper {
  transition: filter 0.25s ease;
}

.page-wrapper.blurred {
  filter: blur(8px);
  pointer-events: none;
  user-select: none;
}

body.no-scroll {
  overflow: hidden;
}

/* POPUP */

.popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.78);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 40;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}

.popup-overlay.show {
  opacity: 1;
  pointer-events: all;
}

.popup-card {
  background: rgba(15, 23, 42, 0.9);
  border-radius: 1.6rem;
  padding: 1.7rem 1.6rem 1.5rem;
  text-align: center;
  width: min(360px, 92%);
  box-shadow: 0 24px 45px rgba(0, 0, 0, 0.55);
  border: 1px solid rgba(148, 163, 184, 0.4);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  position: relative;
}

.popup-logo {
  width: 90px;
  height: 90px;
  object-fit: cover;
  border-radius: 1.1rem;
  margin-bottom: 0.85rem;
}

.popup-card h2 {
  margin: 0 0 0.4rem;
  font-size: 1.3rem;
}

.popup-card p {
  margin: 0 0 1rem;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.popup-btn {
  width: 100%;
}

.popup-close {
  position: absolute;
  right: 0.75rem;
  top: 0.55rem;
  background: transparent;
  border: none;
  color: #e5e7eb;
  font-size: 1.4rem;
  cursor: pointer;
}

/* HEADER */

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  background: linear-gradient(
    90deg,
    rgba(10, 10, 40, 0.7),
    rgba(59, 130, 246, 0.3)
  );
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.6rem 0;
}

.logo-wrap {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  color: inherit;
}

.logo-img {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.logo-text {
  font-weight: 700;
  letter-spacing: 0.12em;
  font-size: 0.85rem;
  text-transform: uppercase;
}

.main-nav {
  display: flex;
  gap: 1.4rem;
  font-size: 0.9rem;
}

.main-nav a {
  position: relative;
  color: var(--text-muted);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 500;
  font-size: 0.78rem;
}

.main-nav a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -0.3rem;
  width: 0;
  height: 2px;
  border-radius: 999px;
  background: #ffffff;
  transition: width 0.18s ease;
}

.main-nav a:hover {
  color: #ffffff;
}

.main-nav a:hover::after {
  width: 100%;
}

/* Mobile menu */

.menu-toggle {
  display: none;
  background: rgba(15, 23, 42, 0.7);
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.4);
  color: #e5e7eb;
  width: 36px;
  height: 36px;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.menu-toggle i {
  font-size: 1.1rem;
}

.mobile-nav {
  display: none;
  flex-direction: column;
  padding: 0.5rem 1.25rem 0.9rem;
  gap: 0.4rem;
  background: rgba(15, 23, 42, 0.94);
}

.mobile-nav a {
  color: #e5e7eb;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  text-decoration: none;
}

/* HERO */

.hero {
  padding: 3.7rem 0 3rem;
}

.hero-inner {
  display: flex;
  justify-content: center;
}

.hero-content {
  text-align: center;
  max-width: 550px;
}

.hero-subtitle {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-weight: 600;
  font-size: 0.78rem;
  color: var(--text-muted);
}

.hero-title {
  margin: 0.8rem 0 0.6rem;
  font-size: clamp(2.1rem, 3.2vw, 2.6rem);
  text-transform: uppercase;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.hero-title span {
  display: block;
}

.hero-text {
  margin: 0 0 1.6rem;
  font-size: 0.92rem;
  color: var(--text-muted);
}

/* Buttons */

.btn-primary {
  border: none;
  border-radius: var(--radius-pill);
  padding: 0.75rem 2.5rem;
  background: linear-gradient(135deg, #ffffff, #dbeafe);
  color: #1e3a8a;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  box-shadow: 0 18px 38px rgba(15, 23, 42, 0.55);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.hero-btn {
  transform: translateY(0);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.hero-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 24px 48px rgba(15, 23, 42, 0.65);
}

/* OFFERS */

.offers {
  text-align: center;
}

.offers-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}

.offer-card {
  border-radius: 1.6rem;
  padding: 1.6rem 1.2rem 1.5rem;
  color: #0f172a;
  box-shadow: 0 16px 30px rgba(15, 23, 42, 0.35);
  position: relative;
  overflow: hidden;
}

.offer-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top left, rgba(255, 255, 255, 0.3), transparent 55%);
  opacity: 0.65;
}

.offer-card > * {
  position: relative;
}

.offer-vpn {
  background: var(--offer-vpn);
}

.offer-stream {
  background: var(--offer-stream);
}

.offer-ai {
  background: var(--offer-ai);
}

.offer-icon {
  width: 46px;
  height: 46px;
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(15, 23, 42, 0.1);
  margin: 0 auto 0.7rem;
  font-size: 1.35rem;
}

.offer-card h3 {
  margin: 0 0 0.5rem;
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.offer-main {
  margin: 0 0 0.3rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  font-size: 0.8rem;
}

.offer-main span {
  font-size: 1.4rem;
}

.offer-desc {
  margin: 0;
  font-size: 0.8rem;
}

/* POPULAR APPS */

.popular-apps {
  text-align: center;
}

.apps-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 1.2rem;
}

.app-card {
  background: rgba(15, 23, 42, 0.3);
  border-radius: 1rem;
  padding: 0.6rem;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.app-card img {
  width: 100%;
  height: 80px;
  object-fit: cover;
  border-radius: 0.9rem;
}

.app-card p {
  margin: 0.5rem 0 0;
  font-size: 0.78rem;
}

/* REVIEWS */

.reviews {
  background: var(--reviews-bg);
  margin-top: 2.5rem;
  padding-top: 3rem;
  padding-bottom: 3rem;
}

.reviews .section-title {
  margin-bottom: 1.6rem;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.2rem;
}

.review-card {
  background: var(--review-card);
  color: #fff7ed;
  border-radius: 1.2rem;
  padding: 1rem 0.9rem 0.9rem;
  box-shadow: 0 14px 24px rgba(15, 23, 42, 0.4);
}

/* Review avatars */

.review-header {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  margin-bottom: 0.4rem;
}

.avatar {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  background: radial-gradient(circle at 30% 0%, #fbbf24, #f97316);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.4);
}

.avatar-1 {
  background: radial-gradient(circle at 30% 0%, #22d3ee, #0f766e);
}

.avatar-2 {
  background: radial-gradient(circle at 30% 0%, #f97316, #b91c1c);
}

.avatar-3 {
  background: radial-gradient(circle at 30% 0%, #a855f7, #1d4ed8);
}

.avatar-4 {
  background: radial-gradient(circle at 30% 0%, #facc15, #f97316);
}

.avatar-5 {
  background: radial-gradient(circle at 30% 0%, #38bdf8, #0ea5e9);
}

.review-name {
  margin: 0;
  font-size: 0.86rem;
  font-weight: 700;
}

.review-tag {
  margin: 0;
  font-size: 0.75rem;
  opacity: 0.9;
}

.review-text {
  margin: 0.35rem 0 0.7rem;
  font-size: 0.84rem;
}

.review-stars {
  color: #fed7aa;
  font-size: 0.85rem;
  margin-bottom: 0.1rem;
}

/* Fake review form card */

.review-form-toggle {
  width: 100%;
  background: transparent;
  border: none;
  color: inherit;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.2rem 0;
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
}

.review-form-toggle i {
  font-size: 0.85rem;
}

.review-form {
  margin-top: 0.5rem;
  display: none;
  font-size: 0.8rem;
}

.review-form-card.open .review-form {
  display: block;
}

.review-label {
  display: block;
  margin-top: 0.45rem;
  margin-bottom: 0.15rem;
}

.stars-input {
  display: inline-flex;
  gap: 0.1rem;
  margin-bottom: 0.25rem;
}

.stars-input button {
  background: transparent;
  border: none;
  color: #fed7aa;
  font-size: 1rem;
  cursor: pointer;
  opacity: 0.5;
}

.stars-input button.active {
  opacity: 1;
}

.review-form input,
.review-form textarea {
  width: 100%;
  border-radius: 0.55rem;
  border: none;
  padding: 0.45rem 0.6rem;
  font-family: inherit;
  font-size: 0.8rem;
  margin-bottom: 0.3rem;
}

.review-form textarea {
  resize: vertical;
}

.btn-small {
  padding: 0.45rem 1.3rem;
  font-size: 0.78rem;
  margin-top: 0.2rem;
}

.review-form-message {
  margin: 0.35rem 0 0;
  font-size: 0.78rem;
}

/* FAQ */

.faq {
  text-align: center;
}

.faq-list {
  max-width: 650px;
  margin: 0 auto;
  text-align: left;
}

.faq-item {
  border-radius: var(--radius-md);
  background: rgba(15, 23, 42, 0.35);
  margin-bottom: 0.75rem;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(16px);
}

.faq-question {
  width: 100%;
  background: transparent;
  border: none;
  color: inherit;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.9rem 1rem;
  font-size: 0.9rem;
  cursor: pointer;
}

.faq-question span {
  font-weight: 500;
}

.faq-question i {
  margin-left: 0.75rem;
  font-size: 0.8rem;
  flex-shrink: 0;
  transition: transform 0.2s ease;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 1rem;
  font-size: 0.85rem;
  color: var(--text-muted);
  transition: max-height 0.25s ease;
}

.faq-answer p {
  margin: 0 0 0.9rem;
}

/* When open */

.faq-item.open .faq-answer {
  max-height: 200px;
}

.faq-item.open .faq-question i {
  transform: rotate(45deg);
}

/* FOOTER */

.footer {
  background: #020617;
  padding: 3rem 0 2rem;
  margin-top: 3rem;
}

.footer-inner {
  text-align: center;
}

.footer-title {
  margin: 0 0 1.4rem;
  font-size: 1.8rem;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.footer-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.7rem;
  margin-bottom: 0.9rem;
}

.footer-buttons-wide {
  margin-bottom: 1.1rem;
}

.footer-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.6rem 1.4rem;
  border-radius: var(--radius-pill);
  text-decoration: none;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #0f172a;
  box-shadow: 0 10px 22px rgba(15, 23, 42, 0.5);
}

.footer-btn.whatsapp {
  background: #22c55e;
  color: #022c22;
}

.footer-btn.instagram {
  background: #fb5f96;
  color: #fff1f2;
}

.footer-btn.facebook {
  background: #3b82f6;
  color: #eff6ff;
}

.footer-btn.channel {
  background: #f97316;
  color: #fff7ed;
  padding-inline: 2rem;
}

.footer-contact {
  margin: 0.5rem 0;
  font-size: 0.9rem;
}

.footer-copy {
  margin: 0.3rem 0 0;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #6b7280;
}

/* Floating WhatsApp */

.floating-whatsapp {
  position: fixed;
  right: 1.3rem;
  bottom: 1.3rem;
  width: 52px;
  height: 52px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(circle at 30% 0, #22c55e, #16a34a);
  color: #ecfdf5;
  box-shadow: 0 16px 35px rgba(22, 163, 74, 0.7);
  z-index: 50;
  font-size: 1.4rem;
  text-decoration: none;
}

/* RESPONSIVE */

@media (max-width: 960px) {
  .offers-grid,
  .apps-grid,
  .reviews-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .apps-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 768px) {
  .main-nav {
    display: none;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .mobile-nav.open {
    display: flex;
  }

  .offers-grid,
  .apps-grid,
  .reviews-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .footer-title {
    font-size: 1.5rem;
  }
}

@media (max-width: 480px) {
  .hero {
    padding-top: 3rem;
  }

  .section {
    padding-inline: 0.5rem;
  }

  .section-title {
    font-size: 1.6rem;
  }

  .apps-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .offer-card {
    padding-inline: 1rem;
  }

  .floating-whatsapp {
    right: 1rem;
    bottom: 1rem;
  }
}
