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 0;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  border-bottom: 1px solid rgba(226, 232, 240, 0.6);
}

.header-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
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 {
  padding: 60px 40px;
  text-align: center;
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.plans-section.premium {
  background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
  border-radius: 20px;
  margin: 30px auto;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(226, 232, 240, 0.6);
  width: calc(100% - 40px);
  max-width: 1400px;
}
.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: 30px;
  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: 30px 25px;
  width: 280px;
  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: 12px;
  color: #1e293b;
  font-size: 1.3rem;
  font-weight: 700;
}
.plan p {
  font-size: 0.9rem;
  margin-bottom: 10px;
  color: #64748b;
  font-weight: 500;
}
.plan .spec {
  font-size: 0.95rem;
  margin-bottom: 8px;
  color: #475569;
  font-weight: 500;
}
.plan .price {
  font-size: 1.2rem;
  font-weight: 700;
  color: #3b82f6;
  margin: 20px 0;
  font-size: 1.5rem;
}
.plan .price.highlight {
  font-weight: 800;
  color: #1e293b;
}
.plan a {
  text-decoration: none;
  color: white;
  background: linear-gradient(135deg, #3b82f6, #1d4ed8);
  padding: 12px 24px;
  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: 0.9rem;
}
.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: 10px 0;
  }

  .header-container {
    padding: 0 20px;
    flex-direction: column;
    gap: 15px;
  }

  .header-container .logo {
    height: 40px;
  }

  nav {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    justify-content: center;
  }

  nav a {
    margin-left: 0;
    font-size: 14px;
  }

  .hero {
    flex-direction: column;
    text-align: center;
    padding: 40px 20px;
  }

  .hero-text {
    max-width: 100%;
    margin-bottom: 30px;
  }

  .hero h2 {
    font-size: 2rem;
  }

  .hero img {
    width: 100%;
    height: auto;
  }

  .plans-section {
    padding: 40px 20px;
    margin: 0 10px;
  }

  .plans-section h2 {
    font-size: 1.8rem;
  }

  .plans-section p {
    font-size: 1rem;
  }

  .plan {
    margin: 15px 0;
  }

  .plan-row {
    flex-direction: column;
  }

  .os-icons {
    flex-wrap: wrap;
    gap: 10px;
  }

  .os-icon-box {
    width: 60px;
    height: 60px;
  }

  .os-icon-box img {
    width: 30px;
    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) {
  .header-container {
    padding: 0 15px;
  }
  
  .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;
  }
} 

/* 3x2 grid for plans */
.plans-plus-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 24px;
  justify-items: center;
  align-items: center;
  margin: 20px auto;
  max-width: 900px;
}

/* Remove previous grid-area assignments */
.plans-plus-grid .plan-iron,
.plans-plus-grid .plan-copper,
.plans-plus-grid .plan-silver,
.plans-plus-grid .plan-gold,
.plans-plus-grid .plan-platinum,
.plans-plus-grid .plan-iridium {
  grid-column: auto;
  grid-row: auto;
}

/* Responsive adjustments */
@media (max-width: 900px) {
  .plans-plus-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: repeat(3, auto);
  }
}

@media (max-width: 600px) {
  .plans-plus-grid {
    display: flex;
    flex-direction: column;
    gap: 24px;
  }
  .plans-plus-grid .plan {
    width: 100%;
    max-width: 350px;
    margin: 0 auto;
  }
} 

/* Locations box under OS icons */
.locations-box {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  padding: 18px 28px;
  margin: 32px auto 0 auto;
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 1.08rem;
  width: fit-content;
}
.flag-icon {
  width: 20px;
  vertical-align: middle;
  margin-right: 6px;
}
.locations-box strong {
  margin-right: 10px;
}

/* Homepage Choose Your Tier Section - Specific Styles */
.homepage-plans-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  justify-items: center;
  align-items: stretch;
  margin: 20px auto;
  max-width: 900px;
}

.homepage-plan {
  background: white;
  border: 1px solid rgba(226, 232, 240, 0.8);
  border-radius: 16px;
  padding: 30px 25px;
  width: 280px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.homepage-plan img {
  display: block;
  margin: 0 auto;
}

.homepage-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;
}

.homepage-plan:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  border-color: #3b82f6;
}

.homepage-plan:hover::before {
  transform: scaleX(1);
}

.homepage-plan h3 {
  margin-bottom: 12px;
  color: #1e293b;
  font-size: 1.3rem;
  font-weight: 700;
}

.homepage-plan p {
  font-size: 0.9rem;
  margin-bottom: 10px;
  color: #64748b;
  font-weight: 500;
}

.homepage-plan .price {
  font-size: 1.5rem;
  font-weight: 700;
  color: #3b82f6;
  margin: 20px 0;
}

.homepage-plan a {
  text-decoration: none;
  color: white;
  background: linear-gradient(135deg, #3b82f6, #1d4ed8);
  padding: 12px 24px;
  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: 0.9rem;
}

.homepage-plan a:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(59, 130, 246, 0.4);
}

/* Coming Soon Styles */
.homepage-plan.coming-soon {
  cursor: not-allowed;
  position: relative;
}

.homepage-plan.coming-soon:hover {
  transform: none;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  border-color: rgba(226, 232, 240, 0.8);
}

.homepage-plan.coming-soon::before {
  display: none;
}

.coming-soon-badge {
  background: linear-gradient(135deg, #64748b, #475569);
  color: white;
  padding: 12px 24px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 0.9rem;
  font-style: italic;
  display: inline-block;
  cursor: not-allowed;
  opacity: 0.8;
}

/* Additional Services Section */
.additional-services {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 15px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.service-card {
  position: relative;
  background: white;
  border-radius: 15px;
  padding: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(226, 232, 240, 0.6);
  overflow: hidden;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.service-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}

.service-card h3 {
  font-size: 1.3rem;
  font-weight: 600;
  color: #1e293b;
  margin-bottom: 12px;
}

.service-card p {
  color: #64748b;
  margin-bottom: 15px;
  line-height: 1.6;
  font-size: 0.9rem;
}

.service-card a {
  color: #3b82f6;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.service-card a:hover {
  color: #1d4ed8;
}

.service-bg {
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.05) 0%, rgba(29, 78, 216, 0.05) 100%);
  border-radius: 0 15px 15px 0;
}

/* Responsive design for homepage plans */
@media (max-width: 900px) {
  .homepage-plans-grid {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    max-width: 600px;
  }
  
  .homepage-plan {
    width: 100%;
    max-width: none;
    padding: 25px 20px;
  }
  
  .homepage-plan h3 {
    font-size: 1.2rem;
  }
  
  .homepage-plan p {
    font-size: 0.85rem;
  }
  
  .homepage-plan .price {
    font-size: 1.3rem;
  }
}

@media (max-width: 600px) {
  .plans-section {
    padding: 30px 15px;
    margin: 0 5px;
  }

  .plans-section h2 {
    font-size: 1.5rem;
  }

  .plans-section p {
    font-size: 0.9rem;
  }

  .homepage-plans-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 0 10px;
  }

  .homepage-plan {
    padding: 25px 20px;
    margin: 0;
  }

  .homepage-plan h3 {
    font-size: 1.3rem;
  }

  .homepage-plan p {
    font-size: 0.9rem;
  }

  .homepage-plan .price {
    font-size: 1.5rem;
  }

  .homepage-plan img {
    width: 35px;
    height: 35px;
  }

  .coming-soon-badge {
    font-size: 0.7rem;
  }

  .homepage-plan a {
    padding: 10px 20px;
    font-size: 0.9rem;
  }
}

/* Responsive design for additional services */
@media (max-width: 768px) {
  .additional-services {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 30px;
    max-width: 100%;
  }
  
  .service-card {
    padding: 25px 20px;
  }
  
  .service-card h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
  }
  
  .service-card p {
    font-size: 0.85rem;
    margin-bottom: 12px;
  }
}

@media (max-width: 600px) {
  .additional-services {
    gap: 15px;
    margin-top: 25px;
  }
  
  .service-card {
    padding: 20px 15px;
  }
  
  .service-card h3 {
    font-size: 1.1rem;
  }
  
  .service-card p {
    font-size: 0.8rem;
  }
  
  .service-card a {
    font-size: 0.9rem;
  }
}

/* Infrastructure Section Styles */
.infrastructure-container {
  display: flex;
  align-items: center;
  gap: 60px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 40px;
  background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(226, 232, 240, 0.6);
  position: relative;
  overflow: visible;
}

.infrastructure-text {
  flex: 1;
  text-align: left;
}

.infrastructure-text h3 {
  color: #64748b;
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.infrastructure-text h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 20px;
  line-height: 1.2;
}

.infrastructure-text p {
  font-size: 1.1rem;
  color: #64748b;
  margin-bottom: 30px;
  line-height: 1.6;
}

.location-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.location-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.1rem;
  color: #1e293b;
  font-weight: 500;
  position: relative;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 8px 0;
  margin: 8px 0;
}

.location-item::before {
  content: '';
  position: absolute;
  top: -15px;
  left: -20px;
  right: -20px;
  bottom: -15px;
  z-index: 1;
}

.location-item:hover {
  color: #3b82f6;
  transform: translateX(5px);
}

.location-item .flag-icon {
  width: 20px;
  height: auto;
  border-radius: 2px;
}

.location-hover-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 10;
  pointer-events: none;
  background: white;
}



.infrastructure-image {
  flex: 1;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding-top: 20px;
}

.main-infrastructure-img {
  width: 90%;
  height: 350px;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
}

.news-overlay {
  position: relative;
  margin-top: 20px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  padding: 20px;
  border-radius: 12px;
  border: 1px solid rgba(226, 232, 240, 0.6);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  width: 100%;
  max-width: 400px;
}

.news-overlay p {
  margin: 0;
  font-size: 1rem;
  font-weight: 600;
  color: #1e293b;
  line-height: 1.4;
}

/* Responsive design for infrastructure */
@media (max-width: 900px) {
  .infrastructure-container {
    flex-direction: column;
    gap: 40px;
    text-align: center;
    padding: 40px 20px;
  }
  
  .infrastructure-text {
    text-align: center;
  }
  
  .location-item {
    justify-content: center;
  }
  
  .location-hover-img {
    display: none;
  }
  
  .main-infrastructure-img {
    width: 100%;
    height: 250px;
  }
  
  .news-overlay {
    max-width: 100%;
  }
}

@media (max-width: 600px) {
  .infrastructure-container {
    padding: 30px 15px;
    gap: 30px;
  }
  
  .infrastructure-text h2 {
    font-size: 1.8rem;
    margin-bottom: 15px;
  }
  
  .infrastructure-text h3 {
    font-size: 0.8rem;
  }
  
  .infrastructure-text p {
    font-size: 0.95rem;
    margin-bottom: 20px;
  }
  
  .location-item {
    font-size: 0.95rem;
    padding: 6px 0;
    margin: 6px 0;
  }
  
  .location-item .flag-icon {
    width: 18px;
  }
  
  .main-infrastructure-img {
    height: 200px;
  }
  
  .news-overlay {
    padding: 15px;
    margin-top: 15px;
  }
  
  .news-overlay p {
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .infrastructure-container {
    padding: 25px 10px;
    gap: 25px;
  }
  
  .infrastructure-text h2 {
    font-size: 1.6rem;
  }
  
  .infrastructure-text p {
    font-size: 0.9rem;
  }
  
  .location-item {
    font-size: 0.9rem;
  }
  
  .main-infrastructure-img {
    height: 180px;
  }
}

/* Values Grid Styles */
.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-top: 20px;
}

.value-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  padding: 20px;
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
  border-radius: 12px;
  border: 1px solid rgba(226, 232, 240, 0.6);
  transition: all 0.3s ease;
}

.value-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  border-color: rgba(59, 130, 246, 0.3);
}

.value-icon {
  font-size: 2rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.value-content h4 {
  font-size: 1.1rem;
  font-weight: 600;
  color: #1e293b;
  margin-bottom: 8px;
}

.value-content p {
  font-size: 0.95rem;
  color: #64748b;
  line-height: 1.5;
  margin: 0;
}

/* Logo Container Styles */
.logo-container {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 30px;
  background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
  border-radius: 16px;
  border: 1px solid rgba(226, 232, 240, 0.6);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  margin-bottom: 20px;
}

/* Mobile Responsive for Values Grid */
@media (max-width: 768px) {
  .values-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  
  .value-item {
    padding: 15px;
  }
  
  .value-icon {
    font-size: 1.5rem;
  }
  
  .value-content h4 {
    font-size: 1rem;
  }
  
  .value-content p {
    font-size: 0.9rem;
  }
  
  .logo-container {
    padding: 20px;
  }
} 

/* Dedicated Servers Table Styles */
.server-controls {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0 auto 30px auto;
  padding: 20px 40px;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 12px;
  border: 1px solid rgba(226, 232, 240, 0.6);
  flex-wrap: wrap;
  gap: 15px;
  max-width: 1200px;
  width: 100%;
}

.sort-controls, .location-controls {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.sort-controls span, .location-controls span {
  font-weight: 600;
  color: #475569;
  margin-right: 10px;
}

.sort-btn, .location-btn {
  background: transparent;
  border: 1px solid #cbd5e1;
  padding: 8px 16px;
  border-radius: 6px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 500;
  color: #64748b;
  transition: all 0.3s ease;
}

.sort-btn:hover, .location-btn:hover {
  border-color: #3b82f6;
  color: #3b82f6;
}

.sort-btn.active, .location-btn.active {
  background: #3b82f6;
  border-color: #3b82f6;
  color: white;
}

.servers-table-container {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(226, 232, 240, 0.6);
  margin: 0 auto 30px auto;
  max-width: 1200px;
  width: 100%;
}

.servers-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}

.servers-table thead {
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.servers-table th {
  padding: 16px 12px;
  text-align: left;
  font-weight: 600;
  color: #475569;
  border-bottom: 2px solid #e2e8f0;
  font-size: 14px;
}

.servers-table td {
  padding: 16px 12px;
  border-bottom: 1px solid #f1f5f9;
  vertical-align: middle;
}

.servers-table tbody tr:hover {
  background: rgba(59, 130, 246, 0.02);
}

.plan-name {
  font-weight: 600;
  color: #1e293b;
  font-size: 15px;
}

.cpu-specs {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.cpu-specs .cores {
  font-weight: 600;
  color: #1e293b;
}

.cpu-specs .speed {
  font-size: 12px;
  color: #64748b;
}

.servers-table .price {
  font-weight: 700;
  color: #3b82f6;
  font-size: 16px;
}

.availability-btn {
  background: #3b82f6;
  color: white;
  padding: 8px 16px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 500;
  display: inline-block;
  white-space: nowrap;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.availability-btn:hover {
  background: #2563eb;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

.availability-btn:active {
  transform: translateY(0);
  box-shadow: 0 2px 8px rgba(59, 130, 246, 0.3);
}

/* Responsive Table */
@media (max-width: 900px) {
  .server-controls {
    flex-direction: column;
    align-items: stretch;
    padding: 20px 30px;
    margin: 0 auto 30px auto;
    width: calc(100% - 40px);
  }
  
  .servers-table-container {
    margin: 0 auto 30px auto;
    width: calc(100% - 40px);
  }
  
  .sort-controls, .location-controls {
    justify-content: center;
  }
  
  .servers-table-container {
    overflow-x: auto;
  }
  
  .servers-table {
    min-width: 800px;
  }
}

@media (max-width: 600px) {
  .server-controls {
    padding: 15px 20px;
    margin: 0 auto 30px auto;
    width: calc(100% - 30px);
  }
  
  .servers-table-container {
    margin: 0 auto 30px auto;
    width: calc(100% - 30px);
  }
  
  .sort-controls, .location-controls {
    flex-direction: column;
    align-items: stretch;
  }
  
  .sort-controls span, .location-controls span {
    text-align: center;
    margin-bottom: 8px;
  }
  
  .sort-btn, .location-btn {
    text-align: center;
  }
  
  .servers-table th,
  .servers-table td {
    padding: 12px 8px;
    font-size: 13px;
  }
  
  .plan-name {
    font-size: 14px;
  }
  
  .servers-table .price {
    font-size: 15px;
  }
  
  .availability-btn {
    font-size: 12px;
    padding: 6px 12px;
  }
} 

/* Custom Options Section */
.custom-options-section {
  text-align: center;
  margin: 30px auto;
  padding: 20px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 8px;
  border: 2px solid #e2e8f0;
  max-width: 400px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.custom-options-section p {
  font-size: 0.95rem;
  color: #475569;
  margin-bottom: 15px;
  font-weight: 500;
  line-height: 1.4;
}

.contact-btn {
  background: #3b82f6;
  color: white;
  padding: 8px 16px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  display: inline-block;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(59, 130, 246, 0.3);
}

.contact-btn:hover {
  background: #2563eb;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(59, 130, 246, 0.4);
}

/* Responsive Custom Options */
@media (max-width: 600px) {
  .custom-options-section {
    padding: 15px;
    margin: 20px 15px;
    max-width: 350px;
  }
  
  .custom-options-section p {
    font-size: 0.9rem;
  }
  
  .contact-btn {
    padding: 6px 12px;
    font-size: 0.85rem;
  }
} 