/* invokaME — Landing page (HTML/CSS/JS) */
:root {
  --bg: #fafbf9;
  --fg: #0f172a;
  --muted: #6b7280;
  --muted-bg: #f1f3f4;
  --card: #ffffff;
  --border: #e5e7eb;
  --primary: #00a86b;
  --primary-glow: #1fc889;
  --primary-fg: #ffffff;
  --secondary: #111827;
  --secondary-fg: #f8fafc;
  --accent: #d4af37;
  --accent-fg: #111827;
  --radius: 14px;
  --gradient-hero:
    radial-gradient(
      120% 80% at 80% 0%,
      rgba(212, 175, 55, 0.22),
      transparent 60%
    ),
    linear-gradient(180deg, rgba(0, 168, 107, 0.06) 0%, var(--bg) 70%);
  --gradient-primary: linear-gradient(
    135deg,
    var(--primary),
    var(--primary-glow)
  );
  --gradient-gold: linear-gradient(135deg, var(--accent), #e9cc6b);
  --shadow-elegant: 0 24px 60px -28px rgba(0, 168, 107, 0.45);
  --shadow-gold: 0 20px 50px -20px rgba(212, 175, 55, 0.5);
  --shadow-card: 0 10px 40px -20px rgba(15, 23, 42, 0.18);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: "Inter", system-ui, sans-serif;
  background: var(--bg);
  color: var(--fg);
  -webkit-font-smoothing: antialiased;
  line-height: 1.5;
}
h1,
h2,
h3,
h4 {
  font-family: "Poppins", system-ui, sans-serif;
  letter-spacing: -0.02em;
  line-height: 1.1;
}
a {
  color: inherit;
  text-decoration: none;
}
ul {
  list-style: none;
}
img {
  max-width: 100%;
  display: block;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
.narrow {
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}
.narrow--md {
  max-width: 780px;
}
.center {
  text-align: center;
}

.text-primary {
  color: var(--primary);
}
.text-gold {
  color: var(--accent);
}
.text-gradient {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 600;
  font-size: 14px;
  padding: 10px 18px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
  font-family: inherit;
}
.btn--pill {
  border-radius: 999px;
}
.btn--lg {
  padding: 14px 26px;
}
.btn--sm {
  padding: 7px 12px;
  font-size: 12px;
}
.btn--primary {
  background: var(--gradient-primary);
  color: var(--primary-fg);
}
.btn--primary:hover {
  transform: translateY(-1px);
  opacity: 0.95;
}
.btn--shadow {
  box-shadow: var(--shadow-elegant);
}
.btn--outline {
  background: var(--card);
  color: var(--fg);
  border: 1px solid var(--border);
}
.btn--outline:hover {
  border-color: rgba(0, 168, 107, 0.6);
}
.btn--ghost {
  background: transparent;
  color: var(--fg);
  border: 1px solid var(--border);
}
.btn--gold {
  background: var(--gradient-gold);
  color: var(--accent-fg);
  box-shadow: var(--shadow-gold);
}
.btn--dark {
  background: var(--secondary);
  color: var(--secondary-fg);
}
.btn--dark:hover {
  background: #1f2937;
}

/* Icons (lucide-static font fallback names) */
[class^="icon-"] {
  font-family: "lucide";
  font-style: normal;
  font-size: 16px;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.icon-arrow::before {
  content: "\ea64";
} /* arrow-right */
.icon-eye::before {
  content: "\eb40";
} /* eye */
.icon-sparkles::before {
  content: "\ed7c";
} /* sparkles */
.icon-star::before {
  content: "\ed7d";
  color: var(--accent);
}
.icon-calendar::before {
  content: "\eab4";
  color: var(--primary);
}
.icon-pin::before {
  content: "\ec3f";
  color: var(--primary);
}
.icon-music::before {
  content: "\ec0a";
  color: var(--primary);
}
.icon-wifi::before {
  content: "\edf9";
}
.icon-check::before {
  content: "\eaab";
}
.icon-msg::before {
  content: "\ec76";
} /* message-square */
.icon-help::before {
  content: "\eb96";
}
.icon-wallet::before {
  content: "\edf2";
}
.icon-phone::before {
  content: "\ec47";
} /* smartphone */
.icon-heart::before {
  content: "\eb95";
}
.icon-fb::before {
  content: "\eb43";
}
.icon-ig::before {
  content: "\ebc1";
}

/* Generic */
.overline {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--muted);
}
.overline--primary {
  color: var(--primary);
}
.overline--gold {
  color: var(--accent);
}
.overline--goldsoft {
  color: rgba(212, 175, 55, 0.85);
}
.h2 {
  font-size: clamp(28px, 3.4vw, 36px);
  font-weight: 700;
  margin-top: 12px;
}
.h2--xl {
  font-size: clamp(30px, 4.4vw, 48px);
}
.lead {
  margin-top: 16px;
  color: var(--muted);
  font-size: 16px;
}
.lead--light {
  color: rgba(248, 250, 252, 0.78);
  font-size: 18px;
}

/* NAV */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(12px);
  background: rgba(250, 251, 249, 0.7);
  border-bottom: 1px solid rgba(229, 231, 235, 0.6);
}
.nav__inner {
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 18px;
}
.brand__badge {
  height: 32px;
  width: 32px;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--gradient-primary);
  box-shadow: var(--shadow-elegant);
  color: #fff;
}
.nav__links {
  display: none;
  gap: 32px;
  font-size: 14px;
  color: var(--muted);
}
.nav__links a:hover {
  color: var(--fg);
}
@media (min-width: 768px) {
  .nav__links {
    display: flex;
  }
}

/* HERO */
.hero {
  background: var(--gradient-hero);
  overflow: hidden;
}
.hero__grid {
  padding: 80px 24px 96px;
  display: grid;
  gap: 56px;
  align-items: center;
}
@media (min-width: 1024px) {
  .hero__grid {
    grid-template-columns: 1.1fr 0.9fr;
    padding: 112px 24px 128px;
  }
}
.chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(212, 175, 55, 0.4);
  background: rgba(212, 175, 55, 0.1);
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 500;
  color: var(--accent-fg);
}
.chip__dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
}
.hero__title {
  margin-top: 24px;
  font-size: clamp(40px, 6.5vw, 80px);
  font-weight: 800;
}
.hero__lead {
  margin-top: 24px;
  font-size: 18px;
  color: var(--muted);
  max-width: 540px;
}
.hero__lead strong {
  color: var(--fg);
}
.hero__ctas {
  margin-top: 32px;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}
.hero__social {
  margin-top: 40px;
  display: flex;
  align-items: center;
  gap: 24px;
  font-size: 14px;
  color: var(--muted);
  flex-wrap: wrap;
}
.avatars {
  display: flex;
}
.avatars span {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 2px solid var(--bg);
  margin-left: -8px;
}
.avatars span:first-child {
  margin-left: 0;
}
.stars {
  display: flex;
  align-items: center;
  gap: 2px;
}
.stars__txt {
  margin-left: 8px;
  color: var(--muted);
}
.stars__txt strong {
  color: var(--fg);
  font-weight: 600;
  margin-right: 4px;
}

/* Phone */
.phone-wrap {
  position: relative;
  max-width: 360px;
  margin: 0 auto;
  width: 100%;
}
.phone__glow {
  position: absolute;
  inset: -32px;
  border-radius: 48px;
  filter: blur(60px);
  opacity: 0.4;
  background: var(--gradient-primary);
}
.phone {
  position: relative;
  border-radius: 40px;
  background: var(--secondary);
  padding: 10px;
  box-shadow: var(--shadow-elegant);
}
.phone__screen {
  overflow: hidden;
  border-radius: 32px;
  background: var(--bg);
  aspect-ratio: 9/19;
}
.phone__head {
  height: 128px;
  background: var(--gradient-primary);
  position: relative;
}
.phone__head-dots {
  position: absolute;
  inset: 0;
  opacity: 0.2;
  background-image:
    radial-gradient(circle at 20% 30%, #fff 1px, transparent 1px),
    radial-gradient(circle at 80% 60%, #fff 1px, transparent 1px);
  background-size: 40px 40px;
}
.phone__head-text {
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 16px;
  color: #fff;
}
.phone__head-text .overline {
  color: rgba(255, 255, 255, 0.8);
}
.phone__name {
  font-family: "Poppins";
  font-size: 22px;
  font-weight: 700;
  margin-top: 4px;
}
.phone__body {
  padding: 16px 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.phone__meta {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: var(--muted);
}
.phone__meta span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.countdown {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  text-align: center;
}
.countdown div {
  background: var(--muted-bg);
  border-radius: 8px;
  padding: 8px 4px;
}
.countdown b {
  display: block;
  font-family: "Poppins";
  font-size: 18px;
  font-weight: 700;
  color: var(--fg);
}
.countdown span {
  font-size: 10px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--muted);
}
.rsvp {
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 12px;
}
.rsvp__title {
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 8px;
}
.rsvp__btns {
  display: flex;
  gap: 8px;
}
.rsvp__btns .btn {
  flex: 1;
}
.music {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: rgba(17, 24, 39, 0.03);
}
.music__title {
  font-size: 12px;
  font-weight: 600;
}
.music__bar {
  height: 4px;
  margin-top: 6px;
  border-radius: 999px;
  background: var(--muted-bg);
  overflow: hidden;
}
.music__bar span {
  display: block;
  height: 100%;
  width: 40%;
  background: var(--gradient-primary);
}
.phone__nfc {
  position: absolute;
  right: -16px;
  top: 40px;
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 10px 12px;
  box-shadow: var(--shadow-card);
}
.phone__nfc-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gradient-gold);
  color: var(--accent-fg);
}
.phone__nfc-title {
  font-size: 12px;
  font-weight: 600;
}
.phone__nfc-sub {
  font-size: 11px;
  color: var(--muted);
}

/* PAIN */
.pain {
  padding: 80px 0;
  background: var(--secondary);
  color: var(--secondary-fg);
}
.pain__grid {
  margin-top: 48px;
  display: grid;
  gap: 16px;
  grid-template-columns: 1fr;
}
@media (min-width: 640px) {
  .pain__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .pain__grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
.pain__item {
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.05);
  padding: 24px;
  border-radius: 16px;
  transition: border-color 0.2s;
}
.pain__item:hover {
  border-color: rgba(212, 175, 55, 0.4);
}
.pain__item i {
  color: var(--accent);
  font-size: 24px;
}
.pain__item p {
  margin-top: 16px;
  font-weight: 500;
}

/* FEATURES */
.features {
  padding: 96px 0;
}
.features__grid {
  margin-top: 64px;
  display: grid;
  gap: 24px;
  grid-template-columns: 1fr;
}
@media (min-width: 768px) {
  .features__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .features__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
.feature {
  border: 1px solid var(--border);
  background: var(--card);
  padding: 28px;
  border-radius: 16px;
  box-shadow: var(--shadow-card);
  transition: all 0.2s;
}
.feature:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 168, 107, 0.4);
}
.feature__icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--gradient-primary);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}
.feature h3 {
  margin-top: 20px;
  font-size: 20px;
  font-weight: 600;
}
.feature p {
  margin-top: 8px;
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
}

/* NFC HIGHLIGHT */
.nfc {
  position: relative;
  overflow: hidden;
  padding: 96px 0;
  background: var(--secondary);
  color: var(--secondary-fg);
}
.nfc__bg {
  position: absolute;
  inset: 0;
  opacity: 0.3;
  background:
    radial-gradient(60% 60% at 30% 50%, rgba(0, 168, 107, 0.5), transparent),
    radial-gradient(40% 40% at 80% 30%, rgba(212, 175, 55, 0.4), transparent);
}
.nfc__grid {
  position: relative;
  display: grid;
  gap: 56px;
  align-items: center;
  grid-template-columns: 1fr;
}
@media (min-width: 1024px) {
  .nfc__grid {
    grid-template-columns: 1fr 1fr;
  }
}
.nfc__cardWrap {
  position: relative;
  justify-self: center;
}
.nfc__card {
  position: relative;
  width: 288px;
  height: 176px;
  border-radius: 18px;
  padding: 4px;
  background: var(--gradient-gold);
  box-shadow: var(--shadow-gold);
}
.nfc__card-inner {
  height: 100%;
  width: 100%;
  border-radius: 15px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: linear-gradient(135deg, #1d2533, #0e1320);
}
.nfc__card-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.nfc__brand {
  font-family: "Poppins";
  font-weight: 700;
  font-size: 18px;
  color: var(--secondary-fg);
}
.rotate90 {
  transform: rotate(90deg);
}
.nfc__card-sub {
  font-size: 12px;
  color: rgba(248, 250, 252, 0.7);
  margin-top: 4px;
}
.nfc__badge {
  position: absolute;
  top: -12px;
  right: -8px;
  transform: rotate(12deg);
  background: var(--accent);
  color: var(--accent-fg);
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
}
.checklist {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.checklist li {
  display: flex;
  gap: 12px;
  color: rgba(248, 250, 252, 0.85);
}
.check {
  margin-top: 4px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--accent-fg);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 12px;
}

/* HOW */
.how {
  padding: 96px 0;
}
.how__grid {
  margin-top: 64px;
  display: grid;
  gap: 24px;
  grid-template-columns: 1fr;
}
@media (min-width: 768px) {
  .how__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .how__grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
.step {
  border: 1px solid var(--border);
  background: var(--card);
  border-radius: 16px;
  padding: 28px;
  box-shadow: var(--shadow-card);
}
.step__n {
  font-family: "Poppins";
  font-size: 48px;
  font-weight: 800;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.step h3 {
  margin-top: 12px;
  font-size: 18px;
  font-weight: 600;
}
.step p {
  margin-top: 8px;
  font-size: 14px;
  color: var(--muted);
}

/* SHOWCASE */
.showcase {
  padding: 96px 0;
  background: rgba(241, 243, 244, 0.5);
}
.showcase__head {
  display: flex;
  flex-direction: column;
  gap: 24px;
  justify-content: space-between;
}
@media (min-width: 768px) {
  .showcase__head {
    flex-direction: row;
    align-items: flex-end;
  }
}
.link-arrow {
  color: var(--primary);
  font-weight: 600;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: gap 0.2s;
}
.link-arrow:hover {
  gap: 8px;
}
.showcase__grid {
  margin-top: 48px;
  display: grid;
  gap: 20px;
  grid-template-columns: 1fr;
}
@media (min-width: 640px) {
  .showcase__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .showcase__grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
.demo {
  position: relative;
  aspect-ratio: 3/4;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-card);
  display: block;
}
.demo::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.6), transparent);
}
.demo__emoji {
  position: absolute;
  top: 20px;
  left: 20px;
  font-size: 36px;
}
.demo__txt {
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
  color: #fff;
}
.demo__txt p:first-child {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  opacity: 0.8;
}
.demo__txt p:nth-child(2) {
  font-family: "Poppins";
  font-size: 22px;
  font-weight: 700;
  margin-top: 4px;
}
.demo__cta {
  margin-top: 10px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 12px;
  font-weight: 600;
  opacity: 0;
  transition: opacity 0.2s;
}
.demo:hover .demo__cta {
  opacity: 1;
}

/* PRICING */
.pricing {
  padding: 96px 0;
}
.pricing__grid {
  margin-top: 56px;
  display: grid;
  gap: 24px;
  grid-template-columns: 1fr;
  align-items: stretch;
}
@media (min-width: 768px) {
  .pricing__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
.plan {
  position: relative;
  border: 1px solid var(--border);
  background: var(--card);
  border-radius: 24px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-card);
}
.plan--hot {
  border: 2px solid var(--primary);
  transform: scale(1.02);
  box-shadow: var(--shadow-elegant);
}
.plan__badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gradient-primary);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 5px 14px;
  border-radius: 999px;
}
.plan h3 {
  font-size: 24px;
  font-weight: 700;
}
.plan__price {
  margin-top: 16px;
  display: flex;
  align-items: baseline;
  gap: 4px;
}
.plan__price small {
  color: var(--muted);
  font-size: 14px;
}
.plan__price b {
  font-family: "Poppins";
  font-size: 48px;
  font-weight: 800;
}
.plan__price span {
  color: var(--muted);
  font-size: 14px;
  margin-left: 4px;
}
.plan ul {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}
.plan ul li {
  display: flex;
  gap: 12px;
  font-size: 14px;
}
.plan__check {
  margin-top: 2px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 168, 107, 0.1);
  color: var(--primary);
  font-size: 12px;
  flex-shrink: 0;
}
.plan--hot .plan__check {
  background: var(--gradient-primary);
  color: #fff;
}
.plan .btn {
  margin-top: 32px;
}

.addons {
  margin-top: 56px;
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: 24px;
  padding: 32px;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), var(--card));
}
@media (min-width: 768px) {
  .addons {
    padding: 40px;
  }
}
.addons__head {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
@media (min-width: 768px) {
  .addons {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 32px;
    align-items: center;
  }
}
.addons__label {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--muted);
}
.addons__label span {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.2em;
}
.addons__title {
  margin-top: 8px;
  font-family: "Poppins";
  font-size: 24px;
  font-weight: 700;
}
.addons__list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}
@media (min-width: 768px) {
  .addons__list {
    margin-top: 0;
  }
}
.addon {
  border: 1px solid var(--border);
  background: var(--bg);
  border-radius: 16px;
  padding: 12px 20px;
  text-align: center;
}
.addon b {
  display: block;
  font-size: 14px;
  font-weight: 600;
}
.addon span {
  font-family: "Poppins";
  font-size: 18px;
  font-weight: 700;
  color: var(--primary);
}

/* FAQ */
.faq {
  padding: 96px 0;
  background: rgba(241, 243, 244, 0.5);
}
.faq__list {
  margin-top: 48px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq__item {
  border: 1px solid var(--border);
  background: var(--card);
  border-radius: 16px;
  overflow: hidden;
  transition: box-shadow 0.2s;
}
.faq__item.open {
  box-shadow: var(--shadow-card);
}
.faq__btn {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 20px;
  text-align: left;
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
  font-size: 16px;
}
.faq__btn span:first-child {
  font-family: "Poppins";
  font-weight: 600;
}
.faq__icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1px solid var(--border);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
  font-size: 18px;
  flex-shrink: 0;
}
.faq__item.open .faq__icon {
  transform: rotate(45deg);
  background: var(--gradient-primary);
  color: #fff;
  border-color: transparent;
}
.faq__answer {
  padding: 0 20px 20px;
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
  display: none;
}
.faq__item.open .faq__answer {
  display: block;
}

/* FINAL CTA */
.finalcta {
  padding: 96px 0;
}
.finalcta__box {
  position: relative;
  overflow: hidden;
  border-radius: 32px;
  padding: 64px 32px;
  text-align: center;
  background: var(--gradient-primary);
  box-shadow: var(--shadow-elegant);
  color: #fff;
}
@media (min-width: 768px) {
  .finalcta__box {
    padding: 96px 48px;
  }
}
.finalcta__dots {
  position: absolute;
  inset: 0;
  opacity: 0.2;
  background-image:
    radial-gradient(circle at 20% 30%, #fff 1px, transparent 1px),
    radial-gradient(circle at 70% 80%, #fff 1px, transparent 1px);
  background-size: 50px 50px;
}
.finalcta__heart {
  position: relative;
  font-size: 40px;
  color: #fff;
}
.finalcta h2 {
  position: relative;
  margin-top: 24px;
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 800;
  color: #fff;
}
.finalcta p {
  position: relative;
  margin-top: 16px;
  color: rgba(255, 255, 255, 0.85);
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}
.finalcta .btn {
  position: relative;
  margin-top: 32px;
}

/* FOOTER */
.footer {
  background: var(--secondary);
  color: var(--secondary-fg);
}
.footer__grid {
  padding: 64px 24px;
  display: grid;
  gap: 40px;
  grid-template-columns: 1fr;
}
@media (min-width: 768px) {
  .footer__grid {
    grid-template-columns: 2fr 1fr 1fr;
  }
}
.brand--light {
  color: var(--secondary-fg);
}
.footer__brand p {
  margin-top: 16px;
  font-size: 14px;
  color: rgba(248, 250, 252, 0.7);
  max-width: 360px;
}
.socials {
  margin-top: 24px;
  display: flex;
  gap: 12px;
}
.socials a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.15);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  transition: all 0.2s;
}
.socials a:hover {
  border-color: var(--accent);
  color: var(--accent);
}
.footer__title {
  font-family: "Poppins";
  font-weight: 600;
  margin-bottom: 16px;
}
.footer ul li {
  margin-bottom: 8px;
  font-size: 14px;
  color: rgba(248, 250, 252, 0.7);
}
.footer ul li a:hover {
  color: var(--accent);
}
.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.footer__bottom-inner {
  padding: 24px;
  font-size: 12px;
  color: rgba(248, 250, 252, 0.6);
  display: flex;
  flex-direction: column;
  gap: 8px;
  justify-content: space-between;
}
@media (min-width: 768px) {
  .footer__bottom-inner {
    flex-direction: row;
  }
}

/* Sello "By Axobit" junto a los logos */
.brand .by-axobit {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.55;
  white-space: nowrap;
  color: inherit;
  text-decoration: none;
}
