html {
  scroll-behavior: smooth;
}
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: 'Inter', sans-serif;
}
body {
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
  color: #1e293b;
  line-height: 1.6;
}
header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  padding: 15px 40px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid rgba(226, 232, 240, 0.6);
}
header h1 {
  color: #3b82f6;
  font-weight: 700;
}
header img.logo {
  height: 50px;
  width: auto;
  object-fit: contain;
}
footer img.logo-footer {
  height: 40px;
  width: auto;
  object-fit: contain;
}
nav a {
  margin-left: 25px;
  text-decoration: none;
  color: #475569;
  font-weight: 500;
  transition: all 0.3s ease;
  position: relative;
}
nav a:hover {
  color: #3b82f6;
  transform: translateY(-1px);
}
nav a.active {
  font-weight: 600;
  color: #3b82f6;
}
nav a:last-child {
  background: linear-gradient(135deg, #3b82f6, #1d4ed8);
  color: white;
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: 600;
  box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
  transition: all 0.3s ease;
}
nav a:last-child:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(59, 130, 246, 0.4);
}
.hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 80px 40px;
  background: linear-gradient(135deg, #ffffff 0%, #f1f5f9 100%);
  border-radius: 20px;
  margin: 30px 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(226, 232, 240, 0.6);
}
.hero-text {
  max-width: 50%;
}
.hero h2 {
  font-size: 3rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 20px;
  line-height: 1.2;
}
.hero p {
  font-size: 1.2rem;
  color: #64748b;
  margin-bottom: 30px;
  font-weight: 400;
}
.hero a {
  background: linear-gradient(135deg, #3b82f6, #1d4ed8);
  color: white;
  padding: 16px 32px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(59, 130, 246, 0.3);
  display: inline-block;
}
.hero a:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(59, 130, 246, 0.4);
}
.hero img {
  max-width: 45%;
  border-radius: 16px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}
.plans-section {
  text-align: center;
  padding: 80px 20px 40px;
  margin: 0 20px;
}
.plans-section.premium {
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
  border-radius: 20px;
  padding: 80px 20px;
  margin-top: 40px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
}
.plans-section h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 15px;
  color: #1e293b;
}
.plans-section p {
  font-size: 1.1rem;
  color: #64748b;
  margin-bottom: 50px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}
.plans {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
  padding-bottom: 30px;
}
.plan-row {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
  margin-bottom: 50px;
}
.plan {
  background: white;
  border: 1px solid rgba(226, 232, 240, 0.8);
  border-radius: 16px;
  padding: 40px 30px;
  width: 300px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
.plan::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(135deg, #3b82f6, #1d4ed8);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}
.plan:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  border-color: #3b82f6;
}
.plan:hover::before {
  transform: scaleX(1);
}
.plan h3 {
  margin-bottom: 15px;
  color: #1e293b;
  font-size: 1.5rem;
  font-weight: 700;
}
.plan p {
  font-size: 1rem;
  margin-bottom: 12px;
  color: #64748b;
  font-weight: 500;
}
.plan .spec {
  font-size: 0.95rem;
  margin-bottom: 8px;
  color: #475569;
  font-weight: 500;
}
.plan .price {
  font-size: 1.4rem;
  font-weight: 700;
  color: #3b82f6;
  margin: 25px 0;
  font-size: 1.8rem;
}
.plan .price.highlight {
  font-weight: 800;
  color: #1e293b;
}
.plan a {
  text-decoration: none;
  color: white;
  background: linear-gradient(135deg, #3b82f6, #1d4ed8);
  padding: 14px 28px;
  border-radius: 10px;
  font-weight: 600;
  display: inline-block;
  transition: all 0.3s ease;
  box-shadow: 0 6px 20px rgba(59, 130, 246, 0.3);
  font-size: 1rem;
}
.plan a:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(59, 130, 246, 0.4);
}
.os-icons {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 25px;
  margin-top: 30px;
  margin-bottom: 0;
}
.os-icon-box {
  background: white;
  border: 1px solid rgba(226, 232, 240, 0.8);
  border-radius: 12px;
  width: 90px;
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}
.os-icon-box:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
  border-color: #3b82f6;
}
.os-icon-box img {
  height: 40px;
  width: auto;
  transition: transform 0.3s ease;
}
.os-icon-box:hover img {
  transform: scale(1.1);
}
footer {
  background: white;
  border-top: 1px solid rgba(226, 232, 240, 0.8);
  padding: 50px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  flex-direction: column;
  text-align: center;
  margin-top: 40px;
}
footer a {
  margin: 0 12px;
  color: #64748b;
  text-decoration: none;
  transition: color 0.3s ease;
  font-weight: 500;
}
footer a:hover {
  color: #3b82f6;
}
footer img {
  transition: transform 0.3s ease;
}
footer a:hover img {
  transform: scale(1.1);
}
@media (max-width: 768px) {
  header {
    padding: 15px 20px;
    flex-direction: column;
    gap: 15px;
  }
  nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
  }
  nav a {
    margin-left: 0;
  }
  .hero {
    flex-direction: column;
    text-align: center;
    padding: 60px 20px;
    margin: 20px 10px;
  }
  .hero-text {
    max-width: 100%;
    margin-bottom: 30px;
  }
  .hero h2 {
    font-size: 2.2rem;
  }
  .hero img {
    max-width: 100%;
  }
  .plans-section {
    padding: 60px 10px 30px;
    margin: 0 10px;
  }
  .plans-section h2 {
    font-size: 2rem;
  }
  .plan {
    width: 100%;
    max-width: 350px;
  }
  .plan-row {
    gap: 20px;
  }
  .os-icons {
    gap: 15px;
  }
  .os-icon-box {
    width: 70px;
    height: 70px;
  }
  .os-icon-box img {
    height: 30px;
  }
}
@media (min-width: 768px) {
  .hero {
    padding-left: 60px;
    padding-right: 60px;
  }
}
.spec-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, #e2e8f0, transparent);
  margin: 15px 0;
}
.plan, .os-icon-box, .hero a, nav a:last-child {
  animation: fadeInUp 0.6s ease-out;
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
} 

/* Policy Card Styles for Terms, Abuse, Privacy */
.terms-card, .abuse-card, .privacy-card {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.10);
  max-width: 600px;
  margin: 48px auto 32px auto;
  padding: 48px 36px;
  text-align: center;
}
.terms-card h2, .abuse-card h2, .privacy-card h2 {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 18px;
}
.terms-card p, .abuse-card p, .privacy-card p {
  font-size: 1.1rem;
  color: #475569;
  margin-bottom: 18px;
}
.terms-card ul, .abuse-card ul, .privacy-card ul,
.terms-card ol, .abuse-card ol, .privacy-card ol {
  text-align: left;
  margin: 0 auto 18px auto;
  max-width: 500px;
  color: #475569;
}
@media (max-width: 600px) {
  .terms-card, .abuse-card, .privacy-card {
    padding: 24px 8px;
  }
} 

/* Modern Button Hover Effects */
.hero a,
.plan a,
.plans-section.premium a,
.plans-section .plan a {
  transition: transform 0.18s cubic-bezier(.4,2,.6,1), box-shadow 0.18s cubic-bezier(.4,2,.6,1), background 0.3s;
}
.hero a:hover,
.plan a:hover,
.plans-section.premium a:hover,
.plans-section .plan a:hover {
  transform: scale(1.06) translateY(-2px);
  box-shadow: 0 10px 32px rgba(59,130,246,0.25), 0 2px 8px rgba(0,0,0,0.08);
  background: linear-gradient(135deg, #2563eb, #3b82f6 80%);
} 

/* Hamburger Menu Styles */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  padding: 5px;
  z-index: 1001;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background: #3b82f6;
  margin: 3px 0;
  transition: 0.3s;
  border-radius: 2px;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(-45deg) translate(-5px, 6px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(45deg) translate(-5px, -6px);
}

/* Mobile Navigation Styles */
@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }

  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: 0.3s ease-in-out;
    z-index: 1000;
  }

  .nav-menu.active {
    right: 0;
  }

  .nav-menu a {
    margin: 15px 0;
    font-size: 1.2rem;
    padding: 15px 30px;
    border-radius: 8px;
    transition: all 0.3s ease;
  }

  .nav-menu a:hover {
    background: rgba(59, 130, 246, 0.1);
    transform: translateX(5px);
  }

  .nav-menu a:last-child {
    margin-top: 20px;
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    color: white;
    padding: 15px 30px;
    border-radius: 8px;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
  }

  .nav-menu a:last-child:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.4);
  }
}

/* Prevent body scroll when menu is open */
body.menu-open {
  overflow: hidden;
}

/* FAQ Styles */
.faq-container {
  max-width: 800px;
  margin: 0 auto;
  text-align: left;
}

.faq-item {
  background: #f6f8fa;
  border: 1.5px solid #e2e8f0;
  border-radius: 12px;
  margin-bottom: 16px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.faq-item:hover {
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  transform: translateY(-2px);
}

.faq-question {
  padding: 24px 30px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
  transition: all 0.3s ease;
}

.faq-question:hover {
  background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
}

.faq-question h3 {
  margin: 0;
  font-size: 1.1rem;
  font-weight: 600;
  color: #1e293b;
  flex: 1;
}

.faq-toggle {
  font-size: 1.5rem;
  font-weight: 700;
  color: #3b82f6;
  transition: all 0.3s ease;
  min-width: 24px;
  text-align: center;
}

.faq-item.active .faq-toggle {
  transform: rotate(45deg);
  color: #1d4ed8;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  background: white;
}

.faq-item.active .faq-answer {
  max-height: 200px;
  padding: 0 30px 24px;
}

.faq-answer p {
  margin: 0;
  margin-top: 12px;
  color: #64748b;
  line-height: 1.6;
  font-size: 1rem;
}

/* Mobile responsive FAQ */
@media (max-width: 768px) {
  .faq-container {
    margin: 0 10px;
  }
  
  .faq-question {
    padding: 20px 20px;
  }
  
  .faq-question h3 {
    font-size: 1rem;
  }
  
  .faq-item.active .faq-answer {
    padding: 0 20px 20px;
  }
} 

.faq-bubble {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 8px 32px rgba(30, 41, 59, 0.08), 0 1.5px 6px rgba(59, 130, 246, 0.04);
  padding: 48px 48px 32px 48px;
  max-width: 900px;
  margin: 0 auto 40px auto;
}

@media (max-width: 900px) {
  .faq-bubble {
    padding: 32px 10px 24px 10px;
  }
} 