.elementor-857 .elementor-element.elementor-element-c33e9ea{--display:flex;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}:root{--page-title-display:none;}/* Start custom CSS for html, class: .elementor-element-9418438 */@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;500;600;700&family=Inter:wght@300;400;500;600&display=swap');

:root {
  --bg: 220 20% 4%;
  --fg: 210 20% 95%;
  --card: 220 18% 8%;
  --card-fg: 210 20% 95%;
  --primary: 36 100% 50%;
  --primary-fg: 220 20% 4%;
  --secondary: 220 15% 14%;
  --secondary-fg: 210 20% 85%;
  --muted: 220 15% 12%;
  --muted-fg: 215 12% 55%;
  --accent: 36 80% 45%;
  --border: 220 15% 16%;
  --gold: 36 100% 50%;
  --gold-light: 40 100% 65%;
  --gold-dark: 32 100% 40%;
  --surface: 220 18% 8%;
  --surface-light: 220 15% 12%;
  --radius: 0.75rem;
}

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

body {
  font-family: 'Inter', sans-serif;
  background: hsl(var(--bg));
  color: hsl(var(--fg));
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 { font-family: 'Space Grotesk', sans-serif; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; display: block; }
html { scroll-behavior: smooth; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 1rem; }

/* Glass effect */
.glass {
  background: hsl(var(--card) / 0.6);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid hsl(var(--border) / 0.5);
}
.glass-strong {
  background: hsl(var(--card) / 0.8);
  backdrop-filter: blur(40px);
  -webkit-backdrop-filter: blur(40px);
  border: 1px solid hsl(var(--border) / 0.6);
}

/* Gradients */
.text-gradient-gold {
  background: linear-gradient(135deg, hsl(var(--gold-light)), hsl(var(--gold)), hsl(var(--gold-dark)));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.bg-gradient-gold { background: linear-gradient(135deg, hsl(var(--gold)), hsl(var(--gold-dark))); }
.bg-gradient-surface { background: linear-gradient(180deg, hsl(var(--surface)), hsl(var(--bg))); }
.glow-gold { box-shadow: 0 10px 40px -10px hsl(var(--gold) / 0.3); }

/* Buttons */
.btn-primary {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  padding: 1rem 2rem; border-radius: var(--radius);
  background: linear-gradient(135deg, hsl(var(--gold)), hsl(var(--gold-dark)));
  color: hsl(var(--primary-fg)); font-family: 'Space Grotesk', sans-serif;
  font-weight: 700; font-size: 1.125rem; border: none; cursor: pointer;
  transition: opacity 0.2s;
}
.btn-primary:hover { opacity: 0.9; }
.btn-secondary {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  padding: 1rem 2rem; border-radius: var(--radius);
  border: 1px solid hsl(var(--border)); background: hsl(var(--secondary) / 0.5);
  color: hsl(var(--fg)); font-family: 'Space Grotesk', sans-serif;
  font-weight: 600; font-size: 1.125rem; cursor: pointer; transition: background 0.2s;
}
.btn-secondary:hover { background: hsl(var(--secondary)); }

/* Badge */
.badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.5rem 1rem; border-radius: 9999px;
  border: 1px solid hsl(var(--gold) / 0.3);
  background: hsl(var(--gold) / 0.1);
  font-size: 0.875rem; color: hsl(var(--gold)); font-weight: 500;
}
.badge-dot { width: 0.5rem; height: 0.5rem; border-radius: 50%; background: hsl(var(--gold)); animation: pulse 2s infinite; }

/* ===== ANIMATIONS ===== */
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.5; } }
@keyframes pulseGlow {
  0%, 100% { box-shadow: 0 0 20px hsl(var(--gold) / 0.3); }
  50% { box-shadow: 0 0 40px hsl(var(--gold) / 0.6); }
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes cinemaFloat {
  0% { transform: translate(0, 0) rotate(0deg); opacity: 0.15; }
  25% { transform: translate(calc(var(--dir, 1) * 30px), -40px) rotate(90deg); opacity: 0.25; }
  50% { transform: translate(calc(var(--dir, 1) * -20px), -80px) rotate(180deg); opacity: 0.15; }
  75% { transform: translate(calc(var(--dir, 1) * 40px), -40px) rotate(270deg); opacity: 0.25; }
  100% { transform: translate(0, 0) rotate(360deg); opacity: 0.15; }
}
@keyframes particle {
  0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.3; }
  50% { transform: translate(20px, -30px) scale(1.5); opacity: 0.6; }
}
@keyframes aurora1 {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  50% { transform: translate(5%, 3%) rotate(5deg); }
}
@keyframes aurora2 {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  50% { transform: translate(-5%, -3%) rotate(-5deg); }
}
@keyframes gridPulse {
  0%, 100% { transform: scale(1); opacity: 0.04; }
  50% { transform: scale(1.1); opacity: 0.08; }
}
@keyframes spotlight {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(-50px, 30px); }
}
@keyframes spotlight2 {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(50px, -30px); }
}

.animate-pulse-glow { animation: pulseGlow 2s ease-in-out infinite; }
.animate-fade-up { animation: fadeUp 0.8s ease-out forwards; }
.cinema-icon { animation: cinemaFloat var(--dur, 20s) ease-in-out infinite; position: absolute; pointer-events: none; }

/* Animated backgrounds */
.animated-bg { position: absolute; inset: 0; overflow: hidden; pointer-events: none; }
.aurora-1 { position: absolute; top: -50%; left: -25%; width: 150%; height: 200%; opacity: 0.07; animation: aurora1 20s ease-in-out infinite; background: radial-gradient(ellipse at center, hsl(var(--gold)), transparent 60%); }
.aurora-2 { position: absolute; top: -50%; right: -25%; width: 120%; height: 200%; opacity: 0.05; animation: aurora2 25s ease-in-out infinite; background: radial-gradient(ellipse at center, hsl(210 100% 50%), transparent 60%); }
.grid-bg { position: absolute; inset: 0; opacity: 0.04; background-image: linear-gradient(hsl(var(--gold)) 1px, transparent 1px), linear-gradient(90deg, hsl(var(--gold)) 1px, transparent 1px); background-size: 60px 60px; }
.grid-pulse { position: absolute; inset: 0; animation: gridPulse 8s ease-in-out infinite; opacity: 0.06; background: radial-gradient(circle at 50% 50%, hsl(var(--gold)), transparent 50%); }
.spotlight-1 { position: absolute; width: 600px; height: 600px; top: -12rem; right: -12rem; animation: spotlight 12s ease-in-out infinite; opacity: 0.08; background: radial-gradient(circle, hsl(var(--gold)), transparent 60%); }
.spotlight-2 { position: absolute; width: 500px; height: 500px; bottom: -8rem; left: -8rem; animation: spotlight2 15s ease-in-out infinite; opacity: 0.06; background: radial-gradient(circle, hsl(210 100% 60%), transparent 60%); }
.particle { position: absolute; border-radius: 50%; animation: particle var(--dur, 12s) ease-in-out infinite; }

/* ===== NAVBAR ===== */
.navbar { position: fixed; top: 0; left: 0; right: 0; z-index: 50; }
.navbar-inner { display: flex; align-items: center; justify-content: space-between; padding: 1rem; }
.logo-box { width: 2.25rem; height: 2.25rem; border-radius: var(--radius); display: flex; align-items: center; justify-content: center; }
.logo-text { font-family: 'Space Grotesk', sans-serif; font-size: 1.25rem; font-weight: 700; color: hsl(var(--fg)); }
.logo-text span { color: hsl(var(--gold)); }
.nav-links { display: none; align-items: center; gap: 2rem; }
.nav-links a { font-size: 0.875rem; color: hsl(var(--muted-fg)); transition: color 0.2s; }
.nav-links a:hover { color: hsl(var(--fg)); }
.nav-cta { padding: 0.625rem 1.25rem; border-radius: var(--radius); font-family: 'Space Grotesk', sans-serif; font-weight: 600; font-size: 0.875rem; border: none; cursor: pointer; }
.hamburger { display: block; background: none; border: none; color: hsl(var(--fg)); cursor: pointer; }
.mobile-menu { display: none; flex-direction: column; gap: 1rem; padding: 1rem; border-top: 1px solid hsl(var(--border) / 0.3); }
.mobile-menu.open { display: flex; }
@media (min-width: 768px) {
  .nav-links { display: flex; }
  .hamburger { display: none; }
}

/* ===== HERO ===== */
.hero { position: relative; min-height: 100vh; display: flex; align-items: center; justify-content: center; overflow: hidden; }
.hero-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero-overlay-1 { position: absolute; inset: 0; background: linear-gradient(to right, hsl(var(--bg)), hsl(var(--bg) / 0.85), hsl(var(--bg) / 0.5)); }
.hero-overlay-2 { position: absolute; inset: 0; background: linear-gradient(to top, hsl(var(--bg)), transparent, hsl(var(--bg) / 0.4)); }
.hero-content { position: relative; z-index: 10; padding: 6rem 1rem 4rem; max-width: 42rem; }
.hero h1 { font-size: 2.25rem; font-weight: 700; line-height: 1.15; margin-bottom: 1.5rem; color: hsl(var(--fg)); }
.hero p { font-size: 1.125rem; color: hsl(var(--muted-fg)); margin-bottom: 2rem; line-height: 1.7; max-width: 36rem; }
.hero p strong { color: hsl(var(--fg)); }
.hero-buttons { display: flex; flex-direction: column; gap: 1rem; margin-bottom: 2.5rem; }
.hero-social { display: flex; align-items: center; gap: 1.5rem; font-size: 0.875rem; color: hsl(var(--muted-fg)); }
.hero-stars { display: flex; gap: 0.125rem; }
.hero-stars svg { width: 1rem; height: 1rem; fill: hsl(var(--gold)); color: hsl(var(--gold)); }
.hero-divider { width: 1px; height: 1rem; background: hsl(var(--border)); }
@media (min-width: 640px) {
  .hero h1 { font-size: 3rem; }
  .hero-buttons { flex-direction: row; }
}
@media (min-width: 1024px) { .hero h1 { font-size: 3.75rem; } }

/* ===== SECTIONS ===== */
.section { padding: 6rem 0; position: relative; overflow: hidden; }
.section-header { text-align: center; margin-bottom: 4rem; }
.section-label { font-size: 0.875rem; font-weight: 500; color: hsl(var(--gold)); text-transform: uppercase; letter-spacing: 0.15em; }
.section-title { font-family: 'Space Grotesk', sans-serif; font-size: 1.875rem; font-weight: 700; margin-top: 0.75rem; color: hsl(var(--fg)); }
.section-subtitle { margin-top: 1rem; color: hsl(var(--muted-fg)); max-width: 32rem; margin-left: auto; margin-right: auto; }
@media (min-width: 640px) { .section-title { font-size: 2.25rem; } }

/* Features grid */
.features-grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
.feature-card { border-radius: 0.75rem; padding: 1.5rem; transition: all 0.3s; }
.feature-card:hover { border-color: hsl(var(--gold) / 0.3); box-shadow: 0 10px 40px -10px hsl(var(--gold) / 0.3); }
.feature-icon { width: 3rem; height: 3rem; border-radius: 0.5rem; background: hsl(var(--gold) / 0.1); display: flex; align-items: center; justify-content: center; margin-bottom: 1rem; }
.feature-icon svg { width: 1.5rem; height: 1.5rem; color: hsl(var(--gold)); }
.feature-card h3 { font-family: 'Space Grotesk', sans-serif; font-size: 1.125rem; font-weight: 600; color: hsl(var(--fg)); margin-bottom: 0.5rem; }
.feature-card p { font-size: 0.875rem; color: hsl(var(--muted-fg)); line-height: 1.6; }
@media (min-width: 640px) { .features-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .features-grid { grid-template-columns: repeat(3, 1fr); } }

/* Two-col layout */
.two-col { display: grid; gap: 3rem; align-items: center; }
.img-wrapper { position: relative; }
.img-wrapper .img-glow { position: absolute; inset: -1rem; background: hsl(var(--gold) / 0.05); border-radius: 1rem; filter: blur(48px); }
.img-wrapper img { position: relative; border-radius: 1rem; border: 1px solid hsl(var(--border) / 0.5); }
@media (min-width: 1024px) { .two-col { grid-template-columns: repeat(2, 1fr); } }

.device-tags { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-bottom: 2rem; }
.device-tag { padding: 0.5rem 1rem; border-radius: 9999px; border: 1px solid hsl(var(--border)); background: hsl(var(--secondary) / 0.5); font-size: 0.875rem; color: hsl(var(--secondary-fg)); font-weight: 500; }
.check-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0.75rem; }
.check-item { display: flex; align-items: center; gap: 0.5rem; }
.check-dot { width: 1.25rem; height: 1.25rem; border-radius: 50%; background: hsl(var(--gold) / 0.2); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.check-dot svg { width: 0.75rem; height: 0.75rem; color: hsl(var(--gold)); }
.check-item span { font-size: 0.875rem; color: hsl(var(--muted-fg)); }

.points-list { display: flex; flex-direction: column; gap: 0.75rem; margin-bottom: 2rem; }
.point-item { display: flex; align-items: center; gap: 0.75rem; }
.point-dot { width: 1.5rem; height: 1.5rem; border-radius: 50%; background: hsl(var(--gold) / 0.2); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.point-dot svg { width: 1rem; height: 1rem; color: hsl(var(--gold)); }
.point-item span { color: hsl(var(--fg)); font-weight: 500; }

/* Stats */
.stats-glass { border-radius: 1rem; padding: 2rem 3rem; }
.stats-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem; }
.stat-item { text-align: center; }
.stat-value { font-family: 'Space Grotesk', sans-serif; font-size: 1.875rem; font-weight: 700; margin-bottom: 0.5rem; }
.stat-label { font-size: 0.875rem; color: hsl(var(--muted-fg)); }
@media (min-width: 768px) { .stats-grid { grid-template-columns: repeat(4, 1fr); } .stat-value { font-size: 2.25rem; } }

/* Testimonials */
.testimonials-grid { display: grid; gap: 1.5rem; }
.testimonial-card { border-radius: 0.75rem; padding: 1.5rem; display: flex; flex-direction: column; }
.testimonial-stars { display: flex; gap: 0.25rem; margin-bottom: 1rem; }
.testimonial-stars svg { width: 1rem; height: 1rem; fill: hsl(var(--gold)); color: hsl(var(--gold)); }
.testimonial-text { color: hsl(var(--fg)); line-height: 1.6; margin-bottom: 1.5rem; flex: 1; }
.testimonial-author { display: flex; align-items: center; gap: 0.75rem; }
.testimonial-avatar { width: 2.5rem; height: 2.5rem; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-family: 'Space Grotesk', sans-serif; font-weight: 700; color: hsl(var(--primary-fg)); }
.testimonial-name { font-family: 'Space Grotesk', sans-serif; font-weight: 600; color: hsl(var(--fg)); font-size: 0.875rem; }
.testimonial-loc { font-size: 0.75rem; color: hsl(var(--muted-fg)); }
@media (min-width: 768px) { .testimonials-grid { grid-template-columns: repeat(3, 1fr); } }

/* Pricing */
.pricing-grid { display: grid; gap: 1.5rem; max-width: 56rem; margin: 0 auto; }
.plan-card { position: relative; border-radius: 1rem; padding: 1.5rem; display: flex; flex-direction: column; }
.plan-card.popular { border: 2px solid hsl(var(--gold)); box-shadow: 0 10px 40px -10px hsl(var(--gold) / 0.3); background: hsl(var(--card)); }
.plan-badge { position: absolute; top: -0.75rem; left: 50%; transform: translateX(-50%); padding: 0.25rem 1rem; border-radius: 9999px; font-size: 0.75rem; font-family: 'Space Grotesk', sans-serif; font-weight: 700; white-space: nowrap; }
.plan-badge.gold { background: linear-gradient(135deg, hsl(var(--gold)), hsl(var(--gold-dark))); color: hsl(var(--primary-fg)); }
.plan-badge.outline { border: 1px solid hsl(var(--gold) / 0.3); background: hsl(var(--gold) / 0.1); color: hsl(var(--gold)); }
.plan-name { font-family: 'Space Grotesk', sans-serif; font-size: 1.125rem; font-weight: 600; color: hsl(var(--fg)); margin-bottom: 1rem; margin-top: 0.5rem; }
.plan-price { margin-bottom: 1.5rem; }
.plan-price span:first-child { font-family: 'Space Grotesk', sans-serif; font-size: 2.25rem; font-weight: 700; color: hsl(var(--fg)); }
.plan-price span:last-child { font-size: 0.875rem; color: hsl(var(--muted-fg)); }
.plan-features { display: flex; flex-direction: column; gap: 0.75rem; margin-bottom: 2rem; flex: 1; }
.plan-feature { display: flex; align-items: center; gap: 0.5rem; }
.plan-feature svg { width: 1rem; height: 1rem; color: hsl(var(--gold)); flex-shrink: 0; }
.plan-feature span { font-size: 0.875rem; color: hsl(var(--muted-fg)); }
.plan-btn { width: 100%; text-align: center; padding: 0.75rem; border-radius: var(--radius); font-family: 'Space Grotesk', sans-serif; font-weight: 600; cursor: pointer; transition: opacity 0.2s; border: none; }
.plan-btn:hover { opacity: 0.9; }
.plan-btn.primary { background: linear-gradient(135deg, hsl(var(--gold)), hsl(var(--gold-dark))); color: hsl(var(--primary-fg)); }
.plan-btn.secondary { border: 1px solid hsl(var(--border)); background: hsl(var(--secondary) / 0.5); color: hsl(var(--fg)); }
@media (min-width: 768px) { .pricing-grid { grid-template-columns: repeat(3, 1fr); } }

/* FAQ */
.faq-list { max-width: 48rem; margin: 0 auto; display: flex; flex-direction: column; gap: 0.75rem; }
.faq-item { border-radius: 0.75rem; padding: 0 1.5rem; overflow: hidden; }
.faq-question { width: 100%; display: flex; align-items: center; justify-content: space-between; padding: 1.25rem 0; background: none; border: none; cursor: pointer; font-family: 'Space Grotesk', sans-serif; font-weight: 600; color: hsl(var(--fg)); text-align: left; font-size: 1rem; }
.faq-question svg { width: 1.25rem; height: 1.25rem; color: hsl(var(--muted-fg)); transition: transform 0.3s; flex-shrink: 0; margin-left: 1rem; }
.faq-question.active svg { transform: rotate(180deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.3s ease, padding 0.3s ease; }
.faq-answer.open { max-height: 300px; padding-bottom: 1.25rem; }
.faq-answer p { color: hsl(var(--muted-fg)); line-height: 1.7; }

/* Final CTA */
.cta-radial { position: absolute; inset: 0; background: radial-gradient(ellipse at center, hsl(var(--gold) / 0.08), transparent 70%); }
.cta-content { position: relative; z-index: 10; text-align: center; }
.cta-content h2 { font-size: 1.875rem; font-weight: 700; color: hsl(var(--fg)); margin-bottom: 1rem; max-width: 42rem; margin-left: auto; margin-right: auto; }
.cta-content p { color: hsl(var(--muted-fg)); margin-bottom: 2.5rem; max-width: 32rem; margin-left: auto; margin-right: auto; }
.cta-buttons { display: flex; flex-direction: column; gap: 1rem; justify-content: center; }
@media (min-width: 640px) {
  .cta-content h2 { font-size: 2.25rem; }
  .cta-buttons { flex-direction: row; }
}
@media (min-width: 1024px) { .cta-content h2 { font-size: 3rem; } }

/* Footer */
.footer { padding: 2rem 0; border-top: 1px solid hsl(var(--border) / 0.3); }
.footer-inner { display: flex; flex-direction: column; align-items: center; justify-content: space-between; gap: 1rem; }
.footer-copy { font-size: 0.75rem; color: hsl(var(--muted-fg)); }
@media (min-width: 640px) { .footer-inner { flex-direction: row; } }

/* Cinema floating icons container */
.cinema-icons-layer { position: absolute; inset: 0; overflow: hidden; pointer-events: none; }
.cinema-icon { position: absolute; pointer-events: none; opacity: 0.15; color: hsl(var(--gold)); }

/* SVG icons inline */
.icon { display: inline-block; width: 1em; height: 1em; vertical-align: -0.125em; }

/* ===== ELEMENTOR OVERRIDES ===== */
/* Reset Elementor's default pink/magenta hover colors */
.navbar a,
.navbar a:hover,
.navbar a:focus,
.navbar a:active,
.navbar a:visited,
.nav-links a,
.nav-links a:hover,
.nav-links a:focus,
.nav-links a:active,
.mobile-menu a,
.mobile-menu a:hover,
.mobile-menu a:focus,
.mobile-menu a:active {
  color: hsl(var(--muted-fg)) !important;
  text-decoration: none !important;
}
.nav-links a:hover,
.mobile-menu a:hover {
  color: hsl(var(--fg)) !important;
}
.nav-cta,
.nav-cta:hover,
.nav-cta:focus,
.nav-cta:active,
.nav-cta:visited {
  color: hsl(var(--primary-fg)) !important;
  background: linear-gradient(135deg, hsl(var(--gold)), hsl(var(--gold-dark))) !important;
}
.btn-primary,
.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active,
.btn-primary:visited,
a.btn-primary,
a.btn-primary:hover,
a.btn-primary:focus,
a.btn-primary:active,
a.btn-primary:visited {
  color: hsl(var(--primary-fg)) !important;
  background: linear-gradient(135deg, hsl(var(--gold)), hsl(var(--gold-dark))) !important;
  text-decoration: none !important;
}
.btn-secondary,
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary:active,
.btn-secondary:visited,
a.btn-secondary,
a.btn-secondary:hover,
a.btn-secondary:focus,
a.btn-secondary:active,
a.btn-secondary:visited {
  color: hsl(var(--fg)) !important;
  background: hsl(var(--secondary) / 0.5) !important;
  text-decoration: none !important;
}
.btn-secondary:hover,
a.btn-secondary:hover {
  background: hsl(var(--secondary)) !important;
}
.plan-btn.primary,
.plan-btn.primary:hover,
.plan-btn.primary:focus,
.plan-btn.primary:active,
a.plan-btn.primary,
a.plan-btn.primary:hover,
a.plan-btn.primary:focus,
a.plan-btn.primary:active {
  color: hsl(var(--primary-fg)) !important;
  background: linear-gradient(135deg, hsl(var(--gold)), hsl(var(--gold-dark))) !important;
  text-decoration: none !important;
}
.plan-btn.secondary,
.plan-btn.secondary:hover,
.plan-btn.secondary:focus,
.plan-btn.secondary:active,
a.plan-btn.secondary,
a.plan-btn.secondary:hover,
a.plan-btn.secondary:focus,
a.plan-btn.secondary:active {
  color: hsl(var(--fg)) !important;
  text-decoration: none !important;
}
.faq-question,
.faq-question:hover,
.faq-question:focus,
.faq-question:active {
  color: hsl(var(--fg)) !important;
  background: none !important;
  outline: none !important;
}
/* General link reset inside our widget */
.hero a,
.hero a:hover,
.hero a:focus,
.hero a:active,
.hero a:visited,
.section a,
.section a:hover,
.section a:focus,
.section a:active,
.section a:visited,
.footer a,
.footer a:hover,
.footer a:focus,
.footer a:active,
.footer a:visited {
  text-decoration: none !important;
}
/* Elementor widget wrapper reset */
.elementor-widget-container a,
.elementor-widget-container a:hover,
.elementor-widget-container a:focus,
.elementor-widget-container a:active,
.elementor-widget-container a:visited {
  color: inherit !important;
  text-decoration: none !important;
}/* End custom CSS */