.container {
  width: min(100% - 2rem, var(--container));
  margin-inline: auto;
}

.section {
  padding: clamp(3.5rem, 8vw, 7rem) 0;
}

.section.alt {
  background: var(--off-white);
}

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

/* ═══════════════════════════════════════════════════════════
   STANDARDIZED PREMIUM BUTTON SYSTEM
   Pill corners (from pricing) + premium gradient/glow (from hero).
   Applied site-wide. EXCEPTION: .premium-plan-btn (pricing cards).
   ═══════════════════════════════════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  border: 1px solid transparent;
  text-decoration: none;
  border-radius: 999px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  letter-spacing: 0.01em;
  line-height: 1.2;
  min-height: 52px;
  padding: 0.8rem 1.6rem;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
  cursor: pointer;
}

.btn:focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: 3px;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: linear-gradient(132deg, #1e84ff, #1b5be5);
  color: #f7fbff;
  border-color: rgba(154, 206, 255, 0.7);
  box-shadow: 0 14px 24px rgba(25, 89, 215, 0.45), 0 0 34px rgba(54, 141, 255, 0.44);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  box-shadow: 0 22px 34px rgba(29, 99, 236, 0.54), 0 0 40px rgba(71, 159, 255, 0.56);
}

/* Icon-in-circle for buttons — matches homepage hero button icons */
.btn-icon {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 1px solid rgba(181, 222, 255, 0.52);
  box-shadow: inset 0 0 0 1px rgba(181, 222, 255, 0.16);
  background: linear-gradient(155deg, rgba(231, 247, 255, 0.28), rgba(46, 123, 255, 0.25));
}

.btn-icon svg {
  width: 18px;
  height: 18px;
}

/* Buttons with a leading icon-circle get tighter left padding so the
   circle sits neatly inside the pill (mirrors the hero buttons). */
.btn:has(.btn-icon) {
  padding-left: 0.5rem;
  gap: 0.55rem;
}

/* Compact header CTA so the icon pill fits the slim nav bar */
.nav-cta.btn {
  min-height: 46px;
  padding: 0.3rem 1.15rem 0.3rem 0.45rem;
  font-size: 0.95rem;
}
.nav-cta .btn-icon {
  width: 30px;
  height: 30px;
}
.nav-cta .btn-icon svg {
  width: 16px;
  height: 16px;
}

/* Shimmer hover effect on all buttons */
.btn {
  position: relative;
  overflow: hidden;
}
.btn::after {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.2), transparent);
  transition: left .6s ease;
  pointer-events: none;
}
.btn:hover::after {
  left: 100%;
}

/* Secondary and outline buttons match the premium primary gradient */
.btn-secondary {
  background: linear-gradient(132deg, #1e84ff, #1b5be5);
  color: #f7fbff;
  border-color: rgba(154, 206, 255, 0.7);
  box-shadow: 0 14px 24px rgba(25, 89, 215, 0.45), 0 0 34px rgba(54, 141, 255, 0.44);
}

.btn-secondary:hover,
.btn-secondary:focus-visible {
  box-shadow: 0 22px 34px rgba(29, 99, 236, 0.54), 0 0 40px rgba(71, 159, 255, 0.56);
}

.btn-secondary.dark {
  background: linear-gradient(132deg, #1e84ff, #1b5be5);
  color: #f7fbff;
  border-color: rgba(154, 206, 255, 0.7);
}

/* Outline buttons also adopt the premium gradient (unless a page modifier
   class overrides them with a glass treatment, e.g. .basic-cta-outline) */
.btn-outline {
  background: linear-gradient(132deg, #1e84ff, #1b5be5) !important;
  color: #f7fbff !important;
  border: 1px solid rgba(154, 206, 255, 0.7) !important;
  box-shadow: 0 14px 24px rgba(25, 89, 215, 0.45), 0 0 34px rgba(54, 141, 255, 0.44);
}
.btn-outline:hover,
.btn-outline:focus-visible {
  box-shadow: 0 22px 34px rgba(29, 99, 236, 0.54), 0 0 40px rgba(71, 159, 255, 0.56);
}

.grid {
  display: grid;
  gap: 1rem;
}

.glass-card {
  background: rgba(255, 255, 255, 0.62);
  border: 1px solid rgba(255, 255, 255, 0.45);
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-radius: var(--radius);
  padding: 1.4rem;
}

.dark .glass-card {
  background: rgba(10, 31, 63, 0.42);
  border-color: rgba(191, 219, 254, 0.24);
  color: #fff;
}

.card-icon {
  width: 3rem;
  height: 3rem;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: linear-gradient(150deg, var(--blue), #3f82e0);
  color: #fff;
  margin-bottom: 1rem;
}

.check-list {
  list-style: none;
  padding: 0;
  margin: 1rem 0 0;
}

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  margin-bottom: 0.6rem;
}

.check-list li::before {
  content: '✓';
  flex-shrink: 0;
  color: var(--success);
  font-weight: 700;
}

.package-card {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.7);
  box-shadow: var(--shadow-sm);
  padding: 1.5rem;
}

.package-card.featured {
  background: linear-gradient(160deg, #14376f, #244c8d);
  color: #fff;
  transform: translateY(-8px);
}

.badge {
  display: inline-block;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.35rem 0.7rem;
}

.badge-blue { background: var(--blue-100); color: var(--navy); }
.badge-light { background: rgba(255,255,255,0.16); color: #fff; }
.badge-orange { background: rgba(234,122,31,0.12); color: #b85500; }

.split {
  display: grid;
  gap: 1.8rem;
  align-items: center;
}

.video-frame {
  width: 100%;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(255, 255, 255, 0.24);
}

.video-frame video,
.video-frame img {
  width: 100%;
  height: auto;
  display: block;
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.75);
  overflow: hidden;
}

.faq-trigger {
  width: 100%;
  background: none;
  border: 0;
  text-align: left;
  padding: 1rem 1.2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  color: var(--navy);
  cursor: pointer;
}

.faq-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  padding: 0 1.2rem;
}

.faq-item.active .faq-content {
  max-height: 260px;
  padding-bottom: 1rem;
}

.cta-band {
  background: linear-gradient(180deg, var(--navy), var(--navy-2));
  color: #fff;
  border-radius: var(--radius-lg);
  text-align: center;
  padding: clamp(2.2rem, 5vw, 3.7rem);
}

.form-grid {
  display: grid;
  gap: 1rem;
}

input, select, textarea {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 0.85rem 0.95rem;
  background: rgba(255, 255, 255, 0.8);
  font-family: 'Inter', sans-serif;
  color: var(--text-primary);
}

textarea { min-height: 140px; resize: vertical; }

input:focus, select:focus, textarea:focus {
  outline: 2px solid var(--blue);
  outline-offset: 1px;
}

.site-footer {
  background: var(--navy);
  color: #d7e5ff;
  margin-top: 4rem;
}

.footer-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: 1.3fr 1fr 1fr 1fr;
}

.footer-links a { color: #d7e5ff; text-decoration: none; display: block; margin-bottom: 0.6rem; }
.footer-links a:hover { color: #fff; }

.why-premium-section {
  background:
    radial-gradient(1200px 420px at 12% -10%, rgba(29, 92, 181, 0.16), transparent 62%),
    radial-gradient(900px 360px at 80% 100%, rgba(29, 92, 181, 0.14), transparent 60%),
    linear-gradient(180deg, #f8fafc 0%, #f3f6fb 100%);
}

.why-premium-grid {
  display: grid;
  gap: clamp(1.25rem, 2.4vw, 2.4rem);
  align-items: start;
}

.why-premium-content {
  max-width: 640px;
}

.why-premium-label {
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: clamp(0.74rem, 1.5vw, 0.9rem);
  color: #245ce9;
  margin-bottom: 0.8rem;
  position: relative;
  padding-bottom: 0.9rem;
}

.why-premium-label::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 108px;
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, #1f56df 0%, #90b8ff 100%);
  box-shadow: 0 0 16px rgba(36, 92, 233, 0.4);
}

.why-premium-title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  line-height: 0.96;
  font-size: clamp(2.2rem, 4.5vw, 4.8rem);
  margin-bottom: 0.95rem;
  color: #0c153f;
  letter-spacing: -0.015em;
}

.why-premium-title span {
  background: linear-gradient(120deg, #1a4fda 0%, #3f7fff 45%, #75a7ff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.why-premium-copy {
  max-width: 58ch;
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: clamp(1rem, 1.55vw, 1.08rem);
  color: #4f5f82;
  margin-bottom: clamp(1rem, 2vw, 1.35rem);
}

.why-pillars-cinematic {
  width: 100%;
  max-width: 640px;
  display: grid;
  gap: 0.72rem;
}

.why-pillars {
  display: grid;
  grid-template-columns: repeat(2, minmax(120px, 1fr));
  gap: clamp(0.65rem, 1.3vw, 0.95rem);
  width: 100%;
  max-width: 560px;
}

.why-pillars-progress {
  width: min(100%, 320px);
  height: 5px;
  border-radius: 999px;
  background: rgba(112, 150, 230, 0.2);
  overflow: hidden;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.75);
}

.why-pillars-progress span {
  display: block;
  width: 25%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #2f63e6 0%, #73a4ff 100%);
  box-shadow: 0 0 16px rgba(73, 132, 255, 0.46);
  transform-origin: left center;
  transition: width 240ms ease;
}

.why-pillar-card {
  position: relative;
  overflow: hidden;
  border-radius: 22px;
  width: 100%;
  aspect-ratio: 1 / 1.04;
  padding: 0.75rem 0.75rem 0.9rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.62) 0%, rgba(255, 255, 255, 0.32) 100%);
  border: 1px solid rgba(180, 205, 255, 0.7);
  backdrop-filter: blur(20px) saturate(150%);
  -webkit-backdrop-filter: blur(20px) saturate(150%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.75),
    inset 0 -1px 0 rgba(135, 177, 255, 0.35),
    0 10px 20px rgba(18, 55, 133, 0.08),
    0 26px 48px rgba(18, 55, 133, 0.14),
    0 0 0 1px rgba(170, 205, 255, 0.18);
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.why-pillar-card::before,
.why-pillar-card::after {
  content: '';
  position: absolute;
  inset: 1px;
  border-radius: inherit;
  pointer-events: none;
}

.why-pillar-card::before {
  border: 1px solid rgba(255, 255, 255, 0.58);
  mask: linear-gradient(#000, transparent 72%);
}

.why-pillar-card::after {
  background: radial-gradient(120% 90% at 50% 0%, rgba(147, 186, 255, 0.35), transparent 72%);
  opacity: 0.9;
}

.why-pillar-icon {
  position: relative;
  width: clamp(56px, 5.2vw, 74px);
  aspect-ratio: 1 / 1;
  display: block;
  margin: 0 auto 0.55rem;
}

.why-pillar-icon img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 10px 16px rgba(32, 87, 188, 0.26));
  transition: opacity 0.35s ease, transform 0.35s ease, filter 0.35s ease;
}

.why-pillar-icon .icon-default {
  opacity: 1;
  transform: scale(1);
}

.why-pillar-icon .icon-hover {
  opacity: 0;
  transform: scale(0.9);
  filter: drop-shadow(0 12px 18px rgba(106, 159, 255, 0.28));
}

.why-pillar-card h3 {
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: clamp(0.95rem, 1.6vw, 1.45rem);
  letter-spacing: -0.015em;
  text-align: center;
  margin: 0;
  color: #1f2850;
}

.why-pillar-card h3::after {
  content: '';
  display: block;
  width: 30px;
  height: 3px;
  margin: 0.45rem auto 0;
  border-radius: 999px;
  background: linear-gradient(90deg, #2d65eb, #6ca3ff);
  box-shadow: 0 0 12px rgba(45, 101, 235, 0.5);
}

.why-pillar-card:is(:hover, :focus-visible, .is-active) {
  transform: translateY(-6px) scale(1.015);
  border-color: rgba(92, 151, 255, 0.95);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.84),
    inset 0 -1px 0 rgba(130, 180, 255, 0.45),
    0 12px 20px rgba(18, 55, 133, 0.12),
    0 24px 42px rgba(18, 55, 133, 0.2),
    0 0 0 1px rgba(92, 151, 255, 0.4),
    0 0 24px rgba(83, 140, 255, 0.28);
}

.why-pillar-card:is(:hover, :focus-visible, .is-active) .icon-default {
  opacity: 0;
  transform: scale(0.9);
}

.why-pillar-card:is(:hover, :focus-visible, .is-active) .icon-hover {
  opacity: 1;
  transform: scale(1);
  filter: drop-shadow(0 14px 20px rgba(125, 176, 255, 0.32));
}


.why-premium-media {
  position: relative;
  width: min(100%, 1040px);
  justify-self: center;
  border-radius: 34px;
  padding: 10px;
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.8) 0%, rgba(210, 229, 255, 0.36) 45%, rgba(255, 255, 255, 0.22) 100%);
  backdrop-filter: blur(14px) saturate(150%);
  -webkit-backdrop-filter: blur(14px) saturate(150%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.7),
    0 0 0 1px rgba(105, 162, 255, 0.35),
    0 30px 54px rgba(12, 42, 112, 0.2);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.why-premium-media::before {
  content: '';
  position: absolute;
  inset: 5px;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  pointer-events: none;
}

.why-premium-video-frame {
  position: relative;
  z-index: 1;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 26px;
  overflow: hidden;
  box-shadow: 0 12px 36px rgba(8, 28, 80, 0.44);
}

.why-premium-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.why-premium-media:hover {
  transform: translateY(-6px);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.76),
    0 0 0 1px rgba(105, 162, 255, 0.45),
    0 40px 74px rgba(12, 42, 112, 0.28),
    0 0 36px rgba(71, 132, 255, 0.2);
}

.why-pillar-card {
  text-decoration: none;
  color: inherit;
}

.why-details-section {
  position: relative;
  z-index: 1;
  isolation: isolate;
  overflow: hidden;
  background: linear-gradient(180deg, #f3f6fb 0%, #f9fbff 52%, #ffffff 100%);
}

.why-details-flow,
.why-details-flow::before,
.why-details-flow::after {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.why-details-flow {
  z-index: -1;
  background:
    radial-gradient(900px 280px at 8% 0%, rgba(96, 142, 255, 0.22), transparent 72%),
    radial-gradient(900px 280px at 92% 100%, rgba(96, 142, 255, 0.18), transparent 74%);
}

.why-details-flow::before {
  content: '';
  background:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 220' fill='none'%3E%3Cpath d='M0 104C126 36 284 28 420 77C566 129 684 190 808 188C930 186 1048 122 1200 33' stroke='%236b9bff' stroke-opacity='0.14' stroke-width='2'/%3E%3Cpath d='M0 152C136 92 290 90 438 132C560 167 682 216 828 206C964 197 1074 121 1200 68' stroke='%235482ff' stroke-opacity='0.12' stroke-width='2'/%3E%3C/svg%3E") top center / cover no-repeat;
  opacity: 0.7;
}

.why-details-flow::after {
  content: '';
  background:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 220' fill='none'%3E%3Cpath d='M0 144C122 196 252 210 370 175C504 135 626 62 770 62C928 62 1066 149 1200 205' stroke='%236b9bff' stroke-opacity='0.12' stroke-width='2'/%3E%3C/svg%3E") bottom center / cover no-repeat;
}

.why-details-track {
  width: min(100% - 2rem, var(--container));
  margin-inline: auto;
  display: grid;
  gap: clamp(0.95rem, 1.8vw, 1.7rem);
}

.why-detail-card {
  --reveal-delay: 0ms;
  scroll-margin-top: 112px;
  display: grid;
  gap: clamp(0.82rem, 1.45vw, 1.35rem);
  align-items: center;
  padding: clamp(0.82rem, 1.45vw, 1.15rem);
  border-radius: 30px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.66), rgba(255, 255, 255, 0.34));
  border: 1px solid rgba(177, 206, 255, 0.65);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.82),
    0 20px 46px rgba(19, 51, 121, 0.1);
  transition: transform 0.42s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.42s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.35s ease;
  will-change: transform, opacity;
}

.why-detail-card[data-reveal="card-right"] {
  opacity: 0;
  transform: translate3d(90px, 0, 0) scale(0.88);
  filter: blur(2px);
  transition:
    opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.9s cubic-bezier(0.16, 1, 0.3, 1),
    filter 0.9s cubic-bezier(0.16, 1, 0.3, 1),
    border-color 0.35s ease,
    box-shadow 0.42s cubic-bezier(0.16, 1, 0.3, 1);
  transition-delay: var(--reveal-delay, 0ms);
}

.why-detail-card[data-reveal="card-left"] {
  opacity: 0;
  transform: translate3d(-90px, 0, 0) scale(0.88);
  filter: blur(2px);
  transition:
    opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.9s cubic-bezier(0.16, 1, 0.3, 1),
    filter 0.9s cubic-bezier(0.16, 1, 0.3, 1),
    border-color 0.35s ease,
    box-shadow 0.42s cubic-bezier(0.16, 1, 0.3, 1);
  transition-delay: var(--reveal-delay, 0ms);
}

.why-detail-card[data-reveal="card-right"].is-visible,
.why-detail-card[data-reveal="card-left"].is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
  filter: blur(0);
}

.why-detail-card:is(:hover, :focus-within, .is-icon-active) {
  transform: translateY(-4px);
  border-color: rgba(108, 156, 255, 0.78);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.88),
    0 26px 56px rgba(19, 51, 121, 0.16),
    0 0 32px rgba(108, 156, 255, 0.2);
}

.why-detail-media {
  position: relative;
  border-radius: 28px;
  padding: 10px;
  background: linear-gradient(165deg, rgba(255, 255, 255, 0.78), rgba(206, 228, 255, 0.34));
  border: 1px solid rgba(158, 195, 255, 0.7);
  box-shadow: 0 18px 42px rgba(10, 41, 112, 0.22);
}

.why-detail-media::before {
  content: '';
  position: absolute;
  inset: 5px;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.56);
  pointer-events: none;
}

.why-detail-media picture,
.why-detail-media img {
  display: block;
  width: 100%;
}

.why-detail-media img {
  border-radius: 20px;
  height: auto;
}

.why-detail-copy {
  padding-inline: clamp(0rem, 1vw, 0.4rem);
}

.why-detail-kicker {
  display: inline-block;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: #2e5fd0;
  margin-bottom: 0.18rem;
}

.why-detail-copy h3 {
  margin-bottom: 0.35rem;
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.85rem, 3.2vw, 3.1rem);
  line-height: 1.14;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.08rem 0.58rem;
  color: #0f2050;
}

/* Title text sits beside the icon as a single flex item so line breaks
   (e.g. "Built To Load Fast" / "Not Lose Customers.") render cleanly */
.why-detail-title-text {
  flex: 1 1 0;
  min-width: 0;
}

.why-detail-icon {
  position: relative;
  width: clamp(42px, 4.8vw, 64px);
  aspect-ratio: 1 / 1;
  flex-shrink: 0;
}

.why-detail-icon img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: opacity 0.35s ease, transform 0.35s ease, filter 0.35s ease;
}

.why-detail-icon .icon-default {
  opacity: 1;
  transform: scale(1);
  filter: drop-shadow(0 9px 14px rgba(45, 101, 235, 0.28));
}

.why-detail-icon .icon-hover {
  opacity: 0;
  transform: scale(0.9);
  filter: drop-shadow(0 12px 18px rgba(112, 171, 255, 0.34));
}

.why-detail-card:is(:hover, :focus-within, .is-icon-active) .why-detail-icon .icon-default {
  opacity: 0;
  transform: scale(0.9);
}

.why-detail-card:is(:hover, :focus-within, .is-icon-active) .why-detail-icon .icon-hover {
  opacity: 1;
  transform: scale(1);
}

.why-detail-copy p {
  margin-bottom: 0.42rem;
  color: #47597f;
  max-width: 58ch;
  font-size: clamp(1.02rem, 1.08vw, 1.14rem);
  line-height: 1.44;
}

#secure {
  gap: clamp(0.5rem, 0.9vw, 0.8rem);
  padding-block: clamp(0.62rem, 1vw, 0.82rem);
}

#secure .why-detail-kicker {
  margin-bottom: 0.02rem;
}

#secure .why-detail-copy h3 {
  margin-bottom: 0.25rem;
  line-height: 1.1;
  gap: 0.06rem 0.48rem;
}

#secure .why-detail-copy p {
  margin-top: 0.12rem;
  margin-bottom: 0.22rem;
}

#secure .why-detail-copy p:last-child {
  margin-bottom: 0;
}

.before-after-section {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background:
    radial-gradient(920px 360px at 14% 4%, rgba(52, 121, 255, 0.18), transparent 60%),
    radial-gradient(860px 360px at 85% 102%, rgba(25, 92, 255, 0.14), transparent 58%),
    linear-gradient(150deg, #030916 0%, #06112a 36%, #08193d 62%, #030914 100%);
  color: #f4f8ff;
}

.before-after-flow,
.before-after-flow::before,
.before-after-flow::after {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.before-after-flow {
  z-index: -1;
  background:
    radial-gradient(940px 320px at 5% 0%, rgba(81, 132, 255, 0.1), transparent 72%),
    radial-gradient(900px 340px at 95% 100%, rgba(81, 132, 255, 0.08), transparent 74%);
}

.before-after-flow::before {
  content: '';
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 240' fill='none'%3E%3Cpath d='M0 120C122 71 250 66 378 103C516 144 640 206 782 198C930 190 1062 123 1200 46' stroke='%236795ff' stroke-opacity='0.18' stroke-width='2'/%3E%3C/svg%3E") top center / cover no-repeat;
  opacity: 0.62;
}

.before-after-flow::after {
  content: '';
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 260' fill='none'%3E%3Cpath d='M0 152C128 205 256 221 390 184C520 148 654 68 786 74C940 81 1058 170 1200 234' stroke='%235487ff' stroke-opacity='0.14' stroke-width='2'/%3E%3C/svg%3E") bottom center / cover no-repeat;
}

.before-after-wrap {
  display: grid;
  gap: clamp(1.4rem, 3vw, 2.8rem);
  width: min(100%, 1360px);
  margin-inline: auto;
}

.before-after-heading {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.before-after-heading h2 {
  margin-bottom: 0.7rem;
}

.before-after-heading h2,
.before-after-heading .why-premium-title {
  color: #f4f8ff;
}

.before-after-heading p {
  color: rgba(216, 230, 255, 0.75);
}

.before-after-heading .before-after-question {
  margin-top: 0.9rem;
  font-weight: 600;
  color: #9ec5ff;
}

.before-after-heading .why-detail-kicker {
  color: #57a1ff;
}

.before-after-grid {
  display: grid;
  gap: clamp(1rem, 2.3vw, 1.9rem);
  align-items: center;
}

.before-after-industries {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.7rem;
}

.ba-industry {
  appearance: none;
  border: 1px solid rgba(135, 168, 255, 0.25);
  border-radius: 18px;
  padding: 0.9rem 1rem;
  text-align: left;
  background: linear-gradient(155deg, rgba(15, 30, 65, 0.8), rgba(10, 22, 50, 0.85));
  box-shadow: 0 9px 22px rgba(2, 8, 24, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.06);
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, border-color 0.25s ease;
}

.ba-industry-title {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 1.03rem;
  color: rgba(216, 230, 255, 0.9);
}

.ba-industry-meta {
  display: block;
  margin-top: 0.26rem;
  color: rgba(180, 200, 240, 0.7);
  font-size: 0.88rem;
}

.ba-industry:hover,
.ba-industry:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(101, 148, 255, 0.55);
  background: linear-gradient(150deg, rgba(20, 40, 85, 0.9), rgba(15, 32, 70, 0.92));
  box-shadow: 0 14px 26px rgba(2, 8, 24, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.08);
  outline: none;
}

.ba-industry.is-active {
  border-color: rgba(70, 126, 255, 0.95);
  background: linear-gradient(150deg, #1e56d8, #6ea3ff);
  box-shadow: 0 18px 30px rgba(32, 77, 177, 0.32), inset 0 1px 0 rgba(255, 255, 255, 0.35);
}

.ba-industry.is-active .ba-industry-title,
.ba-industry.is-active .ba-industry-meta {
  color: #f3f8ff;
}

.before-after-laptop {
  position: relative;
  padding: clamp(0.6rem, 1.2vw, 1rem);
  border-radius: clamp(20px, 2.8vw, 32px);
  background: linear-gradient(150deg, rgba(20, 40, 80, 0.6), rgba(10, 25, 55, 0.5));
  border: 1px solid rgba(100, 150, 255, 0.3);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 24px 50px rgba(2, 8, 24, 0.45);
}

.before-after-laptop::before {
  content: '';
  position: absolute;
  inset: 7px;
  border-radius: inherit;
  border: 1px solid rgba(255, 255, 255, 0.08);
  pointer-events: none;
}

/* Laptop shine removed per client request */
.before-after-laptop-shine {
  display: none;
}

.before-after-screen {
  position: relative;
  --split: 50%;
  border-radius: clamp(16px, 2vw, 24px);
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background: #050b1b;
  border: 1px solid rgba(124, 164, 247, 0.5);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08), 0 20px 40px rgba(9, 26, 67, 0.38);
  touch-action: none;
}

.ba-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  user-select: none;
  pointer-events: none;
}

.ba-image-after,
.ba-before-layer,
.ba-image-before {
  position: absolute;
  inset: 0;
}

.ba-before-layer {
  clip-path: inset(0 calc(100% - var(--split)) 0 0);
  border-right: 1px solid rgba(255, 255, 255, 0.86);
  transition: clip-path 0.24s ease;
}

.ba-handle {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: clamp(50px, 5vw, 68px);
  aspect-ratio: 1;
  border-radius: 50%;
  border: 1px solid rgba(129, 176, 255, 0.9);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.9), rgba(182, 210, 255, 0.82));
  color: #1b4fcc;
  font-size: clamp(1.2rem, 2vw, 1.8rem);
  display: grid;
  place-items: center;
  box-shadow: 0 12px 26px rgba(23, 52, 124, 0.3);
  cursor: ew-resize;
  z-index: 2;
  transition: left 0.24s ease;
}

.before-after-screen.is-dragging .ba-handle,
.before-after-screen.is-dragging .ba-before-layer {
  transition: none;
}

.ba-handle::before,
.ba-handle::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 2px;
  height: 999px;
  background: rgba(255, 255, 255, 0.8);
  transform: translateY(-50%);
}

.ba-handle::before { left: 50%; }
.ba-handle::after { left: calc(50% - 1px); opacity: 0.35; }

/* Glowing pulse ring around the drag handle to draw attention */
.ba-handle {
  box-shadow:
    0 12px 26px rgba(23, 52, 124, 0.3),
    0 0 0 0 rgba(99, 158, 255, 0.55),
    0 0 22px 4px rgba(99, 158, 255, 0.55);
  animation: ba-handle-glow 2.4s ease-in-out infinite;
}

.ba-handle > span {
  text-shadow: 0 0 10px rgba(43, 96, 220, 0.55);
}

@keyframes ba-handle-glow {
  0%, 100% {
    box-shadow:
      0 12px 26px rgba(23, 52, 124, 0.3),
      0 0 0 0 rgba(99, 158, 255, 0.5),
      0 0 18px 3px rgba(99, 158, 255, 0.45);
  }
  50% {
    box-shadow:
      0 12px 26px rgba(23, 52, 124, 0.3),
      0 0 0 10px rgba(99, 158, 255, 0),
      0 0 30px 8px rgba(120, 172, 255, 0.85);
  }
}

/* Stop the pulse once the user has started interacting */
.before-after-screen.ba-interacted .ba-handle {
  animation: none;
  box-shadow: 0 12px 26px rgba(23, 52, 124, 0.3);
}

/* Plain-text Before / After labels above the screen (not button-like) */
.before-after-labels {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 0.35rem;
  margin-bottom: 0.6rem;
}

.ba-label {
  font-family: 'Inter', sans-serif;
  font-size: 0.74rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: rgba(196, 214, 250, 0.78);
  user-select: none;
}

.ba-label-after {
  color: rgba(150, 190, 255, 0.92);
}

/* "Drag Left or Right" hint near the handle — disappears on first interaction */
.ba-drag-hint {
  position: absolute;
  left: 50%;
  top: calc(50% + clamp(40px, 5vw, 54px));
  transform: translateX(-50%);
  padding: 0.32rem 0.78rem;
  border-radius: 999px;
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  white-space: nowrap;
  color: #f3f8ff;
  background: rgba(12, 37, 89, 0.72);
  border: 1px solid rgba(140, 178, 255, 0.55);
  box-shadow: 0 0 18px rgba(99, 158, 255, 0.45);
  z-index: 3;
  pointer-events: none;
  opacity: 1;
  transition: opacity 0.4s ease, visibility 0.4s ease;
  animation: ba-hint-bob 2.4s ease-in-out infinite;
}

@keyframes ba-hint-bob {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(4px); }
}

.before-after-screen.ba-interacted .ba-drag-hint {
  opacity: 0;
  visibility: hidden;
  animation: none;
}

.before-after-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  margin-top: 0.72rem;
  color: rgba(180, 200, 240, 0.7);
  font-size: 0.94rem;
}

.before-after-bottom p {
  margin: 0;
}

.before-after-base {
  position: absolute;
  left: 14%;
  right: 14%;
  bottom: -18px;
  height: 16px;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(15, 30, 65, 0.7), rgba(8, 20, 45, 0.65));
  box-shadow: 0 14px 22px rgba(2, 8, 24, 0.35);
  z-index: -1;
}

/* Instant industry switching – no fade/scale per client request */
.before-after-screen .ba-image,
.before-after-screen .ba-before-layer {
  transition: none;
}

.before-after-screen.is-switching .ba-image,
.before-after-screen.is-switching .ba-before-layer {
  /* class kept for JS compat; no visual transition */
}

.dashboard-showcase-section {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background:
    radial-gradient(1200px 420px at 10% -8%, rgba(76, 132, 255, 0.16), transparent 74%),
    radial-gradient(960px 340px at 95% 102%, rgba(76, 132, 255, 0.14), transparent 74%),
    linear-gradient(180deg, #f8fbff 0%, #f3f7ff 50%, #f8fbff 100%);
}

.dashboard-flow,
.dashboard-flow::before,
.dashboard-flow::after {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.dashboard-flow {
  z-index: -1;
}

.dashboard-flow::before {
  content: '';
  opacity: 0.72;
  background:
    linear-gradient(140deg, rgba(120, 165, 255, 0.2) 0%, rgba(120, 165, 255, 0) 50%),
    linear-gradient(220deg, rgba(93, 130, 233, 0.16) 0%, rgba(93, 130, 233, 0) 60%);
}

.dashboard-flow::after {
  content: '';
  opacity: 0.6;
  background: radial-gradient(500px 240px at 82% 18%, rgba(255, 255, 255, 0.65), transparent 70%);
}

.dashboard-showcase-wrap {
  display: grid;
  gap: clamp(1.3rem, 2.7vw, 2.4rem);
}

.dashboard-showcase-head {
  text-align: center;
  max-width: 860px;
  margin: 0 auto;
}

.dashboard-showcase-head p {
  color: #4b618a;
  max-width: 66ch;
  margin-inline: auto;
}

.dashboard-showcase-grid {
  display: grid;
  gap: clamp(1rem, 2.1vw, 1.9rem);
  align-items: start;
}

.dashboard-copy-panel {
  border-radius: 28px;
  padding: clamp(1.1rem, 2.2vw, 1.7rem);
  background: linear-gradient(155deg, rgba(255, 255, 255, 0.85), rgba(229, 240, 255, 0.72));
  border: 1px solid rgba(155, 191, 255, 0.56);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.88),
    0 22px 44px rgba(22, 62, 143, 0.12);
  backdrop-filter: blur(12px) saturate(140%);
  -webkit-backdrop-filter: blur(12px) saturate(140%);
}

.dashboard-copy-label {
  display: inline-block;
  font-family: 'Montserrat', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.76rem;
  color: #2a62de;
  margin-bottom: 0.6rem;
}

.dashboard-copy-title {
  margin: 0;
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4.4vw, 3.5rem);
  line-height: 0.98;
  min-height: calc(3 * 0.98em);
  color: #0f1c4a;
  letter-spacing: -0.016em;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.dashboard-copy-text {
  margin-top: 0.75rem;
  margin-bottom: 1.05rem;
  color: #405784;
  max-width: 52ch;
  line-height: 1.5;
  min-height: calc(2 * 1.5em);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.dashboard-feature-list {
  display: grid;
  gap: 0.72rem;
}

.dashboard-feature {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 0.75rem;
  align-items: start;
  border-radius: 16px;
  padding: 0.62rem 0.62rem;
  border: 1px solid rgba(169, 200, 255, 0.44);
  background: linear-gradient(150deg, rgba(255, 255, 255, 0.66), rgba(227, 238, 255, 0.62));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9);
  transition: transform 0.34s ease, box-shadow 0.34s ease, border-color 0.34s ease;
}

.dashboard-feature:is(:hover, :focus-within) {
  transform: translateY(-3px);
  border-color: rgba(108, 157, 255, 0.9);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.94),
    0 12px 20px rgba(38, 82, 171, 0.18);
}

.dashboard-feature-icon {
  position: relative;
  width: 54px;
  height: 54px;
  border-radius: 14px;
  overflow: hidden;
  flex-shrink: 0;
}

.dashboard-feature-icon img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.34s ease, transform 0.34s ease;
}

.dashboard-feature-icon .icon-hover {
  opacity: 0;
  transform: scale(0.9);
}

.dashboard-feature:hover .dashboard-feature-icon .icon-default,
.dashboard-feature:focus-within .dashboard-feature-icon .icon-default {
  opacity: 0;
  transform: scale(0.88);
}

.dashboard-feature:hover .dashboard-feature-icon .icon-hover,
.dashboard-feature:focus-within .dashboard-feature-icon .icon-hover {
  opacity: 1;
  transform: scale(1);
}

.dashboard-feature h4 {
  margin: 0.1rem 0 0.2rem;
  font-size: 1.12rem;
  color: #142a54;
}

.dashboard-feature p {
  margin: 0;
  color: #415c8f;
  font-size: 0.95rem;
}

.dashboard-copy-panel.is-changing .dashboard-copy-label,
.dashboard-copy-panel.is-changing .dashboard-copy-title,
.dashboard-copy-panel.is-changing .dashboard-copy-text,
.dashboard-copy-panel.is-changing .dashboard-feature-list {
  opacity: 0;
  transform: translateY(10px);
}

.dashboard-copy-panel .dashboard-copy-label,
.dashboard-copy-panel .dashboard-copy-title,
.dashboard-copy-panel .dashboard-copy-text,
.dashboard-copy-panel .dashboard-feature-list {
  transition: opacity 0.36s ease, transform 0.36s ease;
}

.dashboard-carousel-shell {
  position: relative;
  align-self: start;
}

.dashboard-carousel {
  --dashboard-slide-ratio: 1 / 1;
  position: relative;
  border-radius: clamp(20px, 2.8vw, 30px);
  padding: clamp(0.65rem, 1.2vw, 0.95rem);
  background: linear-gradient(155deg, rgba(255, 255, 255, 0.78), rgba(203, 223, 255, 0.66));
  border: 1px solid rgba(148, 184, 255, 0.58);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.92),
    0 28px 54px rgba(18, 53, 126, 0.2),
    0 0 30px rgba(84, 138, 255, 0.16);
  backdrop-filter: blur(18px) saturate(150%);
  -webkit-backdrop-filter: blur(18px) saturate(150%);
}

.dashboard-carousel::before {
  content: '';
  position: absolute;
  inset: 6px;
  border-radius: inherit;
  border: 1px solid rgba(255, 255, 255, 0.72);
  pointer-events: none;
}

.dashboard-track-viewport {
  position: relative;
  width: 100%;
  overflow: hidden;
  border-radius: clamp(15px, 2vw, 24px);
  border: 1px solid rgba(123, 161, 242, 0.45);
  background: #050c1d;
  touch-action: pan-y;
  aspect-ratio: var(--dashboard-slide-ratio);
}

.dashboard-track {
  position: absolute;
  inset: 0;
  display: flex;
  height: 100%;
  align-items: stretch;
  will-change: transform;
}

.dashboard-track.is-animating {
  transition: transform 0.5s cubic-bezier(0.2, 0.67, 0.2, 1);
}

.dashboard-slide {
  margin: 0;
  flex: 0 0 100%;
  height: 100%;
  min-height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.dashboard-slide img {
  display: block;
  width: 100%;
  height: 100%;
  aspect-ratio: var(--dashboard-slide-ratio);
  object-fit: cover;
  object-position: center center;
}

.ds-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  width: 48px;
  height: 48px;
  border-radius: 999px;
  border: 1px solid rgba(120, 163, 255, 0.86);
  background: linear-gradient(150deg, rgba(252, 254, 255, 0.9), rgba(188, 214, 255, 0.9));
  color: #1d51c8;
  font-size: 1.35rem;
  display: grid;
  place-items: center;
  cursor: pointer;
  box-shadow: 0 12px 24px rgba(23, 62, 145, 0.24);
  transition: transform 0.28s ease, box-shadow 0.28s ease, background 0.28s ease;
}

.ds-prev { left: clamp(-0.7rem, -1.1vw, -1rem); }
.ds-next { right: clamp(-0.7rem, -1.1vw, -1rem); }

.ds-nav:is(:hover, :focus-visible) {
  transform: translateY(-50%) scale(1.06);
  background: linear-gradient(150deg, rgba(224, 238, 255, 0.98), rgba(171, 201, 255, 0.98));
  box-shadow: 0 16px 30px rgba(23, 62, 145, 0.28);
  outline: none;
}

.dashboard-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.55rem;
  margin-top: 0.95rem;
}

.dashboard-dot {
  width: 12px;
  height: 12px;
  border-radius: 999px;
  border: 1px solid rgba(105, 148, 245, 0.55);
  background: rgba(144, 176, 230, 0.44);
  cursor: pointer;
  transition: transform 0.24s ease, background 0.24s ease, box-shadow 0.24s ease;
}

.dashboard-dot.is-active {
  background: linear-gradient(150deg, #1f58db, #67a0ff);
  transform: scale(1.12);
  box-shadow: 0 0 0 4px rgba(108, 157, 255, 0.22);
}

.dashboard-dot:focus-visible {
  outline: 2px solid #2f66e0;
  outline-offset: 2px;
}

.premium-modules-section {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background:
    radial-gradient(1200px 420px at 8% -4%, rgba(86, 143, 255, 0.16), transparent 72%),
    radial-gradient(900px 320px at 90% 102%, rgba(109, 148, 245, 0.18), transparent 72%),
    linear-gradient(180deg, #f5f8ff 0%, #edf3ff 52%, #f5f8ff 100%);
}

.premium-modules-flow,
.premium-modules-flow::before,
.premium-modules-flow::after {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.premium-modules-flow {
  z-index: -1;
}

.premium-modules-flow::before {
  content: '';
  opacity: 0.62;
  background:
    linear-gradient(146deg, rgba(131, 173, 255, 0.18) 0%, rgba(131, 173, 255, 0) 54%),
    linear-gradient(212deg, rgba(90, 129, 235, 0.16) 0%, rgba(90, 129, 235, 0) 62%);
}

.premium-modules-flow::after {
  content: '';
  opacity: 0.64;
  background: radial-gradient(540px 260px at 72% 16%, rgba(255, 255, 255, 0.68), transparent 72%);
}

.premium-modules-stack {
  display: grid;
  gap: clamp(1.4rem, 3vw, 2.3rem);
}

.premium-module-card {
  display: grid;
  gap: clamp(1rem, 2.2vw, 1.8rem);
  padding: clamp(1rem, 2vw, 1.3rem);
  border-radius: clamp(24px, 3vw, 34px);
  border: 1px solid rgba(160, 193, 255, 0.62);
  background: linear-gradient(150deg, rgba(255, 255, 255, 0.72), rgba(224, 236, 255, 0.58));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.86),
    0 28px 54px rgba(30, 66, 139, 0.12);
  backdrop-filter: blur(15px) saturate(145%);
  -webkit-backdrop-filter: blur(15px) saturate(145%);
}

.premium-module-video-frame {
  position: relative;
  border-radius: clamp(18px, 2.8vw, 28px);
  overflow: hidden;
  aspect-ratio: 16 / 9;
  border: 1px solid rgba(152, 188, 255, 0.58);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.6) inset,
    0 24px 48px rgba(25, 56, 121, 0.22),
    0 0 28px rgba(91, 147, 255, 0.22);
}

.premium-module-video-frame img,
.premium-module-video-frame video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.premium-module-video-overlay {
  position: absolute;
  inset: auto 0 0;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 0.8rem 1rem;
  background: linear-gradient(180deg, rgba(5, 16, 42, 0) 0%, rgba(6, 21, 58, 0.78) 70%);
  color: #f5f8ff;
}

.premium-module-video-overlay p {
  margin: 0;
  color: #f5f8ff;
  font-weight: 500;
}

.premium-play-button {
  width: 52px;
  height: 52px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  color: #1a56da;
  background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.96), rgba(188, 217, 255, 0.9));
  box-shadow: 0 0 0 10px rgba(114, 161, 255, 0.2), 0 10px 22px rgba(9, 27, 69, 0.3);
  font-size: 1.2rem;
}

.premium-module-content > h2 {
  margin-bottom: 0.8rem;
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4.3vw, 3.6rem);
  line-height: 0.96;
  letter-spacing: -0.015em;
  color: #0e1a49;
}

.premium-module-content > h2 span {
  background: linear-gradient(100deg, #1c56da 0%, #79a9ff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.premium-module-content > p {
  color: #3f5786;
  max-width: 65ch;
}

.premium-feature-grid {
  display: grid;
  gap: 0.7rem;
  margin-bottom: 1rem;
}

.premium-feature-pill {
  border-radius: 16px;
  padding: 0.82rem 0.9rem;
  border: 1px solid rgba(165, 196, 255, 0.6);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.68), rgba(230, 240, 255, 0.62));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.88);
}

.premium-feature-pill h3 {
  margin: 0;
  font-size: 1.06rem;
  color: #1b3163;
}

.premium-feature-pill p {
  margin: 0.2rem 0 0;
  color: #4b6495;
  font-size: 0.94rem;
}

.premium-live-card {
  position: relative;
  margin-bottom: 1rem;
  padding: 0.92rem;
  border-radius: 20px;
  border: 1px solid rgba(160, 194, 255, 0.72);
  background: linear-gradient(156deg, rgba(255, 255, 255, 0.74), rgba(222, 236, 255, 0.62));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.95),
    0 18px 34px rgba(36, 71, 145, 0.18),
    0 0 22px rgba(72, 128, 245, 0.18);
  backdrop-filter: blur(12px) saturate(145%);
  -webkit-backdrop-filter: blur(12px) saturate(145%);
}

.premium-live-head {
  display: grid;
  gap: 0.15rem;
  margin-bottom: 0.68rem;
}

.premium-live-head strong {
  font-family: 'Montserrat', sans-serif;
  color: #18356f;
}

.premium-live-head span {
  font-size: 0.9rem;
  color: #56709f;
}

.premium-live-feed {
  position: relative;
  display: grid;
  gap: 0.62rem;
  max-height: 236px;
  min-height: 236px;
  overflow: hidden;
}

.premium-live-fade {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 72px;
  border-radius: 0 0 20px 20px;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(234, 243, 255, 0) 0%, rgba(230, 240, 255, 0.96) 85%);
}

.premium-notification {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: 0.62rem;
  border-radius: 14px;
  padding: 0.62rem 0.74rem;
  border: 1px solid rgba(154, 189, 255, 0.68);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.75), rgba(215, 232, 255, 0.65));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.92),
    0 12px 20px rgba(34, 70, 144, 0.12);
  backdrop-filter: blur(7px);
  transform-origin: top center;
  will-change: transform, opacity;
  transition: transform 560ms cubic-bezier(0.22, 1, 0.36, 1), opacity 380ms ease;
}

.premium-notification.is-entering {
  animation: slideInFade 580ms cubic-bezier(0.22, 1, 0.36, 1) both;
  animation-delay: var(--enter-delay, 0ms);
}

.premium-notification.is-leaving {
  opacity: 0;
  transform: translateY(20px) scale(0.985);
}

@keyframes slideInFade {
  from {
    opacity: 0;
    transform: translateY(-24px) scale(0.985);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.premium-notification-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  font-size: 1.2rem;
  color: #fff;
  background: linear-gradient(145deg, #2f66e3, #7ca9ff);
  box-shadow: 0 8px 14px rgba(42, 82, 169, 0.28);
}

.premium-notification-text {
  min-width: 0;
}

.premium-notification-title {
  margin: 0;
  color: #132b5b;
  font-weight: 700;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.96rem;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.premium-notification-meta {
  margin: 0.08rem 0 0;
  color: #5673a5;
  font-size: 0.85rem;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.premium-stats {
  display: grid;
  gap: 0.58rem;
  margin-bottom: 1rem;
}

.premium-stat-item {
  border-radius: 16px;
  border: 1px solid rgba(167, 197, 255, 0.72);
  padding: 0.66rem 0.8rem 0.74rem;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.76), rgba(224, 236, 255, 0.68));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.92),
    0 14px 24px rgba(31, 69, 149, 0.12);
}

.premium-stat-item p {
  margin: 0;
  color: #4f6792;
  font-size: 0.84rem;
}

.premium-stat-item strong {
  display: block;
  margin-top: 0.1rem;
  font-family: 'Montserrat', sans-serif;
  color: #17376f;
  font-size: 1.2rem;
}

.premium-progress {
  margin-top: 0.35rem;
  height: 8px;
  border-radius: 999px;
  background: rgba(168, 194, 241, 0.45);
  overflow: hidden;
}

.premium-progress span {
  display: block;
  width: 0;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #2a63df 0%, #8db6ff 100%);
  box-shadow: 0 0 12px rgba(70, 122, 239, 0.42);
  transition: width 0.8s cubic-bezier(0.2, 0.72, 0.2, 1);
}

.premium-pricing-section {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background:
    radial-gradient(1200px 520px at 7% -8%, rgba(110, 154, 255, 0.2), transparent 66%),
    radial-gradient(1000px 440px at 94% 102%, rgba(97, 142, 255, 0.2), transparent 70%),
    linear-gradient(180deg, #f8faff 0%, #edf3ff 54%, #f8fbff 100%);
}

.premium-pricing-flow {
  position: absolute;
  inset: auto auto 9% -12%;
  width: min(42vw, 560px);
  aspect-ratio: 1.7;
  background: radial-gradient(circle at 22% 46%, rgba(176, 205, 255, 0.34), rgba(176, 205, 255, 0) 70%);
  filter: blur(2px);
  opacity: 0.74;
  pointer-events: none;
  z-index: -1;
}

.premium-pricing-flow::before {
  content: '';
  position: absolute;
  inset: 10% 8%;
  border-radius: 999px;
  border: 1px solid rgba(153, 187, 255, 0.3);
  transform: rotate(-11deg);
}

.premium-pricing-flow--right {
  inset: 1% -14% auto auto;
  transform: scale(-1, 1);
}

.premium-pricing-shell {
  position: relative;
  transform: translate3d(0, var(--premium-parallax-shift, 0px), 0);
  transition: transform 0.42s cubic-bezier(0.2, 0.7, 0.2, 1);
}

.premium-pricing-header {
  text-align: center;
  max-width: 900px;
  margin: 0 auto clamp(1.6rem, 3vw, 2.5rem);
}

.premium-pricing-kicker {
  display: inline-block;
  font-family: 'Montserrat', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.26em;
  font-weight: 700;
  color: #2966d9;
  font-size: 0.85rem;
  position: relative;
  padding-bottom: 0.85rem;
}

.premium-pricing-kicker::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 90px;
  height: 4px;
  border-radius: 999px;
  transform: translateX(-50%);
  background: linear-gradient(90deg, rgba(45, 101, 217, 0.2) 0%, rgba(45, 101, 217, 0.9) 48%, rgba(45, 101, 217, 0.2) 100%);
}

.premium-pricing-header h2 {
  margin: 1rem auto 0.95rem;
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.3rem, 6vw, 5.4rem);
  line-height: 0.9;
  letter-spacing: -0.02em;
  max-width: 17ch;
  color: #091944;
}

.premium-pricing-header h2 span {
  background: linear-gradient(100deg, #1d5cb5 8%, #5e8eff 92%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.premium-pricing-header p {
  margin: 0 auto;
  max-width: 70ch;
  color: #49608e;
  font-size: clamp(1rem, 2vw, 1.18rem);
}

.premium-pricing-grid {
  display: grid;
  gap: clamp(1rem, 2.2vw, 1.5rem);
  grid-template-columns: 1fr;
  align-items: stretch;
}

.premium-plan-card {
  position: relative;
  border-radius: 30px;
  padding: clamp(1.2rem, 2.8vw, 1.8rem);
  border: 1px solid rgba(173, 202, 255, 0.64);
  background: linear-gradient(150deg, rgba(255, 255, 255, 0.76), rgba(226, 237, 255, 0.62));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.95),
    0 24px 40px rgba(29, 67, 145, 0.14);
  backdrop-filter: blur(16px) saturate(145%);
  -webkit-backdrop-filter: blur(16px) saturate(145%);
  display: grid;
  gap: 0.9rem;
  transition: transform 0.34s ease, box-shadow 0.34s ease, border-color 0.34s ease;
}

.premium-plan-card:hover,
.premium-plan-card:focus-within {
  transform: translateY(-10px) scale(1.02);
  border-color: rgba(118, 173, 255, 0.88);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.92),
    0 34px 54px rgba(28, 66, 142, 0.24),
    0 0 28px rgba(92, 152, 255, 0.36);
}

.premium-plan-icon {
  width: 54px;
  height: 54px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  color: #2f6ce1;
  background: linear-gradient(156deg, rgba(255, 255, 255, 0.96), rgba(210, 228, 255, 0.94));
  border: 1px solid rgba(176, 204, 255, 0.8);
  box-shadow: 0 10px 20px rgba(45, 96, 200, 0.2);
}

.premium-plan-icon svg {
  width: 26px;
  height: 26px;
}

.premium-plan-card h3 {
  margin: 0;
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4.4vw, 3rem);
  line-height: 0.95;
  color: #0d1b47;
}

.premium-plan-summary {
  margin: 0;
  color: #4a628f;
  min-height: 4.8em;
}

.premium-plan-price-wrap {
  padding-top: 0.95rem;
  border-top: 1px solid rgba(164, 191, 244, 0.45);
}

.premium-plan-price {
  margin: 0;
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.5rem, 5vw, 4.2rem);
  line-height: 0.88;
  color: #08183e;
}

.premium-plan-billing {
  margin: 0.45rem 0 0;
  color: #4b6798;
  font-weight: 500;
}

.premium-plan-features {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.58rem;
}

.premium-plan-features li {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: start;
  gap: 0.6rem;
  color: #1f3769;
  font-weight: 500;
}

.premium-plan-features li::before {
  content: '✓';
  width: 1.2rem;
  height: 1.2rem;
  border-radius: 999px;
  display: grid;
  place-items: center;
  font-size: 0.82rem;
  color: #255fcb;
  border: 1px solid rgba(56, 110, 222, 0.42);
  background: linear-gradient(150deg, rgba(255, 255, 255, 0.92), rgba(199, 221, 255, 0.85));
}

.premium-plan-btn {
  margin-top: 0.6rem;
  text-decoration: none;
  border-radius: 999px;
  border: 1px solid rgba(122, 164, 240, 0.38);
  background: linear-gradient(146deg, rgba(255, 255, 255, 0.98), rgba(232, 241, 255, 0.95));
  color: #1f55c6;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  min-height: 50px;
  padding: 0.7rem 1.2rem;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.premium-plan-btn:hover,
.premium-plan-btn:focus-visible {
  transform: translateY(-2px) scale(1.01);
  box-shadow: 0 16px 30px rgba(37, 83, 179, 0.3), 0 0 22px rgba(112, 168, 255, 0.44);
  background: linear-gradient(146deg, rgba(255, 255, 255, 0.99), rgba(217, 232, 255, 0.95));
}

.premium-plan-card--featured {
  transform: translateY(-8px) scale(1.01);
  border-color: rgba(139, 191, 255, 0.75);
  background:
    radial-gradient(130% 130% at 10% 2%, rgba(120, 163, 255, 0.45), rgba(120, 163, 255, 0) 55%),
    linear-gradient(156deg, rgba(6, 32, 94, 0.94), rgba(17, 56, 140, 0.96));
  box-shadow:
    inset 0 1px 0 rgba(192, 221, 255, 0.62),
    0 0 0 1px rgba(132, 189, 255, 0.44),
    0 36px 62px rgba(8, 37, 104, 0.48),
    0 0 28px rgba(92, 152, 255, 0.5);
}

.premium-plan-card--featured::after {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: inherit;
  border: 1px solid rgba(140, 204, 255, 0.52);
  box-shadow: 0 0 26px rgba(102, 168, 255, 0.52);
  pointer-events: none;
}

.premium-plan-card--featured h3,
.premium-plan-card--featured .premium-plan-price,
.premium-plan-card--featured .premium-plan-features li,
.premium-plan-card--featured .premium-plan-billing {
  color: #f6fbff;
}

.premium-plan-card--featured .premium-plan-summary {
  color: rgba(232, 242, 255, 0.92);
}

.premium-plan-card--featured .premium-plan-price-wrap {
  border-top-color: rgba(145, 190, 255, 0.36);
}

.premium-plan-card--featured .premium-plan-icon {
  color: #f9fbff;
  border-color: rgba(149, 199, 255, 0.56);
  background: linear-gradient(156deg, rgba(91, 143, 255, 0.68), rgba(37, 92, 202, 0.84));
  box-shadow: 0 12px 24px rgba(18, 55, 146, 0.54);
}

.premium-plan-card--featured .premium-plan-features li::before {
  border-color: rgba(188, 218, 255, 0.5);
  color: #ffffff;
  background: linear-gradient(140deg, rgba(88, 141, 255, 0.92), rgba(153, 202, 255, 0.88));
}

.premium-plan-card--featured .premium-plan-btn {
  border-color: rgba(222, 239, 255, 0.78);
  color: #1c54ca;
  background: linear-gradient(145deg, rgba(252, 255, 255, 0.99), rgba(227, 239, 255, 0.96));
  box-shadow: 0 16px 30px rgba(7, 25, 69, 0.3);
}

.premium-plan-badge {
  position: absolute;
  top: -17px;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 999px;
  padding: 0.48rem 1rem;
  background: linear-gradient(145deg, #1d5bc0, #2f7fff);
  color: #eff6ff;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  letter-spacing: 0.03em;
  font-size: 0.78rem;
  text-transform: uppercase;
  box-shadow: 0 12px 24px rgba(17, 54, 146, 0.4);
}

.premium-section-kicker {
  display: inline-block;
  font-family: 'Montserrat', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.24em;
  font-weight: 700;
  color: #2966d9;
  font-size: 0.84rem;
  position: relative;
  padding-bottom: 0.85rem;
}

.premium-section-kicker::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 82px;
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(45, 101, 217, 0.95), rgba(45, 101, 217, 0.25));
}

.premium-faq-section,
.premium-contact-section {
  position: relative;
  z-index: 1;
  overflow: hidden;
  isolation: isolate;
  background:
    radial-gradient(920px 440px at -2% 8%, rgba(141, 178, 255, 0.2), transparent 64%),
    radial-gradient(860px 420px at 102% 94%, rgba(159, 192, 255, 0.18), transparent 66%),
    linear-gradient(180deg, #f8fbff 0%, #edf3ff 55%, #f9fbff 100%);
}

.premium-faq-flow,
.premium-contact-flow {
  position: absolute;
  inset: auto auto 8% -14%;
  width: min(44vw, 590px);
  aspect-ratio: 1.75;
  background: radial-gradient(circle at 24% 50%, rgba(168, 201, 255, 0.32), rgba(168, 201, 255, 0) 72%);
  filter: blur(2px);
  opacity: 0.72;
  pointer-events: none;
  z-index: -1;
}

.premium-faq-flow::before,
.premium-contact-flow::before {
  content: '';
  position: absolute;
  inset: 9% 7%;
  border-radius: 999px;
  border: 1px solid rgba(154, 188, 255, 0.32);
  transform: rotate(-11deg);
}

.premium-faq-flow--right,
.premium-contact-flow--right {
  inset: -2% -16% auto auto;
  transform: scale(-1, 1);
}

.premium-faq-shell,
.premium-contact-shell {
  position: relative;
  transform: translate3d(0, var(--premium-parallax-shift, 0px), 0);
  transition: transform 0.42s cubic-bezier(0.2, 0.7, 0.2, 1);
}

.premium-faq-grid,
.premium-contact-grid {
  display: grid;
  gap: clamp(1.2rem, 2.4vw, 2.4rem);
}

.premium-faq-copy h2,
.premium-contact-copy h2 {
  margin: 1.02rem 0 0.9rem;
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.15rem, 5.4vw, 5rem);
  line-height: 0.92;
  letter-spacing: -0.02em;
  color: #091944;
}

.premium-faq-copy h2 span,
.premium-contact-copy h2 span {
  background: linear-gradient(102deg, #1d5cb5 8%, #6f97ff 92%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.premium-faq-copy p,
.premium-contact-copy p {
  margin: 0;
  color: #49608e;
  font-size: clamp(1rem, 2.1vw, 1.2rem);
  line-height: 1.5;
  max-width: 64ch;
}

.premium-faq-logo-card {
  margin-top: clamp(1.2rem, 2vw, 1.8rem);
  border-radius: 26px;
  border: 1px solid rgba(176, 207, 255, 0.72);
  background: linear-gradient(155deg, rgba(255, 255, 255, 0.9), rgba(225, 237, 255, 0.78));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.95),
    0 26px 44px rgba(29, 63, 138, 0.16);
  backdrop-filter: blur(16px) saturate(145%);
  -webkit-backdrop-filter: blur(16px) saturate(145%);
  padding: clamp(0.95rem, 1.8vw, 1.35rem);
  max-width: 430px;
}

.premium-faq-logo-card img {
  display: block;
  width: 100%;
  height: auto;
}

.premium-faq-accordion {
  display: grid;
  gap: 0.72rem;
}

.premium-faq-item {
  border-radius: 22px;
  border: 1px solid rgba(170, 201, 255, 0.66);
  background: linear-gradient(151deg, rgba(255, 255, 255, 0.83), rgba(226, 238, 255, 0.72));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.95),
    0 12px 24px rgba(36, 79, 167, 0.12);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  overflow: hidden;
  transition: transform 0.32s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.32s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.28s ease;
}

.premium-faq-item:hover,
.premium-faq-item:focus-within {
  transform: translateY(-4px);
  border-color: rgba(120, 175, 255, 0.88);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.95),
    0 16px 30px rgba(36, 79, 167, 0.18),
    0 0 20px rgba(105, 165, 255, 0.28);
}

.premium-faq-trigger {
  width: 100%;
  border: 0;
  background: none;
  color: #111f4d;
  transition: color 0.24s ease;
  padding: clamp(1rem, 2vw, 1.25rem) clamp(1rem, 2.6vw, 1.6rem);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  text-align: left;
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.8rem, 3.2vw, 2.5rem);
  line-height: 0.98;
  cursor: pointer;
}

.premium-faq-trigger:focus-visible {
  outline: 2px solid #3d78e7;
  outline-offset: -2px;
}

.premium-faq-icon {
  font-family: 'Montserrat', sans-serif;
  color: #2f67db;
  font-size: 2.1rem;
  line-height: 1;
  flex-shrink: 0;
}

.premium-faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 340ms cubic-bezier(0.25, 0.82, 0.2, 1), opacity 280ms ease;
  opacity: 0;
}

.premium-faq-answer > p {
  min-height: 0;
  overflow: hidden;
  margin: 0;
  padding: 0 clamp(1rem, 2.6vw, 1.6rem) 0;
  color: #4a6595;
  font-size: clamp(0.98rem, 1.95vw, 1.12rem);
  line-height: 1.6;
}

.premium-faq-item.is-open .premium-faq-answer {
  grid-template-rows: 1fr;
  opacity: 1;
}

.premium-faq-item:hover .premium-faq-trigger,
.premium-faq-item:focus-within .premium-faq-trigger,
.premium-faq-item.is-open .premium-faq-trigger {
  color: #0a2d73;
}

.premium-faq-item.is-open .premium-faq-answer > p {
  padding-bottom: clamp(1.05rem, 1.9vw, 1.25rem);
}

.premium-faq-view-more {
  margin-top: 1rem;
  text-decoration: none;
  border-radius: 999px;
  border: 1px solid rgba(139, 180, 254, 0.5);
  background: linear-gradient(135deg, #2e75f4 0%, #1f4fcb 55%, #2f7dff 100%);
  color: #eff6ff;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  min-height: 54px;
  padding: 0.75rem 1.7rem;
  box-shadow:
    inset 0 1px 0 rgba(230, 244, 255, 0.85),
    0 16px 32px rgba(27, 73, 171, 0.32),
    0 0 18px rgba(96, 155, 255, 0.45);
  transition: transform 0.24s ease, box-shadow 0.24s ease;
}

.premium-faq-view-more:hover {
  transform: translateY(-2px);
  box-shadow:
    inset 0 1px 0 rgba(230, 244, 255, 0.85),
    0 22px 34px rgba(24, 68, 165, 0.36),
    0 0 24px rgba(114, 171, 255, 0.52);
}

.premium-faq-help {
  margin-top: 0.86rem;
  color: #4f6896;
  font-size: 0.98rem;
}

.premium-contact-copy {
  max-width: 710px;
}

.premium-contact-benefits {
  margin-top: clamp(1.2rem, 2.1vw, 1.8rem);
  display: grid;
  gap: 0.86rem;
}

.premium-benefit-card {
  border-radius: 24px;
  border: 1px solid rgba(172, 204, 255, 0.64);
  background: linear-gradient(153deg, rgba(255, 255, 255, 0.85), rgba(226, 238, 255, 0.76));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.94),
    0 16px 28px rgba(39, 84, 174, 0.14);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  padding: clamp(0.84rem, 1.6vw, 1rem) clamp(0.92rem, 2vw, 1.1rem);
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.85rem;
  align-items: center;
}

.premium-benefit-icon {
  width: 64px;
  height: 64px;
  border-radius: 20px;
  display: grid;
  place-items: center;
  color: #edf6ff;
  background: linear-gradient(152deg, rgba(36, 89, 215, 0.94), rgba(97, 143, 255, 0.94));
  border: 1px solid rgba(177, 208, 255, 0.72);
  box-shadow:
    inset 0 1px 0 rgba(220, 238, 255, 0.86),
    0 13px 24px rgba(33, 76, 165, 0.35);
}

.premium-benefit-icon svg {
  width: 30px;
  height: 30px;
}

.premium-benefit-card h3 {
  margin: 0;
  color: #142a5a;
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(1.35rem, 2.8vw, 2rem);
  line-height: 1;
}

.premium-benefit-card p {
  margin-top: 0.35rem;
  font-size: clamp(0.95rem, 1.85vw, 1.07rem);
}

.premium-contact-form-wrap {
  border-radius: clamp(26px, 4vw, 36px);
  border: 1px solid rgba(165, 198, 255, 0.68);
  background:
    radial-gradient(120% 160% at 12% -8%, rgba(149, 186, 255, 0.32), rgba(149, 186, 255, 0) 45%),
    linear-gradient(154deg, rgba(255, 255, 255, 0.9), rgba(221, 235, 255, 0.78));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.95),
    0 28px 50px rgba(24, 58, 129, 0.19),
    0 0 24px rgba(105, 156, 255, 0.26);
  backdrop-filter: blur(20px) saturate(150%);
  -webkit-backdrop-filter: blur(20px) saturate(150%);
  padding: clamp(1rem, 2.2vw, 1.6rem);
}

.premium-contact-form-wrap {
  transition: transform 0.34s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.34s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.28s ease;
}

.premium-contact-form-wrap:hover,
.premium-contact-form-wrap:focus-within {
  transform: translateY(-5px);
  border-color: rgba(124, 180, 255, 0.92);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.95),
    0 34px 56px rgba(24, 58, 129, 0.24),
    0 0 30px rgba(105, 156, 255, 0.34);
}

.premium-contact-form {
  display: grid;
  gap: 1rem;
}

.premium-contact-form h3 {
  margin: 0;
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.2rem, 4.5vw, 3.8rem);
  line-height: 0.92;
  text-align: center;
  color: #0a1945;
}

.premium-form-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.8rem;
}

.premium-form-grid label {
  display: grid;
  gap: 0.36rem;
  color: #19356f;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 0.92rem;
  line-height: 1.22;
}

.premium-label-text {
  display: inline-flex;
  align-items: baseline;
  gap: 0.24rem;
}

.premium-label-required {
  color: #215ed2;
  font-weight: 700;
  line-height: 1;
}

.premium-form-grid :is(input, select, textarea) {
  width: 100%;
  border-radius: 16px;
  border: 1px solid rgba(168, 198, 252, 0.75);
  background: linear-gradient(150deg, rgba(255, 255, 255, 0.94), rgba(232, 242, 255, 0.85));
  color: #1a366f;
  font: 500 1rem/1.4 'Inter', sans-serif;
  min-height: 53px;
  padding: 0.82rem 0.96rem;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.95);
  transition: border-color 0.24s ease, box-shadow 0.24s ease, background 0.24s ease;
}

.premium-form-grid textarea {
  min-height: 132px;
  resize: vertical;
}

.premium-form-grid select {
  appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, #3a70dd 50%),
    linear-gradient(135deg, #3a70dd 50%, transparent 50%);
  background-position:
    calc(100% - 20px) calc(50% + 1px),
    calc(100% - 13px) calc(50% + 1px);
  background-size: 7px 7px, 7px 7px;
  background-repeat: no-repeat;
  padding-right: 2.4rem;
}

.premium-form-grid :is(input, select, textarea):focus {
  outline: none;
  border-color: rgba(74, 127, 242, 0.95);
  box-shadow:
    0 0 0 3px rgba(58, 118, 236, 0.22),
    0 0 18px rgba(72, 129, 240, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.96);
  background: linear-gradient(150deg, rgba(255, 255, 255, 0.98), rgba(227, 239, 255, 0.9));
}

.premium-form-field-full {
  grid-column: 1 / -1;
}

.premium-contact-submit {
  border: 1px solid rgba(173, 214, 255, 0.72);
  border-radius: 999px;
  min-height: 58px;
  width: 100%;
  background: linear-gradient(135deg, #2e76f4 0%, #1f4fcb 55%, #2f83ff 100%);
  color: #f4f8ff;
  font-family: 'Montserrat', sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  box-shadow:
    inset 0 1px 0 rgba(238, 249, 255, 0.9),
    0 20px 34px rgba(21, 62, 156, 0.42),
    0 0 24px rgba(111, 167, 255, 0.52);
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.25s ease, filter 0.25s ease;
  will-change: transform;
}

/* When magnetic JS is active, it handles transform — only enhance shadow/filter */
.premium-contact-submit.button-mouse-follow:hover,
.premium-contact-submit.button-mouse-follow:focus-visible {
  box-shadow:
    inset 0 1px 0 rgba(238, 249, 255, 0.9),
    0 25px 42px rgba(16, 55, 146, 0.5),
    0 0 32px rgba(130, 181, 255, 0.62);
  filter: saturate(1.1) brightness(1.06);
}

/* Fallback for no-JS / touch – keep the lift effect */
.premium-contact-submit:not(.button-mouse-follow):hover,
.premium-contact-submit:not(.button-mouse-follow):focus-visible {
  transform: translateY(-3px) scale(1.015);
  box-shadow:
    inset 0 1px 0 rgba(238, 249, 255, 0.9),
    0 25px 42px rgba(16, 55, 146, 0.5),
    0 0 32px rgba(130, 181, 255, 0.62);
  filter: saturate(1.1) brightness(1.06);
}

.premium-contact-submit:focus-visible {
  outline: 2px solid #2f6fe3;
  outline-offset: 2px;
}

.premium-contact-note {
  margin: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  color: #4f6896;
  font-size: 0.98rem;
}

.premium-contact-note-icon {
  width: 20px;
  height: 20px;
  color: #2f67da;
}

.premium-contact-note-icon svg {
  width: 100%;
  height: 100%;
}

.premium-form-grid .premium-label-required {
  color: #215ed2;
  font-weight: 700;
}

.premium-form-grid :is(input, select, textarea):invalid[data-touched="true"] {
  border-color: rgba(220, 77, 112, 0.9);
  box-shadow: 0 0 0 3px rgba(220, 77, 112, 0.18), inset 0 1px 0 rgba(255, 255, 255, 0.95);
}

.premium-form-status {
  min-height: 1.45rem;
  margin: 0;
  font-size: 0.92rem;
  color: #35558f;
}

.premium-form-status.is-error {
  color: #b91c4f;
}

.premium-form-status.is-success {
  color: #0f7a4c;
}

.premium-captcha-wrap {
  border: 1px solid rgba(168, 198, 252, 0.68);
  border-radius: 16px;
  background: linear-gradient(150deg, rgba(255, 255, 255, 0.8), rgba(230, 242, 255, 0.62));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9);
  padding: 0.75rem;
  overflow: hidden;
}

.premium-captcha-wrap .h-captcha {
  display: flex;
  justify-content: center;
}

.premium-captcha-note {
  margin: 0.55rem 0 0;
  text-align: center;
  color: #4f6896;
  font-size: 0.83rem;
}

.premium-popup[hidden] {
  display: none;
}

.premium-popup {
  position: fixed;
  inset: 0;
  z-index: 1200;
  display: grid;
  place-items: center;
}

.premium-popup-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(2, 9, 32, 0.56);
  backdrop-filter: blur(2px);
}

.premium-popup-dialog {
  position: relative;
  width: min(94vw, 450px);
  border-radius: 24px;
  border: 1px solid rgba(154, 195, 255, 0.74);
  padding: 1.4rem 1.3rem 1.2rem;
  background: linear-gradient(158deg, rgba(255, 255, 255, 0.97), rgba(222, 236, 255, 0.95));
  box-shadow: 0 24px 48px rgba(15, 41, 103, 0.32), 0 0 26px rgba(95, 156, 255, 0.3);
  animation: premiumPopupIn 280ms cubic-bezier(0.16, 1, 0.3, 1);
}

.premium-popup-dialog h3 {
  margin: 0 0 0.45rem;
  font-size: clamp(1.45rem, 3.2vw, 2rem);
  color: #102a62;
}

.premium-popup-dialog p {
  margin: 0;
  color: #3f5d93;
}

.premium-popup-close {
  position: absolute;
  top: 0.6rem;
  right: 0.6rem;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  border: 1px solid rgba(143, 188, 255, 0.68);
  background: rgba(255, 255, 255, 0.82);
  color: #2f5ecc;
  font-size: 1.35rem;
  cursor: pointer;
}

.premium-popup-action {
  margin-top: 1rem;
  border: 1px solid rgba(132, 194, 255, 0.68);
  border-radius: 999px;
  min-height: 48px;
  padding: 0.6rem 1.25rem;
  background: linear-gradient(140deg, #1f62dd, #2e81ff);
  color: #eff6ff;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 16px 28px rgba(20, 59, 152, 0.36);
}

@keyframes premiumPopupIn {
  from {
    opacity: 0;
    transform: translateY(18px) scale(0.96);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.premium-magnetic,
.button-mouse-follow {
  transition: transform 0.22s ease, box-shadow 0.22s ease, filter 0.22s ease;
  will-change: transform;
}

.custom-cursor-enabled,
.custom-cursor-enabled * {
  cursor: none !important;
}

.custom-glass-cursor {
  position: fixed;
  top: 0;
  left: 0;
  width: clamp(20px, 1.5vw, 28px);
  height: auto;
  pointer-events: none;
  z-index: 9999;
  opacity: 0;
  transform: translate3d(-140px, -140px, 0) scale(1);
  transform-origin: 8px 7px;
  filter:
    drop-shadow(0 0 8px rgba(67, 148, 255, 0.44))
    drop-shadow(0 4px 11px rgba(9, 39, 122, 0.35));
  transition: opacity 0.18s ease, filter 0.22s ease;
  will-change: transform, opacity, filter;
}

.custom-cursor-enabled.has-pointer-inside .custom-glass-cursor {
  opacity: 0.96;
}

.custom-cursor-enabled.cursor-clicking .custom-glass-cursor {
  filter:
    drop-shadow(0 0 10px rgba(121, 188, 255, 0.58))
    drop-shadow(0 2px 8px rgba(8, 35, 111, 0.3));
}

@media (max-width: 1024px), (hover: none), (pointer: coarse) {
  .custom-cursor-enabled,
  .custom-cursor-enabled * {
    cursor: auto !important;
  }

  .custom-glass-cursor {
    display: none !important;
  }
}

@media (min-width: 760px) {
  .premium-pricing-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .premium-plan-card--featured {
    grid-column: span 2;
  }

  .premium-contact-copy h2 {
    max-width: 13ch;
  }

  .premium-form-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.95rem;
  }
}

@media (min-width: 980px) {
  .premium-faq-grid,
  .premium-contact-grid {
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    align-items: start;
  }

  .premium-contact-form-wrap {
    margin-top: var(--contact-form-shift, 0px);
  }
}

@media (max-width: 560px) {
  .premium-section-kicker {
    letter-spacing: 0.18em;
    font-size: 0.78rem;
  }

  .premium-faq-copy h2,
  .premium-contact-copy h2 {
    line-height: 0.95;
  }

  .premium-faq-trigger {
    font-size: clamp(1.45rem, 8.2vw, 1.95rem);
    line-height: 1.02;
  }

  .premium-faq-icon {
    font-size: 1.75rem;
  }

  .premium-benefit-card {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .premium-benefit-icon {
    margin: 0 auto;
  }

  .premium-contact-submit {
    font-size: 1.32rem;
  }
}

@media (min-width: 1100px) {
  .premium-pricing-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    align-items: end;
  }

  .premium-plan-card--featured {
    grid-column: auto;
  }
}

@media (max-width: 560px) {
  .premium-pricing-kicker {
    letter-spacing: 0.19em;
    font-size: 0.78rem;
  }

  .premium-pricing-header h2 {
    line-height: 0.93;
  }

  .premium-plan-summary {
    min-height: 0;
  }

  .premium-plan-card--featured {
    transform: translateY(-2px);
  }
}

@media (min-width: 720px) {
  .premium-feature-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .premium-stats {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (min-width: 980px) {
  .before-after-grid {
    grid-template-columns: minmax(210px, 280px) minmax(0, 1fr);
    gap: clamp(1.2rem, 2.4vw, 2.2rem);
  }

  .before-after-industries {
    grid-template-columns: 1fr;
    align-content: center;
  }

  .premium-module-card {
    grid-template-columns: minmax(0, 1.07fr) minmax(0, 1fr);
    align-items: start;
  }

  .premium-module-card--reverse .premium-module-media {
    order: 2;
  }

  .premium-module-card--reverse .premium-module-content {
    order: 1;
  }
}

@media (max-width: 899px) {
  .before-after-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.25rem;
  }
}

@media (max-width: 560px) {
  .ba-industry {
    padding: 0.78rem 0.82rem;
    border-radius: 14px;
  }

  .ba-industry-title {
    font-size: 0.95rem;
  }

  .ba-industry-meta {
    font-size: 0.79rem;
  }

  .ba-label {
    font-size: 0.66rem;
    letter-spacing: 0.12em;
  }

  .ba-drag-hint {
    font-size: 0.66rem;
  }
}

@media (min-width: 720px) {
  .split { grid-template-columns: 1fr 1fr; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(3, 1fr); }
}

@media (min-width: 900px) {
  .dashboard-showcase-grid {
    grid-template-columns: minmax(280px, 0.92fr) minmax(0, 1.08fr);
    gap: clamp(1.2rem, 2.4vw, 2.4rem);
  }

  .dashboard-carousel-shell {
    padding-right: 0.5rem;
  }

  .why-premium-grid {
    grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.18fr);
  }

  .why-premium-media {
    justify-self: end;
  }

  .why-detail-card {
    grid-template-columns: minmax(0, 1.06fr) minmax(0, 1fr);
  }

  .why-detail-card.reverse .why-detail-media {
    order: 2;
  }

  .why-detail-card.reverse .why-detail-copy {
    order: 1;
  }
}

@media (min-width: 1200px) {
  .why-pillars-cinematic {
    max-width: 620px;
  }

  .why-pillars {
    grid-template-columns: repeat(4, minmax(120px, 1fr));
    max-width: 620px;
  }

  .why-pillar-card {
    aspect-ratio: 1 / 1.02;
  }
}

@media (max-width: 899px) {
  .dashboard-copy-panel {
    order: 2;
  }

  .dashboard-carousel-shell {
    order: 1;
  }

  .ds-nav {
    width: 42px;
    height: 42px;
  }

  .why-premium-grid {
    gap: 1.15rem;
  }

  .why-premium-title {
    line-height: 1;
  }

  .why-premium-media {
    width: min(100%, 840px);
  }

  .why-pillars-cinematic {
    max-width: 560px;
  }

  .why-pillars-progress {
    display: none;
  }

  .why-detail-card {
    border-radius: 24px;
  }

  .why-detail-copy h3 {
    line-height: 1.08;
  }
}

@media (max-width: 560px) {
  .dashboard-copy-panel {
    border-radius: 22px;
    padding: 1rem;
  }

  .dashboard-feature {
    padding: 0.56rem;
  }

  .dashboard-feature-icon {
    width: 48px;
    height: 48px;
  }

  .ds-nav {
    display: none;
  }

  .why-pillars {
    grid-template-columns: repeat(2, minmax(132px, 1fr));
  }

  .why-detail-copy h3 {
    display: block;
    line-height: 1.16;
  }

  .why-detail-copy h3 .why-detail-icon {
    display: block;
    margin-bottom: 0.5rem;
  }

  .why-detail-title-text {
    display: block;
  }

  /* Let titles wrap naturally on mobile instead of the desktop hard break */
  .why-detail-title-text br {
    display: none;
  }

  .premium-module-card {
    border-radius: 22px;
    padding: 0.82rem;
  }

  .premium-module-video-overlay {
    padding: 0.65rem 0.72rem;
  }

  .premium-play-button {
    width: 42px;
    height: 42px;
    font-size: 1rem;
  }

  .premium-module-content > h2 {
    font-size: clamp(1.75rem, 9vw, 2.45rem);
    line-height: 0.97;
  }

  .premium-notification-icon {
    width: 40px;
    height: 40px;
    font-size: 1.05rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .why-pillar-card,
  .why-premium-media,
  .why-detail-card,
  .why-detail-icon img,
  .ba-industry,
  .ba-handle,
  .ba-before-layer,
  .dashboard-copy-panel .dashboard-copy-label,
  .dashboard-copy-panel .dashboard-copy-title,
  .dashboard-copy-panel .dashboard-copy-text,
  .dashboard-copy-panel .dashboard-feature-list,
  .dashboard-track,
  .dashboard-feature,
  .dashboard-feature-icon img,
  .ds-nav,
  .dashboard-dot,
  .premium-module-card,
  .premium-module-video-frame,
  .premium-feature-pill,
  .why-pillars-progress span,
  .premium-notification,
  .premium-progress span {
    transition: none;
  }

  .ba-handle,
  .ba-drag-hint {
    animation: none;
  }

  .premium-notification.is-entering {
    animation: none;
  }

  .why-pillar-card:hover,
  .why-premium-media:hover,
  .why-detail-card:hover,
  .ba-industry:hover,
  .dashboard-feature:hover,
  .ds-nav:hover {
    transform: none;
  }
}

@media (min-width: 980px) {
  .grid-4 { grid-template-columns: repeat(4, 1fr); }
}

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

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



/* === Premium Book a Call banner + Premium Footer === */
.premium-book-call-section {
  position: relative;
  isolation: isolate;
  padding-top: clamp(2.25rem, 4vw, 4rem);
  padding-bottom: clamp(1.5rem, 3vw, 2.5rem);
  background:
    radial-gradient(980px 320px at 10% 110%, rgba(37, 111, 236, 0.12), transparent 72%),
    radial-gradient(1100px 330px at 85% -10%, rgba(35, 102, 214, 0.15), transparent 70%),
    linear-gradient(180deg, #f3f6fb 0%, #edf2fb 100%);
}

.premium-book-call-flow {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.5;
  background: repeating-radial-gradient(circle at 18% -10%, rgba(72, 139, 255, 0.24) 0 1px, transparent 1px 22px);
}

.premium-book-call-wrap {
  position: relative;
  z-index: 1;
  transform: translate3d(0, var(--premium-parallax-shift, 0px), 0);
  transition: transform 0.42s cubic-bezier(0.2, 0.7, 0.2, 1);
}

.premium-book-call-banner {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: auto minmax(0, 1.3fr) minmax(0, 1fr);
  align-items: center;
  gap: clamp(1rem, 2vw, 2rem);
  padding: clamp(1rem, 2.2vw, 1.35rem) clamp(1rem, 2.6vw, 1.75rem);
  border-radius: clamp(1.1rem, 2.4vw, 1.7rem);
  background:
    linear-gradient(152deg, rgba(7, 31, 76, 0.95) 10%, rgba(5, 24, 62, 0.95) 100%),
    radial-gradient(circle at 15% 45%, rgba(53, 146, 255, 0.2), transparent 60%);
  border: 1px solid rgba(112, 164, 255, 0.38);
  box-shadow:
    0 38px 74px rgba(4, 11, 38, 0.58),
    inset 0 1px 0 rgba(194, 223, 255, 0.32),
    0 0 0 1px rgba(31, 112, 240, 0.2);
  transition: box-shadow 0.28s ease, border-color 0.28s ease;
}

.premium-book-call-banner::before,
.premium-book-call-banner::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.premium-book-call-banner::before {
  inset: auto -22% -55% 48%;
  height: clamp(170px, 24vw, 290px);
  background: radial-gradient(circle, rgba(37, 130, 255, 0.42), transparent 72%);
  filter: blur(16px);
}

.premium-book-call-banner::after {
  inset: -120% auto auto 40%;
  width: 44%;
  aspect-ratio: 1;
  background: radial-gradient(circle, rgba(155, 216, 255, 0.25), transparent 68%);
}

.premium-book-call-icon {
  width: clamp(4rem, 8vw, 5.6rem);
  height: clamp(4rem, 8vw, 5.6rem);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #d9ebff;
  background:
    radial-gradient(circle at 30% 25%, rgba(255, 255, 255, 0.25), transparent 48%),
    linear-gradient(145deg, rgba(17, 80, 191, 0.78), rgba(5, 39, 109, 0.95));
  border: 1px solid rgba(118, 181, 255, 0.68);
  box-shadow:
    0 0 0 6px rgba(54, 121, 224, 0.18),
    0 0 34px rgba(66, 147, 255, 0.62),
    inset 0 1px 1px rgba(255, 255, 255, 0.36);
}

.premium-book-call-icon svg {
  width: 48%;
  height: 48%;
}

.premium-book-call-copy,
.premium-book-call-actions {
  min-width: 0;
  position: relative;
  z-index: 1;
}

.premium-book-call-copy h2 {
  margin: 0;
  color: #f4f8ff;
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 3.5vw, 3.2rem);
  line-height: 0.95;
  letter-spacing: -0.01em;
}

.premium-book-call-copy h2 span {
  color: #2f8eff;
}

.premium-book-call-copy p {
  margin: 0.5rem 0 0;
  max-width: 56ch;
  color: rgba(222, 235, 255, 0.9);
  font-size: clamp(1rem, 1.26vw, 1.18rem);
  font-family: 'Inter', sans-serif;
}

.premium-book-call-actions {
  justify-self: end;
  width: min(100%, 390px);
  display: grid;
  gap: 0.62rem;
  padding-left: clamp(0.9rem, 1.7vw, 1.35rem);
  border-left: 1px solid rgba(146, 183, 248, 0.35);
}

.premium-book-call-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0.4rem 1.25rem 0.4rem 0.4rem;
  border-radius: 999px;
  border: 1px solid rgba(132, 194, 255, 0.7);
  background: linear-gradient(140deg, #0059f0, #2b8bff 58%, #005ef8 100%);
  color: #ecf5ff;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.83rem;
  transition: transform 0.25s ease, box-shadow 0.25s ease, filter 0.25s ease;
  box-shadow:
    0 16px 35px rgba(0, 50, 160, 0.5),
    inset 0 1px 1px rgba(255, 255, 255, 0.4),
    0 0 20px rgba(39, 128, 255, 0.4);
}

.premium-book-call-button:hover,
.premium-book-call-button:focus-visible {
  transform: translateY(-2px);
  box-shadow:
    0 20px 42px rgba(0, 50, 160, 0.56),
    inset 0 1px 1px rgba(255, 255, 255, 0.4),
    0 0 28px rgba(39, 128, 255, 0.55);
  filter: saturate(1.08);
}

.premium-book-call-note {
  margin: 0;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: rgba(207, 225, 255, 0.95);
  font-size: 0.92rem;
  font-family: 'Inter', sans-serif;
}

.premium-book-call-note-icon {
  width: 1rem;
  height: 1rem;
  display: inline-grid;
  place-items: center;
  color: #73a8ff;
  flex-shrink: 0;
}

.premium-book-call-note-icon svg {
  width: 100%;
  height: 100%;
}

.site-footer.premium-footer {
  position: relative;
  margin-top: 0;
  overflow: hidden;
  color: #d8e8ff;
  background:
    radial-gradient(1200px 500px at -5% 8%, rgba(32, 99, 219, 0.24), transparent 62%),
    radial-gradient(1040px 460px at 100% 100%, rgba(17, 77, 193, 0.24), transparent 58%),
    linear-gradient(160deg, #041334 0%, #031032 45%, #020a22 100%);
  padding: clamp(2.3rem, 4.2vw, 3.6rem) 0 2rem;
}

.premium-footer-flow {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 40% 0%, rgba(120, 182, 255, 0.18), transparent 40%),
    radial-gradient(circle at 10% 84%, rgba(43, 126, 255, 0.2), transparent 42%),
    repeating-radial-gradient(circle at 100% 90%, rgba(95, 160, 255, 0.16) 0 1px, transparent 1px 16px);
  opacity: 0.85;
}

.premium-footer-shell {
  position: relative;
  z-index: 1;
}

.premium-footer-top {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(0, 1.45fr) minmax(0, 1.08fr);
  gap: clamp(1rem, 2vw, 1.6rem);
  align-items: stretch;
}

.premium-footer-brand-card,
.premium-footer-nav-card,
.premium-footer-contact-card,
.premium-footer-bottom {
  position: relative;
  border-radius: clamp(1rem, 2vw, 1.45rem);
  border: 1px solid rgba(111, 168, 255, 0.26);
  background: linear-gradient(165deg, rgba(10, 38, 94, 0.58), rgba(4, 18, 49, 0.62));
  box-shadow:
    inset 0 1px 0 rgba(189, 220, 255, 0.2),
    0 26px 45px rgba(0, 6, 20, 0.42);
  backdrop-filter: blur(8px);
  overflow: hidden;
  isolation: isolate;
  transition: box-shadow 0.28s ease, border-color 0.28s ease;
}

.premium-footer-brand-card::before,
.premium-footer-nav-card::before,
.premium-footer-contact-card::before,
.premium-footer-bottom::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  background: linear-gradient(140deg, rgba(255, 255, 255, 0.15), transparent 30%);
  mix-blend-mode: screen;
  opacity: 0.35;
}

.premium-footer-brand-card > *,
.premium-footer-nav-card > *,
.premium-footer-contact-card > *,
.premium-footer-bottom > * {
  position: relative;
  z-index: 1;
}

.premium-footer-brand-card,
.premium-footer-contact-card {
  padding: clamp(1.15rem, 2vw, 1.65rem);
}

.premium-footer-brand-card img {
  width: min(100%, 320px);
  height: auto;
  display: block;
}

.premium-footer-brand-card p {
  margin: 1rem 0 1.2rem;
  color: rgba(217, 231, 255, 0.86);
  line-height: 1.5;
  max-width: 32ch;
  font-family: 'Inter', sans-serif;
}

.premium-footer-socials {
  display: flex;
  flex-wrap: wrap;
  gap: 0.72rem;
}

.premium-social-link {
  width: 2.8rem;
  height: 2.8rem;
  border-radius: 50%;
  display: inline-grid;
  place-items: center;
  color: #d7e9ff;
  text-decoration: none;
  border: 1px solid rgba(109, 168, 255, 0.45);
  background: linear-gradient(145deg, rgba(34, 93, 197, 0.5), rgba(11, 40, 100, 0.4));
  box-shadow:
    0 9px 20px rgba(2, 20, 66, 0.55),
    inset 0 1px 0 rgba(212, 236, 255, 0.24);
  transition: transform 0.2s ease, color 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.premium-social-link svg {
  width: 1.15rem;
  height: 1.15rem;
  display: block;
}

.premium-social-link:hover,
.premium-social-link:focus-visible {
  transform: translateY(-2px);
  color: #ffffff;
  border-color: rgba(153, 204, 255, 0.75);
  box-shadow:
    0 12px 24px rgba(7, 35, 95, 0.58),
    0 0 18px rgba(73, 152, 255, 0.4),
    inset 0 1px 0 rgba(222, 241, 255, 0.28);
}

.premium-footer-nav-card {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(0.9rem, 1.6vw, 1.25rem);
  padding: clamp(1.15rem, 2vw, 1.6rem);
}

.premium-footer-col {
  display: grid;
  align-content: start;
  gap: 0.62rem;
}

.premium-footer-col + .premium-footer-col {
  border-left: 1px solid rgba(126, 170, 240, 0.2);
  padding-left: clamp(0.8rem, 1.4vw, 1.15rem);
}

.premium-footer-col-icon {
  width: 2.05rem;
  height: 2.05rem;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #99c5ff;
  background: linear-gradient(145deg, rgba(26, 87, 195, 0.58), rgba(8, 37, 98, 0.42));
  border: 1px solid rgba(99, 159, 246, 0.5);
  font-size: 1rem;
  box-shadow: 0 0 16px rgba(74, 139, 243, 0.34);
}

.premium-footer-col h3,
.premium-footer-contact-card h3 {
  margin: 0.3rem 0 0.2rem;
  color: #e9f2ff;
  letter-spacing: 0.14em;
  font-size: 0.9rem;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
}

.premium-footer-col a {
  color: rgba(220, 234, 255, 0.88);
  text-decoration: none;
  font-size: 1.06rem;
  padding: 0.28rem 0;
  transition: color 0.22s ease, transform 0.22s ease;
  font-family: 'Inter', sans-serif;
  width: fit-content;
}

.premium-footer-col a::before {
  content: "›";
  color: #4c98ff;
  margin-right: 0.42rem;
  opacity: 0.8;
}

.premium-footer-col a:hover,
.premium-footer-col a:focus-visible {
  color: #ffffff;
  transform: translateX(3px);
}

.premium-footer-col a:hover::before,
.premium-footer-col a:focus-visible::before {
  opacity: 1;
}

.premium-footer-contact-card {
  display: grid;
  align-content: start;
  gap: 0.85rem;
}

.premium-footer-contact-link {
  margin: 0;
  color: rgba(220, 234, 255, 0.9);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.52rem;
  font-size: 1.03rem;
  font-family: 'Inter', sans-serif;
  width: fit-content;
}

.premium-footer-contact-link span {
  width: 2.05rem;
  height: 2.05rem;
  border-radius: 50%;
  display: inline-grid;
  place-items: center;
  color: #b0d2ff;
  background: linear-gradient(145deg, rgba(24, 81, 182, 0.56), rgba(8, 36, 95, 0.4));
  border: 1px solid rgba(119, 172, 253, 0.4);
  box-shadow: 0 0 12px rgba(75, 148, 255, 0.25);
  flex-shrink: 0;
}

.premium-footer-contact-link:hover,
.premium-footer-contact-link:focus-visible {
  color: #ffffff;
}

.premium-footer-location {
  pointer-events: none;
}

.premium-footer-consult-btn {
  margin-top: 0.85rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.58rem;
  padding: 0.8rem 1rem;
  border-radius: 999px;
  text-decoration: none;
  color: #edf5ff;
  border: 1px solid rgba(132, 194, 255, 0.64);
  background: linear-gradient(145deg, rgba(0, 84, 233, 0.97), rgba(52, 136, 255, 0.9));
  box-shadow: 0 14px 26px rgba(1, 35, 112, 0.52), 0 0 18px rgba(52, 137, 255, 0.38);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
  font-family: 'Montserrat', sans-serif;
}

.premium-footer-consult-btn:hover,
.premium-footer-consult-btn:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 20px 32px rgba(1, 35, 112, 0.58), 0 0 22px rgba(76, 151, 255, 0.48);
}

.premium-footer-consult-icon {
  width: 1.85rem;
  height: 1.85rem;
  border-radius: 50%;
  display: inline-grid;
  place-items: center;
  font-size: 0.96rem;
  background: linear-gradient(155deg, rgba(231, 247, 255, 0.28), rgba(46, 123, 255, 0.25));
  border: 1px solid rgba(181, 222, 255, 0.52);
  box-shadow: inset 0 0 0 1px rgba(181, 222, 255, 0.16);
  flex-shrink: 0;
}

.premium-footer-consult-icon svg {
  width: 17px;
  height: 17px;
}

.premium-footer-bottom {
  margin-top: clamp(1rem, 1.8vw, 1.55rem);
  padding: clamp(0.9rem, 1.8vw, 1.25rem) clamp(1rem, 2vw, 1.4rem);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
  align-items: center;
  border-top: 1px solid rgba(111, 168, 255, 0.18);
}

.premium-footer-bottom p {
  margin: 0;
  color: rgba(212, 229, 255, 0.88);
  font-family: 'Inter', sans-serif;
  font-size: clamp(0.88rem, 1.05vw, 0.97rem);
  line-height: 1.35;
}

.premium-footer-copy,
.premium-footer-family {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
}

.premium-footer-copy {
  justify-self: start;
}

.premium-footer-copy span {
  width: 1.8rem;
  height: 1.8rem;
  border-radius: 50%;
  display: inline-grid;
  place-items: center;
  background: rgba(20, 71, 166, 0.52);
  border: 1px solid rgba(115, 169, 255, 0.45);
  flex-shrink: 0;
}

.premium-footer-legal {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  justify-self: center;
  flex-wrap: wrap;
}

.premium-footer-legal a {
  color: rgba(225, 238, 255, 0.9);
  text-decoration: none;
  text-underline-offset: 3px;
  transition: color 0.2s ease;
  font-family: 'Inter', sans-serif;
}

.premium-footer-legal a:hover,
.premium-footer-legal a:focus-visible {
  color: #fff;
  text-decoration: underline;
}

.premium-footer-legal span {
  opacity: 0.65;
}

.premium-footer-family {
  justify-self: end;
}

.premium-footer-family img {
  width: 2.15rem;
  height: 2.15rem;
  border-radius: 50%;
  border: 1px solid rgba(110, 163, 251, 0.5);
  box-shadow: 0 0 12px rgba(66, 141, 255, 0.4);
  object-fit: cover;
  flex-shrink: 0;
}

.premium-footer-family span {
  color: rgba(217, 232, 255, 0.87);
}

.premium-book-call-button:focus-visible,
.premium-social-link:focus-visible,
.premium-footer-col a:focus-visible,
.premium-footer-consult-btn:focus-visible,
.premium-footer-contact-link:focus-visible,
.premium-footer-legal a:focus-visible {
  outline: 2px solid rgba(165, 208, 255, 0.86);
  outline-offset: 2px;
}

.premium-book-call-banner:hover,
.premium-footer-brand-card:hover,
.premium-footer-nav-card:hover,
.premium-footer-contact-card:hover,
.premium-footer-bottom:hover {
  border-color: rgba(141, 194, 255, 0.35);
  box-shadow:
    inset 0 1px 0 rgba(189, 220, 255, 0.24),
    0 30px 54px rgba(0, 8, 25, 0.48),
    0 0 24px rgba(53, 133, 245, 0.2);
}

.premium-book-call-banner:hover .premium-book-call-icon,
.premium-footer-contact-card:hover .premium-footer-consult-icon,
.premium-footer-brand-card:hover .premium-social-link,
.premium-footer-nav-card:hover .premium-footer-col-icon {
  box-shadow:
    0 0 0 6px rgba(54, 121, 224, 0.2),
    0 0 26px rgba(66, 147, 255, 0.55),
    inset 0 1px 1px rgba(255, 255, 255, 0.36);
}

.premium-book-call-section .container,
.site-footer.premium-footer .container {
  max-width: 1400px;
}

@media (max-width: 1080px) {
  .premium-book-call-banner {
    grid-template-columns: auto minmax(0, 1fr);
  }

  .premium-book-call-actions {
    grid-column: 1 / -1;
    justify-self: start;
    border-left: 0;
    border-top: 1px solid rgba(146, 183, 248, 0.35);
    padding-left: 0;
    padding-top: 0.9rem;
    width: min(100%, 420px);
  }

  .premium-footer-top {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .premium-footer-nav-card {
    grid-column: 1 / -1;
  }
}

@media (max-width: 760px) {
  .premium-book-call-banner {
    grid-template-columns: 1fr;
  }

  .premium-book-call-copy,
  .premium-book-call-actions {
    text-align: center;
  }

  .premium-book-call-actions {
    width: 100%;
    justify-items: center;
  }

  .premium-book-call-note {
    justify-content: center;
  }

  .premium-footer-top {
    grid-template-columns: 1fr;
  }

  .premium-footer-nav-card {
    grid-template-columns: 1fr;
  }

  .premium-footer-col + .premium-footer-col {
    border-left: 0;
    border-top: 1px solid rgba(126, 170, 240, 0.2);
    padding-left: 0;
    padding-top: 0.8rem;
  }

  .premium-footer-bottom {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .premium-footer-copy,
  .premium-footer-legal,
  .premium-footer-family {
    justify-self: center;
    justify-content: center;
  }

  .premium-footer-contact-card,
  .premium-footer-col,
  .premium-footer-col a,
  .premium-footer-contact-link {
    justify-items: center;
    text-align: center;
  }
}

@media (max-width: 520px) {
  .premium-book-call-button,
  .premium-footer-consult-btn {
    white-space: normal;
  }

  .premium-book-call-copy h2 {
    font-size: clamp(1.74rem, 9vw, 2.35rem);
    line-height: 0.98;
  }

  .premium-book-call-button {
    font-size: 0.76rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .premium-book-call-button,
  .premium-social-link,
  .premium-footer-col a,
  .premium-footer-consult-btn,
  .premium-footer-contact-link,
  .premium-footer-legal a,
  .premium-book-call-banner,
  .premium-footer-brand-card,
  .premium-footer-nav-card,
  .premium-footer-contact-card,
  .premium-footer-bottom {
    transition: none;
  }
}


/* Premium hero video redesign */
.hero-block.premium-hero-block {
  position: relative;
  isolation: isolate;
  min-height: 100svh;
  display: grid;
  place-items: center;
  overflow: clip;
  padding: clamp(5rem, 9vh, 6.75rem) clamp(1rem, 4vw, 2.75rem);
  background:
    radial-gradient(92% 100% at 10% 10%, rgba(52, 121, 255, 0.24) 0%, rgba(10, 24, 59, 0) 60%),
    radial-gradient(90% 120% at 90% 86%, rgba(25, 92, 255, 0.2) 0%, rgba(10, 24, 59, 0) 58%),
    linear-gradient(145deg, #030916 0%, #06112a 36%, #08193d 62%, #030914 100%);
  border-bottom: 1px solid rgba(115, 167, 255, 0.22);
}

.hero-block.premium-hero-block .hero-ambient-layer,
.hero-block.premium-hero-block .hero-flow {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-block.premium-hero-block .hero-ambient-layer {
  background:
    linear-gradient(120deg, rgba(46, 107, 255, 0.24), transparent 22% 78%, rgba(31, 86, 215, 0.2)),
    repeating-linear-gradient(112deg, rgba(114, 169, 255, 0.07) 0 2px, rgba(114, 169, 255, 0) 2px 26px);
  opacity: 0.8;
  z-index: -3;
}

.hero-block.premium-hero-block .hero-flow {
  z-index: -2;
  filter: blur(16px);
  opacity: 0.9;
}

.hero-block.premium-hero-block .hero-flow-one {
  background: radial-gradient(52% 70% at 18% 45%, rgba(36, 126, 255, 0.45), rgba(36, 126, 255, 0));
  transform: translateX(-6%) rotate(-10deg);
}

.hero-block.premium-hero-block .hero-flow-two {
  background: radial-gradient(54% 74% at 80% 48%, rgba(57, 166, 255, 0.34), rgba(57, 166, 255, 0));
  transform: translateX(6%) rotate(9deg);
}

.hero-block.premium-hero-block .hero-frame {
  width: min(100%, 1340px);
  aspect-ratio: 16 / 9;
  border-radius: clamp(18px, 2.4vw, 34px);
  padding: clamp(6px, 1vw, 12px);
  background:
    linear-gradient(165deg, rgba(255, 255, 255, 0.42), rgba(255, 255, 255, 0.06) 38%, rgba(35, 120, 255, 0.36) 100%);
  border: 1px solid rgba(169, 212, 255, 0.62);
  box-shadow:
    0 0 0 1px rgba(124, 177, 255, 0.24),
    0 45px 80px rgba(0, 5, 18, 0.68),
    0 0 86px rgba(46, 124, 255, 0.35),
    inset 0 0 42px rgba(145, 199, 255, 0.24);
  backdrop-filter: blur(14px);
  position: relative;
  overflow: hidden;
}

.hero-block.premium-hero-block .hero-frame::before,
.hero-block.premium-hero-block .hero-frame::after {
  content: '';
  position: absolute;
  pointer-events: none;
  z-index: 2;
}

.hero-block.premium-hero-block .hero-frame::before {
  top: -40%;
  left: -18%;
  width: 68%;
  height: 62%;
  background: radial-gradient(circle, rgba(206, 232, 255, 0.44) 0%, rgba(206, 232, 255, 0) 72%);
}

.hero-block.premium-hero-block .hero-frame::after {
  inset: 0;
  border-radius: inherit;
  border: 1px solid rgba(227, 246, 255, 0.44);
  mix-blend-mode: screen;
}

.hero-block.premium-hero-block .hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: calc(clamp(18px, 2.4vw, 34px) - clamp(6px, 1vw, 12px));
  display: block;
  background: #020816;
}

/* ── Hero split layout (text left + video right) ── */
.hero-block.premium-hero-block.hero-split {
  min-height: auto;
  padding: clamp(6rem, 10vh, 8rem) clamp(1rem, 4vw, 2.75rem) clamp(3rem, 6vh, 5rem);
}

.hero-split-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(2rem, 4vw, 3.5rem);
  align-items: center;
  max-width: 1360px;
  margin: 0 auto;
}

.hero-split-content {
  position: relative;
  z-index: 2;
  display: grid;
  gap: clamp(0.85rem, 1.6vw, 1.2rem);
}

.hero-split-title {
  margin: 0;
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.2rem, 4.2vw, 3.8rem);
  line-height: 0.98;
  color: #f4f8ff;
  text-wrap: balance;
}

.hero-split-title span {
  color: #2f89ff;
  text-shadow: 0 0 24px rgba(57, 153, 255, 0.45);
}

.hero-split-desc {
  margin: 0;
  max-width: 48ch;
  color: rgba(216, 230, 255, 0.9);
  font-size: clamp(1rem, 1.25vw, 1.2rem);
  line-height: 1.6;
}

.hero-split-video {
  position: relative;
  z-index: 2;
}

.hero-split-video .hero-frame {
  width: 100%;
  aspect-ratio: 1480 / 1060;
}

/* Hero split video — show full video (1480x1060) without cropping.
   Higher specificity (0,4,0) overrides the generic premium-hero 16/9 + cover rules. */
.hero-block.premium-hero-block.hero-split .hero-frame {
  width: 100%;
  max-width: 760px;
  aspect-ratio: 1480 / 1060;
  margin-left: auto;
  padding: clamp(8px, 1.1vw, 14px);
}

.hero-block.premium-hero-block.hero-split .hero-video {
  /* Slightly over-fill horizontally to eliminate the thin white sub-pixel
     slivers that appeared on the left/right edges with object-fit:contain.
     The video is exactly 1480x1060 (same ratio as the frame), so covering
     crops a negligible amount while removing the white edge lines. */
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  background: #020816;
  transform: scale(1.012);
}

/* Equalise hero CTA button widths */
.hero-split-content .first-impression-actions {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
  width: 100%;
  max-width: 330px;
}
.hero-split-content .first-impression-btn {
  width: 100%;
  justify-content: flex-start;
}

@media (max-width: 900px) {
  .hero-split-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .hero-split-content { justify-items: center; }
  .hero-split-desc { max-width: 60ch; }
  .hero-split-content .first-impression-actions { max-width: 340px; margin: 0 auto; }
  .hero-split-video .hero-frame { max-width: 560px; margin: 0 auto; }
}

/* First impression premium banner (legacy — kept for compatibility) */
.hero-block.premium-hero-block + .first-impression-section {
  margin-top: -2px;
}

.first-impression-section {
  position: relative;
  isolation: isolate;
  overflow: clip;
  margin-top: -1px;
  background:
    radial-gradient(920px 360px at 14% 4%, rgba(68, 137, 255, 0.32), rgba(6, 16, 38, 0) 70%),
    radial-gradient(860px 360px at 85% 102%, rgba(29, 104, 255, 0.27), rgba(6, 16, 38, 0) 68%),
    linear-gradient(150deg, #030817, #041332 42%, #041022 68%, #030716);
  border-top: 1px solid rgba(123, 177, 255, 0.2);
  border-bottom: 1px solid rgba(123, 177, 255, 0.2);
  padding-block: clamp(2.5rem, 5vw, 4.25rem);
}

.first-impression-flow {
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    repeating-radial-gradient(circle at 10% 78%, rgba(119, 176, 255, 0.16) 0 2px, transparent 2px 17px),
    repeating-linear-gradient(123deg, rgba(117, 174, 255, 0.1) 0 1px, transparent 1px 26px);
  opacity: 0.35;
}

.first-impression-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.14fr) minmax(0, 0.86fr);
  gap: clamp(1.4rem, 3vw, 2.3rem);
  align-items: stretch;
}

.first-impression-card,
.first-impression-logo-wrap {
  position: relative;
  border-radius: 32px;
  border: 1px solid rgba(163, 206, 255, 0.42);
  background:
    linear-gradient(164deg, rgba(11, 26, 59, 0.94), rgba(3, 12, 30, 0.9) 48%, rgba(5, 20, 46, 0.94));
  box-shadow:
    0 28px 56px rgba(1, 8, 20, 0.56),
    0 0 48px rgba(36, 115, 255, 0.24),
    inset 0 1px 0 rgba(211, 236, 255, 0.32);
  backdrop-filter: blur(9px);
  overflow: hidden;
}

.first-impression-card::before,
.first-impression-logo-wrap::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(120% 80% at 14% 0%, rgba(166, 214, 255, 0.26), transparent 54%),
    radial-gradient(70% 60% at 92% 96%, rgba(54, 132, 255, 0.27), transparent 68%);
  pointer-events: none;
}

.first-impression-card {
  padding: clamp(1.3rem, 2.6vw, 2.35rem);
  display: grid;
  gap: clamp(0.85rem, 1.6vw, 1.2rem);
}

.first-impression-kicker {
  font-family: 'Montserrat', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: #57a1ff;
  font-weight: 700;
  font-size: clamp(0.68rem, 0.8vw, 0.8rem);
}

.first-impression-card h2 {
  margin: 0;
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.05rem, 4.2vw, 4rem);
  line-height: 0.95;
  color: #f4f8ff;
  text-wrap: balance;
}

.first-impression-card h2 span {
  color: #2f89ff;
  text-shadow: 0 0 24px rgba(57, 153, 255, 0.45);
}

.first-impression-card p {
  margin: 0;
  max-width: 60ch;
  color: rgba(216, 230, 255, 0.9);
  font-size: clamp(1rem, 1.32vw, 1.34rem);
}

.first-impression-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 0.15rem;
}

.first-impression-btn {
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  min-height: 54px;
  padding: 0.6rem 1.2rem;
  border-radius: 999px;
  border: 1px solid transparent;
  color: #f7fbff;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.015em;
  transition: transform 220ms ease, box-shadow 220ms ease, background-color 220ms ease, border-color 220ms ease;
  position: relative;
  overflow: hidden;
}

/* Shimmer hover on first-impression buttons */
.first-impression-btn::after {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.18), transparent);
  transition: left .6s ease;
  pointer-events: none;
}
.first-impression-btn:hover::after {
  left: 100%;
}

.first-impression-btn-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 1px solid rgba(181, 222, 255, 0.52);
  box-shadow: inset 0 0 0 1px rgba(181, 222, 255, 0.16);
}

.first-impression-btn-icon svg {
  width: 19px;
  height: 19px;
}

.first-impression-btn-primary {
  background: linear-gradient(132deg, #1e84ff, #1b5be5);
  box-shadow: 0 14px 24px rgba(25, 89, 215, 0.45), 0 0 34px rgba(54, 141, 255, 0.44);
  border-color: rgba(154, 206, 255, 0.7);
}

.first-impression-btn-primary .first-impression-btn-icon {
  background: linear-gradient(155deg, rgba(231, 247, 255, 0.28), rgba(46, 123, 255, 0.25));
}

.first-impression-btn-secondary {
  background: linear-gradient(132deg, #1564c0, #1248a0);
  border-color: rgba(138, 190, 255, 0.5);
  box-shadow: 0 10px 20px rgba(20, 70, 170, 0.35), 0 0 24px rgba(54, 141, 255, 0.2);
}

.first-impression-btn-secondary .first-impression-btn-icon {
  background: linear-gradient(160deg, rgba(58, 139, 255, 0.3), rgba(20, 60, 140, 0.3));
}

.first-impression-btn:hover,
.first-impression-btn:focus-visible {
  transform: translateY(-2px);
}

.first-impression-btn-primary:hover,
.first-impression-btn-primary:focus-visible {
  box-shadow: 0 22px 34px rgba(29, 99, 236, 0.54), 0 0 40px rgba(71, 159, 255, 0.56);
}

.first-impression-btn-secondary:hover,
.first-impression-btn-secondary:focus-visible {
  border-color: rgba(175, 218, 255, 0.9);
  box-shadow: inset 0 0 0 1px rgba(200, 231, 255, 0.3), 0 18px 30px rgba(2, 10, 26, 0.62), 0 0 28px rgba(61, 144, 255, 0.31);
}

.first-impression-btn:focus-visible {
  outline: 2px solid rgba(210, 235, 255, 0.9);
  outline-offset: 2px;
}

.first-impression-logo-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(1.4rem, 2.5vw, 2rem);
}

.first-impression-logo-wrap img {
  width: min(94%, 540px);
  height: auto;
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 0 20px rgba(72, 157, 255, 0.54)) drop-shadow(0 0 44px rgba(29, 114, 247, 0.35));
}

.first-impression-logo-glow {
  position: absolute;
  width: 78%;
  aspect-ratio: 1.3 / 1;
  border-radius: 100%;
  background: radial-gradient(circle at center, rgba(71, 150, 255, 0.56), rgba(71, 150, 255, 0.04) 70%);
  filter: blur(12px);
}

@media (max-width: 1100px) {
  .first-impression-grid {
    grid-template-columns: 1fr;
  }

  .first-impression-logo-wrap {
    min-height: clamp(210px, 34vw, 340px);
  }
}

@media (max-width: 760px) {
  .hero-block.premium-hero-block {
    min-height: min(100svh, 780px);
    padding-top: clamp(4.2rem, 10vh, 5.5rem);
    padding-bottom: clamp(2.2rem, 8vh, 4.4rem);
  }

  .hero-block.premium-hero-block .hero-frame {
    width: min(100%, 96vw);
    aspect-ratio: 5 / 9;
  }

  .hero-block.premium-hero-block .hero-video {
    object-fit: cover;
  }

  .first-impression-section {
    padding-block: 2.4rem;
  }

  .first-impression-card,
  .first-impression-logo-wrap {
    border-radius: 24px;
  }

  .first-impression-card {
    padding: 1.3rem 1rem 1.2rem;
  }

  .first-impression-card h2 {
    font-size: clamp(2.05rem, 11vw, 3.2rem);
  }

  .first-impression-card p {
    font-size: 1rem;
  }

  .first-impression-actions {
    flex-direction: column;
  }

  .first-impression-btn {
    width: 100%;
    justify-content: flex-start;
  }
}

@media (prefers-reduced-motion: reduce) {
  .first-impression-btn,
  .hero-block.premium-hero-block .hero-frame {
    transition: none;
  }
}


/* === Homepage feedback refinements (May 2026) === */
.hero-block.premium-hero-block {
  min-height: auto;
  place-items: stretch;
  padding: 0 clamp(0.9rem, 3.2vw, 2.4rem);
  background:
    radial-gradient(900px 320px at 18% 16%, rgba(58, 131, 255, 0.22), transparent 72%),
    radial-gradient(780px 300px at 84% 84%, rgba(45, 111, 228, 0.22), transparent 74%),
    linear-gradient(180deg, #081a35 0%, #0a1f3f 68%, #0a1f3f 100%);
}

.hero-block.premium-hero-block .hero-frame {
  width: min(100%, 1380px);
  margin: 0 auto;
}

.first-impression-section {
  background:
    radial-gradient(980px 390px at 14% 4%, rgba(68, 137, 255, 0.4), rgba(6, 16, 38, 0) 72%),
    radial-gradient(900px 420px at 85% 102%, rgba(29, 104, 255, 0.34), rgba(6, 16, 38, 0) 70%),
    linear-gradient(150deg, #020613, #041331 42%, #031026 68%, #020611);
}

.first-impression-card,
.first-impression-logo-wrap {
  box-shadow:
    0 34px 62px rgba(1, 8, 20, 0.64),
    0 0 62px rgba(36, 115, 255, 0.28),
    inset 0 1px 0 rgba(211, 236, 255, 0.34);
}

.velocity-banner-section {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  padding: clamp(1.1rem, 3vw, 2.1rem) 0;
  background:
    radial-gradient(900px 210px at 12% 0%, rgba(89, 140, 255, 0.2), transparent 72%),
    radial-gradient(900px 220px at 88% 100%, rgba(89, 140, 255, 0.16), transparent 72%),
    linear-gradient(180deg, #f4f8ff 0%, #edf3ff 100%);
}

.velocity-banner-inner {
  width: min(100% - 2rem, 1320px);
  margin-inline: auto;
  display: grid;
  gap: 0.45rem;
  mask-image: linear-gradient(90deg, transparent 0%, #000 12%, #000 88%, transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 12%, #000 88%, transparent 100%);
}

.velocity-row {
  overflow: hidden;
  position: relative;
}

.velocity-row-track {
  display: flex;
  align-items: center;
  width: max-content;
  will-change: transform;
  transform: translate3d(0, 0, 0);
}

.velocity-row-track span {
  flex: 0 0 auto;
  margin-right: 2rem;
  padding-block: 0.08em;
  white-space: nowrap;
  font-family: 'Cormorant Garamond', serif;
  font-weight: 700;
  font-size: clamp(2.1rem, 5.2vw, 4.8rem);
  line-height: 1.03;
  letter-spacing: 0.055em;
  text-transform: uppercase;
  background: linear-gradient(120deg, rgba(10, 27, 74, 0.95), rgba(43, 97, 225, 0.95) 52%, rgba(130, 170, 255, 0.95));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: 0 0 20px rgba(103, 150, 255, 0.16);
}

.velocity-row--reverse .velocity-row-track span {
  opacity: 0.82;
}

.premium-module-card--world-class {
  grid-template-columns: 1fr;
  max-width: 1260px;
  margin-inline: auto;
}

.premium-modules-section {
  padding-top: clamp(2rem, 4.2vw, 3rem);
  padding-bottom: clamp(2.2rem, 4.6vw, 3.3rem);
}

.premium-modules-stack {
  gap: clamp(0.9rem, 2vw, 1.4rem);
}

.premium-module-content--world-class {
  max-width: min(100%, 1140px);
  margin-inline: auto;
}

.premium-module-content--world-class > .why-detail-kicker,
.premium-module-content--world-class > h2,
.premium-module-content--world-class > p {
  text-align: center;
  margin-inline: auto;
}

.premium-module-content--world-class > .why-detail-kicker {
  display: block;
  width: fit-content;
}

.premium-module-content--world-class > p {
  max-width: 74ch;
}

.section-header-banner {
  width: min(100%, 1220px);
  margin: 0 auto clamp(0.5rem, 1.4vw, 1rem);
  display: grid;
  justify-items: center;
  pointer-events: none;
}

.section-header-banner img {
  width: 100%;
  height: auto;
  display: block;
  filter:
    drop-shadow(0 16px 34px rgba(5, 24, 68, 0.42))
    drop-shadow(0 0 28px rgba(61, 132, 255, 0.34));
}

.section-header-banner--module {
  width: min(100%, 1180px);
  margin-bottom: clamp(0.25rem, 1vw, 0.75rem);
}

.premium-module-split {
  display: grid;
  gap: clamp(1rem, 2vw, 1.5rem);
  align-items: stretch;
  margin-top: 0.8rem;
}

.premium-module-notification-col,
.premium-module-media-col {
  width: 100%;
  max-width: 100%;
  justify-self: stretch;
}

.premium-module-media-col .premium-module-media--inline {
  max-width: min(100%, 820px);
  margin: 0 auto;
}

.premium-module-primary-btn,
.premium-module-secondary-btn {
  display: inline-flex;
  margin-inline: auto;
}

.premium-module-cta {
  min-width: clamp(240px, 34vw, 360px);
  border-radius: 999px;
  padding: 0.88rem 1.8rem;
  background: linear-gradient(100deg, #2a64e0 0%, #5f92ff 52%, #2f62d7 100%);
  color: #f7fbff;
  border: 1px solid rgba(168, 203, 255, 0.72);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.48),
    0 16px 30px rgba(28, 72, 167, 0.24),
    0 0 20px rgba(61, 125, 255, 0.34);
}

.premium-module-cta:hover {
  background: linear-gradient(100deg, #336eef 0%, #6ca1ff 52%, #386ce6 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.58),
    0 20px 34px rgba(24, 68, 162, 0.3),
    0 0 24px rgba(61, 125, 255, 0.44);
}

.premium-stats--full {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.9rem;
  width: 100%;
  margin: 0.95rem 0 0.85rem;
}

.premium-module-banner {
  margin: 0.45rem auto 0.3rem;
  width: 100%;
  max-width: min(100%, 1160px);
}

.premium-module-banner picture,
.premium-module-banner img {
  display: block;
  width: 100%;
}

.premium-module-banner picture {
  aspect-ratio: 1983 / 735;
  border-radius: clamp(18px, 2.8vw, 30px);
  overflow: hidden;
  border: 1px solid rgba(136, 184, 255, 0.72);
  box-shadow:
    0 1px 0 rgba(233, 245, 255, 0.62) inset,
    0 22px 44px rgba(11, 44, 115, 0.22),
    0 0 28px rgba(57, 122, 255, 0.26);
}

.premium-module-banner img {
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.premium-module-bottom {
  display: grid;
  gap: 0.95rem;
  margin-top: 0.2rem;
}

.premium-module-bottom .premium-feature-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.82rem;
  margin: 0;
}

.premium-feature-pill {
  position: relative;
  display: grid;
  justify-items: center;
  align-content: start;
  text-align: center;
  gap: 0.42rem;
  border-radius: 18px;
  padding: 0.95rem 1rem 0.9rem;
  border: 1px solid rgba(173, 207, 255, 0.85);
  background:
    linear-gradient(150deg, rgba(255, 255, 255, 0.74), rgba(228, 240, 255, 0.68));
  backdrop-filter: blur(14px) saturate(152%);
  -webkit-backdrop-filter: blur(14px) saturate(152%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.92),
    0 15px 28px rgba(33, 72, 149, 0.16),
    0 0 0 1px rgba(146, 187, 255, 0.28);
  transition: transform 260ms ease, border-color 260ms ease, box-shadow 260ms ease;
}

.premium-feature-pill::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(140% 120% at 50% 0%, rgba(128, 177, 255, 0.24), transparent 72%);
  pointer-events: none;
}

.premium-feature-pill-icon {
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 999px;
  display: grid;
  place-items: center;
  color: #1f56df;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.92), rgba(201, 224, 255, 0.62));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.92),
    0 10px 18px rgba(33, 78, 166, 0.2),
    0 0 0 1px rgba(129, 181, 255, 0.4);
}

.premium-feature-pill-icon svg {
  width: 1.2rem;
  height: 1.2rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.premium-feature-pill h3 {
  margin: 0;
  line-height: 1.16;
  color: #183468;
}

.premium-feature-pill p {
  margin: 0;
  color: #4b6495;
}

.premium-feature-pill:hover {
  transform: translateY(-4px);
  border-color: rgba(95, 155, 255, 0.95);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.94),
    0 22px 34px rgba(29, 68, 152, 0.22),
    0 0 26px rgba(89, 147, 255, 0.28),
    0 0 0 1px rgba(95, 155, 255, 0.42);
}

.premium-live-card {
  margin-bottom: 0;
}

.premium-faq-section .premium-faq-grid {
  gap: clamp(0.9rem, 2vw, 1.55rem);
}

.premium-faq-copy h2 {
  font-size: clamp(1.9rem, 4.2vw, 3.8rem);
  margin: 0.78rem 0 0.6rem;
}

.premium-faq-copy p {
  font-size: clamp(0.92rem, 1.55vw, 1.03rem);
}

.premium-faq-logo-card {
  max-width: 360px;
  border-radius: 20px;
  padding: clamp(0.72rem, 1.2vw, 0.95rem);
}

.premium-faq-accordion {
  gap: 0.56rem;
}

.premium-faq-item {
  border-radius: 16px;
}

.premium-faq-trigger {
  font-size: clamp(1.44rem, 2.4vw, 2rem);
  padding: clamp(0.78rem, 1.5vw, 0.96rem) clamp(0.9rem, 2vw, 1.25rem);
}

.premium-faq-icon {
  font-size: 1.8rem;
}

.premium-faq-answer > p {
  padding: 0 clamp(0.9rem, 2vw, 1.25rem) 0;
  font-size: clamp(0.9rem, 1.3vw, 1rem);
  line-height: 1.5;
}

.premium-faq-item.is-open .premium-faq-answer > p {
  padding-bottom: clamp(0.72rem, 1.4vw, 0.95rem);
}

.premium-faq-view-more {
  min-height: 48px;
  padding: 0.62rem 1.45rem;
  margin-top: 0.8rem;
}

.premium-faq-help {
  margin-top: 0.62rem;
  font-size: 0.92rem;
}

.premium-contact-section .premium-contact-grid {
  gap: clamp(0.95rem, 2vw, 1.6rem);
}

.premium-contact-copy h2 {
  font-size: clamp(1.95rem, 4.4vw, 3.85rem);
  margin: 0.8rem 0 0.64rem;
}

.premium-contact-copy p {
  font-size: clamp(0.95rem, 1.45vw, 1.05rem);
}

.premium-contact-benefits {
  margin-top: clamp(0.9rem, 1.65vw, 1.25rem);
  gap: 0.66rem;
}

.premium-benefit-card {
  border-radius: 18px;
  padding: clamp(0.7rem, 1.35vw, 0.86rem) clamp(0.8rem, 1.8vw, 0.95rem);
  transition: transform 260ms ease, box-shadow 260ms ease;
}

.premium-benefit-card:hover {
  transform: translateY(-3px);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.95),
    0 20px 30px rgba(39, 84, 174, 0.18);
}

.premium-benefit-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
}

.premium-benefit-icon svg {
  width: 25px;
  height: 25px;
}

.premium-benefit-card h3 {
  font-size: clamp(1.1rem, 2vw, 1.45rem);
}

.premium-benefit-card p {
  margin-top: 0.24rem;
  font-size: clamp(0.86rem, 1.15vw, 0.98rem);
}

.premium-contact-form-wrap {
  border-radius: clamp(20px, 3vw, 30px);
  padding: clamp(0.86rem, 1.7vw, 1.2rem);
}

.premium-contact-form {
  gap: 0.75rem;
}

.premium-contact-form h3 {
  font-size: clamp(1.8rem, 3.4vw, 2.9rem);
}

.premium-form-grid {
  gap: 0.65rem;
}

.premium-form-grid label {
  font-size: 0.86rem;
  gap: 0.34rem;
}

.premium-form-grid :is(input, select, textarea) {
  border-radius: 14px;
  font-size: 0.95rem;
  padding: 0.72rem 0.86rem;
}

.premium-form-grid textarea {
  min-height: 102px;
}

.premium-contact-submit {
  min-height: 52px;
  font-size: 1.28rem;
}

.premium-contact-note {
  font-size: 0.9rem;
}

@keyframes premiumFadeUp {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.premium-contact-benefits .premium-benefit-card,
.premium-contact-form .premium-form-grid label,
.premium-contact-submit,
.premium-contact-note {
  opacity: 0;
  animation: premiumFadeUp 620ms cubic-bezier(0.2, 0.75, 0.25, 1) forwards;
}

.premium-contact-benefits .premium-benefit-card:nth-child(1) { animation-delay: 80ms; }
.premium-contact-benefits .premium-benefit-card:nth-child(2) { animation-delay: 160ms; }
.premium-contact-benefits .premium-benefit-card:nth-child(3) { animation-delay: 240ms; }

.premium-contact-form .premium-form-grid label:nth-child(1) { animation-delay: 90ms; }
.premium-contact-form .premium-form-grid label:nth-child(2) { animation-delay: 140ms; }
.premium-contact-form .premium-form-grid label:nth-child(3) { animation-delay: 190ms; }
.premium-contact-form .premium-form-grid label:nth-child(4) { animation-delay: 240ms; }
.premium-contact-form .premium-form-grid label:nth-child(5) { animation-delay: 290ms; }
.premium-contact-form .premium-form-grid label:nth-child(6) { animation-delay: 340ms; }
.premium-contact-submit { animation-delay: 390ms; }
.premium-contact-note { animation-delay: 430ms; }

@media (min-width: 980px) {
  .premium-module-split--appointment,
  .premium-module-split--restaurant {
    grid-template-columns: minmax(300px, 410px) minmax(0, 1fr);
  }
}

@media (max-width: 1100px) {
  .premium-module-bottom .premium-feature-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .premium-module-split {
    grid-template-columns: 1fr;
  }

  .premium-stats--full {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .velocity-banner-inner {
    width: min(100% - 1.2rem, 1320px);
    gap: 0.3rem;
  }

  .velocity-row-track span {
    font-size: clamp(1.5rem, 9.5vw, 2.3rem);
    letter-spacing: 0.04em;
  }

  .section-header-banner {
    width: min(100%, 98vw);
    margin-bottom: 0.55rem;
  }

  .section-header-banner--module {
    margin-bottom: 0.45rem;
  }

  .premium-module-bottom .premium-feature-grid {
    grid-template-columns: 1fr;
  }

  .premium-module-cta {
    width: min(100%, 360px);
    min-width: 0;
  }
}

@media (max-width: 760px) {
  .hero-block.premium-hero-block {
    padding-inline: 0.65rem;
  }

  .hero-block.premium-hero-block .hero-frame {
    width: min(100%, 97.5vw);
    aspect-ratio: 5 / 8.8;
  }
}

@media (prefers-reduced-motion: reduce) {
  .premium-benefit-card,
  .premium-contact-form .premium-form-grid label,
  .premium-contact-submit,
  .premium-contact-note {
    animation: none;
    opacity: 1;
  }
}


/* === Super premium liquid glass + shine border system (May 2026) === */
.premium-liquid-shell {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  backdrop-filter: blur(18px) saturate(168%);
  -webkit-backdrop-filter: blur(18px) saturate(168%);
  box-shadow:
    0 0 0 1px rgba(159, 204, 255, 0.26),
    0 22px 48px rgba(4, 19, 56, 0.34),
    0 0 46px rgba(29, 92, 181, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.28),
    inset 0 -30px 60px rgba(10, 31, 63, 0.16);
  will-change: transform, box-shadow;
}

/* ── Perimeter-following Shine Border ── */
/* ── Shine orbit removed per client request ── */
.premium-shine-orbit {
  display: none;
}

/* Clean flat borders – no glow/shine */
.first-impression-card,
.premium-module-banner,
.premium-book-call-banner {
  border-color: rgba(140, 193, 255, 0.25);
  box-shadow:
    0 34px 76px rgba(3, 15, 44, 0.5),
    inset 0 1px 0 rgba(250, 250, 248, 0.12);
}

.first-impression-card h2 .first-impression-highlight {
  color: #2f89ff;
  text-shadow: 0 0 24px rgba(57, 153, 255, 0.45);
}

.premium-module-banner {
  padding: clamp(0.42rem, 1.3vw, 0.66rem);
  border-radius: clamp(22px, 3vw, 34px);
  background:
    linear-gradient(150deg, rgba(250, 250, 248, 0.24), rgba(56, 118, 230, 0.12));
}

.premium-module-banner picture {
  border-color: rgba(163, 210, 255, 0.25);
  box-shadow:
    0 1px 0 rgba(250, 250, 248, 0.15) inset,
    0 22px 42px rgba(11, 44, 115, 0.34);
}

/* ── Blue highlights for Why Details card titles ── */
.why-detail-highlight {
  color: #2f89ff;
}

.before-after-grid {
  position: relative;
}

.before-after-laptop {
  z-index: 3;
}

.before-after-industries {
  position: relative;
  z-index: 4;
}

.ba-energy-cables {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  pointer-events: none;
  overflow: visible;
}

.ba-cable-path,
.ba-cable-energy {
  fill: none;
  stroke-linecap: round;
}

.ba-cable-path {
  stroke: rgba(29, 92, 181, 0.42);
  stroke-width: 6.4;
}

.ba-cable-energy {
  stroke: #9cd2ff;
  stroke-width: 8;
  stroke-dasharray: 20 13;
  stroke-dashoffset: 0;
  opacity: 0;
  transition: opacity 260ms ease;
}

.ba-cable.is-active .ba-cable-path {
  stroke: rgba(86, 156, 255, 0.5);
}

.ba-cable.is-active .ba-cable-energy {
  opacity: 1;
  animation:
    baEnergyFlow 1.15s linear infinite,
    baEnergyPulse 2.4s ease-in-out infinite;
}

@keyframes baEnergyFlow {
  to {
    stroke-dashoffset: -78;
  }
}

@keyframes baEnergyPulse {
  0%,
  100% {
    stroke-width: 7.2;
    filter: drop-shadow(0 0 8px rgba(91, 172, 255, 0.6));
  }

  50% {
    stroke-width: 10;
    filter: drop-shadow(0 0 14px rgba(144, 209, 255, 0.8));
  }
}

@media (max-width: 979px) {
  .before-after-laptop {
    order: 1;
  }

  .before-after-industries {
    order: 2;
  }

  .ba-energy-cables {
    display: none;
  }
}

/* ── Parallax / Reveal video strips (between sections only) ── */
/* Wrapper creates the scroll-length the video occupies in flow */
/* ── Parallax video reveal strips ──
   Uses clip-path: inset(0) so the fixed video is clipped to
   the wrap's bounds → video appears motionless while sections
   scroll over it (Wix-style reveal).                          */
.parallax-video-wrap {
  position: relative;
  z-index: 0;
  height: clamp(220px, 26vw, 400px);
  clip-path: inset(0);          /* constrains fixed child to this box */
  -webkit-clip-path: inset(0);
}

.parallax-video-spacer {
  position: fixed;              /* stays viewport-fixed, clipped by parent */
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: 0;
  background: #050d24;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

/* Subtle glow borders on the wrap itself */
.parallax-video-wrap::before,
.parallax-video-wrap::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  height: 1px;
  z-index: 2;
  pointer-events: none;
}
.parallax-video-wrap::before {
  top: 0;
  background: linear-gradient(90deg, transparent 0%, rgba(154, 194, 255, 0.32) 30%, rgba(154, 194, 255, 0.32) 70%, transparent 100%);
}
.parallax-video-wrap::after {
  bottom: 0;
  background: linear-gradient(90deg, transparent 0%, rgba(154, 194, 255, 0.32) 30%, rgba(154, 194, 255, 0.32) 70%, transparent 100%);
}

.parallax-video-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translate(-50%, -50%);
  object-fit: cover;
  object-position: center;
  display: block;
  pointer-events: none;
}

/* Sections next to reveal-videos must sit above them with solid bg */
.parallax-video-wrap + .section,
.parallax-video-wrap + .pinned-reveal-anchor,
.parallax-video-wrap + .premium-contact-section {
  position: relative;
  z-index: 1;
}

/* Ensure all sections around reveal-videos have an opaque background
   so they visually cover the sticky video as they scroll over it. */
.why-details-section,
.premium-modules-section,
.premium-pricing-section,
.premium-book-call-section,
.premium-faq-section,
.premium-contact-section,
.dashboard-showcase-section {
  background-color: var(--warm-white, #FAFAF8);
}

/* Before-after uses dark bg — override with its own opaque dark to cover parallax video */
.before-after-section {
  background-color: #030916;
}

/* Module cards inside modules section also need the bg */
.premium-module-card {
  background-color: var(--warm-white, #FAFAF8);
}

/* Break the mid-modules parallax video out of the container to full-width */
.premium-modules-stack > .parallax-video-wrap {
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  position: relative;
}

/* ── Pinned Reveal / Overlay Scroll ── */
.pinned-reveal-anchor {
  position: relative;
  z-index: 1;
}

.pinned-section-behind {
  position: sticky;
  top: 0;
  z-index: 1;
}

/* Restore sticky on the modules section: .mod-banners-section and
   .premium-modules-section both declare position:relative which would
   otherwise override the sticky above (same specificity, later in source).
   This two-class selector wins and keeps the pinned-reveal working — so the
   section pins at its bottom (like before-after) instead of shifting up and
   leaving a white gap before pricing. */
.pinned-section-behind.mod-banners-section,
.pinned-section-behind.premium-modules-section {
  position: sticky;
}

.pinned-section-above {
  position: relative;
  z-index: 2;
}

@media (max-width: 767px) {
  /* Disable pinned scroll on small screens for performance + correct stacking.
     The two-class selectors below match the higher-specificity sticky rules
     (.pinned-section-behind.mod-banners-section etc.) so the override wins. */
  .pinned-section-behind,
  .pinned-section-behind.mod-banners-section,
  .pinned-section-behind.premium-modules-section {
    position: relative;
    top: 0 !important;
  }

  .pinned-section-above {
    z-index: 1;
  }

  /* The decorative parallax video band only exists to keep the modules section
     tall enough for the desktop pinned-reveal timing. On mobile it adds height
     and a negative margin that lets the pricing section overlap the add-on
     cards (hiding the Restaurant card), so remove it on mobile. */
  .mod-parallax-video { display: none !important; }
}

@media (prefers-reduced-motion: reduce) {
  .ba-cable.is-active .ba-cable-energy {
    animation: none !important;
  }

  .premium-popup-dialog,
  .premium-magnetic,
  .premium-plan-card,
  .premium-faq-item,
  .premium-contact-form-wrap {
    transition: none !important;
  }
}

/* ═══════════════════════════════════════════════════════════
   CLICK-TO-PLAY VIDEO PLAYER (with sound)
   Generic overlay that layers on top of any premium video frame.
   ═══════════════════════════════════════════════════════════ */
.video-player { position: relative; cursor: pointer; }
.video-player > video { display: block; }

/* Subtle gradient veil over the poster (removed once playing) */
.video-player::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  border-radius: inherit;
  background: linear-gradient(180deg, rgba(3, 9, 22, 0.10) 0%, rgba(3, 9, 22, 0.06) 40%, rgba(3, 9, 22, 0.40) 100%);
  opacity: 1;
  transition: opacity 0.4s ease;
}
.video-player.is-playing::after { opacity: 0; }

/* Glass play button */
.video-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: clamp(62px, 6.5vw, 88px);
  height: clamp(62px, 6.5vw, 88px);
  display: grid;
  place-items: center;
  z-index: 4;
  border-radius: 50%;
  cursor: pointer;
  border: 1px solid rgba(196, 224, 255, 0.72);
  background:
    radial-gradient(circle at 32% 28%, rgba(255, 255, 255, 0.34), rgba(255, 255, 255, 0) 58%),
    linear-gradient(155deg, rgba(46, 124, 255, 0.62), rgba(13, 51, 130, 0.72));
  box-shadow:
    0 14px 38px rgba(6, 22, 64, 0.5),
    0 0 44px rgba(46, 124, 255, 0.45),
    inset 0 1px 0 rgba(255, 255, 255, 0.62);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  transition: transform 0.32s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.32s ease, opacity 0.38s ease;
}
.video-play-btn svg {
  width: 40%;
  height: 40%;
  fill: #fff;
  margin-left: 8%;
  filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.4));
  position: relative;
  z-index: 2;
  transition: transform 0.32s cubic-bezier(0.2, 0.8, 0.2, 1);
}
/* Glossy shimmer sweep clipped to the circular glass button (on hover) */
.video-play-btn::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  border-radius: 50%;
  background: linear-gradient(115deg, transparent 32%, rgba(255, 255, 255, 0.6) 50%, transparent 68%);
  background-size: 250% 250%;
  background-position: 160% 160%;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.video-player:hover .video-play-btn::after {
  opacity: 1;
  animation: vpShimmer 1.15s cubic-bezier(0.4, 0, 0.2, 1);
}
@keyframes vpShimmer {
  0%   { background-position: 160% 160%; }
  100% { background-position: -60% -60%; }
}
.video-play-btn::before {
  content: '';
  position: absolute;
  inset: -12px;
  border-radius: 50%;
  border: 1px solid rgba(140, 190, 255, 0.55);
  animation: vpPulse 2.6s ease-out infinite;
  pointer-events: none;
}
@keyframes vpPulse {
  0%   { transform: scale(0.92); opacity: 0.7; }
  70%  { opacity: 0; }
  100% { transform: scale(1.55); opacity: 0; }
}
.video-player:hover .video-play-btn {
  transform: translate(-50%, -50%) scale(1.08);
  box-shadow:
    0 18px 48px rgba(6, 22, 64, 0.58),
    0 0 60px rgba(46, 124, 255, 0.6),
    inset 0 1px 0 rgba(255, 255, 255, 0.7);
}
.video-player:hover .video-play-btn svg {
  transform: scale(1.12);
}
.video-play-btn:active {
  transform: translate(-50%, -50%) scale(0.96);
}
.video-player.is-playing .video-play-btn {
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, -50%) scale(0.55);
}
.video-player.is-playing { cursor: default; }
.video-player video[controls] { cursor: auto; }

/* Hide any label overlay (e.g. module walkthrough caption) while playing */
.video-player.is-playing .premium-module-video-overlay { opacity: 0; }

@media (prefers-reduced-motion: reduce) {
  .video-play-btn::before { animation: none; }
  .video-player:hover .video-play-btn::after { animation: none; opacity: 0; }
}

/* ═══════════════════════════════════════════════════════════
   UNIFIED PREMIUM "WHY WORK WITH US" SECTION  (.wwu-*)
   Reused on About, Contact, Premium / Basic / Standard packages.
   ═══════════════════════════════════════════════════════════ */
.wwu-section {
  position: relative;
  isolation: isolate;
  overflow: clip;
  padding: clamp(5rem, 11vh, 7.5rem) 24px;
  color: #fff;
  background:
    radial-gradient(80% 90% at 12% 8%, rgba(52, 121, 255, 0.22) 0%, rgba(10, 24, 59, 0) 58%),
    radial-gradient(80% 100% at 88% 92%, rgba(25, 92, 255, 0.18) 0%, rgba(10, 24, 59, 0) 56%),
    linear-gradient(160deg, #030916 0%, #06112a 40%, #08193d 70%, #030914 100%);
}
.wwu-section::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background:
    linear-gradient(120deg, rgba(46, 107, 255, 0.16), transparent 24% 76%, rgba(31, 86, 215, 0.14)),
    repeating-linear-gradient(112deg, rgba(114, 169, 255, 0.06) 0 2px, rgba(114, 169, 255, 0) 2px 28px);
  opacity: 0.85;
}
.wwu-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(95px);
  opacity: 0.5;
  pointer-events: none;
  z-index: -1;
}
.wwu-orb--1 {
  width: 460px; height: 460px;
  top: -140px; left: -110px;
  background: radial-gradient(circle, rgba(36, 126, 255, 0.55), rgba(36, 126, 255, 0) 70%);
}
.wwu-orb--2 {
  width: 400px; height: 400px;
  bottom: -130px; right: -90px;
  background: radial-gradient(circle, rgba(57, 166, 255, 0.42), rgba(57, 166, 255, 0) 70%);
}
.wwu-inner {
  max-width: 1080px;
  margin: 0 auto;
  display: grid;
  gap: clamp(1.8rem, 3.5vw, 2.8rem);
  align-items: center;
}
.wwu-head { text-align: center; max-width: 720px; margin: 0 auto; }
.wwu-kicker {
  font-family: 'Montserrat', sans-serif;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: #bcd6ff;
  display: inline-block;
  margin-bottom: 16px;
  padding: 8px 18px;
  border-radius: 999px;
  background: rgba(90, 150, 240, 0.12);
  border: 1px solid rgba(140, 190, 255, 0.32);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
}
.wwu-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.1;
  margin: 0 0 16px;
  color: #f4f8ff;
  text-wrap: balance;
}
.wwu-title em {
  font-style: normal;
  color: #2f89ff;
  text-shadow: 0 0 26px rgba(57, 153, 255, 0.5);
}
.wwu-desc {
  font-family: 'Inter', sans-serif;
  font-size: clamp(1rem, 1.3vw, 1.15rem);
  color: rgba(216, 230, 255, 0.88);
  line-height: 1.7;
  margin: 0 auto;
  max-width: 620px;
}
/* Enhanced premium glass video frame */
.wwu-frame {
  position: relative;
  width: min(100%, 980px);
  margin: 0 auto;
  aspect-ratio: 16 / 9;
  border-radius: clamp(18px, 2.4vw, 32px);
  padding: clamp(8px, 1.1vw, 15px);
  background: linear-gradient(165deg, rgba(255, 255, 255, 0.46), rgba(255, 255, 255, 0.05) 40%, rgba(35, 120, 255, 0.4) 100%);
  border: 1px solid rgba(169, 212, 255, 0.66);
  box-shadow:
    0 0 0 1px rgba(124, 177, 255, 0.26),
    0 50px 90px rgba(0, 5, 18, 0.62),
    0 0 100px rgba(46, 124, 255, 0.36),
    inset 0 0 46px rgba(145, 199, 255, 0.24);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
  overflow: hidden;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.wwu-frame:hover {
  transform: translateY(-5px);
  box-shadow:
    0 0 0 1px rgba(124, 177, 255, 0.36),
    0 60px 110px rgba(0, 5, 18, 0.68),
    0 0 130px rgba(46, 124, 255, 0.5),
    inset 0 0 50px rgba(145, 199, 255, 0.3);
}
/* glossy corner highlight */
.wwu-frame::before {
  content: '';
  position: absolute;
  top: -42%;
  left: -18%;
  width: 70%;
  height: 64%;
  background: radial-gradient(circle, rgba(206, 232, 255, 0.42) 0%, rgba(206, 232, 255, 0) 72%);
  pointer-events: none;
  z-index: 3;
}
.wwu-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: calc(clamp(18px, 2.4vw, 32px) - clamp(8px, 1.1vw, 15px));
  background: #020816;
}
/* feature pills */
.wwu-pills {
  list-style: none;
  margin: 0 auto;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.7rem 0.9rem;
}
.wwu-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: #dce9ff;
  padding: 0.55rem 1.05rem;
  border-radius: 999px;
  background: rgba(90, 150, 240, 0.1);
  border: 1px solid rgba(140, 190, 255, 0.28);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
}
.wwu-pill__dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: #2f89ff;
  box-shadow: 0 0 10px rgba(57, 153, 255, 0.8);
}
/* CTA actions */
.wwu-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.9rem 1rem;
}
.wwu-actions .btn { padding: 0.95rem 1.6rem; }

/* Ghost button variant for dark sections (same .btn base as homepage) */
.btn.btn--ghost {
  background: rgba(255, 255, 255, 0.06);
  color: #eaf3ff;
  border: 1px solid rgba(160, 200, 255, 0.55);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
}
.btn.btn--ghost:hover {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(190, 222, 255, 0.85);
}

@media (max-width: 600px) {
  .wwu-actions { flex-direction: column; width: 100%; max-width: 340px; margin: 0 auto; }
  .wwu-actions .btn { width: 100%; }
}



/* ═══════════════════════════════════════════════════════════
   HOMEPAGE MODULE BANNERS (Appointment + Restaurant)
   Dark premium glass banners with click-to-play video media.
   ═══════════════════════════════════════════════════════════ */
.mod-banners-section {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: clamp(3.5rem, 7vw, 6rem) 0;
}
.mod-banners-stack {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: clamp(1.4rem, 3vw, 2.2rem);
}
.mod-banners-head {
  text-align: center;
  max-width: 760px;
  margin: 0 auto clamp(1rem, 2vw, 1.6rem);
}
.mod-banners-head h2 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 700;
  font-size: clamp(2rem, 4.4vw, 3rem);
  line-height: 1.12;
  color: #0a1f3f;
  margin: 0 0 .9rem;
}
.mod-banners-head h2 span { color: #2f6bff; }
.mod-banners-head p {
  font-size: clamp(1rem, 1.5vw, 1.1rem);
  color: #4a5a72;
  line-height: 1.7;
  margin: 0 auto;
  max-width: 620px;
}



/* ── Two-up add-on showcase (square promo thumbnails → video modal) ── */
.mod-showcase-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(1.6rem, 3.2vw, 2.8rem);
}
.mod-showcase {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(1.1rem, 2vw, 1.6rem);
}
.mod-showcase__media {
  position: relative;
  display: block;
  width: 100%;
  padding: 0;
  border: 1px solid rgba(112, 164, 255, 0.34);
  border-radius: 24px;
  overflow: hidden;
  cursor: pointer;
  background: #06112a;
  box-shadow: 0 30px 70px -30px rgba(6, 24, 64, 0.5);
  transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
  -webkit-tap-highlight-color: transparent;
}
.mod-showcase__media img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}
.mod-showcase__media::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(3, 10, 28, 0) 50%, rgba(3, 10, 28, 0.34) 100%);
  opacity: 0;
  transition: opacity .35s ease;
  pointer-events: none;
}
.mod-showcase__media:hover {
  transform: translateY(-4px);
  border-color: rgba(140, 190, 255, 0.6);
  box-shadow: 0 40px 90px -30px rgba(6, 24, 64, 0.65);
}
.mod-showcase__media:hover::after { opacity: 1; }
.mod-showcase__media:focus-visible {
  outline: 3px solid #2f89ff;
  outline-offset: 3px;
}
/* Play button overlay */
.mod-showcase__play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: clamp(64px, 8vw, 88px);
  height: clamp(64px, 8vw, 88px);
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
  border: 1.5px solid rgba(255, 255, 255, 0.72);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  box-shadow: 0 12px 36px -8px rgba(4, 18, 46, 0.6);
  transition: transform .35s ease, background .35s ease;
  z-index: 2;
}
.mod-showcase__play svg { width: 38%; height: 38%; fill: #fff; margin-left: 8%; }
.mod-showcase__media:hover .mod-showcase__play {
  transform: translate(-50%, -50%) scale(1.08);
  background: rgba(47, 137, 255, 0.9);
}
.mod-showcase__play::before {
  content: '';
  position: absolute;
  inset: -10px;
  border-radius: 50%;
  border: 1.5px solid rgba(255, 255, 255, 0.4);
  animation: modPlayPulse 2.4s ease-out infinite;
}
@keyframes modPlayPulse {
  0% { transform: scale(1); opacity: .7; }
  100% { transform: scale(1.35); opacity: 0; }
}
.mod-showcase__actions {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 1rem;
  flex-wrap: nowrap;
  text-align: left;
}

/* Shared CTA button + premium note (note recoloured for light section bg) */
.mod-banner__btn {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  gap: .55rem;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: #f7fbff;
  background: linear-gradient(132deg, #1e84ff, #1b5be5);
  border: 1px solid rgba(154, 206, 255, 0.7);
  padding: .5rem 1.4rem .5rem .5rem;
  border-radius: 999px;
  text-decoration: none;
  box-shadow: 0 14px 24px rgba(25, 89, 215, 0.45), 0 0 34px rgba(54, 141, 255, 0.44);
  transition: transform .25s ease, box-shadow .25s ease;
}
.mod-banner__btn:hover { transform: translateY(-2px); box-shadow: 0 22px 34px rgba(29, 99, 236, 0.54), 0 0 40px rgba(71, 159, 255, 0.56); }
.mod-banner__note {
  display: inline-flex;
  align-items: center;
  flex: 0 1 auto;
  min-width: 0;
  gap: .45rem;
  font-size: .88rem;
  font-weight: 500;
  line-height: 1.25;
  color: #5a6b85;
}
.mod-banner__note svg { width: 18px; height: 18px; color: #2f6bff; flex: 0 0 auto; }

/* Full-width parallax video band that sits below the add-ons (fills the
   gap before pricing AND keeps the section tall enough for pin-at-bottom). */
.mod-parallax-video {
  width: 100%;
  margin-top: clamp(2.6rem, 5vw, 4.5rem);
  margin-bottom: calc(-1 * clamp(3.5rem, 7vw, 6rem));
}

/* Reveal animation hooks (animations.js adds .is-visible) */
.mod-banners-section [data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .6s ease, transform .6s ease;
}
.mod-banners-section [data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 860px) {
  .mod-showcase-grid { grid-template-columns: 1fr; gap: clamp(2rem, 6vw, 3rem); }
  .mod-showcase { max-width: 560px; margin: 0 auto; }
}
@media (max-width: 480px) {
  .mod-showcase__actions { flex-direction: column; gap: .8rem; }
  .mod-banner__btn { width: 100%; justify-content: center; }
}

/* ═══════════════════════════════════════════════════════════
   VIDEO POPUP DIALOG (from-center scale animation)
   ═══════════════════════════════════════════════════════════ */
.video-modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(1rem, 4vw, 3rem);
}
.video-modal[hidden] { display: none; }
.video-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(3, 9, 22, 0.72);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  opacity: 0;
  transition: opacity .3s ease;
  cursor: pointer;
}
.video-modal.is-open .video-modal__backdrop { opacity: 1; }
.video-modal__dialog {
  position: relative;
  width: min(960px, 100%);
  z-index: 1;
  transform: scale(.82);
  opacity: 0;
  transition: transform .34s cubic-bezier(.2, .8, .25, 1), opacity .34s ease;
}
.video-modal.is-open .video-modal__dialog { transform: scale(1); opacity: 1; }
.video-modal__frame {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #02060f;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 40px 120px -30px rgba(0, 0, 0, 0.8);
  border: 1px solid rgba(140, 190, 255, 0.25);
}
.video-modal__frame video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #02060f;
}
.video-modal__close {
  position: absolute;
  top: -14px;
  right: -14px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: none;
  background: #fff;
  color: #0a1f3f;
  display: grid;
  place-items: center;
  cursor: pointer;
  box-shadow: 0 8px 24px -6px rgba(0, 0, 0, 0.5);
  transition: transform .25s ease, background .25s ease;
  z-index: 2;
}
.video-modal__close:hover { transform: scale(1.08); background: #eaf1ff; }
.video-modal__close svg { width: 22px; height: 22px; }
body.video-modal-open { overflow: hidden; }
@media (max-width: 560px) {
  .video-modal__close { top: -12px; right: 2px; }
}
@media (prefers-reduced-motion: reduce) {
  .video-modal__dialog,
  .video-modal__backdrop { transition: none; }
  .mod-showcase__play::before { animation: none; }
}
