/* Reset and base styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Source Sans 3", sans-serif;
  background-color: #fff;
  color: #000;
  line-height: 1.6;
}

/* Header styles */
.main-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background-color: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(12px);
}

.navigation-container {
  display: flex;
  padding: 16px 80px;
  align-items: center;
  gap: 75px;
  width: 100%;
  justify-content: space-between;
}

.logo-section {
  text-decoration: none;
  display: flex;
  padding: 12px 26px 12px 2px;
  align-items: center;
  gap: 8px;
}

.logo-icon-placeholder {
  background-image: url("../assets/s_logo.svg");
  width: 28px;
  height: 28px;
  background-color: #f0f0f0;
  border-radius: 4px;
}

.brand-name {
  color: #000;
  font-size: 20px;
  font-weight: 700;
  text-align: center;
}

.nav-links {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  flex: 1;
  list-style: none;
}

.nav-link {
  color: #000;
  font-size: 20px;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  transition: color 0.2s ease;
}

/* .nav-link:hover,
.nav-link:focus {
    color: #4cf160;
    outline: 2px solid #4cf160;
    outline-offset: 2px;
} */

.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  color: #000;
  font-size: 24px;
  cursor: pointer;
  padding: 8px;
  border-radius: 4px;
  transition: background-color 0.2s ease;
}

.mobile-menu-toggle:hover,
.mobile-menu-toggle:focus {
  background-color: rgba(76, 241, 96, 0.1);
  outline: 2px solid #4cf160;
  outline-offset: 2px;
}

.mobile-menu {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  padding: 20px;
  flex-direction: column;
  gap: 20px;
  align-items: center;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  z-index: 999;
  display: none;
}

.mobile-menu.active {
  display: flex;
}

.mobile-nav-link {
  color: #000;
  font-size: 18px;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  padding: 12px 16px;
  border-radius: 8px;
  transition: all 0.2s ease;
  width: 100%;
  text-align: center;
}

/* .mobile-nav-link:hover,
.mobile-nav-link:focus {
    background-color: rgba(76, 241, 96, 0.1);
    outline: 2px solid #4cf160;
    outline-offset: 2px;
} */

.mobile-app-store-badge {
  margin-top: 20px;
  cursor: pointer;
  border-radius: 8px;
  transition: all 0.2s ease;
  display: flex;
  justify-content: center;
  align-items: center;
}

.desktop-app-store {
  display: block;
}

.app-store-placeholder {
  background-image: url("../assets/app_store.svg");
  width: 150px;
  height: 50px;
  border-radius: 8px;
}

/* Main content */
.main-content {
  margin-top: 84px;
}

/* Page Container */
.page-container {
  display: flex;
  padding: 130px 80px;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  width: 100%;
  box-sizing: border-box;
}

.page-title {
  text-align: center;
}

/* Hero section */
.hero-section {
  display: flex;
  padding: 0 80px;
  align-items: center;
  gap: 68px;
  width: 100%;
  background: linear-gradient(180deg, #fff 0%, #ffe076 100%);
  position: relative;
  min-height: 100vh;
}

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  flex: 1;
  min-width: 0;
}

.hero-headline {
  color: #000;
  font-size: 56px;
  font-weight: 700;
  line-height: 64px;
}

.hero-description {
  color: #000;
  font-size: 20px;
  font-weight: 700;
  opacity: 0.5;
}

.hero-app-store {
  margin-top: 16px;
}

.hero-illustration {
  background-image: url("../assets/secure_connection.png");
  background-size: contain;
  position: relative;
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 550px;
  background-repeat: no-repeat;
  background-position: center;
}

.illustration-placeholder {
  background-size: contain;
  height: 100%;
  width: 100%;
  border-radius: 8px;
  max-width: 100%;
  max-height: 100%;
}
.vpn {
  background-image: url("../assets/globe.png");
}
.controller {
  background-image: url("../assets/freedom.png");
}
.wifi {
  background-image: url("../assets/wifi.png");
}
/* Benefits section */
.benefits-overview {
  display: flex;
  padding: 80px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 40px;
  width: 100%;
  background-color: #fff;
}

.section-title {
  color: #000;
  text-align: center;
  font-size: 56px;
  font-weight: 700;
  line-height: 64px;
  width: 100%;
}

.benefits-container {
  display: flex;
  padding: 80px;
  flex-direction: column;
  align-items: flex-start;
  gap: 40px;
  width: 100%;
  border-radius: 40px;
  background-color: #f5f5f5;
}

.benefits-grid {
  display: flex;
  align-items: center;
  gap: 40px;
  width: 100%;
}

.benefit-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  flex: 1;
}

.benefit-icon-placeholder {
  background-size: contain;
  width: 300px;
  height: 300px;
  border-radius: 8px;
}
.globe {
  background-image: url("../assets/servers.svg");
}
.unrestricted {
  background-image: url("../assets/unrestricted.svg");
}
.ultimate {
  background-image: url("../assets/unlimited.svg");
}
.benefit-title {
  color: #000;
  text-align: center;
  font-size: 32px;
  font-weight: 700;
  width: 100%;
}

/* Section divider */
.section-divider {
  height: 3px;
  width: 100%;
  background: linear-gradient(90deg, #fff 0%, #e6e6e6 50%, #fff 100%);
}

/* Feature sections */
.feature-section {
  display: flex;
  padding: 80px;
  justify-content: center;
  align-items: center;
  gap: 40px;
  width: 100%;
  position: relative;
  background-color: #fff;
}

.feature-left {
  flex-direction: row;
}

.feature-right {
  flex-direction: row-reverse;
}

.feature-illustration .illustration-placeholder {
  height: 540px;
  width: 540px;
  border-radius: 8px;
}

.feature-content {
  display: flex;
  min-width: 453px;
  max-width: 627px;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  flex: 1;
}

.feature-title {
  color: #000;
  font-size: 56px;
  font-weight: 700;
  line-height: 64px;
  width: 100%;
}

.feature-description {
  color: #000;
  font-size: 20px;
  font-weight: 700;
  opacity: 0.5;
  width: 100%;
}

/* CTA section */
.cta-section {
  display: flex;
  padding: 80px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 40px;
  width: 100%;
  background-color: #fff;
}

.cta-container {
  display: flex;
  padding: 80px;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  width: 100%;
  border-radius: 40px;
  background: linear-gradient(90deg, #ffe079 0%, #ffc914 50%, #e27800 100%);
}

.cta-title {
  color: #000;
  text-align: center;
  font-size: 56px;
  font-weight: 700;
  line-height: 64px;
  width: 100%;
}

.cta-description {
  color: #000;
  text-align: center;
  font-size: 32px;
  font-weight: 600;
  opacity: 0.5;
  width: 100%;
}

.cta-app-store {
  margin-top: 16px;
}

/* Footer */
.main-footer {
  display: flex;
  padding: 16px 80px;
  justify-content: center;
  align-items: center;
  gap: 75px;
  width: 100%;
  background-color: #fff;
}

.footer-content {
  display: flex;
  width: 100%;
  justify-content: space-between;
  align-items: center;
}

.footer-logo {
  display: flex;
  padding: 12px 26px 12px 2px;
  align-items: center;
  gap: 8px;
}

.footer-links {
  display: flex;
  justify-content: flex-end;
  align-items: flex-start;
  gap: 40px;
  flex: 1;
}

.footer-links-mobile {
  display: contents;
}

.link-group {
  display: flex;
  align-items: center;
  gap: 16px;
}

.link-label {
  color: #000;
  font-size: 16px;
  font-weight: 400;
}

.footer-link {
  color: #000;
  font-size: 16px;
  font-weight: 400;
  opacity: 0.5;
  text-decoration: none;
  transition: opacity 0.2s ease;
}

.footer-link:hover,
.footer-link:focus {
  opacity: 1;
  outline: 2px solid #4cf160;
  outline-offset: 2px;
}

/* Responsive design */
@media (max-width: 991px) {
  .page-container {
    padding: 60px 40px;
  }

  .navigation-container {
    padding: 16px 40px;
    gap: 40px;
  }

  .hero-section {
    padding: 40px;
    flex-direction: column;
    gap: 40px;
    min-height: 100vh;
  }

  .hero-content {
    align-items: center;
    text-align: center;
  }

  .hero-headline {
    font-size: 48px;
    line-height: 56px;
  }

  .hero-illustration {
    width: 100%;
    max-width: 500px;
  }

  .benefits-overview {
    padding: 60px 40px;
  }

  .benefits-container {
    padding: 60px 40px;
  }

  .benefits-grid {
    flex-direction: column;
    gap: 60px;
  }

  .benefit-card {
    max-width: 400px;
  }

  .benefit-icon-placeholder {
    width: 250px;
    height: 250px;
  }

  .benefit-title {
    font-size: 28px;
  }

  .section-title {
    font-size: 48px;
    line-height: 56px;
  }

  .feature-section {
    padding: 60px 40px;
    flex-direction: column;
    gap: 40px;
  }

  .feature-left,
  .feature-right {
    flex-direction: column;
  }

  .feature-illustration .illustration-placeholder {
    height: 350px;
    width: 350px;
  }

  .feature-content {
    align-items: center;
    text-align: center;
    max-width: 100%;
  }

  .feature-title {
    font-size: 48px;
    line-height: 56px;
  }

  .cta-section {
    padding: 60px 40px;
  }

  .cta-container {
    padding: 60px 40px;
  }

  .cta-title {
    font-size: 48px;
    line-height: 56px;
  }

  .cta-description {
    font-size: 28px;
  }

  .main-footer {
    padding: 16px 40px;
    gap: 40px;
    flex-direction: column;
  }

  .footer-links {
    flex-direction: column;
    gap: 20px;
  }
}

@media (max-width: 640px) {
  .page-container {
    padding: 115px 20px;
    gap: 32px;
  }

  .navigation-container {
    padding: 16px 20px;
    gap: 20px;
  }

  .nav-links {
    display: none;
  }

  .mobile-menu-toggle {
    display: block;
  }

  .desktop-app-store {
    display: none;
  }

  .hero-section {
    padding: 20px;
    gap: 30px;
    min-height: 100vh;
    flex-direction: column-reverse;
  }

  .hero-headline {
    font-size: 32px;
    line-height: 40px;
  }

  .hero-description {
    font-size: 16px;
  }

  .hero-illustration {
    min-height: 275px;
  }

  .illustration-placeholder {
    height: auto;
  }

  .benefits-overview {
    padding: 40px 20px;
  }

  .benefits-container {
    padding: 40px 20px;
  }

  .benefits-grid {
    gap: 40px;
  }

  .benefit-icon-placeholder {
    width: 200px;
    height: 200px;
  }

  .benefit-title {
    font-size: 24px;
  }

  .section-title {
    font-size: 32px;
    line-height: 40px;
  }

  .feature-section {
    padding: 40px 20px;
    gap: 30px;
  }

  .feature-illustration .illustration-placeholder {
    height: 250px;
    width: 250px;
  }

  .feature-content {
    min-width: 0;
  }

  .feature-title {
    font-size: 32px;
    line-height: 40px;
  }

  .feature-description {
    font-size: 16px;
  }

  .feature-right .feature-content {
    order: 2;
  }

  .feature-right .feature-illustration {
    order: 1;
  }

  .cta-section {
    padding: 40px 20px;
  }

  .cta-container {
    padding: 40px 20px;
  }

  .cta-title {
    font-size: 32px;
    line-height: 40px;
  }

  .cta-description {
    font-size: 20px;
  }

  .main-footer {
    padding: 16px 20px;
    gap: 20px;
  }

  .footer-content {
    flex-direction: column;
    align-items: center;
  }

  .footer-logo {
    justify-content: center;
  }

  .footer-links-mobile {
    gap: 16px;
    display: block;
  }

  .link-group {
    flex-direction: column;
    gap: 8px;
    align-items: center;
  }

  .link-label {
    font-size: 14px;
  }

  .footer-link {
    font-size: 14px;
  }
}

/* Focus styles for accessibility */
/* *:focus {
    outline: 2px solid #4cf160;
    outline-offset: 2px;
} */

/* Screen reader only content */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.email-link {
  text-decoration: underline;
}

/* Privacy, Terms */

.terms-content,
.privacy-content {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  padding: 40px;
  max-width: 1000px;
  margin: auto;
  background-color: #ffffff;
  color: #333;
}

.privacy-content ul,
.terms-content ul {
  padding-left: 1.5rem;
  /* or 20px */
  margin-bottom: 1rem;

  /* default bullet style */
  color: #333;
  font-size: 1rem;
  line-height: 1.6;
}

.terms-content ul li,
.privacy-content ul li {
  margin-bottom: 0.5rem;
}

