/* ═══════════════════════════════════════════════════════
   STANDARD PACKAGE PAGE — WORLD-CLASS PREMIUM STYLES
   ═══════════════════════════════════════════════════════ */

/* ── Floating keyframes ───────────────────────────── */
@keyframes basicFloat {
  0%, 100% { transform: translate(var(--repel-x, 0px), var(--repel-y, 0px)) translateY(0) rotate(0deg); }
  50% { transform: translate(var(--repel-x, 0px), var(--repel-y, 0px)) translateY(-14px) rotate(1deg); }
}
@keyframes basicFloatReverse {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(10px) rotate(-1deg); }
}
@keyframes basicPulseGlow {
  0%, 100% { opacity: 0.4; transform: scale(1); }
  50% { opacity: 0.7; transform: scale(1.08); }
}
@keyframes basicShimmer {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}
@keyframes basicOrbit {
  0% { transform: rotate(0deg) translateX(40px) rotate(0deg); }
  100% { transform: rotate(360deg) translateX(40px) rotate(-360deg); }
}
@keyframes basicDriftIn {
  0% { opacity: 0; transform: translateY(40px) scale(0.95); }
  100% { opacity: 1; transform: translateY(0) scale(1); }
}
@keyframes basicGlowPulse {
  0%, 100% { box-shadow: 0 0 20px rgba(59,130,246,0.15); }
  50% { box-shadow: 0 0 40px rgba(59,130,246,0.3), 0 0 80px rgba(59,130,246,0.1); }
}
@keyframes basicBorderGlow {
  0%, 100% { border-color: rgba(111,168,255,0.15); }
  50% { border-color: rgba(111,168,255,0.35); }
}
@keyframes basicSpinSlow {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}
@keyframes basicGradientShift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}
@keyframes basicCountPulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.02); }
  100% { transform: scale(1); }
}
@keyframes basicLineGrow {
  0% { height: 0%; }
  100% { height: var(--target-height, 100%); }
}
@keyframes basicFadeSlideUp {
  0% { opacity: 0; transform: translateY(50px); }
  100% { opacity: 1; transform: translateY(0); }
}
@keyframes basicIconBounce {
  0%, 100% { transform: translateY(0) scale(1); }
  40% { transform: translateY(-6px) scale(1.08); }
  60% { transform: translateY(-3px) scale(1.04); }
}

/* ══════════════════════════════════════════════════════
   1. HERO SECTION — Premium Immersive
   ══════════════════════════════════════════════════════ */
.basic-hero {
  position: relative;
  background: linear-gradient(170deg, #0a1628 0%, #0f2140 20%, #152d54 40%, #1a3660 55%, #1e3f6b 70%, #1a3558 85%, #132a4a 100%);
  color: #fff;
  padding: clamp(4rem, 10vw, 7.5rem) 0 clamp(4rem, 8vw, 6rem);
  overflow: hidden;
  isolation: isolate;
}

/* Multi-layer atmospheric background */
.basic-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 15% 85%, rgba(29,92,181,0.22) 0%, transparent 65%),
    radial-gradient(ellipse 60% 50% at 80% 10%, rgba(59,130,246,0.16) 0%, transparent 55%),
    radial-gradient(ellipse 50% 45% at 50% 50%, rgba(59,130,246,0.08) 0%, transparent 50%),
    radial-gradient(circle at 70% 70%, rgba(99,166,255,0.1) 0%, transparent 40%),
    radial-gradient(ellipse 70% 50% at 30% 20%, rgba(100,170,255,0.06) 0%, transparent 60%);
  pointer-events: none;
  z-index: 0;
}

.basic-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: 
    url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='https://i.etsystatic.com/21887480/r/il/8873e3/2995787049/il_1080xN.2995787049_k5xc.jpg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.015'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 0;
  opacity: 0.5;
}

/* Floating orbs */
.basic-hero-orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
  filter: blur(60px);
}

.basic-hero-orb--1 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(29,92,181,0.2) 0%, transparent 70%);
  top: -100px;
  right: -100px;
  animation: basicFloat 12s ease-in-out infinite;
}

.basic-hero-orb--2 {
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(59,130,246,0.15) 0%, transparent 70%);
  bottom: -50px;
  left: -80px;
  animation: basicFloatReverse 15s ease-in-out infinite;
}

.basic-hero-orb--3 {
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(99,166,255,0.12) 0%, transparent 70%);
  top: 40%;
  left: 50%;
  animation: basicFloat 18s ease-in-out infinite 3s;
}

.basic-hero .container {
  position: relative;
  z-index: 1;
}

.basic-hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

/* Badge */
.basic-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  background: linear-gradient(135deg, rgba(29,92,181,0.3), rgba(59,130,246,0.15));
  border: 1px solid rgba(111,168,255,0.3);
  border-radius: 999px;
  padding: 0.5rem 1.2rem;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 0.76rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #93bbf5;
  margin-bottom: 1.5rem;
  width: fit-content;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  animation: basicBorderGlow 4s ease-in-out infinite;
  position: relative;
  overflow: hidden;
}

.basic-hero-badge::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
  animation: basicShimmer 4s ease-in-out infinite;
}

.basic-hero-badge svg {
  width: 15px;
  height: 15px;
  fill: #6da3f5;
}

/* Hero heading */
.basic-hero h1 {
  color: #fff;
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.4rem, 5.8vw, 4.2rem);
  font-weight: 700;
  line-height: 1.08;
  margin-bottom: 1.2rem;
  letter-spacing: -0.02em;
}

.basic-hero h1 em {
  font-style: italic;
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  background: linear-gradient(135deg, #93bbf5 0%, #6da3f5 40%, #4c8bf5 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  padding-right: 0.08em;
}

.basic-hero-subtitle {
  color: rgba(255,255,255,0.6);
  font-family: 'Inter', sans-serif;
  font-size: clamp(0.95rem, 1.3vw, 1.08rem);
  max-width: 460px;
  margin-bottom: 2.5rem;
  line-height: 1.65;
}

/* Price cards */
.basic-hero-prices {
  display: flex;
  gap: 1.1rem;
  margin-bottom: 2.5rem;
}

.basic-price-card {
  background: linear-gradient(145deg, rgba(255,255,255,0.08), rgba(255,255,255,0.02));
  border: 1px solid rgba(111,168,255,0.18);
  border-radius: var(--radius);
  padding: 1.2rem 1.8rem;
  min-width: 140px;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  position: relative;
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  overflow: hidden;
}

.basic-price-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(255,255,255,0.04), transparent 60%);
  pointer-events: none;
}

.basic-price-card::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at center, rgba(59,130,246,0.06) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
}

.basic-price-card:hover {
  border-color: rgba(111,168,255,0.4);
  box-shadow: 0 12px 40px rgba(29,92,181,0.2), 0 0 60px rgba(59,130,246,0.08);
  transform: translateY(-4px);
}

.basic-price-card:hover::after {
  opacity: 1;
}

.basic-price-label {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  margin-bottom: 0.4rem;
}

.basic-price-value {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(2.1rem, 4.2vw, 2.9rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.1;
}

.basic-price-value .price-suffix {
  font-size: 0.42em;
  font-weight: 600;
  color: rgba(255,255,255,0.48);
  vertical-align: baseline;
}

/* CTAs */
.basic-hero-ctas {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.9rem;
  width: 100%;
  max-width: 340px;
}

/* Equal-width, left-aligned hero buttons (matches Homepage hero) */
.basic-hero-ctas .btn {
  width: 100%;
  justify-content: flex-start;
}

.basic-hero-ctas .btn-primary {
  box-shadow: 0 6px 24px rgba(29,92,181,0.4), 0 0 50px rgba(59,130,246,0.12);
  position: relative;
  overflow: hidden;
}

.basic-hero-ctas .btn-primary::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
  transition: left 0.6s ease;
}

.basic-hero-ctas .btn-primary:hover::after {
  left: 100%;
}

.basic-hero-ctas .btn-outline {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.2);
  color: #fff;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.basic-hero-ctas .btn-outline:hover {
  border-color: rgba(255,255,255,0.5);
  background: rgba(255,255,255,0.08);
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.2);
}

/* Mockup area */
.basic-hero-mockup {
  position: relative;
  perspective: 1200px;
}

/* Decorative glow behind mockup */
.basic-hero-mockup::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 80%;
  height: 80%;
  transform: translate(-50%, -50%);
  background: radial-gradient(ellipse, rgba(29,92,181,0.3) 0%, transparent 65%);
  filter: blur(50px);
  pointer-events: none;
  z-index: -1;
}

/* ── Browser Window Carousel ── */
.basic-browser-window {
  --repel-x: 0px;
  --repel-y: 0px;
  width: 100%;
  max-width: 560px;
  border-radius: 18px;
  overflow: hidden;
  background: rgba(13, 13, 30, 0.85);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  box-shadow:
    0 50px 120px rgba(0,0,0,0.55),
    0 0 100px rgba(29,92,181,0.12),
    0 0 0 1px rgba(255,255,255,0.08),
    inset 0 1px 0 rgba(255,255,255,0.06);
  border: 1px solid rgba(111,168,255,0.22);
  animation: basicFloat 8s ease-in-out infinite;
  transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow 0.7s cubic-bezier(0.16, 1, 0.3, 1),
              border-color 0.5s ease;
  transform: translate(var(--repel-x), var(--repel-y));
}

.basic-browser-window:hover {
  border-color: rgba(111,168,255,0.35);
  box-shadow:
    0 55px 130px rgba(0,0,0,0.6),
    0 0 120px rgba(29,92,181,0.18),
    0 0 0 1px rgba(255,255,255,0.1),
    inset 0 1px 0 rgba(255,255,255,0.08);
}

.basic-hero-mockup:hover .basic-browser-window {
  transform: translate(var(--repel-x), var(--repel-y)) translateY(-6px) rotateY(-2deg) rotateX(1deg);
}

/* Browser chrome bar — premium glass morphism */
.basic-browser-chrome {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 12px 16px;
  background: linear-gradient(180deg, rgba(30, 32, 58, 0.95), rgba(22, 24, 48, 0.9));
  backdrop-filter: blur(20px) saturate(160%);
  -webkit-backdrop-filter: blur(20px) saturate(160%);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  position: relative;
}

.basic-browser-chrome::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.02), transparent);
  pointer-events: none;
}

.basic-browser-dot {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.basic-browser-dot--red   { background: #ff5f57; box-shadow: 0 0 6px rgba(255,95,87,0.3); }
.basic-browser-dot--yellow { background: #ffbd2e; box-shadow: 0 0 6px rgba(255,189,46,0.3); }
.basic-browser-dot--green  { background: #28ca42; box-shadow: 0 0 6px rgba(40,202,66,0.3); }

.basic-browser-chrome:hover .basic-browser-dot {
  transform: scale(1.15);
}
.basic-browser-chrome:hover .basic-browser-dot--red { box-shadow: 0 0 10px rgba(255,95,87,0.5); }
.basic-browser-chrome:hover .basic-browser-dot--yellow { box-shadow: 0 0 10px rgba(255,189,46,0.5); }
.basic-browser-chrome:hover .basic-browser-dot--green { box-shadow: 0 0 10px rgba(40,202,66,0.5); }

.basic-browser-url-bar {
  flex: 1;
  height: 20px;
  margin-left: 50px;
  border-radius: 8px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.04);
  max-width: 280px;
  position: relative;
  overflow: hidden;
}

.basic-browser-url-bar::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.03), transparent);
  animation: basicShimmer 6s ease-in-out infinite;
}

/* Viewport / carousel */
.basic-browser-viewport {
  position: relative;
  width: 100%;
  overflow: hidden;
  aspect-ratio: 1086 / 1448;
}

.basic-carousel-track {
  position: relative;
  width: 100%;
  height: 100%;
}

.basic-carousel-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  opacity: 0;
  transform: scale(1.03);
  transition: opacity 1s cubic-bezier(0.4, 0, 0.2, 1),
              transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
  pointer-events: none;
  will-change: opacity, transform;
}

.basic-carousel-slide--active {
  opacity: 1;
  transform: scale(1);
  pointer-events: auto;
}

/* Carousel indicators */
.basic-carousel-indicators {
  display: flex;
  justify-content: center;
  gap: 8px;
  padding: 12px 0;
  background: linear-gradient(180deg, rgba(22, 24, 48, 0.9), rgba(26, 26, 46, 0.95));
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.basic-carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,0.2);
  cursor: pointer;
  padding: 0;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.basic-carousel-dot:hover {
  background: rgba(111,168,255,0.6);
  transform: scale(1.2);
}

.basic-carousel-dot--active {
  background: #6fa8ff;
  width: 24px;
  border-radius: 4px;
  box-shadow: 0 0 10px rgba(111,168,255,0.4);
}

/* Feature pills */
.basic-hero-features {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  position: absolute;
  right: -15px;
  top: 50%;
  transform: translateY(-50%);
}

.basic-hero-feature-pill {
  --repel-x: 0px;
  --repel-y: 0px;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  background: linear-gradient(135deg, rgba(255,255,255,0.97), rgba(248,249,253,0.95));
  border-radius: 16px;
  padding: 0.6rem 1rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--navy);
  box-shadow: 0 10px 30px rgba(0,0,0,0.14), 0 0 0 1px rgba(29,92,181,0.08);
  white-space: nowrap;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
}

.basic-hero-feature-pill::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(29,92,181,0.05), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.basic-hero-feature-pill:hover {
  transform: translate(var(--repel-x), var(--repel-y)) translateX(-6px) translateY(-2px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.18), 0 0 0 1px rgba(29,92,181,0.12), 0 0 24px rgba(29,92,181,0.08);
}

.basic-hero-feature-pill:hover::before {
  opacity: 1;
}

.basic-hero-feature-pill:nth-child(1) { animation: basicFloat 6s ease-in-out infinite 0s; }
.basic-hero-feature-pill:nth-child(2) { animation: basicFloat 6s ease-in-out infinite 1s; }
.basic-hero-feature-pill:nth-child(3) { animation: basicFloat 6s ease-in-out infinite 2s; }

.basic-hero-feature-pill svg {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  color: var(--blue);
  transition: transform 0.3s ease;
}

.basic-hero-feature-pill:hover svg {
  transform: scale(1.15) rotate(-5deg);
}

.basic-hero-feature-pill .pill-label {
  font-weight: 600;
  font-size: 0.73rem;
  display: block;
  color: var(--navy);
}

.basic-hero-feature-pill .pill-desc {
  font-size: 0.66rem;
  color: var(--text-secondary);
  display: block;
}

@media (min-width: 960px) {
  .basic-hero-grid {
    grid-template-columns: 1fr 1.1fr;
    gap: 4rem;
  }

  .basic-hero-features {
    right: -25px;
  }
}


/* Section divider removed — velocity banner replaces it */


/* ══════════════════════════════════════════════════════
   2. WHAT'S INCLUDED — Premium Glass Cards
   ══════════════════════════════════════════════════════ */
.basic-included {
  background:
    radial-gradient(ellipse 80% 60% at 10% 0%, rgba(29,92,181,0.06) 0%, transparent 60%),
    radial-gradient(ellipse 70% 70% at 90% 100%, rgba(29,92,181,0.04) 0%, transparent 55%),
    radial-gradient(ellipse 50% 50% at 50% 30%, rgba(59,130,246,0.03) 0%, transparent 50%),
    linear-gradient(180deg, var(--warm-white) 0%, #f0f2f8 50%, var(--warm-white) 100%);
  padding: clamp(4.5rem, 9vw, 7rem) 0 clamp(4rem, 9vw, 6.5rem);
  position: relative;
}

/* Floating geometric decoration */
.basic-included::before {
  content: '';
  position: absolute;
  top: 60px;
  right: 5%;
  width: 120px;
  height: 120px;
  border: 1px solid rgba(29,92,181,0.06);
  border-radius: 24px;
  transform: rotate(45deg);
  animation: basicFloat 10s ease-in-out infinite;
  pointer-events: none;
}

.basic-included::after {
  content: '';
  position: absolute;
  bottom: 80px;
  left: 3%;
  width: 80px;
  height: 80px;
  border: 1px solid rgba(29,92,181,0.05);
  border-radius: 50%;
  animation: basicFloatReverse 12s ease-in-out infinite;
  pointer-events: none;
}

.basic-included-header {
  text-align: center;
  margin-bottom: clamp(2.5rem, 5vw, 4.2rem);
}

.basic-included-header .label {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 0.8rem;
  display: block;
}

.basic-included-header h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4.8vw, 3.2rem);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.1;
}

.basic-included-header h2 em {
  font-style: italic;
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  background: linear-gradient(135deg, #1D5CB5 0%, #3b82f6 50%, #6da3f5 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  padding-right: 0.08em;
}

.basic-included-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 1.5rem;
}

.basic-included-card {
  background: linear-gradient(145deg, rgba(255,255,255,0.92), rgba(255,255,255,0.7));
  border: 1px solid rgba(29,92,181,0.08);
  border-radius: var(--radius-lg);
  padding: 2.2rem 1.5rem 2rem;
  text-align: center;
  box-shadow: 0 4px 24px rgba(10,31,63,0.05), 0 0 0 1px rgba(255,255,255,0.6) inset;
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
}

/* Gradient overlay on hover */
.basic-included-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(29,92,181,0.04), rgba(59,130,246,0.02), transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

/* Shimmer effect */
.basic-included-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
  transform: skewX(-20deg);
  transition: left 0.8s ease;
  pointer-events: none;
}

.basic-included-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 24px 60px rgba(10,31,63,0.12), 0 0 32px rgba(29,92,181,0.06);
  border-color: rgba(29,92,181,0.2);
}

.basic-included-card:hover::before {
  opacity: 1;
}

.basic-included-card:hover::after {
  left: 120%;
}

.basic-included-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 1.2rem;
  background: linear-gradient(145deg, #dbeafe, #eff6ff);
  border-radius: 18px;
  display: grid;
  place-items: center;
  box-shadow: 0 6px 16px rgba(29,92,181,0.1), inset 0 1px 0 rgba(255,255,255,0.8);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
}

.basic-included-icon::after {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: 21px;
  border: 1px solid rgba(29,92,181,0.08);
  opacity: 0;
  transition: opacity 0.3s ease, inset 0.3s ease;
  pointer-events: none;
}

.basic-included-card:hover .basic-included-icon {
  transform: translateY(-4px) scale(1.08);
  box-shadow: 0 12px 28px rgba(29,92,181,0.15);
  background: linear-gradient(145deg, #c5deff, #dbeafe);
}

.basic-included-card:hover .basic-included-icon::after {
  opacity: 1;
  inset: -5px;
}

.basic-included-icon svg {
  width: 30px;
  height: 30px;
  color: var(--blue);
  transition: transform 0.3s ease, color 0.3s ease;
}

.basic-included-card:hover .basic-included-icon svg {
  transform: scale(1.1);
  color: #1a4f9e;
}

.basic-included-card h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.02rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.6rem;
  transition: color 0.3s ease;
}

.basic-included-card:hover h3 {
  color: var(--blue);
}

.basic-included-card p {
  font-family: 'Inter', sans-serif;
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin: 0;
}


/* ══════════════════════════════════════════════════════
   Parallax Band — Enhanced
   ══════════════════════════════════════════════════════ */
.basic-parallax-band {
  height: clamp(200px, 24vw, 360px);
  background: url('../images/basic/parallax-band.webp') center/cover no-repeat fixed;
  position: relative;
  overflow: hidden;
}

.basic-parallax-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
    rgba(10,31,63,0.65) 0%,
    rgba(10,31,63,0.35) 30%,
    rgba(10,31,63,0.35) 70%,
    rgba(10,31,63,0.65) 100%);
  pointer-events: none;
}

.basic-parallax-band::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 50% 50% at 30% 50%, rgba(29,92,181,0.15) 0%, transparent 70%),
    radial-gradient(ellipse 40% 40% at 70% 50%, rgba(59,130,246,0.1) 0%, transparent 60%);
  pointer-events: none;
}

@media (max-width: 767px) {
  .basic-parallax-band {
    background-attachment: scroll;
  }
}


/* ══════════════════════════════════════════════════════
   3. ONE PAGE JOURNEY — Premium Timeline
   ══════════════════════════════════════════════════════ */
.basic-journey {
  background:
    radial-gradient(ellipse 55% 45% at 10% 15%, rgba(29,92,181,0.18) 0%, transparent 65%),
    radial-gradient(ellipse 45% 55% at 90% 85%, rgba(59,130,246,0.1) 0%, transparent 55%),
    radial-gradient(circle at 50% 50%, rgba(29,92,181,0.04) 0%, transparent 40%),
    linear-gradient(170deg, #071333 0%, #0a1f4a 30%, #0d2755 60%, #0a1f3f 100%);
  color: #eff6ff;
  padding: clamp(4.5rem, 9vw, 7.5rem) 0;
  overflow: hidden;
  isolation: isolate;
  position: relative;
}

/* Floating decorative elements */
.basic-journey::before {
  content: '';
  position: absolute;
  top: 10%;
  right: 5%;
  width: 160px;
  height: 160px;
  border: 1px solid rgba(111,168,255,0.06);
  border-radius: 50%;
  animation: basicSpinSlow 60s linear infinite;
  pointer-events: none;
}

.basic-journey::after {
  content: '';
  position: absolute;
  bottom: 15%;
  left: 3%;
  width: 100px;
  height: 100px;
  border: 1px solid rgba(111,168,255,0.04);
  border-radius: 20px;
  transform: rotate(45deg);
  animation: basicFloat 14s ease-in-out infinite;
  pointer-events: none;
}

/* Hero row: Laptop + Title side by side */
.basic-journey-hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  margin-bottom: 2.5rem;
  text-align: center;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 768px) {
  .basic-journey-hero {
    flex-direction: row;
    align-items: center;
    gap: clamp(1.5rem, 3vw, 2.5rem);
    text-align: left;
  }
}

.basic-journey-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3.5rem;
  align-items: start;
}

.basic-journey-intro h2 {
  color: #eff6ff;
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4.8vw, 3.2rem);
  font-weight: 700;
  line-height: 1.1;
}

.basic-journey-intro h2 em {
  font-style: italic;
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  background: linear-gradient(135deg, #93bbf5 0%, #6da3f5 60%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  padding-right: 0.08em;
}

.basic-journey-intro p {
  color: rgba(239,246,255,0.55);
  max-width: 380px;
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  line-height: 1.65;
  margin-top: 1rem;
}

.basic-journey-steps {
  position: relative;
  padding-left: 44px;
  max-width: 720px;
  margin: 0 auto;
  z-index: 1;
  overflow: visible;     /* allow line to extend into banner area */
}

/* Vertical progress line */
.basic-journey-line {
  position: absolute;
  left: 16px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: rgba(255,255,255,0.06);
  border-radius: 2px;
}

.basic-journey-line-fill {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 0%;
  background: linear-gradient(180deg, #3b82f6, #1d5cb5, #3b82f6);
  background-size: 100% 200%;
  animation: basicGradientShift 3s ease infinite;
  border-radius: 2px;
  transition: height 0.15s linear;
  box-shadow: 0 0 16px rgba(59,130,246,0.45), 0 0 40px rgba(59,130,246,0.15);
}

.basic-journey-step {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 1.2rem;
  align-items: center;
  padding: 1.2rem 0;
  position: relative;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.basic-journey-step.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.basic-journey-step-number {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.basic-journey-num {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 1.6rem;
  color: rgba(255,255,255,0.15);
  min-width: 32px;
  transition: all 0.5s ease;
}

.basic-journey-step.is-visible .basic-journey-num {
  color: #93bbf5;
  text-shadow: 0 0 24px rgba(147,187,245,0.4);
}

.basic-journey-step-icon {
  width: 38px;
  height: 38px;
  background: linear-gradient(145deg, rgba(29,92,181,0.35), rgba(59,130,246,0.15));
  border: 1px solid rgba(111,168,255,0.2);
  border-radius: 12px;
  display: grid;
  place-items: center;
  color: #93bbf5;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: all 0.4s ease;
}

.basic-journey-step:hover .basic-journey-step-icon {
  background: linear-gradient(145deg, rgba(29,92,181,0.5), rgba(59,130,246,0.25));
  border-color: rgba(111,168,255,0.4);
  box-shadow: 0 0 20px rgba(59,130,246,0.2);
  transform: scale(1.1) rotate(-3deg);
}

.basic-journey-step-icon svg {
  width: 19px;
  height: 19px;
}

.basic-journey-step-content h3 {
  color: #eff6ff;
  font-family: 'Montserrat', sans-serif;
  font-size: 1.02rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
  transition: color 0.3s ease;
}

.basic-journey-step:hover .basic-journey-step-content h3 {
  color: #93bbf5;
}

.basic-journey-step-content p {
  font-family: 'Inter', sans-serif;
  font-size: 0.83rem;
  color: rgba(239,246,255,0.5);
  margin: 0;
  line-height: 1.5;
}

.basic-journey-step-preview {
  width: clamp(110px, 16vw, 170px);
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(111,168,255,0.15);
  box-shadow: 0 14px 36px rgba(0,0,0,0.4), 0 0 0 1px rgba(255,255,255,0.03);
  flex-shrink: 0;
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
}

.basic-journey-step-preview::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 70%, rgba(10,31,63,0.4) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
  z-index: 1;
}

.basic-journey-step:hover .basic-journey-step-preview {
  transform: translateY(-4px) scale(1.04);
  box-shadow: 0 18px 44px rgba(0,0,0,0.45), 0 0 28px rgba(29,92,181,0.12);
  border-color: rgba(111,168,255,0.3);
}

.basic-journey-step:hover .basic-journey-step-preview::before {
  opacity: 1;
}

.basic-journey-step.is-visible .basic-journey-step-preview {
  box-shadow: 0 14px 36px rgba(0,0,0,0.4), 0 0 24px rgba(29,92,181,0.1);
}

.basic-journey-step-preview img {
  display: block;
  width: 100%;
  height: auto;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.basic-journey-step:hover .basic-journey-step-preview img {
  transform: scale(1.06);
}

/* Hover swap: show dark variant on hover */
.basic-journey-step-preview[data-hover-swap] {
  position: relative;
}
.basic-journey-step-preview[data-hover-swap] .preview-hover {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 1;
}
.basic-journey-step:hover .basic-journey-step-preview[data-hover-swap] .preview-hover {
  opacity: 1;
}

/* Timeline dot */
.basic-journey-step::before {
  content: '';
  position: absolute;
  left: -36px;
  top: 50%;
  transform: translateY(-50%);
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  border: 2px solid rgba(255,255,255,0.12);
  transition: all 0.5s ease;
  z-index: 1;
}

.basic-journey-step.is-visible::before {
  background: #3b82f6;
  border-color: #6da3f5;
  box-shadow: 0 0 18px rgba(59,130,246,0.5), 0 0 40px rgba(59,130,246,0.2);
}

/* (Old 2-column grid removed — layout is now hero row + full-width steps) */


/* ══════════════════════════════════════════════════════
   4. PERFECT FOR — Premium Cards with Depth
   ══════════════════════════════════════════════════════ */
.basic-perfect {
  background:
    radial-gradient(ellipse 70% 60% at 80% 15%, rgba(29,92,181,0.08) 0%, transparent 60%),
    radial-gradient(ellipse 65% 50% at 10% 85%, rgba(29,92,181,0.06) 0%, transparent 55%),
    radial-gradient(circle at 50% 50%, rgba(59,130,246,0.03) 0%, transparent 40%),
    linear-gradient(180deg, var(--warm-white) 0%, #f0f2f8 45%, var(--warm-white) 100%);
  padding: clamp(4rem, 9vw, 6.5rem) 0;
  position: relative;
  overflow: hidden;
}

/* Floating decor */
.basic-perfect::before {
  content: '';
  position: absolute;
  top: 10%;
  left: 5%;
  width: 140px;
  height: 140px;
  border: 1px solid rgba(29,92,181,0.06);
  border-radius: 50%;
  animation: basicFloat 14s ease-in-out infinite;
  pointer-events: none;
}

.basic-perfect::after {
  content: '';
  position: absolute;
  bottom: 8%;
  right: 4%;
  width: 100px;
  height: 100px;
  border: 1px solid rgba(29,92,181,0.05);
  border-radius: 20px;
  transform: rotate(45deg);
  animation: basicFloatReverse 12s ease-in-out infinite;
  pointer-events: none;
}

.basic-perfect-header {
  text-align: center;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

.basic-perfect-header .label {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 0.8rem;
  display: block;
}

.basic-perfect-header h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4.8vw, 3.2rem);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.1;
}

.basic-perfect-header h2 em {
  font-style: italic;
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  background: linear-gradient(135deg, #1D5CB5 0%, #3b82f6 50%, #6da3f5 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  padding-right: 0.08em;
}

.basic-perfect-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(185px, 1fr));
  gap: 1.3rem;
}

.basic-perfect-card {
  background: linear-gradient(145deg, rgba(255,255,255,0.92), rgba(255,255,255,0.7));
  border: 1px solid rgba(29,92,181,0.08);
  border-radius: var(--radius-lg);
  padding: 2rem 1.4rem 1.8rem;
  text-align: center;
  box-shadow: 0 4px 20px rgba(10,31,63,0.04);
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
}

.basic-perfect-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(29,92,181,0.06), transparent 50%);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.basic-perfect-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--blue), #3b82f6, #6da3f5);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
}

.basic-perfect-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 20px 50px rgba(10,31,63,0.12), 0 0 24px rgba(29,92,181,0.06);
  border-color: rgba(29,92,181,0.18);
}

.basic-perfect-card:hover::before {
  opacity: 1;
}

.basic-perfect-card:hover::after {
  transform: scaleX(1);
}

.basic-perfect-icon {
  width: 58px;
  height: 58px;
  margin: 0 auto 1rem;
  background: linear-gradient(145deg, #dbeafe, #eff6ff);
  border-radius: 16px;
  display: grid;
  place-items: center;
  box-shadow: 0 6px 16px rgba(29,92,181,0.1);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.basic-perfect-card:hover .basic-perfect-icon {
  transform: translateY(-4px) scale(1.1) rotate(-5deg);
  box-shadow: 0 10px 24px rgba(29,92,181,0.15);
  background: linear-gradient(145deg, #c5deff, #dbeafe);
}

.basic-perfect-icon svg {
  width: 26px;
  height: 26px;
  color: var(--blue);
  transition: transform 0.3s ease;
}

.basic-perfect-card:hover .basic-perfect-icon svg {
  transform: scale(1.08);
}

.basic-perfect-card h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.94rem;
  font-weight: 700;
  margin-bottom: 0;
  color: var(--navy);
  transition: color 0.3s ease;
}

.basic-perfect-card:hover h3 {
  color: var(--blue);
}


/* ══════════════════════════════════════════════════════
   5. HOW IT WORKS — Premium Process Cards
   ══════════════════════════════════════════════════════ */
.basic-process {
  background:
    radial-gradient(ellipse 80% 60% at 10% 0%, rgba(29,92,181,0.05) 0%, transparent 60%),
    radial-gradient(ellipse 70% 70% at 90% 100%, rgba(29,92,181,0.04) 0%, transparent 55%),
    linear-gradient(180deg, #f8faff 0%, #f0f3fa 30%, #edf1f9 60%, #f5f7fc 100%);
  color: var(--navy, #0a1b4a);
  padding: clamp(4rem, 9vw, 6.5rem) 0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  isolation: isolate;
  /* NOTE: No position:relative or overflow here — sticky from .pinned-section-behind must not be overridden */
}

/* Floating decoration */
.basic-process::before {
  content: '';
  position: absolute;
  top: 15%;
  right: 8%;
  width: 200px;
  height: 200px;
  border: 1px solid rgba(29,92,181,0.06);
  border-radius: 50%;
  animation: basicSpinSlow 80s linear infinite reverse;
  pointer-events: none;
}

.basic-process-header {
  text-align: center;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

.basic-process-header .label {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--blue, #1D5CB5);
  margin-bottom: 0.8rem;
  display: block;
}

.basic-process-header h2 {
  color: var(--navy, #0a1b4a);
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4.8vw, 3.2rem);
  font-weight: 700;
  line-height: 1.1;
}

.basic-process-header h2 em {
  font-style: italic;
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  background: linear-gradient(135deg, #1D5CB5 0%, #3b82f6 50%, #6da3f5 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  padding-right: 0.08em;
}

.basic-process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 1.5rem;
  position: relative;
}

.basic-process-step {
  background: linear-gradient(145deg, #142e58, #0f2446);
  border: 1px solid rgba(111,168,255,0.14);
  border-radius: var(--radius-lg);
  padding: 2.2rem 1.5rem;
  text-align: center;
  position: relative;
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0,0,0,0.12), inset 0 1px 0 rgba(255,255,255,0.04);
}

/* Gradient overlay on hover */
.basic-process-step::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(59,130,246,0.1), rgba(29,92,181,0.05), transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

/* Shimmer sweep effect (replicated from .basic-included-card) */
.basic-process-step::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.08), transparent);
  transform: skewX(-20deg);
  transition: left 0.8s ease;
  pointer-events: none;
}

.basic-process-step:hover {
  border-color: rgba(59,130,246,0.25);
  background: linear-gradient(145deg, #183562, #132c52);
  transform: translateY(-6px);
  box-shadow: 0 20px 48px rgba(0,0,0,0.2), 0 0 24px rgba(29,92,181,0.1), inset 0 1px 0 rgba(255,255,255,0.06);
}

.basic-process-step:hover::before {
  opacity: 1;
}

/* Shimmer sweep on hover */
.basic-process-step:hover::after {
  left: 120%;
}

.basic-process-step.is-active {
  border-color: rgba(59,130,246,0.2);
  background: linear-gradient(145deg, #16325e, #11284e);
  box-shadow: 0 8px 32px rgba(29,92,181,0.12), inset 0 1px 0 rgba(255,255,255,0.04);
}

.basic-process-step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: linear-gradient(145deg, rgba(29,92,181,0.3), rgba(59,130,246,0.12));
  border: 1px solid rgba(111,168,255,0.2);
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  color: #93bbf5;
  margin-bottom: 1.1rem;
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
}

.basic-process-step.is-active .basic-process-step-num {
  background: linear-gradient(145deg, var(--blue), #3b82f6);
  border-color: rgba(59,130,246,0.5);
  color: #fff;
  box-shadow: 0 6px 20px rgba(29,92,181,0.35), 0 0 40px rgba(59,130,246,0.15);
}

.basic-process-step:hover .basic-process-step-num {
  transform: scale(1.1);
  box-shadow: 0 8px 24px rgba(29,92,181,0.3), 0 0 40px rgba(59,130,246,0.15);
}

.basic-process-step-icon {
  width: 50px;
  height: 50px;
  margin: 0 auto 1rem;
  background: linear-gradient(145deg, rgba(29,92,181,0.22), rgba(59,130,246,0.08));
  border: 1px solid rgba(111,168,255,0.12);
  border-radius: 16px;
  display: grid;
  place-items: center;
  color: #93bbf5;
  transition: all 0.4s ease;
}

.basic-process-step:hover .basic-process-step-icon {
  transform: translateY(-2px) scale(1.06);
  border-color: rgba(111,168,255,0.3);
  box-shadow: 0 0 16px rgba(59,130,246,0.15);
}

.basic-process-step-icon svg {
  width: 24px;
  height: 24px;
  transition: transform 0.3s ease;
}

.basic-process-step:hover .basic-process-step-icon svg {
  transform: scale(1.1) rotate(-3deg);
}

.basic-process-step h3 {
  color: #eff6ff;
  font-family: 'Montserrat', sans-serif;
  font-size: 1.02rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  transition: color 0.3s ease;
}

.basic-process-step:hover h3 {
  color: #bdd4f5;
}

.basic-process-step p {
  color: rgba(239,246,255,0.7);
  font-family: 'Inter', sans-serif;
  font-size: 0.86rem;
  margin: 0;
  line-height: 1.6;
}

/* ── How It Works – hover image overlay ── */
.basic-process-step-hover-img {
  position: absolute;
  inset: 0;
  z-index: 4;
  opacity: 0;
  transition: opacity 0.45s ease;
  pointer-events: none;
  border-radius: inherit;
  overflow: hidden;
}
.basic-process-step-hover-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.basic-process-step:hover .basic-process-step-hover-img {
  opacity: 1;
}

/* Progress indicators */
.basic-process-progress {
  display: none;
}

@media (min-width: 960px) {
  .basic-process-progress {
    display: flex;
    justify-content: center;
    gap: 0;
    margin-top: 1.8rem;
  }

  .basic-process-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(29,92,181,0.12);
    margin: 0 4px;
    transition: all 0.4s ease;
  }

  .basic-process-dot.is-filled {
    background: #3b82f6;
    box-shadow: 0 0 10px rgba(59,130,246,0.5), 0 0 20px rgba(59,130,246,0.2);
  }
}


/* ══════════════════════════════════════════════════════
   6. PRICE BREAKDOWN — Premium Detailed Pricing
   ══════════════════════════════════════════════════════ */
.basic-pricing {
  background:
    radial-gradient(ellipse 65% 55% at 20% 20%, rgba(29,92,181,0.08) 0%, transparent 60%),
    radial-gradient(ellipse 60% 50% at 80% 80%, rgba(29,92,181,0.06) 0%, transparent 55%),
    linear-gradient(180deg, var(--warm-white) 0%, #f0f2f8 40%, var(--warm-white) 100%);
  padding: clamp(4rem, 9vw, 6.5rem) 0;
  position: relative;
  overflow: hidden;
}

.basic-pricing::before {
  content: '';
  position: absolute;
  top: 8%;
  right: 3%;
  width: 130px;
  height: 130px;
  border: 1px solid rgba(29,92,181,0.05);
  border-radius: 50%;
  animation: basicFloat 13s ease-in-out infinite;
  pointer-events: none;
}

.basic-pricing::after {
  content: '';
  position: absolute;
  bottom: 10%;
  left: 4%;
  width: 90px;
  height: 90px;
  border: 1px solid rgba(29,92,181,0.04);
  border-radius: 20px;
  transform: rotate(45deg);
  animation: basicFloatReverse 11s ease-in-out infinite;
  pointer-events: none;
}

.basic-pricing-header {
  text-align: center;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

.basic-pricing-header .label {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 0.8rem;
  display: block;
}

.basic-pricing-header h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4.8vw, 3.2rem);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.1;
}

.basic-pricing-header h2 em {
  font-style: italic;
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  background: linear-gradient(135deg, #1D5CB5 0%, #3b82f6 50%, #6da3f5 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  padding-right: 0.08em;
}

.basic-pricing-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: start;
}

@media (min-width: 860px) {
  .basic-pricing-layout {
    grid-template-columns: 340px 1fr;
    gap: 2.5rem;
  }
}

/* Price highlight card */
.basic-pricing-highlight {
  background: linear-gradient(145deg, rgba(255,255,255,0.95), rgba(255,255,255,0.8));
  border: 1px solid rgba(29,92,181,0.12);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  text-align: center;
  box-shadow: 0 8px 40px rgba(10,31,63,0.08), 0 0 0 1px rgba(255,255,255,0.6) inset;
  position: relative;
  overflow: hidden;
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.basic-pricing-highlight:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 56px rgba(10,31,63,0.14), 0 0 32px rgba(29,92,181,0.06);
  border-color: rgba(29,92,181,0.25);
}

.basic-pricing-highlight::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--blue), #3b82f6, #6da3f5, #3b82f6, var(--blue));
  background-size: 200% 100%;
  animation: basicGradientShift 4s ease infinite;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.basic-pricing-highlight-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  background: linear-gradient(135deg, rgba(29,92,181,0.12), rgba(59,130,246,0.06));
  border: 1px solid rgba(29,92,181,0.15);
  border-radius: 999px;
  padding: 0.4rem 1rem;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 1.8rem;
}

.basic-pricing-highlight-badge svg {
  width: 14px;
  height: 14px;
  fill: #3b82f6;
}

.basic-pricing-amount {
  margin-bottom: 1.5rem;
}

.basic-pricing-amount-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 0.6rem 0;
}

.basic-pricing-label {
  font-family: 'Inter', sans-serif;
  font-size: 0.88rem;
  color: var(--text-secondary);
  font-weight: 500;
}

.basic-pricing-figure {
  font-family: 'Montserrat', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1;
}

.basic-pricing-per {
  font-size: 0.45em;
  font-weight: 600;
  color: var(--text-secondary);
}

.basic-pricing-divider-line {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(29,92,181,0.15), transparent);
  margin: 0.3rem 0;
}

.basic-pricing-note {
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.basic-pricing-cta-btn {
  width: 100%;
  justify-content: center;
  box-shadow: 0 6px 24px rgba(29,92,181,0.3);
}

.basic-pricing-cta-btn:hover {
  box-shadow: 0 10px 36px rgba(29,92,181,0.4);
}

/* Feature list */
.basic-pricing-features {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 600px) {
  .basic-pricing-features {
    grid-template-columns: 1fr 1fr;
    gap: 1.8rem 2.5rem;
  }
}

.basic-pricing-feature-group h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 0.8rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid rgba(29,92,181,0.1);
}

.basic-pricing-feature-group ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.basic-pricing-feature-group li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

.basic-pricing-feature-group li svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  color: #16a34a;
  margin-top: 0.1rem;
}

@media (min-width: 860px) {
  .basic-pricing-highlight {
    position: sticky;
    top: 100px;
  }
}


/* ══════════════════════════════════════════════════════
   7. FINAL CTA — Premium Centred, High-Impact
   ══════════════════════════════════════════════════════ */
.basic-cta {
  position: relative;
  background: linear-gradient(170deg, #020610 0%, #071333 25%, #0a1f4a 50%, #0d2755 75%, #0a1a3a 100%);
  padding: clamp(5rem, 10vw, 8rem) 0;
  overflow: hidden;
  isolation: isolate;
}

/* ── Video background variant ── */
.basic-cta--video {
  background: #000;
}

.basic-cta-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  opacity: 0.55;
  filter: brightness(0.7) saturate(1.2);
  pointer-events: none;
}

.basic-cta-video-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg,
      rgba(2, 6, 16, 0.75) 0%,
      rgba(7, 19, 51, 0.55) 30%,
      rgba(10, 31, 74, 0.5) 50%,
      rgba(7, 19, 51, 0.55) 70%,
      rgba(2, 6, 16, 0.8) 100%),
    radial-gradient(ellipse 70% 70% at 50% 50%, rgba(29,92,181,0.15) 0%, transparent 70%);
  pointer-events: none;
}

.basic-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 70% at 30% 50%, rgba(29,92,181,0.22) 0%, transparent 65%),
    radial-gradient(ellipse 50% 50% at 70% 40%, rgba(59,130,246,0.12) 0%, transparent 55%),
    radial-gradient(circle at 50% 100%, rgba(29,92,181,0.08) 0%, transparent 40%);
  pointer-events: none;
}

.basic-cta::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 10%, rgba(111,168,255,0.3) 50%, transparent 90%);
}

/* Floating orbs */
.basic-cta-orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 2;
  filter: blur(60px);
}

.basic-cta-orb--1 {
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(29,92,181,0.2) 0%, transparent 70%);
  top: -80px;
  left: -60px;
  animation: basicFloat 12s ease-in-out infinite;
}

.basic-cta-orb--2 {
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(59,130,246,0.15) 0%, transparent 70%);
  bottom: -60px;
  right: -60px;
  animation: basicFloatReverse 14s ease-in-out infinite;
}

.basic-cta .container {
  position: relative;
  z-index: 3;
}

.basic-cta-inner {
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
  position: relative;
  padding: clamp(3rem, 5vw, 4.5rem) clamp(2rem, 4vw, 4rem);
  background: linear-gradient(145deg, rgba(255,255,255,0.05), rgba(255,255,255,0.015));
  border: 1px solid rgba(111,168,255,0.15);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  overflow: hidden;
  transition: border-color 0.5s ease, box-shadow 0.5s ease;
}

.basic-cta-inner:hover {
  border-color: rgba(111,168,255,0.3);
  box-shadow: 0 24px 72px rgba(0,0,0,0.25), 0 0 60px rgba(29,92,181,0.12);
}

/* Mouse-follow glow */
.basic-cta-glow {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  z-index: 0;
}

/* Animated shimmer border */
.basic-cta-inner::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(111,168,255,0.5), transparent);
  animation: basicShimmer 5s ease-in-out infinite;
}

.basic-cta-inner::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: -100%;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(111,168,255,0.3), transparent);
  animation: basicShimmer 5s ease-in-out infinite 2.5s;
}

/* CTA badge */
.basic-cta-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, rgba(29,92,181,0.3), rgba(59,130,246,0.15));
  border: 1px solid rgba(111,168,255,0.25);
  border-radius: 999px;
  padding: 0.4rem 1rem;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #93bbf5;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
}

.basic-cta-badge svg {
  width: 16px;
  height: 16px;
  color: #6da3f5;
}

.basic-cta-inner h2 {
  color: #fff;
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.8rem, 4.2vw, 2.8rem);
  font-weight: 700;
  margin-bottom: 1rem;
  line-height: 1.1;
  position: relative;
  z-index: 1;
}

.basic-cta-inner h2 em {
  font-style: italic;
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  background: linear-gradient(135deg, #93bbf5 0%, #6da3f5 50%, #4c8bf5 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  padding-right: 0.08em;
}

.basic-cta-desc {
  color: rgba(255,255,255,0.55);
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  margin: 0 0 0.4rem;
  line-height: 1.7;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 1;
}

.basic-cta-sub {
  font-family: 'Inter', sans-serif;
  font-size: 0.82rem !important;
  color: rgba(255,255,255,0.3) !important;
  margin-top: 0.3rem !important;
  margin-bottom: 2rem !important;
  position: relative;
  z-index: 1;
}

.basic-cta-buttons {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 1rem;
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 340px;
  margin-inline: auto;
}

/* Equal-width, left-aligned CTA buttons (matches Homepage hero) */
.basic-cta-buttons .btn {
  width: 100%;
  justify-content: flex-start;
}

.basic-cta-primary {
  box-shadow: 0 8px 30px rgba(29,92,181,0.45), 0 0 60px rgba(59,130,246,0.15);
  position: relative;
  overflow: hidden;
  animation: basicGlowPulse 4s ease-in-out infinite;
}

.basic-cta-primary::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.18), transparent);
  transition: left 0.6s ease;
}

.basic-cta-primary:hover::after {
  left: 100%;
}

.basic-cta-outline {
  background: rgba(255,255,255,0.04) !important;
  border: 1px solid rgba(255,255,255,0.2) !important;
  color: #fff !important;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.basic-cta-outline:hover {
  border-color: rgba(255,255,255,0.5) !important;
  background: rgba(255,255,255,0.08) !important;
  transform: translateY(-3px);
  box-shadow: 0 14px 36px rgba(0,0,0,0.2);
}


/* ══════════════════════════════════════════════════════
   SCROLL REVEAL — Premium with Blur
   ══════════════════════════════════════════════════════ */
.basic-reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.basic-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}


/* ══════════════════════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════════════════════ */
@media (max-width: 599px) {
  .basic-hero-features {
    position: static;
    transform: none;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1.5rem;
  }

  /* Hero CTAs: equal-width buttons, centered on mobile */
  .basic-hero-ctas {
    margin-inline: auto;
    align-items: center;
  }
  .basic-hero-ctas .btn {
    justify-content: center;
  }

  .basic-hero-feature-pill:nth-child(1),
  .basic-hero-feature-pill:nth-child(2),
  .basic-hero-feature-pill:nth-child(3) {
    animation: none;
  }

  .basic-journey-step {
    grid-template-columns: auto 1fr;
  }

  .basic-journey-step-preview {
    display: none;
  }
}

@media (max-width: 767px) {
  .basic-browser-window {
    max-width: 100%;
    animation: none;
  }

  .basic-hero-orb { display: none; }
  .basic-cta-orb { display: none; }
}


/* ══════════════════════════════════════════════════════
   REDUCED MOTION
   ══════════════════════════════════════════════════════ */
@media (prefers-reduced-motion: reduce) {
  .basic-reveal {
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
  }

  .basic-journey-step {
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
  }

  .basic-journey-line-fill {
    height: 100% !important;
  }

  .basic-browser-window,
  .basic-hero-feature-pill,
  .basic-hero-orb,
  .basic-hero-badge {
    animation: none !important;
  }

  .basic-carousel-slide {
    transition: none !important;
  }

  .basic-included::before,
  .basic-included::after,
  .basic-journey::before,
  .basic-journey::after,
  .basic-process::before,
  .basic-perfect::before,
  .basic-perfect::after,
  .basic-pricing::before,
  .basic-pricing::after,
  .basic-pricing-highlight::before,
  .basic-cta-orb,
  .basic-cta-inner::before,
  .basic-cta-inner::after,
  .basic-cta-primary {
    animation: none !important;
  }
}


/* ══════════════════════════════════════════════════════
   JOURNEY CTA — Full-width premium banner with photos
   ══════════════════════════════════════════════════════ */
.basic-journey-banner {
  margin-top: clamp(3rem, 6vw, 5rem);
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  background: linear-gradient(145deg, #0b1a38, #071430);
  border: 1px solid rgba(111,168,255,0.12);
  border-radius: 28px;
  padding: clamp(2.5rem, 5vw, 4rem);
  position: relative;
  overflow: hidden;
  text-align: center;
  z-index: 2; /* sits above the journey line so pulse goes "behind" it */
}

/* Ambient glows */
.basic-journey-banner-glow {
  position: absolute;
  top: -25%;
  left: -8%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(59,130,246,0.1) 0%, transparent 70%);
  pointer-events: none;
}

.basic-journey-banner-glow--right {
  left: auto;
  right: -8%;
  top: auto;
  bottom: -25%;
  background: radial-gradient(circle, rgba(29,92,181,0.08) 0%, transparent 70%);
}

/* Photo gallery — two liquid glass frames side by side */
.basic-journey-banner-gallery {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: clamp(1rem, 2.5vw, 1.8rem);
  margin-bottom: clamp(2rem, 4vw, 3rem);
  position: relative;
  z-index: 1;
}

/* Premium glass photo frame */
.basic-journey-photo-frame {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  border: 1.5px solid rgba(111,168,255,0.25);
  background: linear-gradient(145deg, rgba(15,32,68,0.55), rgba(8,20,48,0.35));
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 6px;
  box-shadow:
    0 10px 40px rgba(0,0,0,0.3),
    0 0 40px rgba(29,92,181,0.08),
    inset 0 1px 0 rgba(255,255,255,0.1);
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.basic-journey-photo-frame:hover {
  transform: translateY(-4px);
  border-color: rgba(111,168,255,0.45);
  box-shadow:
    0 16px 50px rgba(0,0,0,0.35),
    0 0 60px rgba(29,92,181,0.15),
    inset 0 1px 0 rgba(255,255,255,0.15);
}

/* Top edge glow line */
.basic-journey-photo-frame::before {
  content: '';
  position: absolute;
  top: 0;
  left: 8%;
  right: 8%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(147,187,245,0.5), transparent);
  z-index: 2;
  pointer-events: none;
}

/* Subtle inner glow overlay */
.basic-journey-photo-frame::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(ellipse at 25% 10%, rgba(59,130,246,0.08), transparent 55%);
  pointer-events: none;
  z-index: 2;
}

.basic-journey-photo-frame img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 13px;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.basic-journey-photo-frame:hover img {
  transform: scale(1.03);
}

/* Portrait frame */
.basic-journey-photo-frame--portrait {
  aspect-ratio: 4/3;
}

/* Landscape frame */
.basic-journey-photo-frame--landscape {
  aspect-ratio: 16/9;
}

/* Copy + buttons — centered below photos */
.basic-journey-banner-copy {
  position: relative;
  z-index: 1;
}

.basic-journey-banner-label {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #93bbf5;
  display: block;
  margin-bottom: 0.8rem;
}

.basic-journey-banner-copy h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 0.8rem;
}

.basic-journey-banner-copy h3 em {
  font-style: italic;
  font-weight: 600;
  background: linear-gradient(135deg, #6da3f5, #93bbf5);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.basic-journey-banner-copy p {
  font-family: 'Inter', sans-serif;
  font-size: 0.92rem;
  color: rgba(239,246,255,0.55);
  line-height: 1.65;
  margin-bottom: 1.5rem;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

.basic-journey-banner-buttons {
  display: flex;
  gap: 0.8rem;
  justify-content: center;
  flex-wrap: wrap;
}

.basic-journey-banner-buttons .btn {
  font-size: 0.9rem;
}

.basic-journey-banner-buttons .btn-outline {
  border-color: rgba(147,187,245,0.25) !important;
  color: rgba(239,246,255,0.7) !important;
  background: transparent !important;
}

.basic-journey-banner-buttons .btn-outline:hover {
  border-color: rgba(59,130,246,0.5) !important;
  color: #fff !important;
}

@media (max-width: 768px) {
  .basic-journey-banner-gallery {
    grid-template-columns: 1fr;
  }
  .basic-journey-photo-frame--landscape {
    aspect-ratio: auto;
  }
}


/* ══════════════════════════════════════════════════════
   PRICING V2 — Ultra-Premium Liquid Glass Pricing
   ══════════════════════════════════════════════════════ */
.basic-pricing-v2 {
  background:
    radial-gradient(ellipse 70% 50% at 15% 5%, rgba(29,92,181,0.1) 0%, transparent 60%),
    radial-gradient(ellipse 50% 40% at 90% 85%, rgba(59,130,246,0.07) 0%, transparent 50%),
    radial-gradient(ellipse 40% 30% at 50% 50%, rgba(147,187,245,0.04) 0%, transparent 50%),
    url('../images/basic/pricing-bg.webp') center/cover no-repeat,
    linear-gradient(180deg, #f3f6fc 0%, #eaeff8 35%, #f0f3fa 65%, #f5f7fc 100%);
  padding: clamp(5rem, 10vw, 8rem) 0;
  position: relative;
  overflow: hidden;
  color: var(--navy, #0a1b4a);
}

/* Floating decorative orbs */
.basic-pricing-v2::before {
  content: '';
  position: absolute;
  top: -5%;
  right: -5%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(29,92,181,0.06) 0%, transparent 70%);
  border-radius: 50%;
  animation: basicFloat 20s ease-in-out infinite;
  pointer-events: none;
}

.basic-pricing-v2::after {
  content: '';
  position: absolute;
  bottom: -8%;
  left: -3%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(59,130,246,0.05) 0%, transparent 70%);
  border-radius: 50%;
  animation: basicFloatReverse 18s ease-in-out infinite;
  pointer-events: none;
}

/* ── Hero grid: copy left, card right ── */
.bpv2-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
  margin-bottom: clamp(3rem, 6vw, 5rem);
}

.bpv2-hero-copy {
  max-width: 520px;
}

/* Badge */
.bpv2-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--blue, #1D5CB5);
  background: rgba(29,92,181,0.08);
  border: 1px solid rgba(29,92,181,0.12);
  border-radius: 100px;
  padding: 0.45rem 1.1rem;
  margin-bottom: 1.5rem;
}

.bpv2-badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--blue, #1D5CB5);
  box-shadow: 0 0 8px rgba(29,92,181,0.5);
  animation: bpv2Pulse 2s ease-in-out infinite;
}

@keyframes bpv2Pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(0.8); }
}

.bpv2-hero-copy h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  font-weight: 700;
  line-height: 1.1;
  color: var(--navy, #0a1b4a);
  margin-bottom: 1.2rem;
}

.bpv2-hero-copy h2 em {
  font-style: italic;
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  background: linear-gradient(135deg, #1D5CB5 0%, #3b82f6 50%, #6da3f5 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.bpv2-subtitle {
  font-family: 'Inter', sans-serif;
  font-size: clamp(0.95rem, 1.1vw, 1.1rem);
  color: rgba(10,27,74,0.6);
  line-height: 1.7;
  max-width: 420px;
}

/* ── Liquid Glass pricing card ── */
.bpv2-glass-card {
  position: relative;
  background:
    linear-gradient(145deg, rgba(12,29,62,0.95), rgba(8,22,50,0.92)),
    linear-gradient(135deg, rgba(59,130,246,0.08), transparent 50%);
  border: 1px solid rgba(111,168,255,0.2);
  border-radius: 24px;
  padding: clamp(2.5rem, 4.5vw, 3.5rem);
  overflow: hidden;
  box-shadow:
    0 40px 100px rgba(0,0,0,0.35),
    0 0 80px rgba(29,92,181,0.12),
    0 0 0 1px rgba(255,255,255,0.04) inset,
    0 1px 0 rgba(255,255,255,0.06) inset;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.5s ease;
}

.bpv2-glass-card:hover {
  transform: translateY(-4px);
  box-shadow:
    0 48px 120px rgba(0,0,0,0.4),
    0 0 100px rgba(29,92,181,0.15),
    0 0 0 1px rgba(255,255,255,0.06) inset,
    0 1px 0 rgba(255,255,255,0.08) inset;
}

/* Top edge highlight */
.bpv2-glass-glow {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 10%, rgba(147,187,245,0.4) 30%, rgba(59,130,246,0.6) 50%, rgba(147,187,245,0.4) 70%, transparent 90%);
  pointer-events: none;
}

/* Corner glow orb */
.bpv2-glass-card::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -25%;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(59,130,246,0.12) 0%, rgba(29,92,181,0.04) 40%, transparent 70%);
  pointer-events: none;
  animation: bpv2CardGlow 8s ease-in-out infinite alternate;
}

/* Bottom-left subtle glow */
.bpv2-glass-card::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -20%;
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, rgba(147,187,245,0.06) 0%, transparent 70%);
  pointer-events: none;
}

@keyframes bpv2CardGlow {
  0% { opacity: 0.7; transform: translate(0, 0); }
  100% { opacity: 1; transform: translate(-10px, 10px); }
}

/* Price columns */
.bpv2-prices {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(1rem, 3vw, 2rem);
  margin-bottom: 1.5rem;
}

.bpv2-price-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.3rem;
}

.bpv2-price-icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: linear-gradient(145deg, rgba(29,92,181,0.25), rgba(59,130,246,0.1));
  border: 1px solid rgba(111,168,255,0.15);
  display: grid;
  place-items: center;
  color: #93bbf5;
  margin-bottom: 0.3rem;
}

.bpv2-price-icon svg {
  width: 20px;
  height: 20px;
}

.bpv2-price-label {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(239,246,255,0.55);
}

.bpv2-price-amount {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 700;
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  color: #fff;
  line-height: 1;
  text-shadow: 0 0 30px rgba(147,187,245,0.2);
}

.bpv2-per {
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  font-size: 0.9rem;
  color: rgba(239,246,255,0.55);
  vertical-align: baseline;
}

.bpv2-price-plus {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  font-weight: 300;
  color: rgba(147,187,245,0.4);
  margin: 0 0.2rem;
  align-self: center;
}

/* Note line */
.bpv2-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.82rem;
  color: rgba(239,246,255,0.5);
  margin-bottom: 1.8rem;
}

.bpv2-note svg {
  color: #3b82f6;
  flex-shrink: 0;
}

/* Buttons */
.bpv2-buttons {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.bpv2-btn-primary {
  width: 100%;
  justify-content: flex-start;
  gap: 0.5rem;
  font-size: 0.92rem;
}

.bpv2-btn-secondary {
  width: 100%;
  justify-content: flex-start;
  gap: 0.4rem;
  font-size: 0.85rem;
  border-color: rgba(147,187,245,0.25) !important;
  color: rgba(239,246,255,0.7) !important;
  background: transparent !important;
}

.bpv2-btn-secondary:hover {
  border-color: rgba(59,130,246,0.5) !important;
  color: #fff !important;
  background: rgba(59,130,246,0.1) !important;
}


/* ── Feature cards grid ── */
.bpv2-features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.2rem;
}

.bpv2-feature-card {
  background: linear-gradient(145deg, rgba(255,255,255,0.95), rgba(255,255,255,0.8));
  border: 1px solid rgba(29,92,181,0.08);
  border-radius: 16px;
  padding: 1.8rem 1.4rem;
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(10,31,63,0.04), 0 0 0 1px rgba(255,255,255,0.5) inset;
}

/* Shimmer on feature cards */
.bpv2-feature-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(29,92,181,0.06), transparent);
  transform: skewX(-20deg);
  transition: left 0.8s ease;
  pointer-events: none;
}

.bpv2-feature-card:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 24px 60px rgba(10,31,63,0.1), 0 0 32px rgba(29,92,181,0.06);
  border-color: rgba(29,92,181,0.18);
}

.bpv2-feature-card:hover::after {
  left: 120%;
}

.bpv2-feature-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: linear-gradient(145deg, rgba(29,92,181,0.1), rgba(59,130,246,0.05));
  border: 1px solid rgba(29,92,181,0.08);
  display: grid;
  place-items: center;
  color: var(--blue, #1D5CB5);
  margin-bottom: 1rem;
  transition: all 0.4s ease;
}

.bpv2-feature-card:hover .bpv2-feature-icon {
  background: linear-gradient(145deg, rgba(29,92,181,0.15), rgba(59,130,246,0.08));
  transform: scale(1.06);
  box-shadow: 0 4px 16px rgba(29,92,181,0.1);
}

.bpv2-feature-icon svg {
  width: 22px;
  height: 22px;
}

.bpv2-feature-card h3 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--navy, #0a1b4a);
  margin-bottom: 0.8rem;
  line-height: 1.35;
}

.bpv2-feature-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.bpv2-feature-card li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.82rem;
  color: rgba(10,27,74,0.6);
  line-height: 1.5;
}

.bpv2-feature-card li svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  color: #3b82f6;
  margin-top: 0.1em;
}


/* ── Responsive ── */
@media (max-width: 960px) {
  .bpv2-hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .bpv2-hero-copy {
    max-width: none;
  }

  .bpv2-subtitle {
    max-width: none;
    margin-left: auto;
    margin-right: auto;
  }

  .bpv2-badge {
    margin-left: auto;
    margin-right: auto;
  }

  .bpv2-glass-card {
    max-width: 480px;
    margin: 0 auto;
  }

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

@media (max-width: 600px) {
  /* Feedback #15: remove the 4 feature summary cards on mobile */
  .bpv2-features-grid {
    display: none;
  }

  .bpv2-prices {
    flex-direction: column;
    gap: 0.8rem;
  }

  .bpv2-price-plus {
    display: none;
  }

}



/* ══════════════════════════════════════════════════════
   LAPTOP JOURNEY ORIGIN — Inside .basic-journey-hero
   ══════════════════════════════════════════════════════ */
.basic-journey-laptop {
  position: relative;
  flex-shrink: 0;
  z-index: 2;
}

@media (min-width: 768px) {
  .basic-journey-laptop {
    /* Offset so laptop center aligns with the vertical line (left:16px in steps).
       Formula: 16px − (laptop_width / 2).  Half-widths: 90px@180, 11vw, 130px@260 */
    margin-left: calc(16px - clamp(90px, 11vw, 130px));
  }
}

.basic-journey-laptop img {
  width: clamp(180px, 22vw, 260px);
  height: auto;
  display: block;
  filter: drop-shadow(0 14px 40px rgba(0,0,0,0.35))
         drop-shadow(0 0 30px rgba(59,130,246,0.12));
  animation: laptopFloat 6s ease-in-out infinite;
}

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

/* Spark flash at emission point — hidden by default, JS toggles .spark-active */
.basic-journey-spark {
  position: absolute;
  bottom: -6px;
  left: 50%;
  transform: translateX(-50%);
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(147,187,245,0.9) 0%, rgba(59,130,246,0.5) 40%, transparent 70%);
  box-shadow: 0 0 20px rgba(59,130,246,0.8), 0 0 40px rgba(59,130,246,0.4), 0 0 60px rgba(59,130,246,0.2);
  opacity: 0;
  transition: opacity 0.15s ease;
  pointer-events: none;
  z-index: 3;
}

.basic-journey-spark.spark-active {
  opacity: 1;
  animation: sparkBurst 0.5s ease-out forwards;
}

@keyframes sparkBurst {
  0%   { transform: translateX(-50%) scale(0.4); opacity: 1; }
  50%  { transform: translateX(-50%) scale(1.6); opacity: 0.9; }
  100% { transform: translateX(-50%) scale(0.8); opacity: 0; }
}


/* ══════════════════════════════════════════════════════
   SINGLE CONTINUOUS JOURNEY LINE
   Runs from below laptop through all dots, extends past last dot
   ══════════════════════════════════════════════════════ */

/* Override the old fill-based line */
.basic-journey-line-fill { display: none; }

.basic-journey-line {
  position: absolute;
  left: 16px;
  top: 0;
  bottom: -300px;         /* extend well past steps, behind the CTA banner */
  width: 2px;
  background: none;
  border-radius: 2px;
  z-index: 0;
  pointer-events: none;
}

/* Subtle static track — fades at bottom as it approaches banner */
.basic-journey-line-track {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
    transparent 0%,
    rgba(59,130,246,0.08) 5%,
    rgba(59,130,246,0.14) 15%,
    rgba(59,130,246,0.14) 65%,
    rgba(59,130,246,0.08) 80%,
    rgba(59,130,246,0.03) 92%,
    transparent 100%
  );
  border-radius: 2px;
}

/* Traveling pulse — JS controls animation via transform */
.basic-journey-line-pulse {
  position: absolute;
  left: -4px;
  top: 0;
  width: 10px;
  height: 60px;
  border-radius: 5px;
  background: linear-gradient(180deg,
    transparent,
    rgba(59,130,246,0.4),
    rgba(147,187,245,0.95),
    rgba(255,255,255,0.6),
    rgba(147,187,245,0.95),
    rgba(59,130,246,0.4),
    transparent
  );
  box-shadow:
    0 0 12px rgba(59,130,246,0.6),
    0 0 30px rgba(59,130,246,0.3),
    0 0 50px rgba(59,130,246,0.15);
  opacity: 0;
  will-change: transform, opacity;
  pointer-events: none;
  z-index: 1;
}


/* ══════════════════════════════════════════════════════
   DOT ILLUMINATION — .dot-lit class toggled by JS
   ══════════════════════════════════════════════════════ */
.basic-journey-step::before {
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.basic-journey-step.dot-lit::before {
  background: #93bbf5;
  border-color: #b4d0ff;
  box-shadow:
    0 0 16px rgba(59,130,246,0.8),
    0 0 40px rgba(59,130,246,0.4),
    0 0 70px rgba(59,130,246,0.15);
  transform: translateY(-50%) scale(1.3);
}

/* Dot dimming after pulse passes — smooth return */
.basic-journey-step.dot-dim::before {
  background: #3b82f6;
  border-color: #6da3f5;
  box-shadow: 0 0 18px rgba(59,130,246,0.5), 0 0 40px rgba(59,130,246,0.2);
  transform: translateY(-50%) scale(1);
  transition: all 0.8s ease-out;
}

.basic-journey-step.dot-lit .basic-journey-num {
  color: #fff;
  text-shadow: 0 0 24px rgba(147,187,245,0.9);
}

.basic-journey-step.dot-lit .basic-journey-step-icon {
  background: linear-gradient(145deg, rgba(59,130,246,0.55), rgba(29,92,181,0.45));
  border-color: rgba(147,187,245,0.65);
  box-shadow: 0 0 20px rgba(59,130,246,0.4);
  color: #fff;
}


/* ══════════════════════════════════════════════════════
   MOUSE-FOLLOW SHINE (reusable for dark sections)
   ══════════════════════════════════════════════════════ */
.basic-mouse-shine,
.basic-process-shine {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  z-index: 0;
  transition: background 0.15s ease;
}


/* ══════════════════════════════════════════════════════
   BUTTON STANDARDIZATION — Based on CTA section style
   ══════════════════════════════════════════════════════ */

/* Primary buttons everywhere on dark backgrounds */
.basic-journey-banner-buttons .btn-primary,
.bpv2-btn-primary,
.basic-hero-ctas .btn-primary {
  box-shadow: 0 8px 30px rgba(29,92,181,0.45), 0 0 60px rgba(59,130,246,0.15);
  position: relative;
  overflow: hidden;
}

.basic-journey-banner-buttons .btn-primary::after,
.bpv2-btn-primary::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.18), transparent);
  transition: left 0.6s ease;
}

.basic-journey-banner-buttons .btn-primary:hover::after,
.bpv2-btn-primary:hover::after {
  left: 100%;
}

/* Outlined secondary buttons everywhere on dark backgrounds — HIGH CONTRAST */
.basic-journey-banner-buttons .btn-outline,
.bpv2-btn-secondary {
  background: rgba(255,255,255,0.06) !important;
  border: 1.5px solid rgba(255,255,255,0.3) !important;
  color: #fff !important;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.basic-journey-banner-buttons .btn-outline:hover,
.bpv2-btn-secondary:hover {
  border-color: rgba(255,255,255,0.6) !important;
  background: rgba(255,255,255,0.12) !important;
  transform: translateY(-3px);
  box-shadow: 0 14px 36px rgba(0,0,0,0.2);
  color: #fff !important;
}

/* Hero outline button fix */
.basic-hero-ctas .btn-outline {
  border: 1.5px solid rgba(255,255,255,0.3) !important;
  color: #fff !important;
}

.basic-hero-ctas .btn-outline:hover {
  border-color: rgba(255,255,255,0.6) !important;
  background: rgba(255,255,255,0.1) !important;
}


/* ══════════════════════════════════════════════════════
   CTA BANNER IMAGE HEIGHT FIX
   ══════════════════════════════════════════════════════ */
.basic-journey-banner-gallery {
  align-items: stretch;
}

.basic-journey-photo-frame--portrait,
.basic-journey-photo-frame--landscape {
  aspect-ratio: auto;
  height: clamp(200px, 28vw, 340px);
}

.basic-journey-photo-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}



/* ══════════════════════════════════════════════════════
   PRICING BUTTON THUMBNAILS — Glass-framed images
   ══════════════════════════════════════════════════════ */
.bpv2-button-row {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.bpv2-btn-thumb {
  flex-shrink: 0;
  width: clamp(52px, 5.5vw, 68px);
  height: clamp(52px, 5.5vw, 68px);
  border-radius: 14px;
  overflow: hidden;
  position: relative;
  border: 1.5px solid rgba(111,168,255,0.3);
  background: linear-gradient(145deg, rgba(15,32,68,0.7), rgba(8,20,48,0.5));
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow:
    0 4px 20px rgba(0,0,0,0.3),
    0 0 30px rgba(29,92,181,0.1),
    inset 0 1px 0 rgba(255,255,255,0.08);
  transition: all 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}

.bpv2-btn-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: inherit;
  transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Glow highlight on top edge */
.bpv2-btn-thumb::before {
  content: '';
  position: absolute;
  top: 0;
  left: 10%;
  right: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(147,187,245,0.5), transparent);
  z-index: 1;
}

/* Subtle inner glow overlay */
.bpv2-btn-thumb::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(ellipse at 30% 20%, rgba(59,130,246,0.1), transparent 60%);
  pointer-events: none;
  z-index: 1;
}

/* Hover: parent row hover lifts the thumb */
.bpv2-button-row:hover .bpv2-btn-thumb {
  border-color: rgba(111,168,255,0.55);
  box-shadow:
    0 6px 28px rgba(0,0,0,0.35),
    0 0 40px rgba(29,92,181,0.2),
    inset 0 1px 0 rgba(255,255,255,0.12);
  transform: translateY(-2px) scale(1.04);
}

.bpv2-button-row:hover .bpv2-btn-thumb img {
  transform: scale(1.08);
}

/* Entrance animation */
.bpv2-btn-thumb {
  opacity: 0;
  transform: translateX(-12px) scale(0.92);
  animation: thumbReveal 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  animation-delay: 0.3s;
}

.bpv2-button-row:nth-child(2) .bpv2-btn-thumb {
  animation-delay: 0.45s;
}

@keyframes thumbReveal {
  to {
    opacity: 1;
    transform: translateX(0) scale(1);
  }
}

@media (prefers-reduced-motion: reduce) {
  .bpv2-btn-thumb {
    opacity: 1;
    transform: none;
    animation: none;
  }
}

/* Mobile: stack thumbnails above buttons */
@media (max-width: 480px) {
  .bpv2-button-row {
    flex-direction: column;
    gap: 0.5rem;
  }
  .bpv2-btn-thumb {
    width: 48px;
    height: 48px;
  }
}


/* ══════════════════════════════════════════════════════
   ENHANCED GLASS-MORPHISM — Deeper blur + edge highlights
   ══════════════════════════════════════════════════════ */

/* Deepen pricing card glass */
.bpv2-glass-card {
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-color: rgba(111,168,255,0.25);
}

/* Sharper inner highlight on glass card */
.bpv2-glass-glow {
  background: linear-gradient(180deg,
    rgba(111,168,255,0.12) 0%,
    transparent 3%,
    transparent 97%,
    rgba(111,168,255,0.06) 100%) !important;
  height: 100% !important;
}

/* Journey banner deeper frost */
.basic-journey-banner {
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

/* Feature cards subtle glass upgrade */
.bpv2-feature-card {
  position: relative;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border-color: rgba(111,168,255,0.12) !important;
}

.bpv2-feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 15%;
  right: 15%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(147,187,245,0.3), transparent);
  pointer-events: none;
}

/* Process step cards — glass edge highlight */
.basic-process-step::after {
  content: '';
  position: absolute;
  top: 0;
  left: 20%;
  right: 20%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(29,92,181,0.15), transparent);
  pointer-events: none;
  border-radius: 1px;
}


/* ══════════════════════════════════════════════════════
   MICRO-ANIMATION REFINEMENTS
   ══════════════════════════════════════════════════════ */

/* Enhanced button hover scale + glow for all buttons on page */
.basic-pricing-v2 .btn,
.basic-journey-banner .btn,
.basic-process .btn {
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.basic-pricing-v2 .btn:active,
.basic-journey-banner .btn:active,
.basic-process .btn:active {
  transform: scale(0.97);
  transition-duration: 0.1s;
}

@media (prefers-reduced-motion: reduce) {
  .basic-journey-laptop img,
  .basic-journey-spark,
  .basic-journey-line-pulse {
    animation: none !important;
  }
  .basic-journey-line-pulse { display: none; }
  .basic-journey-step.dot-lit::before {
    transform: translateY(-50%) scale(1);
  }
}


/* (Glass frame styles defined in main photo-frame block above) */



/* ═══════════════════════════════════════════════════════
   STANDARD PACKAGE — 3-DEVICE HERO SHOWCASE
   Arrangement: [Tablet portrait] [Laptop center] [Mobile]
   Feature pills in horizontal row underneath devices
   ═══════════════════════════════════════════════════════ */

/* Override hero grid — give RIGHT (devices) column MORE space, reduce gap */
@media (min-width: 960px) {
  .std-devices-mockup {
    overflow: visible;
    margin-left: -2rem;
  }
}

/* Stage: stacked layout — devices on top, pills row below */
.std-devices-stage {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  margin-top: -1rem;
  margin-bottom: 0;
}

/* Devices cluster — holds all 3 devices in relative position */
.std-devices-cluster {
  position: relative;
  width: 100%;
  min-height: clamp(300px, 38vw, 460px);
}

/* Shared device base */
.std-device {
  position: absolute;
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}

/* ── Tablet — LEFT, PORTRAIT orientation ── */
.std-device--tablet {
  width: 36%;
  left: -2%;
  top: 6%;
  z-index: 1;
  transform: rotate(-3deg);
  box-shadow: 0 16px 50px rgba(0,0,0,0.3), 0 0 30px rgba(59,130,246,0.06);
}
.std-device--tablet .basic-browser-viewport {
  /* Portrait: taller than wide */
  aspect-ratio: 3 / 4;
}

/* ── Laptop / Desktop — CENTER, largest & most prominent ── */
.std-device--desktop {
  width: 88%;
  left: 10%;
  top: 0;
  z-index: 2;
  box-shadow: 0 24px 70px rgba(0,0,0,0.4), 0 0 50px rgba(59,130,246,0.1);
}
.std-device--desktop .basic-browser-viewport {
  aspect-ratio: 16 / 8.5;
}

/* ── Mobile — RIGHT, smallest ── */
.std-device--mobile {
  width: 22%;
  right: -3%;
  top: 10%;
  z-index: 3;
  border-radius: 18px;
  background: linear-gradient(145deg, #1a1a2e 0%, #16213e 100%);
  border: 2px solid rgba(255,255,255,0.12);
  padding: 6px 4px 10px;
  box-shadow: 0 14px 40px rgba(0,0,0,0.3), 0 0 20px rgba(59,130,246,0.06);
}

/* Mobile notch */
.std-mobile-notch {
  width: 36%;
  height: 5px;
  margin: 0 auto 4px;
  background: rgba(255,255,255,0.15);
  border-radius: 10px;
}

.std-mobile-viewport {
  width: 100%;
  aspect-ratio: 9 / 16;
  border-radius: 10px;
  overflow: hidden;
  background: #0d1b2a;
}

/* ── Feature pills — HORIZONTAL row underneath devices ── */
.std-hero-pills {
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: clamp(8px, 1.2vw, 14px);
  width: 100%;
  flex-wrap: wrap;
  margin-top: clamp(-1rem, -1.5vw, -2rem);
  position: relative;
  z-index: 5;
}

.std-hero-pills .basic-hero-feature-pill {
  font-size: 0.78rem;
  padding: 10px 16px;
}
.std-hero-pills .pill-label {
  font-size: 0.78rem;
}
.std-hero-pills .pill-desc {
  font-size: 0.65rem;
}
.std-hero-pills .basic-hero-feature-pill svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

/* Carousel tracks inside devices */
.std-carousel-track {
  position: relative;
  width: 100%;
  height: 100%;
}

.std-carousel-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  opacity: 0;
  transform: scale(1.04);
  filter: blur(4px);
  transition:
    opacity 0.9s cubic-bezier(0.4, 0, 0.2, 1),
    transform 1s cubic-bezier(0.4, 0, 0.2, 1),
    filter 0.8s ease;
  will-change: opacity, transform, filter;
}
/* Pre-cropped dashboard screenshots — no offset needed, just fill the viewport */
.prem-hero-slideshow .std-carousel-slide {
  top: 0;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}
.std-carousel-slide--active {
  opacity: 1;
  transform: scale(1);
  filter: blur(0);
  z-index: 1;
}

/* ── Placeholder slide visuals (until user provides images) ── */
.std-placeholder-slide {
  background: linear-gradient(145deg, #0d1b2a 0%, #1a2744 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.std-placeholder-content {
  width: 80%;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.std-placeholder-header {
  width: 60%;
  height: 8px;
  background: linear-gradient(90deg, rgba(59,130,246,0.4), rgba(109,163,245,0.2));
  border-radius: 4px;
}

.std-placeholder-hero-img {
  width: 100%;
  aspect-ratio: 16/9;
  background: linear-gradient(135deg, rgba(59,130,246,0.12) 0%, rgba(109,163,245,0.06) 100%);
  border-radius: 6px;
  border: 1px solid rgba(255,255,255,0.05);
}

.std-placeholder-text {
  width: 90%;
  height: 5px;
  background: rgba(255,255,255,0.08);
  border-radius: 3px;
}
.std-placeholder-text--short {
  width: 55%;
}

.std-placeholder-cards {
  display: flex;
  gap: 6px;
}
.std-placeholder-card {
  flex: 1;
  aspect-ratio: 1;
  background: linear-gradient(135deg, rgba(59,130,246,0.1) 0%, rgba(109,163,245,0.05) 100%);
  border-radius: 6px;
  border: 1px solid rgba(255,255,255,0.04);
}

.std-placeholder-btn {
  width: 50%;
  height: 10px;
  background: linear-gradient(90deg, #3b82f6 0%, #6da3f5 100%);
  border-radius: 5px;
  margin-top: 4px;
}

/* ── Responsive: small screens ── */
@media (max-width: 767px) {
  .std-devices-cluster {
    min-height: 300px;
  }
  .std-device--tablet {
    width: 32%;
    left: 0;
  }
  .std-device--desktop {
    width: 68%;
    left: 16%;
  }
  .std-device--mobile {
    width: 22%;
    right: 0;
  }
  .std-hero-pills {
    gap: 6px;
  }
  .std-hero-pills .basic-hero-feature-pill {
    padding: 7px 10px;
    font-size: 0.7rem;
  }
}

/* Hover lift on devices */
.std-device:hover {
  transform: translateY(-6px) rotate(0deg) !important;
  z-index: 10;
}



/* ── Reduced Motion ──────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  .std-carousel-slide {
    transition: opacity 0.3s ease !important;
    transform: none !important;
    filter: none !important;
  }
}
