/* ----- PRODUCTION TOKENS (white background, advanced) ----- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html{
  scroll-behavior: smooth;
}

body {
  background: #ffffff;
  font-family: 'Inter', sans-serif;
  color: #0a0e1a;
  line-height: 1.5;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
.logo,
.nav-link {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 40px;
}

/* ----- STICKY NAVIGATION (GLASS, MOBILE READY) ----- */
.nav-wrapper {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(226, 232, 240, 0.7);
}

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

.logo {
  font-size: 1.9rem;
  font-weight: 700;
  color: #0a1a2f;
  text-decoration: none;
  letter-spacing: -0.03em;
}

.logo span {
  color: #2563eb;
  border-bottom: 3px solid #93c5fd;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 44px;
  list-style: none;
}

.nav-link {
  text-decoration: none;
  color: #1e2a44;
  font-weight: 500;
  font-size: 1.05rem;
  padding: 6px 0;
  border-bottom: 2px solid transparent;
  transition: 0.2s;
}

.nav-link:hover {
  border-bottom-color: #2563eb;
  color: #0f2b5c;
}

.nav-cta {
  background: #0f172a;
  color: white !important;
  padding: 10px 24px !important;
  border-radius: 40px;
  border-bottom: none !important;
  font-weight: 600;
}

.nav-cta:hover {
  background: #1e293b;
  color: white;
  border-bottom: none;
}

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 6px;
}

.hamburger span {
  width: 28px;
  height: 2px;
  background: #0f172a;
  border-radius: 4px;
  transition: 0.3s;
}

/* ----- VERTICAL CAROUSEL (3 SLIDES, <img> BACKGROUND) ----- */
.vertical-carousel {
  position: relative;
  width: 100%;
  height: 90vh;
  min-height: 700px;
  background: #0b0f18;
  /* fallback */
  overflow: hidden;
}

.carousel-track {
  display: flex;
  flex-direction: column;
  height: 300%;
  transition: transform 0.7s cubic-bezier(0.23, 1, 0.32, 1);
  will-change: transform;
}

.carousel-slide {
  position: relative;
  height: 33.333%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  overflow: hidden;
}

/* img tag positioned as background replacement - perfect srcset & loading */
.carousel-slide img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 1;
  pointer-events: none;
  /* allows buttons to work */
}

/* overlay for readability - sits above img */
.carousel-slide::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.65) 0%, rgba(0, 0, 0, 0.25) 60%, transparent 100%);
  z-index: 2;
  pointer-events: none;
}

.slide-content {
  position: relative;
  z-index: 20;
  max-width: 650px;
  margin-left: 10%;
  color: white;
  text-shadow: 0 4px 24px rgba(0, 0, 0, 0.35);
  padding: 24px 32px;
  backdrop-filter: blur(2px);
  background: rgba(0, 0, 0, 0.1);
  border-radius: 24px;
}

.slide-content h2 {
  font-size: 4rem;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 20px;
  color: white;
}

.slide-content p {
  font-size: 1.4rem;
  font-weight: 400;
  margin-bottom: 32px;
  opacity: 0.95;
  color: rgba(255, 255, 255, 0.95);
}

.slide-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: white;
  color: #0f172a;
  padding: 14px 36px;
  border-radius: 60px;
  font-weight: 600;
  font-size: 1.1rem;
  text-decoration: none;
  transition: 0.25s;
  border: none;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.slide-btn i {
  color: #2563eb;
}

.slide-btn:hover {
  background: #f0f4ff;
  transform: translateY(-3px);
}

/* vertical navigation */
.carousel-nav {
  position: absolute;
  right: 5%;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 24px;
  z-index: 30;
}

.nav-arrow {
  background: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.5);
  color: white;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  cursor: pointer;
  transition: all 0.2s;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.nav-arrow:hover {
  background: white;
  color: #0f172a;
  border-color: white;
}

.carousel-dots {
  position: absolute;
  left: 3%;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 20px;
  z-index: 30;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: 0.2s;
}

.dot.active {
  background: white;
  transform: scale(1.6);
  border: 1.5px solid #2563eb;
  box-shadow: 0 0 15px white;
}

/* ----- MOBILE RESPONSIVE ----- */
@media screen and (max-width: 1024px) {
  .container {
    padding: 0 28px;
  }

  .slide-content h2 {
    font-size: 3.2rem;
  }
}

@media screen and (max-width: 900px) {
  .hamburger {
    display: flex;
  }

  .nav-menu {
    position: fixed;
    left: -100%;
    top: 80px;
    flex-direction: column;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(16px);
    width: 100%;
    padding: 40px 0;
    border-radius: 0 0 24px 24px;
    box-shadow: 0 20px 30px rgba(0, 0, 0, 0.05);
    gap: 28px;
    transition: 0.4s;
    border-bottom: 1px solid #e2e8f0;
    z-index: 999;
  }

  .nav-menu.active {
    left: 0;
  }

  .nav-link {
    font-size: 1.2rem;
  }
}

@media screen and (max-width: 768px) {
  .vertical-carousel {
    height: 100vh;
    min-height: 700px;
  }

  .slide-content {
    margin-left: 5%;
    max-width: 90%;
  }

  .slide-content h2 {
    font-size: 2.6rem;
  }

  .slide-content p {
    font-size: 1.2rem;
  }

  .nav-arrow {
    width: 52px;
    height: 52px;
    font-size: 1.5rem;
  }

  .carousel-dots {
    left: 2%;
  }
}

@media screen and (max-width: 480px) {
  .slide-content h2 {
    font-size: 2rem;
  }

  .slide-content p {
    font-size: 1rem;
  }

  .slide-btn {
    padding: 12px 28px;
  }

  .nav-arrow {
    width: 48px;
    height: 48px;
    font-size: 1.3rem;
  }
}

/* ensure images load nicely */
.carousel-slide img {
  display: block;
}






/* ----- ADVANCED HERO SECTION (production-level, white bg, premium) ----- */
.advanced-about-hero {
  position: relative;
  padding: 120px 0;
  background: white;
  font-family: 'Inter', sans-serif;
  overflow: hidden;
}

.hero-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 48px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

/* ----- LEFT PANEL: STATISTICS (ADVANCED) ----- */
.hero-stats-panel {
  background: linear-gradient(145deg, #ffffff 0%, #fafcff 100%);
  border-radius: 48px;
  padding: 48px;
  border: 1px solid rgba(37, 99, 235, 0.08);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.02);
}

.stat-globe {
  display: flex;
  align-items: center;
  gap: 24px;
  padding-bottom: 40px;
  margin-bottom: 40px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.03);
}

.stat-circle {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #2563eb10 0%, #1e3a8a10 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #2563eb20;
}

.stat-circle i {
  font-size: 2.4rem;
  color: #2563eb;
}

.stat-content .stat-number {
  font-size: 3.2rem;
  font-weight: 700;
  font-family: 'Space Grotesk', sans-serif;
  color: #0f172a;
  line-height: 1;
  margin-bottom: 8px;
}

.stat-trend {
  color: #059669;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 8px;
}

.stat-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.stat-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.stat-icon {
  width: 48px;
  height: 48px;
  background: white;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #e2e8f0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.01);
}

.stat-icon i {
  font-size: 1.4rem;
  color: #2563eb;
}

.stat-item .stat-number {
  font-size: 1.8rem;
  font-weight: 700;
  font-family: 'Space Grotesk', sans-serif;
  color: #0f172a;
  line-height: 1.2;
}

.stat-unit {
  font-size: 0.8rem;
  color: #64748b;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-top: 2px;
}

/* ----- RIGHT PANEL: ABOUT CONTENT (ADVANCED) ----- */
.hero-about-content {
  padding-top: 20px;
}

.floating-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: #f1f5f9;
  padding: 8px 20px;
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 600;
  color: #1e293b;
  margin-bottom: 32px;
  border: 1px solid #e2e8f0;
  position: relative;
}

.badge-pulse {
  width: 8px;
  height: 8px;
  background: #2563eb;
  border-radius: 50%;
  position: relative;
}

.badge-pulse:after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: #2563eb;
  border-radius: 50%;
  animation: pulse 2s infinite;
}

.hero-about-content h2 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 32px;
  color: #0f172a;
}

.gradient-text {
  background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.lead {
  font-size: 1.2rem;
  color: #334155;
  margin-bottom: 40px;
  line-height: 1.7;
}

.insight-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-bottom: 48px;
}

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

.insight-icon {
  width: 44px;
  height: 44px;
  background: #eef2ff;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.insight-icon i {
  font-size: 1.2rem;
  color: #2563eb;
}

.insight h4 {
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 4px;
}

.insight p {
  color: #475569;
  font-size: 0.95rem;
}

.hero-cta-group {
  display: flex;
  gap: 20px;
  margin-bottom: 48px;
}

.cta-primary {
  background: #0f172a;
  color: white;
  padding: 16px 32px;
  border-radius: 60px;
  text-decoration: none;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  transition: all 0.2s;
  border: 1px solid #0f172a;
}

.cta-primary:hover {
  background: #1e293b;
  transform: translateY(-2px);
  box-shadow: 0 20px 30px -10px rgba(15, 23, 42, 0.15);
}

.cta-secondary {
  background: transparent;
  color: #0f172a;
  padding: 16px 32px;
  border-radius: 60px;
  text-decoration: none;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  border: 1.5px solid #e2e8f0;
  transition: all 0.2s;
}

.cta-secondary:hover {
  background: #f8fafc;
  border-color: #94a3b8;
}

.social-proof {
  display: flex;
  align-items: center;
  gap: 20px;
  padding-top: 32px;
  border-top: 1px solid #f1f5f9;
}

.proof-avatars {
  display: flex;
  align-items: center;
}

.proof-avatars img {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 2px solid white;
  margin-left: -8px;
}

.proof-avatars img:first-child {
  margin-left: 0;
}

.proof-avatars span {
  margin-left: 8px;
  font-weight: 600;
  color: #0f172a;
}

.highlight {
  color: #2563eb;
  font-weight: 600;
}

@keyframes pulse {
  0% {
    opacity: 1;
    transform: scale(1);
  }

  70% {
    opacity: 0;
    transform: scale(2.5);
  }

  100% {
    opacity: 0;
    transform: scale(3);
  }
}

/* responsive */
@media (max-width: 1100px) {
  .hero-container {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .hero-about-content h2 {
    font-size: 2.8rem;
  }
}

@media (max-width: 640px) {
  .hero-container {
    padding: 0 24px;
  }

  .hero-stats-panel {
    padding: 32px;
  }

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

  .hero-about-content h2 {
    font-size: 2.2rem;
  }

  .hero-cta-group {
    flex-direction: column;
  }

  .social-proof {
    flex-direction: column;
    align-items: flex-start;
  }
}



/* ----- ADVANCED PLANS SECTION - WIDE CARDS, PROPER TABLE, MOBILE OVERFLOW ----- */
.plans-advanced {
  position: relative;
  padding: 140px 0;
  background: white;
  font-family: 'Inter', sans-serif;
  overflow: hidden;
  isolation: isolate;
}

.plans-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}

.bg-grid {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image:
    linear-gradient(rgba(37, 99, 235, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(37, 99, 235, 0.02) 1px, transparent 1px);
  background-size: 50px 50px;
}

.bg-glow {
  position: absolute;
  top: 20%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle at center, rgba(37, 99, 235, 0.03) 0%, transparent 70%);
  border-radius: 50%;
}

.plans-container {
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 48px;
  position: relative;
  z-index: 2;
}

/* header */
.plans-header {
  text-align: center;
  margin-bottom: 80px;
}

.header-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(37, 99, 235, 0.04);
  color: #2563eb;
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 2px;
  padding: 8px 24px;
  border-radius: 100px;
  margin-bottom: 28px;
  text-transform: uppercase;
  border: 1px solid rgba(37, 99, 235, 0.1);
  backdrop-filter: blur(4px);
  position: relative;
}

.badge-shine {
  width: 8px;
  height: 8px;
  background: #2563eb;
  border-radius: 50%;
  position: relative;
  overflow: hidden;
}

.badge-shine::after {
  content: '';
  position: absolute;
  top: 0;
  left: -10px;
  width: 200%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  animation: shine 3s infinite;
}

.plans-header h2 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 3.8rem;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 24px;
  color: #0f172a;
}

.gradient-text {
  background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.plans-subhead {
  font-size: 1.25rem;
  color: #475569;
  max-width: 600px;
  margin: 0 auto;
}

/* ---------- WIDER CARDS ---------- */
.plans-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  margin-bottom: 120px;
}

.plan-card {
  position: relative;
  background: white;
  border-radius: 40px;
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(203, 213, 225, 0.3);
  box-shadow: 0 20px 35px -8px rgba(0, 0, 0, 0.02);
  transition: all 0.3s ease;
  width: 100%;
}

.plan-card:hover {
  border-color: rgba(37, 99, 235, 0.4);
  box-shadow: 0 30px 50px -16px rgba(37, 99, 235, 0.12);
  transform: translateY(-4px);
}

.card-glow {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 30% 20%, rgba(37, 99, 235, 0.02) 0%, transparent 70%);
  pointer-events: none;
  border-radius: 40px;
}

.plan-card.popular {
  border: 2px solid #2563eb;
  background: linear-gradient(145deg, white, #fafcff);
  box-shadow: 0 25px 45px -12px rgba(37, 99, 235, 0.18);
}

.popular-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #2563eb, #1e40af);
  color: white;
  padding: 8px 24px;
  border-radius: 40px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 1px;
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
  z-index: 10;
  box-shadow: 0 10px 20px -8px rgba(37, 99, 235, 0.4);
}

.plan-tag {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #64748b;
  margin-bottom: 16px;
}

.plan-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.plan-icon {
  width: 52px;
  height: 52px;
  background: linear-gradient(145deg, #eef2ff, #e6ecfe);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(37, 99, 235, 0.1);
}

.plan-icon i {
  font-size: 1.8rem;
  color: #2563eb;
}

.plan-card h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: #0f172a;
  letter-spacing: -0.03em;
  margin: 0;
}

.plan-price {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 20px;
}

.price-currency {
  font-size: 1.4rem;
  font-weight: 600;
  color: #475569;
}

.price-amount {
  font-size: 3rem;
  font-weight: 700;
  font-family: 'Space Grotesk', sans-serif;
  color: #0f172a;
  line-height: 1;
}

.price-period {
  font-size: 0.95rem;
  color: #64748b;
  margin-left: 4px;
}

.plan-description {
  color: #475569;
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 28px;
  min-height: 70px;
}

.plan-features {
  list-style: none;
  margin-bottom: 32px;
  flex-grow: 1;
}

.plan-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 0;
  color: #1e293b;
  font-size: 0.95rem;
}

.plan-features i {
  color: #2563eb;
  font-size: 1rem;
  width: 18px;
}

.plan-footer {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.plan-cta {
  background: #0f172a;
  color: white;
  padding: 14px 28px;
  border-radius: 40px;
  text-decoration: none;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.2s;
  border: 1px solid #0f172a;
  font-size: 0.95rem;
}

.plan-cta:hover {
  background: #1e293b;
  transform: translateY(-2px);
  box-shadow: 0 12px 25px -8px rgba(15, 23, 42, 0.2);
}

.popular .plan-cta {
  background: #2563eb;
  border-color: #2563eb;
}

.popular .plan-cta:hover {
  background: #1d4ed8;
}

.plan-stats {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #64748b;
  font-size: 0.85rem;
}

.plan-stats i {
  color: #2563eb;
}

/* ---------- PROPER TABLE WITH OVERFLOW ---------- */
.table-container {
  background: white;
  border-radius: 48px;
  padding: 48px 48px;
  border: 1px solid rgba(203, 213, 225, 0.4);
  box-shadow: 0 30px 60px -20px rgba(0, 0, 0, 0.02);
}

.table-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 40px;
}

.table-header-content {
  display: flex;
  align-items: center;
  gap: 20px;
}

.table-icon {
  width: 56px;
  height: 56px;
  background: #eef2ff;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(37, 99, 235, 0.1);
}

.table-icon i {
  font-size: 1.6rem;
  color: #2563eb;
}

.table-header-content h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 4px;
}

.table-header-content p {
  color: #475569;
  font-size: 0.95rem;
}

.table-badge {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #f8fafc;
  padding: 12px 24px;
  border-radius: 40px;
  color: #2563eb;
  font-weight: 600;
  font-size: 0.85rem;
  border: 1px solid #e2e8f0;
}

.table-badge i {
  font-size: 0.9rem;
}

/* table wrapper - horizontal scroll on mobile */
.table-wrapper {
  width: 100%;
  overflow-x: auto;
  border-radius: 24px;
  border: 1px solid #edf2f7;
  margin-bottom: 40px;
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95rem;
  min-width: 1000px;
  /* forces horizontal scroll on mobile */
}

.comparison-table th {
  background: #f8fafc;
  padding: 24px 20px;
  text-align: left;
  border-bottom: 2px solid #e2e8f0;
}

.comparison-table td {
  padding: 20px;
  border-bottom: 1px solid #f1f5f9;
  color: #334155;
}

.comparison-table tr:last-child td {
  border-bottom: none;
}

.plan-header-col {
  min-width: 200px;
  background: #f8fafc;
  position: relative;
}

.popular-col {
  background: #eef2ff;
}

.plan-tag-header {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: #64748b;
  margin-bottom: 8px;
}

.plan-name {
  display: block;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 8px;
}

.plan-price-header {
  display: block;
  font-size: 1.2rem;
  font-weight: 700;
  color: #0f172a;
}

.plan-price-header span {
  font-size: 0.8rem;
  font-weight: 400;
  color: #64748b;
  margin-left: 4px;
}

.popular-badge-header {
  display: inline-block;
  background: #2563eb;
  color: white;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 40px;
  margin-bottom: 12px;
}

.feature-cell {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
  color: #0f172a;
  white-space: nowrap;
}

.feature-cell i {
  color: #2563eb;
  width: 20px;
}

.highlight-cell {
  background: rgba(37, 99, 235, 0.02);
  position: relative;
  font-weight: 500;
}

.highlight-cell::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 3px;
  height: 100%;
  background: #2563eb;
}

.comparison-table .fa-check {
  color: #2563eb;
}

.no {
  color: #94a3b8;
}

.table-footer {
  margin-top: 32px;
}

.included-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  padding: 24px 32px;
  background: #fafcff;
  border-radius: 32px;
  border: 1px solid #edf2f7;
}

.included-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #0f172a;
  font-size: 0.95rem;
}

.included-item i {
  color: #2563eb;
}

@keyframes shine {
  0% {
    left: -100%;
  }

  20% {
    left: 100%;
  }

  100% {
    left: 100%;
  }
}

/* responsive */
@media (max-width: 1400px) {
  .plans-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
  }
}

@media (max-width: 1000px) {
  .plans-container {
    padding: 0 24px;
  }

  .plans-header h2 {
    font-size: 2.8rem;
  }

  .table-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }

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

@media (max-width: 700px) {
  .plans-grid {
    grid-template-columns: 1fr;
  }

  .plans-header h2 {
    font-size: 2.2rem;
  }

  .table-container {
    padding: 32px 20px;
  }

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

  .table-header-content {
    flex-direction: column;
    text-align: center;
  }
}


/* ----- ADVANCED FOOTER - PRODUCTION GRADE, WHITE BACKGROUND ----- */
.footer-advanced {
  position: relative;
  padding: 80px 0 40px;
  background: white;
  font-family: 'Inter', sans-serif;
  border-top: 1px solid rgba(203, 213, 225, 0.3);
  overflow: hidden;
}

/* background subtle effects */
.footer-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}

.footer-grid {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image:
    linear-gradient(rgba(37, 99, 235, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(37, 99, 235, 0.02) 1px, transparent 1px);
  background-size: 40px 40px;
}

.footer-glow {
  position: absolute;
  bottom: -20%;
  left: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle at center, rgba(37, 99, 235, 0.03) 0%, transparent 70%);
  border-radius: 50%;
}

.footer-container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 48px;
  position: relative;
  z-index: 2;
}

/* main footer grid */
.footer-main {
  display: grid;
  grid-template-columns: 1.2fr 2fr;
  gap: 60px;
  margin-bottom: 60px;
}

/* brand column */
.footer-brand {
  display: flex;
  flex-direction: column;
}

.footer-logo {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 2.2rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
}

.logo-server {
  color: #0f172a;
}

.logo-pro {
  color: #2563eb;
  position: relative;
}

.logo-pro::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 0;
  width: 100%;
  height: 4px;
  background: #2563eb20;
  border-radius: 4px;
}

.brand-description {
  color: #475569;
  font-size: 0.98rem;
  line-height: 1.7;
  margin-bottom: 32px;
  max-width: 360px;
}

.brand-stats {
  display: flex;
  gap: 32px;
  margin-bottom: 32px;
}

.brand-stats .stat-item {
  display: flex;
  flex-direction: column;
}

.brand-stats .stat-value {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: #0f172a;
  line-height: 1.2;
}

.brand-stats .stat-label {
  font-size: 0.8rem;
  color: #64748b;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.social-links {
  display: flex;
  gap: 16px;
}

.social-link {
  width: 44px;
  height: 44px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #475569;
  transition: all 0.2s ease;
  text-decoration: none;
}

.social-link:hover {
  background: #2563eb;
  border-color: #2563eb;
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 10px 20px -8px rgba(37, 99, 235, 0.3);
}

.social-link i {
  font-size: 1.2rem;
}

/* links columns */
.footer-links-group {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.footer-col h4 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col li {
  margin-bottom: 16px;
  display: flex;
  align-items: center;
}

.footer-col a {
  color: #475569;
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.2s;
  display: inline-block;
}

.footer-col a:hover {
  color: #2563eb;
  transform: translateX(4px);
}

.badge-new {
  background: #2563eb;
  color: white !important;
  font-size: 0.65rem;
  font-weight: 700;
  padding: 2px 10px;
  border-radius: 40px;
  margin-left: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  animation: pulse 2s infinite;
}

/* newsletter section */
.footer-newsletter {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 48px 0;
  border-top: 1px solid rgba(203, 213, 225, 0.4);
  border-bottom: 1px solid rgba(203, 213, 225, 0.4);
  margin-bottom: 48px;
  gap: 48px;
}

.newsletter-content {
  display: flex;
  align-items: center;
  gap: 24px;
  flex: 1;
}

.newsletter-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(145deg, #eef2ff, #e6ecfe);
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(37, 99, 235, 0.1);
}

.newsletter-icon i {
  font-size: 2rem;
  color: #2563eb;
}

.newsletter-text h4 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.3rem;
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 6px;
}

.newsletter-text p {
  color: #475569;
  font-size: 0.95rem;
}

.newsletter-form {
  flex: 1;
}

.form-group {
  display: flex;
  gap: 12px;
  margin-bottom: 12px;
}

.form-group input {
  flex: 1;
  padding: 14px 20px;
  border: 1.5px solid #e2e8f0;
  border-radius: 60px;
  font-size: 0.95rem;
  transition: all 0.2s;
  background: white;
}

.form-group input:focus {
  outline: none;
  border-color: #2563eb;
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.newsletter-btn {
  background: #0f172a;
  color: white;
  border: none;
  padding: 14px 32px;
  border-radius: 60px;
  font-weight: 600;
  font-size: 0.95rem;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  transition: all 0.2s;
  white-space: nowrap;
}

.newsletter-btn:hover {
  background: #2563eb;
  transform: translateY(-2px);
  box-shadow: 0 12px 25px -8px rgba(37, 99, 235, 0.4);
}

.form-footnote {
  color: #64748b;
  font-size: 0.8rem;
  display: flex;
  align-items: center;
  gap: 6px;
}

.form-footnote i {
  color: #2563eb;
}

.form-footnote a {
  color: #0f172a;
  text-decoration: none;
  font-weight: 500;
}

.form-footnote a:hover {
  color: #2563eb;
  text-decoration: underline;
}

/* trust badges */
.trust-section {
  margin-bottom: 48px;
}

.trust-badges {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #475569;
  font-size: 0.9rem;
  font-weight: 500;
  padding: 8px 16px;
  background: #f8fafc;
  border-radius: 40px;
  border: 1px solid #e2e8f0;
  transition: all 0.2s;
}

.trust-badge:hover {
  background: white;
  border-color: #2563eb;
  color: #0f172a;
}

.trust-badge i {
  color: #2563eb;
  font-size: 1rem;
}

/* bottom footer */
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 32px;
  border-top: 1px solid rgba(203, 213, 225, 0.4);
  color: #64748b;
  font-size: 0.9rem;
}

.copyright {
  display: flex;
  align-items: center;
  gap: 6px;
}

.legal-links {
  display: flex;
  align-items: center;
  gap: 8px;
}

.legal-links a {
  color: #475569;
  text-decoration: none;
  transition: color 0.2s;
}

.legal-links a:hover {
  color: #2563eb;
}

.separator {
  color: #cbd5e1;
}

.region-selector {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: #f8fafc;
  border-radius: 40px;
  border: 1px solid #e2e8f0;
  cursor: pointer;
  transition: all 0.2s;
}

.region-selector:hover {
  background: white;
  border-color: #2563eb;
}

@keyframes pulse {
  0% {
    opacity: 1;
  }

  50% {
    opacity: 0.8;
  }

  100% {
    opacity: 1;
  }
}

/* responsive */
@media (max-width: 1200px) {
  .footer-main {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .footer-brand {
    max-width: 100%;
  }

  .brand-description {
    max-width: 100%;
  }

  .footer-newsletter {
    flex-direction: column;
    align-items: flex-start;
  }

  .trust-badges {
    justify-content: flex-start;
  }
}

@media (max-width: 900px) {
  .footer-container {
    padding: 0 24px;
  }

  .footer-links-group {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }

  .legal-links {
    flex-wrap: wrap;
  }
}

@media (max-width: 600px) {
  .footer-advanced {
    padding: 60px 0 30px;
  }

  .footer-links-group {
    grid-template-columns: 1fr;
  }

  .form-group {
    flex-direction: column;
  }

  .newsletter-btn {
    width: 100%;
    justify-content: center;
  }

  .trust-badges {
    flex-direction: column;
    align-items: stretch;
  }

  .trust-badge {
    justify-content: center;
  }

  .brand-stats {
    gap: 20px;
  }
}