/* VPN Page Styles -- nomadsgate.com/vpn/
   Global styles (content-box, btn-primary, btn-linkedin,
   header, fade-in, display-heading) are in global.css. */

/* -----------------------------------------
   1. Hero
   ----------------------------------------- */

#hero {
  text-align: center;
  padding: 8rem 1rem 5rem;
  position: relative;
}

#hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 700px;
  height: 600px;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.06) 0%, transparent 65%);
  pointer-events: none;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 0.35rem 1rem;
  border-radius: 999px;
  background: rgba(16, 185, 129, 0.08);
  border: 1px solid rgba(16, 185, 129, 0.2);
  color: var(--color-accent);
  margin-bottom: 2rem;
  animation: fadeUp 0.7s ease both;
}

.hero-badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-accent);
  box-shadow: 0 0 8px rgba(16, 185, 129, 0.5);
  animation: heroPulse 2.5s ease-in-out infinite;
}

@keyframes heroPulse {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.35; }
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

#hero h1 {
  font-size: clamp(3rem, 8vw, 5.5rem);
  line-height: 1;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  animation: fadeUp 0.7s 0.1s ease both;
}

.hero-accent {
  color: var(--color-accent);
}

#hero p {
  font-size: 1rem;
  opacity: 0.55;
  margin-top: 1.25rem;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
  animation: fadeUp 0.7s 0.2s ease both;
}

#hero .btn-primary {
  margin-top: 2.5rem;
  animation: fadeUp 0.7s 0.3s ease both;
}

.hero-specs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.5rem 0.75rem;
  margin-top: 2rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  opacity: 0.35;
  max-width: 420px;
  margin-left: auto;
  margin-right: auto;
  animation: fadeUp 0.7s 0.4s ease both;
}

.hero-spec-dot {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: currentColor;
  flex-shrink: 0;
}

/* -----------------------------------------
   2. Features
   ----------------------------------------- */

#features {
  text-align: center;
}

#features h2 {
  font-family: 'Bebas Neue', 'Inter', sans-serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  letter-spacing: 0.02em;
  text-transform: uppercase;
  margin-bottom: 3rem;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  max-width: 800px;
  margin: 0 auto;
}

.feature-card {
  background:
    radial-gradient(ellipse at 30% 0%, rgba(16, 185, 129, 0.05) 0%, transparent 60%),
    linear-gradient(160deg, rgba(35, 35, 35, 0.6) 0%, rgba(14, 14, 14, 0.85) 100%);
  padding: 2.25rem 2rem;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.25);
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), border-color 0.4s ease, box-shadow 0.4s ease;
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 20px;
  padding: 1px;
  background: linear-gradient(160deg, rgba(16, 185, 129, 0.15), transparent 40%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.feature-card:hover {
  transform: translateY(-5px);
  border-color: rgba(16, 185, 129, 0.2);
  box-shadow:
    0 20px 48px rgba(0, 0, 0, 0.4),
    0 0 40px rgba(16, 185, 129, 0.05);
}

.feature-card:hover::before {
  opacity: 1;
}

.feature-card svg {
  width: 36px;
  height: 36px;
  color: var(--color-accent);
  stroke: var(--color-accent);
  margin-bottom: 1.25rem;
  transition: filter 0.4s ease;
}

.feature-card:hover svg {
  filter: drop-shadow(0 0 8px rgba(16, 185, 129, 0.3));
}

.feature-card h3 {
  font-family: 'Bebas Neue', 'Inter', sans-serif;
  font-size: 1.3rem;
  letter-spacing: 0.03em;
  margin-bottom: 0.75rem;
}

.feature-card p {
  font-size: 0.9rem;
  opacity: 0.55;
  line-height: 1.65;
}

/* -----------------------------------------
   3. About
   ----------------------------------------- */

#about .content-box {
  max-width: 900px;
}

#about h2 {
  font-family: 'Bebas Neue', 'Inter', sans-serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
  text-align: center;
}

@media (min-width: 768px) {
  .about-grid {
    grid-template-columns: 1fr 2fr;
    text-align: left;
  }
}

.image-wrapper {
  display: flex;
  justify-content: center;
}

.profile-pic {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid rgba(16, 185, 129, 0.5);
  box-shadow: 0 0 30px rgba(16, 185, 129, 0.1);
}

.text-wrapper p {
  margin-bottom: 1.5rem;
  opacity: 0.7;
  line-height: 1.7;
}

.trusted-by {
  margin-top: 2rem;
  margin-bottom: 2rem;
}

.trusted-title {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #555;
  margin-bottom: 0.75rem;
}

.company-names {
  color: #666;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.3px;
}

/* -----------------------------------------
   4. Audience
   ----------------------------------------- */

#audience {
  text-align: center;
}

#audience h2 {
  font-family: 'Bebas Neue', 'Inter', sans-serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

#audience .content-box p {
  opacity: 0.6;
}

.audience-tags {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.audience-tags span {
  background: rgba(16, 185, 129, 0.06);
  border: 1px solid rgba(16, 185, 129, 0.15);
  color: var(--color-accent-light);
  padding: 0.55rem 1.4rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.02em;
  transition: all 0.3s ease;
}

.audience-tags span:hover {
  background: rgba(16, 185, 129, 0.12);
  border-color: rgba(16, 185, 129, 0.3);
  box-shadow: 0 0 16px rgba(16, 185, 129, 0.08);
}

/* -----------------------------------------
   5. Pricing
   ----------------------------------------- */

#pricing {
  text-align: center;
  padding: 6rem 1rem;
  position: relative;
}

#pricing::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 500px;
  background: radial-gradient(ellipse, rgba(16, 185, 129, 0.05) 0%, transparent 65%);
  pointer-events: none;
}

.offer-container {
  max-width: 700px;
  margin: 0 auto;
  padding: 3.5rem 2.5rem;
  background:
    radial-gradient(ellipse at 50% 0%, rgba(16, 185, 129, 0.06) 0%, transparent 50%),
    linear-gradient(160deg, rgba(35, 35, 35, 0.7) 0%, rgba(14, 14, 14, 0.9) 100%);
  border-radius: 24px;
  border: 1px solid rgba(16, 185, 129, 0.2);
  box-shadow:
    0 20px 60px rgba(0, 0, 0, 0.4),
    0 0 60px rgba(16, 185, 129, 0.04);
  position: relative;
  overflow: hidden;
}

.offer-container::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 24px;
  padding: 1px;
  background: linear-gradient(160deg, rgba(16, 185, 129, 0.25), transparent 30%, transparent 70%, rgba(16, 185, 129, 0.1));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.offer-container h2 {
  font-family: 'Bebas Neue', 'Inter', sans-serif;
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.scarcity {
  color: var(--color-scarcity);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.price-box {
  margin: 2rem 0;
}

.price {
  font-family: 'Bebas Neue', 'Inter', sans-serif;
  font-size: clamp(4rem, 10vw, 5.5rem);
  font-weight: 700;
  color: #fff;
  line-height: 1;
  text-shadow: 0 0 40px rgba(16, 185, 129, 0.15);
}

.term {
  display: block;
  font-size: 1rem;
  opacity: 0.45;
  margin-top: 0.5rem;
  letter-spacing: 0.5px;
}

.lifetime {
  font-family: 'Bebas Neue', 'Inter', sans-serif;
  font-size: 1.4rem;
  color: var(--color-accent);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 2rem;
}

.features-list {
  list-style: none;
  padding: 0;
  margin: 2rem 0;
  text-align: left;
  display: inline-block;
}

.features-list li {
  margin-bottom: 1rem;
  font-size: 0.95rem;
  line-height: 1.65;
  opacity: 0.75;
  padding-left: 0.25rem;
}

.features-list li strong {
  color: #fff;
  opacity: 1;
}

.offer-end {
  margin-top: 1.5rem;
  opacity: 0.4;
  font-size: 0.85rem;
  font-style: italic;
}

/* -----------------------------------------
   6. Responsible Use
   ----------------------------------------- */

#responsible-use {
  text-align: center;
}

#responsible-use h2 {
  font-family: 'Bebas Neue', 'Inter', sans-serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

#responsible-use .content-box p {
  opacity: 0.6;
  line-height: 1.7;
  text-align: left;
}

/* -----------------------------------------
   7. FAQ
   ----------------------------------------- */

#faq {
  text-align: center;
  padding-bottom: 4rem;
}

#faq h2 {
  font-family: 'Bebas Neue', 'Inter', sans-serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.faq-list {
  margin-top: 2rem;
  text-align: left;
}

.faq-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  transition: background 0.3s ease;
}

.faq-item:first-child {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.faq-item:hover {
  background: rgba(16, 185, 129, 0.02);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  color: #eee;
  padding: 1.4rem 1.25rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-size: 1rem;
  font-family: var(--font-family);
  line-height: 1.5;
  transition: color 0.3s ease;
}

.faq-question:hover {
  color: #fff;
}

.faq-icon {
  font-size: 1.3rem;
  color: var(--color-accent);
  flex-shrink: 0;
  margin-left: 1rem;
  transition: transform 0.3s ease;
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  padding: 0 1.25rem 1.5rem;
  color: #999;
  line-height: 1.7;
  font-size: 0.95rem;
}

/* -----------------------------------------
   8. Contact
   ----------------------------------------- */

#contact {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
  padding-bottom: 5rem;
}

#contact h2 {
  font-family: 'Bebas Neue', 'Inter', sans-serif;
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

#contact > p {
  opacity: 0.6;
}

#contact .note {
  font-size: 0.85rem;
  opacity: 0.4;
  margin-bottom: 2rem;
}

#contact .btn-primary {
  display: inline-flex;
}

/* -----------------------------------------
   Mobile
   ----------------------------------------- */

@media (max-width: 768px) {
  #contact {
    padding: 0 1rem 5rem;
  }

  #contact h2 {
    font-size: 1.8rem;
  }

  .offer-container {
    padding: 2.5rem 1.5rem;
  }
}

@media (max-width: 480px) {
  .features-grid {
    grid-template-columns: 1fr;
  }

  .feature-card {
    padding: 2rem 1.5rem;
  }
}

/* =====================================================
   LIGHT MODE — vpn
   ===================================================== */

html[data-theme="light"] .feature-card {
  background:
    radial-gradient(ellipse at 30% 0%, rgba(16, 185, 129, 0.03) 0%, transparent 60%),
    linear-gradient(160deg, rgba(255, 255, 255, 0.95) 0%, rgba(248, 247, 244, 0.98) 100%);
  border-color: rgba(0, 0, 0, 0.06);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
}
html[data-theme="light"] .feature-card:hover {
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1), 0 0 30px rgba(16, 185, 129, 0.04);
}

html[data-theme="light"] .offer-container {
  background:
    radial-gradient(ellipse at 50% 0%, rgba(16, 185, 129, 0.04) 0%, transparent 50%),
    linear-gradient(160deg, rgba(255, 255, 255, 0.95) 0%, rgba(245, 244, 240, 0.98) 100%);
  border-color: rgba(16, 185, 129, 0.15);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
}
html[data-theme="light"] .price { color: var(--color-text-heading); text-shadow: none; }
html[data-theme="light"] .features-list li strong { color: var(--color-text-heading); }

html[data-theme="light"] .faq-item { border-bottom-color: rgba(0, 0, 0, 0.07); }
html[data-theme="light"] .faq-item:first-child { border-top-color: rgba(0, 0, 0, 0.07); }
html[data-theme="light"] .faq-question { color: var(--color-text); }
html[data-theme="light"] .faq-question:hover { color: var(--color-text-heading); }
html[data-theme="light"] .faq-answer { color: #666; }

