body {
  background: #000;
  color: #ccc;
  font-family: "Inter", sans-serif;
  -webkit-font-smoothing: antialiased;
}

#home {
  position: relative;
}

.particles-canvas {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}
.particles-canvas .background {
  position: absolute;
  inset: 0;
  background: transparent !important;
}

.lp-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 48px;
  position: relative;
  z-index: 2;
}

.lp-section {
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}

.section-glow {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}
.section-glow--red {
  background: radial-gradient(ellipse 60% 50% at 20% 50%, rgba(140, 28, 19, 0.18) 0%, transparent 70%);
}
.section-glow--blue {
  background: radial-gradient(ellipse 60% 50% at 80% 30%, rgba(7, 127, 145, 0.14) 0%, transparent 65%);
}
.section-glow--yellow {
  background: radial-gradient(ellipse 60% 50% at 50% 80%, rgba(230, 151, 29, 0.12) 0%, transparent 65%);
}

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  border: 1px solid rgba(7, 127, 145, 0.4);
  color: var(--blue);
  background: rgba(7, 127, 145, 0.08);
  padding: 6px 16px;
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.section-badge--red {
  border-color: rgba(140, 28, 19, 0.5);
  color: #e05a4e;
  background: rgba(140, 28, 19, 0.1);
}
.section-badge--yellow {
  border-color: rgba(230, 151, 29, 0.4);
  color: var(--yellow);
  background: rgba(230, 151, 29, 0.08);
}

.section-header {
  text-align: center;
  margin-bottom: 64px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.section-heading {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--white);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.03em;
  margin-bottom: 16px;
}

.section-sub {
  font-size: 1.1rem;
  color: var(--light);
  max-width: 560px;
  line-height: 1.7;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s cubic-bezier(0.4, 0, 0.2, 1), transform 0.65s cubic-bezier(0.4, 0, 0.2, 1);
}
.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

.gradient-text {
  background: linear-gradient(135deg, #e05a4e 0%, #E6971D 50%, #bfbfbf 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradient-shift 6s ease infinite;
}

@keyframes gradient-shift {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
.btn-hero-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: "Inter", sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  padding: 13px 28px;
  border-radius: 8px;
  border: 1px solid transparent;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
  letter-spacing: -0.01em;
  background: var(--red);
  color: var(--white) !important;
  border-color: rgba(255, 255, 255, 0.08);
  box-shadow: 0 0 0 0 rgba(140, 28, 19, 0);
}
.btn-hero-primary:hover {
  background: #aa231a;
  box-shadow: 0 0 30px rgba(140, 28, 19, 0.5);
  transform: translateY(-1px);
  color: var(--white) !important;
}

.btn-hero-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: "Inter", sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  padding: 13px 28px;
  border-radius: 8px;
  border: 1px solid transparent;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
  letter-spacing: -0.01em;
  background: rgba(255, 255, 255, 0.05);
  color: var(--light) !important;
  border-color: rgba(255, 255, 255, 0.1);
}
.btn-hero-ghost:hover {
  background: rgba(255, 255, 255, 0.09);
  color: var(--white) !important;
  border-color: rgba(255, 255, 255, 0.2);
}

.btn-nav {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: "Inter", sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  padding: 13px 28px;
  border-radius: 8px;
  border: 1px solid transparent;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
  letter-spacing: -0.01em;
  background: var(--red);
  color: var(--white) !important;
  padding: 9px 20px;
  font-size: 0.875rem;
  border-color: rgba(255, 255, 255, 0.06);
}
.btn-nav:hover {
  background: #aa231a;
  color: var(--white) !important;
}

.btn-nav-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: "Inter", sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  padding: 13px 28px;
  border-radius: 8px;
  border: 1px solid transparent;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
  letter-spacing: -0.01em;
  background: transparent;
  color: var(--light) !important;
  padding: 9px 20px;
  font-size: 0.875rem;
}
.btn-nav-ghost:hover {
  color: var(--white) !important;
}

.w-full {
  width: 100%;
}

.site-nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  padding: 18px 0;
  transition: background 0.3s ease, padding 0.25s ease, border-color 0.3s ease;
  border-bottom: 1px solid transparent;
}
.site-nav.scrolled {
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 12px 0;
  border-bottom-color: rgba(255, 255, 255, 0.06);
}

.nav-inner {
  max-width: 100%;
  margin: 0 auto;
  padding: 0 48px;
  display: flex;
  align-items: center;
  gap: 32px;
  position: relative;
}

.nav-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}
.nav-logo img {
  height: 34px;
  width: auto;
}

.nav-links {
  display: flex;
  gap: 28px;
  list-style: none;
  margin: 0 0 0 auto;
  padding: 0;
}
.nav-links li a {
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.2s;
}
.nav-links li a:hover {
  color: var(--white);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
}

.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
}
.nav-burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}

.nav-buttons {
  display: none;
}

#hero {
  position: relative;
  z-index: 2;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 160px;
  text-align: center;
  overflow: hidden;
}

.hero-glow {
  position: absolute;
  top: -200px;
  left: 50%;
  transform: translateX(-50%);
  width: 900px;
  height: 700px;
  background: radial-gradient(ellipse at center, rgba(140, 28, 19, 0.22) 0%, rgba(230, 151, 29, 0.06) 40%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 820px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--light);
  padding: 7px 16px;
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 500;
  text-decoration: none;
  transition: border-color 0.2s, color 0.2s;
}
.hero-badge:hover {
  border-color: rgba(255, 255, 255, 0.25);
  color: var(--white);
}

.hero-badge__dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 8px rgba(140, 28, 19, 0.8);
  animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% {
    opacity: 1;
    box-shadow: 0 0 8px rgba(140, 28, 19, 0.8);
  }
  50% {
    opacity: 0.6;
    box-shadow: 0 0 16px rgba(140, 28, 19, 0.4);
  }
}
.hero-heading {
  font-size: clamp(3rem, 6vw, 5.5rem);
  color: var(--white);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.04em;
  margin: 0;
}

.hero-sub {
  font-size: 1.15rem;
  color: var(--light);
  max-width: 560px;
  line-height: 1.75;
  margin: 0;
}

.hero-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 4px;
}

.hero-sample {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1200px;
  padding: 0 24px;
  margin-top: 64px;
  margin-bottom: 40px;
}

.hero-sample__frame {
  position: relative;
  border-radius: 20px;
  overflow: visible;
}

.hero-sample__glow {
  position: absolute;
  inset: -60px;
  background: radial-gradient(ellipse 70% 40% at 50% 0%, rgba(140, 28, 19, 0.3) 0%, transparent 65%);
  pointer-events: none;
  z-index: 0;
}

.hero-sample img {
  position: relative;
  z-index: 1;
  width: 100%;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  box-shadow: 0 60px 120px rgba(0, 0, 0, 0.7), 0 0 0 1px rgba(255, 255, 255, 0.04);
}

.software-strip {
  position: relative;
  z-index: 2;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  padding: 18px 48px;
  background: rgba(255, 255, 255, 0.015);
}

.strip-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
}

.strip-label {
  color: rgba(255, 255, 255, 0.2);
  font-size: 0.8rem;
  font-weight: 500;
  white-space: nowrap;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.strip-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  justify-content: center;
}
.strip-tags span {
  color: rgba(255, 255, 255, 0.3);
  font-size: 0.8rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 4px;
  padding: 3px 10px;
}

#features .features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.glass-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-radius: 16px;
  padding: 28px;
  transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
  position: relative;
}
.glass-card:hover {
  border-color: rgba(255, 255, 255, 0.14);
  transform: translateY(-3px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}
.glass-card h3 {
  color: var(--white);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}
.glass-card p {
  color: var(--light);
  font-size: 0.9rem;
  line-height: 1.65;
  margin: 0;
}

.glass-card__icon {
  font-size: 1.3rem;
  color: var(--yellow);
  margin-bottom: 16px;
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: rgba(230, 151, 29, 0.1);
  border: 1px solid rgba(230, 151, 29, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
}
.glass-card__icon--red {
  color: #B4241D;
  background: rgba(140, 28, 19, 0.1);
  border-color: rgba(140, 28, 19, 0.25);
}
.glass-card__icon--blue {
  color: #09bcd2;
  background: rgba(7, 127, 145, 0.1);
  border-color: rgba(7, 127, 145, 0.25);
}

#ai-showcase {
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

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

.showcase-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.showcase-copy .section-badge {
  margin-bottom: 20px;
}

.showcase-heading {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  color: var(--white);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
}

.showcase-sub {
  color: var(--light);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 28px;
  max-width: 440px;
}

.showcase-list {
  list-style: none;
  padding: 0;
  margin: 0 0 32px 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.showcase-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: var(--light);
  font-size: 0.9rem;
  line-height: 1.5;
}
.showcase-list li i {
  color: var(--blue);
  margin-top: 2px;
  flex-shrink: 0;
  font-size: 0.8rem;
}

.param-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-radius: 16px;
  padding: 0;
  overflow: hidden;
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(255, 255, 255, 0.04);
}
.param-card__header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 16px 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(255, 255, 255, 0.02);
}
.param-card__title {
  font-size: 0.82rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.5);
  flex: 1;
  display: flex;
  align-items: center;
  gap: 6px;
}
.param-card__title i {
  color: var(--yellow);
}
.param-card__badge {
  font-size: 0.72rem;
  font-weight: 700;
  padding: 3px 9px;
  border-radius: 100px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.param-card__badge--ok {
  background: rgba(30, 143, 90, 0.25);
  color: var(--green);
  border: 1px solid rgba(30, 143, 90, 0.25);
}
.param-card__badge--warn {
  background: rgba(230, 151, 29, 0.15);
  color: var(--yellow);
  border: 1px solid rgba(230, 151, 29, 0.3);
}
.param-card__footer {
  padding: 12px 20px;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.2);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(255, 255, 255, 0.015);
  display: flex;
  align-items: center;
  gap: 6px;
}
.param-card__footer i {
  color: rgba(255, 255, 255, 0.2);
}

.param-row {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  transition: background 0.2s;
}
.param-row--warn {
  background: rgba(230, 151, 29, 0.03);
}
.param-row__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  margin-top: 5px;
  flex-shrink: 0;
}
.param-row__dot--ok {
  background: var(--green);
  box-shadow: 0 0 6px var(--green);
}
.param-row__dot--warn {
  background: var(--yellow);
  box-shadow: 0 0 6px var(--yellow);
}
.param-row__body {
  flex: 1;
}
.param-row__name {
  font-size: 0.85rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 4px;
}
.param-row__val {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.3);
  font-weight: 400;
  margin-left: 6px;
}
.param-row__summary {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.3);
  line-height: 1.4;
}
.param-row__status {
  font-size: 0.72rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 100px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  flex-shrink: 0;
}
.param-row__status--ok {
  background: rgba(30, 143, 90, 0.25);
  color: var(--green);
}
.param-row__status--warn {
  background: rgba(230, 151, 29, 0.25);
  color: var(--yellow);
}

.how-band {
  background: rgba(255, 255, 255, 0.015);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  padding: 120px 0;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.step-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-radius: 16px;
  padding: 36px 28px;
  position: relative;
  transition: border-color 0.3s, transform 0.3s;
}
.step-card:hover {
  border-color: rgba(255, 255, 255, 0.12);
  transform: translateY(-3px);
}
.step-card__num {
  font-size: 3.5rem;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.3);
  line-height: 1;
  letter-spacing: -0.04em;
  margin-bottom: 16px;
}
.step-card__icon {
  font-size: 1.4rem;
  color: var(--yellow);
  margin-bottom: 20px;
}
.step-card h3 {
  color: var(--white);
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}
.step-card p {
  color: var(--light);
  font-size: 0.9rem;
  line-height: 1.65;
  margin: 0;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: start;
}

.pricing-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-radius: 16px;
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 28px;
  position: relative;
  transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
}
.pricing-card.popular {
  border-color: rgba(230, 151, 29, 0.25);
  background: rgba(230, 151, 29, 0.04);
  transform: scale(1.03);
  box-shadow: 0 0 60px rgba(230, 151, 29, 0.08);
}
.pricing-card:hover:not(.popular) {
  border-color: rgba(255, 255, 255, 0.12);
  transform: translateY(-4px);
}
.pricing-card.popular:hover {
  transform: scale(1.03) translateY(-3px);
}

.popular-badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--yellow);
  color: #000;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 4px 16px;
  border-radius: 100px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  white-space: nowrap;
}

.pricing-card__top {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.pricing-card__name {
  color: var(--white);
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.pricing-card__desc {
  color: var(--white);
  font-size: 1rem;
}

.pricing-card__sale {
  color: var(--light);
  font-size: 0.9rem;
  margin-top: 5px;
  margin-bottom: 14px;
}
.pricing-card__sale del {
  color: rgba(255, 255, 255, 0.2);
}

.pricing-card__price {
  color: var(--white);
  font-size: 2.4rem;
  font-weight: 800;
  letter-spacing: -0.03em;
}
.pricing-card__price span {
  font-size: 0.95rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.3);
}

.pricing-card__features {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}
.pricing-card__features li {
  font-size: 0.88rem;
  display: flex;
  align-items: center;
  gap: 10px;
}
.pricing-card__features li.on {
  color: rgba(255, 255, 255, 0.65);
}
.pricing-card__features li.on i {
  color: #09bcd2;
}
.pricing-card__features li.off {
  color: rgba(255, 255, 255, 0.18);
}
.pricing-card__features li.off i {
  color: rgba(255, 255, 255, 0.12);
}
.pricing-card__features li i {
  font-size: 0.72rem;
  flex-shrink: 0;
}

.btn-plan {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: "Inter", sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  padding: 13px 28px;
  border-radius: 8px;
  border: 1px solid transparent;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
  letter-spacing: -0.01em;
  width: 100%;
  justify-content: center;
  font-size: 0.9rem;
}
.btn-plan--starter {
  background: rgba(255, 255, 255, 0.05);
  color: var(--light) !important;
  border-color: rgba(255, 255, 255, 0.1);
}
.btn-plan--starter:hover {
  background: rgba(255, 255, 255, 0.09);
  color: var(--white) !important;
}
.btn-plan--street {
  background: var(--yellow);
  color: #000 !important;
  border-color: transparent;
}
.btn-plan--street:hover {
  background: #eea631;
}
.btn-plan--track {
  background: rgba(var(--blue), 0.15);
  color: #0acce0 !important;
  border-color: rgba(var(--blue), 0.3);
}
.btn-plan--track:hover {
  background: var(--blue);
  color: var(--white) !important;
}

.pricing-note {
  text-align: center;
  color: rgba(255, 255, 255, 0.2);
  font-size: 0.85rem;
  margin-top: 36px;
}

.faq-band {
  padding: 120px 0;
}

.faq-list {
  max-width: 680px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.faq-item {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-radius: 16px;
  border-radius: 12px;
  overflow: hidden;
  transition: border-color 0.2s;
}
.faq-item.open {
  border-color: rgba(255, 255, 255, 0.12);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 22px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.95rem;
  font-weight: 600;
  font-family: "Inter", sans-serif;
  letter-spacing: -0.01em;
}
.faq-question i {
  color: rgba(255, 255, 255, 0.3);
  flex-shrink: 0;
  font-size: 0.8rem;
}

.faq-answer {
  padding: 0 22px 18px;
}
.faq-answer p {
  color: rgba(255, 255, 255, 0.35);
  font-size: 0.9rem;
  line-height: 1.7;
  margin: 0;
}

#cta {
  padding-bottom: 80px;
}

.cta-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-radius: 16px;
  position: relative;
  overflow: hidden;
  padding: 80px 60px;
  text-align: center;
  border-color: rgba(140, 28, 19, 0.2);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.cta-card__glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 100%, rgba(140, 28, 19, 0.2) 0%, transparent 65%);
  pointer-events: none;
}

.cta-heading {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--white);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 14px;
  position: relative;
  z-index: 1;
}

.cta-sub {
  color: var(--light);
  font-size: 1.05rem;
  margin-bottom: 36px;
  max-width: 420px;
  line-height: 1.65;
  position: relative;
  z-index: 1;
}

.cta-buttons {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

#cta.newsletter .cta-sub {
  max-width: 600px;
}
#cta.newsletter .cta-form {
  width: 100%;
  max-width: 400px;
}
#cta.newsletter .cta-form #mce-EMAIL {
  border-radius: 5px;
  margin-bottom: 20px;
  width: 100%;
  color: var(--darker);
}

body.about-page h4 {
  color: var(--white);
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 10px;
}
body.about-page h6 {
  color: var(--white);
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 10px;
}
body.about-page p {
  font-size: 1.1rem;
}
body.about-page .section-header {
  align-items: unset;
}
body.about-page .section-sub {
  max-width: 1024px;
  line-height: 150%;
  text-align: left;
  margin-bottom: 25px;
  color: var(--light);
}
body.about-page .section-subheading {
  text-align: left;
  color: var(--white);
  font-weight: 600;
  margin-bottom: 30px;
  font-size: 1.3rem;
}
body.about-page .mvv-content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}
body.about-page .mvv-content h4 {
  color: var(--white);
  font-weight: 600;
  margin-bottom: 5px;
}
body.about-page .mvv-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  margin-top: 40px;
}
body.about-page .mvv-card {
  text-align: center;
}
body.about-page .values-grid, body.about-page .mvv-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
}

#footer {
  position: relative;
  z-index: 2;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding: 56px 0 36px;
  background: var(--darker);
  color: var(--light);
}
#footer .lp-container {
  max-width: 100% !important;
}

.footer-inner {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 10px;
  text-align: center;
}
.footer-brand img {
  height: 28px;
  width: auto;
}
.footer-brand p {
  font-size: 0.9rem;
  margin: 0;
  line-height: 1.5;
}

.footer-links {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  padding-top: 4px;
  width: 60%;
  justify-content: flex-end;
}
.footer-links a {
  color: rgba(255, 255, 255, 0.25);
  text-decoration: none;
  font-size: 0.875rem;
  transition: color 0.2s;
}
.footer-links a:hover {
  color: var(--light);
}

.footer-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 20%;
}
.footer-list h6 {
  color: var(--white);
  margin-bottom: 10px;
  font-weight: 600;
  font-size: var(--content_size) !important;
}
.footer-list a {
  color: var(--light);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  padding-top: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.footer-bottom p {
  font-size: 0.82rem;
  margin: 0;
}
.footer-bottom .social a {
  font-size: 1.5rem;
  margin-left: 10px;
}

.footer-legal {
  display: flex;
  gap: 20px;
}
.footer-legal a {
  color: rgba(255, 255, 255, 0.15);
  text-decoration: none;
  font-size: 0.82rem;
  transition: color 0.2s;
}
.footer-legal a:hover {
  color: var(--light);
}

.fadein:nth-child(1) {
  animation: fadeIn 0.8s ease-in 0.07s forwards;
}

.fadein:nth-child(2) {
  animation: fadeIn 0.8s ease-in 0.14s forwards;
}

.fadein:nth-child(3) {
  animation: fadeIn 0.8s ease-in 0.21s forwards;
}

.fadein:nth-child(4) {
  animation: fadeIn 0.8s ease-in 0.28s forwards;
}

.fadein:nth-child(5) {
  animation: fadeIn 0.8s ease-in 0.35s forwards;
}

.fadein:nth-child(6) {
  animation: fadeIn 0.8s ease-in 0.42s forwards;
}

.fadein:nth-child(7) {
  animation: fadeIn 0.8s ease-in 0.49s forwards;
}

.fadein:nth-child(8) {
  animation: fadeIn 0.8s ease-in 0.56s forwards;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@media (max-width: 1024px) {
  #features .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .showcase-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .showcase-copy {
    align-items: center;
    text-align: center;
  }
  .showcase-sub {
    margin: 0 auto 28px;
  }
  .showcase-list li {
    justify-content: flex-start;
  }
}
@media (max-width: 991px) {
  .nav-links, .nav-actions {
    display: none;
  }
  .nav-burger {
    display: flex;
  }
  .nav-logo {
    z-index: 9;
    position: relative;
  }
  .nav-inner {
    flex-wrap: wrap;
  }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.97);
    backdrop-filter: blur(20px);
    z-index: 8;
    align-items: center;
    justify-content: center;
    gap: 24px;
    padding: 0;
  }
  .nav-links.open li a {
    font-size: 1.6rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 600;
  }
  .nav-links.open li a:hover {
    color: var(--white);
  }
  .nav-close {
    position: absolute;
    top: 20px;
    right: 24px;
    color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
  }
  .fadein {
    opacity: 0;
  }
  .site-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
  }
}
@media (max-width: 768px) {
  .lp-container {
    padding: 0 20px;
  }
  .lp-section {
    padding: 80px 0;
  }
  .how-band, .faq-band {
    padding: 80px 0;
  }
  .hero-heading {
    font-size: 2.6rem;
    letter-spacing: -0.03em;
  }
  .hero-sub {
    font-size: 1rem;
  }
  .hero-sample {
    padding: 0 12px;
    margin-top: 48px;
  }
  #features .features-grid {
    grid-template-columns: 1fr;
  }
  .steps-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .pricing-grid {
    grid-template-columns: 1fr;
  }
  .pricing-card.popular {
    transform: none;
  }
  .cta-card {
    padding: 48px 24px;
  }
  .cta-heading {
    font-size: 1.8rem;
  }
  .software-strip {
    padding: 16px 20px;
  }
  .nav-inner {
    padding: 0 20px;
  }
  .footer-inner {
    flex-direction: column;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}/*# sourceMappingURL=styles.css.map */