/* ══════════════════════════════════════════
   mipagina.top — Estilos principales
   ══════════════════════════════════════════ */

/* ── Reset & base ── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: #030712;
  color: #f1f5f9;
  font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
}

img,
svg {
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

/* ── Utilities ── */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

.container--narrow {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 24px;
}

.text-center {
  text-align: center;
}

.gradient-text {
  background: linear-gradient(135deg, #a78bfa 0%, #ec4899 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── Divider ── */
.divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(124, 58, 237, .4), transparent);
  margin: 0 32px;
}

/* ── Section padding ── */
.section {
  padding: 96px 0;
}

/* ── Section label ── */
.label {
  display: block;
  font-size: .75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: #a78bfa;
  margin-bottom: 12px;
}

/* ── Headings ── */
.heading-xl {
  font-size: clamp(2.4rem, 7vw, 4.5rem);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -.02em;
}

.heading-lg {
  font-size: clamp(1.9rem, 5vw, 3.2rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -.02em;
}

/* ── CTA button (base) ── */
.btn-cta {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  background: #7c3aed;
  color: #fff;
  font-size: 1.25rem;
  font-weight: 800;
  padding: 20px 44px;
  border-radius: 18px;
  border: none;
  cursor: pointer;
  transition: background .2s, transform .15s, box-shadow .3s;
  animation: ctaPulse 2.5s ease-in-out infinite;
}

.btn-cta:hover {
  background: #6d28d9;
  transform: translateY(-2px);
}

.btn-cta--xl {
  font-size: 1.5rem;
  padding: 24px 52px;
}

.btn-cta svg {
  flex-shrink: 0;
}

/* ── WhatsApp button (green) ── */
.btn-whatsapp {
  background: #25D366;
  animation-name: whatsappPulse;
}

.btn-whatsapp:hover {
  background: #1ebe5d;
}

@keyframes ctaPulse {

  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(124, 58, 237, .5);
  }

  50% {
    box-shadow: 0 0 0 18px rgba(124, 58, 237, 0);
  }
}

@keyframes whatsappPulse {

  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, .5);
  }

  50% {
    box-shadow: 0 0 0 18px rgba(37, 211, 102, 0);
  }
}

/* ══════════════════════════════════════════
   NAVBAR
   ══════════════════════════════════════════ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 32px;
  height: 64px;
  background: rgba(3, 7, 18, .75);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 255, 255, .06);
  transition: background .3s, transform .35s cubic-bezier(.4, 0, .2, 1), box-shadow .3s;
}

.navbar--hidden {
  transform: translateY(-100%);
}

.navbar--scrolled {
  background: rgba(3, 7, 18, .95);
  box-shadow: 0 4px 24px rgba(0, 0, 0, .3);
}

.navbar__brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.1rem;
  font-weight: 900;
  color: #f9fafb;
  letter-spacing: -.01em;
}

.navbar__brand-icon {
  width: 32px;
  height: 32px;
  background: linear-gradient(135deg, #7c3aed, #ec4899);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .9rem;
  font-weight: 900;
}

.navbar__links {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
}

.navbar__links a {
  font-size: .85rem;
  font-weight: 600;
  color: #9ca3af;
  transition: color .2s;
}

.navbar__links a:hover {
  color: #f9fafb;
}

.navbar__cta {
  font-size: .82rem;
  font-weight: 700;
  color: #fff;
  background: #25D366;
  padding: 10px 20px;
  border-radius: 12px;
  transition: background .2s;
}

.navbar__cta:hover {
  background: #1ebe5d;
}

/* Mobile hamburger */
.navbar__hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}

.navbar__hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: #f9fafb;
  border-radius: 2px;
  transition: transform .3s, opacity .3s;
  transform-origin: center;
}

/* Hamburger → X animation */
.navbar__hamburger--active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.navbar__hamburger--active span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.navbar__hamburger--active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile nav menu */
@media (max-width: 768px) {
  .navbar__links {
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    flex-direction: column;
    background: rgba(3, 7, 18, .95);
    backdrop-filter: blur(16px);
    padding: 0 32px;
    gap: 0;
    border-bottom: 1px solid rgba(255, 255, 255, .06);
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height .4s cubic-bezier(.4, 0, .2, 1),
      opacity .3s ease,
      padding .4s cubic-bezier(.4, 0, .2, 1);
  }

  .navbar__links--open {
    max-height: 320px;
    opacity: 1;
    padding: 20px 32px;
    gap: 16px;
  }

  .navbar__links a {
    opacity: 0;
    transform: translateY(-8px);
    transition: color .2s, opacity .3s ease, transform .3s ease;
  }

  .navbar__links--open a {
    opacity: 1;
    transform: translateY(0);
  }

  /* Stagger link animations */
  .navbar__links--open li:nth-child(1) a {
    transition-delay: .05s;
  }

  .navbar__links--open li:nth-child(2) a {
    transition-delay: .1s;
  }

  .navbar__links--open li:nth-child(3) a {
    transition-delay: .15s;
  }

  .navbar__links--open li:nth-child(4) a {
    transition-delay: .2s;
  }

  .navbar__links--open li:nth-child(5) a {
    transition-delay: .25s;
  }

  .navbar__cta-desktop {
    display: none;
  }

  .navbar__hamburger {
    display: flex;
  }
}

/* ══════════════════════════════════════════
   HERO
   ══════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 24px 80px;
  overflow: hidden;
}

.hero__blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}

.hero__blob--1 {
  width: 500px;
  height: 500px;
  background: rgba(109, 40, 217, .25);
  top: -150px;
  left: -150px;
}

.hero__blob--2 {
  width: 400px;
  height: 400px;
  background: rgba(219, 39, 119, .18);
  bottom: -80px;
  right: -80px;
}

.hero__pill {
  position: absolute;
  top: 88px;
  left: 50%;
  transform: translateX(-50%);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #111827;
  border: 1px solid #374151;
  color: #9ca3af;
  font-size: .72rem;
  font-weight: 600;
  padding: 8px 18px;
  border-radius: 999px;
  white-space: nowrap;
  letter-spacing: .05em;
}

.hero__pill-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #4ade80;
  animation: blink 1.8s ease-in-out infinite;
}

@keyframes blink {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: .3;
  }
}

.hero__body {
  position: relative;
  z-index: 1;
}

.hero__subtitle {
  font-size: 1.2rem;
  color: #9ca3af;
  max-width: 600px;
  margin: 20px auto 40px;
}

.hero__subtitle strong {
  color: #e5e7eb;
}

.hero__note {
  margin-top: 16px;
  font-size: .85rem;
  color: #6b7280;
}

.hero__scroll {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: #4b5563;
  font-size: .72rem;
}

.hero__scroll svg {
  animation: bounce .9s ease-in-out infinite alternate;
}

@keyframes bounce {
  from {
    transform: translateY(0);
  }

  to {
    transform: translateY(5px);
  }
}

/* ══════════════════════════════════════════
   EMPATHY
   ══════════════════════════════════════════ */
.empathy {
  padding: 96px 0;
}

.empathy__subtitle {
  font-size: 1.1rem;
  color: #9ca3af;
  max-width: 640px;
  margin: 16px auto 0;
}

.empathy-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 48px;
}

.empathy-card {
  background: #111827;
  border: 1px solid #1f2937;
  border-radius: 20px;
  padding: 32px;
  display: flex;
  gap: 20px;
  align-items: flex-start;
  transition: box-shadow .3s, border-color .3s;
}

.empathy-card:hover {
  box-shadow: 0 0 32px rgba(124, 58, 237, .2);
  border-color: rgba(124, 58, 237, .3);
}

.empathy-card__icon {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  background: rgba(236, 72, 153, .15);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}

.empathy-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 6px;
}

.empathy-card p {
  font-size: .87rem;
  color: #9ca3af;
  line-height: 1.6;
}

/* ══════════════════════════════════════════
   BENEFITS
   ══════════════════════════════════════════ */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  margin-top: 16px;
}

.benefit-card {
  background: #111827;
  border: 1px solid #1f2937;
  border-radius: 20px;
  padding: 32px;
  display: flex;
  gap: 20px;
  align-items: flex-start;
  transition: box-shadow .3s;
}

.benefit-card:hover {
  box-shadow: 0 0 32px rgba(124, 58, 237, .3);
}

.benefit-card__icon {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  background: rgba(109, 40, 217, .25);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
}

.benefit-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 6px;
}

.benefit-card p {
  font-size: .87rem;
  color: #9ca3af;
  line-height: 1.6;
}

/* ══════════════════════════════════════════
   SHOWCASE
   ══════════════════════════════════════════ */
.showcase {
  padding: 96px 0;
  background: linear-gradient(180deg, rgba(17, 24, 39, .5) 0%, rgba(3, 7, 18, 1) 100%);
}

.showcase__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.showcase__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 32px;
}

.showcase__list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: .95rem;
  color: #d1d5db;
}

.showcase__check {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  background: rgba(74, 222, 128, .15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #4ade80;
  font-size: .85rem;
  font-weight: 900;
}

/* iPhone mockup — realistic */
.iphone {
  position: relative;
  width: 272px;
  height: 556px;
  background: linear-gradient(145deg, #1c1c1e, #2c2c2e);
  border-radius: 52px;
  border: 4px solid #3a3a3c;
  overflow: hidden;
  margin: 0 auto;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, .08),
    0 25px 60px rgba(124, 58, 237, .25),
    inset 0 0 0 1px rgba(255, 255, 255, .04);
}

/* Dynamic Island notch */
.iphone__notch {
  position: absolute;
  top: 12px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 28px;
  background: #000;
  border-radius: 20px;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding-right: 12px;
}

.iphone__notch-cam {
  width: 10px;
  height: 10px;
  background: radial-gradient(circle, #1a1a2e 30%, #0d0d1a 70%);
  border-radius: 50%;
  border: 1.5px solid #2a2a3e;
  box-shadow: inset 0 0 2px rgba(124, 58, 237, .3);
}

/* Screen */
.iphone__screen {
  position: absolute;
  inset: 4px;
  background: #0a0a14;
  border-radius: 48px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

/* Content wrapper */
.iphone__content {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 52px 16px 0;
  gap: 14px;
  overflow: hidden;
}

/* Mini hero inside phone */
.iphone__hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 12px 0 8px;
}

.iphone__hero-pill {
  width: 80px;
  height: 8px;
  border-radius: 4px;
  background: rgba(167, 139, 250, .2);
  border: 1px solid rgba(167, 139, 250, .15);
}

.iphone__hero-title {
  width: 75%;
  height: 14px;
  border-radius: 7px;
  background: linear-gradient(90deg, rgba(167, 139, 250, .35), rgba(236, 72, 153, .3));
  animation: iphoneShimmer 2.8s ease-in-out infinite;
}

.iphone__hero-subtitle {
  width: 55%;
  height: 8px;
  border-radius: 4px;
  background: rgba(255, 255, 255, .08);
}

.iphone__hero-btn {
  width: 100px;
  height: 26px;
  border-radius: 13px;
  margin-top: 4px;
  background: linear-gradient(135deg, #7c3aed, #a78bfa);
  box-shadow: 0 4px 16px rgba(124, 58, 237, .35);
  animation: iphoneBtnPulse 3s ease-in-out infinite;
}

/* Feature cards */
.iphone__cards {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.iphone__card {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px;
  background: rgba(255, 255, 255, .04);
  border: 1px solid rgba(255, 255, 255, .06);
  border-radius: 14px;
  opacity: 0;
  transform: translateY(10px);
  animation: iphoneCardIn .6s ease forwards;
}

.iphone__card--1 {
  animation-delay: .3s;
}

.iphone__card--2 {
  animation-delay: .6s;
}

.iphone__card--3 {
  animation-delay: .9s;
}

.iphone__card-icon {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 10px;
  background: linear-gradient(135deg, rgba(124, 58, 237, .3), rgba(236, 72, 153, .2));
}

.iphone__card-lines {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.iphone__card-line {
  height: 7px;
  border-radius: 4px;
  background: rgba(255, 255, 255, .1);
  width: 100%;
}

.iphone__card-line--short {
  width: 60%;
}

/* Tab bar */
.iphone__tab-bar {
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding: 10px 16px;
  margin-top: auto;
  border-top: 1px solid rgba(255, 255, 255, .05);
}

.iphone__tab {
  width: 24px;
  height: 24px;
  border-radius: 8px;
  background: rgba(255, 255, 255, .06);
  transition: all .3s;
}

.iphone__tab--active {
  background: rgba(124, 58, 237, .4);
  box-shadow: 0 0 12px rgba(124, 58, 237, .3);
}

/* Home indicator */
.iphone__home-indicator {
  width: 120px;
  height: 4px;
  background: rgba(255, 255, 255, .2);
  border-radius: 2px;
  margin: 6px auto 8px;
}

/* Animations */
@keyframes iphoneShimmer {

  0%,
  100% {
    opacity: .6;
    background-position: -200% center;
  }

  50% {
    opacity: 1;
    background-position: 200% center;
  }
}

@keyframes iphoneBtnPulse {

  0%,
  100% {
    box-shadow: 0 4px 16px rgba(124, 58, 237, .35);
    transform: scale(1);
  }

  50% {
    box-shadow: 0 4px 24px rgba(124, 58, 237, .55);
    transform: scale(1.03);
  }
}

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

/* Phone decorative blobs */
.phone-wrapper {
  position: relative;
}

.phone-wrapper__blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  pointer-events: none;
  z-index: -1;
}

.phone-wrapper__blob--1 {
  width: 180px;
  height: 180px;
  background: rgba(124, 58, 237, .2);
  top: -20px;
  right: -30px;
}

.phone-wrapper__blob--2 {
  width: 140px;
  height: 140px;
  background: rgba(236, 72, 153, .15);
  bottom: 0;
  left: -20px;
}

@media (max-width: 768px) {
  .showcase__grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .iphone {
    width: 230px;
    height: 470px;
  }
}

/* ══════════════════════════════════════════
   PORTFOLIO
   ══════════════════════════════════════════ */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
}

.store-card {
  background: #111827;
  border: 1px solid #1f2937;
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow .3s, border-color .3s;
}

.store-card:hover {
  box-shadow: 0 0 36px rgba(124, 58, 237, .35);
  border-color: rgba(124, 58, 237, .5);
}

.store-card__preview {
  position: relative;
  height: 220px;
  background: #1f2937;
  overflow: hidden;
}

.store-card__preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform .5s ease;
}

.store-card:hover .store-card__preview img {
  transform: scale(1.05);
}

.store-card__body {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.store-card__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 4px;
}

.store-card__status {
  display: flex;
  align-items: center;
  gap: 6px;
}

.store-card__status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #4ade80;
}

.store-card__status span {
  font-size: .72rem;
  font-weight: 600;
  color: #4ade80;
}

.store-card__tag {
  font-size: .65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: #a78bfa;
  background: rgba(167, 139, 250, .1);
  padding: 4px 10px;
  border-radius: 6px;
}

.store-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #f9fafb;
}

.store-card p {
  font-size: .85rem;
  color: #9ca3af;
  margin-top: 6px;
  flex: 1;
}

.store-card__link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-top: 16px;
  font-size: .875rem;
  font-weight: 600;
  color: #a78bfa;
}

.store-card__link svg {
  transition: transform .2s;
}

.store-card:hover .store-card__link svg {
  transform: translateX(4px);
}

/* ══════════════════════════════════════════
   HOW IT WORKS
   ══════════════════════════════════════════ */
.steps {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.steps::before {
  content: '';
  position: absolute;
  left: 27px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, #7c3aed, #ec4899, transparent);
}

.step {
  display: flex;
  gap: 24px;
  align-items: flex-start;
}

.step__num {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #7c3aed;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: 900;
  color: #fff;
  position: relative;
  z-index: 1;
  box-shadow: 0 4px 20px rgba(124, 58, 237, .5);
}

.step__card {
  background: #111827;
  border: 1px solid #1f2937;
  border-radius: 20px;
  padding: 24px;
  flex: 1;
}

.step__card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 6px;
}

.step__card p {
  font-size: .87rem;
  color: #9ca3af;
}

/* ══════════════════════════════════════════
   ABOUT
   ══════════════════════════════════════════ */
.about {
  padding: 96px 0;
}

.about__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
}

.about__avatar {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid rgba(124, 58, 237, .4);
  margin-bottom: 24px;
  box-shadow: 0 0 40px rgba(124, 58, 237, .3);
}

.about__bio {
  font-size: 1.05rem;
  color: #9ca3af;
  line-height: 1.75;
  margin-top: 16px;
}

.about__badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 28px;
}

.about__badge {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #111827;
  border: 1px solid #1f2937;
  padding: 10px 18px;
  border-radius: 999px;
  font-size: .82rem;
  font-weight: 600;
  color: #d1d5db;
}

.about__badge-icon {
  font-size: 1rem;
}

/* ══════════════════════════════════════════
   FAQ
   ══════════════════════════════════════════ */
.faq {
  padding: 96px 0;
}

.faq__list {
  max-width: 720px;
  margin: 48px auto 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq__item {
  background: #111827;
  border: 1px solid #1f2937;
  border-radius: 16px;
  overflow: hidden;
  transition: border-color .3s;
}

.faq__item[open] {
  border-color: rgba(124, 58, 237, .4);
}

.faq__item summary {
  padding: 20px 24px;
  font-size: 1rem;
  font-weight: 700;
  color: #f9fafb;
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: color .2s;
}

.faq__item summary::-webkit-details-marker {
  display: none;
}

.faq__item summary::after {
  content: '+';
  font-size: 1.4rem;
  font-weight: 300;
  color: #6b7280;
  transition: transform .3s;
}

.faq__item[open] summary::after {
  transform: rotate(45deg);
  color: #a78bfa;
}

.faq__item summary:hover {
  color: #a78bfa;
}

/* Smooth accordion animation using grid */
.faq__answer-wrapper {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows .4s cubic-bezier(.4, 0, .2, 1);
  overflow: hidden;
}

.faq__answer-wrapper>.faq__answer {
  min-height: 0;
  overflow: hidden;
}

.faq__answer {
  padding: 0 24px 20px;
  font-size: .9rem;
  color: #9ca3af;
  line-height: 1.7;
}

/* ══════════════════════════════════════════
   CTA SECTION
   ══════════════════════════════════════════ */
.cta-section {
  position: relative;
  padding: 112px 24px;
  text-align: center;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(109, 40, 217, .15) 0%, transparent 70%);
  pointer-events: none;
}

.cta-section__body {
  position: relative;
  max-width: 720px;
  margin: 0 auto;
}

.cta-section__text {
  color: #9ca3af;
  font-size: 1.1rem;
  margin: 16px auto 40px;
  max-width: 520px;
}

.cta-note {
  margin-top: 20px;
  font-size: .85rem;
  color: #6b7280;
}

/* ══════════════════════════════════════════
   FOOTER
   ══════════════════════════════════════════ */
.footer {
  position: relative;
  padding: 80px 0 0;
  background: #060b18;
  border-top: 1px solid rgba(124, 58, 237, .15);
  overflow: hidden;
  text-align: left;
}

.footer .footer__glow {
  position: absolute;
  top: -120px;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 240px;
  background: radial-gradient(ellipse at center, rgba(124, 58, 237, .08) 0%, transparent 70%);
  pointer-events: none;
}

.footer .footer__grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 56px;
  text-align: left;
}

/* Brand column */
.footer .footer__brand-col {
  text-align: left;
}

.footer .footer__brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 1.1rem;
  font-weight: 900;
  color: #f9fafb;
  letter-spacing: -.01em;
  margin-bottom: 16px;
}

.footer .footer__brand-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  min-width: 32px;
  min-height: 32px;
  background: linear-gradient(135deg, #7c3aed, #ec4899);
  border-radius: 10px;
  font-size: .9rem;
  font-weight: 900;
  color: #fff;
  line-height: 1;
}

.footer .footer__brand-desc {
  font-size: .85rem;
  color: #6b7280;
  line-height: 1.7;
  max-width: 300px;
  text-align: left;
}

/* Social links */
.footer .footer__social {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}

.footer .footer__social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: #111827;
  border: 1px solid #1f2937;
  border-radius: 12px;
  color: #6b7280;
  transition: all .25s ease;
}

.footer .footer__social-link:hover {
  color: #f9fafb;
  border-color: rgba(124, 58, 237, .5);
  background: rgba(124, 58, 237, .15);
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(124, 58, 237, .2);
}

.footer .footer__social-link svg {
  display: block;
}

/* Column titles */
.footer .footer__col-title {
  font-size: .78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: #d1d5db;
  margin-bottom: 20px;
  text-align: left;
}

/* Column lists */
.footer ul.footer__col-list {
  list-style: none;
  list-style-type: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
  text-align: left;
}

.footer .footer__col-list li {
  list-style: none;
  list-style-type: none;
  font-size: .87rem;
  color: #6b7280;
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  padding: 0;
  text-align: left;
}

.footer .footer__col-list li::before {
  display: none;
  content: none;
}

.footer .footer__col-list a {
  color: #6b7280;
  transition: color .2s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.footer .footer__col-list a:hover {
  color: #a78bfa;
}

/* Contact icons */
.footer .footer__contact-icon {
  font-size: .9rem;
  flex-shrink: 0;
}

/* Bottom bar */
.footer .footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, .06);
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
}

.footer .footer__bottom p {
  font-size: .8rem;
  color: #4b5563;
}

.footer__heart {
  color: #ec4899;
  display: inline-block;
  animation: heartbeat 1.6s ease-in-out infinite;
}

@keyframes heartbeat {

  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.2);
  }
}

.footer__bottom-tagline a {
  color: #a78bfa;
  font-weight: 600;
  transition: color .2s;
}

.footer__bottom-tagline a:hover {
  color: #c4b5fd;
}

/* Footer responsive */
@media (max-width: 900px) {
  .footer .footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
}

@media (max-width: 540px) {
  .footer {
    padding: 56px 0 0;
  }

  .footer .footer__grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .footer .footer__bottom {
    flex-direction: column;
    text-align: center;
    gap: 4px;
  }
}

/* ══════════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════════ */
@media (max-width: 640px) {
  .steps::before {
    display: none;
  }

  .btn-cta {
    font-size: 1.1rem;
    padding: 18px 32px;
  }

  .btn-cta--xl {
    font-size: 1.2rem;
    padding: 20px 36px;
  }

  .hero__pill {
    top: 76px;
    font-size: .65rem;
  }
}