/* ==========================================================================
   ENTERPRISE PRICING PAGE STYLES - AI LAB TECHNOLOGIES
   Pixel-Perfect Match for Reference Design with Rich Dynamic Animations
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. PRICING HERO SECTION
   -------------------------------------------------------------------------- */
.pricing-hero-wrap {
  position: relative;
  padding: clamp(20px, 0vw, 90px) 0 clamp(20px, 6vw, 30px);
  background: #ffffff;
  background-image: radial-gradient(circle at 85% 35%, rgba(223, 42, 25, 0.08) 0%, rgba(255, 237, 235, 0.45) 40%, transparent 70%);
  overflow: hidden;
}

.pricing-hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 1.15fr;
  gap: clamp(30px, 4vw, 60px);
  align-items: center;
}

/* Left Hero Content */
.pricing-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff0ed;
  color: #df2a19;
  border: 1px solid rgba(223, 42, 25, 0.2);
  padding: 6px 14px;
  border-radius: 9999px;
  font-size: 0.8rem;
  font-weight: 700;
  margin-bottom: 20px;
  letter-spacing: 0.02em;
}

.pricing-hero-badge i {
  font-size: 0.85rem;
}

.pricing-hero-title {
  font-family: var(--font-heading, 'Plus Jakarta Sans', sans-serif);
  font-size: clamp(2.4rem, 4vw, 3.4rem);
  font-weight: 800;
  color: #0f172a;
  line-height: 1.18;
  letter-spacing: -0.02em;
  margin: 0 0 18px 0;
}

.pricing-hero-title .text-brand-red {
  color: #df2a19;
  display: block;
}

.pricing-hero-desc {
  font-size: clamp(0.95rem, 1.3vw, 1.05rem);
  line-height: 1.68;
  color: #64748b;
  margin: 0 0 32px 0;
  max-width: 540px;
}

/* 2 Hero Features in a Row */
.pricing-hero-features {
  display: flex;
  gap: clamp(20px, 3vw, 36px);
  align-items: center;
  flex-wrap: wrap;
}

.hero-feature-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.hero-feature-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #fff0ed;
  color: #df2a19;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  flex-shrink: 0;
  transition: transform 0.25s ease;
}

.hero-feature-item:hover .hero-feature-icon {
  transform: scale(1.1);
  background: #df2a19;
  color: #ffffff;
}

.hero-feature-text h4 {
  font-family: var(--font-heading, 'Plus Jakarta Sans', sans-serif);
  font-size: 0.9rem;
  font-weight: 800;
  color: #0f172a;
  margin: 0 0 2px 0;
  line-height: 1.25;
}

.hero-feature-text p {
  font-size: 0.8rem;
  color: #64748b;
  margin: 0;
  line-height: 1.35;
}

/* --------------------------------------------------------------------------
   Right Hero Visual: 3D Levitation, Orbital Tech Ring & Atmospheric Aura
   -------------------------------------------------------------------------- */
.pricing-hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  perspective: 1200px;
}

/* Atmospheric Glowing Tech Aura */
.pricing-visual-aura {
  position: absolute;
  width: 520px;
  height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle at center, rgba(223, 42, 25, 0.2) 0%, rgba(255, 110, 80, 0.13) 40%, rgba(223, 42, 25, 0.03) 65%, transparent 75%);
  filter: blur(52px);
  z-index: 1;
  pointer-events: none;
  animation: visualAuraBreathe 7s ease-in-out infinite alternate;
}

@keyframes visualAuraBreathe {
  0% {
    transform: scale(0.92) translate(-12px, 8px);
    opacity: 0.65;
  }

  50% {
    transform: scale(1.08) translate(10px, -10px);
    opacity: 0.95;
  }

  100% {
    transform: scale(1.02) translate(-6px, -4px);
    opacity: 0.8;
  }
}

/* Futuristic Tech Particle Orbit Ring */
.pricing-tech-ring {
  position: absolute;
  width: 480px;
  height: 480px;
  border: 1.5px dashed rgba(223, 42, 25, 0.22);
  border-radius: 50%;
  z-index: 1;
  pointer-events: none;
  animation: techRingRotate 32s linear infinite;
}

@keyframes techRingRotate {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

/* Laptop Showcase Frame: Smooth Levitation & Hover 3D Lift */
.pricing-laptop-frame {
  position: relative;
  width: 100%;
  max-width: 600px;
  z-index: 2;
  border-radius: 20px;
  overflow: hidden;
  box-shadow:
    0 24px 60px -12px rgba(15, 23, 42, 0.14),
    0 8px 24px -4px rgba(223, 42, 25, 0.08),
    0 0 0 1px rgba(0, 0, 0, 0.04);
  animation: heroLaptopLevitate 6s ease-in-out infinite;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.5s ease;
  will-change: transform;
}

@keyframes heroLaptopLevitate {

  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }

  50% {
    transform: translateY(-12px) rotate(0.4deg);
  }
}

.pricing-laptop-frame:hover {
  animation-play-state: paused;
  transform: translateY(-16px) scale(1.02);
  box-shadow:
    0 36px 80px -12px rgba(15, 23, 42, 0.22),
    0 16px 36px -6px rgba(223, 42, 25, 0.18),
    0 0 0 1px rgba(223, 42, 25, 0.25);
}

.pricing-laptop-img {
  width: 100%;
  height: auto;
  display: block;
  transform: scale(1.002);
  transition: transform 0.6s ease;
}

.pricing-laptop-frame:hover .pricing-laptop-img {
  transform: scale(1.015);
}

/* Glass Glare Reflection Shimmer */
.laptop-glass-glare {
  position: absolute;
  top: -60%;
  left: -60%;
  width: 220%;
  height: 220%;
  background: linear-gradient(115deg,
      transparent 35%,
      rgba(255, 255, 255, 0.15) 45%,
      rgba(255, 255, 255, 0.35) 50%,
      rgba(255, 255, 255, 0.15) 55%,
      transparent 65%);
  transform: rotate(25deg) translateY(-120%);
  pointer-events: none;
  animation: glareSweep 8s ease-in-out infinite;
  z-index: 3;
}

@keyframes glareSweep {

  0%,
  65% {
    transform: rotate(25deg) translateY(-130%);
    opacity: 0;
  }

  75% {
    opacity: 0.85;
  }

  90%,
  100% {
    transform: rotate(25deg) translateY(130%);
    opacity: 0;
  }
}

/* Floating Glass Badges (Optional / Extensible) */
.pricing-float-badge {
  position: absolute;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.9);
  box-shadow: 0 16px 36px -6px rgba(15, 23, 42, 0.14), 0 0 0 1px rgba(0, 0, 0, 0.04);
  border-radius: 14px;
  padding: 10px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 3;
  transition: transform 0.3s ease;
}

.badge-top-right {
  top: 6%;
  right: -16px;
  animation: floatTopBadge 4.5s ease-in-out infinite;
}

.badge-top-right .badge-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #fff0ed;
  color: #df2a19;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
}

.badge-top-right .badge-content span {
  display: block;
  font-size: 0.72rem;
  color: #64748b;
  font-weight: 600;
  line-height: 1.2;
}

.badge-top-right .badge-content strong {
  display: block;
  font-size: 0.95rem;
  color: #0f172a;
  font-weight: 800;
}

.badge-bottom-left {
  bottom: 6%;
  left: -20px;
  animation: floatBottomBadge 5s ease-in-out infinite;
}

.badge-bottom-left .badge-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #fff0ed;
  color: #df2a19;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
}

.badge-bottom-left .badge-content span {
  display: block;
  font-size: 0.8rem;
  font-weight: 700;
  color: #0f172a;
  line-height: 1.25;
}

@keyframes floatTopBadge {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-9px);
  }
}

@keyframes floatBottomBadge {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(8px);
  }
}

/* --------------------------------------------------------------------------
   2. FOUR-TIER PRICING PLANS SECTION
   -------------------------------------------------------------------------- */
.pricing-plans-section {
  padding: clamp(50px, 7vw, 90px) 0 clamp(40px, 6vw, 70px);
  background: #fafbfd;
}

.pricing-section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto clamp(36px, 5vw, 56px);
}

.pricing-eyebrow {
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #df2a19;
  display: block;
  margin-bottom: 10px;
}

.pricing-section-title {
  font-family: var(--font-heading, 'Plus Jakarta Sans', sans-serif);
  font-size: clamp(1.85rem, 3.2vw, 2.5rem);
  font-weight: 800;
  color: #0f172a;
  margin: 0 0 12px 0;
  letter-spacing: -0.02em;
  line-height: 1.22;
}

.pricing-section-desc {
  font-size: clamp(0.9rem, 1.2vw, 0.98rem);
  line-height: 1.6;
  color: #64748b;
  margin: 0 auto;
}

/* 4-Column Grid */
.pricing-cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(16px, 1.8vw, 24px);
  align-items: stretch;
}

/* Base Pricing Plan Card */
.pricing-plan-card {
  background: #ffffff;
  border: 1.5px solid #eef2f6;
  border-radius: 18px;
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s ease, border-color 0.3s ease;
  box-shadow: 0 4px 20px rgba(15, 23, 42, 0.03);
}

.pricing-plan-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 36px rgba(15, 23, 42, 0.08);
  border-color: #cbd5e1;
}

/* Featured / Most Popular Card */
.pricing-plan-card.popular {
  border: 2px solid #df2a19;
  box-shadow: 0 12px 32px rgba(223, 42, 25, 0.12);
  background: #ffffff;
}

.pricing-plan-card.popular:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 45px rgba(223, 42, 25, 0.18);
}

/* Popular Tag */
.popular-tag {
  position: absolute;
  top: -12px;
  right: 20px;
  background: #df2a19;
  color: #ffffff;
  font-size: 0.68rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 4px 12px;
  border-radius: 9999px;
  box-shadow: 0 4px 10px rgba(223, 42, 25, 0.35);
  animation: pulseBadge 3s infinite ease-in-out;
}

@keyframes pulseBadge {

  0%,
  100% {
    box-shadow: 0 4px 10px rgba(223, 42, 25, 0.35);
  }

  50% {
    box-shadow: 0 4px 18px rgba(223, 42, 25, 0.6);
  }
}

/* Card Header & Icon */
.plan-icon-bubble {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #fff0ed;
  color: #df2a19;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  margin-bottom: 20px;
  transition: transform 0.25s ease, background 0.25s ease;
}

.pricing-plan-card:hover .plan-icon-bubble {
  transform: scale(1.08);
  background: #df2a19;
  color: #ffffff;
}

.card-plan-name {
  font-family: var(--font-heading, 'Plus Jakarta Sans', sans-serif);
  font-size: 1.25rem;
  font-weight: 800;
  color: #0f172a;
  margin: 0 0 8px 0;
  line-height: 1.25;
}

.card-plan-desc {
  font-size: 0.8125rem;
  color: #64748b;
  line-height: 1.5;
  margin: 0 0 20px 0;
  min-height: 38px;
}

/* Price Display */
.card-plan-price {
  margin-bottom: 24px;
  display: flex;
  align-items: baseline;
  gap: 4px;
}

.plan-currency {
  font-size: 1.35rem;
  font-weight: 800;
  color: #0f172a;
}

.plan-amount {
  font-family: var(--font-heading, 'Plus Jakarta Sans', sans-serif);
  font-size: 2.35rem;
  font-weight: 900;
  color: #0f172a;
  line-height: 1;
  letter-spacing: -0.03em;
}

.plan-amount.plan-custom {
  font-size: 1.85rem;
  letter-spacing: -0.01em;
}

.plan-period {
  font-size: 0.825rem;
  color: #94a3b8;
  font-weight: 500;
  margin-left: 2px;
}

/* Feature List */
.card-plan-features {
  list-style: none;
  padding: 0;
  margin: 0 0 28px 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}

.card-plan-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.8125rem;
  color: #334155;
  font-weight: 600;
  line-height: 1.35;
}

.card-plan-features li i {
  color: #df2a19;
  font-size: 0.825rem;
  flex-shrink: 0;
}

/* Buttons */
.card-plan-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 12px 18px;
  border-radius: 10px;
  font-family: var(--font-heading, 'Plus Jakarta Sans', sans-serif);
  font-size: 0.85rem;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  box-sizing: border-box;
  margin-top: auto;
}

.card-plan-btn i {
  font-size: 0.75rem;
  transition: transform 0.2s ease;
}

.card-plan-btn:hover i {
  transform: translateX(3px);
}

.btn-plan-outline {
  border: 1.5px solid #cbd5e1;
  color: #0f172a;
  background: #ffffff;
}

.btn-plan-outline:hover {
  border-color: #df2a19;
  color: #df2a19;
  background: #fff5f5;
  box-shadow: 0 4px 12px rgba(223, 42, 25, 0.12);
}

.btn-plan-solid {
  background: #df2a19;
  color: #ffffff;
  border: 1.5px solid #df2a19;
  box-shadow: 0 6px 16px rgba(223, 42, 25, 0.28);
}

.btn-plan-solid:hover {
  background: #b91c1c;
  border-color: #b91c1c;
  color: #ffffff;
  box-shadow: 0 8px 22px rgba(223, 42, 25, 0.38);
  transform: translateY(-1px);
}

/* --------------------------------------------------------------------------
   3. NEED A CUSTOM SOLUTION? (SPLIT BANNER)
   -------------------------------------------------------------------------- */
.custom-solution-banner-section {
  padding: 0 0 clamp(26px, 7vw, 20px);
  background: #fafbfd;
}

.custom-solution-box {
  background: #ffffff;
  border: 1.5px solid #eef2f6;
  border-radius: 22px;
  padding: clamp(14px, 0vw, 30px) clamp(19px, 1vw, 48px);
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: clamp(30px, 4vw, 56px);
  align-items: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.04);
}

/* Left Content */
.custom-pill-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff0ed;
  color: #df2a19;
  border: 1px solid rgba(223, 42, 25, 0.2);
  padding: 5px 12px;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 700;
  margin-bottom: 16px;
}

.custom-solution-heading {
  font-family: var(--font-heading, 'Plus Jakarta Sans', sans-serif);
  font-size: clamp(1.75rem, 2.6vw, 2.3rem);
  font-weight: 800;
  color: #0f172a;
  line-height: 1.25;
  margin: 0 0 14px 0;
  letter-spacing: -0.01em;
}

.custom-solution-heading .text-brand-red {
  color: #df2a19;
}

.custom-solution-desc {
  font-size: 0.925rem;
  line-height: 1.65;
  color: #64748b;
  margin: 0 0 26px 0;
  max-width: 480px;
}

.btn-custom-talk {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #df2a19;
  color: #ffffff;
  padding: 12px 26px;
  border-radius: 9999px;
  font-family: var(--font-heading, 'Plus Jakarta Sans', sans-serif);
  font-size: 0.88rem;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 6px 18px rgba(223, 42, 25, 0.3);
  transition: all 0.25s ease;
  border: none;
}

.btn-custom-talk:hover {
  background: #b91c1c;
  color: #ffffff;
  box-shadow: 0 10px 24px rgba(223, 42, 25, 0.42);
  transform: translateY(-2px);
}

.btn-custom-talk i {
  font-size: 0.78rem;
  transition: transform 0.2s ease;
}

.btn-custom-talk:hover i {
  transform: translateX(4px);
}

/* Right Feature Rows + Ambient Building Graphic */
.custom-solution-right {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  position: relative;
}

.custom-features-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  z-index: 2;
  flex: 1;
}

.custom-feature-row {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.custom-feature-icon-bubble {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #fff0ed;
  color: #df2a19;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  flex-shrink: 0;
  margin-top: 2px;
  transition: transform 0.2s ease;
}

.custom-feature-row:hover .custom-feature-icon-bubble {
  transform: scale(1.1);
  background: #df2a19;
  color: #ffffff;
}

.custom-feature-info h5 {
  font-family: var(--font-heading, 'Plus Jakarta Sans', sans-serif);
  font-size: 0.95rem;
  font-weight: 800;
  color: #0f172a;
  margin: 0 0 3px 0;
  line-height: 1.25;
}

.custom-feature-info p {
  font-size: 0.8rem;
  color: #64748b;
  margin: 0;
  line-height: 1.4;
}

/* Ambient Building Visual Mask */
.custom-building-visual {
  width: 140px;
  height: 140px;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  flex-shrink: 0;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.08);
}

.custom-building-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.custom-building-visual:hover img {
  transform: scale(1.08);
}

/* --------------------------------------------------------------------------
   4. BOTTOM CTA BANNER (DARK TECH MESH)
   -------------------------------------------------------------------------- */
.pricing-bottom-cta-wrap {
  padding: 0 0 clamp(20px, 3vw, 40px);
  background: #fafbfd;
}

.pricing-dark-cta-card {
  background: linear-gradient(135deg, #090e17 0%, #0f172a 60%, #162033 100%);
  border-radius: 20px;
  padding: clamp(24px, 4.5vw, 23px) clamp(12px, 5vw, 25px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 45px rgba(15, 23, 42, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

/* Background Glowing Tech Orb */
.pricing-dark-cta-card::after {
  content: '';
  position: absolute;
  top: -60%;
  right: -5%;
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(56, 189, 248, 0.18) 0%, rgba(223, 42, 25, 0.12) 45%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.dark-cta-content {
  position: relative;
  z-index: 2;
  max-width: 600px;
}

.dark-cta-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #cbd5e1;
  padding: 4px 12px;
  border-radius: 9999px;
  font-size: 0.72rem;
  font-weight: 700;
  margin-bottom: 14px;
}

.dark-cta-title {
  font-family: var(--font-heading, 'Plus Jakarta Sans', sans-serif);
  font-size: clamp(1.6rem, 2.5vw, 2.15rem);
  font-weight: 800;
  color: #ffffff;
  margin: 0 0 10px 0;
  line-height: 1.25;
  letter-spacing: -0.01em;
}

.dark-cta-title .text-brand-red {
  color: #df2a19;
}

.dark-cta-desc {
  font-size: 0.885rem;
  color: #94a3b8;
  line-height: 1.6;
  margin: 0;
}

.dark-cta-action {
  position: relative;
  z-index: 2;
  flex-shrink: 0;
}

.btn-dark-contact {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #df2a19;
  color: #ffffff;
  padding: 13px 28px;
  border-radius: 9999px;
  font-family: var(--font-heading, 'Plus Jakarta Sans', sans-serif);
  font-size: 0.9rem;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 8px 22px rgba(223, 42, 25, 0.35);
  transition: all 0.25s ease;
  white-space: nowrap;
}

.btn-dark-contact:hover {
  background: #b91c1c;
  color: #ffffff;
  box-shadow: 0 12px 28px rgba(223, 42, 25, 0.45);
  transform: translateY(-2px);
}

.btn-dark-contact i {
  font-size: 0.75rem;
  transition: transform 0.2s ease;
}

.btn-dark-contact:hover i {
  transform: translateX(4px);
}

/* --------------------------------------------------------------------------
   5. COMPREHENSIVE RESPONSIVE @MEDIA SUITE (ALL DEVICE BREAKPOINTS)
   -------------------------------------------------------------------------- */

/* 5.1 Large Laptops & Desktops (max-width: 1200px) */
@media (max-width: 1200px) {
  .pricing-hero-wrap {
    padding: clamp(20px, 3vw, 50px) 0 clamp(20px, 4vw, 30px);
  }

  .pricing-hero-grid {
    gap: 36px;
  }

  .pricing-laptop-frame {
    max-width: 520px;
  }

  .pricing-visual-aura {
    width: 440px;
    height: 360px;
  }

  .pricing-tech-ring {
    width: 400px;
    height: 400px;
  }

  .pricing-cards-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  .custom-solution-box {
    gap: 28px;
    padding: clamp(24px, 3.5vw, 40px);
  }
}

/* 5.2 Tablets & Small Laptops (max-width: 991px) */
@media (max-width: 991px) {
  .pricing-hero-grid {
    grid-template-columns: 1fr;
    gap: 36px;
    text-align: center;
  }

  .pricing-hero-left {
    max-width: 640px;
    margin: 0 auto;
  }

  .pricing-hero-badge {
    margin: 0 auto 16px auto;
  }

  .pricing-hero-desc {
    margin: 0 auto 24px auto;
    max-width: 580px;
  }

  .pricing-hero-features {
    justify-content: center;
    gap: 24px;
  }

  .pricing-hero-visual {
    width: 100%;
    max-width: 560px;
    margin: 0 auto;
  }

  .pricing-laptop-frame {
    max-width: 520px;
    margin: 0 auto;
  }

  .custom-solution-box {
    grid-template-columns: 1fr;
    text-align: left;
    gap: 32px;
  }

  .custom-solution-left {
    max-width: 100%;
  }

  .custom-solution-desc {
    max-width: 100%;
  }

  .custom-solution-right {
    flex-direction: row;
    gap: 24px;
  }

  .custom-building-visual {
    width: 220px;
    height: 180px;
    flex-shrink: 0;
  }

  .pricing-dark-cta-card {
    flex-direction: column;
    text-align: center;
    gap: 24px;
  }

  .dark-cta-content {
    max-width: 100%;
  }

  .dark-cta-badge {
    margin: 0 auto 12px auto;
  }

  .btn-dark-cta {
    align-self: center;
  }
}

/* 5.3 Portrait Tablets & Phablets (max-width: 768px) */
@media (max-width: 768px) {
  .pricing-hero-wrap {
    padding: 24px 0 20px;
  }

  .pricing-hero-title {
    font-size: clamp(1.9rem, 6.5vw, 2.5rem);
    line-height: 1.2;
    margin-bottom: 14px;
  }

  .pricing-hero-desc {
    font-size: 0.94rem;
    line-height: 1.6;
    margin-bottom: 22px;
  }

  .pricing-hero-features {
    gap: 16px;
    flex-direction: row;
    justify-content: center;
  }

  .hero-feature-item {
    gap: 10px;
  }

  .hero-feature-icon {
    width: 34px;
    height: 34px;
    font-size: 0.85rem;
  }

  .hero-feature-text h4 {
    font-size: 0.85rem;
  }

  .hero-feature-text p {
    font-size: 0.76rem;
  }

  .pricing-visual-aura {
    width: 360px;
    height: 300px;
    filter: blur(40px);
  }

  .pricing-tech-ring {
    width: 340px;
    height: 340px;
  }

  .pricing-laptop-frame {
    max-width: 100%;
    border-radius: 16px;
  }

  @keyframes heroLaptopLevitate {
    0%, 100% {
      transform: translateY(0);
    }
    50% {
      transform: translateY(-8px);
    }
  }

  .custom-solution-banner-section {
    padding: 0 0 24px;
  }

  .custom-solution-box {
    padding: 24px 20px;
    border-radius: 16px;
  }

  .custom-solution-heading {
    font-size: clamp(1.4rem, 4.5vw, 1.75rem);
  }

  .custom-solution-right {
    flex-direction: column;
    align-items: stretch;
    gap: 20px;
  }

  .custom-building-visual {
    width: 100%;
    height: 200px;
    border-radius: 14px;
  }

  .pricing-bottom-cta-wrap {
    padding: 0 0 24px;
  }

  .pricing-dark-cta-card {
    padding: 24px 20px;
    border-radius: 16px;
  }

  .dark-cta-heading {
    font-size: clamp(1.3rem, 4.2vw, 1.65rem);
  }

  .pricing-float-badge {
    padding: 8px 12px;
    gap: 8px;
  }

  .badge-top-right .badge-content strong {
    font-size: 0.825rem;
  }
}

/* 5.4 Standard Smartphones (max-width: 576px) */
@media (max-width: 576px) {
  .pricing-hero-wrap {
    padding: 18px 0 16px;
  }

  .pricing-hero-badge {
    font-size: 0.76rem;
    padding: 5px 12px;
    margin-bottom: 12px;
  }

  .pricing-hero-title {
    font-size: 1.85rem;
  }

  .pricing-hero-features {
    flex-direction: column;
    align-items: flex-start;
    max-width: 280px;
    margin: 0 auto;
    gap: 12px;
  }

  .pricing-visual-aura {
    width: 300px;
    height: 250px;
    filter: blur(34px);
  }

  .pricing-tech-ring {
    width: 290px;
    height: 290px;
  }

  .pricing-laptop-frame {
    border-radius: 14px;
    box-shadow: 0 16px 36px -8px rgba(15, 23, 42, 0.12), 0 0 0 1px rgba(0, 0, 0, 0.04);
  }

  .custom-solution-box {
    padding: 20px 16px;
  }

  .custom-pill-tag {
    font-size: 0.74rem;
    padding: 4px 10px;
  }

  .custom-solution-heading {
    font-size: 1.45rem;
    margin-bottom: 10px;
  }

  .custom-solution-desc {
    font-size: 0.86rem;
    line-height: 1.55;
    margin-bottom: 18px;
  }

  .btn-custom-talk {
    width: 100%;
    justify-content: center;
    padding: 11px 20px;
    font-size: 0.86rem;
  }

  .custom-feature-row {
    gap: 12px;
  }

  .custom-feature-icon-bubble {
    width: 36px;
    height: 36px;
    font-size: 0.82rem;
  }

  .custom-feature-info h5 {
    font-size: 0.86rem;
  }

  .custom-feature-info p {
    font-size: 0.76rem;
  }

  .custom-building-visual {
    height: 170px;
  }

  .pricing-dark-cta-card {
    padding: 20px 16px;
  }

  .dark-cta-badge {
    font-size: 0.72rem;
    padding: 4px 10px;
  }

  .dark-cta-heading {
    font-size: 1.35rem;
  }

  .dark-cta-desc {
    font-size: 0.84rem;
    margin-bottom: 16px;
  }

  .btn-dark-cta {
    width: 100%;
    justify-content: center;
    padding: 11px 20px;
    font-size: 0.86rem;
  }

  .pricing-cards-grid {
    grid-template-columns: 1fr;
    max-width: 100%;
    margin: 0 auto;
    gap: 18px;
  }
}

/* 5.5 Compact Mobile Devices (max-width: 420px) */
@media (max-width: 420px) {
  .pricing-hero-wrap {
    padding: 14px 0 12px;
  }

  .pricing-hero-title {
    font-size: 1.65rem;
    letter-spacing: -0.01em;
  }

  .pricing-hero-desc {
    font-size: 0.88rem;
    line-height: 1.5;
  }

  .pricing-visual-aura {
    width: 250px;
    height: 220px;
  }

  .pricing-tech-ring {
    width: 240px;
    height: 240px;
  }

  .pricing-laptop-frame {
    border-radius: 12px;
  }

  .custom-solution-heading {
    font-size: 1.3rem;
  }

  .custom-building-visual {
    height: 150px;
  }

  .dark-cta-heading {
    font-size: 1.22rem;
  }
}

/* 5.6 Smallest Handhelds (max-width: 360px) */
@media (max-width: 360px) {
  .pricing-hero-title {
    font-size: 1.48rem;
  }

  .pricing-hero-badge {
    font-size: 0.7rem;
    padding: 4px 8px;
  }

  .pricing-hero-features {
    max-width: 100%;
  }

  .custom-solution-box,
  .pricing-dark-cta-card {
    padding: 16px 12px;
    border-radius: 12px;
  }

  .custom-building-visual {
    height: 135px;
  }
}

/* --------------------------------------------------------------------------
   6. DARK MODE THEME SUPPORT
   -------------------------------------------------------------------------- */
html[data-theme="dark"] .pricing-hero-wrap,
html.dark .pricing-hero-wrap {
  background: #090e17;
  background-image: radial-gradient(circle at 85% 35%, rgba(223, 42, 25, 0.12) 0%, rgba(15, 23, 42, 0.8) 45%, transparent 70%);
}

html[data-theme="dark"] .pricing-hero-title,
html.dark .pricing-hero-title,
html[data-theme="dark"] .pricing-section-title,
html.dark .pricing-section-title,
html[data-theme="dark"] .card-plan-name,
html.dark .card-plan-name,
html[data-theme="dark"] .plan-currency,
html.dark .plan-currency,
html[data-theme="dark"] .plan-amount,
html.dark .plan-amount,
html[data-theme="dark"] .custom-solution-heading,
html.dark .custom-solution-heading,
html[data-theme="dark"] .custom-feature-info h5,
html.dark .custom-feature-info h5,
html[data-theme="dark"] .hero-feature-text h4,
html.dark .hero-feature-text h4 {
  color: #f8fafc;
}

html[data-theme="dark"] .pricing-hero-desc,
html.dark .pricing-hero-desc,
html[data-theme="dark"] .pricing-section-desc,
html.dark .pricing-section-desc,
html[data-theme="dark"] .card-plan-desc,
html.dark .card-plan-desc,
html[data-theme="dark"] .card-plan-features li,
html.dark .card-plan-features li,
html[data-theme="dark"] .custom-solution-desc,
html.dark .custom-solution-desc,
html[data-theme="dark"] .custom-feature-info p,
html.dark .custom-feature-info p,
html[data-theme="dark"] .hero-feature-text p,
html.dark .hero-feature-text p {
  color: #94a3b8;
}

html[data-theme="dark"] .pricing-plans-section,
html.dark .pricing-plans-section,
html[data-theme="dark"] .custom-solution-banner-section,
html.dark .custom-solution-banner-section,
html[data-theme="dark"] .pricing-bottom-cta-wrap,
html.dark .pricing-bottom-cta-wrap {
  background: #0b1120;
}

html[data-theme="dark"] .pricing-plan-card,
html.dark .pricing-plan-card,
html[data-theme="dark"] .custom-solution-box,
html.dark .custom-solution-box {
  background: #111827;
  border-color: rgba(255, 255, 255, 0.08);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
}

html[data-theme="dark"] .pricing-plan-card.popular,
html.dark .pricing-plan-card.popular {
  border-color: #df2a19;
  background: #111827;
}

html[data-theme="dark"] .btn-plan-outline,
html.dark .btn-plan-outline {
  background: #1e293b;
  color: #f8fafc;
  border-color: rgba(255, 255, 255, 0.15);
}

html[data-theme="dark"] .btn-plan-outline:hover,
html.dark .btn-plan-outline:hover {
  background: #334155;
  border-color: #df2a19;
  color: #ffffff;
}

html[data-theme="dark"] .pricing-float-badge,
html.dark .pricing-float-badge {
  background: rgba(15, 23, 42, 0.88);
  border-color: rgba(255, 255, 255, 0.12);
  color: #f8fafc;
}

html[data-theme="dark"] .badge-top-right .badge-content strong,
html.dark .badge-top-right .badge-content strong,
html[data-theme="dark"] .badge-bottom-left .badge-content span,
html.dark .badge-bottom-left .badge-content span {
  color: #f8fafc;
}