:root {
  --ee: cubic-bezier(0.19, 1, 0.22, 1);
  --eq: cubic-bezier(0.77, 0, 0.175, 1);
  --es: cubic-bezier(0.34, 1.56, 0.64, 1);
  --bg: #060b1e;
  --bg-2: #0c1432;
  --ink: #ffffff;
  --ink-2: rgba(255, 255, 255, .94);
  --ink-3: rgba(255, 255, 255, .80);
  --ink-4: rgba(255, 255, 255, .58);
  --line: rgba(165, 180, 252, .24);
  --line-2: rgba(165, 180, 252, .12);
  --glass-bg: linear-gradient(135deg, rgba(255, 255, 255, .12) 0%, rgba(255, 255, 255, .03) 100%), rgba(10, 18, 46, .78);
  --glass-border: rgba(165, 180, 252, .25);
  --glass-blur: blur(30px);
  --indigo: #6366f1;
  --indigo-soft: #c7d2fe;
  --pink: #ec4899;
  --pink-soft: #fbcfe8;
  --cyan: #67e8f9;
  --green: #4ade80;
  --amber: #fbbf24;
  /* --grad-a: linear-gradient(135deg, #ffffff 0%, #c7d2fe 45%, #f472b6 100%); */
  --grad-a: #ffbb37;
  --grad-b: #ffbb37;
  --grad-c: #ffbb37;

  /* Primary Typography (Red Hat Display + Poppins) */
  --font-sans: 'Red Hat Display', sans-serif;
  --font-body: 'Poppins', sans-serif;
  --font-mono: 'JetBrains Mono', monospace;

  /* Previous Typography Reference (Quick Revert):
  --font-sans: 'Space Grotesk', sans-serif;
  --font-body: 'DM Sans', sans-serif;
  */
  --r-sm: 12px;
  --r-md: 18px;
  --r-lg: 24px;
  --r-xl: 32px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box
}

html,
body {
  height: 100%;
  width: 100%;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-sans);
  -webkit-font-smoothing: antialiased;
  overflow: hidden
}

/* Milky Way Galaxy 3D Interactive Canvas */
.galaxy-canvas {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
  display: block
}

/* Midnight Blue Cosmic Depth Scrim & Mesh */
.deck::before {
  content: '';
  position: fixed;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(14, 26, 68, .35) 0%, rgba(6, 11, 30, .75) 100%);
  z-index: 0;
  pointer-events: none
}

.deck::after {
  content: '';
  position: fixed;
  inset: 0;
  background-image: linear-gradient(rgba(165, 180, 252, .02) 1px, transparent 1px), linear-gradient(90deg, rgba(165, 180, 252, .02) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse at center, black 20%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 20%, transparent 75%);
  z-index: 0;
  pointer-events: none
}

.deck {
  position: fixed;
  inset: 0;
  overflow: hidden
}

/* === SLIDES: scrollable on mobile when content overflows === */
.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .6s var(--eq), visibility .6s;
  z-index: 1;
  overflow-y: auto;
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
}

.slide.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  z-index: 10;
  transition-delay: 0s;
}

.slide.exiting {
  pointer-events: none;
  z-index: 5;
  transition-delay: 0s;
}

/* Fill viewport on desktop, allow grow on mobile */
.slide-inner {
  min-height: 100%;
  padding: 90px 6vmin 80px;
  display: flex;
  flex-direction: column;
  position: relative
}

/* Persistent chrome */
.brand {
  position: fixed;
  top: 24px;
  left: 32px;
  z-index: 100;
  display: flex;
  align-items: center;
  text-decoration: none;
  transition: transform .25s var(--ee), opacity .25s
}

.brand:hover {
  transform: scale(1.03);
  opacity: .95
}

.brand .brand-logo-img {
  height: 36px;
  width: auto;
  max-width: 180px;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 2px 10px rgba(0, 0, 0, .6))
}

.nav {
  position: fixed;
  top: 24px;
  right: 24px;
  display: flex;
  gap: 6px;
  align-items: center;
  z-index: 100;
  font-family: var(--font-mono)
}

.nav button {
  background: rgba(255, 255, 255, .14);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(255, 255, 255, .28);
  color: var(--ink);
  cursor: pointer;
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  font-family: inherit;
  font-size: 13px;
  transition: all .25s;
  box-shadow: 0 4px 16px rgba(0, 0, 0, .35)
}

.nav button:hover {
  background: rgba(255, 255, 255, .28);
  transform: scale(1.08);
  border-color: rgba(255, 255, 255, .5)
}

.counter {
  font-size: 11px;
  letter-spacing: .18em;
  padding: 0 14px;
  color: var(--ink);
  min-width: 64px;
  text-align: center;
  background: rgba(255, 255, 255, .12);
  border: 1px solid var(--glass-border);
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100px;
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, .35);
  font-weight: 600
}

.section-tag {
  position: fixed;
  bottom: 28px;
  left: 32px;
  z-index: 100;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--ink-2);
  display: flex;
  gap: 10px;
  align-items: center;
  pointer-events: none;
  text-shadow: 0 1px 8px rgba(0, 0, 0, .7);
  font-weight: 500
}

.section-tag .pip {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--indigo-soft);
  box-shadow: 0 0 12px var(--indigo);
  animation: pip 2s infinite
}

@keyframes pip {

  0%,
  100% {
    opacity: 1
  }

  50% {
    opacity: .3
  }
}

/* ====== POPUP MENU ====== */
.menu-btn .icon {
  display: flex;
  flex-direction: column;
  gap: 3px;
  align-items: center
}

.menu-btn .icon i {
  display: block;
  width: 14px;
  height: 1.5px;
  background: currentColor;
  border-radius: 1px;
  transition: all .3s var(--ee)
}

.menu-btn.open .icon i:nth-child(1) {
  transform: translateY(4.5px) rotate(45deg)
}

.menu-btn.open .icon i:nth-child(2) {
  opacity: 0;
  transform: scaleX(0)
}

.menu-btn.open .icon i:nth-child(3) {
  transform: translateY(-4.5px) rotate(-45deg)
}

.menu-overlay {
  position: fixed;
  inset: 0;
  background: rgba(6, 11, 30, .80);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  z-index: 200;
  opacity: 0;
  visibility: hidden;
  transition: opacity .35s var(--ee), visibility .35s
}

.menu-overlay.open {
  opacity: 1;
  visibility: visible
}

.menu-panel {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -48%) scale(.96);
  width: min(560px, 92vw);
  max-height: 84vh;
  overflow-y: auto;
  overflow-x: hidden;
  background: linear-gradient(180deg, rgba(16, 26, 64, .97) 0%, rgba(8, 14, 38, .97) 100%);
  backdrop-filter: blur(40px);
  -webkit-backdrop-filter: blur(40px);
  border: 1px solid rgba(165, 180, 252, .35);
  border-radius: 24px;
  z-index: 201;
  opacity: 0;
  visibility: hidden;
  transition: opacity .4s var(--ee), visibility .4s, transform .5s var(--es);
  box-shadow: 0 30px 90px rgba(0, 0, 0, .75), 0 0 60px rgba(99, 102, 241, .25);
  scrollbar-width: thin;
  scrollbar-color: rgba(165, 180, 252, .4) transparent
}

.menu-panel.open {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, -50%) scale(1)
}

.menu-header {
  padding: 24px 28px 20px;
  border-bottom: 1px solid var(--line-2);
  display: flex;
  justify-content: space-between;
  align-items: center
}

.menu-header h3 {
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 18px;
  letter-spacing: -.01em;
  color: #fff
}

.menu-header .menu-meta {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--ink-3)
}

.menu-list {
  padding: 12px 12px 20px;
  display: flex;
  flex-direction: column;
  gap: 4px
}

.menu-item {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 14px 18px;
  border-radius: 14px;
  cursor: pointer;
  transition: all .25s var(--ee);
  border: 1px solid transparent
}

.menu-item:hover {
  background: rgba(255, 255, 255, .08);
  border-color: var(--line)
}

.menu-item.current {
  background: linear-gradient(90deg, rgba(99, 102, 241, .28), rgba(236, 72, 153, .15));
  border-color: rgba(165, 180, 252, .5)
}

.menu-item .mi-num {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--ink-3);
  letter-spacing: .15em;
  width: 28px;
  flex-shrink: 0
}

.menu-item.current .mi-num {
  color: var(--indigo-soft);
  font-weight: 600
}

.menu-item .mi-label {
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: -.01em;
  flex: 1;
  color: #fff
}

.menu-item .mi-sub {
  font-family: var(--font-body);
  font-size: 12.5px;
  color: var(--ink-3);
  margin-top: 2px
}

.menu-item .mi-arr {
  color: var(--ink-4);
  font-size: 14px;
  transition: all .25s
}

.menu-item:hover .mi-arr {
  color: var(--ink);
  transform: translateX(3px)
}

.menu-item.current .mi-arr {
  color: var(--indigo-soft)
}

.menu-footer {
  padding: 14px 28px 22px;
  border-top: 1px solid var(--line-2);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--ink-3)
}

.menu-footer kbd {
  background: rgba(255, 255, 255, .1);
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 3px 8px;
  font-family: var(--font-mono);
  font-size: 9.5px;
  color: #fff;
  margin: 0 4px
}

/* ====== SHARED UTILITIES ====== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 1s var(--ee), transform 1s var(--ee)
}

.slide.active .reveal {
  opacity: 1;
  transform: translateY(0)
}

.slide.active .reveal:nth-of-type(1) {
  transition-delay: .5s
}

.slide.active .reveal:nth-of-type(2) {
  transition-delay: .65s
}

.slide.active .reveal:nth-of-type(3) {
  transition-delay: .8s
}

.slide.active .reveal:nth-of-type(4) {
  transition-delay: .95s
}

.slide.active .reveal:nth-of-type(5) {
  transition-delay: 1.1s
}

.slide.active .reveal:nth-of-type(6) {
  transition-delay: 1.25s
}

.slide.active .reveal:nth-of-type(7) {
  transition-delay: 1.4s
}

.slide.active .reveal:nth-of-type(8) {
  transition-delay: 1.55s
}

.mw {
  display: inline-block;
  overflow: hidden;
  vertical-align: bottom
}

.mw>span {
  display: inline-block;
  transform: translateY(110%);
  transition: transform 1.2s var(--ee)
}

.slide.active .mw>span {
  transform: translateY(0)
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: rgba(99, 102, 241, .22);
  border: 1px solid rgba(165, 180, 252, .5);
  padding: 7px 18px;
  border-radius: 100px;
  font-family: var(--font-body);
  font-size: 12.5px;
  color: #fff;
  width: fit-content;
  letter-spacing: .02em;
  box-shadow: 0 4px 18px rgba(99, 102, 241, .3);
  font-weight: 500
}

.eyebrow .dt {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--indigo-soft);
  box-shadow: 0 0 10px var(--indigo);
  animation: pip 2s infinite
}

.h-display {
  font-family: var(--font-sans);
  font-weight: 600;
  line-height: 1.03;
  letter-spacing: -.035em;
  text-shadow: 0 2px 20px rgba(0, 0, 0, .7);
  color: #ffffff
}

.h-display .grd {
  background: var(--grad-a);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: drop-shadow(0 2px 14px rgba(165, 180, 252, .3))
}

.body-lg {
  font-family: var(--font-body);
  font-size: clamp(15px, 1.4vw, 18px);
  line-height: 1.65;
  color: var(--ink-2);
  font-weight: 400;
  text-shadow: 0 1px 8px rgba(0, 0, 0, .6)
}

.body-md {
  font-family: var(--font-body);
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--ink-2);
  text-shadow: 0 1px 6px rgba(0, 0, 0, .5)
}

.body-sm {
  font-family: var(--font-body);
  font-size: 12.5px;
  line-height: 1.5;
  color: var(--ink-3)
}

.btn-primary {
  background: #fff;
  color: #060b1e;
  padding: 14px 26px;
  border-radius: 100px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  transition: all .3s;
  border: none;
  text-decoration: none;
  box-shadow: 0 8px 24px rgba(255, 255, 255, .25)
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--indigo-soft), #fff);
  transform: translateY(-2px);
  box-shadow: 0 12px 36px rgba(165, 180, 252, .45)
}

.btn-secondary {
  background: rgba(255, 255, 255, .1);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  color: #fff;
  padding: 14px 26px;
  border-radius: 100px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  transition: all .3s;
  border: 1px solid rgba(255, 255, 255, .28);
  text-decoration: none;
  box-shadow: 0 6px 20px rgba(0, 0, 0, .3)
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, .2);
  border-color: rgba(255, 255, 255, .5);
  transform: translateY(-2px)
}

/* Master Frosted Midnight Glass Card */
.glass-card {
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border);
  /* border-radius: var(--r-lg); */
  position: relative;
  overflow: hidden;
  box-shadow: 0 18px 50px rgba(0, 0, 0, .5), inset 0 1px 0 rgba(255, 255, 255, .22)
}

/* ====== SLIDE 1 — DOMAIN SEARCH (SEO HERO) ====== */
.s-domain {
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 90px 6vmin 80px
}

.s-domain-inner {
  max-width: 1120px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  position: relative;
  margin: auto 0
}

.s-domain-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 130%;
  height: 140%;
  background: radial-gradient(ellipse, rgba(99, 102, 241, .32), transparent 60%);
  filter: blur(60px);
  z-index: -1;
  animation: coverPulse 6s ease-in-out infinite alternate
}

@keyframes coverPulse {
  to {
    opacity: .8;
    transform: translate(-50%, -50%) scale(1.1)
  }
}

.s-domain h1 {
  font-size: clamp(40px, 5.8vw, 92px);
  line-height: 1.06
}

.s-domain h1 .line {
  display: block;
  overflow: hidden
}

.s-domain h1 .line>span {
  display: inline-block;
  transform: translateY(110%);
  transition: transform 1.4s var(--ee)
}

.slide.active .s-domain h1 .line>span {
  transform: translateY(0)
}

.slide.active .s-domain h1 .line:nth-child(1)>span {
  transition-delay: .5s
}

.slide.active .s-domain h1 .line:nth-child(2)>span {
  transition-delay: .7s
}

.domain-search-box {
  width: 100%;
  max-width: 860px;
  padding: 22px 26px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  border-radius: 24px;
  background: rgba(255, 255, 255, .05);
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
  border: 1px solid rgba(165, 180, 252, .35);
  box-shadow: 0 24px 70px rgba(0, 0, 0, .6), 0 0 40px rgba(99, 102, 241, .25), inset 0 1px 0 rgba(255, 255, 255, .25);
  transition: all .35s var(--ee)
}

.domain-search-box:focus-within {
  border-color: rgba(165, 180, 252, .75);
  box-shadow: 0 30px 85px rgba(0, 0, 0, .7), 0 0 55px rgba(99, 102, 241, .4), inset 0 1px 0 rgba(255, 255, 255, .4)
}

.ds-form {
  width: 100%
}

.ds-input-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 18px;
  padding: 8px 8px 8px 18px;
  transition: all .3s
}

.ds-input-wrap:focus-within {
  background: rgba(255, 255, 255, .14);
  border-color: rgba(165, 180, 252, .65)
}

.ds-icon {
  font-size: 20px;
  opacity: .85;
  flex-shrink: 0
}

.ds-input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  font-family: var(--font-sans);
  font-size: clamp(15px, 1.5vw, 19px);
  color: #fff;
  font-weight: 500;
  min-width: 170px
}

.ds-input::placeholder {
  color: rgba(255, 255, 255, .45);
  font-weight: 400
}

.ds-select {
  background: rgba(14, 24, 60, .85);
  color: #fff;
  border: 1px solid rgba(165, 180, 252, .35);
  border-radius: 12px;
  padding: 12px 18px;
  font-family: var(--font-mono);
  font-size: 14px;
  font-weight: 600;
  outline: none;
  cursor: pointer;
  transition: border-color .25s
}

.ds-select:hover,
.ds-select:focus {
  border-color: var(--indigo-soft)
}

.ds-select option {
  background: #0c1432;
  color: #fff
}

.ds-submit-btn {
  background: var(--bg-2);
  color: #fff;
  border: none;
  border-radius: 14px;
  padding: 14px 28px;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  transition: all .3s;
  box-shadow: 0 8px 24px rgba(99, 102, 241, .4);
  white-space: nowrap
}

.ds-submit-btn:hover {
  transform: translateY(-2px);
  background: var(--amber);
  color: var(--bg);
}

.ds-tld-bar {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
  width: 100%;
  padding-top: 2px
}

.tld-pill {
  display: inline-flex;
  align-items: center;
  padding: 8px 18px;
  background: rgba(255, 255, 255, .07);
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 100px;
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 600;
  color: rgba(255, 255, 255, .85);
  cursor: pointer;
  transition: all .25s;
  outline: none
}

.tld-pill:hover,
.tld-pill.active {
  background: rgba(99, 102, 241, .3);
  border-color: rgba(165, 180, 252, .6);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 4px 14px rgba(99, 102, 241, .25)
}

.ds-trust-row {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  margin-top: 8px;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--ink-2);
  font-weight: 500;
  text-shadow: 0 1px 6px rgba(0, 0, 0, .6);
}

.trust-item .ti-ic {
  display: inline-grid;
  place-items: center;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: rgba(34, 197, 94, 0.15);
  border: 1px solid rgba(34, 197, 94, 0.35);
  color: #4ade80;
  font-size: 10px;
  font-weight: 700;
  flex-shrink: 0;
  box-shadow: 0 0 8px rgba(34, 197, 94, 0.2);
}

/* ====== SLIDE 2 — OUR SERVICES (ENTERPRISE CLOUD) ====== */
.s-services {
  gap: 4vmin;
  justify-content: center
}

.s-services-head {
  max-width: 880px
}

.s-services-head h2 {
  font-size: clamp(36px, 4.8vw, 66px);
  margin-top: 16px
}

.s-services-head p {
  margin-top: 14px;
  max-width: 640px
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  width: 100%
}

.service-card {
  padding: 26px 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: all .4s var(--ee);
  position: relative
}

.service-card:hover {
  border-color: rgba(165, 180, 252, .6);
  transform: translateY(-5px);
  box-shadow: 0 24px 60px rgba(0, 0, 0, .65), 0 0 35px rgba(99, 102, 241, .25), inset 0 1px 0 rgba(255, 255, 255, .3)
}

.service-card .sc-top {
  display: flex;
  justify-content: space-between;
  align-items: center
}

.service-card .sc-ic {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  font-size: 22px;
  background: rgba(99, 102, 241, .25);
  border: 1px solid rgba(99, 102, 241, .4);
  color: #fff;
  box-shadow: 0 4px 16px rgba(99, 102, 241, .3)
}

.service-card:nth-child(2) .sc-ic {
  background: rgba(236, 72, 153, .25);
  border-color: rgba(236, 72, 153, .4)
}

.service-card:nth-child(3) .sc-ic {
  background: rgba(34, 211, 238, .25);
  border-color: rgba(34, 211, 238, .4)
}

.service-card:nth-child(4) .sc-ic {
  background: rgba(74, 222, 128, .25);
  border-color: rgba(74, 222, 128, .4)
}

.service-card:nth-child(5) .sc-ic {
  background: rgba(251, 191, 36, .25);
  border-color: rgba(251, 191, 36, .4)
}

.service-card:nth-child(6) .sc-ic {
  background: rgba(168, 85, 247, .25);
  border-color: rgba(168, 85, 247, .4)
}

.service-card .sc-badge {
  font-family: var(--font-mono);
  font-size: 11px;
  padding: 4px 10px;
  border-radius: 100px;
  background: rgba(255, 255, 255, .08);
  border: 1px solid var(--line);
  color: var(--indigo-soft);
  font-weight: 600
}

.service-card h3 {
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 19px;
  letter-spacing: -.01em;
  color: #fff
}

.service-card p {
  font-family: var(--font-body);
  font-size: 13px;
  line-height: 1.55;
  color: var(--ink-2)
}

.service-card .sc-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 4px
}

.service-card .sc-features li {
  font-family: var(--font-body);
  font-size: 12.5px;
  color: var(--ink-2);
  display: flex;
  align-items: center;
  gap: 8px
}

.service-card .sc-features li::before {
  content: '✓';
  color: var(--green);
  font-weight: 700;
  font-size: 13px
}

.service-card .sc-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px solid var(--line-2)
}

.service-card .sc-price {
  font-family: var(--font-sans);
  font-size: 14px;
  color: var(--ink-3)
}

.service-card .sc-price strong {
  font-size: 18px;
  color: #fff;
  font-weight: 600
}

.service-card .sc-btn {
  font-family: var(--font-body);
  font-size: 12.5px;
  font-weight: 600;
  color: var(--indigo-soft);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  text-decoration: none;
  cursor: pointer
}

.service-card .sc-btn span {
  transition: transform .3s
}

.service-card:hover .sc-btn span {
  transform: translateX(4px)
}

/* ====== SLIDE 2 / 3 — SERVICE CATEGORIES & PACKAGES GLASSY CAROUSEL ====== */
.s-categories,
.s-categories-section {
  justify-content: center;
  gap: 2vmin;
  position: relative;
  width: 100%;
}

.categories-view-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 2vmin;
  position: relative;
  will-change: transform, opacity;
}

.packages-view-wrapper {
  width: 100%;
  display: none;
  flex-direction: column;
  gap: 2vmin;
  position: relative;
  will-change: transform, opacity;
}

.s-categories-head,
.s-packages-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 28px;
  flex-wrap: wrap;
  width: 100%;
}

.s-categories-head .sch-left,
.s-packages-head .sph-left {
  flex: 1;
  min-width: 300px;
}

.s-categories-head h2,
.s-packages-head h2 {
  font-size: clamp(32px, 4.2vw, 56px);
  margin-top: 10px;
}

.s-categories-head .sch-right,
.s-packages-head .sph-right {
  display: flex;
  align-items: center;
  gap: 14px;
}

.pkg-back-btn {
  background: rgba(255, 255, 255, .1);
  border: 1px solid rgba(165, 180, 252, .4);
  color: #fff;
  padding: 8px 18px;
  border-radius: 100px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all .3s var(--ee);
  box-shadow: 0 4px 14px rgba(0, 0, 0, .25);
  margin-bottom: 6px;
}

.pkg-back-btn:hover {
  background: rgba(99, 102, 241, .35);
  border-color: rgba(165, 180, 252, .8);
  transform: translateX(-4px);
  box-shadow: 0 6px 20px rgba(99, 102, 241, .35);
}

.cat-nav-controls {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, .08);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 6px 14px;
  border-radius: 100px;
  border: 1px solid var(--glass-border);
}

.cat-nav-btn {
  background: rgba(255, 255, 255, .12);
  border: 1px solid rgba(255, 255, 255, .2);
  color: #fff;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: all .25s;
  font-size: 14px;
}

.cat-nav-btn:hover {
  background: rgba(255, 255, 255, .3);
  transform: scale(1.08);
}

.cat-nav-counter {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--ink-2);
  padding: 0 8px;
  font-weight: 600;
}

.category-carousel-viewport {
  width: 100%;
  overflow: hidden;
  padding: 10px 4px 16px;
  position: relative;
  mask-image: linear-gradient(90deg, transparent 0%, black 2%, black 98%, transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, black 2%, black 98%, transparent 100%);
}

.category-carousel-track {
  display: flex;
  gap: 22px;
  transition: transform .6s cubic-bezier(0.19, 1, 0.22, 1);
  will-change: transform;
}

.cat-card,
.pkg-card {
  flex: 0 0 calc(33.333% - 15px);
  min-width: 320px;
  max-width: 420px;
  padding: 26px 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: all .4s var(--ee);
  position: relative;
}

.cat-card:hover,
.pkg-card:hover {
  border-color: rgba(165, 180, 252, .7);
  transform: translateY(-6px);
  box-shadow: 0 26px 65px rgba(0, 0, 0, .7), 0 0 40px rgba(99, 102, 241, .3), inset 0 1px 0 rgba(255, 255, 255, .35);
}

.cat-card.active,
.pkg-card.active {
  border-color: rgba(165, 180, 252, .6);
  box-shadow: 0 20px 55px rgba(0, 0, 0, .6), 0 0 30px rgba(99, 102, 241, .2);
}

.cat-top,
.pkg-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.cat-ic {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  font-size: 22px;
  background: rgba(99, 102, 241, .25);
  border: 1px solid rgba(165, 180, 252, .4);
  box-shadow: 0 4px 16px rgba(99, 102, 241, .3);
}

.cat-card:nth-child(2) .cat-ic {
  background: rgba(236, 72, 153, .25);
  border-color: rgba(236, 72, 153, .4);
}

.cat-card:nth-child(3) .cat-ic {
  background: rgba(34, 211, 238, .25);
  border-color: rgba(34, 211, 238, .4);
}

.cat-card:nth-child(4) .cat-ic {
  background: rgba(251, 191, 36, .25);
  border-color: rgba(251, 191, 36, .4);
}

.cat-card:nth-child(5) .cat-ic {
  background: rgba(168, 85, 247, .25);
  border-color: rgba(168, 85, 247, .4);
}

.cat-badge,
.pkg-badge {
  font-family: var(--font-mono);
  font-size: 11px;
  padding: 5px 12px;
  border-radius: 100px;
  background: rgba(255, 255, 255, .1);
  border: 1px solid var(--glass-border);
  color: var(--indigo-soft);
  font-weight: 600;
}

.pkg-badge-wrap {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.pkg-cat-label {
  font-family: var(--font-mono);
  font-size: 11px;
  padding: 4px 10px;
  border-radius: 100px;
  background: rgba(99, 102, 241, .2);
  border: 1px solid rgba(165, 180, 252, .3);
  color: var(--indigo-soft);
  font-weight: 600;
}

.pkg-featured-badge {
  font-family: var(--font-mono);
  font-size: 11px;
  padding: 4px 10px;
  border-radius: 100px;
  background: rgba(236, 72, 153, .2);
  border: 1px solid rgba(236, 72, 153, .4);
  color: #f472b6;
  font-weight: 600;
}

.pkg-status {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--green);
}

.cat-card h3,
.pkg-card h3 {
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 20px;
  color: #fff;
  letter-spacing: -.01em;
}

.cat-desc {
  font-family: var(--font-body);
  font-size: 13.5px;
  line-height: 1.55;
  color: var(--ink-2);
  min-height: 40px;
}

.cat-price-box {
  background: rgba(255, 255, 255, .05);
  border: 1px solid var(--line-2);
  border-radius: 12px;
  padding: 10px 14px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.cat-price-lbl {
  font-family: var(--font-body);
  font-size: 12px;
  color: var(--ink-3);
}

.cat-price-val {
  font-family: var(--font-sans);
  font-size: 16px;
  font-weight: 700;
  color: #fff;
}

.cat-price-val span {
  font-size: 12px;
  color: var(--indigo-soft);
  font-weight: 400;
}

.pkg-price-banner {
  display: flex;
  align-items: baseline;
  gap: 8px;
  padding: 10px 14px;
  background: rgba(99, 102, 241, .15);
  border: 1px solid rgba(165, 180, 252, .3);
  border-radius: 12px;
}

.pkg-price-amount {
  font-family: var(--font-sans);
  font-size: 26px;
  font-weight: 700;
  color: #fff;
  letter-spacing: -.02em;
}

.pkg-price-term {
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--indigo-soft);
}

.cat-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 2px;
  flex: 1;
}

.cat-features li {
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--ink-2);
  display: flex;
  align-items: center;
  gap: 8px;
}

.cat-features li::before {
  content: '✓';
  color: var(--green);
  font-weight: 700;
  font-size: 13px;
}

.pkg-specs-scroll {
  max-height: 160px;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: rgba(165, 180, 252, .3) transparent;
  padding-right: 4px;
  margin: 4px 0 6px;
  flex: 1;
}

.pkg-specs-scroll ol,
.pkg-specs-scroll ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.pkg-specs-scroll li {
  font-family: var(--font-body);
  font-size: 12.5px;
  color: var(--ink-2);
  display: flex;
  align-items: center;
  gap: 8px;
  line-height: 1.45;
}

.pkg-specs-scroll li::before {
  content: '✓';
  color: var(--green);
  font-weight: 700;
  font-size: 12px;
}

.cat-action-btn,
.pkg-buy-btn {
  position: relative;
  z-index: 10;
  pointer-events: auto;
  margin-top: auto;
  padding: 13px 24px;
  background: var(--bg-2);
  border: 1px solid rgba(165, 180, 252, .35);
  border-radius: 14px;
  color: #fff;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-decoration: none;
  cursor: pointer;
  transition: all .3s var(--ee);
  box-shadow: 0 6px 20px rgba(0, 0, 0, .4), 0 0 16px rgba(99, 102, 241, .2);
  white-space: nowrap;
}

.cat-action-btn:hover,
.pkg-buy-btn:hover {
  transform: translateY(-2px);
  background: var(--amber);
  color: var(--bg);
  border-color: var(--amber);
  box-shadow: 0 8px 25px rgba(251, 191, 36, .45);
}

.pkg-back-btn {
  background: var(--bg-2);
  border: 1px solid rgba(165, 180, 252, .35);
  color: #fff;
  padding: 9px 20px;
  border-radius: 100px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all .3s var(--ee);
  box-shadow: 0 4px 16px rgba(0, 0, 0, .3), 0 0 12px rgba(99, 102, 241, .15);
  margin-bottom: 6px;
}

.pkg-back-btn:hover {
  background: var(--amber);
  color: var(--bg);
  border-color: var(--amber);
  transform: translateX(-4px);
  box-shadow: 0 6px 20px rgba(251, 191, 36, .4);
}

.carousel-dots {
  display: flex;
  gap: 8px;
  justify-content: center;
  align-items: center;
  margin-top: 2px;
}

.c-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .2);
  border: 1px solid rgba(255, 255, 255, .3);
  cursor: pointer;
  transition: all .3s;
}

.c-dot.active {
  width: 24px;
  border-radius: 100px;
  background: var(--indigo-soft);
  border-color: var(--indigo-soft);
  box-shadow: 0 0 10px var(--indigo);
}

.s-product-features .pf .pf-ic {
  width: 30px;
  height: 30px;
  border-radius: 8px;
  background: rgba(99, 102, 241, .3);
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 14px;
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(99, 102, 241, .35)
}

.s-product-features .pf span {
  font-family: var(--font-body);
  font-size: 13.5px;
  color: #fff;
  font-weight: 500
}

.s-product-cta {
  display: flex;
  gap: 12px;
  margin-top: 8px;
  flex-wrap: wrap
}

.s-product-right {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 340px
}

.mock-ui {
  width: 100%;
  max-width: 520px;
  aspect-ratio: 1.15/1;
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transform: perspective(1400px) rotateY(-8deg) rotateX(2deg);
  transition: transform 1s var(--ee)
}

.slide.active .mock-ui {
  transform: perspective(1400px) rotateY(-4deg) rotateX(1deg)
}

.mock-ui::before {
  content: '';
  position: absolute;
  top: -30%;
  right: -15%;
  width: 240px;
  height: 240px;
  background: radial-gradient(circle, rgba(99, 102, 241, .5), transparent 70%);
  filter: blur(50px);
  z-index: -1
}

.mock-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line-2)
}

.mock-head .mh-l {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 12.5px;
  color: #fff;
  font-weight: 500
}

.mock-head .mh-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 8px var(--green)
}

.mock-head .mh-r {
  display: flex;
  gap: 6px
}

.mock-head .mh-r i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--ink-4);
  display: inline-block
}

.mock-stat {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  padding: 4px 0
}

.mock-stat .ms-l span {
  display: block;
  font-family: var(--font-body);
  font-size: 11.5px;
  color: var(--ink-3);
  margin-bottom: 4px
}

.mock-stat .ms-l strong {
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 26px;
  letter-spacing: -.02em;
  color: #fff
}

.mock-stat .ms-delta {
  font-family: var(--font-body);
  font-size: 11px;
  color: #fff;
  background: rgba(74, 222, 128, .28);
  border: 1px solid rgba(74, 222, 128, .45);
  padding: 3px 10px;
  border-radius: 100px;
  font-weight: 600
}

.mock-chart {
  flex: 1;
  position: relative;
  min-height: 0
}

.mock-chart svg {
  width: 100%;
  height: 100%
}

.mock-chart .area-path {
  fill: url(#mockGrad);
  opacity: 0;
  transition: opacity 1s var(--ee) 1.5s
}

.slide.active .mock-chart .area-path {
  opacity: 1
}

.mock-chart .line-path {
  fill: none;
  stroke: var(--indigo-soft);
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 1200;
  stroke-dashoffset: 1200;
  transition: stroke-dashoffset 2s var(--ee) 1.3s
}

.slide.active .mock-chart .line-path {
  stroke-dashoffset: 0
}

.mock-tiles {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 10px;
  padding-top: 12px;
  border-top: 1px solid var(--line-2)
}

.mock-tile {
  padding: 12px;
  background: rgba(255, 255, 255, .07);
  border: 1px solid var(--line-2);
  border-radius: 12px
}

.mock-tile span {
  display: block;
  font-family: var(--font-body);
  font-size: 9.5px;
  color: var(--ink-3);
  margin-bottom: 4px;
  letter-spacing: .06em;
  text-transform: uppercase;
  font-weight: 600
}

.mock-tile strong {
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 15px;
  color: #fff
}

/* ====== SHARED SECTION HEAD STYLES ====== */
.s-section-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 28px;
  flex-wrap: wrap;
  width: 100%;
}

.s-section-head .ssh-left {
  flex: 1;
  min-width: 320px;
}

.s-section-head h2 {
  font-size: clamp(28px, 3.6vw, 48px);
  margin-top: 8px;
}

/* ====== SLIDE 3 — WHO WE ARE ====== */
.s-who-we-are {
  justify-content: center;
  gap: 2.2vmin;
  position: relative;
  width: 100%;
}

.wwa-main-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 24px;
  align-items: stretch;
  width: 100%;
}

.wwa-story-column {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.wwa-badge-row {
  display: flex;
  align-items: center;
  gap: 12px;
}

.wwa-tag {
  font-family: var(--font-mono);
  font-size: 11.5px;
  padding: 5px 12px;
  border-radius: 100px;
  background: rgba(99, 102, 241, .2);
  border: 1px solid rgba(165, 180, 252, .3);
  color: var(--indigo-soft);
  font-weight: 600;
}

.wwa-sub-badge {
  font-family: var(--font-mono);
  font-size: 11.5px;
  color: var(--ink-3);
}

.wwa-subtitle {
  font-family: var(--font-sans);
  font-size: 18px;
  font-weight: 600;
  color: #fff;
  line-height: 1.35;
}

.wwa-desc {
  font-family: var(--font-body);
  font-size: 13.5px;
  color: var(--ink-2);
  line-height: 1.55;
}

.wwa-pillars-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 2px;
}

.wwa-pillar-item {
  padding: 14px 16px;
  display: flex;
  gap: 10px;
  align-items: flex-start;
  transition: all .25s var(--ee);
}

.wwa-pillar-item:hover {
  border-color: rgba(165, 180, 252, .5);
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, .4);
}

.wwa-pillar-item .wp-icon {
  font-size: 18px;
  line-height: 1;
  margin-top: 2px;
  flex-shrink: 0;
}

.wwa-pillar-item .wp-text strong {
  display: block;
  font-family: var(--font-sans);
  font-size: 13px;
  color: #fff;
  font-weight: 600;
  margin-bottom: 3px;
}

.wwa-pillar-item .wp-text span {
  display: block;
  font-family: var(--font-body);
  font-size: 11.5px;
  color: var(--ink-2);
  line-height: 1.4;
}

/* RIGHT: TELEMETRY CARD */
.wwa-telemetry-card {
  padding: 22px 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: relative;
}

.telemetry-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--line-2);
}

.th-left {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-sans);
  font-size: 14px;
  color: #fff;
  font-weight: 600;
}

.status-live-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 10px var(--green);
}

.telemetry-region {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--indigo-soft);
}

.telemetry-map-box {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.map-node-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 12px;
  background: rgba(255, 255, 255, .04);
  border-radius: 10px;
  border: 1px solid var(--line-2);
}

.mn-loc {
  font-family: var(--font-sans);
  font-size: 12.5px;
  font-weight: 600;
  color: #fff;
}

.mn-val {
  font-family: var(--font-body);
  font-size: 11.5px;
  color: var(--ink-2);
  display: flex;
  align-items: center;
  gap: 6px;
}

.mn-ping {
  font-family: var(--font-mono);
  color: var(--green);
  font-weight: 600;
}

.telemetry-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin-top: auto;
}

.t-stat-box {
  text-align: center;
  padding: 8px 4px;
  background: rgba(255, 255, 255, .04);
  border-radius: 8px;
  border: 1px solid var(--line-2);
}

.t-stat-box strong {
  display: block;
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 700;
  color: #fff;
}

.t-stat-box span {
  font-family: var(--font-body);
  font-size: 10.5px;
  color: var(--ink-3);
}

.wwa-cta-row {
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 4px;
}

/* ====== SLIDE 4 — WHY CHOOSE US ====== */
.s-why-choose-us {
  justify-content: center;
  gap: 2vmin;
  position: relative;
  width: 100%;
}

.why-header-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 20px;
  flex-wrap: wrap;
  width: 100%;
  margin-bottom: 2px;
}

.why-header-row .wh-left {
  flex: 1;
  min-width: 280px;
}

.why-lead {
  font-family: var(--font-body);
  font-size: 13.5px;
  color: var(--ink-2);
  margin-top: 4px;
}

.why-gold-title {
  font-family: var(--font-sans);
  font-size: clamp(32px, 4.2vw, 54px);
  font-weight: 800;
  color: #fbbf24;
  letter-spacing: -.02em;
  line-height: 1.1;
  text-shadow: 0 4px 20px rgba(251, 191, 36, 0.3);
}

.why-grid-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: rgba(10, 16, 38, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 16px;
  overflow: hidden;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.55), inset 0 1px 0 rgba(255, 255, 255, 0.15);
  width: 100%;
}

.why-cell {
  padding: 22px 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  position: relative;
  border-right: 1px solid rgba(255, 255, 255, 0.22);
  border-bottom: 1px solid rgba(255, 255, 255, 0.22);
  transition: background .3s var(--ee), transform .3s var(--ee);
}

.why-cell:nth-child(4n) {
  border-right: none;
}

.why-cell:nth-child(n+5) {
  border-bottom: none;
}

.why-cell:hover {
  background: rgba(255, 255, 255, 0.06);
}

.wc-title-row {
  display: flex;
  align-items: center;
  gap: 10px;
}

.wc-icon-wrap {
  width: 26px;
  height: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.wc-svg-icon {
  width: 22px;
  height: 22px;
  display: block;
  filter: drop-shadow(0 2px 6px rgba(251, 191, 36, .45));
}

.wc-title-row h3 {
  font-family: var(--font-sans);
  font-size: 15.5px;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.25;
  margin: 0;
  letter-spacing: -0.01em;
}

.why-cell p {
  font-family: var(--font-body);
  font-size: 12.5px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.82);
  margin: 0;
  flex: 1;
}

.why-footer-row {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 4px;
}

.why-seals {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-left: auto;
  font-family: var(--font-mono);
  font-size: 11.5px;
  color: var(--ink-2);
}

/* ====== SLIDE 6 — TECHNOLOGY PARTNERS & ECOSYSTEM ====== */
.s-partners {
  justify-content: center;
  gap: 2.2vmin;
  position: relative;
  width: 100%;
}

.partners-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 16px;
  width: 100%;
}

.partner-card {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  text-decoration: none;
  transition: all .35s var(--ee);
  border-radius: 18px;
}

.partner-card:hover {
  border-color: rgba(165, 180, 252, .7);
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, .55), 0 0 25px rgba(99, 102, 241, .2);
}

.partner-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.partner-logo {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  object-fit: cover;
  border: 1px solid rgba(165, 180, 252, .3);
  background: rgba(15, 23, 42, .8);
  box-shadow: 0 4px 12px rgba(0, 0, 0, .3);
}

.partner-tier-badge {
  font-family: var(--font-mono);
  font-size: 10.5px;
  padding: 3px 8px;
  border-radius: 100px;
  background: rgba(99, 102, 241, .18);
  border: 1px solid rgba(165, 180, 252, .3);
  color: var(--indigo-soft);
  font-weight: 600;
}

.partner-content h4 {
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 4px;
}

.partner-content p {
  font-family: var(--font-body);
  font-size: 12px;
  color: var(--ink-2);
  line-height: 1.45;
}

.partner-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 10px;
  border-top: 1px solid var(--line-2);
  margin-top: auto;
  font-family: var(--font-body);
  font-size: 12px;
  color: var(--indigo-soft);
  font-weight: 600;
}

.partner-card:hover .partner-arr {
  transform: translateX(4px);
}

.partner-arr {
  transition: transform .25s var(--ee);
}



.btn-clean {
  padding: 12px 24px;
  background: var(--bg-2);
  border: 1px solid rgba(165, 180, 252, .35);
  border-radius: 14px;
  color: #fff;
  font-family: var(--font-body);
  font-size: 13.5px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  cursor: pointer;
  transition: all .3s var(--ee);
  box-shadow: 0 6px 20px rgba(0, 0, 0, .4), 0 0 16px rgba(99, 102, 241, .2);
  white-space: nowrap;
}

.btn-clean:hover {
  transform: translateY(-2px);
  background: var(--amber);
  color: var(--bg);
  border-color: var(--amber);
  box-shadow: 0 8px 25px rgba(251, 191, 36, .45);
}

.btn-clean-secondary {
  padding: 12px 20px;
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 14px;
  color: rgba(255, 255, 255, .9);
  font-family: var(--font-body);
  font-size: 13.5px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  cursor: pointer;
  transition: all .3s var(--ee);
  white-space: nowrap;
}

.btn-clean-secondary:hover {
  background: rgba(255, 255, 255, .18);
  border-color: rgba(255, 255, 255, .4);
  color: #fff;
  transform: translateY(-2px);
}

/* ====== SLIDE 4 — CLIENT TESTIMONIALS CAROUSEL ====== */
.s-testimonials {
  justify-content: center;
  gap: 2vmin;
  position: relative;
  width: 100%;
}

.s-testimonials-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 28px;
  flex-wrap: wrap;
  width: 100%;
}

.s-testimonials-head .sth-left {
  flex: 1;
  min-width: 320px;
}

.s-testimonials-head h2 {
  font-size: clamp(28px, 3.6vw, 48px);
  margin-top: 8px;
}

.testimonial-card {
  flex: 0 0 calc(33.333% - 15px);
  min-width: 320px;
  max-width: 420px;
  padding: 26px 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: all .4s var(--ee);
  position: relative;
  border-radius: 20px;
}

.testimonial-card:hover {
  border-color: rgba(165, 180, 252, .7);
  transform: translateY(-5px);
  box-shadow: 0 24px 60px rgba(0, 0, 0, .6), 0 0 35px rgba(99, 102, 241, .25), inset 0 1px 0 rgba(255, 255, 255, .35);
}

.testimonial-card.active {
  border-color: rgba(165, 180, 252, .6);
  box-shadow: 0 20px 50px rgba(0, 0, 0, .5), 0 0 25px rgba(99, 102, 241, .2);
}

.t-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.t-stars {
  color: #fbbf24;
  font-size: 15px;
  letter-spacing: 2px;
  filter: drop-shadow(0 2px 8px rgba(251, 191, 36, .4));
}

.t-verified-badge {
  font-family: var(--font-mono);
  font-size: 11px;
  padding: 4px 10px;
  border-radius: 100px;
  background: rgba(74, 222, 128, .15);
  border: 1px solid rgba(74, 222, 128, .35);
  color: #4ade80;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-weight: 600;
}

.t-verified-badge .v-check {
  font-weight: 700;
}

.t-text {
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255, 255, 255, .9);
  flex: 1;
  font-style: normal;
}

.t-author-box {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 12px;
  border-top: 1px solid var(--line-2);
  margin-top: auto;
}

.t-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(165, 180, 252, .35);
  box-shadow: 0 4px 12px rgba(0, 0, 0, .3);
  flex-shrink: 0;
}

.t-author-meta strong {
  display: block;
  font-family: var(--font-sans);
  font-size: 14px;
  color: #fff;
  font-weight: 600;
}

.t-author-meta span {
  display: block;
  font-family: var(--font-body);
  font-size: 12px;
  color: var(--ink-2);
  margin-top: 2px;
}



.s-roadmap {
  gap: 5vmin;
  justify-content: center
}

.s-roadmap-head {
  max-width: 780px
}

.s-roadmap-head h2 {
  font-size: clamp(36px, 4.8vw, 64px);
  margin-top: 18px
}

.s-roadmap-head p {
  margin-top: 18px;
  max-width: 580px
}

.timeline {
  position: relative;
  padding: 0 0 10px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px
}

.timeline::before {
  content: '';
  position: absolute;
  top: 31px;
  left: 5%;
  right: 5%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--indigo) 15%, var(--pink) 50%, var(--cyan) 85%, transparent);
  opacity: .6
}

.tl-item {
  position: relative;
  padding: 60px 18px 20px;
  display: flex;
  flex-direction: column;
  gap: 10px
}

.tl-item::before {
  content: '';
  position: absolute;
  top: 22px;
  left: 50%;
  transform: translateX(-50%);
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--bg);
  border: 2px solid var(--indigo);
  z-index: 2;
  box-shadow: 0 0 12px var(--indigo)
}

.tl-item:nth-child(2)::before {
  border-color: var(--pink);
  box-shadow: 0 0 12px var(--pink)
}

.tl-item:nth-child(3)::before {
  border-color: var(--cyan);
  box-shadow: 0 0 12px var(--cyan)
}

.tl-item:nth-child(4)::before {
  border-color: var(--green);
  box-shadow: 0 0 12px var(--green)
}

.tl-item.now::before {
  background: var(--indigo);
  box-shadow: 0 0 0 6px rgba(99, 102, 241, .3), 0 0 24px var(--indigo);
  animation: pip 2s infinite
}

.tl-quarter {
  font-family: var(--font-mono);
  font-size: 11.5px;
  letter-spacing: .18em;
  color: var(--indigo-soft);
  text-align: center;
  font-weight: 600
}

.tl-item:nth-child(2) .tl-quarter {
  color: var(--pink-soft)
}

.tl-item:nth-child(3) .tl-quarter {
  color: var(--cyan)
}

.tl-item:nth-child(4) .tl-quarter {
  color: var(--green)
}

.tl-status {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-body);
  font-size: 11px;
  color: var(--ink-2);
  justify-content: center;
  margin-top: -4px;
  font-weight: 500
}

.tl-status .s-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 8px var(--green)
}

.tl-item:nth-child(1) .tl-status .s-dot {
  background: var(--amber);
  box-shadow: 0 0 8px var(--amber);
}

.tl-item:nth-child(2) .tl-status .s-dot {
  background: var(--indigo-soft);
  box-shadow: 0 0 8px var(--indigo);
}

.tl-item:nth-child(3) .tl-status .s-dot {
  background: var(--cyan);
  box-shadow: 0 0 8px var(--cyan);
}

.tl-item:nth-child(4) .tl-status .s-dot {
  background: var(--green);
  box-shadow: 0 0 8px var(--green);
}

.tl-card {
  padding: 22px 22px;
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: all .35s var(--ee);
  box-shadow: 0 18px 45px rgba(0, 0, 0, .5), inset 0 1px 0 rgba(255, 255, 255, .22);
  opacity: 1 !important;
  visibility: visible !important;
}

.tl-card:hover {
  transform: translateY(-4px);
  border-color: rgba(251, 191, 36, .5);
  box-shadow: 0 24px 60px rgba(0, 0, 0, .6), 0 0 30px rgba(251, 191, 36, .2);
}

.tl-num-badge {
  font-family: var(--font-mono);
  font-size: 26px;
  font-weight: 800;
  color: #fbbf24;
  letter-spacing: -0.02em;
  line-height: 1;
  text-shadow: 0 2px 10px rgba(251, 191, 36, 0.35);
}

.tl-card h3 {
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 18px;
  letter-spacing: -.01em;
  color: #fff;
  line-height: 1.25;
}

.tl-desc {
  font-family: var(--font-body);
  font-size: 13px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.92);
  display: block !important;
  opacity: 1 !important;
  visibility: visible !important;
}

.tl-card ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin-top: auto;
  padding-top: 8px;
  border-top: 1px solid var(--line-2);
}

.tl-card li {
  font-family: var(--font-body);
  font-size: 12.5px;
  line-height: 1.45;
  color: var(--ink-2);
  padding-left: 18px;
  position: relative;
}

.tl-card li::before {
  content: '\2014';
  position: absolute;
  left: 0;
  color: var(--amber);
  font-weight: 600;
}

/* ====== SLIDE 6 — METRICS ====== */
.s-metrics {
  justify-content: center;
  gap: 5vmin
}

.s-metrics-head {
  max-width: 780px
}

.s-metrics-head h2 {
  font-size: clamp(40px, 5.4vw, 76px);
  margin-top: 18px
}

.metric-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px
}

.metric {
  padding: 30px 28px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 210px;
  position: relative;
  overflow: hidden
}

.metric::before {
  content: '';
  position: absolute;
  top: -30%;
  right: -30%;
  width: 160px;
  height: 160px;
  background: radial-gradient(circle, rgba(99, 102, 241, .35), transparent 70%);
  filter: blur(30px);
  opacity: 0;
  transition: opacity .8s
}

.metric:hover::before {
  opacity: 1
}

.metric-top-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}

.metric-icon-badge {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  background: rgba(251, 191, 36, 0.12);
  border: 1px solid rgba(251, 191, 36, 0.3);
  box-shadow: 0 4px 14px rgba(251, 191, 36, 0.15);
  flex-shrink: 0;
}

.metric-badge-label {
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--amber);
  font-weight: 700;
}

.metric-num {
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: clamp(36px, 4.5vw, 60px);
  letter-spacing: -.03em;
  line-height: 1;
  color: #fff;
  font-variant-numeric: tabular-nums;
}

.metric-num.grd {
  background: var(--grad-a);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent
}

.metric-num .unit {
  font-size: .5em;
  color: var(--ink-2);
  font-weight: 400;
  margin-left: 2px
}

.metric-lbl {
  font-family: var(--font-body);
  font-size: 13.5px;
  color: var(--ink-2);
  line-height: 1.5;
  margin-top: 14px;
  font-weight: 400
}

.metric-spark {
  margin-top: 12px;
  height: 24px
}

.metric-spark svg {
  width: 100%;
  height: 100%
}

.metric-spark path {
  fill: none;
  stroke: var(--indigo-soft);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-dasharray: 200;
  stroke-dashoffset: 200;
  transition: stroke-dashoffset 1.6s var(--ee) 1.2s
}

.slide.active .metric-spark path {
  stroke-dashoffset: 0
}

.s-metrics-quote {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 30px 36px;
  flex-wrap: wrap
}

.s-metrics-quote .q-mark {
  font-family: var(--font-sans);
  font-size: 64px;
  line-height: .6;
  color: var(--indigo-soft);
  font-weight: 300
}

.s-metrics-quote blockquote {
  flex: 1;
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: clamp(18px, 2vw, 26px);
  line-height: 1.45;
  letter-spacing: -.01em;
  min-width: 240px;
  color: #fff;
  text-shadow: 0 1px 8px rgba(0, 0, 0, .6)
}

.s-metrics-quote .q-attr {
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-family: var(--font-body);
  font-size: 13.5px;
  color: var(--ink-3);
  min-width: 160px
}

.s-metrics-quote .q-attr strong {
  color: #fff;
  font-weight: 600;
  font-size: 15px
}

/* ====== SLIDE 7 — COMPARISON TABLE ====== */
.s-compare {
  gap: 4vmin;
  justify-content: center
}

.s-compare-head {
  max-width: 820px
}

.s-compare-head h2 {
  font-size: clamp(36px, 4.8vw, 64px);
  margin-top: 18px
}

.s-compare-head p {
  margin-top: 16px;
  max-width: 600px
}

.cmp-table-wrap {
  padding: 8px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch
}

.cmp-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  font-family: var(--font-body);
  min-width: 680px
}

.cmp-table thead th {
  padding: 18px 20px;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 14.5px;
  letter-spacing: -.01em;
  text-align: left;
  color: var(--ink-2);
  border-bottom: 1px solid var(--line);
  position: relative;
  white-space: nowrap
}

.cmp-table thead th:first-child {
  color: var(--ink-3);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: .18em;
  text-transform: uppercase;
  font-weight: 500
}

.cmp-table thead th.featured {
  color: #fff;
  background: linear-gradient(180deg, rgba(99, 102, 241, .3), rgba(99, 102, 241, .1));
  border-radius: 14px 14px 0 0;
  border-bottom: 1px solid rgba(99, 102, 241, .55);
  position: relative
}

.cmp-table thead th.featured .vendor-name {
  display: flex;
  align-items: center;
  gap: 8px
}

.cmp-table thead th.featured .vendor-name .v-logo {
  width: 18px;
  height: 18px;
  border-radius: 5px;
  background: var(--grad-b);
  position: relative;
  flex-shrink: 0
}

.cmp-table thead th.featured .vendor-name .v-logo::after {
  content: '';
  position: absolute;
  inset: 3px;
  background: var(--bg);
  border-radius: 2px
}

.cmp-table tbody td {
  padding: 16px 20px;
  font-size: 14px;
  color: var(--ink-2);
  border-bottom: 1px solid var(--line-2);
  transition: background .25s
}

.cmp-table tbody tr:hover td {
  background: rgba(255, 255, 255, .05)
}

.cmp-table tbody tr:last-child td {
  border-bottom: none
}

.cmp-table tbody td:first-child {
  color: #fff;
  font-weight: 600;
  font-family: var(--font-sans);
  font-size: 14.5px;
  letter-spacing: -.005em
}

.cmp-table tbody td.featured {
  background: rgba(99, 102, 241, .1);
  text-align: center;
  border-left: 1px solid rgba(99, 102, 241, .3);
  border-right: 1px solid rgba(99, 102, 241, .3);
  color: #fff
}

.cmp-table tbody tr:last-child td.featured {
  border-radius: 0 0 14px 14px;
  border-bottom: 1px solid rgba(99, 102, 241, .55)
}

.cmp-table thead th.featured .recommended-badge {
  position: absolute;
  bottom: 8px;
  right: 10px;
  background: var(--grad-b);
  color: #fff;
  font-family: var(--font-body);
  font-size: 9.5px;
  letter-spacing: .18em;
  text-transform: uppercase;
  padding: 5px 11px;
  border-radius: 100px;
  white-space: nowrap;
  font-weight: 600;
  box-shadow: 0 4px 14px rgba(99, 102, 241, .4);
  z-index: 2
}

.cmp-table thead th.featured .recommended-badge::before {
  content: '\2605';
  margin-right: 6px;
  font-size: 10px;
  vertical-align: -1px
}

.cmp-table thead th.featured {
  padding-bottom: 42px
}

.cmp-table .check {
  color: var(--green);
  font-size: 17px;
  font-weight: 700
}

.cmp-table .cross {
  color: var(--ink-4);
  font-size: 15px
}

.cmp-table .partial {
  color: var(--amber);
  font-size: 13px;
  font-weight: 600
}

.cmp-table td.center {
  text-align: center
}

.cmp-footnote {
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--ink-3);
  text-align: right;
  padding: 12px 6px 0
}

/* ====== SLIDE 8 — MORE FROM TEMPLATEMO ====== */
.s-more {
  gap: 5vmin;
  justify-content: center
}

.s-more-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 40px;
  flex-wrap: wrap
}

.s-more-head .sm-l {
  flex: 1;
  min-width: 300px
}

.s-more-head h2 {
  font-size: clamp(36px, 4.6vw, 60px);
  margin-top: 18px
}

.s-more-head .sm-r {
  font-family: var(--font-body);
  font-size: 14.5px;
  color: var(--ink-2);
  max-width: 340px;
  line-height: 1.6
}

.s-more-head .sm-r a {
  color: var(--indigo-soft);
  text-decoration: none;
  border-bottom: 1px solid rgba(165, 180, 252, .5);
  transition: border-color .25s;
  font-weight: 500
}

.s-more-head .sm-r a:hover {
  border-color: var(--indigo-soft);
  color: #fff
}

.more-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px
}

.more-card {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  overflow: hidden;
  transition: transform .4s var(--ee), border-color .4s var(--ee), box-shadow .4s var(--ee);
  opacity: 0
}

.more-card:hover {
  transform: translateY(-6px);
  border-color: rgba(165, 180, 252, .6);
  box-shadow: 0 24px 60px rgba(0, 0, 0, .6), 0 0 35px rgba(99, 102, 241, .25)
}

@keyframes moreCardIn {
  from {
    opacity: 0;
    transform: translateY(30px)
  }

  to {
    opacity: 1;
    transform: translateY(0)
  }
}

.slide.active .more-card {
  animation: moreCardIn 1s var(--ee) forwards
}

.slide.active .more-card:nth-child(1) {
  animation-delay: .6s
}

.slide.active .more-card:nth-child(2) {
  animation-delay: .75s
}

.slide.active .more-card:nth-child(3) {
  animation-delay: .9s
}

.slide.active .more-card:nth-child(4) {
  animation-delay: 1.05s
}

.more-card .mc-thumb {
  aspect-ratio: 16/10;
  overflow: hidden;
  position: relative;
  background: linear-gradient(135deg, rgba(99, 102, 241, .25), rgba(236, 72, 153, .15));
  border-bottom: 1px solid var(--line-2)
}

.more-card .mc-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: transform .8s var(--ee);
  display: block
}

.more-card:hover .mc-thumb img {
  transform: scale(1.06);
  transform-origin: top center
}

.more-card .mc-thumb::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(6, 11, 30, .7));
  pointer-events: none;
  opacity: .7
}

.more-card .mc-body {
  padding: 20px 22px 22px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1
}

.more-card .mc-tag {
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--indigo-soft);
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600
}

.more-card .mc-tag .pip {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--indigo);
  box-shadow: 0 0 8px var(--indigo)
}

.more-card .mc-title {
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 18px;
  letter-spacing: -.01em;
  line-height: 1.25;
  color: #fff
}

.more-card .mc-desc {
  font-family: var(--font-body);
  font-size: 13px;
  line-height: 1.55;
  color: var(--ink-2);
  flex: 1
}

.more-card .mc-cta {
  font-family: var(--font-body);
  font-size: 12.5px;
  color: var(--indigo-soft);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 6px
}

.more-card .mc-cta span {
  transition: transform .3s
}

.more-card:hover .mc-cta span {
  transform: translateX(4px)
}

/* ====== TEMPLATEMO CREDIT ====== */
.tm-credit {
  position: fixed;
  bottom: 28px;
  right: 32px;
  z-index: 100;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--ink-2);
  text-decoration: none;
  display: flex;
  gap: 8px;
  align-items: center;
  transition: color .25s;
  font-weight: 500;
  text-shadow: 0 1px 6px rgba(0, 0, 0, .7);
  white-space: nowrap;
}

.tm-credit:hover {
  color: #fff
}

.tm-credit .tm-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--pink-soft);
  box-shadow: 0 0 10px var(--pink);
  animation: pip 2s infinite
}

.tm-credit .tm-label {
  opacity: .85
}

.tm-credit:hover .tm-label {
  opacity: 1
}

.tm-credit.cta-centered {
  letter-spacing: .08em;
  padding: 8px 22px;
  background: rgba(15, 23, 42, 0.85);
  border: 1px solid rgba(251, 191, 36, 0.3);
  border-radius: 30px;
  backdrop-filter: blur(16px);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.5), 0 0 16px rgba(251, 191, 36, 0.15);
  color: #cbd5e1;
  max-width: 92vw;
  white-space: nowrap;
}

.tm-credit.cta-centered .tm-dot {
  background: var(--amber);
  box-shadow: 0 0 10px var(--amber);
}

.tm-credit.cta-centered:hover {
  border-color: rgba(251, 191, 36, 0.5);
  color: #ffffff;
}

.tm-credit.cta-centered .credit-designer {
  color: var(--amber);
  font-weight: 700;
}

/* In-flow footer — mobile */
.slide-footer {
  display: none
}

@media (max-width:787px) {

  .section-tag,
  .tm-credit {
    display: none
  }

  .slide-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 14px;
    padding: 24px 0 0;
    margin-top: auto;
    border-top: 1px solid var(--line-2);
    font-family: var(--font-mono);
    font-size: 9.5px;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--ink-2);
    flex-wrap: wrap
  }

  .slide-footer .sf-section {
    display: flex;
    align-items: center;
    gap: 8px
  }

  .slide-footer .sf-section .pip {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--indigo-soft);
    box-shadow: 0 0 10px var(--indigo);
    animation: pip 2s infinite
  }

  .slide-footer .sf-credit {
    display: flex;
    align-items: center;
    gap: 7px;
    color: var(--ink-2);
    text-decoration: none
  }

  .slide-footer .sf-credit .pip {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--pink-soft);
    box-shadow: 0 0 10px var(--pink)
  }
}

/* ====== SLIDE 11 — CONTACT US & CTA ====== */
.s-contact-cta {
  justify-content: center;
  align-items: center;
  padding: 60px 5vmin 50px;
}

.contact-cta-container {
  display: grid;
  grid-template-columns: 1.08fr 1fr;
  gap: 32px;
  width: 100%;
  max-width: 1260px;
  align-items: stretch;
  margin: auto 0;
}

.contact-info-panel {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 36px 38px;
  background: var(--bg-card);
  border: 1px solid var(--card-border);
  border-radius: var(--r-xl);
  backdrop-filter: blur(24px);
  position: relative;
  overflow: hidden;
}

.contact-info-panel::before {
  content: '';
  position: absolute;
  top: -20%;
  left: -20%;
  width: 260px;
  height: 260px;
  background: radial-gradient(circle, rgba(251, 191, 36, 0.12), transparent 70%);
  filter: blur(40px);
  pointer-events: none;
}

.contact-badge-live {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 5px 14px;
  border-radius: 30px;
  background: rgba(34, 197, 94, 0.12);
  border: 1px solid rgba(34, 197, 94, 0.3);
  color: #4ade80;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.04em;
  margin-bottom: 14px;
  width: fit-content;
}

.contact-beacon-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 10px #22c55e;
  animation: beaconPulse 2s infinite ease-in-out;
}

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

.contact-info-title {
  font-family: var(--font-sans);
  font-size: clamp(26px, 3.2vw, 42px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.15;
  color: #fff;
  margin-bottom: 12px;
}

.contact-info-sub {
  font-family: var(--font-body);
  font-size: 13.5px;
  line-height: 1.6;
  color: var(--ink-2);
  margin-bottom: 22px;
}

.contact-details-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 22px;
}

.contact-channel-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 13px 14px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  transition: all 0.25s ease;
  min-width: 0;
}

.contact-channel-item:hover {
  background: rgba(251, 191, 36, 0.05);
  border-color: rgba(251, 191, 36, 0.3);
  transform: translateY(-2px);
}

.contact-channel-icon {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  background: rgba(251, 191, 36, 0.12);
  border: 1px solid rgba(251, 191, 36, 0.25);
  color: var(--amber);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.contact-channel-meta {
  display: flex;
  flex-direction: column;
  gap: 2px;
  overflow: hidden;
  min-width: 0;
  flex: 1;
}

.contact-channel-label {
  font-size: 10.5px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--ink-3);
  font-weight: 600;
}

.contact-channel-val {
  font-size: 13px;
  font-weight: 600;
  color: #fff;
  text-decoration: none;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  transition: color 0.2s ease;
}

.contact-channel-val:hover {
  color: var(--amber);
}

.contact-social-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 18px;
  border-top: 1px solid var(--line-2);
  flex-wrap: wrap;
  gap: 12px;
}

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

.contact-social-btn {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--card-border);
  color: var(--ink-2);
  transition: all 0.2s ease;
  text-decoration: none;
}

.contact-social-btn:hover {
  color: var(--amber);
  background: rgba(251, 191, 36, 0.1);
  border-color: rgba(251, 191, 36, 0.35);
  transform: translateY(-2px);
}

/* Contact Form Panel */
.contact-form-panel {
  padding: 36px 38px;
  background: var(--bg-card);
  border: 1px solid var(--card-border);
  border-radius: var(--r-xl);
  backdrop-filter: blur(24px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
}

.contact-form-panel h3 {
  font-family: var(--font-sans);
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #fff;
  margin-bottom: 4px;
}

.contact-form-panel p {
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--ink-2);
  margin-bottom: 20px;
}

.contact-field-group {
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin-bottom: 14px;
}

.contact-field-group label {
  font-size: 11.5px;
  font-weight: 600;
  color: #cbd5e1;
  letter-spacing: 0.02em;
}

.contact-field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.contact-input {
  width: 100%;
  padding: 10px 13px;
  border-radius: 10px;
  background: rgba(15, 23, 42, 0.6);
  border: 1px solid var(--card-border);
  color: #fff;
  font-family: var(--font-body);
  font-size: 13px;
  outline: none;
  transition: all 0.2s ease;
}

.contact-input:focus {
  border-color: var(--amber);
  box-shadow: 0 0 16px rgba(251, 191, 36, 0.18);
  background: rgba(15, 23, 42, 0.85);
}

.contact-submit-btn {
  width: 100%;
  padding: 12px 20px;
  font-size: 14px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  cursor: pointer;
  border-radius: 10px;
  margin-top: 6px;
}

/* Fallback CTA Aliases */
.s-cta {
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 90px 6vmin 80px;
}

.s-cta-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90%;
  height: 120%;
  background: radial-gradient(ellipse, rgba(251, 191, 36, .18), transparent 60%);
  filter: blur(60px);
  z-index: -1;
  animation: coverPulse 6s ease-in-out infinite alternate;
}

.s-cta-inner {
  max-width: 880px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
  position: relative;
  margin: auto 0;
}

.s-cta h2 {
  font-size: clamp(46px, 7vw, 110px);
}

.s-cta-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 12px;
}

.s-cta-launch-info {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  width: 100%;
  max-width: 720px;
  margin-top: 32px;
  padding-top: 32px;
  border-top: 1px solid var(--line);
}

.launch-item {
  display: flex;
  flex-direction: column;
  gap: 6px;
  text-align: left
}

.launch-item .li-l {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--ink-3);
  font-weight: 600
}

.launch-item .li-v {
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 18px;
  color: #fff
}

.launch-item .li-v .accent {
  color: var(--indigo-soft)
}

/* ====== RESPONSIVE: tablet & mobile ====== */
@media (max-width:1024px) {
  .wwa-main-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

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

  .why-cell {
    border-right: 1px solid rgba(255, 255, 255, 0.22);
    border-bottom: 1px solid rgba(255, 255, 255, 0.22);
  }

  .why-cell:nth-child(2n) {
    border-right: none;
  }

  .why-cell:nth-child(n+7) {
    border-bottom: none;
  }

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

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px
  }

  .feature-grid,
  .metric-grid,
  .more-grid {
    grid-template-columns: repeat(2, 1fr)
  }

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

  .timeline::before {
    display: none
  }

  .s-cta-launch-info {
    grid-template-columns: 1fr;
    gap: 18px;
    text-align: center
  }

  .launch-item {
    align-items: center;
    text-align: center
  }

  .tm-credit {
    right: 18px;
    bottom: 18px
  }
}

@media (max-width:787px) {

  html,
  body {
    overflow: hidden
  }

  .slide-inner {
    padding: 76px 16px 84px !important;
    min-height: 100%;
    box-sizing: border-box;
    justify-content: flex-start !important;
  }

  .s-domain {
    justify-content: center !important;
  }

  .s-domain-inner {
    gap: 16px;
  }

  .domain-search-box {
    padding: 14px 14px;
    max-width: 100%;
  }

  .ds-input-wrap {
    flex-direction: column;
    align-items: stretch;
    padding: 10px;
    border-radius: 14px;
    gap: 10px;
  }

  .ds-select {
    width: 100%;
  }

  .ds-submit-btn {
    width: 100%;
    justify-content: center;
    padding: 12px;
  }

  .ds-tld-bar {
    gap: 6px;
    flex-wrap: wrap;
    justify-content: center;
  }

  .tld-item {
    padding: 6px 10px;
    font-size: 11px;
  }

  .ds-trust-row {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 9px;
    width: fit-content;
    max-width: 100%;
    margin: 10px auto 4px;
    padding: 0 4px;
  }

  .trust-item {
    font-size: 12.5px;
    gap: 10px;
    color: var(--ink);
  }

  /* ====== Full-Width Carousel Cards for Mobile ====== */
  .category-carousel-viewport,
  .testimonial-carousel-viewport {
    width: 100% !important;
    overflow: hidden !important;
    padding: 10px 0 16px !important;
    mask-image: none !important;
    -webkit-mask-image: none !important;
    box-sizing: border-box !important;
  }

  .category-carousel-track,
  .testimonial-carousel-track {
    display: flex !important;
    width: 100% !important;
    gap: 16px !important;
    position: relative !important;
    box-sizing: border-box !important;
  }

  .cat-card,
  .pkg-card,
  .testimonial-card {
    flex: 0 0 100% !important;
    width: 100% !important;
    min-width: 100% !important;
    max-width: 100% !important;
    padding: 20px 16px !important;
    box-sizing: border-box !important;
  }

  .cat-pkg-slider-stage {
    min-height: 460px;
  }

  .s-categories-head {
    gap: 10px;
  }

  .s-categories-head .sch-left {
    min-width: 0;
    width: 100%;
  }

  .s-categories-head h2 {
    font-size: clamp(24px, 6.5vw, 32px) !important;
    margin-top: 6px;
    line-height: 1.2;
  }

  .s-categories-head .sch-right {
    width: 100%;
    justify-content: space-between;
    margin-top: 2px;
  }

  .pkg-nav-controls {
    width: 100%;
    justify-content: space-between;
  }

  .pkg-back-btn {
    padding: 6px 14px;
    font-size: 12px;
  }

  .wwa-pillars-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .wwa-story-column .wwa-subtitle {
    font-size: 17px;
    line-height: 1.35;
  }

  .partners-grid {
    grid-template-columns: 1fr;
    gap: 14px;
    width: 100%;
  }

  .partner-card {
    width: 100%;
    box-sizing: border-box;
    padding: 18px 16px;
  }

  .services-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .why-grid-container {
    grid-template-columns: 1fr;
    border-radius: 14px;
  }

  .why-cell {
    border-right: none !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2) !important;
    padding: 16px 14px;
  }

  .why-cell:last-child {
    border-bottom: none !important;
  }

  .brand {
    top: 16px;
    left: 16px
  }

  .brand .brand-logo-img {
    height: 28px;
    max-width: 130px
  }

  .nav {
    top: 16px;
    right: 16px;
    gap: 5px
  }

  .nav button {
    width: 32px;
    height: 32px;
    font-size: 12px
  }

  .counter {
    padding: 0 10px;
    font-size: 10px;
    height: 32px;
    min-width: 54px
  }

  .feature-grid,
  .metric-grid,
  .more-grid {
    grid-template-columns: 1fr
  }

  .timeline {
    grid-template-columns: 1fr;
    padding-top: 10px
  }

  .tl-item {
    padding: 24px 16px 16px
  }

  .tl-item::before {
    top: 18px;
    left: 0;
    transform: none
  }

  .s-features-head,
  .s-metrics-head,
  .s-roadmap-head,
  .s-compare-head {
    margin-top: 40px
  }

  .s-domain h1 {
    font-size: 36px
  }

  .s-cta h2 {
    font-size: 42px
  }

  .menu-panel {
    width: 94vw;
    max-height: 88vh
  }

  .menu-header {
    padding: 18px 20px 14px
  }

  .menu-list {
    padding: 10px
  }

  .menu-item {
    padding: 12px 14px;
    gap: 14px
  }

  .menu-item .mi-num {
    width: 24px;
    font-size: 10px
  }

  .menu-item .mi-label {
    font-size: 14px
  }

  .menu-item .mi-sub {
    font-size: 11px
  }

  .menu-footer {
    display: none !important;
  }
}

@media (max-height:500px) and (orientation:landscape) {

  .slide-inner,
  .s-cover,
  .s-cta {
    padding: 60px 28px 40px
  }

  .nav {
    top: 12px;
    right: 12px
  }

  .brand {
    top: 12px;
    left: 14px
  }

  .section-tag {
    bottom: 12px;
    left: 14px
  }

  .tm-credit {
    bottom: 12px;
    right: 14px;
  }

}

@media (max-width: 960px) {
  .s-contact-cta {
    padding: 68px 16px 84px !important;
    width: 100%;
    box-sizing: border-box;
    justify-content: flex-start;
  }

  .contact-cta-container {
    grid-template-columns: 1fr;
    gap: 20px;
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    box-sizing: border-box;
  }

  .contact-info-panel,
  .contact-form-panel {
    width: 100%;
    max-width: 100%;
    padding: 24px 16px;
    box-sizing: border-box;
    border-radius: 18px;
  }

  .contact-info-title {
    font-size: clamp(24px, 6.5vw, 32px);
    line-height: 1.2;
    margin-bottom: 10px;
  }

  .contact-info-sub {
    font-size: 13px;
    line-height: 1.55;
    margin-bottom: 18px;
  }

  .contact-badge-live {
    max-width: 100%;
    white-space: normal;
    font-size: 11px;
    line-height: 1.35;
    padding: 5px 12px;
  }

  .contact-details-grid {
    grid-template-columns: 1fr;
    gap: 10px;
    width: 100%;
    margin-bottom: 18px;
  }

  .contact-channel-item {
    width: 100%;
    min-width: 0;
    box-sizing: border-box;
    padding: 12px 14px;
  }

  .contact-channel-meta {
    min-width: 0;
    flex: 1;
  }

  .contact-channel-val {
    white-space: normal;
    word-break: break-word;
    font-size: 12.5px;
    line-height: 1.4;
  }

  .contact-social-row {
    width: 100%;
    box-sizing: border-box;
    gap: 12px;
  }

  .contact-field-row {
    grid-template-columns: 1fr;
    gap: 12px;
  }
}

/* =========================================================================
 * 🎁 PROMOTIONAL ONLOAD OFFER POPUP MODAL
 * ========================================================================= */
.offer-popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  box-sizing: border-box;
}

.offer-popup-backdrop {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(3, 7, 18, 0.78);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  cursor: pointer;
}

.offer-popup-card {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 500px;
  background: rgba(15, 23, 42, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 25px 60px -15px rgba(0, 0, 0, 0.8), 0 0 35px rgba(99, 102, 241, 0.18);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  display: flex;
  flex-direction: column;
}

.offer-popup-close {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 10;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(15, 23, 42, 0.75);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
  backdrop-filter: blur(8px);
}

.offer-popup-close:hover {
  background: rgba(239, 68, 68, 0.85);
  border-color: rgba(239, 68, 68, 0.9);
  transform: scale(1.08);
}

.offer-popup-media {
  width: 100%;
  max-height: 240px;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.4);
  position: relative;
}

.offer-popup-media-link {
  display: block;
  width: 100%;
  height: 100%;
}

.offer-popup-img {
  width: 100%;
  max-height: 240px;
  object-fit: cover;
  display: block;
  transition: transform 0.35s ease;
}

.offer-popup-media-link:hover .offer-popup-img {
  transform: scale(1.03);
}

.offer-popup-body {
  padding: 22px 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.offer-popup-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #fbbf24;
  width: fit-content;
}

.offer-popup-pulse {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #fbbf24;
  box-shadow: 0 0 10px #fbbf24;
  animation: offerPulse 1.8s infinite;
}

@keyframes offerPulse {
  0% { transform: scale(0.95); opacity: 0.8; }
  50% { transform: scale(1.2); opacity: 1; box-shadow: 0 0 14px #fbbf24; }
  100% { transform: scale(0.95); opacity: 0.8; }
}

.offer-popup-title {
  font-family: var(--font-display, var(--font-sans));
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #ffffff;
  line-height: 1.25;
  margin: 0;
}

.offer-popup-desc {
  font-size: 0.88rem;
  color: var(--ink-2, #cbd5e1);
  line-height: 1.5;
  margin: 0;
}

.offer-popup-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 6px;
  flex-wrap: wrap;
}

.offer-popup-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 22px;
  background: linear-gradient(135deg, #4f46e5 0%, #7c3aed 100%);
  color: #ffffff;
  font-size: 0.88rem;
  font-weight: 700;
  border-radius: 12px;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(99, 102, 241, 0.4);
  transition: all 0.25s ease;
  flex: 1;
  min-width: 160px;
}

.offer-popup-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(99, 102, 241, 0.6);
  color: #fff;
}

.offer-popup-dismiss {
  background: transparent;
  border: none;
  color: #94a3b8;
  font-size: 0.82rem;
  cursor: pointer;
  padding: 8px 12px;
  transition: color 0.2s ease;
}

.offer-popup-dismiss:hover {
  color: #ffffff;
}

@media (max-width: 787px) {
  .offer-popup-card {
    max-width: calc(100% - 24px);
    max-height: 88vh;
    overflow-y: auto;
    border-radius: 16px;
  }

  .offer-popup-body {
    padding: 18px;
    gap: 8px;
  }

  .offer-popup-title {
    font-size: 1.15rem;
  }

  .offer-popup-media {
    max-height: 180px;
  }

  .offer-popup-img {
    max-height: 180px;
  }

  .offer-popup-actions {
    flex-direction: column;
    width: 100%;
    gap: 8px;
  }

  .offer-popup-btn {
    width: 100%;
  }

  .offer-popup-close {
    width: 32px;
    height: 32px;
    top: 10px;
    right: 10px;
  }
}