* {
  margin: 0px;
  padding: 0px;
  box-sizing: border-box;
}

html,
body {
  overflow-x: hidden;
  width: 100%;
}



body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background-color: #f8fbff;
  color: #333;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6, .small-title, .feature-list li, .buttons, .price-box, .faq-question {
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}


/* Hero Section */
.hero-section {
  /*padding: 30px 5%;*/
  background: linear-gradient(180deg, #f8fbff 0%, #ffffff 100%);
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 60%;
  height: 150%;
  pointer-events: none;
}

.hero-section .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  /* max-width: 1400px; */
  margin: 0 auto;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
  gap: 80px;
}

.hero-left {
  min-width: 300px;
  padding-right: 30px;
}

.hero-left .small-title {
  color: #5f6368;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  margin-bottom: 18px;
  opacity: 0.9;
}

.hero-left h1 {
  font-size: 44px;
  line-height: 1.2;
  font-weight: 800;
  margin-bottom: 24px;
  color: #0a0a0a;
  letter-spacing: -0.02em;
  margin-top: 60px;
}

.hero-left span, .gradient-blue {
    background: linear-gradient(135deg, #3b82f6, #60a5fa);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

#gblue{
  background: linear-gradient(135deg, #3b82f6, #60a5fa);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  display: inline;
}

.cursor {
  display: inline-block;
  margin-left: 4px;
  color: #3b82f6;
  animation: blink 1s step-start infinite;
}

@keyframes blink {
  50% {
    opacity: 0;
  }
}

.feature-list {
  list-style: none;
  padding: 0;
  margin: 0 0 30px;
}

.feature-list li {
  margin-bottom: 12px;
  font-size: 16px;
  color: #4a5568;
  display: flex;
  align-items: center;
  transition: transform 0.3s ease;
}

.feature-list li:hover {
  transform: translateX(5px);
}

.feature-list li:before {
  content: "✓";
  color: #10b981;
  margin-right: 10px;
  font-weight: bold;
  font-size: 18px;
}

.price-box {
  margin-bottom: 30px;
  padding: 20px;
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.05), rgba(96, 165, 250, 0.05));
  border-radius: 12px;
  display: inline-block;
}

.old-price {
  text-decoration: line-through;
  color: #9ca3af;
  font-size: 16px;
  margin-bottom: 8px;
  font-weight: 500;
}

.new-price {
  font-size: 38px;
  font-weight: 800;
  color: #0a0a0a;
  line-height: 1;
  letter-spacing: -0.02em;
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.new-price span {
  font-size: 16px;
  color: #6b7280;
  font-weight: 500;
  letter-spacing: 0;
}

.buttons {
  display: flex;
  gap: 16px;
  margin-bottom: 28px;
  flex-wrap: wrap;
}

.start-btn,
.trial-btn {
  padding: 14px 32px;
  border-radius: 10px;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  font-weight: 600;
  letter-spacing: 0.02em;
}

.start-btn {
  background: linear-gradient(135deg, #3b82f6, #2563eb);
  color: white;
  border: none;
  box-shadow: 0 4px 14px rgba(59, 130, 246, 0.25);
}

.start-btn:hover {
  background: linear-gradient(135deg, #2563eb, #1d4ed8);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(59, 130, 246, 0.35);
}

.trial-btn {
  border: 2px solid #e5e7eb;
  background: white;
  color: #4b5563;
}

.trial-btn:hover {
  border-color: #3b82f6;
  color: #3b82f6;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  background: rgba(59, 130, 246, 0.02);
}

.guarantee {
  font-size: 14px;
  color: #10b981;
  display: flex;
  align-items: center;
  gap: 6px;
  font-weight: 500;
  margin-left: 10px;
}

.hero-right {
  flex: 1;
  min-width: 300px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.hero-image {
  width: 100%;
  height: auto;
  mask: radial-gradient(ellipse 70% 70% at center, black 60%, transparent 100%);
  -webkit-mask: radial-gradient(ellipse 70% 70% at center, black 60%, transparent 100%);
}

.card-icon {
  font-size: 24px;
  margin-bottom: 8px;
}

.card-content h4 {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 4px;
  color: #333;
}

.card-content p {
  font-size: 12px;
  color: #666;
  line-height: 1.4;
}

@media (max-width: 768px) {
  .hero-image {
    max-width: 440px;
    margin: 0 auto;
  }

  .floating-cards {
    display: none;
  }

  .hero-section .container {
    gap: 40px;
  }
}

@media (max-width: 480px) {
  .hero-image {
    max-width: 380px;
  }
}

/* KPI Strip */
.kpi-strip {
  padding: 10px 30px;
  overflow: hidden;
  color: #0a0a0a;
}

.kpi-marquee {
  width: 100%;
  overflow: hidden;
}

.kpi-track {
  display: flex;
  gap: 40px;
  animation: kpi-scroll var(--kpi-speed, 20s) linear infinite;
}

@keyframes kpi-scroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(calc(-1 * var(--kpi-shift, 1000px)));
  }
}

.kpi-seq {
  display: flex;
  gap: 40px;
  flex-shrink: 0;
}

.kpi-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 12px;
  padding: 4px 8px;
  text-align: center;
  color: rgb(0, 0, 0);
  min-width: 120px;
  border-right: 1px solid #0a0a0a22;
  border-bottom: 1px solid #0a0a0a21;
}

.kpi-k {
  font-size: 24px;
  font-weight: 900;
  margin-bottom: 4px;
}

.kpi-l {
  font-size: 12px;
  opacity: 0.9;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* VDS Server Performance Section */
.vds-server-performance {
  padding: 30px 5%;
  background: linear-gradient(180deg, #ffffff 0%, #f9fbff 100%);
  font-family: 'Inter', 'Segoe UI', sans-serif;
  text-align: center;
  margin-top: 25px;
}

.vds-container {
  /* max-width: 1400px; */
  margin: 0 auto;
  text-align: center;
  padding: 0 2%;
}

.vds-title {
  font-size: 42px;
  font-weight: 800;
  color: #0a0a0a;
  margin-bottom: 18px;
  line-height: 1.3;
  letter-spacing: -0.02em;
}

.host-description {
  font-size: 18px;
  color: #6b7280;
  margin-bottom: 20px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

/* Form CSS */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.65);
    backdrop-filter: blur(5px);
}

.modal-content {
    background: linear-gradient(135deg, #ffffff 0%, #f8fbff 100%);
    margin: 8% auto;
    padding: 35px;
    border-radius: 16px;
    width: 90%;
    max-width: 500px;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    animation: modalSlideIn 0.3s ease;
}

@keyframes modalSlideIn {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.close-btn {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 24px;
    cursor: pointer;
    color: #666;
    transition: all 0.3s ease;
}

.close-btn:hover {
    color: #333;
    transform: rotate(90deg);
}

#studentForm {
    display: flex;
    flex-direction: column;
}

#studentForm label {
    margin-top: 16px;
    font-weight: 600;
    color: #333;
    font-size: 14px;
    letter-spacing: 0.02em;
}

#studentForm input {
    padding: 12px 14px;
    margin-top: 6px;
    border: 1.5px solid #e5e7eb;
    border-radius: 8px;
    font-size: 14px;
    transition: all 0.3s ease;
    background-color: #fafbfc;
}

#studentForm input:focus {
    outline: none;
    border-color: #3b82f6;
    background-color: #fff;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

#studentForm button {
    margin-top: 24px;
    padding: 13px;
    background: linear-gradient(135deg, #4CAF50, #45a049);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 14px rgba(76, 175, 80, 0.25);
}

#studentForm button:hover {
    background: linear-gradient(135deg, #45a049, #3d8b40);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(76, 175, 80, 0.35);
}
/* VPS Plans Cards */
.vps-plans-outer {
  position: relative;
  overflow: hidden;
  padding: 20px 0;
  margin: 0 -5%;
}

.vps-plans {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px;
  padding: 0 5%;
  width: 100%;
}

.vps-card {
  background: white;
  border-radius: 16px;
  padding: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  text-align: left;
  /* width: 280px; */
  transition: all 0.3s ease;
  border: 1px solid #f0f0f0;
  position: relative;
}

.vps-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  border-color: rgba(59, 130, 246, 0.2);
}

.vps-card h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 16px;
  color: #0a0a0a;
}

@media (max-width: 480px) {
     .vds-server-performance .vds-title {
 font-size: 24px;
}
}

@media (max-width: 768px) {
      .vds-server-performance .vds-title {
  font-size: 28px;
}
#headings{
  font-size: 28px;
}
}

.vps-card .price {
  font-size: 36px;
  font-weight: 800;
  color: #0a0a0a;
  margin-bottom: 12px;
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.vps-card .price span {
  font-size: 16px;
  font-weight: 500;
  color: #6b7280;
}

.plan-description {
  font-size: 14px;
  color: #6b7280;
  margin-bottom: 24px;
  min-height: 42px;
}

.vps-btn {
  width: 100%;
  padding: 12px;
  border-radius: 8px;
  background: linear-gradient(135deg, #3b82f6, #2563eb);
  color: white;
  border: none;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-bottom: 24px;
  font-size: 15px;
}

.vps-btn:hover {
  background: linear-gradient(135deg, #2563eb, #1d4ed8);
  box-shadow: 0 4px 12px rgba(59, 130, 246, 0.25);
}

.vps-features {
  list-style: none;
  padding: 0;
  margin: 0;
}

.vps-features li {
  padding: 10px 0;
  border-top: 1px solid #f0f0f0;
  font-size: 14px;
  color: #4b5563;
  display: flex;
  align-items: center;
}

.vps-features li:before {
  content: "✓";
  color: #10b981;
  margin-right: 10px;
  font-weight: bold;
}

.best-deal {
  border: 2px solid #3b82f6;
  box-shadow: 0 10px 30px rgba(59, 130, 246, 0.1);
}

.badge {
  position: absolute;
  top: -12px;
  right: 20px;
  background: linear-gradient(135deg, #3b82f6, #2563eb);
  color: white;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  box-shadow: 0 4px 12px rgba(59, 130, 246, 0.25);
}

/* For mobile devices (1 card per row) */
@media (max-width: 575px) {
  .vps-plans {
    grid-template-columns: 1fr;
  }
  .vps-card {
    width: 100%;
  }
  .badge{
    font-size: 10px;
  }
  
  .customized-container {
    flex-direction: column;
    text-align: center;
    padding: 30px 20px;
  }
  
  .customized-image {
    margin-top: 20px;
  }
}

/* Extra small devices (phones less than 370px) */
@media (max-width: 370px) {
  .vps-plans-section {
    overflow-x: hidden;
  }
  
  .vps-plans {
    padding: 0 3%;
  }
  
  .vps-card {
    padding: 20px 15px;
  }
  
  .vps-card h3 {
    font-size: 20px;
  }
  
  .vps-card .price {
    font-size: 30px;
  }
  
  .plan-description {
    font-size: 13px;
  }
  
  .vps-features li {
    font-size: 13px;
  }
  
  .region-tabs-container {
    max-width: 100%;
    overflow-x: auto;
  }
  
  .region-tabs {
    min-width: max-content;
  }
}

/* Small devices (phones, 576px and up) */
@media (min-width: 576px) and (max-width: 767px) {
  .vps-plans {
    grid-template-columns: repeat(2, 1fr);
    column-gap: 15px;
    row-gap: 20px;
  }

  .vps-card {
    width: auto;
    flex: initial;
  }
  .badge{
    font-size: 10px;
  }
  
  .customized-container {
    flex-direction: column;
    text-align: center;
    padding: 30px 30px;
    gap: 30px;
  }
  
  .customized-image {
    margin-top: 10px;
  }
}

/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) and (max-width: 991px) {
  .vps-plans {
    grid-template-columns: repeat(2, 1fr);
    column-gap: 20px;
    row-gap: 20px;
  }

  .vps-card {
    width: auto;
    flex: initial;
  }
  
  .customized-container {
    padding: 30px 40px;
    gap: 40px;
  }
}

/* Large devices (desktops, 992px and up) */
@media (min-width: 992px) and (max-width: 1199px) {
  .vps-plans {
    grid-template-columns: repeat(2, 1fr);
    column-gap: 20px;
    row-gap: 20px;
  }

  .vps-card {
    width: auto;
    flex: initial;
  }
  
  .customized-container {
    padding: 30px 50px;
    gap: 50px;
  }
}

/* Extra large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {
  .customized-container {
    padding: 40px 60px;
    gap: 60px;
  }
  
  /* Force 4-in-a-row using grid to avoid flex rounding wrap */
  .vps-plans {
    grid-template-columns: repeat(4, 1fr);
    column-gap: 20px;
    row-gap: 20px;
  }

  .vps-card {
    width: auto;
    flex: initial;
  }
  .badge{
    font-size: 10px;
  }
}

/* Features Included Section */
.features-included-section {
  /* padding: 80px 5%; */
  background: #ffffff;
  position: relative;
  overflow: hidden;
}

/* Scoped overrides for the new alternate features layout */
.vps-features-alt .header h1 {
  font-size: 36px;
  font-weight: 700;
  color: #222;
  margin-bottom: 10px;
}

.vps-features-alt .header p {
  font-size: 16px;
  color: #555;
}

.vps-features-alt .vps-features-container { 
  /* max-width: 1400px;  */
  margin: 0 auto; 
  padding: 40px 80px; }

.vps-features-grid, .vps-features-alt .features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 40px;
}


.vps-features-grid .feature-card {
  background-color: #f8f9ff;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  
}


.vps-features-grid .feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.vps-features-grid .feature-image {
  height: 380px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background-color: #f8f9ff;
}

.vps-features-grid .feature-image img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.vps-features-grid .resources-image {
  background-color: #f0f3ff;
}

.vps-features-grid .resources-icons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  padding: 20px;
}

.vps-features-grid .resource-icon {
  width: 60px;
  height: 60px;
  background-color: #ffffff;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 5px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.vps-features-grid .resource-icon i {
  font-size: 24px;
  color: #6366f1;
}

.vps-features-grid .feature-card h3 {
  font-size: 32px;
  font-weight: 600;
  color: #333;
  margin: 20px 20px 10px;
  text-align: center;
}

.vps-features-grid .feature-card p {
  font-size: 14px;
  color: #666;
  padding: 0 20px 20px;
  text-align: center;
  /* flex-grow: 1; */
}

/* Root Access */
.vps-features-grid .root-access-card {
  grid-column: 3;
  grid-row: 1 / span 2;
  background-color: #ffffff;
  display: grid;
  grid-template-rows: auto 1fr auto;
  /* max-height: 900px; */
}

.vps-features-grid .root-access-content {
  padding: 30px;
  text-align: center;
  background-color: #ffffff;
}

.vps-features-grid .feature-icon {
  width: 80px;
  height: 80px;
  background-color: #e6efff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.vps-features-grid .feature-icon i {
  font-size: 30px;
  color: #4a7bff;
}

.vps-features-grid .control-btn {
  background-color: #333;
  color: #fff;
  border: none;
  padding: 8px 20px;
  border-radius: 5px;
  font-size: 14px;
  cursor: pointer;
  margin-top: 15px;
  transition: background-color 0.3s ease;
}

.vps-features-grid .control-btn:hover {
  background-color: #555;
}

.vps-features-grid .person-image {
  height: 100%;
  overflow: hidden;
}

.vps-features-grid .person-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.vps-features-grid .root-access-description {
  padding: 20px;
  background-color: #ffffff;
}

.vps-features-grid .root-access-description h3,
.vps-features-grid .root-access-description p {
  text-align: left;
  margin-left: 0;
  padding-left: 0;
}

/* Backups */
.vps-features-grid .backup-card {
  grid-column: 1 / span 2;
  background-color: #00ff1521;
  display: flex;
  flex-direction: column;
}

.feature-card h3{
  font-size: 200px;
}

.vps-features-grid .server-updates {
  background-color: #ffffff;
  padding: 15px 20px;
  border-radius: 10px;
  margin: 20px;
}

.vps-features-grid .server-updates h4 {
  font-size: 16px;
  margin-bottom: 10px;
}

.vps-features-grid .progress-bar {
  height: 10px;
  background-color: #e0e0e0;
  border-radius: 10px;
  overflow: hidden;
}

.vps-features-grid .progress {
  height: 100%;
  background-color: #4caf50;
  border-radius: 10px;
  width: 0;
  transition: width 1s ease-in-out;
}

.vps-features-grid .backup-content {
  display: flex;
  flex-grow: 1;
}

.vps-features-grid .backup-image,
.vps-features-grid .backup-text {
  flex: 1;
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.vps-features-grid .backup-image img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  border-radius: 5px;
}

.vps-features-grid .backup-text {
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}

.vps-features-grid .backup-text h3,
.vps-features-grid .backup-text p {
  text-align: left;
  padding-left: 0;
  margin-left: 0;
}

/* vCores */
.vps-features-grid .vcores-card {
  background-color: #e3f2fd;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  grid-column: 1;
  max-height:450px ;
}

.vps-features-grid .vcores-image {
  height: 200px;
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.vps-features-grid .vcores-image img {
  max-width: 100%;
  max-height: 150px;
  object-fit: contain;
}

.vps-features-grid .vcores-text {
  padding: 20px;
  flex-grow: 1;
}

.vps-features-grid .vcores-text h3,
.vps-features-grid .vcores-text p {
  text-align: left;
  margin-left: 0;
  padding-left: 0;
}

/* Traffic */
.vps-features-grid .traffic-card {
  background-color: #34495e;
  color: #ffffff;
  position: relative;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  grid-column: 2 / span 2;
  max-height: 450px;
  padding: 20px;
}

.vps-features-grid .traffic-content {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.vps-features-grid .traffic-image {
  width: 50%;
  overflow: hidden;
  max-width: 500px;
}

.vps-features-grid .traffic-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  max-height: 300px;
}

.vps-features-grid .traffic-text {
  width: 50%;
  padding: 20px 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.vps-features-grid .traffic-text h3 {
  color: #ffffff;
  text-align: left;
  margin-left: 0;
  font-size: 34px;
  font-weight: 600;
}

.vps-features-grid .traffic-text p {
  color: #ffffff;
  text-align: left;
  padding-left: 0;
  font-size: 17px;
  font-weight: 500;
}

@media (min-width: 1200px) {
  .vps-features-grid .traffic-image {
    max-width: 600px;
  }
  
  .vps-features-grid .traffic-image img {
    max-height: 350px;
  }
}

/* Responsive */
@media (max-width: 992px) {
  .vps-features-grid, .vps-features-alt .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .vps-features-alt .vps-features-container { padding: 28px 16px; }

  .vps-features-grid .root-access-card {
    grid-column: auto;
    grid-row: auto;
  }

  .vps-features-grid .backup-card {
    grid-column: auto;
  }

  .vps-features-grid .backup-content {
    flex-direction: column;
  }
}

/* Tablet-specific range: ensure solid 2-col layout from 768px to 995px */
@media (min-width: 768px) and (max-width: 995px) {
  .vps-features-grid, .vps-features-alt .features-grid { grid-template-columns: repeat(2, 1fr); gap: 18px; }
  .vps-features-alt .vps-features-container { padding: 28px 16px; }

  .vps-features-alt .features-grid{
    padding: 7px 4%;
  }

  /* reset any spanning that can break the two-column flow */
  .vps-features-grid .root-access-card,
  .vps-features-grid .backup-card,
  .vps-features-grid .traffic-card,
  .vps-features-grid .vcores-card { grid-column: auto; grid-row: auto; }

  /* Traffic card specific styles for tablet */
  .vps-features-grid .traffic-card {
    flex-direction: row;
    padding: 15px;
  }
  
  .vps-features-grid .traffic-image {
    width: 45%;
    max-width: 300px;
  }
  
  .vps-features-grid .traffic-text {
    width: 55%;
    padding: 10px 15px;
  }
  
  /* modest media height tweaks for visual balance */
  .vps-features-grid .feature-image { height: 170px; }
  .vps-features-grid .vcores-image { height: 180px; }
  .vps-features-grid .traffic-text p {
    font-size: 16px;
  }
  .vps-features-grid .traffic-text h3{
    font-size: 28px;
  }
}

@media (max-width: 768px) {
  .vps-features-grid, .vps-features-alt .features-grid {
    grid-template-columns: 1fr;
  }
  .vps-features-alt .vps-features-container { padding: 24px 14px; }

  .vps-features-grid .vcores-text,
  .vps-features-grid .backup-text {
    text-align: center;
  }
  .vps-features-alt .features-grid{
    padding: 7px 4%;
  }
  
  .vps-features-grid .traffic-card {
    flex-direction: column;
  }
  
  .vps-features-grid .traffic-image,
  .vps-features-grid .traffic-text {
    width: 100%;
  }

  .vps-features-grid .vcores-text h3,
  .vps-features-grid .backup-text h3,
  .vps-features-grid .root-access-description h3,
  .vps-features-grid .traffic-text h3 {
    text-align: center;
    margin: 20px 20px 10px;
  }

  .vps-features-grid .vcores-text p,
  .vps-features-grid .backup-text p,
  .vps-features-grid .root-access-description p,
  .vps-features-grid .traffic-text p {
    text-align: center;
    padding: 0 20px 20px;
  }

  /* Reset any spanning to avoid layout issues on small tablets/phones */
  .vps-features-grid .root-access-card,
  .vps-features-grid .backup-card,
  .vps-features-grid .traffic-card,
  .vps-features-grid .vcores-card { grid-column: auto; grid-row: auto; }
  .vps-features-grid .backup-card h3{ 
    align-items: center;
    justify-content: center;
    align-self: center;
    text-align: center;
  }
}

/* Compact tweaks for small phones */
@media (max-width: 600px) {
  .vps-features-alt .vps-features-container { padding: 20px 12px; }
  .vps-features-alt .features-grid { gap: 14px; }

  .vps-features-grid .feature-card { border-radius: 12px; }
  .vps-features-grid .feature-card h3 { font-size: 22px; }
  .vps-features-grid .feature-card p { font-size: 13px; }

  .vps-features-grid .feature-image { height: 150px; padding: 14px; }
  .vps-features-grid .vcores-image { height: 160px; }
  /* .vps-features-grid .traffic-image { height: 160px; } */

  .vps-features-grid .server-updates { margin: 14px; padding: 12px 14px; }
  
}

@media (max-width: 420px) {
  .vps-features-grid .resources-icons { padding: 12px; }
  .vps-features-grid .resource-icon { width: 48px; height: 48px; }
  .vps-features-grid .resource-icon i { font-size: 20px; }

  .vps-features-grid .feature-image { height: 130px; }
  .vps-features-grid .vcores-image,
  .vps-features-grid .traffic-image { height: 140px; }

  /* Ensure grid height auto so content doesn't vanish */
  .vps-features-grid { height: auto; }

  /* Reset traffic image absolute tweaks on very small screens */
  .vps-features-grid .traffic-image { position: relative; width: 100%; overflow: hidden; height: auto; }
}

/* Removed decorative background elements */

/* Removed filter effects and animations */

.features-included-container {
  /* max-width: 1200px; */
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
  /* padding: 0 24px; */
}

.features-included-container h2 {
  font-size: 32px;
  font-weight: 600;
  color: #202124;
  margin-bottom: 20px;
  position: relative;
  display: inline-block;
  letter-spacing: 0;
}

/* Removed decorative elements */

/* Simplified heading styling */

.features-included-container p {
  font-size: 16px;
  color: #5f6368;
  margin-bottom: 40px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
  font-weight: 400;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 36px;
  margin-top: 40px;
}

.feature-card {
  background: #f8f9fa;
  border-radius: 16px;
  /* padding: 30px 25px; */
  text-align: center;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.05);
  border: none;
  /* transition: all 0.3s ease; */
  position: relative;
  overflow: hidden;
  z-index: 1;
}



.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  border-radius: 30px;
}

/* .feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.07);
} */

.feature-icon {
  font-size: 32px;
  margin-bottom: 20px;
  display: inline-block;
  position: relative;
  z-index: 2;
  /* background: #ffffff; */
  width: 100px;
  height: 100px;
  line-height: 70px;
  border-radius: 12px;
  /* box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04); */
  /* transition: all 0.3s ease; */
  /* color: #5f6368; */
}

.feature-icon img {
  min-width: 100px;
  max-width: 100px;
}

.feature-card:hover .feature-icon {
  background: #f1f3f4;
}

.feature-card h4 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 12px;
  color: #202124;
  transition: all 0.3s ease;
  letter-spacing: 0;
}

.feature-card p {
  font-size: 14px;
  color: #5f6368;
  line-height: 1.5;
  margin-bottom: 0;
  font-weight: 400;
  opacity: 0.9;
}



/* Unified blue feature box sections */
.customized-cta,
.nest-standard-section,
.guarantee-section {
  /* create white gutters around the colored box */
  padding: 40px 5%;
  background: transparent;
}

.customized-container,
.nest-standard-container,
.guarantee-container {
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  background: linear-gradient(135deg, #3b82f6, #1d4ed8);
  color: #ffffff;
  border-radius: 24px;
  padding: 20px 50px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.customized-content {
  flex: 1;
}

.customized-content h2,
.nest-standard-content h2,
.guarantee-content h2 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 20px;
}

.customized-content p,
.nest-standard-content p,
.guarantee-content p {
  font-size: 18px;
  opacity: 0.9;
  margin-bottom: 30px;
  line-height: 1.6;
}

.customized-btn {
  padding: 16px 32px;
  background: white;
  color: #3b82f6;
  border: none;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.customized-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.customized-image {
  flex: 1;
  text-align: center;
}

.customized-image img,
.nest-standard-image img,
.guarantee-image img {
  max-width: 100%;
  height: auto;
  border-radius: 16px;
}

/* Data Center Section */


.datacenter-container h2 {
  font-size: 36px;
  font-weight: 800;
  color: #0a0a0a;
  margin-bottom: 20px;
}

.datacenter-container p {
  font-size: 18px;
  color: #6b7280;
  margin-bottom: 50px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* Nest Standard inherits unified styles */

/* covered by unified container */

.nest-standard-content {
  flex: 1;
}

/* covered by unified heading */

/* covered by unified paragraph */

.nest-features {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
}

.nest-features li {
  padding: 12px 0;
  font-size: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
}

.nest-features li:before {
  content: "✓";
  margin-right: 12px;
  font-weight: bold;
  color: #10b981;
}

.nest-features li:last-child {
  border-bottom: none;
}

.nest-btn {
  padding: 16px 32px;
  background: white;
  color: #3b82f6;
  border: none;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.nest-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.nest-standard-image {
  flex: 1;
  text-align: center;
  position: relative;
}

/* covered by unified image rules */

.security-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(255, 255, 255, 0.9);
  color: #333;
  padding: 12px 16px;
  border-radius: 25px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  backdrop-filter: blur(10px);
}

.badge-icon {
  font-size: 16px;
}

/* Empower Section */
.empower-section {

  background: white;
}

.empower-container {
  /* max-width: 1200px; */
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 60px;
}

.empower-content {
  flex: 1;
}

.empower-content h2 {
  font-size: 36px;
  font-weight: 800;
  color: #0a0a0a;
  margin-bottom: 20px;
}

.empower-content p {
  font-size: 18px;
  color: #6b7280;
  margin-bottom: 30px;
  line-height: 1.6;
}

.empower-features {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
}

.empower-features li {
  padding: 12px 0;
  font-size: 16px;
  color: #374151;
  border-bottom: 1px solid #f3f4f6;
  display: flex;
  align-items: center;
}

.empower-features li:before {
  content: "✓";
  color: #10b981;
  margin-right: 12px;
  font-weight: bold;
}

.empower-features li:last-child {
  border-bottom: none;
}

.empower-btn {
  padding: 16px 32px;
  background: linear-gradient(135deg, #3b82f6, #2563eb);
  color: white;
  border: none;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.empower-btn:hover {
  background: linear-gradient(135deg, #2563eb, #1d4ed8);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(59, 130, 246, 0.35);
}

.empower-image {
  flex: 1;
  text-align: center;
  position: relative;
}

.empower-image img {
  max-width: 100%;
  height: auto;
  border-radius: 16px;
}

.rocket-icon {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 24px;
  animation: rocket-bounce 2s ease-in-out infinite;
}

@keyframes rocket-bounce {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

/* Success Section */
.success-section {
  /* padding: 80px 5%; */
  background: #f8fbff;
}

.success-container {
  /* max-width: 1200px; */
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 60px;
}

.success-content {
  flex: 1;
}

.success-content h2 {
  font-size: 36px;
  font-weight: 800;
  color: #0a0a0a;
  margin-bottom: 20px;
}

.success-content p {
  font-size: 18px;
  color: #6b7280;
  margin-bottom: 30px;
  line-height: 1.6;
}

.success-features {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
}

.success-features li {
  padding: 12px 0;
  font-size: 16px;
  color: #374151;
  border-bottom: 1px solid #e5e7eb;
  display: flex;
  align-items: center;
}

.success-features li:before {
  content: "✓";
  color: #10b981;
  margin-right: 12px;
  font-weight: bold;
}

.success-features li:last-child {
  border-bottom: none;
}

.success-btn {
  padding: 16px 32px;
  background: linear-gradient(135deg, #3b82f6, #2563eb);
  color: white;
  border: none;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.success-btn:hover {
  background: linear-gradient(135deg, #2563eb, #1d4ed8);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(59, 130, 246, 0.35);
}

.success-image {
  flex: 1;
  text-align: center;
  max-width: 550px;
}

.success-image img {
  max-width: 100%;
  height: auto;
  border-radius: 16px;
}

/* Guarantee Section */
/* Guarantee inherits unified styles */

/* covered by unified container */

.guarantee-content {
  flex: 1;
}

/* covered by unified heading */

/* covered by unified paragraph */

.guarantee-image {
  flex: 1;
  text-align: center;
  position: relative;
}

/* covered by unified image rules */

.satisfaction-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(255, 255, 255, 0.9);
  color: #333;
  padding: 12px 16px;
  border-radius: 25px;
  font-size: 14px;
  font-weight: 600;
  backdrop-filter: blur(10px);
}


/* Features Included Section */
.features-included-section {
  /* padding: 60px 5%; */
  background: white;
}

.features-included-container {
  /* max-width: 1200px; */
  margin: 0 auto;
  text-align: center;
}

.features-included-container h2 {
  font-size: 36px;
  font-weight: 800;
  color: #0a0a0a;
  margin-bottom: 18px;
}

.features-included-container p {
  font-size: 18px;
  color: #6b7280;
  margin-bottom: 20px;
  /* max-width: 600px; */
  margin-left: auto;
  margin-right: auto;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  margin-top: 40px;
}

.feature-card {
  background: white;
  border-radius: 16px;
  /* padding: 32px 24px; */
  text-align: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  border: 1px solid #e5e7eb;
  /* transition: all 0.3s ease; */
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
}



.feature-icon {
  font-size: 32px;
  margin-bottom: 16px;
}

.feature-card h4 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 12px;
}

.feature-card p {
  font-size: 16px;
  opacity: 0.9;
  line-height: 1.5;
}

/* Testimonial Section */
.testimonial-section {
  padding: 80px 5%;
  background: #f8fbff;
}

.testimonial-container {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.testimonial-content {
  position: relative;
  background: white;
  border-radius: 20px;
  padding: 60px 40px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.quote-mark {
  font-size: 120px;
  color: #10b981;
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  opacity: 0.2;
}

.testimonial-text {
  font-size: 20px;
  line-height: 1.6;
  color: #374151;
  margin-bottom: 30px;
  position: relative;
  z-index: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 30px;
}

.author-image {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
}

.author-info h4 {
  font-size: 18px;
  font-weight: 600;
  color: #0a0a0a;
  margin-bottom: 4px;
}

.author-info p {
  font-size: 14px;
  color: #6b7280;
}

.testimonial-nav {
  display: flex;
  justify-content: center;
  gap: 16px;
}
/* Customized CTA Section */


.customized-cta {
  padding: 30px 80px;
  background: transparent;
}

.customized-container {
  /* max-width: 1200px; */
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 60px;
  background: linear-gradient(135deg, #3b82f6, #1d4ed8);
  color: #ffffff;
  border-radius: 24px;
  padding: 50px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.customized-content {
  flex: 1;
}

.customized-content h2 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 20px;
}

.customized-content p {
  font-size: 18px;
  opacity: 0.9;
  margin-bottom: 30px;
  line-height: 1.6;
}

.customized-btn {
  padding: 16px 32px;
  background: white;
  color: #3b82f6;
  border: none;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.customized-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.customized-image {
  flex: 1;
  text-align: center;
}



/* Data Center Section */
.datacenter-section {
  padding: 80px 5%;
  background: #f8fbff;
  background-image: radial-gradient(#e2e8f0 1px, transparent 1px);
  background-size: 30px 30px;
  position: relative;
  overflow: hidden;
}

.datacenter-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 60px;
}

.datacenter-globe {
  flex: 1;
  text-align: center;
  position: relative;
}

.datacenter-globe::before,
.datacenter-globe::after {
  content: '';
  position: absolute;
  width: 10px;
  height: 10px;
  background-color: #3b82f6;
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.3);
  animation: pulse 2s infinite;
}

.datacenter-globe::before {
  top: 30%;
  right: 35%;
}

.datacenter-globe::after {
  bottom: 40%;
  left: 40%;
}

@keyframes pulse {
  0% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(59, 130, 246, 0.7);
  }
  70% {
    transform: scale(1);
    box-shadow: 0 0 0 10px rgba(59, 130, 246, 0);
  }
  100% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(59, 130, 246, 0);
  }
}

.datacenter-globe img {
  max-width: 100%;
  height: auto;
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-15px);
  }
  100% {
    transform: translateY(0px);
  }
}

.datacenter-content {
  flex: 1;
}

.datacenter-content h2 {
  font-size: 36px;
  font-weight: 800;
  color: #0a0a0a;
  margin-bottom: 20px;
  text-align: left;
}

.datacenter-content p {
  font-size: 18px;
  color: #6b7280;
  margin-bottom: 20px;
  line-height: 1.6;
  text-align: left;
  max-width: 100%;
}

.datacenter-btn {
  padding: 16px 32px;
  background: linear-gradient(135deg, #3b82f6, #2563eb);
  color: white;
  border: none;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 10px;
}

.datacenter-btn:hover {
  background: linear-gradient(135deg, #2563eb, #1d4ed8);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(59, 130, 246, 0.35);
}

/* Media queries for datacenter section */
@media (max-width: 900px) {
  .datacenter-container {
    flex-direction: column;
    gap: 30px;
  }
  
  .datacenter-globe {
    order: 1;
  }
  
  .datacenter-content {
    order: 2;
    text-align: center;
  }
  
  .datacenter-content h2 {
    text-align: center;
  }
  
  .datacenter-content p {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }
  
  .datacenter-btn {
    margin: 10px auto;
    display: block;
  }
}

/* Nest Standard Section */

.nest-standard-section {
  padding: 30px 80px;
  background: transparent;
}

.nest-standard-container {
  /* max-width: 1200px; */
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 60px;
  background: linear-gradient(135deg, #3b82f6, #1d4ed8);
  color: #ffffff;
  border-radius: 24px;
  padding: 50px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.nest-standard-content {
  flex: 1;
}

.nest-standard-content h2 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 20px;
}

.nest-standard-content p {
  font-size: 18px;
  opacity: 0.9;
  margin-bottom: 30px;
  line-height: 1.6;
}

.nest-features {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
}

.nest-features li {
  padding: 12px 0;
  font-size: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
}

.nest-features li:before {
  content: "✓";
  margin-right: 12px;
  font-weight: bold;
  color: #10b981;
}

.nest-features li:last-child {
  border-bottom: none;
}

.nest-btn {
  padding: 16px 32px;
  background: white;
  color: #3b82f6;
  border: none;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.nest-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.nest-standard-image {
  flex: 1;
  text-align: center;
  position: relative;
}

.nest-standard-image img {
  max-width: 100%;
  height: auto;
  border-radius: 16px;
}

.security-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(255, 255, 255, 0.9);
  color: #333;
  padding: 12px 16px;
  border-radius: 25px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  backdrop-filter: blur(10px);
}

.badge-icon {
  font-size: 16px;
}

/* Empower Section */
.empower-section {
  padding: 30px 5%;
  background: white;
}

.empower-container {
  /* max-width: 1200px; */
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 60px;
}

.empower-content {
  flex: 1;
}

.empower-content h2 {
  font-size: 36px;
  font-weight: 800;
  color: #0a0a0a;
  margin-bottom: 20px;
}

.empower-content p {
  font-size: 18px;
  color: #6b7280;
  margin-bottom: 30px;
  line-height: 1.6;
  max-width: 600px;
}

.empower-features {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
}

.empower-features li {
  padding: 12px 0;
  font-size: 16px;
  color: #374151;
  border-bottom: 1px solid #f3f4f6;
  display: flex;
  align-items: center;
}

.empower-features li:before {
  content: "✓";
  color: #10b981;
  margin-right: 12px;
  font-weight: bold;
}

.empower-features li:last-child {
  border-bottom: none;
}

.empower-btn {
  padding: 16px 32px;
  background: linear-gradient(135deg, #3b82f6, #2563eb);
  color: white;
  border: none;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.empower-btn:hover {
  background: linear-gradient(135deg, #2563eb, #1d4ed8);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(59, 130, 246, 0.35);
}

.empower-image {
  flex: 1;
  text-align: center;
  position: relative;
}

.empower-image img {
  max-width: 550px;
  height: auto;
  border-radius: 16px;
}

.rocket-icon {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 24px;
  animation: rocket-bounce 2s ease-in-out infinite;
}

@keyframes rocket-bounce {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

/* Success Section */
.success-section {
  padding: 30px 5%;
  background: #f8fbff;
}

.success-container {
  /* max-width: 1200px; */
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 60px;
}

.success-content {
  flex: 1;
}

.success-content h2 {
  font-size: 36px;
  font-weight: 800;
  color: #0a0a0a;
  margin-bottom: 20px;
}

.success-content p {
  font-size: 18px;
  color: #6b7280;
  margin-bottom: 30px;
  line-height: 1.6;
  max-width: 600px;
}

.success-features {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
}

.success-features li {
  padding: 12px 0;
  font-size: 16px;
  color: #374151;
  border-bottom: 1px solid #e5e7eb;
  display: flex;
  align-items: center;
}

.success-features li:before {
  content: "✓";
  color: #10b981;
  margin-right: 12px;
  font-weight: bold;
}

.success-features li:last-child {
  border-bottom: none;
}

.success-btn {
  padding: 16px 32px;
  background: linear-gradient(135deg, #3b82f6, #2563eb);
  color: white;
  border: none;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.success-btn:hover {
  background: linear-gradient(135deg, #2563eb, #1d4ed8);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(59, 130, 246, 0.35);
}

.success-image {
  flex: 1;
  text-align: center;
}

.success-image img {
  max-width: 100%;
  height: auto;
  border-radius: 16px;
}

/* Guarantee Section */

.guarantee-section {
  padding: 30px 80px;
  background: transparent;
}

.guarantee-container {
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 60px;
  background: linear-gradient(135deg, #3b82f6, #1d4ed8);
  color: #ffffff;
  border-radius: 24px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.guarantee-content {
  flex: 1;
  padding: 50px;
}

.guarantee-content h2 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 20px;
}

.guarantee-content p {
  font-size: 18px;
  opacity: 0.9;
  line-height: 1.6;
  margin-bottom: 30px;
}

.guarantee-image {
  flex: 1;
  text-align: center;
  position: relative;
}

.guarantee-image img {
  max-width: 70%;
  height: auto;
  border-radius: 16px;
}

.satisfaction-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(255, 255, 255, 0.9);
  color: #333;
  padding: 12px 16px;
  border-radius: 25px;
  font-size: 14px;
  font-weight: 600;
  backdrop-filter: blur(10px);
}

/* Responsive styles for Guarantee Section */
@media (max-width: 992px) {
  .guarantee-container {
    flex-direction: column;
    gap: 30px;
    padding: 30px;
  }
  
  .guarantee-content {
    padding: 20px 0;
    text-align: center;
  }
  
  .guarantee-content h2 {
    font-size: 30px;
  }
  
  .guarantee-content p {
    font-size: 16px;
  }
   .empower-image img{
    max-width: 100%;
  }
  
  .customized-container,
  .nest-standard-container {
    flex-direction: column;
    gap: 30px;
    padding: 30px;
  }
  
  .customized-content,
  .nest-standard-content {
    padding: 20px 0;
    text-align: center;
  }
  
  .customized-content h2,
  .nest-standard-content h2 {
    font-size: 30px;
  }
  
  .customized-content p,
  .nest-standard-content p {
    font-size: 16px;
  }
}

@media (max-width: 768px) {
  .guarantee-section {
    padding: 30px 5%;
  }

  .empower-image img{
    max-width: 100%;
  }
  
  .guarantee-container {
    padding: 25px;
  }
  
  .customized-cta,
  .nest-standard-section {
    padding: 30px 5%;
  }
  
  .customized-container,
  .nest-standard-container {
    padding: 25px;
  }
  
  .guarantee-content h2 {
    font-size: 26px;
  }
  
  .customized-content h2,
  .nest-standard-content h2 {
    font-size: 26px;
  }
}

@media (max-width: 576px) {
  .guarantee-section {
    padding: 20px 5%;
  }
  
  .guarantee-container {
    padding: 20px;
    gap: 20px;
    border-radius: 16px;
  }
  
  .guarantee-content {
    padding: 10px 0;
  }
  
  .guarantee-content h2 {
    font-size: 24px;
    margin-bottom: 15px;
  }
  
  .guarantee-content p {
    font-size: 14px;
    margin-bottom: 20px;
  }
  
  .customized-cta,
  .nest-standard-section {
    padding: 20px 5%;
  }
  
  .customized-container,
  .nest-standard-container {
    padding: 20px;
    gap: 20px;
    border-radius: 16px;
  }
  
  .customized-content,
  .nest-standard-content {
    padding: 10px 0;
  }
  
  .customized-content h2,
  .nest-standard-content h2 {
    font-size: 24px;
    margin-bottom: 15px;
  }
  
  .customized-content p,
  .nest-standard-content p {
    font-size: 14px;
    margin-bottom: 20px;
  }
}

/* Benefits Section */
.benefits-section {
  padding: 60px 5%;
  background: white;
  text-align: center;
}

.benefits-container {
  max-width: 1200px;
  margin: 0 auto;
}

.benefits-container h2 {
  font-size: 36px;
  font-weight: 800;
  color: #0a0a0a;
  margin-bottom: 20px;
}

.benefits-container p {
  font-size: 18px;
  color: #6b7280;
  margin-bottom: 50px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  /* margin-top: 40px; */
}

/* Benefits responsive refinements */
@media (max-width: 992px) {
  .benefits-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
  .benefits-grid { grid-template-columns: 1fr; gap: 18px; }
  .benefit-card { border-radius: 12px; }
  .benefit-card h4 { font-size: 18px; }
}

.benefit-card {
  background: white;
  border-radius: 16px;
  /* padding: 40px 24px; */
  text-align: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  border: 1px solid #e5e7eb;
  transition: all 0.3s ease;
  position: relative;
}

.benefit-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
}



.benefit-icon {
  font-size: 48px;
  margin-bottom: 20px;
}

.benefit-card h4 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 16px;
}

.learn-more-btn {
  margin-top: 20px;
  padding: 12px 24px;
  background: rgba(255, 255, 255, 0.2);
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.learn-more-btn:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: translateY(-2px);
}

/* Why go with Vyom Cloud Section */
.why-go-section {
  padding: 30px 80px;
  background: transparent;
}

.why-go-container {
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  background: linear-gradient(135deg, #3b82f6, #1d4ed8);
  color: #ffffff;
  border-radius: 24px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.why-go-content {
  flex: 1;
  padding: 50px;
}

.why-go-content h2 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 20px;
}

.why-go-content p {
  font-size: 18px;
  opacity: 0.9;
  margin-bottom: 30px;
  line-height: 1.6;
}

.chat-now-btn {
  padding: 16px 32px;
  background: white;
  color: #3b82f6;
  border: none;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.chat-now-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.why-go-image {
  flex: 1;
  text-align: center;
}

.why-go-image img {
  max-width: 100%;
  height: auto;
  border-radius: 16px;
}

/* Responsive styles for Why go with Vyom Cloud Section */
@media (max-width: 992px) {
  .why-go-container {
    flex-direction: column;
    gap: 30px;
    padding: 30px;
  }
  
  .why-go-content {
    padding: 20px 0;
    text-align: center;
  }
  
  .why-go-content h2 {
    font-size: 30px;
  }
  
  .why-go-content p {
    font-size: 16px;
  }
}

@media (max-width: 768px) {
  .why-go-section {
    padding: 30px 5%;
  }
  
  .why-go-container {
    padding: 25px;
  }
  
  .why-go-content h2 {
    font-size: 26px;
  }
  
  .chat-now-btn {
    padding: 14px 28px;
    font-size: 14px;
  }
}

@media (max-width: 576px) {
  .why-go-section {
    padding: 20px 5%;
  }
  
  .why-go-container {
    padding: 20px;
    gap: 20px;
    border-radius: 16px;
  }
  
  .why-go-content {
    padding: 10px 0;
  }
  
  .why-go-content h2 {
    font-size: 24px;
    margin-bottom: 15px;
  }
  
  .why-go-content p {
    font-size: 14px;
    margin-bottom: 20px;
  }
  
  .chat-now-btn {
    padding: 12px 24px;
    font-size: 14px;
  }
}

/* Growth Section */
.growth-section {
  padding: 30px 5%;
  background: #f8fbff;
  position: relative;
  overflow: hidden;
}

.growth-section::before {
  content: '';
  position: absolute;
  width: 300px;
  height: 300px;
  /* background: radial-gradient(circle, rgba(59, 130, 246, 0.1) 0%, rgba(59, 130, 246, 0) 70%); */
  top: -100px;
  right: -50px;
  border-radius: 50%;
  z-index: 0;
}

.growth-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 30px;
  position: relative;
  z-index: 1;
}

@media (max-width: 992px) {
  .growth-container {
    flex-direction: column;
  }
}

.growth-card {
  /* flex: 1; */
  background: linear-gradient(135deg, #3b82f6, #173f94, #000000);
  color: white;
  padding: 20px;
  border-radius: 16px;
  text-align: left;
  position: relative;
  box-shadow: 0 10px 20px rgba(59, 130, 246, 0.15);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 300px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  overflow: hidden;
}

.growth-card::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0) 70%);
  border-radius: 50%;
  opacity: 0.6;
  z-index: 0;
}

.growth-card::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -30%;
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0) 70%);
  border-radius: 50%;
  opacity: 0.4;
  z-index: 0;
}

.growth-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 60px rgba(59, 130, 246, 0.3);
}

.card-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 10px;
}

.growth-icon {
  font-size: 24px;
  position: relative;
  z-index: 1;
  background: rgba(255, 255, 255, 0.15);
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  animation: pulse 3s infinite ease-in-out;
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.05);
  }

  100% {
    transform: scale(1);
  }
}

.growth-card h2 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 10px;
  letter-spacing: -0.02em;
}

.growth-card p {
  font-size: 14px;
  opacity: 0.9;
  margin-bottom: 15px;
  line-height: 1.4;
}

.growth-stats {
  display: flex;
  gap: 15px;
  margin-bottom: 15px;
  position: relative;
  z-index: 1;
}

.stat {
  display: flex;
  flex-direction: column;
  background: rgba(255, 255, 255, 0.1);
  padding: 10px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  transition: all 0.3s ease;
}

.stat:hover {
  transform: translateY(-3px);
  background: rgba(255, 255, 255, 0.15);
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
}

.stat-number {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 2px;
  background: linear-gradient(90deg, #ffffff, #e6f2ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.stat-label {
  font-size: 12px;
  opacity: 0.9;
  letter-spacing: 0.3px;
}

.growth-card .learn-more-btn {
  align-self: flex-start;
  padding: 8px 16px;
  background: rgba(255, 255, 255, 0.9);
  color: #3b82f6;
  border: none;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.growth-card .learn-more-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0));
  transition: left 0.7s ease;
  z-index: -1;
}

.growth-card .learn-more-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  background: white;
}

.growth-card .learn-more-btn:hover::before {
  left: 100%;
}

.growth-content {
  flex: 1;
  position: relative;
  /* padding-left: 80px;
  padding-right: 80px; */
  text-align: center;
}

.growth-badge {
  display: inline-block;
  background: linear-gradient(135deg, #ebf5ff, #dbeafe);
  color: #3b82f6;
  padding: 5px 12px;
  border-radius: 20px;
  /* font-size: 12px; */
  font-weight: 600;
  margin-bottom: 10px;
  box-shadow: 0 2px 8px rgba(59, 130, 246, 0.15);
  border: 1px solid rgba(59, 130, 246, 0.1);
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.growth-content h2 {
  font-size: 36px;
  font-weight: 700;
  color: #0a0a0a;
  margin-bottom: 10px;
  letter-spacing: -0.02em;
}

.growth-content p {
  font-size: 14px;
  color: #6b7280;
  line-height: 1.4;
  margin-bottom: 15px;
}

.growth-features {
  list-style: none;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 0;
  align-self: center;
  justify-self: center;
}

.growth-features li {
  padding: 6px 12px;
  /* font-size: 13px; */
  color: #374151;
  background-color: #f3f4f6;
  border-radius: 15px;
  display: flex;
  align-items: center;
  transition: all 0.3s ease;
}

.growth-features li:hover {
  transform: translateY(-2px);
  background-color: #e5e7eb;
  color: #1f2937;
}

.growth-features li:before {
  content: "✓";
  display: flex;
  align-items: center;
  justify-content: center;
  width: 16px;
  height: 16px;
  background: linear-gradient(135deg, #3b82f6, #2563eb);
  color: white;
  border-radius: 50%;
  margin-right: 6px;
  font-size: 10px;
  font-weight: bold;
  box-shadow: 0 1px 3px rgba(59, 130, 246, 0.3);
}

/* Traffic Section */
.traffic-section {
  padding: 60px 5%;
  background: #f8fbff;
}

.traffic-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 60px;
}

.traffic-image-section {
  flex: 1;
  text-align: center;
}

.traffic-image-section img {
  max-width: 60%;
  height: auto;
  border-radius: 16px;
}

.traffic-content {
  flex: 1;
}

.traffic-content h2 {
  font-size: 36px;
  font-weight: 800;
  color: #0a0a0a;
  margin-bottom: 20px;
}

.traffic-content p {
  font-size: 18px;
  color: #6b7280;
  margin-bottom: 30px;
  line-height: 1.6;
}

.traffic-icons {
  display: flex;
  gap: 20px;

}

.traffic-icon {
  width: 60px;
  height: 60px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Customer Reviews */
.customer-reviews {
  padding: 40px 5%;
  background: #fff;
}

.reviews-wrap {
  border-top: 1px solid #e5e7eb;
  border-bottom: 1px solid #e5e7eb;
  padding: 28px 0;
}

.reviews-layout {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 28px;
  align-items: start;
  max-width: 1200px;
  margin: 0 auto;
}

.reviews-title {
  margin-top: 20px;
  font-weight: 700;
  letter-spacing: .08em;
  color: #111;
  text-transform: uppercase;
  line-height: 1.2;
  font-size: x-large;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
}

.review p {
  color: #374151;
  line-height: 1.9;
  font-size: 15.5px;
}

/* Drop-cap effect like the reference */
.review p::first-letter {
  color: #2563eb;
  font-weight: 600;
  font-size: 1.4rem;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 14px;
}

.review-line {
  display: inline-block;
  width: 34px;
  height: 2px;
  background: #111;
  flex: 0 0 auto;
}

.author-name {
  font-weight: 800;
  color: #0a0a0a;
}

.author-role {
  color: #6b7280;
  font-size: 13px;
  margin-top: 2px;
}

/* FAQ Section */
.faq-section {
  padding: 60px 5%;
  background: linear-gradient(180deg, #f1f3f5 0%, #e9ecef 100%);
}

.faq-subtext {
  margin-bottom: 30px;
}

.faq-content {
  display: flex;
  flex-direction: column;
  gap: 24px;
  max-width: 100%;
  margin: 0 auto;
  padding: 0;
}

.faq-item {
  background: linear-gradient(180deg, #ffffff 0%, #fafbfc 100%);
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1.5px solid #e5e7eb;
}

.faq-item:hover {
  border-color: rgba(59, 130, 246, 0.3);
  box-shadow: 0 10px 30px rgba(59, 130, 246, 0.08);
  transform: translateY(-2px);
}

.faq-question {
  padding: 26px 32px;
  font-weight: 600;
  font-size: 1.15rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s ease;
  color: #1a1a1a;
  background: linear-gradient(180deg, #fafbfc 0%, #f8f9fa 100%);
  letter-spacing: -0.01em;
}

.faq-question:hover {
  background: linear-gradient(180deg, rgba(59, 130, 246, 0.03) 0%, rgba(59, 130, 246, 0.05) 100%);
  color: #3b82f6;
}

.faq-icon {
  font-size: 1.4rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  color: #9ca3af;
  margin-left: 20px;
  min-width: 20px;
}

.faq-answer {
  padding: 0 32px 28px;
  display: none;
  animation: fadeInDown 0.3s ease-in-out;
  color: #6b7280;
  text-align: left;
  line-height: 1.7;
  font-size: 15px;
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.faq-item.active .faq-answer {
  display: block;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
  color: #3b82f6;
}

.faq-item.active .faq-question {
  color: #3b82f6;
  background: linear-gradient(180deg, rgba(59, 130, 246, 0.05) 0%, rgba(59, 130, 246, 0.08) 100%);
}

/* Prime Features Header */
.prime-features-header {
  text-align: center;
  margin-bottom: 50px;
}

.prime-features-badge {
  display: inline-block;
  background: linear-gradient(135deg, #3b82f6, #2563eb);
  color: white;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 20px;
}

.prime-features-title {
  font-size: 36px;
  font-weight: 800;
  color: #0a0a0a;
  margin-bottom: 18px;
}

/* View Features Button */
.view-features-btn {
  margin-top: 16px;
  padding: 8px 16px;
  background: rgba(255, 255, 255, 0.2);
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 6px;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.view-features-btn:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: translateY(-1px);
}

/* Support Badge */
.support-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(255, 255, 255, 0.9);
  color: #333;
  padding: 8px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  backdrop-filter: blur(10px);
}

/* VAT Badge */
.vat-badge {
  position: absolute;
  bottom: 20px;
  right: 20px;
  background: rgba(16, 185, 129, 0.9);
  color: white;
  padding: 6px 12px;
  border-radius: 15px;
  font-size: 11px;
  font-weight: 600;
}

/* Responsive Design Updates */
@media (max-width: 992px) {
  .reviews-layout {
    grid-template-columns: 1fr;
  }

  .reviews-title {
    margin-bottom: 8px;
  }

  .reviews-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  .growth-container,
  .traffic-container {
    flex-direction: column;
    text-align: center;
  }

  .growth-content {
    padding-left: 0;
    padding-right: 0;

  }
}

@media (max-width: 600px) {
  .reviews-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .growth-card h2 {
    font-size: 36px;
  }

  .traffic-icons {
    justify-content: center;
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero-left h1 {
    font-size: 32px;
  }

  .vps-title {
    font-size: 28px;
  }

  /* keep row layout on mobile; individual cards will stack via width rules */
  .vps-plans {
    flex-direction: row;
    align-items: stretch;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .customized-container,
  .nest-standard-container,
  .empower-container,
  .success-container,
  .guarantee-container {
    flex-direction: column;
    text-align: center;
  }

  .floating-cards {
    display: none;
  }

  .growth-content {
    padding-left: 0;
    padding-right: 0;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .hero-left h1 {
    font-size: 28px;
  }

  .vps-title {
    font-size: 24px;
  }

  .plan-selector {
    flex-wrap: wrap;
  }

  .trust-cards {
    flex-direction: column;
    align-items: center;
  }
}

/* Responsive card widths aligned with n8n layout */
/* Small devices (landscape phones, 576px and up) */
@media (min-width: 576px) and (max-width: 767px) {
  .vps-plans {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    column-gap: 15px;
    row-gap: 20px;
  }

  .vps-card {
    width: auto;
    flex: initial;
  }
  .badge{
    font-size: 10px;
  }
}

/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) and (max-width: 991px) {
  .vps-plans {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    column-gap: 20px;
    row-gap: 20px;
  }

  .vps-card {
    width: auto;
    flex: initial;
  }
}

/* Large devices (desktops, 992px and up) */
@media (min-width: 992px) and (max-width: 1199px) {
  .vps-plans {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    column-gap: 20px;
    row-gap: 20px;
  }

  .vps-card {
    width: auto;
    flex: initial;
  }
}

/* Extra large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {

  /* Force 4-in-a-row using grid to avoid flex rounding wrap */
  .vps-plans {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    column-gap: 20px;
    row-gap: 20px;
  }

  .vps-card {
    width: auto;
    flex: initial;
  }
   .badge{
    font-size: 10px;
  }
}

/* For mobile devices (1 card per row) */
@media (max-width: 575px) {
  .vps-card {
    flex: 0 0 100%;
    width: 100%;
  }
  .badge{
    font-size: 10px;
  }
}

@media (max-width: 1000px) {
  .traffic-icons {
    justify-content: center;
  }
}

/* VPS Hosting Section Styles */
.vps-hosting-section {
  padding: 30px 80px;
  background-color: #f8fbff;
  position: relative;
  overflow: hidden;
  min-height: 100vh;
}

.container {
  /* max-width: 1400px; */
  margin: 0 auto;
  /* padding: 0 20px; */
}

/* Header Section */
.header-section {
  text-align: center;
  margin-bottom: 40px;
}

.header-section h1 {
  font-size: 36px;
  font-weight: 800;
  margin-bottom: 15px;
  color: #000000;
}

.header-section .subtitle {
  font-size: 16px;
  color: #000000bb;
  max-width: 800px;
  margin: 0 auto;
}

/* Features Grid */
.features-grid {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.feature-row {
  display: flex;
  gap: 20px;
}

.top-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.bottom-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px;
}

.bottom-row-2 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

/* Feature Cards */
.feature-card {
  border-radius: 15px;
  overflow: hidden;
  display: flex;
  position: relative;
  min-height: 200px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.blue-bg {
  background-color: #0078ff;
}

.blue-light-bg {
  background-color: #fafafa;
  color: #333;
}

.feature-content {
  padding: 20px;
  z-index: 2;
}

#flexOne .feature-content {
  flex: 1;
}


.feature-card h2 {
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 15px;
}

.blue-light-bg h2 {
  color: #0078ff;
}

.blue-bg h2 {
  color: #ffffff;
}

.feature-card p {
  font-size: 14px;
  margin-bottom: 20px;
}

.blue-light-bg p {
  color: #555;
}

.blue-bg p {
  color: #e6f0ff;
}

.feature-image {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

#flexOne .feature-image {
  flex: 1;
}

.feature-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* Top row cards - specific styling */
.top-row .feature-card {
  display: flex;
  flex-direction: row;
}

.top-row .feature-content {
  width: 50%;
}

.top-row .feature-image {
  width: 50%;
}

/* Bottom row cards - specific styling */
.bottom-row .feature-card {
  display: flex;
  flex-direction: column;
  max-height: 400px;
}

.bottom-row .feature-content {
  width: 100%;
}

.bottom-row .feature-image {
  width: 100%;
  height: 150px;
}

/* Progress Dots */
.progress-dots {
  display: flex;
  gap: 11px;
  margin-top: 20px;
  justify-content: center;
  align-items: center;
}

.dot {
  width: 30px;
  height: 5px;
  background-color: #d0d0d0;
  border-radius: 5px;
}

.dot.active {
  background-color: #0078ff;
}

/* Security Icons */
.security-icons {
  display: flex;
  gap: 20px;
  margin-top: 30px;
  justify-content: center;
  align-items: center;
}

.security-icon {
  width: 60px;
  height: 60px;
  background-color: rgba(255, 255, 255, 0.411);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
}

/* Resource Icons */
.resource-icons {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 20px;
  justify-content: center;
  align-items: center;
}

.resource-icon {
  width: 50px;
  height: 50px;
  background-color: rgba(0, 120, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: #0078ff;
}

/* Scalability Chart */
.scalability-chart {
    display: flex;
    align-items: center;
    justify-content: center;
}

.scalability-icon {
    width: 100px;
    height: 100px;
    object-fit: contain;
}

/* Performance Graph */
.performance-graph {
    margin-top: 20px;
    position: relative;
    height: 150px;
    width: 100%;
    padding: 20px;
}

.graph {
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.7);
    border-radius: 10px;
    padding: 10px;
}

.graph polyline {
    stroke-dasharray: 1000;
    stroke-dashoffset: 1000;
    animation: dash 2s ease-in-out forwards;
}

@keyframes dash {
    to {
        stroke-dashoffset: 0;
    }
}

.graph-labels {
    display: flex;
    justify-content: space-between;
    margin-top: 10px;
}

.graph-labels span {
    font-size: 12px;
    color: #555;
}

/* Performance Chart */
.performance-chart {
    margin-top: 30px;
    position: relative;
    height: 150px;
}

.chart-labels {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.chart-labels span {
    font-size: 14px;
    color: #555;
}

.chart-lines {
    position: relative;
    height: 100%;
    margin-left: 40px;
}

.chart-line {
    position: absolute;
    width: 100%;
    height: 2px;
    background-color: #d0d0d0;
}

.chart-line:first-child {
    top: 0;
}

.chart-line:last-child {
    bottom: 40%;
}

.chart-line::after {
    content: '';
    position: absolute;
    top: -2px;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, transparent 40%, #0078ff 40%, #0078ff 60%, transparent 60%, transparent 80%, #0078ff 80%);
    background-size: 100% 2px;
    animation: chartAnimation 3s infinite;
}

@keyframes chartAnimation {
    0% {
        background-position: 0 0;
    }
    100% {
        background-position: 100% 0;
    }
}

.performance-card {
    overflow: hidden;
    position: relative;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.performance-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}
  /* Bottom Row 2 */
.bottom-row-2 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

/* Responsive Design for Feature Cards */
@media (max-width: 992px) {
    .top-row, .bottom-row {
        grid-template-columns: 1fr;
    }
    
    .top-row .feature-card {
        flex-direction: column;
    }
    
    .top-row .feature-content,
    .top-row .feature-image {
        width: 100%;
    }
    
    .feature-image {
        min-height: 200px;
    }
}
 

.scalability-icon {
  max-width: 100px;
  height: auto;
}

/* OS Badges */
.os-badges {
  position: absolute;
  bottom: 20px;
  right: 20px;
  display: flex;
  gap: 10px;
}

.os-badge {
  background-color: rgba(255, 255, 255, 0.9);
  padding: 5px 10px;
  border-radius: 5px;
  font-size: 12px;
  font-weight: 600;
}

.os-badge.linux {
  color: #333;
}

.os-badge.windows {
  color: #0078d7;
}

/* Media Queries */
@media (max-width: 900px) {
  .top-row, .bottom-row {
    grid-template-columns: 1fr;
  }
  
  .top-row .feature-card {
    flex-direction: column;
  }
  
  .top-row .feature-content,
  .top-row .feature-image {
    width: 100%;
  }
  
  .top-row .feature-image {
    height: 200px;
  }
  .vps-hosting-section{
    padding: 15px 25px;
  }
  .why-go-section{
    padding: 15px 25px;
  }
}
.performance-features {
  list-style: none;
  padding: 0;
  margin-top: 20px;
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 20px;
}

.performance-features li {
  font-size: 16px;
  font-weight: 600;
  color: #334155;
  display: flex;
  align-items: center;
  gap: 10px;
}

.performance-features .fas {
  color: #3b82f6;
  font-size: 20px;
}

/* VDS Server Performance */
.vds-server-performance {
    text-align: center;
    margin-top: 25px;
}
.vds-container {
    margin: 0 auto;
    text-align: center;
    padding: 0 2%;
}
.vds-title {
    font-size: 42px;
    font-weight: 800;
    color: #0a0a0a;
    margin-bottom: 18px;
    line-height: 1.3;
    letter-spacing: -0.02em;
}
.host-description {
    font-size: 18px;
    color: #6b7280;
    margin-bottom: 20px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

/* Form CSS */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.65);
    backdrop-filter: blur(5px);
}
.modal-content {
    background: linear-gradient(135deg, #ffffff 0%, #f8fbff 100%);
    margin: 8% auto;
    padding: 35px;
    border-radius: 16px;
    width: 90%;
    max-width: 500px;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    animation: modalSlideIn 0.3s ease;
}
@keyframes modalSlideIn {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}
.close-btn {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 24px;
    cursor: pointer;
    color: #666;
    transition: all 0.3s ease;
}
.close-btn:hover {
    color: #333;
    transform: rotate(90deg);
}
#studentForm {
    display: flex;
    flex-direction: column;
}
#studentForm label {
    margin-top: 16px;
    font-weight: 600;
    color: #333;
    font-size: 14px;
    letter-spacing: 0.02em;
}
#studentForm input {
    padding: 12px 14px;
    margin-top: 6px;
    border: 1.5px solid #e5e7eb;
    border-radius: 8px;
    font-size: 14px;
    transition: all 0.3s ease;
    background-color: #fafbfc;
}
#studentForm input:focus {
    outline: none;
    border-color: #3b82f6;
    background-color: #fff;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}
#studentForm button {
    margin-top: 24px;
    padding: 13px;
    background: linear-gradient(135deg, #4CAF50, #45a049);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 14px rgba(76, 175, 80, 0.25);
}
#studentForm button:hover {
    background: linear-gradient(135deg, #45a049, #3d8b40);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(76, 175, 80, 0.35);
}
/* VPS Plans Cards */
.vds-plans-outer {
    position: relative;
    overflow: hidden;
    padding: 20px 0;
    margin: 0 -5%;
}
.vds-plans {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
    padding: 0 5%;
    width: 100%;
}
.vds-card {
    background: white;
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    text-align: left;
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
    position: relative;
}
.vds-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-color: rgba(59, 130, 246, 0.2);
}
.vds-card h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #0a0a0a;
}
.vds-card .price {
    font-size: 36px;
    font-weight: 800;
    color: #0a0a0a;
    margin-bottom: 12px;
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}
.vds-card .price span {
    font-size: 16px;
    font-weight: 500;
    color: #6b7280;
}
.plan-description {
    font-size: 14px;
    color: #6b7280;
    margin-bottom: 24px;
    min-height: 42px;
}
.vds-btn {
    width: 100%;
    padding: 12px;
    border-radius: 8px;
    background: linear-gradient(135deg, #3b82f6, #2563eb);
    color: white;
    border: none;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 24px;
    font-size: 15px;
}
.vds-btn:hover {
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.25);
}
.vds-features {
    list-style: none;
    padding: 0;
    margin: 0;
}
.vds-features li {
    padding: 10px 0;
    border-top: 1px solid #f0f0f0;
    font-size: 14px;
    color: #4b5563;
    display: flex;
    align-items: center;
}
.vds-features li:before {
    content: "✓";
    color: #10b981;
    margin-right: 10px;
    font-weight: bold;
}
.best-deal {
    border: 2px solid #3b82f6;
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.1);
}
.badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background: linear-gradient(135deg, #3b82f6, #2563eb);
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.25);
}
/* For mobile devices (1 card per row) */
@media (max-width: 575px) {
    .vds-plans {
        grid-template-columns: 1fr;
    }
    .vds-card {
        width: 100%;
    }
    .badge{
        font-size: 10px;
    }
}
/* Extra small devices (phones less than 370px) */
@media (max-width: 370px) {
    .vds-plans-section {
        overflow-x: hidden;
    }
    .vds-plans {
        padding: 0 3%;
    }
    .vds-card {
        padding: 20px 15px;
    }
    .vds-card h3 {
        font-size: 20px;
    }
    .vds-card .price {
        font-size: 30px;
    }
    .plan-description {
        font-size: 13px;
    }
    .vds-features li {
        font-size: 13px;
    }
    .region-tabs-container {
        max-width: 100%;
        overflow-x: auto;
    }
    .region-tabs {
        min-width: max-content;
    }
}
/* Small devices (phones, 576px and up) */
@media (min-width: 576px) and (max-width: 767px) {
    .vds-plans {
        grid-template-columns: repeat(2, 1fr);
        column-gap: 15px;
        row-gap: 20px;
    }
    .vds-card {
        width: auto;
        flex: initial;
    }
    .badge{
        font-size: 10px;
    }
}
/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) and (max-width: 991px) {
    .vds-plans {
        grid-template-columns: repeat(2, 1fr);
        column-gap: 20px;
        row-gap: 20px;
    }
    .vds-card {
        width: auto;
        flex: initial;
    }
}
/* Large devices (desktops, 992px and up) */
@media (min-width: 992px) and (max-width: 1199px) {
    .vds-plans {
        grid-template-columns: repeat(2, 1fr);
        column-gap: 20px;
        row-gap: 20px;
    }
    .vds-card {
        width: auto;
        flex: initial;
    }
}
/* Extra large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {
    .vds-plans {
        grid-template-columns: repeat(4, 1fr);
        column-gap: 20px;
        row-gap: 20px;
    }
    .vds-card {
        width: auto;
        flex: initial;
    }
    .badge{
        font-size: 10px;
    }
}

/* Automation Guide Section */
.automation-guide {
  background: #f9fafc;
  padding: 20px 4%;
  border-radius: 20px;
}

.guide-container {
  display: flex;
  flex-wrap: wrap-reverse;
  align-items: stretch;
  gap: 80px;
  max-width: 1200px;
  margin: 0 auto;
}

.guide-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.guide-title {
  font-size: 36px;
  font-weight: 800;
  color: #1e293b;
  margin-bottom: 16px;
  /* text-align: center; */
}

.guide-subtitle {
  font-size: 18px;
  color: #64748b;
  margin-bottom: 30px;
}

.setup-steps {
  list-style: decimal inside;
  padding-left: 0;
  margin-bottom: 10px;
  font-size: 16px;
  color: #334155;
  line-height: 1.8;
}

.setup-steps li {
  margin-bottom: 12px;
}

.guide-button {
  align-self: flex-start;
  background: linear-gradient(135deg, #3b82f6, #1d4ed8);
  color: #fff;
  padding: 14px 32px;
  font-size: 16px;
  font-weight: 600;
  border: none;
  border-radius: 8px;
  text-decoration: none;
  box-shadow: 0 8px 20px rgb(0, 0, 0), 0.25;
  transition: background 0.3s, transform 0.3s;
}

.guide-button:hover {
  background: linear-gradient(135deg, #2563eb, #1e40af);
  transform: translateY(-2px);
}

.guide-video {
  flex: 1;
  justify-self: center;
  align-self: center;
}

.video-card {
  position: relative;
  display: block;
  width: 100%;
  height: 70%;
  /* overflow: hidden;
  border-radius: 16px; */
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s;
}

.video-card:hover {
  transform: scale(1.02);
}

.video-thumb {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-play-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 68px;
  height: 48px;
  opacity: 0.9;
  transition: transform 0.3s ease;
}

.video-card:hover .video-play-icon {
  transform: translate(-50%, -50%) scale(1.1);
}

/* Responsive */
@media (max-width: 768px) {
  .guide-container {
    flex-direction: column;
  }

  .guide-title{
  text-align: center;

  }

  .guide-video,
  .guide-content {
    width: 100%;
    margin-top: 0%;
  }

  .guide-button {
    width: 100%;
    text-align: center;
  }
  .video-card{
    height: 70%;
  }
}

@media (max-width: 768px) {
  .guide-container {
    flex-direction: column;
  }

  .guide-content {
    width: 100%;
    order: 1;
  }

  .guide-video {
    width: 100%;
    margin-top: 0%;
    order: 2;
  }

  .guide-button {
    width: 100%;
    text-align: center;
  }

  .video-card {
    height: 70%;
  }
}

/* Tablet: Stack content vertically */
@media (max-width: 992px) {
  .guide-container {
    flex-direction: column;
    align-items: center;
  }

  .guide-video,
  .guide-content {
    width: 100%;
  }

  .guide-title {
    font-size: 1.75rem;
  }

  .guide-subtitle {
    font-size: 1rem;
  }
}

/* Mobile: Smaller padding and font sizes */
@media (max-width: 600px) {
  .automation-guide {
    padding: 20px 25px;
  }

  .guide-title {
    font-size: 1.5rem;
  }

  .guide-subtitle {
    font-size: 0.95rem;
  }

  .guide-button {
    width: 100%;
    padding: 14px;
    font-size: 1rem;
  }

  .setup-steps li {
    margin-bottom: 10px;
    font-size: 0.95rem;
  }
  
  .host-description{
    font-size: 14px;
  }
}

/* Extra small screens: Prevent cropping */
@media (max-width: 320px) {
  .automation-guide {
    padding: 20px 20px;
    justify-content: center;
    align-items: center;
  }

  .host-description{
    font-size: 14px;
  }

  .performance-features li{
    font-size: 12px;
  }

  .guide-container {
    gap: 20px;
  }

  .guide-title {
    font-size: 1.25rem;
  }

  .guide-subtitle {
    font-size: 0.9rem;
  }

  .setup-steps li {
    font-size: 0.7rem;
  }
}

@media (min-width: 1201px) {
  /* styles for screens wider than 1200px */
  .vds-server-performance{
    padding: 20px 50px;
  }
}

/* Responsive video wrapper */
.video-wrapper {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 aspect ratio */
  height: 0;
  /* overflow: hidden;
  border-radius: 16px; */
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
}

.video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}