:root {
  --bg: #232323;
  --panel-solid: #2a2a2a;
  --panel: rgba(255, 255, 255, 0.06);
  --panel2: rgba(255, 255, 255, 0.035);
  --text: rgba(255, 255, 255, 0.92);
  --muted: rgba(255, 255, 255, 0.66);
  --line: rgba(255, 255, 255, 0.12);
  --accent: #00b67a;
  --shadow: rgba(0, 0, 0, 0.55);
  --radius: 18px;
  --btn-radius: 14px;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  background:
    radial-gradient(1100px 760px at 20% 18%, rgba(255, 255, 255, 0.04), rgba(0, 0, 0, 0) 62%),
    radial-gradient(920px 680px at 72% 46%, rgba(255, 255, 255, 0.03), rgba(0, 0, 0, 0) 58%),
    repeating-linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.035) 0px,
      rgba(255, 255, 255, 0.035) 1px,
      rgba(0, 0, 0, 0) 1px,
      rgba(0, 0, 0, 0) 160px
    ),
    linear-gradient(180deg, #262626 0%, #1c1c1c 100%);
  color: var(--text);
  font-family: Poppins, Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  scroll-behavior: smooth;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1140px, calc(100% - 40px));
  margin: 0 auto;
}

.noise {
  display: none;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(43, 43, 43, 0.86);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(14px);
}

.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 78px;
}

.brand {
  font-family: Orbitron, Inter, sans-serif;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.brand-mark {
  width: 12px;
  height: 12px;
  background: var(--accent);
  transform: rotate(45deg);
  border-radius: 2px;
  box-shadow: 0 0 18px rgba(0, 182, 122, 0.35);
}

.brand span {
  color: var(--accent);
}

.nav {
  display: flex;
  gap: 20px;
  color: rgba(255, 255, 255, 0.72);
  font-weight: 500;
}

.nav a:hover {
  color: rgba(255, 255, 255, 0.94);
}

.nav-cart {
  font-size: 0.95rem;
  opacity: 0.88;
}

.nav-cart:hover {
  opacity: 1;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 18px;
  border-radius: var(--btn-radius);
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.9);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.22);
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.btn:hover {
  transform: translateY(-1px);
  border-color: rgba(255, 255, 255, 0.22);
  box-shadow: 0 22px 55px rgba(0, 0, 0, 0.26);
}

.btn-primary {
  background: var(--accent);
  border-color: rgba(0, 182, 122, 0.75);
  color: #ffffff;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.22), 0 0 0 1px rgba(0, 182, 122, 0.22);
}

.btn-primary:hover {
  border-color: rgba(0, 182, 122, 0.95);
  box-shadow: 0 22px 55px rgba(0, 0, 0, 0.26), 0 0 0 1px rgba(0, 182, 122, 0.28);
}

.btn-outline {
  background: transparent;
  border-color: rgba(0, 182, 122, 0.55);
  color: rgba(0, 182, 122, 0.92);
  box-shadow: none;
}

.btn-outline:hover {
  border-color: rgba(0, 182, 122, 0.78);
  color: rgba(0, 182, 122, 0.98);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.22);
}

.btn-sm {
  padding: 10px 14px;
  font-size: 0.92rem;
}

.btn-xl {
  padding: 14px 22px;
  font-size: 1.02rem;
}

.btn-ghost {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.16);
}

.hero {
  position: relative;
  overflow: clip;
  min-height: 100vh;
  height: 100vh;
  display: flex;
  flex-direction: column;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: var(--bg);
  opacity: 0.95;
}

.hero-grid {
  position: relative;
  z-index: 1;
  flex: 1 1 auto;
  min-height: 0;
  padding: clamp(52px, 8vh, 92px) 0 18px;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 34px;
  align-items: center;
}

.hero-photo {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.hero-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(43, 43, 43, 0.98) 0%, rgba(43, 43, 43, 0.92) 52%, rgba(43, 43, 43, 0.45) 74%, rgba(43, 43, 43, 0.08) 100%);
}

.hero-photo-img {
  position: absolute;
  inset: 0 0 0 auto;
  width: 62%;
  height: 100%;
  object-fit: cover;
  object-position: 55% 40%;
  filter: grayscale(1) contrast(1.06) brightness(0.86);
  opacity: 0.95;
}

.social-rail {
  position: fixed;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 40;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  color: rgba(255, 255, 255, 0.62);
  width: 56px;
  padding: 12px 0;
  user-select: none;
}

.social-rail-label {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  font-size: 0.76rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.social-rail-line {
  width: 1px;
  height: 92px;
  background: rgba(255, 255, 255, 0.18);
}

.social-rail-item {
  width: 28px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  background: transparent;
  font-weight: 700;
  font-size: 1.1rem;
  line-height: 1;
}

.social-rail-item img {
  display: block;
  color: rgba(0, 182, 122, 0.92);
}

.social-rail-item:hover {
  color: rgba(0, 182, 122, 0.98);
  transform: translateY(-1px);
}

.eyebrow {
  display: block;
  font-weight: 600;
  letter-spacing: -0.01em;
  font-size: 1.35rem;
  color: rgba(255, 255, 255, 0.92);
}

h1,
h2,
h3 {
  margin: 0;
  font-family: Poppins, Inter, sans-serif;
}

.poster-title {
  margin-top: 16px;
  display: grid;
  gap: 10px;
}

.poster-line {
  font-size: clamp(2.6rem, 6.4vw, 4.6rem);
  line-height: 0.98;
  letter-spacing: -0.02em;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.96);
  text-shadow: 0 10px 30px rgba(0, 0, 0, 0.32);
}

.poster-line--green {
  color: var(--accent);
  text-shadow: 0 10px 30px rgba(0, 0, 0, 0.32);
}

.poster-h2 {
  font-size: clamp(1.5rem, 3.2vw, 2.15rem);
  letter-spacing: -0.01em;
  margin-bottom: 18px;
  position: relative;
  z-index: 2;
}

.section-heading {
  position: relative;
  margin-bottom: 22px;
  padding-top: clamp(12px, 3.2vw, 26px);
}

.section-heading::before {
  content: attr(data-bg);
  position: absolute;
  left: 0;
  top: -10px;
  font-family: Poppins, Inter, sans-serif;
  font-weight: 800;
  font-size: clamp(2.17rem, 7.7vw, 7.14rem);
  line-height: 0.85;
  letter-spacing: 0.02em;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.14);
  text-transform: uppercase;
  pointer-events: none;
  user-select: none;
  z-index: 1;
}

.subtitle {
  margin: 18px 0 26px;
  max-width: 640px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 1.05rem;
  line-height: 1.72;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 26px;
}

.hero-btn {
  border-radius: 999px;
  padding: 16px 22px;
  font-size: 1.05rem;
  letter-spacing: -0.01em;
}

.hero-btn--outline {
  border-color: rgba(0, 182, 122, 0.46);
  color: rgba(0, 182, 122, 0.92);
  background: rgba(0, 0, 0, 0.12);
  box-shadow: 0 26px 90px rgba(0, 0, 0, 0.32), 0 0 0 1px rgba(0, 182, 122, 0.12);
  backdrop-filter: blur(8px);
}

.hero-btn--outline:hover {
  border-color: rgba(0, 182, 122, 0.78);
  color: rgba(0, 182, 122, 0.98);
  background: rgba(0, 0, 0, 0.16);
  box-shadow: 0 30px 110px rgba(0, 0, 0, 0.34), 0 0 0 1px rgba(0, 182, 122, 0.18);
}

.kpis {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.kpis li {
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  padding: 14px 14px 12px;
}

.kpis span {
  display: inline-block;
  font-weight: 800;
  margin-bottom: 6px;
  color: var(--accent);
}

.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 540px;
}

.poster-sheen {
  position: absolute;
  inset: -80px -60px -100px -60px;
  background:
    radial-gradient(closest-side at 75% 30%, rgba(255, 255, 255, 0.05), rgba(0, 0, 0, 0)),
    radial-gradient(closest-side at 22% 72%, rgba(0, 182, 122, 0.06), rgba(0, 0, 0, 0));
  pointer-events: none;
  opacity: 0.9;
}

.hero-model-image {
  transition: opacity 520ms ease, transform 520ms ease;
  will-change: opacity, transform;
}

.hero-model-image.is-fading {
  opacity: 0;
  transform: scale(1.01);
}

.hero-bottom {
  position: relative;
  z-index: 2;
  padding: 14px 0 22px;
}

.hero-meta {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  justify-content: space-between;
  padding: 10px 0;
}

.hero-meta-item {
  display: grid;
  gap: 4px;
  flex: 1 1 0;
  min-width: 0;
}

.hero-meta-title {
  font-weight: 700;
  letter-spacing: -0.01em;
}

.hero-meta-sub {
  color: rgba(255, 255, 255, 0.64);
  font-size: 0.82rem;
  line-height: 1.45;
}

.hero-meta-sep {
  width: 1px;
  height: auto;
  background: rgba(255, 255, 255, 0.28);
  flex: 0 0 auto;
  align-self: stretch;
  margin: 6px 0;
}

.section {
  padding: 96px 0;
}

.section-dark {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.01));
  border-block: 1px solid rgba(255, 255, 255, 0.06);
}

#inside.section-dark {
  position: relative;
}

#inside.section-dark::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -84px;
  height: 140px;
  background: radial-gradient(closest-side at 50% 0%, rgba(0, 0, 0, 0.72), rgba(0, 0, 0, 0));
  pointer-events: none;
  opacity: 0.9;
}

.inside-tabs {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 18px;
  align-items: start;
}

.inside-list {
  display: grid;
  gap: 10px;
}

.inside-item {
  text-align: left;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: var(--panel-solid);
  padding: 16px 16px;
  color: rgba(255, 255, 255, 0.9);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.22);
}

.inside-item:hover {
  border-color: rgba(255, 255, 255, 0.2);
}

.inside-item.is-active {
  border-color: rgba(0, 182, 122, 0.55);
  box-shadow: 0 0 0 1px rgba(0, 182, 122, 0.18);
}

.inside-item-title {
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: -0.01em;
  margin-bottom: 8px;
}

.inside-item-desc {
  font-size: 0.92rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.68);
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.inside-preview {
  display: grid;
  gap: 14px;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: var(--panel-solid);
  overflow: hidden;
  padding: 16px;
}

.inside-preview-media {
  width: 100%;
  height: clamp(480px, 66vh, 740px);
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(0, 182, 122, 0.55);
  box-shadow: 0 0 0 1px rgba(0, 182, 122, 0.18);
  background: rgba(255, 255, 255, 0.02);
}

.inside-preview-img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  object-position: center;
  transition: opacity 300ms ease;
}

.inside-preview-img.is-fading {
  opacity: 0.35;
}

.future-card {
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(0, 0, 0, 0.08));
  padding: 16px 16px;
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.22);
  position: relative;
  overflow: hidden;
}

.future-card::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(0, 182, 122, 0.22), rgba(0, 0, 0, 0) 35%, rgba(214, 179, 106, 0.16));
  opacity: 0.65;
  pointer-events: none;
}

.future-card::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 2px;
  background: rgba(0, 182, 122, 0.55);
  opacity: 0.7;
  pointer-events: none;
}

.future-label {
  position: relative;
  z-index: 1;
  font-size: 0.76rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(0, 182, 122, 0.78);
  margin-bottom: 8px;
}

.future-title {
  position: relative;
  z-index: 1;
  font-size: 1.1rem;
  font-weight: 900;
  letter-spacing: -0.01em;
  color: rgba(255, 255, 255, 0.92);
  margin-bottom: 10px;
}

.future-text {
  position: relative;
  z-index: 1;
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.65;
  font-size: 0.92rem;
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.card {
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: var(--panel-solid);
  padding: 22px;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.18);
}

.card h3 {
  font-size: 1.1rem;
  margin-bottom: 10px;
}

.card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.65;
}

.timeline {
  display: grid;
  gap: 14px;
}

.step {
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: var(--panel-solid);
  padding: 18px;
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 16px;
}

.step-number {
  width: 56px;
  height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.05);
  font-weight: 800;
}

.step h3 {
  margin-bottom: 8px;
  font-size: 1.12rem;
}

.step p {
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.6;
}

.split {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 26px;
}

.feedback-link {
  display: inline-block;
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.82);
  text-decoration: underline;
  text-underline-offset: 4px;
  text-decoration-color: rgba(255, 255, 255, 0.26);
}

.feedback-link:hover {
  color: #ffffff;
  text-decoration-color: rgba(255, 255, 255, 0.5);
}

.feedback-btn {
  margin: 14px 0 0;
  width: 100%;
  justify-content: center;
  border-radius: var(--btn-radius);
  padding: 16px 22px;
  font-size: 1.05rem;
  letter-spacing: -0.01em;
  border-color: rgba(0, 182, 122, 0.46);
  color: rgba(0, 182, 122, 0.92);
  background: rgba(0, 0, 0, 0.12);
  box-shadow: 0 26px 90px rgba(0, 0, 0, 0.32), 0 0 0 1px rgba(0, 182, 122, 0.12);
  backdrop-filter: blur(8px);
}

.feedback-btn:hover {
  border-color: rgba(0, 182, 122, 0.78);
  color: rgba(0, 182, 122, 0.98);
  background: rgba(0, 0, 0, 0.16);
  box-shadow: 0 30px 110px rgba(0, 0, 0, 0.34), 0 0 0 1px rgba(0, 182, 122, 0.18);
}

.feedback-cta {
  margin-top: 18px;
  display: flex;
  justify-content: center;
}

.feedback-cta--desktop {
  justify-content: flex-start;
}

.feedback-cta--mobile {
  display: none;
}

.feedback-cta--mobile .feedback-btn {
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

.feedback-feature {
  margin-top: 18px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: var(--panel-solid);
  overflow: hidden;
  height: 260px;
  padding: 10px;
}

.feedback-feature img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  background: rgba(0, 0, 0, 0.12);
  border-radius: 12px;
  display: block;
}

.feedback-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  align-content: start;
}

.feedback-grid img {
  width: 100%;
  height: 160px;
  object-fit: contain;
  object-position: center;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: var(--panel-solid);
  display: block;
}

.muted {
  color: rgba(255, 255, 255, 0.66);
  line-height: 1.72;
}

.pricing-sub {
  max-width: 820px;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 22px;
}

.pricing-card {
  position: relative;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: var(--panel-solid);
  box-shadow: 0 34px 110px rgba(0, 0, 0, 0.34);
  padding: 24px;
}

.pricing-card--featured {
  border-color: rgba(0, 182, 122, 0.38);
  box-shadow: 0 38px 130px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(0, 182, 122, 0.16);
}

.pricing-badge {
  position: absolute;
  right: 18px;
  top: 18px;
  padding: 8px 10px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  border-radius: 999px;
  border: 1px solid rgba(0, 182, 122, 0.46);
  background: rgba(0, 182, 122, 0.14);
  color: rgba(255, 255, 255, 0.92);
}

.pricing-head {
  padding-right: 96px;
}

.pricing-title {
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: -0.01em;
  margin-bottom: 10px;
}

.pricing-desc {
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.7;
}

.pricing-features {
  list-style: none;
  padding: 0;
  margin: 18px 0 18px;
  display: grid;
  gap: 10px;
}

.pricing-features li {
  position: relative;
  padding-left: 18px;
  color: rgba(255, 255, 255, 0.74);
}

.pricing-features li::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 0;
  color: rgba(255, 255, 255, 0.42);
}

.pricing-options {
  display: grid;
  gap: 10px;
  margin-top: 10px;
}

.pricing-option {
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.02);
  padding: 14px 14px;
}

.pricing-option--highlight {
  border-color: rgba(0, 182, 122, 0.42);
  box-shadow: 0 0 0 1px rgba(0, 182, 122, 0.16);
  background: linear-gradient(180deg, rgba(0, 182, 122, 0.1), rgba(255, 255, 255, 0.02));
}

.pricing-option--gold {
  border-color: rgba(214, 179, 106, 0.5);
  box-shadow: 0 0 0 1px rgba(214, 179, 106, 0.18);
  background: linear-gradient(180deg, rgba(214, 179, 106, 0.1), rgba(255, 255, 255, 0.02));
}

.pricing-option-top {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
}

.pricing-period {
  font-weight: 800;
  letter-spacing: -0.01em;
}

.pricing-price {
  display: inline-flex;
  gap: 10px;
  align-items: baseline;
}

.price-old {
  color: rgba(255, 255, 255, 0.5);
  text-decoration: line-through;
  text-decoration-thickness: 2px;
  text-decoration-color: rgba(255, 255, 255, 0.32);
  font-weight: 700;
}

.price-new {
  font-size: 1.6rem;
  font-weight: 900;
  letter-spacing: -0.02em;
  color: rgba(255, 255, 255, 0.94);
}

.pricing-note {
  margin-top: 8px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 14px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.92rem;
}

.pricing-permonth {
  color: rgba(255, 255, 255, 0.78);
}

.pricing-offer {
  color: rgba(255, 255, 255, 0.56);
}

.pricing-cta {
  margin-top: 16px;
  width: 100%;
}

.pricing-support {
  margin-top: 18px;
  display: grid;
  gap: 10px;
  justify-items: center;
  text-align: center;
}

.pricing-support-text {
  margin: 0;
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.95rem;
}

.pricing-support-btn {
  padding: 12px 18px;
  border-radius: var(--btn-radius);
}

.faq-section {
  position: relative;
}

.faq-section::before {
  content: "";
  position: absolute;
  inset: -120px 0 -160px 0;
  background:
    radial-gradient(720px 420px at 18% 24%, rgba(0, 182, 122, 0.11), rgba(0, 0, 0, 0) 62%),
    radial-gradient(620px 420px at 78% 60%, rgba(255, 255, 255, 0.05), rgba(0, 0, 0, 0) 60%);
  pointer-events: none;
  opacity: 0.9;
}

.faq-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 26px;
  align-items: start;
}

.faq-subtitle {
  margin: 0;
  max-width: 520px;
}

.faq-accordion {
  display: grid;
  gap: 12px;
}

.faq-item {
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: var(--panel-solid);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.18);
  overflow: hidden;
  transition: border-color 0.18s ease, background 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease;
}

.faq-item:hover {
  border-color: rgba(255, 255, 255, 0.18);
  background: #2f2f2f;
  transform: translateY(-1px);
}

.faq-item.is-open {
  border-color: rgba(0, 182, 122, 0.42);
  background: linear-gradient(180deg, rgba(0, 182, 122, 0.09), rgba(0, 182, 122, 0.0)), var(--panel-solid);
  box-shadow: 0 28px 100px rgba(0, 0, 0, 0.24), 0 0 0 1px rgba(0, 182, 122, 0.14);
  transform: translateY(-1px);
}

.faq-q {
  width: 100%;
  padding: 18px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  background: transparent;
  border: 0;
  color: inherit;
  cursor: pointer;
  text-align: left;
  font-family: inherit;
}

.faq-q:focus-visible {
  outline: none;
  box-shadow: 0 0 0 1px rgba(0, 182, 122, 0.18) inset, 0 0 0 3px rgba(0, 182, 122, 0.16);
}

.faq-q-text {
  font-weight: 800;
  letter-spacing: -0.01em;
  font-size: 1.02rem;
  color: rgba(255, 255, 255, 0.92);
}

.faq-icon {
  width: 36px;
  height: 36px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.04);
  position: relative;
  flex: 0 0 auto;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.18);
  transition: border-color 0.18s ease, background 0.18s ease, box-shadow 0.18s ease;
}

.faq-icon::before,
.faq-icon::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 14px;
  height: 2px;
  background: rgba(255, 255, 255, 0.78);
  transform: translate(-50%, -50%);
  border-radius: 2px;
  transition: opacity 0.16s ease, background 0.18s ease;
}

.faq-icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq-item.is-open .faq-icon {
  border-color: rgba(0, 182, 122, 0.42);
  background: rgba(0, 182, 122, 0.1);
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.22), 0 0 0 1px rgba(0, 182, 122, 0.12);
}

.faq-item.is-open .faq-icon::after {
  opacity: 0;
}

.faq-a {
  height: 0;
  overflow: hidden;
  transition: height 320ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.faq-a-inner {
  padding: 0 18px 18px;
}

.faq-item.is-open .faq-a-inner {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 14px;
}

.faq-a-inner p {
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.72;
  font-size: 0.98rem;
  max-width: 72ch;
}

.closing-line {
  margin: 0;
  text-align: center;
  font-size: clamp(1.06rem, 1.55vw, 1.28rem);
  font-weight: 800;
  letter-spacing: -0.01em;
  color: rgba(255, 255, 255, 0.88);
}

.checklist {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
}

.checklist li {
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.03);
  padding: 12px 14px;
}

.checklist li::before {
  content: "▣";
  margin-right: 10px;
  color: var(--accent);
}

.cta-section {
  padding-top: 36px;
}

.cta-box {
  border-radius: 26px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: var(--panel-solid);
  padding: 40px;
  text-align: center;
  box-shadow: 0 34px 110px rgba(0, 0, 0, 0.28);
}

.cta-box p {
  margin: 12px 0 22px;
  color: rgba(255, 255, 255, 0.72);
}

.footer {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 26px 0;
  background: rgba(7, 10, 15, 0.6);
}

.footer-inner {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 8px;
}

.inside-mobile {
  display: none;
}

.hero-mobile-media {
  display: none;
}

@media (max-width: 980px) {
  .hero-grid,
  .split {
    grid-template-columns: 1fr;
  }

  .faq-grid {
    grid-template-columns: 1fr;
  }

  .inside-tabs {
    grid-template-columns: 1fr;
  }

  .inside-preview-media {
    height: clamp(410px, 60vh, 640px);
  }

  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .pricing-badge {
    position: static;
    margin: 0 0 12px;
    display: inline-flex;
  }

  .pricing-head {
    padding-right: 0;
  }

  .feedback-cta--desktop {
    display: none;
  }

  .feedback-cta--mobile {
    display: flex;
  }

  .kpis,
  .cards {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    min-height: 460px;
  }

  .hero-photo-img {
    width: 100%;
    opacity: 0.22;
  }

  .hero-photo::after {
    background: linear-gradient(180deg, rgba(11, 13, 15, 0.95), rgba(11, 13, 15, 0.7));
  }
}

@media (max-width: 760px) {
  .nav {
    display: none;
  }

  html,
  body {
    overflow-x: hidden;
  }

  img {
    max-width: 100%;
  }

  .hero {
    height: auto;
    min-height: 100svh;
  }

  .social-rail {
    display: none;
  }

  .hero-photo {
    display: none;
  }

  .hero-visual {
    display: none;
  }

  .hero-mobile-media {
    display: block;
    position: relative;
    margin: 18px 0 18px;
  }

  .hero-mobile-frame {
    position: relative;
    height: clamp(300px, 46vh, 420px);
    overflow: visible;
  }

  .hero-mobile-img {
    position: relative;
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: 55% 22%;
    transform: none;
    filter: grayscale(1) contrast(1.06) brightness(0.9);
    opacity: 0.95;
    border-radius: 0;
  }

  .hero-mobile-frame::before {
    display: none;
  }

  .hero-mobile-media::after {
    content: "";
    position: relative;
    display: block;
    height: 1px;
    margin: 0;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0));
    opacity: 0.75;
  }

  .hero-cta {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-btn {
    width: 100%;
  }

  .hero-photo-img {
    object-position: 55% 25%;
    opacity: 0.18;
  }

  .inside-tabs {
    display: none;
  }

  .inside-mobile {
    display: grid;
    gap: 14px;
    margin-top: 18px;
  }

  .inside-mobile-card {
    border-radius: 22px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: var(--panel-solid);
    box-shadow: 0 24px 90px rgba(0, 0, 0, 0.28);
    overflow: hidden;
  }

  .inside-mobile-media {
    height: 240px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    background:
      radial-gradient(closest-side at 72% 28%, rgba(0, 182, 122, 0.1), rgba(0, 0, 0, 0)),
      linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(0, 0, 0, 0.12));
    overflow: hidden;
  }

  .inside-mobile-media img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center;
    opacity: 0.95;
  }

  .inside-mobile-card--future {
    border-color: rgba(0, 182, 122, 0.34);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(0, 0, 0, 0.08));
    box-shadow: 0 28px 100px rgba(0, 0, 0, 0.32), 0 0 0 1px rgba(0, 182, 122, 0.12);
  }

  .inside-mobile-card--future .inside-mobile-body {
    padding: 18px 16px 20px;
  }

  .inside-mobile-body {
    padding: 16px 16px 18px;
  }

  .inside-mobile-title {
    margin: 0 0 10px;
    font-size: 1.16rem;
    font-weight: 900;
    letter-spacing: -0.01em;
    color: rgba(255, 255, 255, 0.94);
  }

  .inside-mobile-desc {
    margin: 0;
    color: rgba(255, 255, 255, 0.68);
    line-height: 1.72;
  }

  .faq-q {
    padding: 16px 16px;
  }

  .faq-a-inner {
    padding: 0 16px 16px;
  }

  .faq-item.is-open .faq-a-inner {
    padding-top: 12px;
  }

  .inside-preview-media {
    height: clamp(300px, 46vh, 480px);
  }

  .feedback-feature {
    height: 200px;
  }

  .feedback-grid img {
    height: 150px;
  }

  .hero-grid {
    min-height: auto;
    padding: 54px 0 18px;
  }

  .social-rail {
    width: 44px;
    gap: 10px;
  }

  .hero-meta {
    flex-direction: column;
    gap: 14px;
  }

  .hero-meta-sep {
    display: none;
  }

  .section {
    padding: 76px 0;
  }

  .section-heading::before {
    font-size: clamp(1.68rem, 9.8vw, 2.94rem);
  }

  .cta-box {
    padding: 28px 20px;
  }

  .footer-inner {
    flex-direction: column;
    align-items: center;
  }
}

@media (max-height: 820px) {
  .hero-grid {
    gap: 24px;
    padding: clamp(40px, 7vh, 70px) 0 14px;
  }

  .eyebrow {
    font-size: 1.15rem;
  }

  .poster-line {
    font-size: clamp(2.1rem, 5.6vw, 3.8rem);
  }

  .subtitle {
    font-size: 0.95rem;
    margin: 14px 0 18px;
  }

  .hero-meta-sub {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
}
