:root {
  --neon-green: #39ff14;
  --black: #000000;
  --dark-gray: #0a0a0a;
  --white: #ffffff;
  --gray: #999999;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", sans-serif;
  background-color: var(--black);
  color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
  cursor: none !important;
}

.custom-cursor {
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 10001;
  transform: translate(-10%, -5%);
  transition: transform 0.4s ease, opacity 0.3s ease;
  filter: drop-shadow(0 0 6px #39ff14);
}

.custom-cursor svg {
  display: block;
}

.cursor-path {
  transition: fill 0.3s ease;
}

body {
  cursor: none;
}

input,
textarea {
  cursor: text !important;
}

a,
button,
* {
  cursor: none !important;
}

.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(57, 255, 20, 0.1);
}

.nav-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-img {
  width: 160px;
  height: 40px;
  background-color: transparent;
  border-radius: 0;
  object-fit: contain;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 40px;
}

.nav-link {
  position: relative;
  color: var(--white);
  text-decoration: none;
  font-weight: 500;
  font-size: 15px;
  transition: var(--transition);
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--neon-green);
  transition: var(--transition);
}

.nav-link:hover::after {
  width: 100%;
}

.btn-download {
  padding: 12px 28px;
  background-color: transparent;
  color: var(--white);
  border: 2px solid var(--neon-green);
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  transition: var(--transition);
  white-space: nowrap;
}

.btn-download:hover {
  background-color: var(--neon-green);
  color: var(--black);
  transform: translateY(-2px);
}

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(0, 0, 0, 0.5) 0%,
    rgba(0, 0, 0, 0.7) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 10;
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 80px;
  align-items: center;
  padding: 140px 0 80px;
  width: 100%;
}

.hero-left {
  max-width: 80%;
  margin-left: 0;
}

.hero-title {
  font-family: "Orbitron", sans-serif;
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 24px;
  color: var(--white);
}

.hero-tagline {
  font-size: clamp(16px, 2vw, 20px);
  color: var(--gray);
  margin-bottom: 40px;
  font-weight: 400;
}

.btn-primary {
  display: inline-block;
  padding: 18px 48px;
  background-color: var(--neon-green);
  color: var(--black);
  text-decoration: none;
  font-weight: 700;
  font-size: 16px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  transition: var(--transition);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 40px rgba(57, 255, 20, 0.4);
}

.hero-right {
  display: flex;
  justify-content: center;
  align-items: center;
}

.playstore-wrapper {
  position: relative;
}

.playstore-link {
  display: block;
}

.playstore-badge {
  width: 220px;
  height: auto;
  transition: var(--transition);
}

.playstore-link:hover .playstore-badge {
  content: url("assets/qr.webp");
  transform: scale(1.5);
}

.qr-popup {
  position: absolute;
  top: -180px;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--white);
  padding: 15px;
  border-radius: 12px;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
  visibility: hidden; /*temporary*/
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.playstore-wrapper:hover .qr-popup {
  opacity: 1;
  pointer-events: all;
  visibility: hidden;
}

.qr-code {
  width: 150px;
  height: 150px;
  display: block;
}

.about {
  padding: 100px 0;
  background-color: var(--dark-gray);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-visual {
  width: 100%;
  height: 500px;
  background-size: cover;
  background-position: center;
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(57, 255, 20, 0.1);
}
.about-visual {
  width: 100%;
  height: 500px;
  background-size: cover;
  background-position: center;
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(57, 255, 20, 0.1);
}

.image-comparison-container {
  position: relative;
  width: 100%;
  height: 500px;
  overflow: hidden;
  border-radius: 16px;
  background-color: #000;
}

.comparison-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  user-select: none;
  pointer-events: none;
}

.blur-img {
  filter: url(#motion-blur-horizontal);
  z-index: 1;
}

.comparison-reveal {
  position: absolute;
  top: 0;
  left: 0;
  width: 50%;
  height: 100%;
  overflow: hidden;
  z-index: 2;
}

.clear-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 500px;
  height: 500px;
  object-fit: cover;
}

.slider-line {
  position: absolute;
  top: 0;
  left: 50%;
  width: 3px;
  height: 100%;
  background: linear-gradient(
    to bottom,
    transparent 0%,
    var(--neon-green) 20%,
    var(--neon-green) 80%,
    transparent 100%
  );
  z-index: 3;
  box-shadow: 0 0 20px var(--neon-green), 0 0 40px var(--neon-green),
    0 0 60px rgba(57, 255, 20, 0.5);
  transform: translateX(-50%);
}

.section-title {
  font-family: "Orbitron", sans-serif;
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 900;
  margin-bottom: 24px;
  color: var(--neon-green);
}

.section-title.center {
  text-align: center;
  margin-bottom: 60px;
}

.about-text {
  font-size: clamp(16px, 1.5vw, 18px);
  color: var(--gray);
  margin-bottom: 32px;
  line-height: 1.8;
}

.about-features {
  list-style: none;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: clamp(15px, 1.5vw, 17px);
  margin-bottom: 20px;
  color: var(--white);
}

.feature-icon {
  width: 28px;
  height: 28px;
  background-color: var(--neon-green);
  color: var(--black);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  flex-shrink: 0;
}

.steps {
  padding: 100px 0;
  background-color: var(--black);
}

.steps-timeline {
  position: relative;
  margin-top: 60px;
}

.timeline-line {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 4px;
  background-color: rgba(57, 255, 20, 0.2);
  border-radius: 2px;
}

.timeline-progress {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0%;
  height: 4px;
  background-color: var(--neon-green);
  border-radius: 2px;
  transition: width 1s ease-out;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  margin-top: 40px;
}

.step-card {
  position: relative;
  background-color: var(--dark-gray);
  padding: 40px 28px;
  border-radius: 16px;
  text-align: center;
  border: 1px solid rgba(57, 255, 20, 0.1);
  transition: var(--transition);
}

.step-card:hover {
  transform: translateY(-8px);
  border-color: var(--neon-green);
  box-shadow: 0 20px 60px rgba(57, 255, 20, 0.2);
}

.step-number {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 50px;
  background-color: var(--neon-green);
  color: var(--black);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Orbitron", sans-serif;
  font-weight: 900;
  font-size: 16px;
}

.step-icon {
  color: var(--neon-green);
  margin: 20px 0;
}

.step-title {
  font-family: "Orbitron", sans-serif;
  font-size: clamp(16px, 1.8vw, 20px);
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--white);
}

.step-desc {
  font-size: clamp(14px, 1.3vw, 15px);
  color: var(--gray);
}

.pro {
  position: relative;
  padding: 120px 0;
  overflow: hidden;
}

.pro-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
}

.pro-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(0, 0, 0, 0.6) 0%,
    rgba(0, 0, 0, 0.85) 100%
  );
}

.pro-content {
  position: relative;
  z-index: 10;
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.pro-title {
  font-family: "Orbitron", sans-serif;
  font-size: clamp(36px, 6vw, 72px);
  font-weight: 900;
  color: var(--neon-green);
  margin-bottom: 16px;
  letter-spacing: 4px;
}
.pro-tagline {
  font-size: clamp(14px, 1.8vw, 16px);
  color: var(--gray);
  margin-bottom: 20px;
  font-weight: 400;
}

.pro-subtitle {
  font-size: clamp(18px, 2.5vw, 24px);
  color: var(--white);
  margin-bottom: 10px;
  font-weight: 300;
}

.pro-form {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.pro-input {
  flex: 1;
  min-width: 250px;
  max-width: 400px;
  padding: 18px 24px;
  background-color: rgba(255, 255, 255, 0.05);
  border: 2px solid rgba(57, 255, 20, 0.3);
  border-radius: 8px;
  color: var(--white);
  font-size: 16px;
  font-family: "Inter", sans-serif;
  transition: var(--transition);
}

.pro-input:focus {
  outline: none;
  border-color: var(--neon-green);
  background-color: rgba(255, 255, 255, 0.08);
}

.pro-input::placeholder {
  color: var(--gray);
}

.faq-section {
  padding: 60px 20px;
  background: #000;
  position: relative;
  z-index: 2;
}

.faq-section .section-title {
  text-align: center;
  font-size: 2.2rem;
  color: #39ff14;
  margin-bottom: 40px;
  font-weight: 600;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 15px;
  max-width: 1100px;
  margin: 0 auto;
}

.faq-card {
  background: rgba(57, 255, 20, 0.03);
  border: 1px solid rgba(57, 255, 20, 0.15);
  border-radius: 12px;
  padding: 20px;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  cursor: pointer;
}

.faq-card:hover {
  border-color: #39ff14;
  background: rgba(57, 255, 20, 0.06);
  transform: translateY(-2px);
}

.faq-number {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 2.5rem;
  font-weight: 700;
  color: rgba(57, 255, 20, 0.1);
  line-height: 1;
  user-select: none;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 10px;
}

.faq-question h3 {
  color: #fff;
  font-size: 1rem;
  font-weight: 500;
  margin: 0;
  flex: 1;
  line-height: 1.4;
}

.faq-toggle {
  font-size: 1.5rem;
  color: #39ff14;
  font-weight: 300;
  transition: transform 0.3s ease;
  min-width: 20px;
  text-align: center;
  margin-top: -3px;
}

.faq-card.active .faq-toggle {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-card.active .faq-answer {
  max-height: 200px;
  margin-top: 5px;
}

.faq-answer p {
  color: #aaa;
  line-height: 1.6;
  margin: 0;
  font-size: 0.9rem;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(10px);
  border-top: 2px solid #39ff14;
  padding: 20px;
  z-index: 10000;
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

.cookie-banner.show {
  transform: translateY(0);
}

.cookie-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.cookie-content p {
  color: #fff;
  margin: 0;
  font-size: 0.95rem;
  flex: 1;
}

.cookie-content a {
  color: #39ff14;
  text-decoration: underline;
}

.cookie-buttons {
  display: flex;
  gap: 10px;
}

.cookie-btn {
  padding: 10px 25px;
  border: none;
  border-radius: 6px;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.cookie-btn.accept {
  background: #39ff14;
  color: #000;
}

.cookie-btn.accept:hover {
  background: #2ecc11;
  transform: scale(1.05);
}

.cookie-btn.decline {
  background: transparent;
  border: 1px solid #666;
  color: #fff;
}

.cookie-btn.decline:hover {
  border-color: #39ff14;
  color: #39ff14;
}

.footer {
  background-color: var(--dark-gray);
  padding: 80px 0 0;
}

.footer-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  margin-bottom: 60px;
}

.footer-brand {
  margin-bottom: 32px;
}

.footer-desc {
  color: var(--gray);
  font-size: clamp(14px, 1.3vw, 15px);
  line-height: 1.8;
  margin-top: 24px;
  max-width: 500px;
}

.footer-contact {
  margin-top: 32px;
}

.footer-email {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
  color: var(--gray);
  flex-wrap: wrap;
}

.footer-email svg {
  color: var(--neon-green);
  flex-shrink: 0;
}

.footer-email a {
  color: var(--white);
  text-decoration: none;
  transition: var(--transition);
  word-break: break-all;
}

.footer-email a:hover {
  color: var(--neon-green);
}

.footer-social {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.social-link {
  width: 44px;
  height: 44px;
  background-color: rgba(57, 255, 20, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--neon-green);
  transition: var(--transition);
}

.social-link:hover {
  background-color: var(--neon-green);
  color: var(--black);
  transform: translateY(-4px);
}

.footer-form-title {
  font-family: "Orbitron", sans-serif;
  font-size: clamp(20px, 2.5vw, 24px);
  font-weight: 700;
  margin-bottom: 24px;
  color: var(--neon-green);
}

.footer-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-input,
.form-textarea {
  padding: 16px 20px;
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(57, 255, 20, 0.2);
  border-radius: 8px;
  color: var(--white);
  font-size: 15px;
  font-family: "Inter", sans-serif;
  transition: var(--transition);
  width: 100%;
}

.form-input:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--neon-green);
  background-color: rgba(255, 255, 255, 0.08);
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: var(--gray);
}

.form-textarea {
  resize: vertical;
  min-height: 120px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 32px 0;
  border-top: 1px solid rgba(57, 255, 20, 0.1);
  flex-wrap: wrap;
  gap: 20px;
}

.copyright {
  color: var(--gray);
  font-size: 14px;
}

.footer-links {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
}

.footer-link {
  color: var(--gray);
  text-decoration: none;
  font-size: 14px;
  transition: var(--transition);
  white-space: nowrap;
}

.footer-link:hover {
  color: var(--neon-green);
}
.a11y-fab {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border-color: var(--neon-green);
  background: #000000;
  border: 2px solid var(--neon-green);
  box-shadow: 0 4px 20px rgba(30, 180, 0, 0.4);
  cursor: pointer;
  z-index: 9998;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  align-items: center;
  justify-content: center;
}

.a11y-fab:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 6px rgb(0, 158, 53);
}

.a11y-fab svg {
  color: var(--neon-green);
  width: 28px;
  height: 28px;
}

.a11y-fab.active {
  background: var(--neon-green);
  box-shadow: 0 4px 20px rgba(80, 255, 64, 0.4);
  border-color: var(--black);
}
.a11y-fab.active svg {
  color: rgb(0, 0, 0);
}

.a11y-panel {
  position: fixed;
  bottom: 100px;
  right: 30px;
  width: 340px;
  max-height: 80vh;
  overflow-y: auto;
  background: rgba(0, 0, 0, 0.95);
  border: 2px solid var(--neon-green, #00ff85);
  border-radius: 16px;
  padding: 20px;
  z-index: 9999;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.8);
  opacity: 0;
  transform: translateY(20px) scale(0.9);
  pointer-events: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  backdrop-filter: blur(10px);
}

.a11y-panel.show {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: all;
}

.a11y-panel::-webkit-scrollbar {
  width: 6px;
}

.a11y-panel::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.05);
}

.a11y-panel::-webkit-scrollbar-thumb {
  background: var(--neon-green, #00ff85);
  border-radius: 3px;
}

.a11y-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(0, 255, 133, 0.2);
}

.a11y-header h3 {
  margin: 0;
  color: var(--neon-green, #00ff85);
  font-size: 18px;
  font-weight: 600;
}

.a11y-close {
  background: none;
  border: none;
  color: #fff;
  font-size: 28px;
  cursor: pointer;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.2s;
  line-height: 1;
}

.a11y-close:hover {
  color: var(--neon-green, #00ff85);
}

.a11y-option {
  margin-bottom: 20px;
}

.a11y-option > label:not(.toggle-label) {
  display: block;
  color: #fff;
  font-size: 13px;
  margin-bottom: 8px;
  font-weight: 500;
}

.toggle-label {
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  user-select: none;
}

.toggle-input {
  display: none;
}

.toggle-slider {
  position: relative;
  width: 50px;
  height: 26px;
  background: #333;
  border-radius: 26px;
  transition: background 0.3s;
  flex-shrink: 0;
}

.toggle-slider::before {
  content: "";
  position: absolute;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #fff;
  top: 2px;
  left: 2px;
  transition: transform 0.3s;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.toggle-input:checked + .toggle-slider {
  background: var(--neon-green, #00ff85);
}

.toggle-input:checked + .toggle-slider::before {
  transform: translateX(24px);
}

.toggle-text {
  color: #fff;
  font-size: 14px;
  flex: 1;
}

.custom-select {
  position: relative;
  width: 100%;
}

.select-button {
  width: 100%;
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.05);
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 10px;
  color: #fff;
  font-size: 14px;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s ease;
  outline: none;
}

.select-button:hover:not(:disabled) {
  border-color: var(--neon-green, #00ff85);
  background: rgba(0, 255, 133, 0.1);
}

.select-button:focus:not(:disabled) {
  border-color: var(--neon-green, #00ff85);
  box-shadow: 0 0 0 3px rgba(0, 255, 133, 0.2);
}

.select-button:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.selected-value {
  flex: 1;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  padding-right: 10px;
}

.select-arrow {
  flex-shrink: 0;
  transition: transform 0.3s ease;
  color: var(--neon-green, #00ff85);
}

.select-button[aria-expanded="true"] .select-arrow {
  transform: rotate(180deg);
}

.select-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  right: 0;
  max-height: 200px;
  overflow-y: auto;
  background: rgba(0, 0, 0, 0.98);
  border: 2px solid var(--neon-green, #00ff85);
  border-radius: 10px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.8), 0 0 20px rgba(0, 255, 133, 0.2);
  z-index: 1000;
  opacity: 1;
  transform: translateY(0);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  list-style: none;
  padding: 8px 0;
  margin: 0;
}

.select-dropdown.hidden {
  opacity: 0;
  transform: translateY(-10px);
  pointer-events: none;
}

.select-dropdown::-webkit-scrollbar {
  width: 8px;
}

.select-dropdown::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 4px;
  margin: 8px 0;
}

.select-dropdown::-webkit-scrollbar-thumb {
  background: var(--neon-green, #00ff85);
  border-radius: 4px;
}

.select-dropdown::-webkit-scrollbar-thumb:hover {
  background: #00cc6a;
}

.select-dropdown li {
  padding: 12px 16px;
  cursor: pointer;
  transition: all 0.2s ease;
  color: #fff;
  font-size: 13px;
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
}

.select-dropdown li:hover:not(.voice-group-header) {
  background: rgba(0, 255, 133, 0.15);
  padding-left: 20px;
}

.select-dropdown li.selected {
  background: rgba(0, 255, 133, 0.1);
  color: var(--neon-green, #00ff85);
  font-weight: 500;
  padding-left: 32px;
}

.select-dropdown li.selected::before {
  content: "✓";
  position: absolute;
  left: 12px;
  font-weight: bold;
}

.voice-name {
  font-weight: 500;
  flex: 1;
}

.voice-lang {
  color: rgba(255, 255, 255, 0.6);
  font-size: 11px;
  margin-left: auto;
}

.a11y-range {
  width: 100%;
  height: 6px;
  appearance: none;
  -webkit-appearance: none;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 3px;
  outline: none;
  cursor: pointer;
  transition: background 0.3s;
}

.a11y-range:hover:not(:disabled) {
  background: rgba(255, 255, 255, 0.15);
}

.a11y-range:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.a11y-range::-webkit-slider-thumb {
  appearance: none;
  -webkit-appearance: none;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--neon-green, #00ff85);
  cursor: pointer;
  transition: transform 0.2s;
  box-shadow: 0 2px 8px rgba(0, 255, 133, 0.4);
}

.a11y-range::-webkit-slider-thumb:hover {
  transform: scale(1.2);
  box-shadow: 0 2px 12px rgba(0, 255, 133, 0.6);
}

.a11y-range::-moz-range-thumb {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--neon-green, #00ff85);
  cursor: pointer;
  border: none;
  box-shadow: 0 2px 8px rgba(0, 255, 133, 0.4);
}

.stop-btn {
  width: 100%;
  padding: 12px 16px;
  background: rgba(255, 68, 68, 0.15);
  border: 2px solid rgba(255, 68, 68, 0.5);
  border-radius: 10px;
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  outline: none;
}

.stop-btn:hover:not(:disabled) {
  background: rgba(138, 255, 120, 0.25);
  border-color: #009905;
  transform: scale(1.02);
}

.stop-btn:active:not(:disabled) {
  transform: scale(0.98);
}

.stop-btn:disabled {
  opacity: 0.3;
  cursor: not-allowed;
  transform: scale(1);
}

.stop-btn.active {
  background: rgba(255, 68, 68, 0.3);
  border-color: #ff4444;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(255, 68, 68, 0.4);
  }
  50% {
    box-shadow: 0 0 0 8px rgba(255, 68, 68, 0);
  }
}

.a11y-status {
  margin-top: 15px;
  padding: 12px;
  background: rgba(0, 255, 133, 0.1);
  border-left: 3px solid var(--neon-green, #00ff85);
  border-radius: 4px;
  color: #fff;
  font-size: 12px;
  line-height: 1.4;
  transition: all 0.3s;
}
@media (max-width: 1200px) {
  .container {
    padding: 0 30px;
  }

  .hero-content {
    grid-template-columns: 1fr 250px;
    gap: 50px;
  }

  .about-grid {
    gap: 60px;
  }

  .about-visual {
    height: 450px;
  }
}

@media (max-width: 992px) {
  body,
  a,
  button,
  * {
    cursor: auto !important;
  }

  .custom-cursor {
    display: none !important;
  }

  .container {
    padding: 0 24px;
  }

  .nav-links {
    gap: 24px;
  }

  .hero-title {
    text-align: center;
    font-size: clamp(80px, 5vw, 64px);
  }

  .hero-tagline {
    font-size: clamp(30px, 2vw, 20px);
    text-align: center;
  }

  .hero-content {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 120px 0 60px;
  }

  .hero-right {
    justify-content: center;
    text-align: center;
  }

  .playstore-badge {
    display: block;
    margin: 0 auto;
  }

  .hero-left {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .qr-popup {
    display: none;
  }

  .section-title {
    text-align: center;
  }

  .about-text {
    text-align: center;
  }

  .about {
    padding: 80px 0;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .about-visual {
    height: 400px;
    order: -1;
  }

  .about-right {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .steps {
    padding: 80px 0;
  }

  .steps-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 24px;
  }

  .timeline-line,
  .timeline-progress {
    width: 90%;
  }

  .pro {
    padding: 100px 0;
  }
  .faq-card:nth-child(9) {
    grid-column: 1 / -1;
    justify-self: center;
    width: 100%;
    max-width: 500px;
  }

  .footer-content {
    gap: 60px;
  }
}

@media (max-width: 768px) {
  .container {
    padding: 0 20px;
  }

  .hero-bg {
    background-image: url("assets/bg-desktop.webp") !important;
    background-size: cover;
    background-position: center;
  }

  .nav-wrapper {
    padding: 16px 0;
  }

  .logo-img {
    width: 160px;
    height: 40px;
  }

  .nav-links {
    gap: 16px;
  }

  .nav-link {
    display: none;
  }

  .btn-download {
    padding: 10px 20px;
    font-size: 14px;
  }

  .hero {
    min-height: 100vh;
    min-height: 100dvh;
  }

  .hero-left {
    max-width: 100%;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  .hero-left::before {
    content: "";
    display: block;
    width: 200px;
    height: 70px;
    background-image: url("assets/logo-lunox.svg");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    margin-bottom: auto;
    position: absolute;
    top: 60px;
    left: 50%;
    transform: translateX(-50%);
  }

  .hero-title {
    font-size: clamp(45px, 5vw, 64px);
    margin-top: 80px;
  }

  .hero-tagline {
    font-size: clamp(15px, 5vw, 64px);
    margin-bottom: 80px;
  }

  .hero-content {
    padding: 0;
    min-height: 100vh;
    min-height: 100dvh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
  }

  .hero-title {
    margin-bottom: 20px;
  }

  .hero-tagline {
    margin-bottom: 32px;
  }

  .header {
    transform: translateY(-100%);
    transition: transform 0.3s ease;
  }

  .header.scrolled {
    transform: translateY(0);
    background-color: rgba(0, 0, 0, 0.95);
    border-bottom: 1px solid rgba(57, 255, 20, 0.1);
  }

  .btn-primary {
    padding: 16px 40px;
    font-size: 15px;
    width: 100%;
    text-align: center;
  }

  .hero-right {
    display: none;
  }

  .section-title {
    text-align: center;
  }

  .about {
    padding: 60px 0;
  }

  .about-visual {
    height: 300px;
  }

  .about-text {
    text-align: center;
    margin-bottom: 24px;
  }

  .about-right {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .feature-item {
    margin-bottom: 16px;
  }

  .steps {
    padding: 60px 0;
  }

  .section-title.center {
    margin-bottom: 40px;
  }

  .steps-timeline {
    margin-top: 40px;
  }

  .timeline-line,
  .timeline-progress {
    display: none;
  }

  .steps-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .step-card {
    padding: 50px 24px 32px;
  }

  .step-number {
    width: 45px;
    height: 45px;
    font-size: 14px;
  }

  .step-icon svg {
    width: 40px;
    height: 40px;
  }

  .pro {
    padding: 80px 0;
  }

  .pro-title {
    letter-spacing: 2px;
  }

  .pro-subtitle {
    margin-bottom: 32px;
  }

  .pro-form {
    flex-direction: column;
    gap: 12px;
  }

  .pro-input {
    width: 100%;
    min-width: unset;
    max-width: unset;
  }

  .pro-form .btn-primary {
    width: 100%;
  }
  .faq-section {
    padding: 50px 15px;
  }

  .faq-section .section-title {
    font-size: 1.8rem;
  }

  .faq-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .faq-card {
    padding: 18px;
  }

  .faq-number {
    font-size: 2rem;
    top: 12px;
    right: 15px;
  }

  .faq-question h3 {
    font-size: 0.95rem;
  }

  .faq-answer p {
    font-size: 0.88rem;
  }

  .footer {
    padding: 60px 0 0;
  }

  .footer-content {
    display: flex;
    flex-direction: column;
    gap: 32px;
  }

  .footer-desc {
    text-align: center;
  }

  .logo {
    justify-content: center;
  }

  .footer-left {
    display: contents;
  }

  .footer-right {
    display: contents;
  }

  .footer-brand {
    order: 1;
    margin-bottom: 0;
  }

  .footer-form-title {
    text-align: center;
    order: 2;
    margin-top: 8px;
  }

  .footer-form {
    order: 3;
  }

  .footer-contact {
    margin-top: 0;
    display: contents;
  }

  .footer-email {
    order: 4;
    margin-bottom: 0;
    margin-top: 8px;
    justify-content: center;
  }

  .footer-social {
    order: 5;
    justify-content: center;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
    padding: 24px 0;
  }

  .footer-links {
    gap: 20px;
    justify-content: center;
  }
  .cookie-content {
    flex-direction: column;
    text-align: center;
  }

  .cookie-buttons {
    width: 100%;
    justify-content: center;
  }

  .a11y-panel {
    right: 15px;
    left: 15px;
    width: auto;
    bottom: 90px;
    max-height: 70vh;
  }

  .a11y-fab {
    right: 15px;
    bottom: 20px;
    width: 50px;
    height: 50px;
  }

  .a11y-fab svg {
    width: 24px;
    height: 24px;
  }

  .select-dropdown {
    max-height: 200px;
  }

  .select-dropdown li {
    padding: 14px 16px;
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }

  .logo-img {
    width: 160px;
    height: 40px;
  }

  .nav-links {
    gap: 12px;
  }

  .btn-download {
    padding: 8px 16px;
    font-size: 13px;
  }

  .hero-content {
    padding: 90px 0 50px;
  }

  .btn-primary {
    padding: 14px 32px;
    font-size: 14px;
  }

  .about {
    padding: 50px 0;
  }

  .about-visual {
    height: 250px;
    border-radius: 12px;
  }

  .steps {
    padding: 50px 0;
  }

  .steps-grid {
    gap: 24px;
  }

  .step-card {
    padding: 45px 20px 28px;
    border-radius: 12px;
  }

  .step-number {
    width: 40px;
    height: 40px;
    font-size: 13px;
    top: -12px;
  }

  .step-icon {
    margin: 16px 0;
  }

  .step-icon svg {
    width: 36px;
    height: 36px;
  }

  .pro {
    padding: 60px 0;
  }

  .footer {
    padding: 50px 0 0;
  }

  .footer-social {
    gap: 12px;
  }

  .social-link {
    width: 40px;
    height: 40px;
  }

  .social-link svg {
    width: 20px;
    height: 20px;
  }

  .footer-form {
    gap: 12px;
  }

  .form-input,
  .form-textarea {
    padding: 14px 18px;
    font-size: 14px;
  }

  .form-textarea {
    min-height: 100px;
  }

  .footer-bottom {
    padding: 20px 0;
  }

  .copyright {
    font-size: 13px;
  }

  .footer-links {
    gap: 16px;
    flex-direction: column;
    align-items: center;
  }

  .footer-link {
    font-size: 13px;
  }
}

@media (max-width: 360px) {
  .container {
    padding: 0 12px;
  }

  .btn-download {
    font-size: 12px;
    padding: 8px 12px;
  }

  .about-visual {
    height: 220px;
  }
}

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 0%;
  height: 3px;
  background: linear-gradient(90deg, var(--neon-green), #00ff00);
  z-index: 10000;
  transition: width 0.1s;
  box-shadow: 0 0 10px var(--neon-green);
}
