/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family:
    "Inter",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Roboto,
    "Helvetica Neue",
    Arial,
    sans-serif;
  background-color: #0d0d0d;
  color: #f9f9f9;
  line-height: 1.6;
  min-height: 100vh;
}

.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 16px;
  width: 100%;
}

/* Header Styles */
.header {
  border-bottom: 1px solid #262626;
  background-color: rgba(20, 20, 20, 0.5);
  backdrop-filter: blur(4px);
  position: sticky;
  top: 0;
  z-index: 50;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
}

.nav-left {
  display: flex;
  align-items: center;
}

.logo {
  color: #00ffc6;
  font-size: 24px;
  font-weight: 700;
  text-decoration: none;
  margin-right: 32px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
}

.nav-link {
  color: #f9f9f9;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.15s ease;
}

.nav-link:hover {
  color: #00ffc6;
}

/* Hide navigation links on mobile */
@media (max-width: 768px) {
  .nav-links {
    display: none;
  }
}

/* Button Styles */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 16px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.15s ease;
  cursor: pointer;
  border: none;
  white-space: nowrap;
}

.btn-primary {
  background-color: #00ffc6;
  color: #0c0c0c;
}

.btn-primary:hover {
  background-color: rgba(0, 255, 204, 0.9);
}

.btn-outline {
  background-color: transparent;
  color: #f9f9f9;
  border: 1px solid #262626;
}

.btn-outline:hover {
  background-color: #262626;
}

.btn-large {
  height: 44px;
  padding: 0 32px;
}

.btn-full {
  width: 100%;
}

/* Hero Section */
.hero {
  padding: 80px 0;
  text-align: center;
}

.hero-content {
  max-width: 896px;
  margin: 0 auto;
}

.badge {
  display: inline-flex;
  align-items: center;
  background-color: #1f1f1f;
  border-radius: 9999px;
  padding: 2px 10px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 24px;
}

.hero-title {
  font-size: 60px;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 24px;
  background: linear-gradient(to right, #00ffc6, rgba(0, 255, 204, 0.7));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.hero-description {
  font-size: 20px;
  color: #b3b3b3;
  margin-bottom: 32px;
  line-height: 1.6;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Responsive hero title */
@media (max-width: 768px) {
  .hero-title {
    font-size: 36px;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }
}

/* Section Headers */
.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-header h2 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 16px;
}

.section-header p {
  font-size: 18px;
  color: #b3b3b3;
  max-width: 768px;
  margin: 0 auto;
}

/* Pricing Section */
.pricing {
  padding: 80px 0;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.pricing-card {
  background-color: #141414;
  border: 1px solid #262626;
  border-radius: 8px;
  transition: border-color 0.15s ease;
  position: relative;
}

.pricing-card:hover {
  border-color: rgba(0, 255, 204, 0.5);
}

.pricing-card.popular {
  border-color: #00ffc6;
}

.popular-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #00ffc6;
  color: #0c0c0c;
  padding: 4px 12px;
  border-radius: 12px;
  font-size: 12px;
  font-weight: 600;
}

.card-header {
  padding: 24px;
  border-bottom: 1px solid #262626;
}

.card-header h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 8px;
}

.card-description {
  color: #b3b3b3;
  margin-bottom: 16px;
}

.price {
  font-size: 30px;
  font-weight: 700;
  color: #00ffc6;
}

.price span {
  font-size: 14px;
  color: #b3b3b3;
}

.card-content {
  padding: 24px;
}

.features {
  margin-bottom: 24px;
}

.feature {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin-bottom: 12px;
}

.check-icon {
  width: 16px;
  height: 16px;
  color: #00ffc6;
  flex-shrink: 0;
  margin-top: 2px;
}

.feature span {
  font-size: 14px;
}

/* Feature Grids */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
}

.feature-card,
.audience-card,
.security-card {
  text-align: center;
}

.icon-wrapper {
  width: 64px;
  height: 64px;
  background-color: rgba(0, 255, 204, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}

.feature-icon {
  width: 32px;
  height: 32px;
  color: #00ffc6;
}

.feature-card h3,
.audience-card h3,
.security-card h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 16px;
}

.feature-card p,
.audience-card p,
.security-card p {
  color: #b3b3b3;
}

/* Why Choose Us Section */
.why-choose-us {
  background-color: rgba(20, 20, 20, 0.3);
  padding: 80px 0;
}

/* Security Features Section */
.security-features {
  padding: 80px 0;
}

/* Windows VPS Section */
.windows-vps-section {
  background-color: rgba(20, 20, 20, 0.3);
  padding: 80px 0;
}

.windows-features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
}

.windows-card {
  background-color: #141414;
  border: 1px solid #262626;
  border-radius: 8px;
  padding: 24px;
}

.windows-card h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 16px;
}

.windows-card p {
  color: #b3b3b3;
}

/* Target Audience Section */
.target-audience {
  padding: 80px 0;
}

/* Features Included Section */
.features-included {
  background-color: rgba(20, 20, 20, 0.3);
  padding: 80px 0;
}

.included-features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 24px;
}

.included-feature {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.included-feature .check-icon {
  width: 24px;
  height: 24px;
  color: #00ffc6;
  flex-shrink: 0;
  margin-top: 4px;
}

.included-feature h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;
}

.included-feature p {
  color: #b3b3b3;
  font-size: 14px;
}

/* FAQ Section */
.faq-section {
  padding: 80px 0;
}

.faq-container {
  max-width: 896px;
  margin: 0 auto;
}

.faq-item {
  background-color: #141414;
  border: 1px solid #262626;
  border-radius: 8px;
  padding: 24px;
  margin-bottom: 24px;
}

.faq-item h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 12px;
}

.faq-item p {
  color: #b3b3b3;
}

.faq-contact {
  color: #b3b3b3;
  margin-bottom: 16px;
  text-align: center;
}

/* Final CTA Section */
.final-cta {
  background: linear-gradient(
    to right,
    rgba(0, 255, 204, 0.1),
    rgba(0, 255, 204, 0.05)
  );
  padding: 80px 0;
}

.cta-content {
  text-align: center;
  max-width: 768px;
  margin: 0 auto;
}

.cta-content h2 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 24px;
}

.cta-content p {
  font-size: 20px;
  color: #b3b3b3;
  margin-bottom: 32px;
  line-height: 1.6;
}

.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  margin-bottom: 24px;
  flex-wrap: wrap;
}

.cta-quote {
  font-size: 14px;
  color: #b3b3b3;
  font-style: italic;
}

/* Section CTA */
.section-cta {
  text-align: center;
  margin-top: 48px;
}

/* Footer */
.footer {
  background-color: #141414;
  border-top: 1px solid #262626;
  padding: 48px 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 32px;
  margin-bottom: 32px;
}

.footer-column h3,
.footer-column h4 {
  margin-bottom: 16px;
}

.footer-logo {
  color: #00ffc6;
  text-decoration: none;
}

.footer-column p {
  color: #b3b3b3;
  margin-bottom: 16px;
}

.contact-info p {
  font-size: 14px;
  margin-bottom: 8px;
}

.contact-info a {
  color: #00ffc6;
  text-decoration: none;
}

.footer-column ul {
  list-style: none;
}

.footer-column ul li {
  margin-bottom: 8px;
}

.footer-column ul li a {
  color: #b3b3b3;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.15s ease;
}

.footer-column ul li a:hover {
  color: #00ffc6;
}

.footer-bottom {
  border-top: 1px solid #262626;
  padding-top: 32px;
  text-align: center;
}

.footer-bottom p {
  color: #b3b3b3;
  font-size: 14px;
}

.footer-bottom a {
  color: #00ffc6;
  text-decoration: none;
}

.footer-bottom a:hover {
  text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .windows-features-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .container {
    padding: 0 12px;
  }

  .hero {
    padding: 60px 0;
  }

  .pricing {
    padding: 60px 0;
  }

  .why-choose-us,
  .security-features,
  .windows-vps-section,
  .target-audience,
  .features-included,
  .faq-section,
  .final-cta {
    padding: 60px 0;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .features-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .section-header h2 {
    font-size: 28px;
  }

  .cta-content h2 {
    font-size: 28px;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .included-features-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 32px;
  }

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

  .section-header h2 {
    font-size: 24px;
  }

  .cta-content h2 {
    font-size: 24px;
  }
}
