:root {
  --primary: #020617;
  --primary-light: #0f172a;
  --primary-dark: #000000;
  --accent: #4f46e5;
  --accent-light: #6366f1;
  --accent-glow: rgba(79, 70, 229, 0.3);
  --success: #10b981;
  --success-light: #34d399;
  --bg: #ffffff;
  --bg-dark: #020617;
  --bg-card: #ffffff;
  --text: #0f172a;
  --text-light: #475569;
  --text-muted: #94a3b8;
  --border: #e2e8f0;
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 15px rgba(0, 0, 0, 0.05);
  --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.08);
  --shadow-glow: 0 0 30px rgba(79, 70, 229, 0.25);
  --radius: 16px;
  --radius-sm: 10px;
  --radius-lg: 24px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --ai-gradient: linear-gradient(135deg, #4f46e5, #9333ea);
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  overflow-x: hidden;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
h5 {
  font-family: 'Outfit', sans-serif;
  line-height: 1.2;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
  height: auto;
}

ul {
  list-style: none;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ===== STICKY TOP BAR ===== */
.top-bar {
  background: linear-gradient(90deg, #673de6 0%, #5d48d0 30%, #9333ea 60%, #673de6 100%);
  background-size: 300% 100%;
  animation: topBarShimmer 8s ease infinite;
  color: #fff;
  text-align: center;
  padding: 10px 16px;
  font-size: 0.85rem;
  font-weight: 600;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  letter-spacing: 0.3px;
}

@keyframes topBarShimmer {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

.top-bar span {
  opacity: 0.95;
}

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 38px;
  left: 0;
  right: 0;
  z-index: 999;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  transition: var(--transition);
  padding: 0 20px;
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.97);
  box-shadow: var(--shadow-sm);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.nav-logo {
  font-family: 'Outfit', sans-serif;
  font-size: 1.6rem;
  font-weight: 900;
  color: rgb(104, 17, 121)
}

.nav-logo span {
  color: var(--accent);
}

.nav-links {
  display: flex;
  gap: 24px;
  align-items: center;
}

.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-light);
  transition: var(--transition);
  position: relative;
}

.nav-links a:hover {
  color: var(--primary);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: var(--transition);
}

.nav-links a:hover::after {
  width: 100%;
}

/* Dropdown */
.nav-dropdown {
  position: relative;
}

.nav-dropdown>span {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-light);
  cursor: pointer;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.nav-dropdown>span:hover {
  color: var(--primary);
}

.nav-dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%);
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 12px;
  padding: 10px 0;
  min-width: 200px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
  z-index: 999;
  animation: fadeInDown 0.25s ease;
}

/* Click-based dropdown (JS toggles .active) */
.nav-dropdown:hover .nav-dropdown-menu {
  display: none;
}

.nav-dropdown.active .nav-dropdown-menu {
  display: block;
}

.nav-dropdown-menu a {
  display: block !important;
  padding: 10px 20px !important;
  font-size: 0.9rem !important;
  color: var(--text) !important;
  transition: 0.2s !important;
}

.nav-dropdown-menu a:hover {
  background: rgba(99, 102, 241, 0.06) !important;
  color: var(--accent) !important;
}

.nav-dropdown-menu a::after {
  display: none !important;
}

.nav-cta {
  background: linear-gradient(135deg, var(--accent), #9333ea) !important;
  color: #fff !important;
  padding: 10px 22px !important;
  border-radius: 50px !important;
  font-weight: 600 !important;
  transition: var(--transition) !important;
  box-shadow: 0 4px 15px var(--accent-glow);
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-glow);
}

.nav-cta::after {
  display: none !important;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}

.hamburger span {
  width: 24px;
  height: 2.5px;
  background: var(--text);
  border-radius: 2px;
  transition: var(--transition);
}

/* Animation utilities */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-left {
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.fade-right {
  opacity: 0;
  transform: translateX(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-right.visible {
  opacity: 1;
  transform: translateX(0);
}

.stagger-1 {
  transition-delay: 0.1s;
}

.stagger-2 {
  transition-delay: 0.2s;
}

.stagger-3 {
  transition-delay: 0.3s;
}

.stagger-4 {
  transition-delay: 0.4s;
}

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 120px;
  padding-bottom: 60px;
  background-color: var(--primary);
  background-image:
    radial-gradient(ellipse at 50% -20%, rgba(79, 70, 229, 0.25) 0%, transparent 70%),
    radial-gradient(ellipse at 80% 50%, rgba(147, 51, 234, 0.15) 0%, transparent 50%),
    radial-gradient(ellipse at 20% 60%, rgba(56, 189, 248, 0.1) 0%, transparent 50%);
  position: relative;
  overflow: hidden;
  color: #ffffff;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
  opacity: 0.03;
  pointer-events: none;
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
}

@keyframes pulse {

  0%,
  100% {
    transform: scale(1);
    opacity: 0.6;
  }

  50% {
    transform: scale(1.1);
    opacity: 1;
  }
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: left;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: center;
}

@media (max-width: 768px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

@media (max-width: 992px) {
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-content {
    text-align: center;
  }

  .hero-ctas,
  .hero-trust {
    justify-content: center !important;
  }

  .hero-sub {
    margin-left: auto;
    margin-right: auto;
  }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  padding: 8px 20px;
  border-radius: 50px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.85rem;
  font-weight: 500;
  margin-bottom: 28px;
  animation: fadeInDown 0.8s ease;
  min-height: 40px; /* Prevent layout shift */
}

.hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  color: #fff;
  margin-bottom: 20px;
  animation: fadeInUp 0.8s ease 0.2s both;
  min-height: 140px; /* Prevent layout shift */
  display: block;
}

.hero h1 .highlight {
  display: inline-block;
  margin-top: 5px;
  padding-bottom: 0.1em;
  background: linear-gradient(135deg, #a78bfa, #f472b6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  min-height: 2.4em;
  max-width: 700px;
  width: 100%;
  text-align: left;
  line-height: 1.15em;
  overflow-wrap: break-word;
  word-break: break-word;
}

.hero-sub {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: rgba(255, 255, 255, 0.75);
  max-width: 650px;
  margin: 0 0 36px;
  animation: fadeInUp 0.8s ease 0.4s both;
  line-height: 1.6;
  min-height: 60px; /* Prevent layout shift */
}

@media (max-width: 768px) {
  .hero h1 .highlight {
    width: auto; /* Allow flexible width on mobile */
    text-align: left;
  }
}

.hero-ctas {
  display: flex;
  gap: 16px;
  justify-content: flex-start;
  flex-wrap: wrap;
  margin-bottom: 48px;
  animation: fadeInUp 0.8s ease 0.6s both;
}

@media (max-width: 768px) {
  .hero-ctas {
    flex-direction: column;
    gap: 12px;
  }

  .hero-ctas a {
    width: 100%;
    text-align: center;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .hero-ctas {
    margin-bottom: 30px;
  }
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent), #9333ea);
  color: #fff;
  padding: 16px 36px;
  border-radius: 50px;
  font-size: 1.05rem;
  font-weight: 700;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 6px 25px var(--accent-glow);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}

@media (max-width: 480px) {
  .btn-primary {
    padding: 12px 20px;
    font-size: 0.95rem;
  }
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 35px var(--accent-glow);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid rgba(255, 255, 255, 0.25);
  color: #fff;
  padding: 14px 32px;
  border-radius: 50px;
  font-size: 1.05rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  backdrop-filter: blur(10px);
  white-space: nowrap;
}

@media (max-width: 480px) {
  .btn-secondary {
    padding: 12px 20px;
    font-size: 0.95rem;
  }
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

.hero-trust {
  display: flex;
  justify-content: flex-start;
  gap: 32px;
  flex-wrap: wrap;
  animation: fadeInUp 0.8s ease 0.8s both;
}

.hero-trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
  font-weight: 500;
}

@media (max-width: 768px) {
  .hero-trust {
    gap: 20px;
  }

  .hero-trust-item {
    font-size: 0.85rem;
  }
}

@media (max-width: 480px) {
  .hero-trust {
    flex-direction: column;
    gap: 12px;
  }
}

.hero-trust-item .icon {
  font-size: 1.3rem;
}

/* ===== TERMINAL WINDOW ===== */
.terminal-window {
  background: rgba(10, 14, 39, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5), 0 0 40px rgba(99, 102, 241, 0.2);
  overflow: hidden;
  backdrop-filter: blur(15px);
  text-align: left;
  animation: fadeInUp 1s ease 0.8s both;
  font-family: 'Consolas', 'Monaco', monospace;
  max-width: 100%;
  width: 100%;
}

@media (max-width: 768px) {
  .terminal-window {
    display: none;
  }
}

.terminal-header {
  background: rgba(255, 255, 255, 0.05);
  padding: 12px 16px;
  display: flex;
  gap: 8px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.terminal-header span {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

.term-red {
  background: #ff5f56;
}

.term-yel {
  background: #ffbd2e;
}

.term-grn {
  background: #27c93f;
}

.terminal-body {
  padding: 24px;
  color: #fff;
  font-size: 0.95rem;
  line-height: 1.6;
  height: 280px;
  overflow: hidden;
  box-sizing: border-box;
  word-wrap: break-word;
  white-space: pre-wrap;
}

.term-line {
  margin-bottom: 8px;
  color: #e2e8f0;
}

.term-cursor {
  display: inline-block;
  width: 8px;
  height: 16px;
  background: #fff;
  vertical-align: middle;
  animation: blink 1s step-end infinite;
}

@keyframes blink {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0;
  }
}

/* ===== MARQUEE ===== */
.marquee-container {
  background: rgba(0, 0, 0, 0.3);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  overflow: hidden;
  padding: 15px 0;
  display: flex;
  white-space: nowrap;
  align-items: center;
  position: relative;
  z-index: 10;
  margin-top: -60px;
  margin-bottom: 60px;
}

@media (max-width: 768px) {
  .marquee-container {
    padding: 12px 0;
    margin-top: -40px;
    margin-bottom: 40px;
  }
}

@media (max-width: 480px) {
  .marquee-container {
    padding: 10px 0;
    margin-top: -30px;
    margin-bottom: 30px;
  }
}

.marquee-content {
  display: flex;
  gap: 40px;
  align-items: center;
  animation: marquee 20s linear infinite;
  color: rgba(255, 255, 255, 0.7);
  font-family: 'Outfit', sans-serif;
  font-size: 1.15rem;
  font-weight: 600;
  letter-spacing: 1px;
}

.marquee-content .dot {
  color: var(--accent);
  opacity: 0.5;
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

/* ===== SECTION COMMON ===== */
section {
  padding: 90px 0;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: linear-gradient(135deg, rgba(26, 35, 126, 0.08), rgba(147, 51, 234, 0.08));
  color: var(--primary);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
}

.section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  color: var(--primary-dark);
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-light);
  max-width: 600px;
  margin-bottom: 48px;
}

.text-center {
  text-align: center;
}

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

/* ===== PAIN POINTS ===== */
.pain-section {
  background: #f5f5f5;
}

.pain-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 24px;
}

.pain-card {
  background: var(--bg-card);
  border-radius: var(--radius);
  padding: 32px;
  border: 1px solid var(--border);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  word-wrap: break-word;
}

@media (max-width: 480px) {
  .pain-card {
    padding: 20px;
  }

  .pain-icon {
    font-size: 1.5rem;
    margin-bottom: 12px;
  }

  .pain-card h3 {
    font-size: 1rem;
  }
}

.pain-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.pain-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #ef5350, var(--accent));
  opacity: 0;
  transition: var(--transition);
}

.pain-card:hover::before {
  opacity: 1;
}

.pain-icon {
  font-size: 2rem;
  margin-bottom: 16px;
}

.pain-card h3 {
  font-family: 'Inter', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--text);
}

.pain-problem {
  color: #d32f2f;
  font-size: 0.95rem;
  font-weight: 500;
  margin-bottom: 12px;
}

.pain-solution {
  background: linear-gradient(135deg, rgba(46, 125, 50, 0.06), rgba(46, 125, 50, 0.02));
  border-left: 3px solid var(--success);
  padding: 12px 16px;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  color: var(--success);
  font-weight: 600;
  font-size: 0.9rem;
}

/* ===== COMPARISON TABLE ===== */
.compare-section {
  background: var(--bg);
}

.compare-table-wrap {
  overflow-x: auto;
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  -webkit-overflow-scrolling: touch;
}

.compare-table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  font-size: 0.9rem;
}

@media (max-width: 768px) {
  .compare-table {
    font-size: 0.8rem;
  }

  .compare-table th,
  .compare-table td {
    padding: 12px 8px;
  }
}

.compare-table thead th {
  padding: 20px 16px;
  font-size: 0.95rem;
  font-weight: 700;
  text-align: center;
  border-bottom: 2px solid var(--border);
  background: #fafafa;
}

@media (max-width: 480px) {
  .compare-table thead th {
    padding: 12px 8px;
    font-size: 0.75rem;
  }
}

.compare-table thead th:first-child {
  text-align: left;
}

.compare-table thead th.hostlish-col {
  background: linear-gradient(180deg, var(--primary), var(--primary-light));
  color: #fff;
  font-size: 1.05rem;
  position: relative;
}

.compare-table tbody td {
  padding: 16px;
  text-align: center;
  border-bottom: 1px solid #f0f0f0;
  font-size: 0.9rem;
}

.compare-table tbody td:first-child {
  text-align: left;
  font-weight: 600;
  color: var(--text);
}

.compare-table tbody td.hostlish-col {
  background: rgba(26, 35, 126, 0.03);
  font-weight: 600;
  color: var(--success);
}

.compare-table tbody tr:hover {
  background: rgba(26, 35, 126, 0.02);
}

/* ===== PRICING ===== */
.pricing-section {
  background: linear-gradient(170deg, #0a0e27 0%, #1a237e 100%);
  color: #fff;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
  margin-bottom: 48px;
}

.pricing-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  backdrop-filter: blur(10px);
  transition: var(--transition);
  position: relative;
  word-wrap: break-word;
}

@media (max-width: 480px) {
  .pricing-card {
    padding: 24px 16px;
  }

  .pricing-name {
    font-size: 1.1rem;
  }

  .pricing-price {
    font-size: 2.2rem;
  }
}

.pricing-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 255, 255, 0.2);
}

.pricing-card.popular {
  background: rgba(255, 255, 255, 0.12);
  border-color: var(--accent);
  transform: scale(1.03);
  box-shadow: 0 0 40px rgba(147, 51, 234, 0.15);
}

.pricing-card.popular:hover {
  transform: scale(1.03) translateY(-6px);
}

.popular-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--accent), #9333ea);
  color: #fff;
  padding: 6px 24px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.pricing-name {
  font-family: 'Outfit', sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.pricing-price {
  font-family: 'Outfit', sans-serif;
  font-size: 2.8rem;
  font-weight: 900;
  margin-bottom: 4px;
}

.pricing-price span {
  font-size: 1rem;
  font-weight: 500;
  opacity: 0.7;
}

.pricing-yearly {
  font-size: 0.85rem;
  opacity: 0.7;
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.pricing-features {
  margin-bottom: 28px;
}

.pricing-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  font-size: 0.92rem;
  opacity: 0.9;
}

.pricing-features li::before {
  content: '✓';
  color: var(--accent);
  font-weight: 700;
  font-size: 1rem;
}

.pricing-btn {
  display: block;
  width: 100%;
  padding: 14px;
  border-radius: 50px;
  text-align: center;
  font-weight: 700;
  font-size: 1rem;
  border: 2px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  background: transparent;
  cursor: pointer;
  transition: var(--transition);
}

.pricing-btn:hover {
  background: rgba(255, 255, 255, 0.1);
}

.pricing-card.popular .pricing-btn {
  background: linear-gradient(135deg, var(--accent), #9333ea);
  border-color: var(--accent);
  box-shadow: 0 4px 20px var(--accent-glow);
}

.pricing-card.popular .pricing-btn:hover {
  transform: translateY(-2px);
}

.pricing-note {
  text-align: center;
  opacity: 0.8;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

/* VPS */
.vps-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  padding: 40px;
  margin-top: 48px;
  display: flex;
  align-items: center;
  gap: 48px;
  flex-wrap: wrap;
}

@media (max-width: 768px) {
  .vps-card {
    padding: 24px;
    gap: 24px;
    flex-direction: column;
  }
}

@media (max-width: 480px) {
  .vps-card {
    padding: 16px;
    gap: 16px;
  }

  .vps-info h3 {
    font-size: 1.3rem;
  }

  .vps-price {
    font-size: 1.8rem;
  }
}

/* USP Section */
.usp-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
}

.usp-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  margin-top: 60px;
}

.usp-card {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-lg);
  padding: 40px 30px;
  text-align: center;
  backdrop-filter: blur(10px);
  transition: var(--transition);
}

.usp-card:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.15);
}

.usp-icon {
  font-size: 3rem;
  margin-bottom: 20px;
  display: block;
}

.usp-card h3 {
  font-size: 1.4rem;
  margin-bottom: 15px;
  font-weight: 700;
}

.usp-card p {
  opacity: 0.9;
  line-height: 1.6;
}

.vps-info {
  flex: 1;
  min-width: 280px;
}

.vps-info h3 {
  font-size: 1.6rem;
  margin-bottom: 8px;
}

.vps-price {
  font-size: 2rem;
  font-weight: 900;
  color: var(--accent);
  margin-bottom: 16px;
  font-family: 'Outfit', sans-serif;
}

.vps-features {
  flex: 1;
  min-width: 280px;
}

.vps-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  font-size: 0.95rem;
  opacity: 0.9;
}

.vps-features li::before {
  content: '✓';
  color: var(--accent);
  font-weight: 700;
}

/* ===== MIGRATION ===== */
.migration-section {
  background: #fff;
}

.migration-logos {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.migration-logo {
  background: #f5f5f5;
  border: 1px solid var(--border);
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--text-light);
  transition: var(--transition);
}

.migration-logo:hover {
  border-color: var(--accent);
  color: var(--accent);
  transform: translateY(-2px);
}

.migration-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
  margin-bottom: 40px;
}

.migration-step {
  text-align: center;
  padding: 24px 16px;
  position: relative;
}

.step-number {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.1rem;
  margin: 0 auto 16px;
}

.migration-step h4 {
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 6px;
}

.migration-step p {
  font-size: 0.85rem;
  color: var(--text-light);
}

.migration-highlight {
  background: linear-gradient(135deg, rgba(46, 125, 50, 0.08), rgba(46, 125, 50, 0.03));
  border: 2px solid var(--success);
  border-radius: var(--radius);
  padding: 28px;
  text-align: center;
  display: flex;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}

@media (max-width: 768px) {
  .migration-highlight {
    gap: 24px;
    padding: 20px;
  }
}

@media (max-width: 480px) {
  .migration-highlight {
    gap: 16px;
    padding: 16px;
    flex-direction: column;
  }
}

.migration-stat h3 {
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--success);
  font-family: 'Outfit', sans-serif;
}

.migration-stat p {
  font-size: 0.85rem;
  color: var(--text-light);
  font-weight: 500;
}

/* ===== INDIA SECTION ===== */
.india-section {
  background: linear-gradient(170deg, #fff3e0, #fff8f0);
  position: relative;
}

.india-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

@media (max-width: 768px) {
  .india-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

@media (max-width: 480px) {
  .india-grid {
    gap: 20px;
  }
}

.india-content h2 {
  color: var(--primary-dark);
}

.india-points {
  margin-top: 24px;
}

.india-point {
  display: flex;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.india-point-icon {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: #fff;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.india-point h4 {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.india-point p {
  font-size: 0.88rem;
  color: var(--text-light);
}

.india-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.india-stat {
  background: #fff;
  border-radius: var(--radius);
  padding: 28px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: var(--transition);
}

.india-stat:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.india-stat .stat-icon {
  font-size: 2rem;
  margin-bottom: 12px;
}

.india-stat h3 {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 4px;
}

.india-stat p {
  font-size: 0.82rem;
  color: var(--text-light);
}

@media (max-width: 480px) {
  .india-stats {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .india-stat {
    padding: 16px;
  }

  .india-stat h3 {
    font-size: 1.1rem;
  }

  .india-stat p {
    font-size: 0.75rem;
  }
}

/* ===== TRUST ===== */
.trust-section {
  background: var(--bg);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
}

.trust-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 32px 24px;
  text-align: center;
  border: 1px solid var(--border);
  transition: var(--transition);
}

.trust-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.trust-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, rgba(26, 35, 126, 0.08), rgba(147, 51, 234, 0.08));
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin: 0 auto 16px;
}

.trust-card h3 {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.trust-card p {
  font-size: 0.85rem;
  color: var(--text-light);
}

@media (max-width: 480px) {
  .trust-card {
    padding: 20px 16px;
  }

  .trust-icon {
    width: 50px;
    height: 50px;
    font-size: 1.3rem;
  }

  .trust-card h3 {
    font-size: 0.95rem;
  }

  .trust-card p {
    font-size: 0.8rem;
  }
}

/* ===== FAQ ===== */
.faq-section {
  background: #f5f5f5;
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: #fff;
  border-radius: var(--radius);
  margin-bottom: 12px;
  border: 1px solid var(--border);
  overflow: hidden;
  transition: var(--transition);
}

.faq-item:hover {
  border-color: rgba(26, 35, 126, 0.2);
}

.faq-question {
  padding: 20px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text);
  transition: var(--transition);
  gap: 16px;
}

.faq-question:hover {
  color: var(--primary);
}

.faq-toggle {
  width: 28px;
  height: 28px;
  background: rgba(26, 35, 126, 0.06);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
  transition: var(--transition);
  color: var(--primary);
}

.faq-item.active .faq-toggle {
  transform: rotate(45deg);
  background: var(--primary);
  color: #fff;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.faq-answer-inner {
  padding: 0 24px 20px;
  font-size: 0.92rem;
  color: var(--text-light);
  line-height: 1.8;
}

/* ===== CTA FINAL ===== */
.cta-section {
  background: linear-gradient(170deg, var(--primary-dark), var(--primary));
  color: #fff;
  text-align: center;
  position: relative;
  overflow: hidden;
}

@media (max-width: 480px) {
  .cta-section {
    padding: 40px 0;
  }

  .cta-section .section-title {
    font-size: clamp(1.5rem, 3vw, 2rem);
  }

  .cta-section .btn-primary {
    width: 100%;
    padding: 12px 20px;
    font-size: 0.95rem;
  }
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -30%;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(147, 51, 234, 0.12) 0%, transparent 60%);
  border-radius: 50%;
}

.cta-content {
  position: relative;
  z-index: 2;
}

.cta-section .section-title {
  color: #fff;
}

.cta-checks {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}

.cta-check {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  opacity: 0.9;
}

.cta-check::before {
  content: '✅';
}

.cta-whatsapp {
  margin-top: 24px;
  font-size: 0.95rem;
  opacity: 0.8;
}

.cta-whatsapp a {
  color: var(--accent);
  font-weight: 700;
}

/* ===== DOMAIN SEARCH FORM ===== */
form[id="domain-form"] {
  overflow: hidden;
  max-width: 100%;
}

form[id="domain-form"] input {
  word-break: break-word;
}

@media (max-width: 480px) {
  form[id="domain-form"] {
    flex-direction: column;
    gap: 8px;
    padding: 8px;
  }

  form[id="domain-form"] input,
  form[id="domain-form"] button {
    width: 100%;
    padding: 12px 16px !important;
    font-size: 0.9rem !important;
  }
}

/* ===== FOOTER ===== */
.footer {
  background: var(--bg-dark);
  color: rgba(255, 255, 255, 0.7);
  padding: 60px 0 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-brand .nav-logo {
  margin-bottom: 12px;
}

.footer-brand p {
  font-size: 0.88rem;
  line-height: 1.7;
  opacity: 0.8;
  max-width: 300px;
}

.footer h4 {
  color: #fff;
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer ul li {
  margin-bottom: 10px;
}

.footer ul a {
  font-size: 0.88rem;
  opacity: 0.7;
  transition: var(--transition);
}

.footer ul a:hover {
  opacity: 1;
  color: var(--accent);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 24px;
  text-align: center;
  font-size: 0.82rem;
  opacity: 0.6;
}

/* ===== WHATSAPP FLOAT ===== */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 998;
  display: flex;
  align-items: center;
  gap: 10px;
  background: #25d366;
  color: #fff;
  padding: 14px 24px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.95rem;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  transition: var(--transition);
  animation: bounceIn 1s ease 2s both;
}

.whatsapp-float:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 6px 30px rgba(37, 211, 102, 0.5);
}

.whatsapp-float svg {
  width: 24px;
  height: 24px;
  fill: #fff;
}

/* ===== MOBILE STICKY CTA ===== */
.mobile-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  padding: 12px 20px;
  z-index: 997;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
    display: none;
    align-items: center;
    justify-content: center;
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes bounceIn {
  0% {
    opacity: 0;
    transform: scale(0.3);
  }

  50% {
    opacity: 1;
    transform: scale(1.05);
  }

  100% {
    transform: scale(1);
  }
}

.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 968px) {
  .nav-links {
    display: none;
    position: fixed;
    top: 90px;
    left: 0;
    right: 0;
    background: #fff;
    flex-direction: column;
    padding: 24px;
    gap: 16px;
    box-shadow: var(--shadow-lg);
  }

  .nav-links.active {
    display: flex;
  }

  .hamburger {
    display: flex;
  }

  .india-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .vps-card {
    flex-direction: column;
  }
}

@media (max-width: 768px) {
  .footer {
    padding-bottom: 100px;
  }

  .top-bar {
    font-size: 0.75rem;
    padding: 6px 10px;
  }

  .navbar {
    top: 32px;
  }

  section {
    padding: 50px 0;
  }

  .pain-grid {
    grid-template-columns: 1fr;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .pricing-card.popular {
    transform: none;
  }

  .pricing-card.popular:hover {
    transform: translateY(-6px);
  }

  .migration-steps {
    grid-template-columns: 1fr 1fr;
  }

  .migration-highlight {
    gap: 24px;
    flex-direction: column;
    text-align: center;
  }

  .cta-checks {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }

  .whatsapp-float {
    bottom: 80px;
    padding: 12px 18px;
    font-size: 0.85rem;
  }

  .whatsapp-float .wa-text {
    display: none;
  }

  .mobile-cta {
    display: flex;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .section-tag {
    font-size: 0.7rem;
    padding: 5px 12px;
  }

  .section-title {
    font-size: clamp(1.5rem, 3vw, 2rem);
  }

  .section-subtitle {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .footer {
    padding-bottom: 110px;
  }

  .top-bar {
    line-height: 1.3;
    padding: 4px 8px;
    font-size: 0.7rem;
  }

  .navbar {
    top: 22px;
    padding: 0 12px;
  }

  .nav-logo {
    font-size: 1.3rem;
  }

  .nav-links {
    top: 64px;
    padding: 16px;
    gap: 12px;
  }

  .hero {
    padding-top: 100px;
    padding-bottom: 40px;
  }

  .hero h1 {
    font-size: 1.8rem;
    margin-bottom: 16px;
  }

  .hero h1 .highlight {
    margin-top: 0px;
  }

  .hero-badge {
    padding: 6px 16px;
    font-size: 0.75rem;
    margin-bottom: 16px;
  }

  .hero-ctas {
    flex-direction: column;
    gap: 10px;
    margin-bottom: 24px;
  }

  .hero-ctas a {
    width: 100%;
    padding: 12px 20px;
    font-size: 0.95rem;
  }

  .btn-primary,
  .btn-secondary {
    width: 100%;
    justify-content: center;
    text-align: center;
    padding: 12px 20px;
    font-size: 0.95rem;
  }

  .migration-steps {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .india-stats {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  section {
    padding: 40px 0;
  }

  .container {
    padding: 0 15px;
  }

  .hero-content {
    text-align: center;
  }

  .hero-trust {
    justify-content: center;
  }

  .migration-logo {
    padding: 10px 16px;
    font-size: 0.75rem;
  }

  .marquee-content {
    font-size: 0.9rem;
    gap: 20px;
  }

  .faq-item {
    margin-bottom: 10px;
  }

  .faq-question {
    padding: 16px;
    font-size: 0.9rem;
    gap: 12px;
  }

  .faq-toggle {
    width: 24px;
    height: 24px;
    font-size: 1rem;
  }

  .pain-grid {
    gap: 16px;
  }

  .pricing-grid {
    gap: 16px;
  }

  .pricing-yearly {
    font-size: 0.8rem;
    margin-bottom: 16px;
    padding-bottom: 16px;
  }

  .pricing-features li {
    padding: 6px 0;
    font-size: 0.85rem;
  }

  .pricing-btn {
    padding: 12px;
    font-size: 0.95rem;
  }

  .vps-info h3 {
    font-size: 1.2rem;
    margin-bottom: 6px;
  }

  .vps-price {
    font-size: 1.6rem;
    margin-bottom: 12px;
  }

  .mobile-cta {
    padding: 10px 12px;
  }

  .mobile-cta .btn-primary {
    padding: 12px 16px;
    font-size: 0.9rem;
  }

  .whatsapp-float {
    bottom: 80px;
    padding: 10px 16px;
    font-size: 0.75rem;
    right: 12px;
  }

  .footer-grid {
    gap: 24px;
  }

  .footer h4 {
    font-size: 0.8rem;
    margin-bottom: 12px;
  }

  .footer ul a {
    font-size: 0.8rem;
  }
}

/* ========================================
   AI-FEEL ANIMATIONS & 3D EFFECTS
   Trending Modern UI Enhancements
   ======================================== */

/* --- Animated Gradient Mesh Orbs (AI Feel) --- */
.hero::after {
  content: '';
  position: absolute;
  top: 20%;
  right: -8%;
  width: 450px;
  height: 450px;
  background: radial-gradient(circle, rgba(103, 61, 230, 0.12) 0%, transparent 70%);
  border-radius: 50%;
  animation: orbFloat 8s ease-in-out infinite;
  pointer-events: none;
  z-index: 0;
}

@keyframes orbFloat {

  0%,
  100% {
    transform: translateY(0) scale(1);
    opacity: 0.7;
  }

  50% {
    transform: translateY(-40px) scale(1.08);
    opacity: 1;
  }
}

/* --- Subtle Floating Particles (AI Grid background) --- */
.pain-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(2px 2px at 10% 20%, rgba(103, 61, 230, 0.15) 50%, transparent 50%),
    radial-gradient(2px 2px at 30% 60%, rgba(103, 61, 230, 0.1) 50%, transparent 50%),
    radial-gradient(2px 2px at 70% 30%, rgba(147, 51, 234, 0.08) 50%, transparent 50%),
    radial-gradient(2px 2px at 90% 70%, rgba(103, 61, 230, 0.12) 50%, transparent 50%),
    radial-gradient(2px 2px at 50% 90%, rgba(147, 51, 234, 0.06) 50%, transparent 50%);
  animation: particleDrift 20s linear infinite;
  pointer-events: none;
  z-index: 0;
}

.pain-section {
  position: relative;
  overflow: hidden;
}

@keyframes particleDrift {
  0% {
    transform: translateY(0);
  }

  100% {
    transform: translateY(-30px);
  }
}

/* --- 3D Card Tilt Effect on Pain Cards --- */
.pain-card {
  transform: perspective(800px) rotateX(0deg) rotateY(0deg);
  transition: transform 0.5s ease, box-shadow 0.4s ease;
  position: relative;
  z-index: 1;
}

.pain-card:hover {
  transform: perspective(800px) rotateX(2deg) rotateY(-2deg) translateY(-8px) !important;
  box-shadow: 0 20px 50px rgba(18, 14, 40, 0.15), 0 0 0 1px rgba(103, 61, 230, 0.08) !important;
}

/* --- Animated Gradient Border Glow on Cards --- */
.pain-card::after {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(103, 61, 230, 0.2), rgba(147, 51, 234, 0.15), rgba(103, 61, 230, 0.1));
  background-size: 300% 300%;
  animation: borderGlow 6s ease infinite;
  z-index: -1;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.pain-card:hover::after {
  opacity: 1;
}

@keyframes borderGlow {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

/* --- Button Shine Sweep Effect --- */
.btn-primary {
  position: relative;
  overflow: hidden;
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.25), transparent);
  transition: 0.6s;
}

.btn-primary:hover::before {
  left: 100%;
}

/* --- Trust Cards 3D Hover --- */
.trust-card {
  transform: perspective(600px) rotateX(0deg);
  transition: transform 0.5s ease, box-shadow 0.4s ease;
}

.trust-card:hover {
  transform: perspective(600px) rotateX(3deg) translateY(-6px) !important;
  box-shadow: 0 20px 50px rgba(18, 14, 40, 0.12) !important;
}

/* --- India Stat Cards 3D --- */
.india-stat {
  transform: perspective(600px) rotateY(0deg);
  transition: transform 0.5s ease, box-shadow 0.4s ease;
}

.india-stat:hover {
  transform: perspective(600px) rotateY(-3deg) translateY(-6px) !important;
  box-shadow: 0 15px 40px rgba(18, 14, 40, 0.12) !important;
}

/* --- AI Section Animated Background --- */
.ai-section {
  position: relative;
  overflow: hidden;
}

.ai-section::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -20%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(103, 61, 230, 0.06) 0%, transparent 70%);
  border-radius: 50%;
  animation: orbFloat 10s ease-in-out infinite;
  pointer-events: none;
}

.ai-section::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -15%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(147, 51, 234, 0.04) 0%, transparent 70%);
  border-radius: 50%;
  animation: orbFloat 12s ease-in-out infinite reverse;
  pointer-events: none;
}

/* --- Pricing Card Glow Effect --- */
.pricing-card {
  transition: transform 0.5s ease, box-shadow 0.5s ease, border-color 0.4s ease;
}

.pricing-card:hover {
  border-color: rgba(103, 61, 230, 0.2) !important;
}

.pricing-card.popular {
  position: relative;
}

.pricing-card.popular::after {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, rgba(103, 61, 230, 0.3), rgba(147, 51, 234, 0.2), rgba(103, 61, 230, 0.15));
  background-size: 300% 300%;
  animation: borderGlow 5s ease infinite;
  z-index: -1;
  border-radius: inherit;
}

/* --- CTA Section Animated Mesh --- */
.cta-section::after {
  content: '';
  position: absolute;
  bottom: -40%;
  left: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(103, 61, 230, 0.1) 0%, transparent 60%);
  border-radius: 50%;
  animation: orbFloat 9s ease-in-out infinite;
  pointer-events: none;
}

/* --- Migration Step Number Pulse --- */
.step-number {
  animation: stepPulse 3s ease-in-out infinite;
}

@keyframes stepPulse {

  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(103, 61, 230, 0.3);
  }

  50% {
    box-shadow: 0 0 0 10px rgba(103, 61, 230, 0);
  }
}

/* --- FAQ Smooth Glow on Active --- */
.faq-item.active {
  border-color: rgba(103, 61, 230, 0.2);
  box-shadow: 0 4px 20px rgba(103, 61, 230, 0.06);
}

/* --- Comparison Table Row Highlight --- */
.compare-table tbody tr {
  transition: background 0.3s ease;
}

.compare-table tbody tr:hover {
  background: rgba(103, 61, 230, 0.03) !important;
}

/* --- Terminal 3D Perspective --- */
.terminal-window {
  transform: perspective(1000px) rotateY(-2deg) rotateX(1deg);
  transition: transform 0.5s ease, box-shadow 0.5s ease;
}

.terminal-window:hover {
  transform: perspective(1000px) rotateY(0deg) rotateX(0deg);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.35), 0 0 40px rgba(103, 61, 230, 0.12);
}

/* --- Reviews Section AI Grid --- */
.reviews-section {
  position: relative;
  overflow: hidden;
}

.reviews-section::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(103, 61, 230, 0.03) 0%, transparent 60%);
  border-radius: 50%;
  pointer-events: none;
}

/* --- Domain Search Animated Border --- */
.domain-search-section form {
  position: relative;
}

.domain-search-section form::before {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: 52px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.3));
  background-size: 200% 200%;
  animation: borderGlow 4s ease infinite;
  z-index: -1;
}

/* --- GPU Section Animated Glow Orb --- */
.gpu-section>div:first-child {
  animation: orbFloat 10s ease-in-out infinite;
}

/* --- Smooth Page-wide Section Transitions --- */
section {
  position: relative;
  z-index: 1;
}

/* --- Animated Gradient Text for Headings (select) --- */
.hero h1 .highlight {
  background-size: 200% auto;
  animation: shimmerText 4s linear infinite;
}

@keyframes shimmerText {
  0% {
    background-position: 0% center;
  }

  100% {
    background-position: 200% center;
  }
}

/* --- WhatsApp Button Pulse --- */
.whatsapp-float {
  animation: bounceIn 1s ease 2s both, waPulse 3s ease-in-out 4s infinite;
}

@keyframes waPulse {

  0%,
  100% {
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  }

  50% {
    box-shadow: 0 4px 30px rgba(37, 211, 102, 0.6), 0 0 40px rgba(37, 211, 102, 0.2);
  }
}

/* ===== PROFESSIONAL CHOICE SECTION ===== */
.professional-choice {
  background: linear-gradient(135deg, rgba(79, 70, 229, 0.05) 0%, rgba(147, 51, 234, 0.03) 100%);
  border-top: 1px solid rgba(79, 70, 229, 0.1);
  border-bottom: 1px solid rgba(79, 70, 229, 0.1);
}

.trust-logos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 30px;
  margin-bottom: 50px;
}

.trust-logo-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 30px 20px;
  border: 1px solid rgba(79, 70, 229, 0.15);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(10px);
  transition: all var(--transition);
  cursor: pointer;
}

.trust-logo-card:hover {
  transform: translateY(-5px);
  border-color: rgba(79, 70, 229, 0.3);
  background: rgba(255, 255, 255, 0.8);
  box-shadow: 0 10px 30px rgba(79, 70, 229, 0.15);
}

.logo-icon {
  font-size: 3.5rem;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, rgba(79, 70, 229, 0.1), rgba(147, 51, 234, 0.1));
  border-radius: 12px;
}

.logo-label {
  font-size: 1rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 8px;
  text-align: center;
}

.logo-description {
  font-size: 0.85rem;
  color: var(--text-light);
  text-align: center;
  line-height: 1.5;
}

.tech-stack-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-top: 40px;
  padding: 40px 0;
  border-top: 1px solid rgba(79, 70, 229, 0.1);
  border-bottom: 1px solid rgba(79, 70, 229, 0.1);
}

.tech-stack-item {
  display: flex;
  gap: 15px;
  align-items: flex-start;
}

.tech-stack-icon {
  font-size: 1.5rem;
  min-width: 30px;
  margin-top: 2px;
}

.tech-stack-content h4 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 5px;
}

.tech-stack-content p {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.5;
}

.founder-guarantee {
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.08), rgba(34, 197, 94, 0.08));
  border: 2px solid rgba(16, 185, 129, 0.2);
  border-radius: var(--radius-sm);
  padding: 40px;
  text-align: center;
  margin-top: 50px;
}

.founder-guarantee-icon {
  font-size: 3rem;
  margin-bottom: 15px;
}

.founder-guarantee h3 {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 10px;
}

.founder-guarantee p {
  font-size: 1rem;
  color: var(--text-light);
  max-width: 600px;
  margin: 0 auto 20px;
  line-height: 1.6;
}

.founder-guarantee .guarantee-detail {
  display: inline-block;
  padding: 10px 20px;
  background: rgba(16, 185, 129, 0.1);
  border-radius: 50px;
  color: var(--success);
  font-weight: 600;
  font-size: 0.95rem;
  margin: 5px;
}

@media (max-width: 768px) {
  .trust-logos-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  
  .trust-logo-card {
    padding: 20px 15px;
  }
  
  .logo-icon {
    width: 70px;
    height: 70px;
    font-size: 2.5rem;
  }
  
  .tech-stack-list {
    grid-template-columns: 1fr;
  }
  
  .founder-guarantee {
    padding: 30px 20px;
  }
}

/* ==========================================================================
   CUSTOMER TESTIMONIALS & INFINITE SCROLL SLIDER
   ========================================================================== */
.testimonials-section {
  padding: 80px 0;
  background: #090e1a;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  position: relative;
  overflow: hidden;
}
.testimonials-section::before {
  content: '';
  position: absolute;
  top: -100px;
  right: 10%;
  width: 300px;
  height: 300px;
  background: rgba(99, 102, 241, 0.05);
  border-radius: 50%;
  filter: blur(100px);
  pointer-events: none;
}

.reviews-marquee-container {
  display: flex;
  overflow: hidden;
  user-select: none;
  gap: 24px;
  padding: 30px 0 40px;
  position: relative;
  mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
}
.reviews-marquee-track {
  display: flex;
  gap: 24px;
  animation: marquee-scroll 45s linear infinite;
  width: max-content;
}
.reviews-marquee-track:hover {
  animation-play-state: paused;
}
@keyframes marquee-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.review-card-item {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 20px;
  padding: 24px;
  width: 350px;
  backdrop-filter: blur(8px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 16px;
  transition: border-color 0.3s, background 0.3s, transform 0.3s;
}
.review-card-item:hover {
  border-color: rgba(99, 102, 241, 0.35);
  background: rgba(255, 255, 255, 0.04);
  transform: translateY(-4px);
}
.review-rating-stars {
  color: #ffab00;
  font-size: 1.15rem;
  letter-spacing: 2px;
}
.review-text-content {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
  line-height: 1.6;
  font-style: italic;
}
.review-user-info {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 4px;
}
.review-user-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, #4f46e5, #ec4899);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1rem;
}
.review-user-meta h4 {
  margin: 0;
  font-size: 0.95rem;
  color: #fff;
  font-weight: 600;
}
.review-user-meta span {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.4);
}

/* RATING SELECTOR & MODALS */
.stars-selector-container {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin: 20px 0;
}
.star-rating-select-btn {
  background: transparent;
  border: none;
  font-size: 2.5rem;
  color: rgba(255, 255, 255, 0.15);
  cursor: pointer;
  transition: transform 0.2s, color 0.2s;
}
.star-rating-select-btn:hover {
  transform: scale(1.2);
}
.star-rating-select-btn.active {
  color: #ffab00;
  text-shadow: 0 0 10px rgba(255, 171, 0, 0.4);
}
.rating-success-state {
  display: none;
  text-align: center;
  padding: 30px 0;
}
.rating-success-state.active {
  display: block;
}
.rating-form-state.hidden {
  display: none;
}