/* ═══ GLOBAL DESIGN TOKENS ═══════════════════════════════════════ */
:root {
  --color-navy:        #0B0F1E;
  --color-navy-light:  #141929;
  --color-navy-mid:    #1a1040;
  --color-indigo:      #5B4EFF;
  --color-indigo-light:#7B70FF;
  --color-indigo-pale: #EEF0FF;
  --color-indigo-mid:  #DDD9FF;
  --color-indigo-text: #a5b4fc;
  --color-off-white:   #F8F9FC;
  --color-border:      #E8EAF0;
  --color-text-dark:   #111827;
  --color-text-mid:    #374151;
  --color-text-light:  #6B7280;
  --color-green:       #10B981;
  --color-green-dark:  #065f46;
  --color-amber:       #F59E0B;
  --color-red:         #EF4444;
  --gradient-indigo:   linear-gradient(135deg, #5B4EFF, #8B7FFF);
  --gradient-indigo-h: linear-gradient(90deg, #5B4EFF, #8B7FFF);
  --gradient-hero:     linear-gradient(135deg, #0B0F1E 0%, #1a1040 55%, #0e1628 100%);
  --gradient-hero-text:linear-gradient(90deg, #a5b4fc, #818cf8, #6366f1);
  --gradient-cta:      linear-gradient(135deg, #5B4EFF 0%, #3730A3 100%);
  --shadow-card:       0 2px 16px rgba(11,15,30,0.07);
  --shadow-float:      0 8px 40px rgba(91,78,255,0.18);
  --shadow-hero:       0 24px 80px rgba(11,15,30,0.22);
  --shadow-form:       0 24px 80px rgba(91,78,255,0.12);
}

/* ═══ BASE ═══════════════════════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', sans-serif;
  background: #fff;
  color: var(--color-text-dark);
  -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }

/* ═══ TYPOGRAPHY UTILITIES ═══════════════════════════════════════ */
.text-gradient-hero {
  background: var(--gradient-hero-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ═══ NAVBAR ═════════════════════════════════════════════════════ */
.nav-glass {
  --nav-height: 4.5rem;
  background: rgba(11, 15, 30, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255,255,255,0.07);
  transition: border-color 0.25s ease, background 0.25s ease;
}
.nav-glass.nav-scrolled {
  border-bottom-color: rgba(255,255,255,0.1);
  background: rgba(11, 15, 30, 0.97);
}
.nav-glass.menu-open {
  border-bottom-color: rgba(255,255,255,0.08);
  background: rgba(11, 15, 30, 0.98);
}

.brand-wordmark {
  display: inline-flex;
  align-items: baseline;
  font-size: 1.125rem;
  line-height: 1;
  letter-spacing: -0.03em;
}
.brand-wordmark-main {
  font-weight: 700;
  color: #fff;
}
.brand-wordmark-accent {
  font-weight: 800;
  color: var(--color-indigo-light);
}

/* ═══ HAMBURGER BUTTON ═══════════════════════════════════════════ */
.mobile-menu-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 1px solid rgba(255,255,255,0.13);
  border-radius: 11px;
  background: rgba(255,255,255,0.05);
  color: white;
  cursor: pointer;
  transition: background 0.22s ease, border-color 0.22s ease, transform 0.18s ease;
  -webkit-tap-highlight-color: transparent;
  position: relative;
  overflow: hidden;
}
.mobile-menu-btn::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 11px;
  background: radial-gradient(circle at center, rgba(91,78,255,0.25), transparent 70%);
  opacity: 0;
  transition: opacity 0.22s ease;
}
.mobile-menu-btn:hover {
  background: rgba(255,255,255,0.09);
  border-color: rgba(255,255,255,0.22);
  transform: scale(1.04);
}
.mobile-menu-btn:hover::after {
  opacity: 1;
}
.mobile-menu-btn:active {
  transform: scale(0.96);
}
.mobile-menu-btn.open {
  background: rgba(91,78,255,0.15);
  border-color: rgba(91,78,255,0.4);
}

/* ═══ HAMBURGER ICON LINES ═══════════════════════════════════════ */
.mobile-menu-icon {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 18px;
  height: 14px;
  position: relative;
  z-index: 1;
}
.mobile-menu-icon span {
  display: block;
  width: 100%;
  height: 2px;
  background: currentColor;
  border-radius: 2px;
  transition: transform 0.32s cubic-bezier(0.23, 1, 0.32, 1),
              opacity    0.22s ease,
              width      0.28s ease;
  transform-origin: center;
}
.mobile-menu-icon span:nth-child(2) {
  width: 75%;
}
.mobile-menu-btn.open .mobile-menu-icon span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
  width: 100%;
}
.mobile-menu-btn.open .mobile-menu-icon span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.mobile-menu-btn.open .mobile-menu-icon span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
  width: 100%;
}

/* ═══ MOBILE MENU BACKDROP ═══════════════════════════════════════ */
.mobile-menu-backdrop {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 198;
  background: rgba(5, 8, 20, 0.65);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  opacity: 0;
  visibility: hidden;            /* ← closed: hidden from layout and touch */
  pointer-events: none;          /* ← closed: invisible AND untouchable */
  transition: opacity 0.35s ease, visibility 0.35s ease;
}
@media (max-width: 767px) {
  .mobile-menu-backdrop { display: block; }
  .mobile-menu-backdrop.open {
    opacity: 1;
    visibility: visible;         /* ← open: fully visible */
    pointer-events: auto;        /* ← open: now captures taps to close */
  }
}

/* ═══ MOBILE MENU PANEL ══════════════════════════════════════════ */
.mobile-menu {
  display: none;
}
@media (max-width: 767px) {
  .nav-glass {
    z-index: 201 !important;
  }
  .mobile-menu {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 200;
    padding-top: var(--nav-height, 4.5rem);
    background: linear-gradient(160deg, #0d1126 0%, #0B0F1E 40%, #0f0b28 100%);
    overflow-y: auto;
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain;
    /* Hidden off-screen — NOT interactive when closed */
    transform: translateX(100%);
    visibility: hidden;
    pointer-events: none;        /* ← closed: no touch interception */
    transition: transform 0.38s cubic-bezier(0.32, 0.72, 0, 1),
                visibility 0s linear 0.38s;
    background-image:
      linear-gradient(160deg, #0d1126 0%, #0B0F1E 40%, #0f0b28 100%),
      radial-gradient(ellipse 80% 60% at 80% 0%, rgba(91,78,255,0.12) 0%, transparent 70%);
    background-blend-mode: normal;
  }
  .mobile-menu.open {
    transform: translateX(0);
    visibility: visible;
    pointer-events: auto;        /* ← open: now fully interactive */
    transition: transform 0.38s cubic-bezier(0.32, 0.72, 0, 1),
                visibility 0s linear 0s;
  }
}
@media (min-width: 768px) {
  .mobile-menu { display: none !important; }
}

/* ═══ MOBILE MENU INNER ══════════════════════════════════════════ */
.mobile-menu-inner {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 8px 20px 24px;
  padding-bottom: max(24px, env(safe-area-inset-bottom, 24px));
  gap: 0;
  min-height: 0;
}

/* ═══ MENU HEADER ════════════════════════════════════════════════ */
.mobile-menu-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 16px 0 14px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  margin-bottom: 8px;
  opacity: 0;
  transform: translateY(-8px);
  transition: opacity 0.3s ease 0.08s, transform 0.3s ease 0.08s;
}
.mobile-menu.open .mobile-menu-brand {
  opacity: 1;
  transform: translateY(0);
}
.mobile-menu-brand-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-green);
  box-shadow: 0 0 8px rgba(16,185,129,0.6);
  animation: pulse-dot 2s ease-in-out infinite;
  flex-shrink: 0;
}
.mobile-menu-brand-text {
  font-size: 12px;
  color: rgba(255,255,255,0.45);
  font-weight: 500;
  letter-spacing: 0.02em;
}

/* ═══ NAV LINKS ══════════════════════════════════════════════════ */
.mobile-menu-nav {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 4px 0;
}
.mobile-menu-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 13px 14px;
  font-size: 16px;
  font-weight: 500;
  color: rgba(255,255,255,0.65);
  text-decoration: none;
  border-radius: 12px;
  transition: color 0.22s ease,
              background 0.22s ease,
              transform 0.22s ease;
  position: relative;
  /* staggered fade-in */
  opacity: 0;
  transform: translateX(20px);
}
.mobile-menu.open .mobile-menu-link {
  opacity: 1;
  transform: translateX(0);
}
/* Stagger delays */
.mobile-menu.open .mobile-menu-link:nth-child(1) { transition-delay: 0.10s; }
.mobile-menu.open .mobile-menu-link:nth-child(2) { transition-delay: 0.13s; }
.mobile-menu.open .mobile-menu-link:nth-child(3) { transition-delay: 0.16s; }
.mobile-menu.open .mobile-menu-link:nth-child(4) { transition-delay: 0.19s; }
.mobile-menu.open .mobile-menu-link:nth-child(5) { transition-delay: 0.22s; }
.mobile-menu.open .mobile-menu-link:nth-child(6) { transition-delay: 0.25s; }
/* Reset animation on close */
.mobile-menu:not(.open) .mobile-menu-link {
  transition: opacity 0.15s ease, transform 0.15s ease;
}
.mobile-menu-link-arrow {
  color: rgba(255,255,255,0.2);
  font-size: 14px;
  transition: transform 0.22s ease, color 0.22s ease;
  flex-shrink: 0;
}
.mobile-menu-link:hover {
  color: white;
  background: rgba(255,255,255,0.06);
}
.mobile-menu-link:hover .mobile-menu-link-arrow {
  transform: translateX(3px);
  color: rgba(255,255,255,0.45);
}
.mobile-menu-link:active {
  transform: scale(0.98);
  background: rgba(91,78,255,0.08);
}
.mobile-menu-link.is-active {
  color: white;
  background: rgba(91,78,255,0.1);
}
.mobile-menu-link.is-active .mobile-menu-link-arrow {
  color: var(--color-indigo-light);
}

/* ═══ MENU DIVIDER ═══════════════════════════════════════════════ */
.mobile-menu-divider {
  height: 1px;
  background: rgba(255,255,255,0.07);
  margin: 8px 14px;
  border-radius: 1px;
  opacity: 0;
  transition: opacity 0.3s ease 0.26s;
}
.mobile-menu.open .mobile-menu-divider {
  opacity: 1;
}

/* ═══ MENU ACTIONS (CTA) ═════════════════════════════════════════ */
.mobile-menu-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: auto;
  padding-top: 20px;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.3s ease 0.28s, transform 0.3s ease 0.28s;
}
.mobile-menu.open .mobile-menu-actions {
  opacity: 1;
  transform: translateY(0);
}
.mobile-menu:not(.open) .mobile-menu-actions {
  transition: opacity 0.15s ease, transform 0.15s ease;
}
.mobile-menu-login {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 20px;
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,0.65);
  text-decoration: none;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  background: rgba(255,255,255,0.04);
  transition: color 0.22s ease, border-color 0.22s ease, background 0.22s ease;
  -webkit-tap-highlight-color: transparent;
}
.mobile-menu-login:hover {
  color: white;
  border-color: rgba(255,255,255,0.2);
  background: rgba(255,255,255,0.07);
}

/* ═══ HERO ═══════════════════════════════════════════════════════ */
.hero-section {
  background: var(--gradient-hero);
  position: relative;
  overflow: hidden;
  --hero-pad: 2.5rem;
  --nav-height: 4.5rem;
  min-height: 100dvh;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  padding-top: var(--nav-height);
  box-sizing: border-box;
}
@media (min-width: 768px) {
  .hero-section { --hero-pad: 2.75rem; }
}
.hero-inner {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  min-height: 0;
  padding-block: var(--hero-pad);
}
@media (max-width: 767px) {
  .hero-inner { justify-content: flex-start; }
}
.hero-section::before {
  content: '';
  position: absolute;
  top: -30%; right: -10%;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(91,78,255,0.18) 0%, transparent 70%);
  pointer-events: none;
}
.hero-section::after {
  content: '';
  position: absolute;
  bottom: -20%; left: -5%;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(139,127,255,0.10) 0%, transparent 70%);
  pointer-events: none;
}
.hero-title {
  font-size: 2rem;
  font-weight: 800;
  color: white;
  margin-bottom: 1.25rem;
  letter-spacing: -0.03em;
  line-height: 1.1;
}
@media (min-width: 768px) {
  .hero-title { font-size: 2.5rem; margin-bottom: 1.375rem; }
}
@media (min-width: 1024px) {
  .hero-title { font-size: 2.75rem; }
}
@media (min-width: 1280px) {
  .hero-title { font-size: 2.875rem; }
}
.hero-desc {
  font-size: 1rem;
  color: #9ca3af;
  margin-bottom: 1.5rem;
  line-height: 1.65;
  max-width: 28rem;
}
@media (min-width: 768px) {
  .hero-desc { font-size: 1.0625rem; margin-bottom: 1.625rem; }
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  width: fit-content;
  gap: 8px;
  background: rgba(91,78,255,0.15);
  border: 1px solid rgba(91,78,255,0.35);
  border-radius: 9999px;
  padding: 6px 16px;
  font-size: 13px;
  font-weight: 500;
  color: var(--color-indigo-text);
  margin-bottom: 1.25rem;
}
@media (min-width: 768px) {
  .hero-badge { margin-bottom: 1.375rem; }
}
.hero-badge .dot {
  width: 7px; height: 7px;
  background: var(--color-green);
  box-shadow: 0 0 6px rgba(16, 185, 129, 0.55);
  border-radius: 50%;
  animation: pulse-dot 2s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%,100% { opacity:1; transform:scale(1); }
  50%      { opacity:.5; transform:scale(1.4); }
}

/* ═══ HERO GRID ═══════════════════════════════════════════════════ */
.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
  align-items: center;
  width: 100%;
}
@media (min-width: 768px) {
  .hero-grid {
    grid-template-columns: 1fr 1fr;
    gap: 28px 48px;
    align-items: stretch;
    max-height: calc(100dvh - var(--nav-height) - (var(--hero-pad) * 2));
    max-height: calc(100svh - var(--nav-height) - (var(--hero-pad) * 2));
  }
}
.hero-content {
  display: flex;
  flex-direction: column;
  gap: 0;
}
@media (min-width: 768px) {
  .hero-content {
    justify-content: flex-start;
    min-height: 100%;
    padding: 4px 0;
  }
}

/* ═══ HERO IMAGE ═══════════════════════════════════════════════════ */
.hero-visual-col {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media (min-width: 768px) {
  .hero-visual-col {
    justify-content: space-between;
    min-height: 100%;
  }
}
.hero-image-wrap {
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (min-width: 768px) {
  .hero-image-wrap {
    flex: 1;
    min-height: 0;
    justify-content: center;
  }
}
.hero-image-wrap::before {
  content: '';
  position: absolute;
  top: 10%; left: 5%; right: 5%; bottom: 10%;
  background: radial-gradient(ellipse, rgba(91,78,255,0.2) 0%, transparent 68%);
  filter: blur(36px);
  z-index: 0;
  pointer-events: none;
}
.hero-image-wrap img {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 520px;
  height: auto;
  display: block;
  border-radius: 12px;
  margin: 0 auto;
  object-fit: contain;
}
@media (min-width: 768px) {
  .hero-image-wrap img {
    max-height: calc(100dvh - var(--nav-height) - (var(--hero-pad) * 2) - 5.5rem);
    max-height: calc(100svh - var(--nav-height) - (var(--hero-pad) * 2) - 5.5rem);
    width: auto;
    max-width: min(520px, 100%);
  }
}
@media (min-width: 1024px) {
  .hero-image-wrap img { max-width: min(580px, 100%); }
}
@media (min-width: 1280px) {
  .hero-image-wrap img { max-width: min(620px, 100%); }
}

/* ═══ HERO TRUST PANEL ═════════════════════════════════════════════ */
.hero-trust-panel {
  margin-top: 2.25rem;
  padding: 0;
}
@media (min-width: 768px) {
  .hero-trust-panel--stats {
    margin-top: auto;
    padding-top: 2rem;
  }
}
.hero-trust-group {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px 0;
}
@media (min-width: 480px) {
  .hero-trust-group { flex-wrap: nowrap; }
}
.hero-trust-group--stats {
  justify-content: flex-start;
  flex-wrap: nowrap;
  width: 100%;
}
@media (max-width: 479px) {
  .hero-trust-group--stats {
    justify-content: space-between;
    gap: 0;
  }
  .hero-trust-panel--stats .hero-trust-item {
    flex: 1 1 0;
    min-width: 0;
    gap: 6px;
    padding: 0 4px;
  }
  .hero-trust-panel--stats .hero-trust-item:first-child { padding-left: 0; }
  .hero-trust-panel--stats .hero-trust-item:last-child { padding-right: 0; }
  .hero-trust-panel--stats .hero-trust-icon {
    width: 28px;
    height: 28px;
  }
  .hero-trust-panel--stats .hero-trust-value { font-size: 13px; }
  .hero-trust-panel--stats .hero-trust-label {
    font-size: 9px;
    white-space: normal;
    line-height: 1.2;
  }
  .hero-trust-panel--stats .hero-trust-divider {
    display: block;
    height: 22px;
  }
}
.hero-trust-item {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
  padding: 0 12px;
  flex: 1 1 100%;
}
@media (min-width: 480px) {
  .hero-trust-item { flex: 0 1 auto; padding: 0 16px; }
}
.hero-trust-panel--stats .hero-trust-item:first-child { padding-left: 0; }
.hero-trust-icon {
  width: 34px; height: 34px;
  border-radius: 50%;
  background: rgba(91,78,255,0.18);
  box-shadow: 0 0 16px rgba(91,78,255,0.12);
  display: flex; align-items: center; justify-content: center;
  color: var(--color-indigo-text);
  flex-shrink: 0;
}
@media (min-width: 768px) {
  .hero-trust-icon { width: 36px; height: 36px; }
}
.hero-trust-text {
  display: flex;
  flex-direction: column;
  gap: 1px;
  min-width: 0;
}
.hero-trust-value {
  font-size: 14px;
  font-weight: 700;
  color: white;
  letter-spacing: -0.2px;
  line-height: 1.25;
  white-space: nowrap;
}
@media (min-width: 768px) {
  .hero-trust-value { font-size: 15px; }
}
.hero-trust-label {
  font-size: 10px;
  font-weight: 400;
  color: rgba(255,255,255,0.42);
  line-height: 1.3;
  white-space: nowrap;
}
@media (min-width: 768px) {
  .hero-trust-label { font-size: 11px; }
}
.hero-trust-divider {
  width: 1px;
  height: 28px;
  background: rgba(255,255,255,0.1);
  flex-shrink: 0;
  display: none;
}
@media (min-width: 480px) {
  .hero-trust-divider { display: block; }
}

/* Features strip — constrained to hero image width */
.hero-features-strip {
  width: 100%;
  max-width: 520px;
  margin: 20px auto 0;
  padding: 0 4px;
  flex-shrink: 0;
}
@media (min-width: 768px) {
  .hero-features-strip { margin-top: 0; padding-top: 1rem; }
}
@media (min-width: 1024px) {
  .hero-features-strip { max-width: 580px; padding-top: 1.125rem; }
}
@media (min-width: 1280px) {
  .hero-features-strip { max-width: 620px; }
}
.hero-trust-group--features {
  width: 100%;
  justify-content: space-between;
  gap: 0;
  flex-wrap: nowrap;
}
@media (max-width: 767px) {
  .hero-features-strip {
    max-width: 100%;
    margin-top: 1.25rem;
    padding: 0;
  }
  .hero-trust-group--features {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.3rem;
  }
  .hero-features-strip .hero-trust-item {
    flex: none;
    width: 100%;
    gap: 10px;
    padding: 0;
    align-items: center;
  }
  .hero-features-strip .hero-trust-item:first-child,
  .hero-features-strip .hero-trust-item:last-child { padding: 0; }
  .hero-features-strip .hero-trust-divider { display: none; }
  .hero-features-strip .hero-trust-icon {
    width: 32px;
    height: 32px;
  }
  .hero-features-strip .hero-trust-value {
    font-size: 14px;
    line-height: 1.25;
    white-space: normal;
  }
  .hero-features-strip .hero-trust-label {
    font-size: 12px;
    line-height: 1.3;
  }
}
.hero-features-strip .hero-trust-item {
  flex: 1 1 0;
  min-width: 0;
  gap: 8px;
  padding: 0 8px;
}
.hero-features-strip .hero-trust-item:first-child { padding-left: 0; }
.hero-features-strip .hero-trust-item:last-child { padding-right: 0; }
.hero-features-strip .hero-trust-icon {
  width: 28px; height: 28px;
  box-shadow: 0 0 12px rgba(91,78,255,0.1);
}
@media (min-width: 768px) {
  .hero-features-strip .hero-trust-icon { width: 30px; height: 30px; }
}
.hero-features-strip .hero-trust-value {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: -0.1px;
}
@media (min-width: 768px) {
  .hero-features-strip .hero-trust-value { font-size: 13px; }
}
@media (min-width: 1024px) {
  .hero-features-strip .hero-trust-value { font-size: 14px; }
}
.hero-features-strip .hero-trust-label {
  font-size: 9px;
  color: rgba(255,255,255,0.38);
  white-space: normal;
  line-height: 1.25;
}
@media (min-width: 768px) {
  .hero-features-strip .hero-trust-label { font-size: 10px; }
}
@media (min-width: 1024px) {
  .hero-features-strip .hero-trust-label { font-size: 11px; }
}
.hero-features-strip .hero-trust-divider {
  height: 26px;
  display: block;
}

/* ═══ LAUNCH STRIP ════════════════════════════════════════════════ */
.launch-strip {
  background: var(--color-off-white);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  padding: 1.25rem 0;
}
@media (min-width: 768px) {
  .launch-strip { padding: 1.5rem 0; }
}

/* ═══ SECTION PADDING ═════════════════════════════════════════════ */
.section-pad {
  padding-block: 3.5rem;
}
@media (min-width: 768px) {
  .section-pad { padding-block: 5rem; }
}
@media (min-width: 1024px) {
  .section-pad { padding-block: 6rem; }
}
.launch-strip-row {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0.75rem;
}
@media (min-width: 640px) {
  .launch-strip-row {
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
  }
}
.launch-step {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex: 1;
  min-width: 0;
  padding: 0.625rem 0.875rem;
  background: white;
  border: 1px solid var(--color-border);
  border-radius: 12px;
}
@media (min-width: 640px) {
  .launch-step {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.5rem;
    padding: 0.875rem 0.75rem;
    background: transparent;
    border: none;
    border-radius: 0;
  }
}
.launch-step-num {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--color-indigo-pale);
  color: var(--color-indigo);
  font-size: 0.8125rem;
  font-weight: 800;
}
@media (min-width: 640px) {
  .launch-step-num {
    width: 32px;
    height: 32px;
    font-size: 0.875rem;
  }
}
.launch-step-text {
  display: flex;
  flex-direction: column;
  gap: 1px;
  min-width: 0;
}
.launch-step-text strong {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--color-text-dark);
  line-height: 1.3;
}
.launch-step-text span {
  font-size: 0.75rem;
  color: var(--color-text-light);
  line-height: 1.3;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.launch-step-arrow {
  display: none;
  color: rgba(91, 78, 255, 0.45);
  font-size: 1.125rem;
  font-weight: 600;
  flex-shrink: 0;
  padding: 0 0.25rem;
}
@media (min-width: 640px) {
  .launch-step-arrow { display: block; }
}

/* ═══ BROWSER MOCKUP ═════════════════════════════════════════════ */
.browser-wrap {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 32px 100px rgba(0,0,0,0.55), 0 0 0 1px rgba(255,255,255,0.08);
  background: #1e2235;
  position: relative;
}
.browser-wrap::before {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(91,78,255,0.6), rgba(139,127,255,0.2), transparent 60%);
  z-index: -1;
}
.browser-bar {
  background: #252a3d;
  padding: 11px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.browser-dots { display:flex; gap:6px; }
.browser-dot { width:12px; height:12px; border-radius:50%; }
.browser-url {
  flex: 1;
  background: rgba(255,255,255,0.07);
  border-radius: 6px;
  padding: 5px 12px;
  font-size: 12px;
  color: rgba(255,255,255,0.5);
  display: flex;
  align-items: center;
  gap: 6px;
}
.browser-url .lock { color: var(--color-green); font-size: 11px; }
.browser-url .url-text { color: rgba(255,255,255,0.65); }
.portfolio-preview {
  background: var(--color-off-white);
  min-height: 360px;
  position: relative;
  overflow: hidden;
}
.pp-sidebar {
  width: 200px;
  background: linear-gradient(180deg, var(--color-navy-mid) 0%, var(--color-navy) 100%);
  padding: 28px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  min-height: 360px;
}
.pp-avatar {
  width: 70px; height: 70px;
  border-radius: 50%;
  background: var(--gradient-indigo);
  display: flex; align-items: center; justify-content: center;
  font-size: 24px; font-weight: 700; color: white;
  border: 3px solid rgba(255,255,255,0.15);
}
.pp-name { font-size: 13px; font-weight: 700; color: white; text-align:center; }
.pp-role { font-size: 11px; color: rgba(255,255,255,0.5); text-align:center; }
.pp-skill-badge {
  background: rgba(91,78,255,0.3);
  border: 1px solid rgba(91,78,255,0.5);
  border-radius: 4px;
  padding: 3px 8px;
  font-size: 10px;
  color: var(--color-indigo-text);
  font-weight: 500;
}
.pp-hire-btn {
  background: rgba(91,78,255,0.4);
  border: 1px solid rgba(91,78,255,0.5);
  border-radius: 6px;
  padding: 6px 10px;
  text-align: center;
  font-size: 10px;
  color: var(--color-indigo-text);
  font-weight: 600;
  cursor: pointer;
}
.pp-main { flex: 1; padding: 20px; background: var(--color-off-white); }
.pp-section-label {
  font-size: 10px;
  font-weight: 700;
  color: #9ca3af;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 10px;
}
.pp-project-card {
  background: white;
  border-radius: 8px;
  padding: 10px 12px;
  margin-bottom: 8px;
  border: 1px solid var(--color-border);
  box-shadow: 0 1px 4px rgba(0,0,0,0.05);
}
.pp-project-title { font-size: 11px; font-weight: 600; color: var(--color-text-dark); }
.pp-project-sub { font-size: 10px; color: #9ca3af; margin-top: 2px; }
.pp-project-tag {
  display: inline-block;
  background: var(--color-indigo-pale);
  color: var(--color-indigo);
  font-size: 9px;
  font-weight: 600;
  padding: 2px 6px;
  border-radius: 4px;
  margin-top: 5px;
}
.pp-skill-bar { margin-bottom: 6px; }
.pp-skill-name { font-size: 10px; color: var(--color-text-mid); font-weight: 500; margin-bottom: 3px; }
.pp-skill-track { height: 4px; background: var(--color-border); border-radius: 2px; overflow: hidden; }
.pp-skill-fill { height: 100%; background: var(--gradient-indigo-h); border-radius: 2px; }

.subdomain-pill {
  position: absolute;
  bottom: -16px;
  left: 50%;
  transform: translateX(-50%);
  background: white;
  border-radius: 9999px;
  padding: 8px 20px;
  font-size: 13px;
  font-weight: 600;
  color: var(--color-indigo);
  box-shadow: 0 8px 32px rgba(91,78,255,0.25);
  border: 1.5px solid var(--color-indigo-mid);
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 8px;
}
.subdomain-pill .globe { color: var(--color-green); }

/* ═══ SECTION COMMON ═════════════════════════════════════════════ */
.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--color-indigo);
  margin-bottom: 14px;
}
.section-eyebrow::before {
  content: '';
  width: 20px; height: 2px;
  background: var(--color-indigo);
  border-radius: 1px;
}
.section-eyebrow-light { color: rgba(255,255,255,0.7); }
.section-eyebrow-light::before { background: rgba(255,255,255,0.7); }

.trust-card-footer {
  margin-top: auto;
  padding-top: 1.25rem;
  border-top: 1px solid var(--color-border);
}
.accent-bar {
  height: 3px;
  background: var(--gradient-indigo-h);
  border-radius: 2px;
  width: 36px;
  flex-shrink: 0;
}

/* ═══ TRUST SECTION ══════════════════════════════════════════════ */
.trust-section-head {
  max-width: 36rem;
  margin: 0 auto 2.5rem;
  text-align: center;
}
@media (min-width: 768px) {
  .trust-section-head { margin-bottom: 3.25rem; }
}
.trust-section-title {
  margin: 0 0 0.75rem;
  font-size: clamp(1.625rem, 4vw, 2.25rem);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.18;
  color: var(--color-text-dark, #111827);
}
.trust-section-desc {
  margin: 0;
  font-size: clamp(0.9375rem, 2.2vw, 1.0625rem);
  line-height: 1.65;
  color: var(--color-text-light, #6B7280);
}

.trust-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
@media (min-width: 640px) {
  .trust-grid { gap: 1.25rem; }
}
@media (min-width: 900px) {
  .trust-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }
}

/* ═══ TRUST CARDS — soft glassmorphism hover ═════════════════════
   Soft indigo glass. No dark invert = card-to-card transition soft.
*/
.trust-card {
  --trust-ease: cubic-bezier(0.33, 1, 0.68, 1);
  --trust-dur: 0.55s;
  position: relative;
  isolation: isolate;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 18px;
  padding: 1.375rem 1.25rem 1.25rem;
  border: 1px solid rgba(232, 234, 240, 0.95);
  box-shadow:
    0 1px 2px rgba(11, 15, 30, 0.03),
    0 8px 24px rgba(11, 15, 30, 0.04);
  transition:
    background var(--trust-dur) var(--trust-ease),
    backdrop-filter var(--trust-dur) var(--trust-ease),
    -webkit-backdrop-filter var(--trust-dur) var(--trust-ease),
    transform var(--trust-dur) var(--trust-ease),
    box-shadow var(--trust-dur) var(--trust-ease),
    border-color var(--trust-dur) var(--trust-ease);
}
@media (min-width: 640px) {
  .trust-card {
    padding: 1.75rem 1.5rem 1.5rem;
    border-radius: 20px;
  }
}
@media (min-width: 900px) {
  .trust-card {
    padding: 2rem 1.75rem 1.625rem;
  }
}
.trust-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  z-index: 0;
  pointer-events: none;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.55) 0%, rgba(238, 240, 255, 0.2) 100%);
  opacity: 0.55;
  transition: opacity var(--trust-dur) var(--trust-ease);
}
.trust-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(120% 90% at 100% 0%, rgba(91, 78, 255, 0.28) 0%, transparent 55%),
    radial-gradient(90% 70% at 0% 100%, rgba(123, 112, 255, 0.18) 0%, transparent 50%);
  opacity: 0;
  transition: opacity var(--trust-dur) var(--trust-ease);
}
.trust-card:hover {
  background: rgba(221, 217, 255, 0.72);
  backdrop-filter: blur(18px) saturate(1.25);
  -webkit-backdrop-filter: blur(18px) saturate(1.25);
  transform: translateY(-5px);
  border-color: rgba(91, 78, 255, 0.38);
  box-shadow:
    0 8px 20px rgba(91, 78, 255, 0.12),
    0 18px 40px rgba(91, 78, 255, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.65);
}
.trust-card:hover::before { opacity: 1; }
.trust-card:hover::after { opacity: 1; }
.trust-card > * { position: relative; z-index: 1; }

.trust-card-title {
  margin: 0 0 0.5rem;
  font-size: clamp(1.0625rem, 2.4vw, 1.1875rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.3;
  color: #111827;
  transition: color var(--trust-dur) var(--trust-ease);
}
.trust-card:hover .trust-card-title { color: #0B0F1E; }

.trust-card-desc {
  margin: 0;
  font-size: clamp(0.875rem, 2vw, 0.9375rem);
  line-height: 1.65;
  color: #6B7280;
  transition: color var(--trust-dur) var(--trust-ease);
}
.trust-card:hover .trust-card-desc { color: #4B5563; }

.trust-card-footer {
  transition: border-color var(--trust-dur) var(--trust-ease);
}
.trust-card:hover .trust-card-footer {
  border-color: rgba(91, 78, 255, 0.16);
}

.trust-meta-row {
  display: flex;
  align-items: center;
  gap: 0.625rem;
}
.trust-chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.trust-meta {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  color: var(--color-indigo);
  transition: color var(--trust-dur) var(--trust-ease);
}
@media (min-width: 640px) {
  .trust-meta { font-size: 0.8125rem; }
}
.trust-card:hover .trust-meta { color: #4f43e8; }

.trust-url-pill {
  display: inline-flex;
  align-items: center;
  max-width: 100%;
  padding: 0.4rem 0.75rem;
  border-radius: 8px;
  background: rgba(238, 240, 255, 0.85);
  border: 1px solid rgba(221, 217, 255, 0.9);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition:
    background var(--trust-dur) var(--trust-ease),
    border-color var(--trust-dur) var(--trust-ease),
    box-shadow var(--trust-dur) var(--trust-ease);
}
.trust-url-pill .trust-meta {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.trust-card:hover .trust-url-pill {
  background: rgba(255, 255, 255, 0.65);
  border-color: rgba(91, 78, 255, 0.28);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.trust-chip {
  display: inline-flex;
  align-items: center;
  padding: 0.3rem 0.625rem;
  border-radius: 9999px;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  border: 1px solid transparent;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  transition:
    color var(--trust-dur) var(--trust-ease),
    background var(--trust-dur) var(--trust-ease),
    border-color var(--trust-dur) var(--trust-ease),
    box-shadow var(--trust-dur) var(--trust-ease);
}
@media (min-width: 640px) {
  .trust-chip { font-size: 0.75rem; }
}
.trust-chip--green {
  background: rgba(236, 253, 245, 0.9);
  border-color: rgba(167, 243, 208, 0.9);
  color: #059669;
}
.trust-chip--indigo {
  background: rgba(238, 240, 255, 0.9);
  border-color: rgba(221, 217, 255, 0.9);
  color: var(--color-indigo);
}
.trust-card:hover .trust-chip--green {
  background: rgba(236, 253, 245, 0.75);
  border-color: rgba(16, 185, 129, 0.28);
  box-shadow: 0 4px 12px rgba(16, 185, 129, 0.08);
}
.trust-card:hover .trust-chip--indigo {
  background: rgba(255, 255, 255, 0.7);
  border-color: rgba(91, 78, 255, 0.28);
  box-shadow: 0 4px 12px rgba(91, 78, 255, 0.08);
}

.accent-bar {
  transition:
    width var(--trust-dur) var(--trust-ease),
    box-shadow var(--trust-dur) var(--trust-ease);
}
.trust-card:hover .accent-bar {
  width: 44px;
  box-shadow: 0 0 12px rgba(91, 78, 255, 0.35);
}

.trust-icon {
  width: 3rem;
  height: 3rem;
  border-radius: 14px;
  background: rgba(238, 240, 255, 0.9);
  color: var(--color-indigo);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.125rem;
  flex-shrink: 0;
  border: 1px solid rgba(91, 78, 255, 0.12);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition:
    background var(--trust-dur) var(--trust-ease),
    border-color var(--trust-dur) var(--trust-ease),
    color var(--trust-dur) var(--trust-ease),
    transform var(--trust-dur) var(--trust-ease),
    box-shadow var(--trust-dur) var(--trust-ease);
}
@media (min-width: 640px) {
  .trust-icon {
    width: 3.25rem;
    height: 3.25rem;
    margin-bottom: 1.25rem;
  }
}
.trust-icon svg {
  width: 1.25rem;
  height: 1.25rem;
  display: block;
}
@media (min-width: 640px) {
  .trust-icon svg {
    width: 1.375rem;
    height: 1.375rem;
  }
}
.trust-card:hover .trust-icon {
  background: rgba(255, 255, 255, 0.72);
  border-color: rgba(91, 78, 255, 0.28);
  color: #4f43e8;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(91, 78, 255, 0.16);
}

@media (hover: none) {
  .trust-card:hover {
    transform: none;
    background: rgba(255, 255, 255, 0.78);
    border-color: rgba(232, 234, 240, 0.95);
    box-shadow:
      0 1px 2px rgba(11, 15, 30, 0.03),
      0 8px 24px rgba(11, 15, 30, 0.04);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
  }
  .trust-card:hover::after { opacity: 0; }
  .trust-card:hover .trust-icon {
    transform: none;
    box-shadow: none;
    background: rgba(238, 240, 255, 0.9);
    border-color: rgba(91, 78, 255, 0.12);
    color: var(--color-indigo);
  }
}

@media (prefers-reduced-motion: reduce) {
  .trust-card,
  .trust-card::before,
  .trust-card::after,
  .trust-card-title,
  .trust-card-desc,
  .trust-card-footer,
  .trust-chip,
  .trust-url-pill,
  .trust-meta,
  .accent-bar,
  .trust-icon {
    transition-duration: 0.01ms !important;
  }
  .trust-card:hover { transform: none; }
  .trust-card:hover .trust-icon { transform: none; }
}

/* ═══ PROBLEM / SOLUTION ═════════════════════════════════════════ */
.ps-blocks {
  display: flex;
  flex-direction: column;
  gap: 3.5rem;
}
.ps-block {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
}
@media (min-width: 768px) {
  .ps-block {
    grid-template-columns: 1.12fr 0.88fr;
    gap: 3rem;
  }
  .ps-block--solution {
    grid-template-columns: 0.88fr 1.12fr;
  }
  .ps-block--solution .ps-block-visual {
    order: -1;
  }
}
.ps-block-lead {
  font-size: 1rem;
  line-height: 1.625;
  color: var(--color-text-light);
  margin-bottom: 1.5rem;
}
@media (min-width: 768px) {
  .ps-block-lead {
    font-size: 1.125rem;
  }
}
.ps-points {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}
.ps-points li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 14px;
  line-height: 1.55;
  color: var(--color-text-mid);
  padding: 0.875rem 1rem;
  border-radius: 12px;
  border: 1px solid transparent;
  transition: background-color 0.2s ease, border-color 0.2s ease;
}
.ps-points--problem li {
  background: #FEF2F2;
  border-color: #FEE2E2;
}
.ps-points--problem li:hover {
  background: #FEE2E2;
  border-color: #FECACA;
}
.ps-points--solution li {
  background: #F0FDF4;
  border-color: #DCFCE7;
}
.ps-points--solution li:hover {
  background: #DCFCE7;
  border-color: #BBF7D0;
}
.ps-points li strong {
  color: var(--color-text-dark);
  font-weight: 600;
}
.ps-point-icon {
  width: 24px;
  height: 24px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 800;
  flex-shrink: 0;
  margin-top: 1px;
}
.ps-point-icon--problem {
  background: #FEE2E2;
  color: var(--color-red);
  border: none;
}
.ps-point-icon--solution {
  background: #D1FAE5;
  color: var(--color-green-dark);
  border: none;
}
.ps-block-visual {
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-card);
  background: #fff;
}
.ps-block-visual img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.prob-item {
  display: flex; align-items: flex-start; gap: 12px;
  padding: 14px 16px;
  border-radius: 10px;
  background: #FEF2F2;
  border: 1px solid #FECACA;
  margin-bottom: 10px;
}
.prob-item:last-child { margin-bottom: 0; }
.prob-icon { color: var(--color-red); font-size: 16px; flex-shrink:0; margin-top:1px; }
.sol-item {
  display: flex; align-items: flex-start; gap: 12px;
  padding: 14px 16px;
  border-radius: 10px;
  background: #F0FDF4;
  border: 1px solid #86EFAC;
  margin-bottom: 10px;
}
.sol-item:last-child { margin-bottom: 0; }
.sol-icon { color: var(--color-green); font-size: 16px; flex-shrink:0; margin-top:1px; }
.ps-header-icon {
  width: 36px; height: 36px;
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}
.ps-header-icon--problem { background: #FEE2E2; }
.ps-header-icon--solution { background: #D1FAE5; }

/* ═══ STEPS ══════════════════════════════════════════════════════ */
.step-card {
  position: relative;
  isolation: isolate;
  overflow: visible;
  background: white;
  border-radius: 20px;
  padding: 36px 28px;
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-card);
  text-align: center;
  transition:
    transform 0.4s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.45s cubic-bezier(0.22, 1, 0.36, 1),
    border-color 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
.step-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  z-index: 0;
  pointer-events: none;
  background: linear-gradient(145deg, var(--color-navy-light) 0%, var(--color-navy-mid) 52%, #252050 100%);
  opacity: 0;
  transition: opacity 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
.step-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  z-index: 1;
  pointer-events: none;
  background: radial-gradient(circle at 82% 14%, rgba(91, 78, 255, 0.22) 0%, transparent 58%);
  opacity: 0;
  transition: opacity 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
.step-card:hover {
  transform: translateY(-6px);
  border-color: rgba(91, 78, 255, 0.28);
  box-shadow:
    0 6px 16px rgba(11, 15, 30, 0.07),
    0 14px 36px rgba(91, 78, 255, 0.16),
    0 28px 56px rgba(91, 78, 255, 0.1),
    0 44px 80px rgba(11, 15, 30, 0.07);
}
.step-card:hover::before,
.step-card:hover::after { opacity: 1; }
.step-card > * { position: relative; z-index: 2; }

.step-card h3 {
  transition: color 0.42s cubic-bezier(0.22, 1, 0.36, 1);
}
.step-card:hover h3 {
  color: #fff;
  transition: color 0.5s cubic-bezier(0.22, 1, 0.36, 1) 0.07s;
}

.step-card p {
  transition: color 0.42s cubic-bezier(0.22, 1, 0.36, 1);
}
.step-card:hover p {
  color: rgba(255, 255, 255, 0.74);
  transition: color 0.5s cubic-bezier(0.22, 1, 0.36, 1) 0.1s;
}

.step-card .step-chip {
  transition:
    color 0.42s cubic-bezier(0.22, 1, 0.36, 1),
    background-color 0.42s cubic-bezier(0.22, 1, 0.36, 1),
    border-color 0.42s cubic-bezier(0.22, 1, 0.36, 1);
}
.step-card:hover .step-chip {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.24);
  color: #fff;
  transition:
    color 0.5s cubic-bezier(0.22, 1, 0.36, 1) 0.12s,
    background-color 0.5s cubic-bezier(0.22, 1, 0.36, 1) 0.12s,
    border-color 0.5s cubic-bezier(0.22, 1, 0.36, 1) 0.12s;
}

.step-number {
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 40px;
  background: var(--gradient-indigo);
  border: 3px solid #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  font-weight: 800;
  color: #fff;
  box-shadow:
    0 0 0 1px rgba(91, 78, 255, 0.12),
    0 4px 18px rgba(91, 78, 255, 0.38);
  z-index: 4;
  transition:
    transform 0.4s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.45s cubic-bezier(0.22, 1, 0.36, 1),
    border-color 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
.step-card:hover .step-number {
  transform: translateX(-50%) scale(1.06);
  border-color: #fff;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.25),
    0 0 0 5px rgba(255, 255, 255, 0.12),
    0 8px 26px rgba(91, 78, 255, 0.55);
}

.step-icon-wrap {
  width: 64px; height: 64px;
  background: var(--color-indigo-pale);
  border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  font-size: 28px;
  margin: 0 auto 18px;
  transition:
    background 0.42s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.42s cubic-bezier(0.22, 1, 0.36, 1);
}
.step-card:hover .step-icon-wrap {
  background: rgba(255, 255, 255, 0.1);
  transform: scale(1.04);
  transition:
    background 0.5s cubic-bezier(0.22, 1, 0.36, 1) 0.05s,
    transform 0.5s cubic-bezier(0.22, 1, 0.36, 1) 0.05s;
}
.step-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}
@media (min-width: 768px) {
  .step-grid {
    grid-template-columns: 1fr auto 1fr auto 1fr;
    gap: 0 0.75rem;
    align-items: start;
  }
}

.step-link {
  display: none;
}
@media (min-width: 768px) {
  .step-link {
    display: flex;
    align-items: center;
    align-self: center;
    padding-top: 2.75rem;
    padding-bottom: 1rem;
  }
  .step-link span {
    position: relative;
    display: block;
    width: 2.25rem;
    height: 2px;
    border-radius: 2px;
    background: linear-gradient(90deg, rgba(91, 78, 255, 0.28), rgba(91, 78, 255, 0.55));
  }
  .step-link span::after {
    content: '';
    position: absolute;
    right: -1px;
    top: 50%;
    transform: translateY(-50%);
    border-top: 5px solid transparent;
    border-bottom: 5px solid transparent;
    border-left: 7px solid rgba(91, 78, 255, 0.55);
  }
}

/* ═══ FEATURE CARDS ══════════════════════════════════════════════ */
.feature-card {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background: white;
  border-radius: 16px;
  padding: 28px 24px;
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-card);
  transition:
    transform 0.4s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.45s cubic-bezier(0.22, 1, 0.36, 1),
    border-color 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
.feature-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  z-index: 0;
  pointer-events: none;
  background: linear-gradient(145deg, var(--color-navy-light) 0%, var(--color-navy-mid) 52%, #252050 100%);
  opacity: 0;
  transition: opacity 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
.feature-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  z-index: 1;
  pointer-events: none;
  background: radial-gradient(circle at 82% 14%, rgba(91, 78, 255, 0.22) 0%, transparent 58%);
  opacity: 0;
  transition: opacity 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
.feature-card:hover {
  transform: translateY(-6px);
  border-color: rgba(91, 78, 255, 0.28);
  box-shadow:
    0 6px 16px rgba(11, 15, 30, 0.07),
    0 14px 36px rgba(91, 78, 255, 0.16),
    0 28px 56px rgba(91, 78, 255, 0.1),
    0 44px 80px rgba(11, 15, 30, 0.07);
}
.feature-card:hover::before,
.feature-card:hover::after { opacity: 1; }
.feature-card > * { position: relative; z-index: 2; }

.feature-card h3 {
  transition: color 0.42s cubic-bezier(0.22, 1, 0.36, 1);
}
.feature-card:hover h3 {
  color: #fff;
  transition: color 0.5s cubic-bezier(0.22, 1, 0.36, 1) 0.07s;
}

.feature-card p {
  transition: color 0.42s cubic-bezier(0.22, 1, 0.36, 1);
}
.feature-card:hover p {
  color: rgba(255, 255, 255, 0.74);
  transition: color 0.5s cubic-bezier(0.22, 1, 0.36, 1) 0.1s;
}
.feature-card:hover p span {
  color: rgba(255, 255, 255, 0.92);
  transition: color 0.5s cubic-bezier(0.22, 1, 0.36, 1) 0.1s;
}

.feature-icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--color-indigo-pale), var(--color-indigo-mid));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin-bottom: 14px;
  transition:
    background 0.42s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.42s cubic-bezier(0.22, 1, 0.36, 1);
}
.feature-card:hover .feature-icon {
  background: rgba(255, 255, 255, 0.1);
  transform: scale(1.04);
  transition:
    background 0.5s cubic-bezier(0.22, 1, 0.36, 1) 0.05s,
    transform 0.5s cubic-bezier(0.22, 1, 0.36, 1) 0.05s;
}

/* ═══ TEMPLATE CARDS ═════════════════════════════════════════════ */
.template-card {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-card);
  transition: all .3s ease;
  cursor: pointer;
}
.template-card:hover {
  border-color: var(--color-indigo);
  box-shadow: 0 12px 48px rgba(91,78,255,0.2);
  transform: translateY(-6px);
}
.template-preview { height: 200px; position: relative; overflow: hidden; }
.template-overlay {
  position: absolute;
  inset: 0;
  background: rgba(91,78,255,0.85);
  display: flex; align-items: center; justify-content: center;
  opacity: 0;
  transition: opacity .25s ease;
}
.template-card:hover .template-overlay { opacity: 1; }
.template-card-body { padding: 20px; }
.template-card-link {
  margin-top: 14px;
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--color-indigo);
  text-decoration: none;
}
.template-card-link:hover { opacity: 0.85; }

/* Template mini-preview internals */
.tmpl-inner {
  padding: 16px;
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 8px;
  overflow: hidden;
}
.tmpl-header { display: flex; align-items: center; gap: 10px; }
.tmpl-avatar {
  width: 36px; height: 36px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; font-weight: 700; color: white;
  flex-shrink: 0;
}
.tmpl-avatar--indigo { background: var(--gradient-indigo); }
.tmpl-avatar--amber  { background: linear-gradient(135deg, #F59E0B, #F97316); }
.tmpl-avatar--green  { background: linear-gradient(135deg, #059669, #10B981); border-radius: 8px; }
.tmpl-name { font-size: 11px; font-weight: 700; }
.tmpl-name--light { color: white; }
.tmpl-name--dark  { color: var(--color-text-dark); }
.tmpl-role { font-size: 9px; }
.tmpl-role--muted { color: rgba(255,255,255,0.5); }
.tmpl-role--gray  { color: #9ca3af; }
.tmpl-badge {
  margin-left: auto;
  border-radius: 4px;
  padding: 3px 8px;
  font-size: 9px;
  font-weight: 600;
}
.tmpl-badge--indigo { background: rgba(91,78,255,0.3); border: 1px solid rgba(91,78,255,0.5); color: var(--color-indigo-text); }
.tmpl-badge--orange { background: #fff7ed; border: 1px solid #fed7aa; color: #f97316; }
.tmpl-badge--green  { background: #d1fae5; border: 1px solid #6ee7b7; color: var(--color-green-dark); }
.tmpl-skills-box {
  background: rgba(255,255,255,0.06);
  border-radius: 6px;
  padding: 8px 10px;
}
.tmpl-skills-label { font-size: 9px; color: rgba(255,255,255,0.4); margin-bottom: 4px; font-weight: 600; }
.tmpl-skill-track {
  height: 3px;
  background: rgba(255,255,255,0.08);
  border-radius: 2px;
  margin-bottom: 4px;
}
.tmpl-skill-track:last-child { margin-bottom: 0; }
.tmpl-skill-fill { height: 100%; background: var(--gradient-indigo-h); border-radius: 2px; }
.tmpl-project-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 6px;
  padding: 8px 10px;
}
.tmpl-project-title { font-size: 9px; font-weight: 700; color: white; }
.tmpl-project-sub   { font-size: 8px; color: rgba(255,255,255,0.4); }
.tmpl-work-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5px; flex: 1; }
.tmpl-work-item {
  border-radius: 5px;
  min-height: 50px;
  display: flex; align-items: center; justify-content: center;
  font-size: 8px; font-weight: 600;
}
.tmpl-work-item--yellow  { background: linear-gradient(135deg,#fde68a,#fbbf24); color: #92400e; }
.tmpl-work-item--orange  { background: linear-gradient(135deg,#fed7aa,#f97316); color: #7c2d12; }
.tmpl-work-item--pink    { background: linear-gradient(135deg,#fce7f3,#ec4899); color: #831843; }
.tmpl-work-item--purple  { background: linear-gradient(135deg,#ede9fe,#8b5cf6); color: #4c1d95; }
.tmpl-stats-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 4px; }
.tmpl-stat-box {
  background: white;
  border: 1px solid var(--color-border);
  border-radius: 5px;
  padding: 6px;
  text-align: center;
  box-shadow: 0 1px 3px rgba(0,0,0,0.04);
}
.tmpl-stat-value { font-size: 12px; font-weight: 800; color: var(--color-text-dark); }
.tmpl-stat-value--green { color: var(--color-green); }
.tmpl-stat-label { font-size: 7px; color: #9ca3af; font-weight: 500; }
.tmpl-services-box {
  background: white;
  border: 1px solid var(--color-border);
  border-radius: 6px;
  padding: 8px 10px;
  flex: 1;
}
.tmpl-services-label {
  font-size: 8px; color: #9ca3af; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 5px;
}
.tmpl-service-tag {
  background: #d1fae5; color: var(--color-green-dark);
  font-size: 8px; font-weight: 600;
  padding: 2px 5px; border-radius: 3px;
}
.template-overlay-text {
  color: white; font-weight: 700; font-size: 14px;
  display: flex; align-items: center; gap: 8px;
}

/* ═══ STATS PANEL ════════════════════════════════════════════════ */
.stat-box { border-radius: 12px; padding: 18px; text-align: center; }
.stat-box--indigo { background: var(--color-indigo-pale); }
.stat-box--green  { background: #F0FDF4; }
.stat-box--amber  { background: #FFF7ED; }
.stat-box--gray   { background: var(--color-off-white); }
.stat-value { font-size: 28px; font-weight: 900; letter-spacing: -1px; }
.stat-value--indigo { color: var(--color-indigo); }
.stat-value--green  { color: var(--color-green); }
.stat-value--amber  { color: var(--color-amber); }
.stat-value--gray   { color: var(--color-text-mid); }
.stat-label { font-size: 11px; color: var(--color-text-light); font-weight: 500; margin-top: 3px; }
.testimonial-box {
  background: var(--color-off-white);
  border-radius: 12px;
  padding: 16px;
  border: 1px solid var(--color-border);
}
.testimonial-avatar {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--gradient-indigo);
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; font-weight: 700; color: white;
  flex-shrink: 0;
}

/* ═══ FORM ═══════════════════════════════════════════════════════ */
.form-card {
  box-shadow: var(--shadow-form);
  border-color: rgba(91, 78, 255, 0.12);
}
.form-header {
  background: var(--gradient-indigo);
  padding: 2rem 2.5rem 1.75rem;
  position: relative;
  overflow: hidden;
}
@media (min-width: 768px) {
  .form-header { padding: 2.25rem 3rem 2rem; }
}
.form-header-accent {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: rgba(255, 255, 255, 0.35);
}
.form-header-glow {
  position: absolute;
  top: -60px;
  right: -40px;
  width: 220px;
  height: 220px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.18) 0%, transparent 70%);
  pointer-events: none;
}
.form-header-title {
  font-size: clamp(1.375rem, 3vw, 1.75rem);
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.02em;
  margin-bottom: 0.375rem;
}
.form-header-desc {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.5;
  margin: 0;
}
.form-body { padding: 2rem 1.5rem; }
@media (min-width: 768px) {
  .form-body { padding: 2.5rem 3rem; }
}
.form-required { color: var(--color-indigo); font-weight: 700; }
.form-input {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid var(--color-border);
  border-radius: 10px;
  font-size: 14px;
  font-family: 'Inter', sans-serif;
  color: var(--color-text-dark);
  background: white;
  outline: none;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.form-textarea {
  resize: vertical;
  min-height: 88px;
  line-height: 1.55;
}
.form-input:focus {
  border-color: var(--color-indigo);
  box-shadow: 0 0 0 3px rgba(91, 78, 255, 0.12);
}
.form-input::placeholder { color: #9ca3af; }
.form-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--color-text-mid);
  margin-bottom: 6px;
  display: block;
}
.form-hint {
  margin: 0.375rem 0 0;
  font-size: 0.75rem;
  color: var(--color-text-light);
}
.form-url-preview {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  margin-top: 0.5rem;
  padding: 0.375rem 0.75rem;
  border-radius: 9999px;
  background: var(--color-indigo-pale);
  border: 1px solid var(--color-indigo-mid);
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--color-indigo);
}
.form-url-preview-icon { opacity: 0.7; font-size: 0.6875rem; }
.success-message { display: none; text-align: center; padding: 32px 0; }
.success-message.is-visible { display: block; }
.form-terms { text-align: center; font-size: 12px; color: #9ca3af; margin-top: 14px; }
.form-terms a { color: var(--color-indigo); text-decoration: none; font-weight: 500; }
.form-terms a:hover { text-decoration: underline; }

/* ═══ CTA BANNER ═════════════════════════════════════════════════ */
.cta-section {
  background: var(--gradient-hero);
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(91, 78, 255, 0.18);
}
.cta-section::before {
  content: '';
  position: absolute;
  top: -45%;
  right: -8%;
  width: 560px;
  height: 560px;
  background: radial-gradient(circle, rgba(91, 78, 255, 0.2) 0%, transparent 70%);
  pointer-events: none;
}
.cta-section::after {
  content: '';
  position: absolute;
  bottom: -35%;
  left: -6%;
  width: 440px;
  height: 440px;
  background: radial-gradient(circle, rgba(139, 127, 255, 0.1) 0%, transparent 70%);
  pointer-events: none;
}
.cta-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(91, 78, 255, 0.15);
  border: 1px solid rgba(91, 78, 255, 0.35);
  border-radius: 9999px;
  padding: 6px 16px;
  font-size: 13px;
  font-weight: 500;
  color: var(--color-indigo-text);
  margin-bottom: 1.25rem;
}
.cta-badge .dot {
  width: 7px;
  height: 7px;
  background: var(--color-green);
  border-radius: 50%;
  box-shadow: 0 0 6px rgba(16, 185, 129, 0.55);
  flex-shrink: 0;
}
.cta-title {
  font-size: clamp(1.875rem, 4vw, 2.5rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
}
.cta-desc {
  font-size: 1rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.68);
  margin-bottom: 1.25rem;
  max-width: 32rem;
  margin-inline: auto;
}
@media (min-width: 768px) {
  .cta-desc { font-size: 1.0625rem; margin-bottom: 1.5rem; }
}
.cta-perks {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem 1.25rem;
  list-style: none;
  margin: 0 0 2rem;
  padding: 0;
}
.cta-perks li {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.8125rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.62);
}
.cta-perks li::before {
  content: '✓';
  color: var(--color-green);
  font-weight: 700;
  font-size: 0.75rem;
}
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.875rem;
  justify-content: center;
}

/* ═══ FOOTER ═════════════════════════════════════════════════════ */
.footer {
  background: var(--color-navy);
  position: relative;
  overflow: hidden;
  padding-top: 4rem;
  padding-bottom: 2rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 2rem;
}
.footer-brand-col { grid-column: span 12; }
.footer-nav-row {
  grid-column: span 12;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem 3rem;
}
.footer-nav-col { min-width: 0; }
.footer-cta-col { grid-column: span 12; }

@media (min-width: 768px) and (max-width: 1023px) {
  .footer-nav-row {
    grid-column: span 12;
    max-width: 480px;
  }
}

@media (min-width: 1024px) {
  .footer-grid {
    grid-template-columns: repeat(12, 1fr);
    gap: 2rem;
  }
  .footer-brand-col { grid-column: 1 / span 4; }
  .footer-nav-row {
    display: contents;
  }
  .footer-nav-col:nth-child(1) { grid-column: 6 / span 2; }
  .footer-nav-col:nth-child(2) { grid-column: 8 / span 2; }
  .footer-cta-col { grid-column: 10 / span 3; }
}

@media (max-width: 767px) {
  .footer {
    padding-top: 2.75rem;
    padding-bottom: 5.75rem;
  }
  .footer > .max-w-7xl {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }
  .footer-grid {
    display: flex;
    flex-direction: column;
    gap: 1.75rem;
  }
  .footer-brand-col {
    padding-bottom: 0.25rem;
  }
  .footer-brand-col > a {
    margin-left: 0;
    margin-right: 0;
  }
  .footer-tagline {
    max-width: none;
    margin-top: 14px;
    font-size: 13px;
    line-height: 1.65;
  }
  .footer-contact-item {
    margin-top: 14px;
    justify-content: flex-start;
  }
  .footer-social {
    margin-top: 18px;
    justify-content: flex-start;
  }
  .footer-nav-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem 2rem;
    padding-top: 0.25rem;
  }
  .footer-nav-title {
    margin-bottom: 12px;
    font-size: 11px;
  }
  .footer-nav-list { gap: 9px; }
  .footer-link { font-size: 13px; }
  .footer-cta-col {
    width: 100%;
    padding-top: 0.25rem;
  }
  .footer-cta-box {
    width: 100%;
    box-sizing: border-box;
    padding: 1.25rem 1.125rem;
    text-align: left;
  }
  .footer-cta-btn {
    width: 100%;
    justify-content: center;
  }
  .footer-divider {
    margin-top: 1.75rem;
    padding-top: 1.25rem;
  }
  .footer-bottom {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 10px;
  }
  .footer-copyright {
    font-size: 12px;
    line-height: 1.5;
  }
  .footer-legal {
    justify-content: center;
    gap: 10px 16px;
  }
  .footer-legal a { font-size: 12px; }
  .footer-status {
    max-width: 100%;
    justify-content: center;
    font-size: 11px;
    padding: 6px 12px;
  }
}

@media (max-width: 400px) {
  .footer-nav-row {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}
.footer::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(91,78,255,0.5), rgba(139,127,255,0.3), transparent);
}
.footer::after {
  content: '';
  position: absolute;
  top: -120px; right: -80px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(91,78,255,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.footer-brand-name {
  font-weight: 800;
  color: white;
  font-size: 18px;
  letter-spacing: -0.5px;
}
.footer-tagline {
  color: rgba(255,255,255,0.45);
  font-size: 14px;
  line-height: 1.75;
  max-width: 320px;
  margin-top: 16px;
}
.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 20px;
  font-size: 13px;
  color: rgba(255,255,255,0.4);
}
.footer-contact-item a {
  color: rgba(255,255,255,0.55);
  text-decoration: none;
  transition: color .2s ease;
}
.footer-contact-item a:hover { color: var(--color-indigo-text); }
.footer-contact-icon {
  width: 32px; height: 32px;
  border-radius: 8px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center;
  font-size: 14px;
  flex-shrink: 0;
}
.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 24px;
}
.social-link {
  width: 38px; height: 38px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  transition: background .2s ease, border-color .2s ease, color .2s ease, transform .2s ease;
}
.social-link:hover {
  background: rgba(91,78,255,0.2);
  border-color: rgba(91,78,255,0.4);
  color: white;
  transform: translateY(-2px);
}
.footer-nav-title {
  font-size: 12px;
  font-weight: 700;
  color: white;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  margin-bottom: 20px;
}
.footer-nav-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,0.45);
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition: color .2s ease, transform .2s ease;
}
.footer-link:hover {
  color: white;
  transform: translateX(3px);
}
.footer-cta-box {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  padding: 24px;
}
.footer-cta-title {
  font-size: 15px;
  font-weight: 700;
  color: white;
  margin-bottom: 8px;
}
.footer-cta-text {
  font-size: 13px;
  color: rgba(255,255,255,0.45);
  line-height: 1.6;
  margin-bottom: 16px;
}
.footer-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--gradient-indigo);
  color: white;
  font-size: 13px;
  font-weight: 600;
  padding: 10px 18px;
  border-radius: 8px;
  text-decoration: none;
  transition: transform .2s ease, box-shadow .2s ease;
  box-shadow: 0 4px 16px rgba(91,78,255,0.3);
}
.footer-cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(91,78,255,0.4);
}
.footer-divider {
  border-top: 1px solid rgba(255,255,255,0.08);
  margin-top: 56px;
  padding-top: 24px;
}
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-copyright {
  font-size: 13px;
  color: rgba(255,255,255,0.3);
}
.footer-legal {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.footer-legal a {
  font-size: 13px;
  color: rgba(255,255,255,0.35);
  text-decoration: none;
  transition: color .2s ease;
}
.footer-legal a:hover { color: rgba(255,255,255,0.7); }
.footer-status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 9999px;
  padding: 6px 14px;
  font-size: 12px;
  font-weight: 500;
  color: rgba(255,255,255,0.4);
}
.status-dot {
  width: 7px; height: 7px;
  background: var(--color-green);
  border-radius: 50%;
  box-shadow: 0 0 8px rgba(16,185,129,0.5);
  animation: pulse-dot 2s ease-in-out infinite;
}

/* ═══ BUTTONS ════════════════════════════════════════════════════ */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--color-indigo), var(--color-indigo-light));
  color: white;
  font-weight: 600;
  font-size: 15px;
  padding: 13px 28px;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  transition: all .2s ease;
  box-shadow: 0 4px 20px rgba(91,78,255,0.35);
  font-family: 'Inter', sans-serif;
  text-decoration: none;
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 32px rgba(91,78,255,0.45); }
.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.08);
  color: white;
  font-weight: 600;
  font-size: 15px;
  padding: 13px 28px;
  border-radius: 10px;
  border: 1.5px solid rgba(255,255,255,0.18);
  cursor: pointer;
  transition: all .2s ease;
  font-family: 'Inter', sans-serif;
  text-decoration: none;
}
.btn-secondary:hover { background: rgba(255,255,255,0.14); transform: translateY(-2px); }
.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--color-indigo);
  font-weight: 600;
  font-size: 15px;
  padding: 13px 28px;
  border-radius: 10px;
  border: 1.5px solid var(--color-indigo);
  cursor: pointer;
  transition: all .2s ease;
  font-family: 'Inter', sans-serif;
  text-decoration: none;
}
.btn-outline:hover { background: var(--color-indigo-pale); }

/* ═══ MISC ═══════════════════════════════════════════════════════ */
.stat-divider { width: 1px; height: 40px; background: rgba(255,255,255,0.15); }
.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .55s ease, transform .55s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }
.why-check {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  background: var(--color-off-white);
  border-radius: 10px;
  border: 1px solid var(--color-border);
  font-weight: 600;
  color: var(--color-text-dark);
  font-size: 15px;
}
.why-check .check-icon {
  width: 28px; height: 28px;
  background: #F0FDF4;
  border-radius: 50%;
  border: 1.5px solid #86EFAC;
  display: flex; align-items: center; justify-content: center;
  font-size: 13px;
  color: var(--color-green);
  flex-shrink: 0;
}
.is-hidden { display: none !important; }

/* ═══ SHOWCASE SECTION ════════════════════════════════════════════ */
.showcase-point {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.showcase-point-icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: var(--color-indigo-pale);
  display: flex; align-items: center; justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}
.showcase-image-wrap {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-card);
  background: white;
}
.showcase-image-wrap img {
  width: 100%;
  height: auto;
  display: block;
}
.showcase-url-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: fit-content;
  margin: -18px auto 0;
  position: relative;
  z-index: 2;
  background: white;
  border-radius: 9999px;
  padding: 9px 22px;
  font-size: 13px;
  font-weight: 600;
  color: var(--color-indigo);
  box-shadow: 0 8px 32px rgba(91,78,255,0.18);
  border: 1.5px solid var(--color-indigo-mid);
}

/* ═══ TESTIMONIALS ═══════════════════════════════════════════════ */
.review-card {
  background: white;
  border-radius: 16px;
  padding: 28px 24px;
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-card);
  transition: transform .25s ease, box-shadow .25s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.review-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(91,78,255,0.12);
}
.review-stars { color: var(--color-amber); font-size: 13px; letter-spacing: 1px; margin-bottom: 14px; }
.review-quote {
  font-size: 14px;
  color: var(--color-text-mid);
  line-height: 1.65;
  flex: 1;
  font-style: italic;
}
.review-author {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 20px;
  padding-top: 18px;
  border-top: 1px solid var(--color-border);
}
.review-avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--gradient-indigo);
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; font-weight: 700; color: white;
  flex-shrink: 0;
}
.review-avatar--amber { background: linear-gradient(135deg, #F59E0B, #F97316); }
.review-avatar--green { background: linear-gradient(135deg, #059669, #10B981); }
.review-name { font-size: 14px; font-weight: 700; color: var(--color-text-dark); }
.review-role { font-size: 12px; color: var(--color-text-light); }

/* ═══ PRICING ════════════════════════════════════════════════════ */
.pricing-card {
  background: white;
  border-radius: 20px;
  padding: 36px 28px;
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-card);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.pricing-card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(91,78,255,0.1); }
.pricing-card--featured {
  border-color: var(--color-indigo);
  box-shadow: 0 8px 40px rgba(91,78,255,0.18);
  transform: scale(1.02);
}
.pricing-card--featured:hover {
  transform: scale(1.02) translateY(-4px);
  box-shadow: 0 16px 48px rgba(91,78,255,0.22);
}
@media (max-width: 767px) {
  .pricing-card--featured { transform: none; }
  .pricing-card--featured:hover { transform: translateY(-4px); }
}
.pricing-popular {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gradient-indigo);
  color: white;
  font-size: 11px;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: 9999px;
  white-space: nowrap;
  box-shadow: 0 4px 16px rgba(91,78,255,0.35);
}
.pricing-tier { font-size: 13px; font-weight: 700; color: var(--color-indigo); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 8px; }
.pricing-price { font-size: 42px; font-weight: 900; color: var(--color-text-dark); letter-spacing: -2px; line-height: 1; }
.pricing-price span { font-size: 16px; font-weight: 500; color: var(--color-text-light); letter-spacing: 0; }
.pricing-desc { font-size: 13px; color: var(--color-text-light); margin: 12px 0 24px; line-height: 1.5; }
.pricing-features { list-style: none; display: flex; flex-direction: column; gap: 12px; margin-bottom: 28px; flex: 1; }
.pricing-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--color-text-mid);
}
.pricing-features li::before {
  content: '✓';
  width: 20px; height: 20px;
  background: var(--color-indigo-pale);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 10px; font-weight: 700; color: var(--color-indigo);
  flex-shrink: 0;
  margin-top: 1px;
}
.pricing-card--featured .pricing-features li::before {
  background: var(--color-indigo);
  color: white;
}
.pricing-btn {
  display: block;
  text-align: center;
  padding: 13px 24px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  transition: all .2s ease;
  border: 1.5px solid var(--color-border);
  color: var(--color-text-dark);
  background: white;
}
.pricing-btn:hover { border-color: var(--color-indigo); color: var(--color-indigo); background: var(--color-indigo-pale); }
.pricing-btn--primary {
  background: var(--gradient-indigo);
  color: white;
  border: none;
  box-shadow: 0 4px 20px rgba(91,78,255,0.35);
}
.pricing-btn--primary:hover {
  color: white;
  background: var(--gradient-indigo);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(91,78,255,0.45);
}

/* ═══ FAQ ════════════════════════════════════════════════════════ */
.faq-list { display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  background: white;
  border-radius: 14px;
  border: 1px solid var(--color-border);
  overflow: hidden;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.faq-item:hover { border-color: var(--color-indigo-mid); }
.faq-item.open {
  border-color: var(--color-indigo);
  box-shadow: 0 4px 20px rgba(91,78,255,0.08);
}
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  background: none;
  border: none;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: var(--color-text-dark);
  text-align: left;
  transition: color .2s ease;
}
.faq-item.open .faq-question { color: var(--color-indigo); }
.faq-icon {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--color-indigo-pale);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; font-weight: 400; color: var(--color-indigo);
  flex-shrink: 0;
  transition: transform .25s ease, background .25s ease;
}
.faq-item.open .faq-icon {
  transform: rotate(45deg);
  background: var(--color-indigo);
  color: white;
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease;
}
.faq-item.open .faq-answer { max-height: 300px; }
.faq-answer-inner {
  padding: 0 24px 20px;
  font-size: 14px;
  color: var(--color-text-light);
  line-height: 1.65;
}

/* ═══ SUPPORT CHAT ═══════════════════════════════════════════════ */
.support-chat {
  position: fixed;
  right: 1.25rem;
  bottom: max(1.25rem, env(safe-area-inset-bottom, 1.25rem));
  z-index: 90;
  font-family: 'Inter', sans-serif;
}

.support-chat-toggle {
  position: relative;
  width: 56px;
  height: 56px;
  border: none;
  border-radius: 50%;
  background: var(--gradient-indigo);
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 28px rgba(91, 78, 255, 0.38);
  transition:
    transform 0.3s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}
.support-chat-toggle:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 36px rgba(91, 78, 255, 0.45);
}
.support-chat-toggle-icon--close { display: none; }
.support-chat.is-open .support-chat-toggle-icon--open { display: none; }
.support-chat.is-open .support-chat-toggle-icon--close { display: block; }
.support-chat-toggle-badge {
  position: absolute;
  top: 2px;
  right: 2px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #10B981;
  border: 2px solid var(--color-navy);
}
.support-chat.is-open .support-chat-toggle-badge { display: none; }

.support-chat-panel {
  position: absolute;
  right: 0;
  bottom: calc(100% + 0.875rem);
  width: min(380px, calc(100vw - 2rem));
  height: min(520px, calc(100vh - 8rem));
  background: #fff;
  border-radius: 20px;
  border: 1px solid var(--color-border);
  box-shadow: 0 20px 60px rgba(11, 15, 30, 0.18), 0 8px 28px rgba(91, 78, 255, 0.12);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px) scale(0.96);
  transform-origin: bottom right;
  transition:
    opacity 0.32s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.32s cubic-bezier(0.22, 1, 0.36, 1),
    visibility 0.32s;
  pointer-events: none;
}
.support-chat.is-open .support-chat-panel {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

.support-chat-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 16px 18px;
  background: linear-gradient(135deg, var(--color-navy-light) 0%, var(--color-navy-mid) 100%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.support-chat-header-info {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}
.support-chat-title {
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
}
.support-chat-status {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 2px;
}
.support-chat-status-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #10B981;
  flex-shrink: 0;
}
.support-chat-close {
  width: 32px;
  height: 32px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 9px;
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.8);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.2s ease, color 0.2s ease;
}
.support-chat-close:hover {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}

.support-chat-messages {
  flex: 1;
  overflow-y: auto;
  padding: 18px 16px;
  background: var(--color-off-white);
  display: flex;
  flex-direction: column;
  gap: 14px;
  scroll-behavior: smooth;
}
.support-chat-msg {
  display: flex;
  gap: 10px;
  align-items: flex-end;
}
.support-chat-msg--user {
  flex-direction: row-reverse;
}
.support-chat-avatar {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--gradient-indigo);
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.support-chat-msg--user .support-chat-avatar {
  background: var(--color-indigo-pale);
  color: var(--color-indigo);
  font-size: 11px;
  font-weight: 700;
}
.support-chat-bubble {
  max-width: 78%;
  padding: 11px 14px;
  border-radius: 14px;
  background: #fff;
  border: 1px solid var(--color-border);
  box-shadow: 0 2px 8px rgba(11, 15, 30, 0.04);
}
.support-chat-msg--user .support-chat-bubble {
  background: var(--color-indigo);
  border-color: var(--color-indigo);
  color: #fff;
  border-bottom-right-radius: 4px;
}
.support-chat-msg--bot .support-chat-bubble {
  border-bottom-left-radius: 4px;
}
.support-chat-bubble p {
  font-size: 13px;
  line-height: 1.55;
  color: var(--color-text-mid);
  margin: 0;
}
.support-chat-msg--user .support-chat-bubble p { color: #fff; }
.support-chat-time {
  display: block;
  font-size: 10px;
  color: var(--color-text-light);
  margin-top: 5px;
}
.support-chat-msg--user .support-chat-time { color: rgba(255, 255, 255, 0.65); }

.support-chat-typing {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 14px 16px;
  min-width: 56px;
}
.support-chat-typing-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--color-indigo);
  opacity: 0.35;
  animation: support-chat-typing 1.2s ease-in-out infinite;
}
.support-chat-typing-dot:nth-child(2) { animation-delay: 0.15s; }
.support-chat-typing-dot:nth-child(3) { animation-delay: 0.3s; }
@keyframes support-chat-typing {
  0%, 60%, 100% { transform: translateY(0); opacity: 0.35; }
  30% { transform: translateY(-5px); opacity: 1; }
}

.support-chat-quick {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  padding: 10px 14px;
  background: #fff;
  border-top: 1px solid var(--color-border);
}
.support-chat-quick-btn {
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid var(--color-indigo-mid);
  background: var(--color-indigo-pale);
  color: var(--color-indigo);
  font-size: 11px;
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease;
}
.support-chat-quick-btn:hover {
  background: var(--color-indigo-mid);
  border-color: var(--color-indigo);
}
.support-chat-quick-btn:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}

.support-chat-form {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 14px;
  background: #fff;
  border-top: 1px solid var(--color-border);
}
.support-chat-input {
  flex: 1;
  padding: 11px 14px;
  border: 1px solid var(--color-border);
  border-radius: 10px;
  font-size: 13px;
  font-family: inherit;
  color: var(--color-text-dark);
  background: var(--color-off-white);
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.support-chat-input::placeholder { color: var(--color-text-light); }
.support-chat-input:focus {
  border-color: var(--color-indigo-mid);
  box-shadow: 0 0 0 3px rgba(91, 78, 255, 0.1);
}
.support-chat-input:disabled {
  opacity: 0.55;
  cursor: not-allowed;
}
.support-chat-send {
  width: 40px;
  height: 40px;
  border: none;
  border-radius: 10px;
  background: var(--gradient-indigo);
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.support-chat-send:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(91, 78, 255, 0.35);
}

@media (max-width: 480px) {
  .support-chat {
    right: 1rem;
    bottom: max(1rem, env(safe-area-inset-bottom, 1rem));
  }
  .support-chat-panel {
    width: calc(100vw - 2rem);
    height: min(480px, calc(100vh - 6rem));
  }
  .support-chat-toggle {
    width: 52px;
    height: 52px;
  }
}
