/* ============================================================
   ELUNE Landing — CSS (converted from SCSS)
   ============================================================ */

/* ── Reset base ─────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }
html { margin: 0; padding: 0; }
body { margin: 0; padding: 0; overflow-x: hidden; }
#bottomBar { display: none !important; } /* Hide Live Server injected bar */
button { font-family: inherit; cursor: pointer; }
.btn-login, .btn-cta, .btn-hero-primary, .btn-hero-secondary,
.btn-panel-login, .btn-panel-cta, .btn-pricing-main, .banner-link { text-decoration: none; }
img { max-width: 100%; height: auto; }
ion-icon { pointer-events: none; display: block; }
#main-content { padding-top: 100px; }

/* ============================================================
   1. LANDING PAGE (landing.page.scss)
   ============================================================ */
.landing-wrapper {
  min-height: 100vh;
  background: #fff;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-16px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

@keyframes scaleIn {
  from { opacity: 0; transform: scale(0.95); }
  to   { opacity: 1; transform: scale(1); }
}

.animate-section {
  display: block;
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.animate-section.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   STAGGERED CHILDREN ANIMATIONS
   Cards, steps, and rows appear one by one when section enters
   ============================================================ */

/* -- Hidden state (before section is visible) -- */
.animate-section .bt-card,
.animate-section .loyalty-step,
.animate-section .step-card,
.animate-section .comp-card,
.animate-section .plan-card {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

/* -- Visible state with staggered delays -- */
.animate-section.is-visible .bt-card,
.animate-section.is-visible .loyalty-step,
.animate-section.is-visible .step-card,
.animate-section.is-visible .comp-card,
.animate-section.is-visible .plan-card {
  opacity: 1;
  transform: translateY(0);
}
.animate-section.is-visible :nth-child(1) { transition-delay: 0s; }
.animate-section.is-visible :nth-child(2) { transition-delay: 0.08s; }
.animate-section.is-visible :nth-child(3) { transition-delay: 0.16s; }
.animate-section.is-visible :nth-child(4) { transition-delay: 0.24s; }
.animate-section.is-visible :nth-child(5) { transition-delay: 0.32s; }
.animate-section.is-visible :nth-child(6) { transition-delay: 0.4s; }

/* -- Notification mockups: scale pop-in -- */
.animate-section .notification-mockup {
  opacity: 0;
  transform: scale(0.92);
  transition: opacity 0.45s ease 0.3s, transform 0.45s ease 0.3s;
}
.animate-section.is-visible .notification-mockup {
  opacity: 1;
  transform: scale(1);
}

/* -- Badges: slide in from left -- */
.animate-section .bt-badge {
  opacity: 0;
  transform: translateX(-10px);
  transition: opacity 0.35s ease 0.15s, transform 0.35s ease 0.15s;
}
.animate-section.is-visible .bt-badge {
  opacity: 1;
  transform: translateX(0);
}

/* -- Section titles: enter before children -- */
.animate-section .section-title,
.animate-section .comparison-title,
.animate-section .loyalty-title {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.animate-section.is-visible .section-title,
.animate-section.is-visible .comparison-title,
.animate-section.is-visible .loyalty-title {
  opacity: 1;
  transform: translateY(0);
}

.animate-section .pricing-subtitle,
.animate-section .comparison-intro,
.animate-section .loyalty-subtitle {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.5s ease 0.1s, transform 0.5s ease 0.1s;
}
.animate-section.is-visible .pricing-subtitle,
.animate-section.is-visible .comparison-intro,
.animate-section.is-visible .loyalty-subtitle {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   CTA BUTTON GLOW PULSE
   Subtle pulsing glow on primary CTAs to draw attention
   ============================================================ */
@keyframes ctaGlow {
  0%, 100% { box-shadow: 0 4px 16px rgba(19,182,236,0.35); }
  50%      { box-shadow: 0 4px 24px rgba(19,182,236,0.55), 0 0 48px rgba(19,182,236,0.12); }
}
.btn-hero-primary,
.btn-pricing-main,
.btn-cta {
  animation: ctaGlow 3s ease-in-out infinite;
}
.btn-hero-primary:hover,
.btn-pricing-main:hover,
.btn-cta:hover {
  animation: none;
}

/* ============================================================
   CARD HOVER GLOW
   Subtle blue border glow on card hover
   ============================================================ */
.bt-card:hover,
.loyalty-step:hover,
.step-card:hover {
  border-color: rgba(19,182,236,0.25);
}

/* Reduce motion for accessibility */
@media (prefers-reduced-motion: reduce) {
  .animate-section,
  .animate-section .bt-card,
  .animate-section .loyalty-step,
  .animate-section .step-card,
  .animate-section .comp-card,
  .animate-section .plan-card,
  .animate-section .notification-mockup,
  .animate-section .bt-badge,
  .animate-section .section-title,
  .animate-section .comparison-title,
  .animate-section .loyalty-title,
  .animate-section .pricing-subtitle,
  .animate-section .comparison-intro,
  .animate-section .loyalty-subtitle {
    transition: none !important;
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
  .btn-hero-primary,
  .btn-pricing-main,
  .btn-cta { animation: none !important; }
}

body.dark .landing-wrapper {
  background: #0f0f0f !important;
  color: #f0f0f0 !important;
}

/* ============================================================
   2. NAVBAR (landing-navbar.component.scss)
   ============================================================ */

/* ── Root wrapper ─────────────────────────────────────────── */
.nav-root {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
}

/* ── Announcement banner ──────────────────────────────────── */
.nav-banner {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  padding: 6px 48px 6px 16px;
  background: linear-gradient(90deg, rgba(10,10,10,0.97) 0%, rgba(15,22,28,0.97) 50%, rgba(10,10,10,0.97) 100%);
  border-bottom: 1px solid rgba(19,182,236,0.2);
  position: relative;
  overflow: hidden;
  animation: bannerIn 0.5s cubic-bezier(0.4,0,0.2,1) both;
}
.nav-banner::after {
  content: '';
  position: absolute;
  top: 0; left: -60%;
  width: 40%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.07), transparent);
  animation: shimmerSweep 7s ease-in-out 4s infinite;
}

.nav-banner-inner {
  display: flex;
  align-items: center;
  gap: 9px;
}
.nav-banner-inner p {
  margin: 0;
  font-size: 13px;
  line-height: 1.5;
  color: rgba(255,255,255,0.62);
  text-align: center;
}
.nav-banner-inner p strong { color: #fff; font-weight: 700; }
@media (max-width: 480px) {
  .nav-banner-inner p { font-size: 12px; }
}

.banner-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: #13b6ec;
  flex-shrink: 0;
  box-shadow: 0 0 0 3px rgba(19,182,236,0.2);
  animation: dotPulse 2.2s ease-in-out infinite;
}

.banner-link {
  color: #13b6ec;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;
  transition: color 0.15s;
}
.banner-link:hover { color: #5ed0f5; }

.banner-close {
  position: absolute;
  right: 10px; top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: rgba(255,255,255,0.3);
  cursor: pointer;
  padding: 5px;
  border-radius: 5px;
  display: flex;
  align-items: center;
  transition: color 0.15s, background 0.15s;
}
.banner-close ion-icon { font-size: 16px; }
.banner-close:hover {
  color: #1a1a1a;
  background: rgba(0,0,0,0.07);
}

/* ── Main navbar ──────────────────────────────────────────── */
.landing-nav {
  background: rgba(245,243,237,0.94);
  backdrop-filter: blur(20px) saturate(160%);
  -webkit-backdrop-filter: blur(20px) saturate(160%);
  border-bottom: 1px solid rgba(0,0,0,0.07);
  position: relative;
  transition: background 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}
.landing-nav.scrolled {
  background: rgba(245,243,237,0.98);
  box-shadow: 0 1px 0 rgba(255,255,255,0.6), 0 4px 20px rgba(0,0,0,0.10);
  border-bottom-color: rgba(19,182,236,0.22);
}

/* ── Scroll progress bar ──────────────────────────────────── */
.nav-progress-wrap {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: rgba(0,0,0,0.06);
  overflow: hidden;
}
.nav-progress-fill {
  height: 100%;
  background: linear-gradient(90deg, #13b6ec, #0ea5d4, #7c3aed);
  transition: width 0.08s linear;
  border-radius: 0 99px 99px 0;
}

/* ── Container ────────────────────────────────────────────── */
.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
@media (max-width: 768px) {
  .nav-container { padding: 0 16px; }
}

/* ── Logo ─────────────────────────────────────────────────── */
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  flex-shrink: 0;
  text-decoration: none;
}

.logo-mark {
  position: relative;
  flex-shrink: 0;
}
.logo-mark img {
  width: 32px; height: 32px;
  border-radius: 8px;
  display: block;
}
.logo-mark .logo-ping {
  position: absolute;
  top: -3px; right: -3px;
  width: 9px; height: 9px;
  background: #22c55e;
  border-radius: 50%;
  border: 2px solid rgba(245,243,237,0.95);
}
.logo-mark .logo-ping::before {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  background: rgba(34,197,94,0.45);
  animation: pingExpand 2.2s ease-in-out infinite;
}
.logo-mark.small img { width: 28px; height: 28px; }

.logo-wordmark {
  font-size: 17px;
  font-weight: 800;
  color: #151515;
  letter-spacing: -0.3px;
  white-space: nowrap;
}
.logo-wordmark em {
  font-style: normal;
  color: #13b6ec;
  font-weight: 600;
}
.logo-wordmark.sm { font-size: 15px; }

/* ── Desktop nav links ────────────────────────────────────── */
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
  margin: 0;
  padding: 0;
  flex: 1;
  justify-content: center;
}
@media (max-width: 768px) {
  .nav-links { display: none; }
}

.nav-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  color: rgba(30,30,30,0.58);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  padding: 7px 13px;
  border-radius: 8px;
  user-select: none;
  transition: color 0.15s ease, background 0.15s ease;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 5px;
  left: 13px; right: 13px;
  height: 2px;
  background: linear-gradient(90deg, #13b6ec, #0ea5d4);
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.22s cubic-bezier(0.4,0,0.2,1);
}
.nav-link:hover {
  color: rgba(30,30,30,0.90);
  background: rgba(0,0,0,0.05);
}
.nav-link.active { color: #151515; }
.nav-link.active::after { transform: scaleX(1); }

/* ── Desktop actions ──────────────────────────────────────── */
.nav-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}
@media (max-width: 768px) {
  .nav-actions { display: none; }
}

.btn-login {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: rgba(30,30,30,0.65);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: 8px;
  border: 1px solid rgba(0,0,0,0.12);
  cursor: pointer;
  transition: color 0.15s, border-color 0.15s, background 0.15s;
}
.btn-login ion-icon { font-size: 15px; }
.btn-login:hover {
  color: #151515;
  border-color: rgba(0,0,0,0.22);
  background: rgba(0,0,0,0.04);
}

.btn-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: linear-gradient(135deg, #13b6ec 0%, #0ea5d4 100%);
  color: #fff;
  border: none;
  padding: 10px 18px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 14px rgba(19,182,236,0.38), inset 0 1px 0 rgba(255,255,255,0.14);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.btn-cta ion-icon {
  font-size: 14px;
  transition: transform 0.2s ease;
}
.btn-cta::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 55%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.18), transparent);
  transform: skewX(-15deg);
  animation: ctaSweep 4.5s ease-in-out 2.5s infinite;
}
.btn-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 22px rgba(19,182,236,0.52);
}
.btn-cta:hover ion-icon { transform: translateX(3px); }
.btn-cta:active { transform: translateY(0); }

/* ── Language / Currency dropdowns ─────────────────────────── */
.nav-dropdown { position: relative; }

.btn-switcher {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 7px 10px;
  border-radius: 8px;
  background: rgba(0,0,0,0.04);
  border: 1px solid rgba(0,0,0,0.09);
  color: rgba(30,30,30,0.62);
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.15s, border-color 0.15s, color 0.15s;
}
.btn-switcher ion-icon {
  display: inline-flex;
  pointer-events: none;
}
.btn-switcher .switcher-type-icon,
.btn-switcher > ion-icon:first-child {
  font-size: 13px;
  opacity: 0.45;
  flex-shrink: 0;
}
.btn-switcher .switcher-flag {
  font-size: 15px;
  line-height: 1;
}
.btn-switcher .switcher-flag.flag-text {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.5px;
  background: rgba(19,182,236,0.18);
  color: #13b6ec;
  border-radius: 4px;
  padding: 2px 5px;
  line-height: 1.4;
}
.btn-switcher .switcher-label { letter-spacing: 0.3px; }
.btn-switcher .switcher-chevron,
.btn-switcher > ion-icon:last-child {
  font-size: 12px;
  opacity: 0.5;
  transition: transform 0.2s ease;
}
.btn-switcher:hover {
  background: rgba(0,0,0,0.06);
  border-color: rgba(0,0,0,0.16);
  color: rgba(30,30,30,0.9);
}
.nav-dropdown.open .btn-switcher .switcher-chevron,
.nav-dropdown.open .btn-switcher > ion-icon:last-child {
  transform: rotate(180deg);
}

@media (max-width: 900px) and (min-width: 769px) {
  .btn-switcher .switcher-label { display: none; }
}

.dropdown-menu {
  position: absolute;
  top: calc(100% + 6px);
  left: 50%;
  transform: translateX(-50%);
  min-width: 140px;
  background: #f5f3ee;
  border: 1px solid rgba(0,0,0,0.09);
  border-radius: 10px;
  padding: 5px;
  list-style: none;
  margin: 0;
  z-index: 10;
  box-shadow: 0 8px 24px rgba(0,0,0,0.12), 0 2px 6px rgba(0,0,0,0.07);
  animation: dropIn 0.15s cubic-bezier(0.4,0,0.2,1);
}
.dropdown-menu li {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0;
  border-radius: 7px;
  font-size: 13px;
  font-weight: 500;
  color: rgba(30,30,30,0.65);
  cursor: pointer;
  transition: background 0.12s, color 0.12s;
  white-space: nowrap;
  outline: none;
  list-style: none;
}
/* Style buttons inside dropdown items to look seamless */
.dropdown-menu li button {
  display: flex;
  align-items: center;
  gap: 8px;
  width: 100%;
  padding: 9px 12px;
  border: none;
  background: transparent;
  border-radius: 7px;
  font-size: 13px;
  font-weight: 500;
  color: rgba(30,30,30,0.65);
  cursor: pointer;
  transition: background 0.12s, color 0.12s;
  white-space: nowrap;
  text-align: left;
  font-family: inherit;
  line-height: 1.4;
  margin: 0;
}
.dropdown-menu li button:hover {
  background: rgba(0,0,0,0.05);
  color: rgba(30,30,30,0.9);
}
.dropdown-menu li.active button {
  color: #13b6ec;
}
/* For li without button children (direct text) */
.dropdown-menu li:not(:has(button)) {
  padding: 9px 12px;
}
.dropdown-menu li .opt-flag {
  font-size: 15px;
  flex-shrink: 0;
}
.dropdown-menu li .opt-flag.flag-text {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.5px;
  background: rgba(19,182,236,0.18);
  color: #13b6ec;
  border-radius: 4px;
  padding: 2px 5px;
  line-height: 1.4;
}
.dropdown-menu li .opt-label { flex: 1; }
.dropdown-menu li .opt-symbol { color: rgba(30,30,30,0.35); font-size: 12px; }
.dropdown-menu li .opt-check { font-size: 13px; color: #13b6ec; margin-left: auto; flex-shrink: 0; }
.dropdown-menu li:hover,
.dropdown-menu li:focus-visible {
  background: rgba(0,0,0,0.05);
  color: rgba(30,30,30,0.9);
}
.dropdown-menu li.active,
.dropdown-menu li.active button {
  color: #13b6ec;
  background: rgba(19,182,236,0.1);
}

.lang-dropdown .dropdown-menu,
.dropdown-menu--right {
  left: auto;
  right: 0;
  transform: none;
  min-width: 160px;
  animation: dropInRight 0.15s cubic-bezier(0.4,0,0.2,1);
}

/* ── Dropdown extra (vanilla JS) ──────────────────────────── */
.nav-dropdown .dropdown-menu { display: none; }
.nav-dropdown.open .dropdown-menu { display: block; }
@media (min-width: 769px) { .mobile-menu { display: none !important; } }

/* ── Mobile prefs panel ───────────────────────────────────── */
.panel-prefs {
  padding: 14px 14px 2px;
  border-top: 1px solid rgba(0,0,0,0.07);
  flex-shrink: 0;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.25s ease 0.18s, transform 0.25s ease 0.18s;
}
.mobile-menu.open .panel-prefs {
  opacity: 1;
  transform: translateY(0);
}

.panel-prefs-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: rgba(30,30,30,0.30);
  margin: 0 0 8px;
}
.panel-prefs-pills + .panel-prefs-label { margin-top: 12px; }

.panel-prefs-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 10px;
}

.pref-pill {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 6px 10px;
  border-radius: 7px;
  background: rgba(0,0,0,0.03);
  border: 1px solid rgba(0,0,0,0.08);
  color: rgba(30,30,30,0.55);
  font-size: 12px;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.13s, border-color 0.13s, color 0.13s;
  white-space: nowrap;
}
.pref-pill:hover {
  background: rgba(0,0,0,0.05);
  color: rgba(30,30,30,0.80);
}
.pref-pill.active {
  background: rgba(19,182,236,0.12);
  border-color: rgba(19,182,236,0.35);
  color: #13b6ec;
  font-weight: 600;
}

/* ── Hamburger ────────────────────────────────────────────── */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px; height: 40px;
  background: rgba(0,0,0,0.04);
  border: 1px solid rgba(0,0,0,0.09);
  border-radius: 9px;
  cursor: pointer;
  padding: 0;
  transition: background 0.15s, border-color 0.15s;
  flex-shrink: 0;
}
.hamburger span {
  display: block;
  width: 18px; height: 2px;
  background: rgba(30,30,30,0.75);
  border-radius: 2px;
  transition: all 0.28s cubic-bezier(0.4,0,0.2,1);
}
.hamburger:hover {
  background: rgba(0,0,0,0.07);
  border-color: rgba(0,0,0,0.14);
}
.hamburger.open {
  background: rgba(19,182,236,0.12);
  border-color: rgba(19,182,236,0.3);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
@media (max-width: 768px) { .hamburger { display: flex; } }

/* ── Mobile drawer ────────────────────────────────────────── */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 999;
  pointer-events: none;
}
.mobile-menu.open { pointer-events: all; }

.mobile-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.58);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.mobile-menu.open .mobile-backdrop { opacity: 1; }

.mobile-panel {
  position: absolute;
  top: 0; right: 0; bottom: 0;
  width: min(300px, 84vw);
  background: #f5f3ee;
  border-left: 1px solid rgba(0,0,0,0.07);
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.34s cubic-bezier(0.4,0,0.2,1);
  overflow: hidden;
}
.mobile-panel::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 260px; height: 260px;
  background: radial-gradient(circle, rgba(19,182,236,0.09) 0%, transparent 70%);
  pointer-events: none;
}
.mobile-menu.open .mobile-panel { transform: translateX(0); }

.panel-header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 18px 14px;
  border-bottom: 1px solid rgba(0,0,0,0.07);
  flex-shrink: 0;
}
.panel-header .logo-wordmark.sm { flex: 1; }

.panel-close {
  width: 32px; height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0.04);
  border: 1px solid rgba(0,0,0,0.07);
  border-radius: 7px;
  color: rgba(30,30,30,0.45);
  cursor: pointer;
  transition: background 0.15s, color 0.15s;
  flex-shrink: 0;
}
.panel-close ion-icon { font-size: 17px; }
.panel-close:hover { background: rgba(0,0,0,0.07); color: #151515; }

.panel-nav {
  padding: 12px 10px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.panel-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 13px 14px;
  border-radius: 10px;
  color: rgba(30,30,30,0.60);
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  opacity: 0;
  transform: translateX(20px);
  transition: background 0.15s, color 0.15s, opacity 0.28s ease, transform 0.28s ease;
}
.panel-link:nth-child(1) { transition-delay: 0.08s; }
.panel-link:nth-child(2) { transition-delay: 0.14s; }
.panel-link:nth-child(3) { transition-delay: 0.20s; }
.mobile-menu.open .panel-link {
  opacity: 1;
  transform: translateX(0);
}
.panel-link:hover {
  background: rgba(0,0,0,0.05);
  color: rgba(30,30,30,0.90);
}
.panel-link.active {
  background: rgba(19,182,236,0.1);
  color: #13b6ec;
}
.panel-link.active .panel-link-icon {
  background: rgba(19,182,236,0.14);
}
.panel-link.active .panel-link-icon ion-icon { color: #13b6ec; }

.panel-link-icon {
  width: 34px; height: 34px;
  border-radius: 9px;
  background: rgba(0,0,0,0.04);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.15s;
}
.panel-link-icon ion-icon {
  font-size: 16px;
  color: rgba(30,30,30,0.45);
}

.panel-link-label { flex: 1; }
.panel-link-arrow { font-size: 13px; color: rgba(0,0,0,0.18); }

.panel-actions {
  padding: 14px 14px;
  display: flex;
  flex-direction: column;
  gap: 9px;
  border-top: 1px solid rgba(0,0,0,0.07);
  flex-shrink: 0;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.25s ease 0.26s, transform 0.25s ease 0.26s;
}
.mobile-menu.open .panel-actions {
  opacity: 1;
  transform: translateY(0);
}

.btn-panel-login {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px;
  border-radius: 10px;
  background: rgba(0,0,0,0.03);
  border: 1px solid rgba(0,0,0,0.10);
  color: rgba(30,30,30,0.65);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.15s, color 0.15s;
}
.btn-panel-login ion-icon { font-size: 16px; }
.btn-panel-login:hover {
  background: rgba(0,0,0,0.06);
  color: #151515;
}

.btn-panel-cta {
  padding: 14px;
  border-radius: 10px;
  background: linear-gradient(135deg, #13b6ec, #0ea5d4);
  border: none;
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(19,182,236,0.35);
  transition: transform 0.15s, box-shadow 0.15s;
}
.btn-panel-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 22px rgba(19,182,236,0.5);
}

.panel-trust {
  text-align: center;
  font-size: 11px;
  color: rgba(30,30,30,0.22);
  padding: 10px 14px 18px;
  margin: 0;
  flex-shrink: 0;
}

/* ── Navbar keyframes ─────────────────────────────────────── */
@keyframes bannerIn {
  from { opacity: 0; transform: translateY(-100%); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes shimmerSweep {
  0%        { left: -60%; }
  40%, 100% { left: 120%; }
}
@keyframes dotPulse {
  0%, 100% { box-shadow: 0 0 0 0   rgba(19,182,236,0.55); }
  50%      { box-shadow: 0 0 0 4px rgba(19,182,236,0); }
}
@keyframes pingExpand {
  0%, 100% { transform: scale(1);   opacity: 0.55; }
  50%      { transform: scale(2.2); opacity: 0; }
}
@keyframes ctaSweep {
  0%        { left: -100%; }
  35%, 100% { left: 150%; }
}
@keyframes dropIn {
  from { opacity: 0; transform: translateX(-50%) translateY(-6px); }
  to   { opacity: 1; transform: translateX(-50%) translateY(0); }
}
@keyframes dropInRight {
  from { opacity: 0; transform: translateY(-6px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── Theme toggle ─────────────────────────────────────────── */
.theme-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1.5px solid rgba(0,0,0,0.12);
  background: transparent;
  cursor: pointer;
  color: #444;
  font-size: 17px;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
  flex-shrink: 0;
}
.theme-toggle:hover {
  background: rgba(0,0,0,0.06);
  transform: scale(1.08);
}
.theme-toggle ion-icon,
.theme-toggle .toggle-icon {
  font-size: 17px;
  display: block;
  pointer-events: none;
}

/* ── Mobile actions row (login + theme toggle side by side) ── */
.mobile-actions-row {
  display: flex;
  align-items: center;
  gap: 10px;
}

.mobile-actions-row .btn-panel-login {
  flex: 1;
}

.theme-toggle-mobile {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0.05);
  border: none;
  border-radius: 10px;
  cursor: pointer;
  color: #333;
  font-size: 20px;
  transition: background 0.2s ease;
}
.theme-toggle-mobile ion-icon,
.theme-toggle-mobile .toggle-icon {
  font-size: 20px;
  flex-shrink: 0;
  pointer-events: none;
}
.theme-toggle-mobile:hover {
  background: rgba(0,0,0,0.08);
}

/* ── Dark mode — Navbar ───────────────────────────────────── */
body.dark .landing-nav {
  background: rgba(15,15,15,0.92) !important;
  border-bottom-color: rgba(255,255,255,0.08) !important;
}
body.dark .landing-nav.scrolled {
  box-shadow: 0 2px 20px rgba(0,0,0,0.5) !important;
}
body.dark .nav-banner {
  background: linear-gradient(90deg, #0a2a36 0%, #0d3a4d 50%, #0a2a36 100%) !important;
  border-bottom-color: rgba(19,182,236,0.2) !important;
}
body.dark .nav-logo-text { color: #f0f0f0 !important; }
body.dark .nav-link { color: rgba(240,240,240,0.75) !important; }
body.dark .nav-link:hover,
body.dark .nav-link.active { color: #13b6ec !important; }
body.dark .lang-btn,
body.dark .currency-btn {
  color: rgba(240,240,240,0.75) !important;
  border-color: rgba(255,255,255,0.15) !important;
}
body.dark .lang-btn:hover,
body.dark .currency-btn:hover {
  background: rgba(255,255,255,0.08) !important;
  color: #f0f0f0 !important;
}
body.dark .lang-dropdown,
body.dark .currency-dropdown {
  background: #1a1a1a !important;
  border-color: rgba(255,255,255,0.1) !important;
  box-shadow: 0 8px 32px rgba(0,0,0,0.6) !important;
}
body.dark .lang-option,
body.dark .currency-option { color: rgba(240,240,240,0.85) !important; }
body.dark .lang-option:hover,
body.dark .currency-option:hover { background: rgba(255,255,255,0.08) !important; }
body.dark .login-link { color: rgba(240,240,240,0.75) !important; }
body.dark .login-link:hover { color: #13b6ec !important; }
body.dark .mobile-panel { background: #111 !important; }
body.dark .mobile-nav-link { color: rgba(240,240,240,0.85) !important; }
body.dark .mobile-nav-link:hover {
  background: rgba(255,255,255,0.06) !important;
  color: #13b6ec !important;
}
body.dark .mobile-backdrop { background: rgba(0,0,0,0.7) !important; }
body.dark .hamburger span { background: #f0f0f0; }
body.dark .theme-toggle {
  border-color: rgba(255,255,255,0.2);
  color: rgba(240,240,240,0.85);
}
body.dark .theme-toggle:hover { background: rgba(255,255,255,0.08); }
body.dark .theme-toggle-mobile {
  background: rgba(255,255,255,0.06);
  color: rgba(240,240,240,0.85);
}
body.dark .theme-toggle-mobile:hover { background: rgba(255,255,255,0.1); }
body.dark .scroll-progress-bar { background: rgba(255,255,255,0.06) !important; }

/* ============================================================
   3. HERO (landing-hero.component.scss)
   ============================================================ */
.hero-section {
  background: #fff;
  position: relative;
  overflow: hidden;
  min-height: 88vh;
  display: flex;
  align-items: center;
  padding: 96px 24px 72px;
}
@media (max-width: 768px) { .hero-section { padding: 72px 20px 48px; } }
.hero-section::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: #f0f0f0;
}

/* ── Aurora background ────────────────────────────────────── */
.hero-aurora {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 0;
}
.aurora-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.55;
  will-change: transform;
}
.aurora-blob-1 {
  width: 680px;
  height: 680px;
  top: -18%;
  right: -12%;
  background: radial-gradient(circle at 40% 40%, rgba(19,182,236,0.45), rgba(14,165,212,0.2) 55%, transparent 75%);
  animation: auroraMove1 14s ease-in-out infinite alternate;
}
.aurora-blob-2 {
  width: 520px;
  height: 520px;
  bottom: -10%;
  left: -8%;
  background: radial-gradient(circle at 60% 60%, rgba(124,58,237,0.35), rgba(109,40,217,0.15) 55%, transparent 75%);
  animation: auroraMove2 18s ease-in-out infinite alternate;
}
.aurora-blob-3 {
  width: 380px;
  height: 380px;
  top: 30%;
  left: 35%;
  background: radial-gradient(circle at 50% 50%, rgba(19,182,236,0.18), rgba(124,58,237,0.12) 55%, transparent 75%);
  animation: auroraMove3 22s ease-in-out infinite alternate;
}
@keyframes auroraMove1 {
  from { transform: translate(0, 0) scale(1); }
  to   { transform: translate(-60px, 50px) scale(1.12); }
}
@keyframes auroraMove2 {
  from { transform: translate(0, 0) scale(1); }
  to   { transform: translate(70px, -40px) scale(1.08); }
}
@keyframes auroraMove3 {
  from { transform: translate(0, 0) scale(1); }
  to   { transform: translate(-40px, 60px) scale(1.15); }
}

.hero-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  position: relative;
  z-index: 1;
}
@media (max-width: 768px) {
  .hero-container {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
}

.hero-content {
  animation: fadeInUp 0.7s ease-out both;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: linear-gradient(135deg, #13b6ec, #0ea5d4);
  color: #fff;
  border-radius: 20px;
  padding: 6px 14px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.1px;
  margin-bottom: 28px;
}

.hero-title {
  font-size: clamp(32px, 4.5vw, 52px);
  font-weight: 800;
  color: #151515;
  line-height: 1.12;
  margin: 0 0 24px;
  letter-spacing: -0.5px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
.hero-title span { color: #13b6ec; }
.hero-title-gradient {
  background: linear-gradient(135deg, #13b6ec 0%, #7c3aed 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 18px;
  color: #555;
  line-height: 1.65;
  margin: 0 0 40px;
  max-width: 500px;
}
@media (max-width: 768px) { .hero-subtitle { max-width: 100%; } }

.hero-ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
@media (max-width: 768px) { .hero-ctas { justify-content: center; } }

.btn-hero-primary {
  background: linear-gradient(135deg, #13b6ec, #0ea5d4);
  color: #fff;
  border: none;
  padding: 16px 28px;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 4px 20px rgba(19,182,236,0.4);
  letter-spacing: 0.1px;
}
.btn-hero-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(19,182,236,0.5); }
.btn-hero-primary:focus-visible { outline: 2px solid #0ea5d4; outline-offset: 3px; }

.btn-hero-secondary {
  background: transparent;
  color: #151515;
  border: 2px solid #e0e0e0;
  padding: 16px 28px;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: border-color 0.2s ease, background 0.2s ease;
}
.btn-hero-secondary:hover { border-color: #151515; background: rgba(21,21,21,0.04); }
.btn-hero-secondary:focus-visible { outline: 2px solid #151515; outline-offset: 3px; }

.hero-trust {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  margin: 20px 0 0;
}
.hero-trust span {
  display: flex;
  align-items: center;
  gap: 5px;
  color: #666;
  font-size: 13px;
}
.hero-trust span ion-icon {
  font-size: 15px;
  color: #a3e635;
  flex-shrink: 0;
}
@media (max-width: 768px) { .hero-trust { justify-content: center; } }

.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  animation: fadeIn 0.9s ease-out 0.2s both;
  position: relative;
}

@media (max-width: 768px) {
  .hero-section { min-height: auto; }
  .pulse-ring { display: none; }
  .notif-float { display: none; }
  .phone-wrapper::after { display: none; }
}

.phone-wrapper {
  position: relative;
  display: inline-flex;
  justify-content: center;
  align-items: center;
}
.phone-wrapper::after {
  content: '';
  position: absolute;
  top: -10%;
  left: -20%;
  width: 40%;
  height: 120%;
  background: linear-gradient(105deg, transparent 20%, rgba(255,255,255,0.18) 50%, transparent 80%);
  transform: skewX(-15deg) translateX(-200%);
  animation: phoneSweep 5s ease-in-out 2.5s infinite;
  pointer-events: none;
  z-index: 3;
}

.pulse-ring {
  position: absolute;
  border-radius: 50%;
  border: 1.5px solid rgba(19,182,236,0.55);
  pointer-events: none;
  animation: pulseRing 3.6s ease-out infinite;
}
.pulse-ring.pulse-ring-1 { width: 300px; height: 300px; animation-delay: 0s; }
.pulse-ring.pulse-ring-2 { width: 400px; height: 400px; animation-delay: 1.2s; }
.pulse-ring.pulse-ring-3 { width: 500px; height: 500px; animation-delay: 2.4s; }

.notif-float {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.68);
  backdrop-filter: blur(16px) saturate(180%);
  -webkit-backdrop-filter: blur(16px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.75);
  border-radius: 20px;
  padding: 8px 14px;
  font-size: 12px;
  font-weight: 600;
  color: #151515;
  box-shadow: 0 8px 28px rgba(0,0,0,0.10), 0 0 0 1px rgba(19,182,236,0.14), inset 0 1px 0 rgba(255,255,255,0.9);
  white-space: nowrap;
  pointer-events: none;
  z-index: 4;
}
.notif-float ion-icon {
  color: #13b6ec;
  font-size: 14px;
  flex-shrink: 0;
}
.notif-float.notif-float-1 { top: 18%; right: -18%; animation: floatBadge1 4.2s ease-in-out 1s infinite; }
.notif-float.notif-float-2 { top: 55%; left: -20%; animation: floatBadge2 4.8s ease-in-out 0.4s infinite; }
.notif-float.notif-float-3 { bottom: 14%; right: -14%; animation: floatBadge3 5.2s ease-in-out 1.8s infinite; }

.hero-mockup-img {
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: 760px;
  display: block;
  object-fit: contain;
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 40px 64px rgba(0,0,0,0.28)) drop-shadow(0 16px 32px rgba(19,182,236,0.18)) drop-shadow(0 4px 12px rgba(19,182,236,0.12));
  animation: heroFloat 5s ease-in-out 1s infinite, heroEntrance 0.8s ease-out 0.2s both;
}
@media (max-width: 1024px) { .hero-mockup-img { max-height: 540px; } }
@media (max-width: 480px) { .hero-mockup-img { max-height: 340px; } }

@keyframes heroFloat {
  0%, 100% { transform: translateY(0px) rotate(-0.6deg); }
  25%      { transform: translateY(-8px) rotate(0deg); }
  50%      { transform: translateY(-16px) rotate(0.6deg); }
  75%      { transform: translateY(-6px) rotate(0deg); }
}
@keyframes pulseRing {
  0%   { transform: scale(0.75); opacity: 0.7; }
  100% { transform: scale(1.25); opacity: 0; }
}
@keyframes floatBadge1 {
  0%, 100% { transform: translateY(0px) rotate(-2deg); opacity: 1; }
  50%      { transform: translateY(-10px) rotate(1deg); opacity: 0.95; }
}
@keyframes floatBadge2 {
  0%, 100% { transform: translateY(0px) rotate(1deg); opacity: 1; }
  50%      { transform: translateY(-8px) rotate(-1.5deg); opacity: 0.95; }
}
@keyframes floatBadge3 {
  0%, 100% { transform: translateY(0px) rotate(-1deg); opacity: 1; }
  50%      { transform: translateY(-12px) rotate(2deg); opacity: 0.95; }
}
@keyframes phoneSweep {
  0%        { transform: skewX(-15deg) translateX(-200%); }
  35%, 100% { transform: skewX(-15deg) translateX(500%); }
}
@keyframes heroEntrance {
  from { opacity: 0; transform: translateY(24px) scale(0.97); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}

.phone-mockup {
  width: 280px;
  height: 500px;
  background: linear-gradient(145deg, #1a1a1a, #2d2d2d);
  border-radius: 40px;
  padding: 12px;
  box-shadow: 0 24px 48px rgba(0,0,0,0.2), 0 8px 16px rgba(0,0,0,0.1);
  position: relative;
}
@media (max-width: 768px) {
  .phone-mockup { width: 200px; height: 360px; }
}
.phone-mockup::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 28px;
  background: #1a1a1a;
  border-radius: 0 0 16px 16px;
  z-index: 2;
}

.phone-screen {
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, #0d1f2d 0%, #151515 100%);
  border-radius: 32px;
  padding: 48px 16px 16px;
  overflow: hidden;
  position: relative;
}

.phone-status-bar {
  position: absolute;
  top: 20px;
  left: 28px;
  right: 28px;
  display: flex;
  justify-content: space-between;
  z-index: 3;
}
.phone-time { color: #fff; font-size: 14px; font-weight: 700; }

.phone-notification {
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(10px);
  border-radius: 16px;
  padding: 14px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  animation: slideInNotif 0.6s ease-out both;
}
.phone-notification.second { animation-delay: 0.3s; opacity: 0.92; }

.notif-icon {
  width: 36px; height: 36px;
  border-radius: 10px;
  flex-shrink: 0;
  overflow: hidden;
}
.notif-icon img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 10px;
}

.notif-content { flex: 1; min-width: 0; }
.notif-app-name {
  font-size: 12px; font-weight: 700;
  color: #151515;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  margin-bottom: 4px;
}
.notif-message { font-size: 13px; color: #333; line-height: 1.4; }
.notif-time { font-size: 11px; color: #666; flex-shrink: 0; }

@keyframes slideInNotif {
  from { opacity: 0; transform: translateY(-20px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Dark mode — Hero */
body.dark .hero-section { background: #0a0a0f !important; }
body.dark .hero-title { color: #f0f0f0 !important; }
body.dark .aurora-blob-1 { opacity: 0.45; }
body.dark .aurora-blob-2 { opacity: 0.38; }
body.dark .aurora-blob-3 { opacity: 0.25; }
body.dark .hero-title-gradient {
  background: linear-gradient(135deg, #38d0f5 0%, #a78bfa 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
body.dark .hero-subtitle { color: #a0a0a0 !important; }
body.dark .hero-badge {
  background: rgba(19,182,236,0.12) !important;
  border-color: rgba(19,182,236,0.25) !important;
  color: #13b6ec !important;
}
body.dark .hero-trust span { color: #a0a0a0 !important; }
body.dark .hero-trust span ion-icon { color: #13b6ec !important; }
body.dark .btn-hero-secondary {
  border-color: rgba(255,255,255,0.2) !important;
  color: #f0f0f0 !important;
}
body.dark .btn-hero-secondary:hover { background: rgba(255,255,255,0.06) !important; }
body.dark .phone-notification {
  background: rgba(255,255,255,0.08) !important;
  border-color: rgba(255,255,255,0.1) !important;
}
body.dark .notif-app-name { color: #f0f0f0 !important; }
body.dark .notif-message { color: #a0a0a0 !important; }
body.dark .notif-float {
  background: rgba(25, 25, 35, 0.72) !important;
  backdrop-filter: blur(16px) saturate(180%) !important;
  -webkit-backdrop-filter: blur(16px) saturate(180%) !important;
  border: 1px solid rgba(255,255,255,0.10) !important;
  box-shadow: 0 8px 28px rgba(0,0,0,0.55), 0 0 0 1px rgba(19,182,236,0.18) !important;
  color: #f0f0f0 !important;
}

/* ============================================================
   4. HOW IT WORKS (landing-how-it-works.component.scss)
   ============================================================ */
.hiw-section {
  padding: 96px 24px 112px;
  background:
    radial-gradient(ellipse 55% 40% at 8% 15%, rgba(19,182,236,0.08) 0%, transparent 55%),
    radial-gradient(ellipse 45% 35% at 92% 85%, rgba(19,182,236,0.06) 0%, transparent 55%),
    linear-gradient(180deg, #f0f9ff 0%, #e8f7fd 100%);
}
@media (max-width: 768px) { .hiw-section { padding: 56px 20px 72px; } }

.hiw-container { max-width: 1100px; margin: 0 auto; }

.section-title {
  text-align: center;
  font-size: clamp(24px, 4vw, 36px);
  font-weight: 800;
  color: #151515;
  margin: 0 0 56px;
  letter-spacing: -0.3px;
}
.section-title::after {
  content: '';
  display: block;
  width: 40px;
  height: 3px;
  background: linear-gradient(90deg, #13b6ec, #0ea5d4);
  border-radius: 2px;
  margin: 14px auto 0;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
@media (max-width: 768px) {
  .steps-grid {
    grid-template-columns: 1fr;
    max-width: 380px;
    margin: 0 auto;
    gap: 24px;
  }
}

.step-card {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  height: 420px;
  border: 1.5px solid rgba(255,255,255,0.18);
  box-shadow:
    0 2px 8px rgba(0,0,0,0.10),
    0 8px 32px rgba(0,0,0,0.14);
  transition:
    transform 0.28s cubic-bezier(0.34,1.56,0.64,1),
    box-shadow 0.28s ease,
    border-color 0.28s ease;
  will-change: transform;
}
.step-card:hover {
  transform: translateY(-7px);
  border-color: rgba(19,182,236,0.55);
  box-shadow:
    0 4px 12px rgba(0,0,0,0.12),
    0 20px 52px rgba(0,0,0,0.20),
    0 0 0 4px rgba(19,182,236,0.12);
}

.step-mockup-area {
  position: absolute;
  inset: 0;
  background: #111;
}
.step-mockup-area.area-1,
.step-mockup-area.area-2,
.step-mockup-area.area-3 { background: #111; }
.step-mockup-area::before { display: none; }

.step-mockup-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  z-index: 1;
}

/* overlay gradiente — legibilidad del texto */
.step-mockup-area::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0)    0%,
    rgba(0,0,0,0)    35%,
    rgba(0,0,0,0.55) 70%,
    rgba(0,0,0,0.82) 100%
  );
  z-index: 2;
  pointer-events: none;
}

@media (max-width: 768px) {
  .step-card { height: 360px; }
}

.phone-frame {
  width: 148px;
  height: 262px;
  background: #111;
  border-radius: 28px;
  padding: 14px 6px 6px;
  position: relative;
  box-shadow: 0 12px 40px rgba(0,0,0,0.45), inset 0 1px 0 rgba(255,255,255,0.12), inset 0 -1px 0 rgba(255,255,255,0.04);
  flex-shrink: 0;
}
.phone-frame::before {
  content: '';
  position: absolute;
  left: -3px;
  top: 72px;
  width: 3px;
  height: 40px;
  background: #1e1e1e;
  border-radius: 2px 0 0 2px;
  box-shadow: 0 -24px 0 #1e1e1e, 0 24px 0 #1e1e1e;
}
.phone-frame::after {
  content: '';
  position: absolute;
  right: -3px;
  top: 88px;
  width: 3px;
  height: 56px;
  background: #1e1e1e;
  border-radius: 0 2px 2px 0;
}

.phone-island {
  position: absolute;
  top: 9px;
  left: 50%;
  transform: translateX(-50%);
  width: 44px;
  height: 10px;
  background: #000;
  border-radius: 5px;
  z-index: 10;
}

/* phone-screen already defined in hero, HIW overrides for phone-frame context */
.phone-frame .phone-screen {
  background: #fff;
  border-radius: 20px;
  height: 100%;
  overflow: hidden;
  position: relative;
  padding: 0;
}

.screen-dark { background: #1c1c2e; }
.screen-lock { background: linear-gradient(180deg, #1a103a 0%, #0f0a24 100%); }

.step-body {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px 22px 26px;
  text-align: left;
  z-index: 3;
  background: none;
}

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  background: rgba(19,182,236,0.90);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: #fff;
  border-radius: 50%;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.01em;
  box-shadow:
    0 2px 10px rgba(19,182,236,0.5),
    inset 0 1px 0 rgba(255,255,255,0.3);
  margin: 0 0 10px;
  position: relative;
}
/* outer ring — pulsing aura */
@keyframes badgeAura {
  0%, 100% { opacity: 0.22; transform: scale(1); }
  50%       { opacity: 0.50; transform: scale(1.22); }
}
.step-number::before {
  content: '';
  position: absolute;
  inset: -5px;
  border-radius: 50%;
  border: 1.5px solid rgba(19,182,236,0.28);
  pointer-events: none;
  animation: badgeAura 2.8s ease-in-out infinite;
}

.step-icon {
  margin: 0 auto 12px;
  width: 48px; height: 48px;
  border-radius: 50%;
  background: rgba(19,182,236,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
}
.step-icon ion-icon { font-size: 22px; color: #13b6ec; }

.step-title {
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  margin: 0 0 6px;
  line-height: 1.3;
  letter-spacing: -0.2px;
}
.step-text {
  font-size: 13px;
  color: rgba(255,255,255,0.72);
  line-height: 1.65;
  margin: 0;
}

/* ── HIW Mockup 1: Wallet screen ──────────────────────────── */
.mock-wallet-screen {
  display: flex;
  flex-direction: column;
  height: 100%;
  background: #f2f2f7;
  padding-top: 18px;
}
.mock-topbar {
  display: flex;
  align-items: center;
  padding: 0 12px 8px;
  gap: 6px;
}
.mock-topbar .mock-topbar-back { color: #13b6ec; font-size: 18px; font-weight: 300; line-height: 1; }
.mock-topbar .mock-topbar-title { font-size: 10px; font-weight: 700; color: #151515; letter-spacing: -0.2px; }

.mock-wallet-card {
  margin: 0 10px;
  background: linear-gradient(135deg, #13b6ec 0%, #0ea5d4 100%);
  border-radius: 14px;
  padding: 12px 12px 10px;
  box-shadow: 0 6px 20px rgba(19,182,236,0.35);
  flex-shrink: 0;
}
.mock-wc-header { display: flex; align-items: center; gap: 5px; margin-bottom: 10px; }
.mock-wc-header .mock-wc-dot { width: 14px; height: 14px; border-radius: 50%; background: rgba(255,255,255,0.9); flex-shrink: 0; }
.mock-wc-header .mock-wc-name { font-size: 8px; font-weight: 700; color: #fff; flex: 1; letter-spacing: 0.2px; }
.mock-wc-header .mock-wc-type { font-size: 7px; font-weight: 600; color: rgba(255,255,255,0.7); background: rgba(255,255,255,0.15); padding: 2px 5px; border-radius: 4px; }

.mock-wc-qr {
  background: #fff;
  border-radius: 8px;
  padding: 8px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}
.qr-corner {
  position: absolute;
  width: 10px; height: 10px;
  border-color: #151515;
  border-style: solid;
}
.qr-corner.qr-tl { top: 4px; left: 4px; border-width: 2px 0 0 2px; border-radius: 1px 0 0 0; }
.qr-corner.qr-tr { top: 4px; right: 4px; border-width: 2px 2px 0 0; border-radius: 0 1px 0 0; }
.qr-corner.qr-bl { bottom: 4px; left: 4px; border-width: 0 0 2px 2px; border-radius: 0 0 0 1px; }
.qr-corner.qr-br { bottom: 4px; right: 4px; border-width: 0 2px 2px 0; border-radius: 0 0 1px 0; }

.qr-dots { display: grid; grid-template-columns: repeat(3, 8px); gap: 2px; }
.qd { width: 8px; height: 8px; border-radius: 1.5px; background: #e8e8e8; }
.qd.qd-on { background: #151515; }

.mock-wc-pts { font-size: 7.5px; font-weight: 700; color: rgba(255,255,255,0.9); text-align: center; margin-top: 8px; }

.mock-add-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  margin: 10px 10px 0;
  background: #000;
  color: #fff;
  border-radius: 10px;
  font-size: 8px;
  font-weight: 700;
  padding: 8px 12px;
  letter-spacing: 0.2px;
}

/* ── HIW Mockup 2: Admin panel ────────────────────────────── */
.mock-panel {
  padding: 18px 10px 12px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  height: 100%;
  box-sizing: border-box;
}
.mock-panel-header { display: flex; align-items: center; gap: 6px; }
.mock-panel-logo {
  width: 20px; height: 20px;
  border-radius: 6px;
  background: linear-gradient(135deg, #13b6ec, #0ea5d4);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 9px;
  font-weight: 900;
  color: #fff;
  flex-shrink: 0;
}
.mock-panel-title { font-size: 10px; font-weight: 700; color: rgba(255,255,255,0.9); flex: 1; }
.mock-panel-badge { background: #13b6ec; color: #fff; border-radius: 8px; font-size: 7px; font-weight: 800; padding: 2px 6px; }
.mock-panel-label { font-size: 8px; font-weight: 600; color: rgba(255,255,255,0.4); letter-spacing: 0.3px; text-transform: uppercase; }

.mock-compose {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px;
  padding: 10px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 6px;
  justify-content: center;
}
.mc-line { height: 6px; border-radius: 3px; background: rgba(255,255,255,0.18); }
.mc-line.mc-full { width: 100%; }
.mc-line.mc-med { width: 75%; }
.mc-line.mc-short { width: 45%; }
.mc-cursor {
  width: 1.5px; height: 10px;
  background: #13b6ec;
  border-radius: 1px;
  animation: cursorBlink 1.1s step-end infinite;
}
@keyframes cursorBlink {
  0%, 100% { opacity: 1; }
  50%      { opacity: 0; }
}

.mock-send-row { display: flex; align-items: center; justify-content: space-between; gap: 6px; }
.mock-send-info { font-size: 7px; color: rgba(255,255,255,0.4); }
.mock-send-info .mock-send-count { font-weight: 700; color: #13b6ec; }
.mock-send-btn {
  background: linear-gradient(135deg, #13b6ec, #0ea5d4);
  color: #fff;
  border-radius: 8px;
  font-size: 8px;
  font-weight: 700;
  padding: 6px 10px;
  box-shadow: 0 4px 12px rgba(19,182,236,0.4);
}

/* ── HIW Mockup 3: Lock screen ────────────────────────────── */
.mock-lock {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 18px 8px 0;
}
.mock-lock-time { font-size: 36px; font-weight: 200; color: #fff; letter-spacing: -1px; line-height: 1; }
.mock-lock-date { font-size: 8px; color: rgba(255,255,255,0.55); margin-top: 4px; margin-bottom: 16px; text-align: center; }

.mock-notif {
  width: 100%;
  background: rgba(255,255,255,0.14);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 14px;
  padding: 10px;
  display: flex;
  gap: 8px;
  align-items: flex-start;
}
.mock-notif-icon {
  width: 24px; height: 24px;
  border-radius: 7px;
  background: linear-gradient(135deg, #13b6ec, #0ea5d4);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(19,182,236,0.4);
}
.mock-notif-icon .mock-notif-icon-inner { font-size: 9px; font-weight: 900; color: #fff; }
.mock-notif-body { flex: 1; min-width: 0; }
.mock-notif-app { font-size: 7px; color: rgba(255,255,255,0.55); margin-bottom: 3px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.mock-notif-msg { font-size: 8.5px; font-weight: 600; color: #fff; line-height: 1.4; }

.step-real-img {
  width: auto;
  max-width: 148px;
  height: 262px;
  border-radius: 24px;
  display: block;
  object-fit: cover;
  object-position: top;
  box-shadow: 0 12px 40px rgba(0,0,0,0.45), inset 0 1px 0 rgba(255,255,255,0.12);
}

/* Dark mode — HIW */
body.dark .hiw-section { background: #111 !important; }
/* Dark mode — overlay card oscura por naturaleza, ajustes mínimos */
body.dark .step-card {
  border-color: rgba(255,255,255,0.12) !important;
  box-shadow:
    0 2px 8px rgba(0,0,0,0.3),
    0 8px 32px rgba(0,0,0,0.4) !important;
}
body.dark .step-card:hover {
  border-color: rgba(19,182,236,0.5) !important;
  box-shadow:
    0 4px 12px rgba(0,0,0,0.4),
    0 20px 52px rgba(0,0,0,0.5),
    0 0 0 4px rgba(19,182,236,0.10) !important;
}

/* ============================================================
   5. BUSINESS TYPES (landing-business-types.component.scss)
   ============================================================ */
.bt-section {
  padding: 96px 24px;
  background: linear-gradient(180deg, #f8fbff 0%, #f0f7ff 50%, #f8fbff 100%);
  position: relative;
  overflow: hidden;
}
.bt-section::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -15%;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(19,182,236,0.07) 0%, transparent 70%);
  pointer-events: none;
}
.bt-section::after {
  content: '';
  position: absolute;
  bottom: -15%;
  left: -10%;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(19,182,236,0.05) 0%, transparent 70%);
  pointer-events: none;
}
@media (max-width: 768px) { .bt-section { padding: 56px 20px; } }

.bt-container { max-width: 1100px; margin: 0 auto; }

.bt-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.bt-grid--5 { grid-template-columns: repeat(3, 1fr); }
@media (max-width: 1024px) { .bt-grid--5 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 768px) { .bt-grid, .bt-grid--5 { grid-template-columns: 1fr; } }

.bt-card {
  background: #fff;
  border-radius: 20px;
  padding: 28px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06), 0 1px 2px rgba(0,0,0,0.04);
  border: 1px solid #f0f0f0;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  display: flex;
  flex-direction: column;
}
.bt-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.1), 0 4px 8px rgba(0,0,0,0.06);
  border-color: #e8e8e8;
}

.bt-badge {
  display: inline-block;
  width: fit-content;
  padding: 4px 12px;
  border-radius: 8px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 14px;
}

.bt-title { font-size: 17px; font-weight: 700; color: #151515; margin: 0 0 10px; letter-spacing: -0.1px; }
.bt-text { font-size: 14px; color: #666; line-height: 1.65; margin: 0 0 20px; }

.notification-mockup {
  background: #f2f2f7;
  border-radius: 16px;
  padding: 14px 16px;
  border: 1px solid rgba(0,0,0,0.06);
  box-shadow: 0 1px 4px rgba(0,0,0,0.08), 0 4px 12px rgba(0,0,0,0.04);
  transition: box-shadow 0.2s ease;
  margin-top: auto;
  min-height: 136px;
}
.bt-card:hover .notification-mockup { box-shadow: 0 2px 8px rgba(0,0,0,0.12), 0 6px 16px rgba(0,0,0,0.06); }

.notif-header { display: flex; align-items: center; gap: 10px; margin-bottom: 9px; }
.notif-app-icon { width: 38px; height: 38px; border-radius: 10px; flex-shrink: 0; overflow: hidden; }
.notif-app-icon img { width: 100%; height: 100%; object-fit: cover; display: block; }
.notif-meta { display: flex; justify-content: space-between; flex: 1; }
.notif-app { font-size: 11px; font-weight: 700; color: #151515; letter-spacing: 0.6px; }
.notif-text { font-size: 14px; color: #1a1a1a; margin: 0; line-height: 1.4; font-weight: 500; }

/* Dark mode — Notification types */
body.dark .bt-section { background: #0f0f0f !important; }
body.dark .bt-section::before,
body.dark .bt-section::after { opacity: 0; }
body.dark .bt-card {
  background: #1a1a1a !important;
  border-color: rgba(255,255,255,0.08) !important;
  box-shadow: 0 2px 12px rgba(0,0,0,0.4) !important;
}
body.dark .bt-card:hover {
  box-shadow: 0 6px 24px rgba(0,0,0,0.6) !important;
  border-color: rgba(255,255,255,0.14) !important;
}
body.dark .bt-badge { opacity: 0.9; }
body.dark .bt-title { color: #f0f0f0 !important; }
body.dark .bt-text { color: #a0a0a0 !important; }
body.dark .notification-mockup {
  background: #2c2c2e !important;
  border-color: rgba(255,255,255,0.06) !important;
  box-shadow: none !important;
}
body.dark .notif-app { color: rgba(240,240,240,0.85) !important; }
body.dark .notif-time { color: rgba(240,240,240,0.35) !important; }
body.dark .notif-text { color: rgba(240,240,240,0.6) !important; }

/* ============================================================
   6. CLIENTS CAROUSEL
   ============================================================ */
.clients-section {
  padding: 40px 0;
  background: #fafaf9;
  border-top: 1px solid #eeebe7;
  border-bottom: 1px solid #eeebe7;
  overflow: hidden;
}

.clients-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.clients-label {
  color: #999;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.9px;
  margin: 0;
  text-align: center;
  padding: 0 24px;
}

.clients-track-wrap {
  width: 100%;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to right, transparent, #000 10%, #000 90%, transparent);
  mask-image: linear-gradient(to right, transparent, #000 10%, #000 90%, transparent);
}

.clients-track {
  display: flex;
  align-items: center;
  gap: 16px;
  animation: clients-scroll 30s linear infinite;
  width: max-content;
  padding: 4px 0;
}

/* hover-pause y @keyframes clients-scroll los inyecta main.js dinámicamente
   para que la distancia sea exacta en px independientemente del viewport */

.client-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 18px;
  border-radius: 12px;
  border: 1px solid #ebebeb;
  background: #fff;
  white-space: nowrap;
  transition: border-color 0.2s, box-shadow 0.2s;
  cursor: default;
  user-select: none;
  flex-shrink: 0;
}
.client-item:hover {
  border-color: #d0d0d0;
  box-shadow: 0 2px 10px rgba(0,0,0,0.07);
}

.client-logo-wrap {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  overflow: hidden;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.client-logo-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.client-logo-fallback {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.3px;
  flex-shrink: 0;
}
.client-logo-fallback.c1 { background: rgba(255,107,53,0.12); color: #e8500a; }
.client-logo-fallback.c2 { background: rgba(19,182,236,0.12); color: #0a8fc2; }
.client-logo-fallback.c3 { background: rgba(160,92,255,0.12); color: #8b45e8; }
.client-logo-fallback.c4 { background: rgba(245,158,11,0.12); color: #d97706; }
.client-logo-fallback.c5 { background: rgba(20,184,166,0.12); color: #0d9488; }
.client-logo-fallback.c6 { background: rgba(236,72,153,0.12); color: #db2777; }

.client-name {
  font-size: 14px;
  font-weight: 600;
  color: #333;
}

/* Dark mode — Clients carousel */
body.dark .clients-section {
  background: #111 !important;
  border-color: rgba(255,255,255,0.06) !important;
}
body.dark .clients-label { color: #606060 !important; }
body.dark .client-item {
  background: #1a1a1a !important;
  border-color: rgba(255,255,255,0.08) !important;
}
body.dark .client-item:hover {
  border-color: rgba(19,182,236,0.3) !important;
  box-shadow: 0 2px 12px rgba(0,0,0,0.4) !important;
}
body.dark .client-name { color: #e0e0e0 !important; }

/* ============================================================
   7. COMPARISON (landing-comparison.component.scss)
   ============================================================ */
.comp-section {
  padding: 96px 24px;
  background: #fafaf9;
}
@media (max-width: 768px) { .comp-section { padding: 56px 20px; } }

.comp-container { max-width: 1000px; margin: 0 auto; }

.comp-intro {
  text-align: center;
  color: #666;
  font-size: 17px;
  margin: 0 0 48px;
  line-height: 1.55;
}

.comp-table-wrapper {
  overflow-x: auto;
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06), 0 1px 2px rgba(0,0,0,0.04);
  border: 1px solid #f0f0f0;
  -webkit-overflow-scrolling: touch;
}

.comp-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
  min-width: 0;
}
.comp-table thead tr { border-bottom: 2px solid #f0f0f0; }
.comp-table th {
  padding: 18px 16px;
  text-align: center;
  font-weight: 700;
  font-size: 13px;
}
.comp-table th.col-criteria {
  text-align: left;
  color: #aaa;
  font-weight: 500;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  min-width: 160px;
}
.comp-table th.col-other {
  color: #666;
  background: #fafafa;
  font-size: 13px;
  font-weight: 600;
}
.comp-table th.col-elune {
  background: linear-gradient(135deg, rgba(19,182,236,0.10), rgba(14,165,212,0.05));
  color: #0c8ab5;
  font-size: 14px;
}
.comp-table td {
  padding: 14px 16px;
  border-bottom: 1px solid #f5f5f5;
  vertical-align: middle;
  line-height: 1.45;
}
.comp-table tr:last-child td { border-bottom: none; }
.comp-table tr:hover td { background: rgba(0,0,0,0.01); }

.th-icon { display: block; font-size: 18px; margin-bottom: 4px; }
.elune-tag {
  display: inline-block;
  background: linear-gradient(135deg, #13b6ec, #0ea5d4);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  padding: 2px 7px;
  border-radius: 10px;
  margin-left: 4px;
  vertical-align: middle;
  letter-spacing: 0.3px;
}

.criteria-cell { font-weight: 600; color: #151515; font-size: 13px; }
.comp-cell { text-align: center; color: #777; font-size: 13px; }

.cell-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px; height: 20px;
  border-radius: 50%;
  font-size: 11px;
  font-weight: 900;
  margin-right: 5px;
  vertical-align: middle;
  flex-shrink: 0;
}
.cell-bad .cell-icon { background: rgba(255,59,48,0.10); color: #ff3b30; }
.cell-mid { color: #888; }
.cell-mid .cell-icon { background: rgba(255,159,10,0.12); color: #f59e0b; }
.cell-good { color: #1a6e41; }
.cell-good .cell-icon { background: rgba(52,199,89,0.12); color: #34c759; }

.elune-cell {
  background: rgba(19,182,236,0.035);
  color: #0c7a9e;
  font-weight: 600;
  font-size: 13px;
  text-align: center;
}
.icon-check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px; height: 20px;
  background: rgba(52,199,89,0.12);
  border-radius: 50%;
  color: #34c759;
  font-weight: 900;
  font-size: 11px;
  margin-right: 5px;
  vertical-align: middle;
  flex-shrink: 0;
}

.comp-footnote { color: #bbb; font-size: 11px; margin: 14px 0 0; padding-left: 4px; line-height: 1.5; }

.comp-closing {
  margin-top: 28px;
  padding: 22px 32px;
  background: linear-gradient(135deg, #151515 0%, #1a2a32 100%);
  border-radius: 16px;
  text-align: center;
  border: 1px solid rgba(19,182,236,0.15);
  position: relative;
  overflow: hidden;
}
@media (max-width: 480px) { .comp-closing { padding: 18px 20px; } }
.comp-closing::before {
  content: '';
  position: absolute;
  top: -40px; right: -40px;
  width: 180px; height: 180px;
  background: radial-gradient(circle, rgba(19,182,236,0.12) 0%, transparent 70%);
  pointer-events: none;
}
.comp-closing p {
  font-size: 17px;
  font-weight: 600;
  color: #fff;
  margin: 0;
  line-height: 1.5;
  position: relative;
  z-index: 1;
}

.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

@media (max-width: 600px) {
  .comp-table { font-size: 12px; }
  .comp-table th,
  .comp-table td { padding: 11px 8px; }
  .th-icon { font-size: 15px; }
  .criteria-cell { font-size: 11px; min-width: 90px; max-width: 100px; }
  .comp-cell,
  .elune-cell { font-size: 11px; }
  .cell-icon,
  .icon-check { width: 16px; height: 16px; font-size: 9px; margin-right: 3px; }
}

/* Dark mode — Comparison */
body.dark .comp-section { background: #0f0f0f !important; }
body.dark .comp-intro { color: #a0a0a0 !important; }
body.dark .comp-table-wrapper {
  background: #1a1a1a !important;
  border-color: rgba(255,255,255,0.08) !important;
  box-shadow: 0 4px 24px rgba(0,0,0,0.5) !important;
}
body.dark .comp-table thead tr { border-color: rgba(255,255,255,0.06) !important; }
body.dark .comp-table th,
body.dark .comp-table td { border-color: rgba(255,255,255,0.06) !important; color: #f0f0f0 !important; }
body.dark .comp-table th.col-other { background: #242424 !important; color: #a0a0a0 !important; }
body.dark .comp-table th.col-elune { background: linear-gradient(135deg, #0d3a4d 0%, #0a2a36 100%) !important; color: #13b6ec !important; }
body.dark .comp-table td.elune-cell { background: rgba(19,182,236,0.05) !important; color: #13b6ec !important; }
body.dark .comp-table tr:nth-child(even) td { background: rgba(255,255,255,0.02) !important; }
body.dark .comp-table tr:hover td { background: rgba(255,255,255,0.04) !important; }
body.dark .criteria-cell { color: #a0a0a0 !important; }
body.dark .comp-cell { color: #a0a0a0 !important; }
body.dark .comp-footnote { color: #666 !important; }
body.dark .comp-closing {
  background: linear-gradient(135deg, #0a1a24 0%, #0d2030 100%) !important;
  border-color: rgba(19,182,236,0.2) !important;
}
body.dark .comp-closing p { color: #f0f0f0 !important; }

/* ============================================================
   8. LOYALTY (landing-loyalty.component.scss)
   ============================================================ */
.loyalty-section {
  padding: 96px 24px;
  background: linear-gradient(180deg, #f0fdf4 0%, #fff 100%);
}
@media (max-width: 768px) { .loyalty-section { padding: 56px 20px; } }

.loyalty-container { max-width: 1000px; margin: 0 auto; text-align: center; }

.loyalty-subtitle {
  font-size: 18px;
  color: #666;
  margin: 0 0 56px;
  line-height: 1.6;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  text-align: left;
}
@media (max-width: 768px) { .features-grid { grid-template-columns: 1fr; } }

.feature-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: #fff;
  border-radius: 20px;
  padding: 24px;
  border: 1px solid #f0f0f0;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.feature-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 28px rgba(0,0,0,0.09);
  border-color: #e8e8e8;
}

.feature-icon {
  flex-shrink: 0;
  width: 48px; height: 48px;
  background: rgba(19,182,236,0.1);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: none;
}
.feature-icon ion-icon { font-size: 22px; color: #13b6ec; }

.feature-content h3 {
  font-size: 15px; font-weight: 700;
  color: #151515;
  margin: 0 0 8px;
  letter-spacing: -0.1px;
}
.feature-content p {
  font-size: 14px;
  color: #666;
  line-height: 1.65;
  margin: 0;
}

/* Dark mode — Loyalty */
body.dark .loyalty-section { background: #111 !important; }
body.dark .loyalty-subtitle { color: #a0a0a0 !important; }
body.dark .feature-item {
  background: #1a1a1a !important;
  border-color: rgba(255,255,255,0.08) !important;
  box-shadow: 0 2px 12px rgba(0,0,0,0.4) !important;
}
body.dark .feature-item:hover {
  box-shadow: 0 6px 24px rgba(0,0,0,0.6) !important;
  border-color: rgba(255,255,255,0.14) !important;
}
body.dark .feature-content h3 { color: #f0f0f0 !important; }
body.dark .feature-content p { color: #a0a0a0 !important; }
body.dark .feature-icon { background: rgba(19,182,236,0.12) !important; }

/* ============================================================
   9. PRICING (landing-pricing.component.scss)
   ============================================================ */
.pricing-section {
  padding: 96px 24px;
  background: #fafaf9;
}
@media (max-width: 768px) { .pricing-section { padding: 56px 20px; } }

.pricing-container { max-width: 900px; margin: 0 auto; }

.pricing-section .section-title {
  margin-bottom: 16px;
}
.pricing-subtitle {
  text-align: center;
  color: #666;
  font-size: 18px;
  margin: 0 0 32px;
}
@media (max-width: 768px) { .pricing-subtitle { font-size: 16px; } }

.pricing-launch-banner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: linear-gradient(135deg, rgba(19,182,236,0.08), rgba(14,165,212,0.05));
  border: 1px solid rgba(19,182,236,0.2);
  border-radius: 10px;
  padding: 10px 20px;
  font-size: 13px;
  font-weight: 600;
  color: #0c7a9e;
  margin-bottom: 36px;
  text-align: center;
}

.launch-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #13b6ec;
  flex-shrink: 0;
  animation: pulseDot 2s ease-in-out infinite;
}
@keyframes pulseDot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%      { opacity: 0.5; transform: scale(0.8); }
}

.pricing-table-wrapper {
  background: #fff;
  border-radius: 20px;
  border: 1px solid #f0f0f0;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  overflow: hidden;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.pricing-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
  min-width: 560px;
}
.pricing-table thead tr { border-bottom: 2px solid #f0f0f0; }
.pricing-table th {
  padding: 16px 20px;
  text-align: left;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.7px;
  color: #aaa;
}
.pricing-table th.col-notifs,
.pricing-table th.col-points,
.pricing-table th.col-price { text-align: center; }
.pricing-table tbody tr {
  border-bottom: 1px solid #f5f5f5;
  transition: background 0.15s;
}
.pricing-table tbody tr:last-child { border-bottom: none; }
.pricing-table tbody tr:hover { background: rgba(0,0,0,0.012); }
.pricing-table td { padding: 18px 20px; vertical-align: middle; }

.featured-row {
  background: rgba(19,182,236,0.03) !important;
  border-top: 1px solid rgba(19,182,236,0.15) !important;
  border-bottom: 1px solid rgba(19,182,236,0.15) !important;
}
.featured-row:hover { background: rgba(19,182,236,0.05) !important; }
.trial-row { background: rgba(163,230,53,0.03) !important; }

.plan-name-cell {
  display: flex;
  align-items: center;
  gap: 8px;
  min-width: 130px;
  white-space: nowrap;
}
.plan-name { font-weight: 700; color: #151515; font-size: 15px; }
.plan-badge-pill {
  background: linear-gradient(135deg, #13b6ec, #0ea5d4);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 20px;
  white-space: nowrap;
  letter-spacing: 0.2px;
  box-shadow: 0 2px 8px rgba(19,182,236,0.3);
  flex-shrink: 0;
}

.plan-price-cell { text-align: center; min-width: 90px; }
.price-row { display: inline-flex; align-items: baseline; gap: 6px; }
.old-price { color: #bbb; font-size: 12px; text-decoration: line-through; }
.current-price { font-size: 16px; font-weight: 800; color: #151515; letter-spacing: -0.3px; line-height: 1; }
.featured-row .current-price { color: #13b6ec; }
.trial-row .current-price { color: #4d7c0f; }

.plan-recipients-cell { text-align: center; font-weight: 600; color: #151515; font-size: 14px; }
.plan-points-cell { text-align: center; }

.pricing-section .icon-check {
  width: 24px; height: 24px;
  font-size: 12px;
}
.icon-cross {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px; height: 24px;
  background: rgba(0,0,0,0.05);
  color: #ccc;
  border-radius: 50%;
  font-size: 12px;
  font-weight: 900;
}

.plan-extra-cell { text-align: center; font-size: 13px; color: #555; }
.no-extra { color: #ddd; }

.pricing-cta-wrapper { text-align: center; margin: 32px 0 8px; }

.btn-pricing-main {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #13b6ec, #0ea5d4);
  color: #fff;
  border: none;
  padding: 14px 32px;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(19,182,236,0.35);
  transition: transform 0.15s, box-shadow 0.15s;
  text-decoration: none;
}
.btn-pricing-main:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(19,182,236,0.45);
}

.pricing-note { text-align: center; color: #666; font-size: 14px; margin: 24px 0 8px; }
.pricing-note-custom { text-align: center; color: #999; font-size: 13px; margin: 0; }
.pricing-note-link {
  color: #13b6ec;
  font-weight: 600;
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.pricing-note-link:hover { color: #0ea5d4; }

@media (max-width: 600px) {
  .pricing-table th,
  .pricing-table td { padding: 12px 8px; text-align: center; }
  .pricing-table td:first-child { text-align: left; }
  .plan-name { font-size: 13px; }
  .plan-name-cell { min-width: auto; }
  .current-price { font-size: 15px; }
  .old-price { font-size: 11px; }
  .plan-recipients-cell { font-size: 13px; }
  .plan-extra-cell { font-size: 12px; }
  .plan-price-cell { min-width: auto; }
  .price-row { justify-content: center; }
}

/* ── Pricing: desktop table / mobile cards toggle ── */
.pricing-mobile { display: none; }
@media (max-width: 768px) {
  .pricing-desktop { display: none !important; }
  .pricing-mobile { display: flex; flex-direction: column; gap: 14px; }
}

/* ── Mobile plan cards ── */
.plan-card {
  background: #fff;
  border: 1px solid #f0f0f0;
  border-radius: 16px;
  padding: 20px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  position: relative;
}
.plan-card--featured {
  border-color: rgba(19,182,236,0.35);
  box-shadow: 0 2px 12px rgba(19,182,236,0.12);
}
.plan-card-badge {
  position: absolute;
  top: -10px;
  right: 16px;
  background: linear-gradient(135deg, #13b6ec, #0ea5d4);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 20px;
  letter-spacing: 0.2px;
  box-shadow: 0 2px 8px rgba(19,182,236,0.3);
}
.plan-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}
.plan-card-name {
  font-size: 18px;
  font-weight: 800;
  color: #151515;
  letter-spacing: -0.3px;
}
.plan-card--featured .plan-card-name { color: #13b6ec; }
.plan-card--trial .plan-card-name { color: #4d7c0f; }
.plan-card-price-wrap { display: flex; align-items: baseline; gap: 8px; }
.plan-card-price {
  font-size: 22px;
  font-weight: 800;
  color: #151515;
  letter-spacing: -0.5px;
}
.plan-card-price small { font-size: 13px; font-weight: 500; color: #888; }
.plan-card--featured .plan-card-price { color: #13b6ec; }
.plan-card--trial .plan-card-price { color: #4d7c0f; font-size: 18px; }
.plan-card-old { color: #bbb; font-size: 13px; text-decoration: line-through; }
.plan-card-details {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.plan-card-details li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: #444;
  font-weight: 500;
}
.plan-card-details li ion-icon { font-size: 16px; color: #13b6ec; flex-shrink: 0; }
.plan-card-disabled { opacity: 0.4; }
.plan-card-disabled ion-icon { color: #999 !important; }

/* Dark mode — Mobile plan cards */
body.dark .plan-card {
  background: #1a1a1a !important;
  border-color: rgba(255,255,255,0.08) !important;
}
body.dark .plan-card--featured {
  border-color: rgba(19,182,236,0.3) !important;
}
body.dark .plan-card-name { color: #f0f0f0 !important; }
body.dark .plan-card--featured .plan-card-name { color: #13b6ec !important; }
body.dark .plan-card--trial .plan-card-name { color: #a3e635 !important; }
body.dark .plan-card-price { color: #f0f0f0 !important; }
body.dark .plan-card-price small { color: #666 !important; }
body.dark .plan-card--featured .plan-card-price { color: #13b6ec !important; }
body.dark .plan-card--trial .plan-card-price { color: #a3e635 !important; }
body.dark .plan-card-old { color: #555 !important; }
body.dark .plan-card-details li { color: #a0a0a0 !important; }

/* Dark mode — Pricing */
body.dark .pricing-section { background: #0f0f0f !important; }
body.dark .pricing-subtitle { color: #a0a0a0 !important; }
body.dark .pricing-table-wrapper {
  background: #1a1a1a !important;
  border-color: rgba(255,255,255,0.08) !important;
  box-shadow: 0 4px 24px rgba(0,0,0,0.5) !important;
  overflow: hidden;
}
body.dark .pricing-table thead tr { border-bottom-color: rgba(255,255,255,0.08) !important; }
body.dark .pricing-table th {
  background: #242424 !important;
  color: #f0f0f0 !important;
  border-color: rgba(255,255,255,0.08) !important;
}
body.dark .pricing-table td {
  color: #a0a0a0 !important;
  border-color: rgba(255,255,255,0.06) !important;
}
body.dark .pricing-table tbody tr { border-bottom-color: rgba(255,255,255,0.06) !important; }
body.dark .featured-row {
  background: rgba(19,182,236,0.06) !important;
  border-top-color: rgba(19,182,236,0.25) !important;
  border-bottom-color: rgba(19,182,236,0.25) !important;
}
body.dark .featured-row td { color: #f0f0f0 !important; }
body.dark .featured-row:hover { background: rgba(19,182,236,0.09) !important; }
body.dark .trial-row { background: rgba(255,255,255,0.02) !important; }
body.dark .plan-name { color: #f0f0f0 !important; }
body.dark .current-price { color: #f0f0f0 !important; }
body.dark .featured-row .current-price { color: #13b6ec !important; }
body.dark .old-price { color: #555 !important; }
body.dark .plan-recipients-cell { color: #f0f0f0 !important; }
body.dark .plan-extra-cell { color: #a0a0a0 !important; }
body.dark .pricing-launch-banner {
  background: linear-gradient(90deg, #0a2a36, #0d3a4d, #0a2a36) !important;
  border-color: rgba(19,182,236,0.2) !important;
  color: #f0f0f0 !important;
}
body.dark .pricing-note { color: #a0a0a0 !important; }
body.dark .pricing-note-custom { color: #555 !important; }

/* ============================================================
   10. FAQ (landing-faq.component.scss)
   ============================================================ */
.faq-section {
  padding: 96px 24px;
  background: #fff;
}
@media (max-width: 768px) { .faq-section { padding: 56px 20px; } }

.faq-container { max-width: 760px; margin: 0 auto; }

/* ── FAQ accordion (vanilla JS) ───────────────────────────── */
.faq-list { display: flex; flex-direction: column; gap: 10px; }
.faq-item {
  background: #fff;
  border-radius: 14px;
  border: 1px solid #f0f0f0;
  overflow: hidden;
  box-shadow: 0 1px 4px rgba(0,0,0,0.04);
  transition: box-shadow 0.2s ease, border-color 0.2s ease;
}
.faq-item.open {
  border-color: rgba(19,182,236,0.3);
  box-shadow: 0 4px 16px rgba(0,0,0,0.07);
}
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 18px 20px;
  background: #fff;
  border: none;
  cursor: pointer;
  font-size: 15px;
  font-weight: 600;
  color: #151515;
  text-align: left;
  line-height: 1.5;
  transition: background 0.15s;
}
.faq-question:hover { background: #fafafa; }
.faq-chevron {
  font-size: 16px;
  color: #13b6ec;
  flex-shrink: 0;
  transition: transform 0.25s ease;
}
.faq-item.open .faq-chevron { transform: rotate(180deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, opacity 0.3s ease;
  opacity: 0;
}
.faq-item.open .faq-answer { max-height: 600px; opacity: 1; }
.faq-answer p {
  font-size: 15px;
  color: #555;
  line-height: 1.7;
  margin: 0;
  padding: 16px 20px 20px;
  border-top: 1px solid rgba(19,182,236,0.12);
  background: rgba(240,249,255,0.5);
}

/* Dark mode — FAQ */
body.dark .faq-section { background: #111 !important; }
body.dark .faq-item {
  background: #1a1a1a !important;
  border-color: rgba(255,255,255,0.08) !important;
}
body.dark .faq-item.open { border-color: rgba(19,182,236,0.3) !important; }
body.dark .faq-question {
  background: #1a1a1a !important;
  color: #f0f0f0 !important;
}
body.dark .faq-question:hover { background: #242424 !important; }
body.dark .faq-answer p {
  color: #a0a0a0 !important;
  background: #242424 !important;
  border-top-color: rgba(255,255,255,0.06) !important;
}

/* ============================================================
   11. CTA (landing-cta.component.scss)
   ============================================================ */
.cta-section {
  background: linear-gradient(135deg, #f0f9ff 0%, #e8f4fd 100%);
  padding: 96px 24px;
  color: #0f1923;
  position: relative;
  overflow: hidden;
}
@media (max-width: 768px) { .cta-section { padding: 56px 20px; } }
.cta-section::before {
  content: '';
  position: absolute;
  top: -20%; left: -10%;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(19,182,236,0.18) 0%, transparent 70%);
  pointer-events: none;
}
.cta-section::after {
  content: '';
  position: absolute;
  bottom: -20%; right: -10%;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(19,182,236,0.12) 0%, transparent 70%);
  pointer-events: none;
}

.cta-container {
  max-width: 580px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}

.cta-title {
  font-size: clamp(24px, 4vw, 38px);
  font-weight: 800;
  color: #0f1923;
  margin: 0 0 16px;
  letter-spacing: -0.4px;
  line-height: 1.15;
}

.cta-subtitle {
  font-size: 18px;
  color: rgba(15,25,35,0.6);
  margin: 0 0 44px;
  line-height: 1.6;
}

.form-wrapper { text-align: left; }

.cta-trust {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  margin: 24px 0 0;
}
.cta-trust span {
  display: flex;
  align-items: center;
  gap: 6px;
  color: rgba(15,25,35,0.5);
  font-size: 13px;
  letter-spacing: 0.1px;
}
.cta-trust span ion-icon { font-size: 16px; color: #a3e635; flex-shrink: 0; }

/* Dark mode — CTA */
body.dark .cta-section { background: linear-gradient(135deg, #0a1a24 0%, #0f0f0f 50%, #0a1a1e 100%) !important; }
body.dark .cta-title { color: #f0f0f0 !important; }
body.dark .cta-subtitle { color: #a0a0a0 !important; }
body.dark .cta-trust span { color: #a0a0a0 !important; }

/* ============================================================
   12. CONTACT FORM (contact-form.component.scss)
   ============================================================ */
.contact-form-wrapper {
  max-width: 500px;
  margin: 0 auto;
  width: 100%;
  background: #fff;
  border: 1px solid rgba(19,182,236,0.2);
  border-radius: 20px;
  padding: 32px;
  box-shadow: 0 8px 32px rgba(15,25,35,0.1);
}
@media (max-width: 480px) {
  .contact-form-wrapper { padding: 24px 20px; border-radius: 16px; }
}

.success-banner {
  background: rgba(52,199,89,0.12);
  border: 1px solid rgba(52,199,89,0.3);
  border-radius: 16px;
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.success-banner ion-icon { font-size: 52px; color: #34c759; display: block; margin-bottom: 12px; }
.success-banner p { color: #0f1923; font-size: 18px; font-weight: 600; margin: 0; line-height: 1.5; }

.form-field { margin-bottom: 18px; }

.field-label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: rgba(15,25,35,0.8);
  margin-bottom: 8px;
  letter-spacing: 0.1px;
}
.required { color: #e03131; margin-left: 2px; }
.optional { color: rgba(15,25,35,0.4); font-weight: 400; font-size: 12px; margin-left: 4px; }

.field-input,
.field-select,
.field-textarea {
  width: 100%;
  background: #fff;
  border: 1.5px solid rgba(19,182,236,0.3);
  border-radius: 12px;
  padding: 13px 16px;
  font-size: 15px;
  color: #0f1923;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
  box-sizing: border-box;
  appearance: none;
  -webkit-appearance: none;
  outline: none;
}
.field-input::placeholder,
.field-select::placeholder,
.field-textarea::placeholder { color: rgba(15,25,35,0.35); }
.field-input:hover:not(:focus),
.field-select:hover:not(:focus),
.field-textarea:hover:not(:focus) {
  border-color: rgba(19,182,236,0.55);
  background: #f8fdff;
}
.field-input:focus,
.field-select:focus,
.field-textarea:focus {
  border-color: #007AFF;
  background: rgba(255,255,255,0.11);
  box-shadow: 0 0 0 3px rgba(0,122,255,0.15);
}
.field-input.invalid,
.field-select.invalid,
.field-textarea.invalid { border-color: #ff6b6b; }
.field-input.invalid:focus,
.field-select.invalid:focus,
.field-textarea.invalid:focus { box-shadow: 0 0 0 3px rgba(255,107,107,0.15); }
.field-input option,
.field-select option,
.field-textarea option { background: #fff; color: #0f1923; }

.business-type-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}
@media (max-width: 400px) { .business-type-grid { grid-template-columns: repeat(2, 1fr); } }
.business-type-grid.invalid .business-type-chip { border-color: rgba(224,49,49,0.4); }

.business-type-chip {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 12px 8px;
  background: #fff;
  border: 1.5px solid rgba(19,182,236,0.25);
  border-radius: 12px;
  cursor: pointer;
  transition: border-color 0.18s ease, background 0.18s ease, box-shadow 0.18s ease, color 0.18s ease;
  color: rgba(15,25,35,0.55);
  font-size: 12px;
  font-weight: 500;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  line-height: 1.2;
  text-align: center;
}
.business-type-chip ion-icon { font-size: 22px; color: rgba(15,25,35,0.4); transition: color 0.18s ease; }
.business-type-chip:hover {
  border-color: rgba(19,182,236,0.5);
  background: #f0f9ff;
  color: rgba(15,25,35,0.8);
}
.business-type-chip:hover ion-icon { color: #13b6ec; }
.business-type-chip.selected {
  border-color: #13b6ec;
  background: rgba(19,182,236,0.08);
  color: #0a7aad;
  box-shadow: 0 0 0 3px rgba(19,182,236,0.12);
}
.business-type-chip.selected ion-icon { color: #13b6ec; }

.select-wrapper { position: relative; width: 100%; }
.select-wrapper.invalid .field-select { border-color: #ff6b6b; }

.select-chevron {
  position: absolute;
  right: 14px; top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  color: rgba(15,25,35,0.45);
  display: flex;
  align-items: center;
  transition: color 0.2s ease;
}
.select-wrapper:focus-within .select-chevron { color: #13b6ec; }

.field-select { cursor: pointer; padding-right: 40px; }
.field-textarea { resize: vertical; min-height: 88px; line-height: 1.5; }

/* ── Custom dropdown (form context, same style as nav switcher) ── */
.custom-dropdown { position: relative; width: 100%; }
.custom-dropdown .dropdown-menu { display: none; left: 0; right: 0; transform: none; min-width: unset; width: 100%; animation: dropInForm 0.15s cubic-bezier(0.4,0,0.2,1); }
@keyframes dropInForm {
  from { opacity: 0; transform: translateY(-6px); }
  to   { opacity: 1; transform: translateY(0); }
}
.custom-dropdown.open .dropdown-menu { display: block; }
.custom-dropdown.open .switcher-chevron { transform: rotate(180deg); }
.btn-switcher--form {
  width: 100%;
  justify-content: flex-start;
  padding: 13px 16px;
  border-radius: 12px;
  font-size: 15px;
  background: rgba(0,0,0,0.04);
  border: 1.5px solid rgba(19,182,236,0.3);
}
.btn-switcher--form .switcher-label { flex: 1; text-align: left; }
.btn-switcher--form .switcher-chevron { margin-left: auto; }
.btn-switcher--form:hover {
  border-color: rgba(19,182,236,0.55);
  background: #f8fdff;
}
.btn-switcher--form.has-value { color: #0f1923; font-weight: 500; }
body.dark .btn-switcher--form {
  background: rgba(255,255,255,0.06);
  border-color: rgba(19,182,236,0.35);
  color: #f0f0f0;
}
body.dark .btn-switcher--form:hover {
  border-color: rgba(19,182,236,0.6);
  background: rgba(255,255,255,0.1);
}
body.dark .custom-dropdown .dropdown-menu {
  background: #1e1e1e;
  border-color: rgba(255,255,255,0.12);
}
.custom-dropdown .dropdown-menu li button:hover {
  background: rgba(19,182,236,0.1);
  color: #0a7aad;
}
body.dark .custom-dropdown .dropdown-menu li button {
  color: rgba(240,240,240,0.65);
}
body.dark .custom-dropdown .dropdown-menu li button:hover {
  background: rgba(255,255,255,0.08);
  color: #f0f0f0;
}
body.dark .custom-dropdown .dropdown-menu li.active button {
  color: #13b6ec;
  background: rgba(19,182,236,0.15);
}

.field-error { display: block; color: #ff8080; font-size: 12px; margin-top: 6px; padding-left: 2px; }

.error-banner {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,59,48,0.12);
  border: 1px solid rgba(255,59,48,0.25);
  border-radius: 12px;
  padding: 14px 16px;
  margin-bottom: 16px;
}
.error-banner ion-icon { font-size: 20px; color: #ff6b6b; flex-shrink: 0; }
.error-banner span { color: #ffaaaa; font-size: 14px; line-height: 1.4; }

.btn-details-toggle {
  display: flex;
  align-items: center;
  gap: 6px;
  background: none;
  border: 1px dashed rgba(15,25,35,0.2);
  border-radius: 10px;
  color: rgba(15,25,35,0.5);
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  padding: 10px 16px;
  width: 100%;
  justify-content: center;
  transition: color 0.2s ease, border-color 0.2s ease, background 0.2s ease;
  margin-bottom: 18px;
}
.btn-details-toggle ion-icon { font-size: 16px; }
.btn-details-toggle:hover {
  color: rgba(15,25,35,0.8);
  border-color: rgba(15,25,35,0.35);
  background: rgba(15,25,35,0.04);
}

.details-fields {
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  transition: max-height 0.4s ease, opacity 0.3s ease;
}
.details-fields.visible { max-height: 500px; opacity: 1; overflow: visible; }

.btn-submit {
  width: 100%;
  background: #13b6ec;
  color: #fff;
  border: none;
  border-radius: 12px;
  padding: 16px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, opacity 0.15s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 54px;
  letter-spacing: 0.1px;
  margin-top: 4px;
}
.btn-submit:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(19,182,236,0.35);
}
.btn-submit:disabled { opacity: 0.5; cursor: not-allowed; transform: none; box-shadow: none; }
.btn-submit:focus-visible { outline: 2px solid #13b6ec; outline-offset: 3px; }

/* Dark mode — Contact form */
body.dark .contact-form-wrapper {
  background: #1a1a1a !important;
  border-color: rgba(19,182,236,0.2) !important;
  box-shadow: 0 8px 40px rgba(0,0,0,0.6) !important;
}
body.dark .field-label { color: #a0a0a0 !important; }
body.dark .required { color: #f87171 !important; }
body.dark .optional { color: #555 !important; }
body.dark .field-input,
body.dark .field-select,
body.dark .field-textarea {
  background: #242424 !important;
  border-color: rgba(255,255,255,0.1) !important;
  color: #f0f0f0 !important;
}
body.dark .field-input:focus,
body.dark .field-select:focus,
body.dark .field-textarea:focus {
  border-color: #13b6ec !important;
  box-shadow: 0 0 0 3px rgba(19,182,236,0.15) !important;
  background: #2a2a2a !important;
}
body.dark .field-input::placeholder,
body.dark .field-select::placeholder,
body.dark .field-textarea::placeholder { color: #555 !important; }
body.dark .field-input:hover:not(:focus),
body.dark .field-select:hover:not(:focus),
body.dark .field-textarea:hover:not(:focus) {
  border-color: rgba(19,182,236,0.4) !important;
  background: #2a2a2a !important;
}
body.dark .field-input option,
body.dark .field-select option,
body.dark .field-textarea option { background: #1a1a1a !important; color: #f0f0f0 !important; }
body.dark .business-type-chip {
  background: #242424 !important;
  border-color: rgba(255,255,255,0.1) !important;
  color: #a0a0a0 !important;
}
body.dark .business-type-chip ion-icon { color: rgba(240,240,240,0.4) !important; }
body.dark .business-type-chip.selected {
  background: rgba(19,182,236,0.15) !important;
  border-color: #13b6ec !important;
  color: #13b6ec !important;
}
body.dark .business-type-chip.selected ion-icon { color: #13b6ec !important; }
body.dark .business-type-chip:hover:not(.selected) {
  background: #2a2a2a !important;
  border-color: rgba(255,255,255,0.18) !important;
  color: #f0f0f0 !important;
}
body.dark .business-type-chip:hover:not(.selected) ion-icon { color: #13b6ec !important; }
body.dark .btn-details-toggle {
  border-color: rgba(255,255,255,0.1) !important;
  color: #a0a0a0 !important;
}
body.dark .btn-details-toggle:hover {
  background: rgba(255,255,255,0.04) !important;
  border-color: rgba(255,255,255,0.2) !important;
  color: #f0f0f0 !important;
}
body.dark .field-error { color: #f87171 !important; }
body.dark .success-banner {
  background: rgba(22,163,74,0.12) !important;
  border-color: rgba(22,163,74,0.3) !important;
}
body.dark .success-banner p { color: #4ade80 !important; }
body.dark .error-banner {
  background: rgba(220,38,38,0.12) !important;
  border-color: rgba(220,38,38,0.3) !important;
}
body.dark .error-banner span { color: #f87171 !important; }
body.dark .error-banner ion-icon { color: #f87171 !important; }
body.dark .select-chevron { color: rgba(240,240,240,0.35) !important; }

/* ============================================================
   13. FOOTER (landing-footer.component.scss)
   ============================================================ */
.landing-footer {
  background: #0a1018;
  padding: 56px 24px 40px;
  color: rgba(255,255,255,0.55);
  border-top: 1px solid rgba(255,255,255,0.06);
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
  text-align: center;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 18px;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.3px;
}
.footer-logo .footer-logo-img,
.footer-logo img {
  width: 28px; height: 28px;
  border-radius: 7px;
  flex-shrink: 0;
  display: block;
}
.footer-logo .footer-logo-sub { color: #13b6ec; font-weight: 600; }

.footer-links {
  display: flex;
  gap: 4px;
  flex-wrap: wrap;
  justify-content: center;
}
.footer-links a {
  color: rgba(255,255,255,0.55);
  text-decoration: none;
  font-size: 14px;
  padding: 6px 12px;
  border-radius: 8px;
  transition: color 0.15s ease, background 0.15s ease;
}
.footer-links a:hover {
  color: #fff;
  background: rgba(255,255,255,0.06);
}

.footer-social .social-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.55);
  text-decoration: none;
  font-size: 14px;
  padding: 8px 16px;
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,0.12);
  transition: color 0.15s ease, border-color 0.15s ease, background 0.15s ease;
}
.footer-social .social-link:hover {
  color: #13b6ec;
  border-color: rgba(19,182,236,0.4);
  background: rgba(19,182,236,0.06);
}
.footer-social .social-link ion-icon { font-size: 18px; }

.footer-divider {
  width: 100%;
  max-width: 400px;
  height: 1px;
  background: rgba(255,255,255,0.06);
}

.footer-legal {
  display: flex;
  gap: 4px;
  flex-wrap: wrap;
  justify-content: center;
}
.footer-legal a {
  color: rgba(255,255,255,0.3);
  text-decoration: none;
  font-size: 12px;
  padding: 4px 8px;
  border-radius: 6px;
  transition: color 0.15s ease;
}
.footer-legal a:hover { color: rgba(255,255,255,0.6); }

.footer-copy { font-size: 12px; color: rgba(255,255,255,0.25); margin: 0; }

/* Dark mode — Footer */
body.dark .landing-footer {
  background: #070707 !important;
  border-top-color: rgba(255,255,255,0.06) !important;
}
body.dark .footer-links a { color: rgba(240,240,240,0.5) !important; }
body.dark .footer-links a:hover {
  color: #13b6ec !important;
  background: rgba(255,255,255,0.04) !important;
}
body.dark .footer-social .social-link {
  border-color: rgba(255,255,255,0.1) !important;
  color: rgba(240,240,240,0.5) !important;
}
body.dark .footer-social .social-link:hover {
  border-color: rgba(19,182,236,0.5) !important;
  color: #13b6ec !important;
}
body.dark .footer-copy { color: rgba(255,255,255,0.25) !important; }
body.dark .footer-legal a { color: rgba(255,255,255,0.3) !important; }
body.dark .footer-legal a:hover { color: rgba(255,255,255,0.6) !important; }

/* ============================================================
   EXTRA CLASSES (from css partes.txt)
   ============================================================ */

/* Social proof extra */
.social-proof-container { max-width: 1200px; margin: 0 auto; display: flex; align-items: center; justify-content: center; gap: 20px; flex-wrap: wrap; }
.social-logos { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; justify-content: center; }
.social-item { display: flex; align-items: center; gap: 10px; padding: 8px 16px; border-radius: 10px; border: 1px solid #e8e8e8; background: #fff; }
.social-icon-wrap { width: 32px; height: 32px; border-radius: 8px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.social-icon-wrap.apple { background: #f5f5f5; color: #1a1a1a; }
.social-icon-wrap.google { background: #e8f0fe; color: #1a73e8; }
.social-icon-wrap ion-icon { font-size: 20px; }
.social-text { display: flex; flex-direction: column; gap: 1px; }
.social-name { font-size: 13px; font-weight: 700; color: #1a1a1a; line-height: 1; }
.social-sub { font-size: 11px; color: #999; line-height: 1; white-space: nowrap; }

/* Comparison extra */
.comparison-container { max-width: 1000px; margin: 0 auto; }
.comparison-title { text-align: center; font-size: clamp(24px, 4vw, 36px); font-weight: 800; color: #151515; margin: 0 0 12px; letter-spacing: -0.3px; }
.comparison-title::after { content: ''; display: block; width: 40px; height: 3px; background: linear-gradient(90deg, #13b6ec, #0ea5d4); border-radius: 2px; margin: 14px auto 0; }
.comparison-intro { text-align: center; color: #666; font-size: 17px; margin: 0 0 48px; line-height: 1.55; }
.comparison-table-wrap { overflow-x: auto; border-radius: 20px; background: #fff; box-shadow: 0 2px 8px rgba(0,0,0,0.06); border: 1px solid #f0f0f0; -webkit-overflow-scrolling: touch; }
.comparison-table { width: 100%; border-collapse: collapse; font-size: 14px; }
.comparison-table thead tr { border-bottom: 2px solid #f0f0f0; }
.comparison-table th { padding: 20px 16px 16px; text-align: center; font-weight: 700; font-size: 13px; vertical-align: bottom; }
.comparison-table th.col-criteria { text-align: left; color: #aaa; font-weight: 500; font-size: 11px; text-transform: uppercase; letter-spacing: 0.8px; min-width: 160px; }
.comparison-table th.col-email, .comparison-table th.col-sms { color: #666; background: #fafafa; font-size: 13px; font-weight: 600; }
/* Header icons via ::before */
.comparison-table th.col-email::before,
.comparison-table th.col-sms::before,
.comparison-table th.col-elune::before {
  display: block;
  font-size: 22px;
  margin: 0 auto 6px;
  width: 36px; height: 36px;
  line-height: 36px;
  text-align: center;
  border-radius: 10px;
  background: none !important;
}
.comparison-table th.col-email::before { content: '📧'; }
.comparison-table th.col-sms::before { content: '💬'; }
.comparison-table th.col-elune::before { content: '🔔'; }
.comparison-table th.col-elune { background: linear-gradient(135deg, rgba(19,182,236,0.10), rgba(14,165,212,0.05)); color: #0c8ab5; font-size: 14px; }
.elune-col-label { font-weight: 700; }
.elune-col-label::after { display: none; }
.comparison-table td { padding: 14px 16px; border-bottom: 1px solid #f5f5f5; vertical-align: middle; line-height: 1.45; text-align: center; font-size: 13px; }
.comparison-table tr:last-child td { border-bottom: none; }
.comparison-table .criteria-cell { text-align: left; font-weight: 600; color: #151515; font-size: 13px; }
/* Cell icons via ::before */
.comparison-table .cell-bad,
.comparison-table .cell-mid,
.comparison-table .cell-good {
  position: relative;
}
.comparison-table .cell-bad::before,
.comparison-table .cell-mid::before,
.comparison-table .cell-good::before {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px; height: 18px;
  border-radius: 50%;
  font-size: 10px;
  font-weight: 900;
  margin-right: 6px;
  vertical-align: middle;
  flex-shrink: 0;
}
.comparison-table .cell-bad { color: #666; }
.comparison-table .cell-bad::before { content: '✕'; background: rgba(229,62,62,0.10); color: #e53e3e; }
.comparison-table .cell-mid { color: #666; }
.comparison-table .cell-mid::before { content: '–'; background: rgba(245,158,11,0.12); color: #f59e0b; font-size: 13px; }
.comparison-table .cell-good { color: #666; font-weight: 600; }
.comparison-table .cell-good::before { content: '✓'; background: rgba(34,197,94,0.12); color: #22c55e; }
/* Elune column (last td) keeps cyan text */
.comparison-table td.cell-good:last-child { color: #0c8ab5; }
/* Elune column highlight */
.comparison-table td.cell-good:last-child {
  background: rgba(19,182,236,0.03);
}
.comparison-footnote { color: #bbb; font-size: 11px; margin: 14px 0 0; padding-left: 4px; line-height: 1.5; }

/* ── Comparison: desktop/mobile toggle ── */
.comparison-mobile { display: none; }
@media (max-width: 768px) {
  .comparison-desktop { display: none !important; }
  .comparison-mobile { display: flex; flex-direction: column; gap: 12px; }
}

/* ── Mobile comparison cards ── */
.comp-card {
  background: #fff;
  border: 1px solid #f0f0f0;
  border-radius: 16px;
  padding: 18px 20px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  overflow: hidden;
}
.comp-card-criteria {
  font-size: 15px;
  font-weight: 700;
  color: #151515;
  margin: 0 0 14px;
  padding-bottom: 12px;
  border-bottom: 2px solid #f2f2f7;
}
.comp-card-row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 12px;
  margin: 4px 0;
  border-radius: 10px;
  font-size: 14px;
  color: #888;
  transition: background 0.15s;
}
.comp-card-row::before {
  content: '';
  width: 7px;
  height: 7px;
  border-radius: 50%;
  flex-shrink: 0;
}
.comp-card-row--bad::before { background: rgba(229,62,62,0.5); }
.comp-card-row--mid::before { background: rgba(245,158,11,0.5); }
.comp-card-row--good::before { background: rgba(34,197,94,0.7); }
.comp-card-label {
  font-weight: 600;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  min-width: 48px;
  color: #bbb;
}
.comp-card-row span:last-child { margin-left: auto; text-align: right; }
.comp-card-row--good {
  background: rgba(19,182,236,0.06);
  color: #0c8ab5;
  font-weight: 600;
}
.comp-card-row--good .comp-card-label { color: #13b6ec; }

/* Dark mode — Mobile comparison cards */
body.dark .comp-card {
  background: #1a1a1a !important;
  border-color: rgba(255,255,255,0.08) !important;
}
body.dark .comp-card-criteria { color: #f0f0f0 !important; border-color: rgba(255,255,255,0.08) !important; }
body.dark .comp-card-row { color: #a0a0a0 !important; }
body.dark .comp-card-row--good { background: rgba(19,182,236,0.08) !important; color: #13b6ec !important; }
body.dark .comp-card-label { color: #555 !important; }
body.dark .comp-card-row--good .comp-card-label { color: #13b6ec !important; }

.comparison-closing {
  margin-top: 28px;
  padding: 22px 32px;
  background: linear-gradient(135deg, #151515 0%, #1a2a32 100%);
  border-radius: 16px;
  text-align: center;
  border: 1px solid rgba(19,182,236,0.15);
  font-size: 17px;
  font-weight: 600;
  color: #fff;
  line-height: 1.5;
}
.comparison-closing p { font-size: 17px; font-weight: 600; color: #fff; margin: 0; line-height: 1.5; }

/* Loyalty extra */
.loyalty-title { font-size: clamp(24px, 4vw, 36px); font-weight: 800; color: #151515; margin: 0 0 12px; letter-spacing: -0.3px; }
.loyalty-title::after { content: ''; display: block; width: 40px; height: 3px; background: linear-gradient(90deg, #13b6ec, #0ea5d4); border-radius: 2px; margin: 14px auto 0; }
.loyalty-steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; text-align: left; }
@media (max-width: 768px) { .loyalty-steps { grid-template-columns: 1fr; } }
.loyalty-step {
  background: #fff;
  border-radius: 20px;
  padding: 28px;
  border: 1px solid #f0f0f0;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  display: flex;
  flex-direction: column;
}
.loyalty-step:hover { transform: translateY(-4px); box-shadow: 0 10px 28px rgba(0,0,0,0.09); border-color: #e8e8e8; }
.loyalty-step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 10px;
  background: rgba(19,182,236,0.1);
  color: #13b6ec;
  font-size: 14px;
  font-weight: 800;
  margin-bottom: 14px;
  flex-shrink: 0;
}
.loyalty-step-title { font-size: 17px; font-weight: 700; color: #151515; margin: 0 0 8px; letter-spacing: -0.1px; }
.loyalty-step-text { font-size: 14px; color: #666; line-height: 1.65; margin: 0 0 20px; flex: 1; }
.notif-app-icon--elune {
  background: linear-gradient(135deg, #13b6ec, #0ea5d4);
  display: flex;
  align-items: center;
  justify-content: center;
}
.notif-app-icon--elune ion-icon { color: #fff; font-size: 18px; }

/* Pricing extra */
.pricing-table-wrap { background: #fff; border-radius: 20px; border: 1px solid #f0f0f0; box-shadow: 0 2px 12px rgba(0,0,0,0.06); overflow: hidden; overflow-x: auto; -webkit-overflow-scrolling: touch; }
.col-plan, .col-recipients, .col-extra, .col-points, .col-price { padding: 16px 20px; font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.7px; color: #aaa; }
.col-recipients, .col-extra, .col-points, .col-price { text-align: center; }
.plan-badge { background: linear-gradient(135deg, #13b6ec, #0ea5d4); color: #fff; font-size: 10px; font-weight: 700; padding: 3px 10px; border-radius: 20px; margin-left: 6px; display: inline-block; }
.plan-recipients { text-align: center; font-size: 14px; color: #151515; font-weight: 600; padding: 18px 20px; vertical-align: middle; }
.plan-extra, .plan-points { text-align: center; font-size: 14px; color: #555; padding: 18px 20px; vertical-align: middle; }
.plan-price { text-align: center; padding: 18px 20px; vertical-align: middle; display: flex; align-items: baseline; justify-content: center; gap: 6px; flex-wrap: nowrap; }
.plan-price .current-price { font-size: 16px; font-weight: 800; color: #151515; letter-spacing: -0.3px; }
.plan-price .old-price { color: #bbb; font-size: 12px; text-decoration: line-through; }
.featured-row .plan-price .current-price { color: #13b6ec; }
.trial-row .plan-price .current-price { color: #4d7c0f; }
.pricing-cta-wrap { text-align: center; margin: 32px 0 8px; }
.pricing-note-no-points { text-align: center; color: #999; font-size: 13px; margin: 8px 0 0; }
.pricing-note-no-points-cta { color: #13b6ec; font-weight: 600; text-decoration: underline; text-underline-offset: 2px; }

/* Form extra */
.form-field { margin-bottom: 18px; }
.form-label { display: block; font-size: 13px; font-weight: 600; color: rgba(15,25,35,0.8); margin-bottom: 8px; }
.form-input { width: 100%; background: #fff; border: 1.5px solid rgba(19,182,236,0.3); border-radius: 12px; padding: 13px 16px; font-size: 15px; color: #0f1923; font-family: inherit; transition: border-color 0.2s, box-shadow 0.2s; box-sizing: border-box; appearance: none; -webkit-appearance: none; outline: none; }
.form-input::placeholder { color: rgba(15,25,35,0.35); }
.form-input:focus { border-color: #007AFF; box-shadow: 0 0 0 3px rgba(0,122,255,0.15); }
.form-input.invalid { border-color: #ff6b6b; }
.form-select { cursor: pointer; }
.form-textarea { resize: vertical; min-height: 88px; line-height: 1.5; }
.type-chip { display: flex; flex-direction: column; align-items: center; gap: 6px; padding: 12px 8px; background: #fff; border: 1.5px solid rgba(19,182,236,0.25); border-radius: 12px; cursor: pointer; color: rgba(15,25,35,0.55); font-size: 12px; font-weight: 500; font-family: inherit; line-height: 1.2; text-align: center; transition: border-color 0.18s, background 0.18s, color 0.18s; }
.type-chip ion-icon { font-size: 22px; color: rgba(15,25,35,0.4); }
.type-chip:hover { border-color: rgba(19,182,236,0.5); background: #f0f9ff; color: rgba(15,25,35,0.8); }
.type-chip:hover ion-icon { color: #13b6ec; }
.type-chip.selected { border-color: #13b6ec; background: rgba(19,182,236,0.08); color: #0a7aad; box-shadow: 0 0 0 3px rgba(19,182,236,0.12); }
.type-chip.selected ion-icon { color: #13b6ec; }
.cta-container {
  display: flex;
  flex-direction: column;
}
.cta-trust-badges {
  display: flex; align-items: center; justify-content: center; flex-wrap: wrap; gap: 20px;
  margin: 24px 0 0;
  order: 10;
}
.trust-badge { display: flex; align-items: center; gap: 6px; color: rgba(15,25,35,0.5); font-size: 13px; }
.trust-badge ion-icon { font-size: 16px; color: #a3e635; flex-shrink: 0; }

/* HIW mockup extra */
.mock-wallet-topbar { display: flex; align-items: center; padding: 0 12px 8px; gap: 6px; }
.mock-wallet-topbar span { font-size: 10px; font-weight: 700; color: #151515; }
.wallet-card { margin: 0 10px; background: linear-gradient(135deg, #13b6ec 0%, #0ea5d4 100%); border-radius: 14px; padding: 12px 12px 10px; box-shadow: 0 6px 20px rgba(19,182,236,0.35); position: relative; }
.wallet-pts { font-size: 7.5px; font-weight: 700; color: rgba(255,255,255,0.9); text-align: center; margin: 8px 0 0; }
.wallet-add-btn { display: flex; align-items: center; justify-content: center; margin: 10px 10px 0; background: #000; color: #fff; border-radius: 10px; font-size: 8px; font-weight: 700; padding: 8px 12px; width: calc(100% - 20px); border: none; }
.qr-corner-tl { top: 4px; left: 4px; border-width: 2px 0 0 2px; border-radius: 1px 0 0 0; }
.qr-corner-tr { top: 4px; right: 4px; border-width: 2px 2px 0 0; border-radius: 0 1px 0 0; }
.qr-corner-bl { bottom: 4px; left: 4px; border-width: 0 0 2px 2px; border-radius: 0 0 0 1px; }
.qr-corner-br { bottom: 4px; right: 4px; border-width: 0 2px 2px 0; border-radius: 0 0 1px 0; }
.compose-line { height: 6px; border-radius: 3px; background: rgba(255,255,255,0.18); width: 100%; margin-bottom: 6px; }
.compose-line--short { width: 45%; }
.compose-cursor { color: #13b6ec; font-weight: 700; animation: cursorBlink 1.1s step-end infinite; display: inline-block; }
.mock-notif-card { width: 100%; background: rgba(255,255,255,0.14); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); border: 1px solid rgba(255,255,255,0.18); border-radius: 14px; padding: 10px; display: flex; gap: 8px; align-items: flex-start; }
.notif-card-icon { width: 24px; height: 24px; border-radius: 7px; background: linear-gradient(135deg, #13b6ec, #0ea5d4); flex-shrink: 0; }
.notif-card-body { flex: 1; min-width: 0; }
.notif-card-app { font-size: 7px; color: rgba(255,255,255,0.55); display: block; margin-bottom: 3px; }
.notif-card-text { font-size: 8.5px; font-weight: 600; color: #fff; line-height: 1.4; margin: 0; }

/* Dark mode loyalty extra */
body.dark .loyalty-step { background: #1a1a1a !important; border-color: rgba(255,255,255,0.08) !important; }
body.dark .loyalty-step:hover { box-shadow: 0 6px 24px rgba(0,0,0,0.6) !important; border-color: rgba(255,255,255,0.14) !important; }
body.dark .loyalty-step-num { background: rgba(19,182,236,0.15) !important; }
body.dark .loyalty-step-title { color: #f0f0f0 !important; }
body.dark .loyalty-step-text { color: #a0a0a0 !important; }
body.dark .loyalty-title { color: #f0f0f0 !important; }
body.dark .loyalty-subtitle { color: #a0a0a0 !important; }

/* Dark mode comparison extra */
body.dark .comparison-closing { background: linear-gradient(135deg, #0a1a24 0%, #0d2030 100%) !important; }
body.dark .comparison-table-wrap { background: #1a1a1a !important; border-color: rgba(255,255,255,0.08) !important; }
body.dark .comparison-table th, body.dark .comparison-table td { border-color: rgba(255,255,255,0.06) !important; color: #f0f0f0 !important; }
body.dark .comparison-table th.col-email, body.dark .comparison-table th.col-sms { background: #242424 !important; color: #a0a0a0 !important; }
body.dark .comparison-table th.col-elune { background: linear-gradient(135deg, #0d3a4d, #0a2a36) !important; color: #13b6ec !important; }
body.dark .comparison-table .criteria-cell { color: #a0a0a0 !important; }
body.dark .comparison-table .cell-bad { color: #a0a0a0 !important; }
body.dark .comparison-table .cell-mid { color: #a0a0a0 !important; }
body.dark .comparison-table .cell-good { color: #a0a0a0 !important; }
body.dark .comparison-table .cell-good::before { background: rgba(34,197,94,0.15) !important; color: #4ade80 !important; }
body.dark .comparison-table td.cell-good:last-child { color: #13b6ec !important; }
body.dark .comparison-table td.cell-good:last-child { background: rgba(19,182,236,0.05) !important; }
body.dark .comparison-footnote { color: #666 !important; }
body.dark .comparison-closing { color: #f0f0f0 !important; }
body.dark .comparison-closing p { color: #f0f0f0 !important; }

/* Dark mode form extra */
body.dark .form-input { background: #242424 !important; border-color: rgba(255,255,255,0.1) !important; color: #f0f0f0 !important; }
body.dark .form-input:focus { border-color: #13b6ec !important; box-shadow: 0 0 0 3px rgba(19,182,236,0.15) !important; }
body.dark .form-input::placeholder { color: #555 !important; }
body.dark .form-label { color: #a0a0a0 !important; }
body.dark .type-chip { background: #242424 !important; border-color: rgba(255,255,255,0.1) !important; color: #a0a0a0 !important; }
body.dark .type-chip ion-icon { color: rgba(240,240,240,0.4) !important; }
body.dark .type-chip.selected { background: rgba(19,182,236,0.15) !important; border-color: #13b6ec !important; color: #13b6ec !important; }
body.dark .trust-badge { color: #a0a0a0 !important; }
body.dark .pricing-note-no-points { color: #555 !important; }
body.dark .loyalty-step-num { background: rgba(19,182,236,0.12) !important; }

/* ============================================================
   DARK MODE — Global fixes
   ============================================================ */

/* Section titles (used across HIW, BT, Comparison, Loyalty, Pricing, FAQ) */
body.dark .section-title,
body.dark .comparison-title,
body.dark .loyalty-title,
body.dark .cta-title { color: #f0f0f0 !important; }

/* Logo */
body.dark .logo-wordmark { color: #f0f0f0 !important; }

/* Navbar dropdowns */
body.dark .btn-switcher {
  background: rgba(255,255,255,0.06) !important;
  border-color: rgba(255,255,255,0.12) !important;
  color: rgba(240,240,240,0.7) !important;
}
body.dark .btn-switcher:hover {
  background: rgba(255,255,255,0.10) !important;
  color: #f0f0f0 !important;
}
body.dark .dropdown-menu {
  background: #1a1a1a !important;
  border-color: rgba(255,255,255,0.1) !important;
  box-shadow: 0 8px 32px rgba(0,0,0,0.6) !important;
}
body.dark .dropdown-menu li { color: rgba(240,240,240,0.65) !important; }
body.dark .dropdown-menu li button { color: rgba(240,240,240,0.65) !important; }
body.dark .dropdown-menu li:hover,
body.dark .dropdown-menu li button:hover {
  background: rgba(255,255,255,0.08) !important;
  color: #f0f0f0 !important;
}
body.dark .dropdown-menu li.active,
body.dark .dropdown-menu li.active button {
  color: #13b6ec !important;
  background: rgba(19,182,236,0.12) !important;
}

/* Mobile panel */
body.dark .mobile-panel {
  background: #111 !important;
  border-color: rgba(255,255,255,0.06) !important;
}
body.dark .panel-header { border-color: rgba(255,255,255,0.06) !important; }
body.dark .panel-close {
  background: rgba(255,255,255,0.06) !important;
  border-color: rgba(255,255,255,0.08) !important;
  color: rgba(240,240,240,0.5) !important;
}
body.dark .panel-link { color: rgba(240,240,240,0.7) !important; }
body.dark .panel-link:hover {
  background: rgba(255,255,255,0.06) !important;
  color: #f0f0f0 !important;
}
body.dark .panel-link.active { color: #13b6ec !important; }
body.dark .panel-link-icon {
  background: rgba(255,255,255,0.06) !important;
}
body.dark .panel-link-icon ion-icon { color: rgba(240,240,240,0.5) !important; }
body.dark .panel-actions { border-color: rgba(255,255,255,0.06) !important; }
body.dark .mobile-actions-row .theme-toggle-mobile {
  background: rgba(255,255,255,0.08) !important;
  color: rgba(240,240,240,0.85) !important;
}
body.dark .btn-panel-login {
  background: rgba(255,255,255,0.04) !important;
  border-color: rgba(255,255,255,0.1) !important;
  color: rgba(240,240,240,0.7) !important;
}
body.dark .panel-trust { color: rgba(240,240,240,0.25) !important; }
body.dark .panel-prefs { border-color: rgba(255,255,255,0.06) !important; }
body.dark .pref-pill {
  background: rgba(255,255,255,0.04) !important;
  border-color: rgba(255,255,255,0.08) !important;
  color: rgba(240,240,240,0.55) !important;
}
body.dark .pref-pill:hover {
  background: rgba(255,255,255,0.08) !important;
  color: #f0f0f0 !important;
}
body.dark .pref-pill.active {
  background: rgba(19,182,236,0.12) !important;
  border-color: rgba(19,182,236,0.35) !important;
  color: #13b6ec !important;
}

/* Login button */
body.dark .btn-login {
  color: rgba(240,240,240,0.65) !important;
  border-color: rgba(255,255,255,0.15) !important;
}
body.dark .btn-login:hover {
  color: #f0f0f0 !important;
  background: rgba(255,255,255,0.06) !important;
}

/* Hero section ::before glow */
body.dark .hero-section::before { opacity: 0.4; }
body.dark .hero-section::after { background: rgba(255,255,255,0.04); }

/* Social proof — items (extra classes from HTML) */
body.dark .social-item {
  background: #1a1a1a !important;
  border-color: rgba(255,255,255,0.1) !important;
}
body.dark .social-name { color: #f0f0f0 !important; }
body.dark .social-sub { color: #a0a0a0 !important; }

/* HIW mockup dark adjustments */
body.dark .mock-wallet-screen { background: #1e1e1e !important; }
body.dark .mock-wc-qr { background: #333 !important; }

/* Pricing — table header columns */
body.dark .pricing-table th { color: rgba(240,240,240,0.5) !important; }

/* Pricing — plan names in table */
body.dark .pricing-table .plan-name-cell { color: #f0f0f0 !important; }

/* FAQ — section-specific overrides already exist */

/* CTA section decorations */
body.dark .cta-section::before,
body.dark .cta-section::after { opacity: 0.5; }

/* Contact form wrapper */
body.dark .contact-form-wrapper {
  background: #1a1a1a !important;
  border-color: rgba(19,182,236,0.15) !important;
  box-shadow: 0 8px 40px rgba(0,0,0,0.5) !important;
}

/* Comparison — table row hover in dark */
body.dark .comparison-table tr:hover td { background: rgba(255,255,255,0.03) !important; }

/* Comparison closing text */
body.dark .comparison-closing { color: #f0f0f0 !important; }

/* Footer — already dark by design, minor dark mode adjustment */
body.dark .landing-footer { background: #050505 !important; }

/* General text fallback for dark wrapper */
body.dark .landing-wrapper { background: #0f0f0f !important; color: #f0f0f0 !important; }

/* Ensure all white-background cards go dark */
body.dark .step-card,
body.dark .bt-card,
body.dark .feature-item,
body.dark .platform-badge,
body.dark .faq-item,
body.dark .comp-table-wrapper,
body.dark .pricing-table-wrapper {
  background: #1a1a1a !important;
  border-color: rgba(255,255,255,0.08) !important;
}

/* Ensure text readability in dark cards */
body.dark .bt-title,
body.dark .step-title,
body.dark .feature-content h3,
body.dark .notif-app-name,
body.dark .plan-name,
body.dark .criteria-cell { color: #f0f0f0 !important; }

body.dark .bt-text,
body.dark .step-text,
body.dark .feature-content p,
body.dark .notif-text,
body.dark .comp-intro,
body.dark .comparison-intro,
body.dark .loyalty-subtitle,
body.dark .pricing-subtitle,
body.dark .cta-subtitle,
body.dark .pricing-note,
body.dark .comp-footnote,
body.dark .comparison-footnote { color: #a0a0a0 !important; }

/* Notif time in business cards */
body.dark .notif-time { color: #666 !important; }
body.dark .notif-app { color: rgba(240,240,240,0.7) !important; }

/* Pricing table body cells */
body.dark .pricing-table td { color: #a0a0a0 !important; }
body.dark .pricing-table .current-price { color: #f0f0f0 !important; }
body.dark .pricing-table .featured-row .current-price { color: #13b6ec !important; }
body.dark .pricing-table .trial-row .current-price { color: #4ade80 !important; }
body.dark .pricing-table .old-price { color: #555 !important; }
body.dark .pricing-table .plan-recipients-cell,
body.dark .plan-recipients { color: #f0f0f0 !important; }
body.dark .pricing-table tbody tr { border-color: rgba(255,255,255,0.06) !important; }
body.dark .pricing-table thead tr { border-color: rgba(255,255,255,0.08) !important; }
body.dark .pricing-table th {
  background: #242424 !important;
  border-color: rgba(255,255,255,0.08) !important;
}

/* Scroll progress bar */
body.dark .nav-progress-wrap { background: rgba(255,255,255,0.04) !important; }

/* ============================================================
   BILLING TOGGLE (Mensual / Anual)
   ============================================================ */
.billing-toggle {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: rgba(0, 0, 0, 0.05);
  border-radius: 999px;
  padding: 4px;
  margin: 0 auto 32px;
  position: relative;
}
.pricing-section .billing-toggle {
  display: flex;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}
.billing-toggle-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: none;
  background: transparent;
  color: #555;
  font-size: 14px;
  font-weight: 600;
  padding: 10px 20px;
  border-radius: 999px;
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
}
.billing-toggle-btn:hover { color: #111; }
.billing-toggle-btn.active {
  background: #fff;
  color: #111;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}
.billing-save-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  color: #16a34a;
  background: #dcfce7;
  padding: 2px 8px;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}
body.dark .billing-toggle {
  background: rgba(255, 255, 255, 0.06);
}
body.dark .billing-toggle-btn {
  color: rgba(240, 240, 240, 0.65);
}
body.dark .billing-toggle-btn:hover { color: #fff; }
body.dark .billing-toggle-btn.active {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}
body.dark .billing-save-badge {
  color: #4ade80;
  background: rgba(74, 222, 128, 0.15);
}
