* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", Arial, Helvetica, sans-serif;
}

html {
  scroll-behavior: smooth;
  max-width: 100%;
  overflow-x: hidden;
}

:root {
  --pixora-blue: #00aaff;
  --pixora-green: #00ff9c;
  --pixora-orange: #ff8c00;
  --pixora-red: #ff3c3c;

  --text-xs: 13px;
  --text-sm: 14px;
  --text-base: 16px;
  --text-md: 17px;
  --text-lg: 18px;

  --heading-sm: clamp(1.2rem, 1.4vw, 1.55rem);
  --heading-md: clamp(1.55rem, 2vw, 2rem);
  --heading-lg: clamp(2.1rem, 3vw, 2.8rem);
  --heading-xl: clamp(2.5rem, 4vw, 4rem);

  --section-padding: 96px;
  --container-width: 1200px;
  --radius-lg: 24px;
  --radius-md: 20px;
  --radius-sm: 16px;
}

body {
  min-height: 100vh;
  max-width: 100%;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 16% 4%, rgba(0, 170, 255, 0.12), transparent 30%),
    radial-gradient(circle at 84% 12%, rgba(255, 60, 60, 0.08), transparent 28%),
    radial-gradient(circle at 22% 76%, rgba(0, 255, 156, 0.06), transparent 30%),
    radial-gradient(circle at 72% 84%, rgba(255, 140, 0, 0.05), transparent 28%),
    linear-gradient(180deg, #06080c 0%, #04060a 48%, #020304 100%);
  color: #fff;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img {
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
}

button,
input,
textarea,
select {
  font: inherit;
}

main {
  display: block;
}

h1,
h2,
h3,
h4 {
  letter-spacing: -0.02em;
}

/* --- ACCESSIBILITY --- */
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  outline: 2px solid rgba(0, 170, 255, 0.95);
  outline-offset: 3px;
}

/* --- HEADER --- */
.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 80px;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(4, 6, 10, 0.54);
  border-bottom: 1px solid rgba(255, 255, 255, 0.025);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.logo-img {
  height: 32px;
  width: auto;
  display: block;
}

/* --- NAV --- */
.nav {
  display: flex;
  align-items: center;
}

.nav a {
  text-decoration: none;
  margin-left: 26px;
  font-weight: 500;
  font-size: var(--text-sm);
  opacity: 0.9;
  transition: opacity 0.2s ease;
}

.nav a:hover {
  opacity: 0.7;
}

/* --- MOBILE NAV TOGGLE --- */
.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(15, 15, 15, 0.92);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
  cursor: pointer;
  position: relative;
  transition: border 0.2s ease, background 0.2s ease;
}

.nav-toggle:hover {
  border-color: rgba(255, 255, 255, 0.35);
}

.nav-toggle span {
  position: absolute;
  left: 12px;
  right: 12px;
  height: 2px;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 2px;
  transition: transform 0.25s ease, top 0.25s ease, opacity 0.2s ease;
}

.nav-toggle span:nth-child(1) {
  top: 15px;
}

.nav-toggle span:nth-child(2) {
  top: 22px;
}

.nav-toggle span:nth-child(3) {
  top: 29px;
}

.header.nav-open .nav-toggle span:nth-child(1) {
  top: 22px;
  transform: rotate(45deg);
}

.header.nav-open .nav-toggle span:nth-child(2) {
  opacity: 0;
}

.header.nav-open .nav-toggle span:nth-child(3) {
  top: 22px;
  transform: rotate(-45deg);
}

/* --- BUTTONS / TAG --- */
.tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 132px;
  height: 32px;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.85);
}

.btn-gradient {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 18px;
  border: none;
  cursor: pointer;
  border-radius: 12px;
  font-weight: 700;
  font-size: var(--text-sm);
  color: #000;
  text-decoration: none;
  background: linear-gradient(90deg, #00aaff, #00ff9c, #ff8c00, #ff3c3c);
  transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.32);
}

.btn-gradient:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.42);
}

.btn-ghost {
  display: inline-block;
  text-align: center;
  padding: 13px 16px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(0, 0, 0, 0.35);
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  cursor: pointer;
  font-size: var(--text-sm);
  transition: opacity 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.btn-ghost:hover {
  opacity: 0.9;
  border-color: rgba(255, 255, 255, 0.2);
}

/* --- HERO --- */
.hero {
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding: 136px 80px 120px;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 32%, rgba(0, 170, 255, 0.10), transparent 30%),
    radial-gradient(circle at 82% 18%, rgba(255, 60, 60, 0.06), transparent 22%),
    linear-gradient(180deg, rgba(3, 5, 8, 0.92) 0%, rgba(5, 7, 11, 0.84) 55%, rgba(6, 8, 12, 0.38) 100%);
}

.hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 120px;
  pointer-events: none;
  background: linear-gradient(
    to bottom,
    rgba(6, 8, 12, 0) 0%,
    rgba(6, 8, 12, 0.24) 55%,
    rgba(6, 8, 12, 0.55) 100%
  );
}

.hero-inner {
  position: relative;
  max-width: 1100px;
  width: 100%;
  margin: 0 auto;
  z-index: 2;
  padding-top: 0;
  padding-bottom: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.hero .tag {
  display: none;
}

.hero h1 {
  font-size: clamp(2.35rem, 3.6vw, 3.9rem);
  line-height: 1.06;
  font-weight: 700;
  margin-bottom: 18px;
  max-width: 22ch;
  text-align: center;
  letter-spacing: -0.03em;
  margin-left: auto;
  margin-right: auto;
}

.hero p {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.74);
  line-height: 1.75;
  margin-bottom: 34px;
  max-width: 72ch;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.hero-cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 6px;
  justify-content: center;
  align-items: center;
  width: 100%;
}

/* --- BACKGROUND LAYERING --- */
main:not(.product-page):not(.legal-page) {
  position: relative;
  isolation: isolate;
  background: transparent;
}

main:not(.product-page):not(.legal-page)::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -3;
  background:
    radial-gradient(circle at 14% 16%, rgba(0, 170, 255, 0.14), transparent 26%),
    radial-gradient(circle at 84% 18%, rgba(255, 60, 60, 0.10), transparent 24%),
    radial-gradient(circle at 20% 70%, rgba(0, 255, 156, 0.08), transparent 26%),
    radial-gradient(circle at 74% 76%, rgba(255, 140, 0, 0.08), transparent 24%),
    radial-gradient(circle at 50% 48%, rgba(255, 255, 255, 0.02), transparent 40%);
  filter: blur(70px) saturate(112%);
  animation: pixoraAurora 24s ease-in-out infinite alternate;
  opacity: 0.92;
}

main:not(.product-page):not(.legal-page)::after {
  content: none;
}

/* --- SECTIONS --- */
.about,
.pricing,
.products,
.beta-section,
.contact {
  position: relative;
  padding: var(--section-padding) 60px;
  background: transparent;
  border-top: none;
  box-shadow: none;
}

.about,
.pricing,
.products,
.contact {
  overflow: hidden;
}

.beta-section {
  overflow: visible;
}

.about::before,
.pricing::before,
.products::before,
.beta-section::before,
.contact::before {
  content: "";
  position: absolute;
  width: 38rem;
  height: 38rem;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(88px);
  opacity: 0.07;
  z-index: 0;
}

.about::before {
  top: 5rem;
  right: -12rem;
  background: radial-gradient(circle, rgba(0,255,156,0.72) 0%, rgba(0,255,156,0) 65%);
}

.about::after {
  content: "";
  position: absolute;
  left: -12rem;
  bottom: -12rem;
  width: 34rem;
  height: 34rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,140,0,0.58) 0%, rgba(255,140,0,0) 65%);
  filter: blur(88px);
  opacity: 0.07;
  z-index: 0;
}

.pricing::before {
  top: 8rem;
  left: -14rem;
  background: radial-gradient(circle, rgba(0,170,255,0.72) 0%, rgba(0,170,255,0) 65%);
}

.products::before {
  right: -16rem;
  bottom: -16rem;
  background: radial-gradient(circle, rgba(255,60,60,0.72) 0%, rgba(255,60,60,0) 68%);
}

.beta-section::before {
  top: -12rem;
  left: 62%;
  transform: translateX(-50%);
  background: radial-gradient(circle, rgba(0,170,255,0.52) 0%, rgba(0,170,255,0) 68%);
}

.contact::before {
  left: -12rem;
  bottom: -12rem;
  background: radial-gradient(circle, rgba(255,140,0,0.60) 0%, rgba(255,140,0,0) 65%);
}

/* --- ABOUT --- */
.about {
  position: relative;
  margin-top: -36px;
  padding-top: 116px;
  z-index: 2;
}

.about-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  gap: 24px;
  align-items: stretch;
  max-width: var(--container-width);
  margin: 0 auto;
  width: 100%;
  z-index: 1;
}

.about-card {
  height: 100%;
  padding: 34px 38px;
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.about-card h2 {
  margin-top: 6px;
  max-width: 20ch;
  font-size: clamp(1.85rem, 2.5vw, 2.5rem);
  line-height: 1.1;
  letter-spacing: -0.03em;
}

.about-card p {
  margin-top: 16px;
  color: rgba(255, 255, 255, 0.78);
  font-size: var(--text-md);
  line-height: 1.75;
  max-width: 58ch;
}

.about-location {
  margin-top: 20px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.62);
}

.about-panels {
  height: 100%;
  grid-template-rows: 1fr 1fr;
  display: grid;
  gap: 24px;
}

.about-stats {
  max-width: var(--container-width);
  margin: 24px auto 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  position: relative;
  z-index: 1;
}

/* --- PANELS / STATS / CARDS --- */
.panel,
.price-card,
.product-card,
.other-card,
.stat,
.founding-badge,
.contact-left,
.contact-form-wide,
.beta-form,
.about-card {
  background:
    linear-gradient(180deg, rgba(255,255,255,0.038), rgba(255,255,255,0.012)),
    rgba(7, 9, 13, 0.48);
  border: 1px solid rgba(255,255,255,0.065);
  box-shadow:
    0 10px 24px rgba(0, 0, 0, 0.16),
    0 20px 50px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.panel,
.price-card,
.product-card,
.other-card,
.stat,
.founding-badge,
.contact-left,
.contact-form-wide,
.about-card {
  position: relative;
  overflow: hidden;
}

.panel::before,
.price-card::before,
.product-card::before,
.other-card::before,
.stat::before,
.founding-badge::before,
.contact-left::before,
.contact-form-wide::before,
.about-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(255,255,255,0.045), rgba(255,255,255,0.00) 34%);
  opacity: 0.72;
}

.panel {
  height: 100%;
  padding: 28px;
  border-radius: var(--radius-md);
}

.panel h2,
.panel h3 {
  font-size: var(--heading-sm);
  line-height: 1.3;
  margin-bottom: 14px;
}

.panel p {
  color: rgba(255, 255, 255, 0.76);
  font-size: var(--text-base);
  line-height: 1.75;
  margin-top: 10px;
}

.panel p:first-of-type {
  margin-top: 0;
}

.panel ul {
  list-style: none;
  display: grid;
  gap: 12px;
  color: rgba(255, 255, 255, 0.76);
  font-size: var(--text-base);
  line-height: 1.7;
  margin-top: 10px;
}

.panel ul li::before {
  content: "•";
  margin-right: 10px;
  color: rgba(0, 255, 156, 0.9);
}

.panel.accent,
.price-card.featured,
.product-card-featured {
  background:
    linear-gradient(180deg, rgba(0,170,255,0.13), rgba(255,60,60,0.08)),
    rgba(10, 10, 12, 0.78);
  border: 1px solid rgba(255,255,255,0.14);
}

.panel-cta {
  display: inline-block;
  margin-top: 14px;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  font-size: var(--text-sm);
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(0, 0, 0, 0.25);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.panel-cta:hover {
  opacity: 0.9;
  transform: translateY(-1px);
}

.stat {
  display: flex;
  gap: 14px;
  align-items: center;
  padding: 18px;
  border-radius: 18px;
}

.stat-icon {
  font-size: 18px;
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  background: linear-gradient(90deg, rgba(0, 170, 255, 0.25), rgba(255, 60, 60, 0.18));
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.stat strong {
  display: block;
  font-size: var(--text-sm);
}

.stat small {
  display: block;
  color: rgba(255, 255, 255, 0.65);
  font-size: 12px;
  margin-top: 2px;
}

/* --- PRICING --- */
.pricing-inner {
  max-width: var(--container-width);
  margin: 0 auto;
  overflow: visible;
  position: relative;
  z-index: 1;
}

.pricing-head,
.section-head-left {
  position: relative;
  max-width: 980px;
  margin: 0 auto 34px;
  text-align: center;
}

.pricing-head h2 {
  margin-top: 14px;
  font-size: clamp(1.9rem, 2.6vw, 2.55rem);
  line-height: 1.1;
  letter-spacing: -0.03em;
  text-wrap: balance;
  max-width: 22ch;
  margin-left: auto;
  margin-right: auto;
}

.pricing-head p {
  margin-top: 14px;
  color: rgba(255, 255, 255, 0.74);
  font-size: var(--text-lg);
  line-height: 1.75;
  max-width: 68ch;
  margin-left: auto;
  margin-right: auto;
}

.pricing-grid {
  position: relative;
  margin-top: 32px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  align-items: stretch;
}

.price-card {
  padding: 28px;
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
}

.badge {
  position: absolute;
  top: 18px;
  right: 18px;
  font-size: 12px;
  padding: 7px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(0, 0, 0, 0.35);
}

.price-top h3 {
  font-size: var(--heading-sm);
  margin-bottom: 10px;
}

.price {
  font-size: clamp(2.2rem, 3vw, 2.8rem);
  font-weight: 700;
  line-height: 1;
}

.price-sub {
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.72);
  font-size: var(--text-sm);
}

.price-list {
  list-style: none;
  margin-top: 22px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: grid;
  gap: 12px;
  color: rgba(255, 255, 255, 0.78);
  font-size: var(--text-base);
  line-height: 1.7;
}

.price-list li::before {
  content: "✓";
  margin-right: 10px;
  color: rgba(0, 255, 156, 0.9);
}

.price-actions {
  margin-top: auto;
  display: grid;
  gap: 12px;
  padding-top: 22px;
}

.price-actions .btn-gradient {
  width: 100%;
}

.founding-badge {
  margin: 24px auto 0;
  max-width: 720px;
  text-align: center;
  padding: 14px 18px;
  border-radius: 16px;
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.7;
}

.other-services {
  margin-top: 24px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.other-card {
  padding: 22px;
  border-radius: var(--radius-md);
}

.other-card h4 {
  font-size: var(--text-base);
  margin-bottom: 8px;
}

.other-card p {
  color: rgba(255, 255, 255, 0.72);
  font-size: var(--text-sm);
  line-height: 1.65;
}

.other-meta {
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.8);
  font-size: var(--text-sm);
}

.pricing-helper {
  margin: 18px auto 0;
  max-width: 920px;
  text-align: center;
  color: rgba(255, 255, 255, 0.72);
  font-size: var(--text-sm);
  line-height: 1.7;
}

.pricing-helper a {
  color: rgba(255, 255, 255, 0.92);
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.25);
}

.pricing-helper a:hover {
  opacity: 0.8;
}

/* --- PRODUCTS --- */
.products-grid {
  margin: 32px auto 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  max-width: 980px;
  position: relative;
  z-index: 1;
}

.products-grid-3 {
  grid-template-columns: repeat(3, 1fr);
  max-width: 1200px;
  margin: 28px auto 0;
}

.product-card {
  padding: 26px;
  border-radius: var(--radius-lg);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6);
}

.product-card h3 {
  font-size: var(--heading-md);
  line-height: 1.18;
  margin-top: 14px;
  margin-bottom: 12px;
}

.product-card p {
  color: rgba(255, 255, 255, 0.75);
  font-size: var(--text-base);
  line-height: 1.75;
  min-height: 140px;
}

.product-status {
  display: inline-block;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  color: #fff;
}

.products .product-status {
  background: linear-gradient(90deg, rgba(0, 170, 255, 0.28), rgba(0, 255, 156, 0.22), rgba(255, 140, 0, 0.18));
  border: 1px solid rgba(0, 255, 156, 0.32);
  color: #ffffff;
  box-shadow: 0 10px 24px rgba(0, 170, 255, 0.14), 0 0 0 1px rgba(255,255,255,0.03) inset;
}

.product-feature-list {
  list-style: none;
  margin-top: 22px;
  margin-bottom: 10px;
  display: grid;
  gap: 12px;
  padding-left: 0;
  min-height: 0;
}

.product-card .panel-cta {
  margin-top: 28px;
  align-self: flex-start;
}

.product-feature-list li {
  color: rgba(255, 255, 255, 0.78);
  font-size: var(--text-sm);
  line-height: 1.65;
}

.product-feature-list li::before {
  content: "✓";
  margin-right: 10px;
  color: rgba(0, 255, 156, 0.9);
}

.price-stack {
  margin-top: 18px;
  display: grid;
  gap: 10px;
}

.price-note {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.58);
  text-align: center;
  margin: 10px 0 0;
}

.mini-price-card span {
  font-size: 26px;
  font-weight: 700;
}

.mini-price-card small {
  opacity: 0.7;
}

.mini-price,
.mini-price-card {
  padding: 16px 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.mini-price strong,
.mini-price-card strong {
  display: block;
  font-size: var(--text-sm);
  margin-bottom: 4px;
}

.mini-price span,
.mini-price-card span {
  display: block;
  font-size: var(--text-lg);
  font-weight: 700;
  color: #fff;
}

.mini-price small,
.mini-price-card small {
  display: block;
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.65);
  font-size: 12px;
}

/* --- BETA --- */
.beta-form {
  max-width: 860px;
  margin: 28px auto 0;
  padding: 34px;
  border-radius: 24px;
  overflow: visible;
  position: relative;
  z-index: 2;
}

.form-foot {
  margin: 0;
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.65);
}

/* --- CONTACT --- */
.contact-shell {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 36px;
  align-items: stretch;
  max-width: var(--container-width);
  margin: 0 auto;
  width: 100%;
  z-index: 1;
}

.contact-left,
.contact-form-wide {
  height: 100%;
  min-width: 0;
  width: 100%;
  display: flex;
  flex-direction: column;
  padding: 40px;
  border-radius: 24px;
}

.contact-left {
  justify-content: space-between;
  gap: 30px;
}

.contact-form-wide {
  justify-content: space-between;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.014)),
    rgba(7, 9, 13, 0.52);
}

.contact-form-wide {
  height: 100%;
  display: grid;
  align-content: start;
  gap: 30px;
}

.contact-form-wide > .form-head {
  margin-bottom: 4px;
}

.contact-form-wide > .grid-2 {
  margin-bottom: 2px;
}

.contact-form-wide > .field.full-width {
  margin-bottom: 2px;
}

.contact-left h2 {
  margin-top: 6px;
  max-width: 18ch;
  font-size: clamp(1.85rem, 2.5vw, 2.5rem);
  line-height: 1.1;
  letter-spacing: -0.03em;
}

.contact-left p {
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.75);
  max-width: 54ch;
  font-size: var(--text-md);
  line-height: 1.72;
}

.contact-highlights,
.contact-direct {
  display: grid;
  gap: 14px;
}

.contact-highlights {
  margin-top: 4px;
}

.contact-direct {
  margin-top: 0;
}

.contact-left .highlight,
.contact-left .contact-pill {
  display: grid;
  grid-template-columns: 44px 1fr;
  align-items: center;
  gap: 14px;
  padding: 18px 18px;
  min-height: 98px;
  border-radius: 16px;
  transition: border-color 0.2s ease, background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.contact-left .highlight {
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.025));
}

.contact-left .contact-pill {
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.42), rgba(0, 0, 0, 0.3));
}

.contact-left .highlight:hover,
.contact-left .contact-pill:hover {
  border-color: rgba(255, 255, 255, 0.18);
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.22);
}

.contact-left .highlight > div,
.contact-left .contact-pill > div {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
}

.contact-left .highlight strong,
.contact-left .contact-pill strong {
  display: block;
  font-size: var(--text-base);
  line-height: 1.2;
  margin: 0;
}

.contact-left .highlight small,
.contact-left .contact-pill small {
  display: block;
  margin-top: 4px;
  font-size: 12px;
  line-height: 1.3;
  color: rgba(255, 255, 255, 0.65);
}

.contact-left .dot {
  width: 14px;
  height: 14px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(0, 170, 255, 0.95), rgba(0, 255, 156, 0.85));
  box-shadow: 0 0 0 7px rgba(0, 170, 255, 0.08);
  justify-self: center;
}

.contact-left .contact-pill span {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.1);
  justify-self: center;
}

.contact-left .contact-pill strong a {
  text-decoration: none;
}

.form-head {
  margin-bottom: 10px;
}

.form-head h3 {
  font-size: clamp(1.35rem, 2vw, 1.7rem);
  line-height: 1.2;
  margin-bottom: 10px;
}

.form-head p {
  margin-top: 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 15px;
  line-height: 1.72;
  max-width: 54ch;
}

.price-card .btn-gradient,
.price-card .btn-ghost,
.product-card .panel-cta {
  justify-content: center;
}

/* --- FORM SYSTEM --- */
.beta-form,
.contact-form-wide,
.product-page form {
  display: grid;
  gap: 24px;
}

.contact-form-wide {
  height: 100%;
  align-content: start;
}

.form-head {
  margin-bottom: 10px;
}

.form-head h3 {
  font-size: clamp(1.35rem, 2vw, 1.7rem);
  line-height: 1.2;
  margin-bottom: 10px;
}

.form-head p {
  margin-top: 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 15px;
  line-height: 1.72;
  max-width: 54ch;
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  align-items: start;
  margin: 0;
}

.field,
.full-width {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 0;
}

.full-width {
  grid-column: 1 / -1;
}

.field label,
.full-width label {
  display: block;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.78);
  margin: 0;
  line-height: 1.35;
  letter-spacing: 0.01em;
}

.field input,
.field select,
.full-width input,
.full-width select,
.beta-form input,
.beta-form select,
.contact-form-wide input,
.contact-form-wide select,
.select-trigger {
  width: 100%;
  height: 58px;
  min-height: 58px;
  padding: 0 18px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(0, 0, 0, 0.46);
  color: rgba(255, 255, 255, 0.92);
  outline: none;
  box-sizing: border-box;
  line-height: 1;
  transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.field textarea,
.full-width textarea,
.beta-form textarea,
.contact-form-wide textarea {
  width: 100%;
  min-height: 180px;
  padding: 16px 18px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(0, 0, 0, 0.46);
  color: rgba(255, 255, 255, 0.92);
  outline: none;
  box-sizing: border-box;
  line-height: 1.6;
  resize: vertical;
  transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.contact-form-wide .field.full-width textarea {
  min-height: 300px;
}

.field input::placeholder,
.field textarea::placeholder,
.full-width input::placeholder,
.full-width textarea::placeholder,
.beta-form input::placeholder,
.beta-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.42);
}

.field input:focus,
.field textarea:focus,
.field select:focus,
.full-width input:focus,
.full-width textarea:focus,
.full-width select:focus,
.beta-form input:focus,
.beta-form textarea:focus,
.beta-form select:focus,
.contact-form-wide input:focus,
.contact-form-wide textarea:focus,
.contact-form-wide select:focus,
.select-trigger:focus {
  border-color: rgba(0, 170, 255, 0.55);
  box-shadow: 0 0 0 4px rgba(0, 170, 255, 0.08);
}

/* --- FOOTER --- */
.footer {
  border-top: 1px solid rgba(255, 255, 255, 0.025);
  padding: 40px 80px 50px;
  background: rgba(4, 6, 10, 0.54);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.footer-inner {
  max-width: var(--container-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr 1.2fr;
  gap: 28px;
  align-items: start;
  position: relative;
  z-index: 1;
}

.footer-col-brand {
  display: flex;
  flex-direction: column;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
}

.footer-col-contact {
  max-width: 260px;
}

.footer-col h4 {
  margin-bottom: 12px;
  font-size: var(--text-base);
}

.footer-col a {
  display: block;
  text-decoration: none;
  margin-bottom: 10px;
  color: rgba(255, 255, 255, 0.75);
  font-size: var(--text-sm);
  transition: opacity 0.2s ease;
}

.footer-col a:hover {
  opacity: 0.8;
}

.footer-text {
  color: rgba(255, 255, 255, 0.68);
  font-size: var(--text-sm);
  line-height: 1.7;
}

.footer-contact-line {
  margin-bottom: 10px;
}

.footer-socials {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 10px;
}

.social-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 12px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 13px;
}

.footer-bottom {
  max-width: var(--container-width);
  margin: 26px auto 0;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  gap: 16px;
  flex-wrap: wrap;
  color: rgba(255, 255, 255, 0.6);
  font-size: 13px;
  position: relative;
  z-index: 1;
}

/* --- CUSTOM SELECT --- */
.custom-select {
  position: relative;
  width: 100%;
  z-index: 5;
}

.select-trigger {
  padding: 0 52px 0 18px;
  text-align: left;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  appearance: none;
  -webkit-appearance: none;
}

.select-trigger:hover {
  border-color: rgba(255, 255, 255, 0.24);
  background: rgba(0, 0, 0, 0.52);
}

.select-trigger-text {
  color: rgba(255, 255, 255, 0.92);
  line-height: 1.2;
  font-size: var(--text-base);
}

.custom-select.is-placeholder .select-trigger-text {
  color: rgba(255, 255, 255, 0.42);
}

.select-arrow {
  position: absolute;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.7);
  pointer-events: none;
  transition: transform 0.2s ease, color 0.2s ease;
}

.custom-select.is-open .select-arrow {
  transform: translateY(-50%) rotate(180deg);
  color: rgba(255, 255, 255, 0.95);
}

.select-dropdown {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  right: 0;
  z-index: 100;
  display: grid;
  gap: 8px;
  padding: 10px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(12, 12, 12, 0.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.6);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
}

.custom-select.is-open .select-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

.select-option {
  width: 100%;
  padding: 14px 16px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
  color: rgba(255, 255, 255, 0.88);
  text-align: left;
  cursor: pointer;
  font-size: var(--text-sm);
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.15s ease;
}

.select-option:hover,
.select-option:focus {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.18);
}

.select-option.is-selected {
  background: linear-gradient(180deg, rgba(0, 170, 255, 0.12), rgba(255, 60, 60, 0.08));
  border-color: rgba(255, 255, 255, 0.16);
  color: #fff;
}

.select-option:active {
  transform: translateY(1px);
}

/* --- BACK TO TOP --- */
.back-to-top {
  position: fixed;
  right: 24px;
  bottom: 24px;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  background: linear-gradient(135deg, #ff5a2f, #ff3c3c);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow:
    0 10px 24px rgba(0, 0, 0, 0.35),
    0 8px 20px rgba(255, 60, 60, 0.32);
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px) scale(0.96);
  transition:
    opacity 0.25s ease,
    transform 0.25s ease,
    box-shadow 0.2s ease;
  z-index: 1000;
}

.back-to-top.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}

.back-to-top:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow:
    0 14px 30px rgba(0, 0, 0, 0.45),
    0 10px 26px rgba(255, 60, 60, 0.45);
}

.back-to-top:focus-visible {
  outline: 2px solid rgba(255, 90, 47, 0.95);
  outline-offset: 4px;
}

.back-to-top svg {
  width: 20px;
  height: 20px;
}

/* --- OPTIONAL REVEAL --- */
.reveal-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.reveal-up.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes pixoraAurora {
  0% {
    transform: translate3d(0, 0, 0) scale(1);
  }
  50% {
    transform: translate3d(1.5%, -1.5%, 0) scale(1.04);
  }
  100% {
    transform: translate3d(-1.5%, 1%, 0) scale(1.08);
  }
}

/* --- PRODUCT PAGE --- */
.product-page {
  position: relative;
  isolation: isolate;
}

.product-page::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -3;
  background:
    radial-gradient(circle at 14% 16%, rgba(0, 170, 255, 0.14), transparent 26%),
    radial-gradient(circle at 84% 18%, rgba(255, 60, 60, 0.10), transparent 24%),
    radial-gradient(circle at 20% 70%, rgba(0, 255, 156, 0.08), transparent 26%),
    radial-gradient(circle at 74% 76%, rgba(255, 140, 0, 0.08), transparent 24%),
    radial-gradient(circle at 50% 48%, rgba(255, 255, 255, 0.02), transparent 40%);
  filter: blur(70px) saturate(112%);
  opacity: 0.92;
}

.product-content {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.product-content .panel {
  height: 100%;
}

.product-page-inner {
  max-width: 1000px;
  margin: 0 auto;
  padding: 140px 20px 80px;
}

/* --- LEGAL PAGE --- */
.legal-container {
  max-width: 760px;
  margin: 0 auto;
  padding: 140px 20px 80px;
}

.legal-page {
  background: #05070a;
}

.legal-page h1 {
  margin-bottom: 10px;
}

.legal-page h2 {
  margin-top: 40px;
  margin-bottom: 10px;
}

.legal-page p,
.legal-page li {
  font-size: 15px;
  line-height: 1.8;
  color: rgba(255,255,255,0.75);
}

.legal-page ul {
  margin-top: 10px;
  padding-left: 18px;
}

.product-hero-meta {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin: 24px 0 32px;
}

.product-hero-meta .mini-price-card {
  height: 100%;
  min-height: 132px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.product-hero-meta-2 {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.product-hero-meta-2 .mini-price-card {
  height: 100%;
  min-height: 140px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  text-align: center;
}

.product-hero-meta-3 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.product-hero-meta-3 .mini-price-card {
  height: 100%;
  min-height: 140px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  text-align: center;
}

/* Make middle one stand out */
.product-hero-meta-3 .featured {
  border: 1px solid rgba(255,255,255,0.18);
  background:
    linear-gradient(180deg, rgba(0,170,255,0.14), rgba(255,60,60,0.08)),
    rgba(10,10,12,0.8);
  transform: scale(1.03);
}

/* --- PRODUCT / LEGAL PAGE SMALL LAYOUT REFINEMENTS --- */
.product-page .tag,
.legal-page .tag {
  margin-left: auto;
  margin-right: auto;
}

.legal-back {
  margin-top: 40px;
}

.beta-inline {
  max-width: 860px;
  margin: 36px auto 0;
  padding: 34px;
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.038), rgba(255,255,255,0.012)),
    rgba(7, 9, 13, 0.48);
  border: 1px solid rgba(255,255,255,0.065);
  box-shadow:
    0 10px 24px rgba(0, 0, 0, 0.16),
    0 20px 50px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.beta-inline h2 {
  margin-bottom: 10px;
}

.beta-inline p {
  color: rgba(255, 255, 255, 0.74);
  line-height: 1.75;
}

.compact-beta-form {
  margin-top: 22px;
  padding: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

/* --- RESPONSIVE --- */
@media (max-width: 1100px) {
  .about-grid,
  .pricing-grid,
  .other-services,
  .products-grid,
  .about-stats,
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .footer-inner {
    justify-items: center;
    text-align: center;
  }

  .footer-col-brand {
    align-items: center;
  }

  .footer-socials,
  .footer-bottom {
    justify-content: center;
  }
}

@media (max-width: 900px) {
  .header,
  .footer {
    padding-left: 14px;
    padding-right: 14px;
  }

  .hero {
    padding: 120px 14px 88px;
  }

  .about,
  .pricing,
  .products,
  .beta-section,
  .contact {
    padding-left: 12px;
    padding-right: 12px;
  }

  .nav-toggle {
    display: inline-grid;
    place-items: center;
  }

  .nav {
  position: absolute;
  top: calc(100% + 12px);
  right: 20px;
  left: 20px;
  display: grid;
  gap: 10px;
  padding: 16px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: #0b0d11;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.72);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
  pointer-events: none;
}

  .nav a {
    margin: 0;
    padding: 14px 16px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.03);
  }

  .header.nav-open .nav {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
  }

  .hero h1,
  .about-card h2,
  .pricing-head h2,
  .contact-left h2 {
    font-size: clamp(1.75rem, 4.8vw, 2.2rem);
    line-height: 1.12;
    max-width: 100%;
  }

  .hero p,
  .about-card p,
  .pricing-head p,
  .contact-left p {
    font-size: var(--text-base);
    line-height: 1.68;
    max-width: 100%;
  }

  .contact-shell {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .contact-left,
  .contact-form-wide {
    padding: 32px;
  }

  .contact-form-wide form {
    gap: 26px;
  }

  .grid-2 {
    grid-template-columns: 1fr;
    gap: 18px;
  }
}

@media (max-width: 768px) {
  .hero {
    min-height: 100dvh;
    min-height: 100svh;
    padding: 96px 20px 48px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .hero-inner {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    align-items: center;
    text-align: center;
  }

  .hero h1 {
    max-width: 16ch;
    font-size: clamp(2.2rem, 8vw, 3.2rem);
    line-height: 1.04;
  }

  .hero p {
    max-width: 34ch;
    font-size: 16px;
    line-height: 1.72;
  }

  .hero-cta {
    width: 100%;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 12px;
  }

  .hero-cta .btn-gradient,
  .hero-cta .btn-ghost {
    width: 100%;
    max-width: 320px;
  }

  .grid-2 {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .contact-left,
  .contact-form-wide,
  .beta-form,
  .about-card,
  .panel,
  .price-card,
  .product-card,
  .other-card {
    padding: 34px;
    border-radius: 24px;
  }

  .contact-form-wide form,
  .beta-form,
  .product-page form {
    gap: 24px;
  }

  .field,
  .full-width {
    gap: 10px;
  }

  .field input,
  .field select,
  .full-width input,
  .full-width select,
  .beta-form input,
  .beta-form select,
  .contact-form-wide input,
  .contact-form-wide select,
  .select-trigger {
    height: 58px;
    min-height: 58px;
    padding: 0 18px;
    border-radius: 16px;
    font-size: 16px;
  }

  .field textarea,
  .full-width textarea,
  .beta-form textarea,
  .contact-form-wide textarea {
    min-height: 180px;
    padding: 16px 18px;
    border-radius: 16px;
    font-size: 16px;
  }

  .contact-form-wide .field.full-width textarea {
    min-height: 260px;
  }

  .contact-form-wide .btn-gradient,
  .beta-form .btn-gradient {
    width: auto;
    max-width: none;
    justify-self: start;
  }

  .product-content {
    grid-template-columns: 1fr;
  }

  .product-hero-meta {
    grid-template-columns: 1fr;
  }

  .product-hero-meta .mini-price-card {
    min-height: 0;
  }

  .product-hero-meta-2 {
    grid-template-columns: 1fr;
  }

  .product-hero-meta-3 {
    grid-template-columns: 1fr;
  }

  .product-hero-meta-3 .featured {
    transform: none;
  }
}

@media (max-width: 600px) {
  .header,
  .footer {
    padding-left: 10px;
    padding-right: 10px;
  }

  .hero {
    min-height: 100dvh;
    min-height: 100svh;
    padding: 88px 16px 40px;
  }

  .hero h1 {
    max-width: 14ch;
    font-size: clamp(2rem, 9vw, 2.8rem);
    line-height: 1.06;
  }

  .hero p {
    max-width: 30ch;
    font-size: 15.5px;
    line-height: 1.72;
  }

  .about,
  .pricing,
  .products,
  .beta-section,
  .contact {
    padding-left: 16px;
    padding-right: 16px;
    padding-top: 80px;
    padding-bottom: 80px;
  }

  .pricing-head,
  .section-head-left {
    margin-bottom: 24px;
  }

  .contact-left,
  .contact-form-wide,
  .beta-form,
  .about-card,
  .panel,
  .price-card,
  .product-card,
  .other-card {
    padding: 28px;
  }

  .contact-shell {
    gap: 16px;
  }

  .back-to-top {
    right: 16px;
    bottom: 16px;
    width: 48px;
    height: 48px;
  }
}

/* === MODAL === */
.modal {
  position: fixed;
  inset: 0;
  display: none;
  z-index: 2000;
}

.modal.is-open {
  display: block;
}

.modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(3, 6, 10, 0.78);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.modal-content {
  position: relative;
  width: min(94vw, 920px);
  max-height: calc(100vh - 40px);
  margin: 20px auto;
  padding: 34px;
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.015)),
    rgba(8, 10, 14, 0.96);
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow:
    0 20px 50px rgba(0,0,0,0.35),
    0 40px 100px rgba(0,0,0,0.45);
  display: flex;
  flex-direction: column;
  gap: 22px;
  overflow: auto;
}

.modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.03);
  color: #fff;
  font-size: 18px;
  cursor: pointer;
}

.modal-head {
  padding-right: 56px;
}

.modal-head h2 {
  font-size: clamp(1.3rem, 2vw, 1.7rem);
  line-height: 1.2;
  margin-bottom: 8px;
}

.modal-head p {
  color: rgba(255,255,255,0.72);
  font-size: 14px;
  line-height: 1.65;
}

.modal-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 92px;
  height: 32px;
  padding: 6px 12px;
  margin-bottom: 12px;
  border-radius: 999px;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.82);
}

#questionnaireText {
  width: 100%;
  min-height: 420px;
  border-radius: 16px;
  padding: 16px 18px;
  background: rgba(0, 0, 0, 0.42);
  border: 1px solid rgba(255,255,255,0.1);
  color: #fff;
  resize: vertical;
  line-height: 1.65;
}

.modal-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.modal-actions .btn-gradient,
.modal-actions .btn-ghost {
  min-width: 160px;
}

@media (max-width: 600px) {
  .modal-content {
    width: calc(100vw - 20px);
    max-height: calc(100vh - 20px);
    margin: 10px auto;
    padding: 20px;
    border-radius: 20px;
  }

  .modal-head {
    padding-right: 46px;
  }

  #questionnaireText {
    min-height: 240px;
  }

  .modal-actions {
    flex-direction: column;
  }

  .modal-actions .btn-gradient,
  .modal-actions .btn-ghost {
    width: 100%;
    min-width: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  main:not(.product-page):not(.legal-page)::before {
    animation: none;
  }

  .back-to-top,
  .reveal-up {
    transition: none;
  }

  .reveal-up {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 768px) {
  .contact-form-wide {
    display: block !important;
    padding: 34px !important;
  }

  .contact-form-wide > .form-head {
    margin-bottom: 28px !important;
  }

  .contact-form-wide > .grid-2 {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 24px !important;
    margin-bottom: 28px !important;
  }

  .contact-form-wide > .field.full-width {
    margin-bottom: 28px !important;
  }

  .contact-form-wide .field,
  .contact-form-wide .full-width {
    gap: 12px !important;
  }

  .contact-form-wide .field input,
  .contact-form-wide .field select,
  .contact-form-wide .full-width input,
  .contact-form-wide .full-width select,
  .contact-form-wide .select-trigger {
    height: 58px !important;
    min-height: 58px !important;
  }

  .contact-form-wide .field textarea,
  .contact-form-wide .full-width textarea {
    min-height: 240px !important;
  }

  .contact-form-wide > .btn-gradient,
  .contact-form-wide > button,
  .contact-form-wide > input[type="submit"] {
    display: block !important;
    width: 100% !important;
    margin-top: 16px !important;
  }

  .products-grid {
    max-width: 100%;
  }

.product-card {
    padding: 24px;
  }

.product-card p {
    min-height: 0;
  }

  .beta-inline {
    margin-top: 28px;
  }

  .legal-back {
    margin-top: 32px;
  }
}

@media (max-width: 600px) {
  .contact-form-wide {
    padding: 28px !important;
  }

  .contact-form-wide > .form-head {
    margin-bottom: 24px !important;
  }

  .contact-form-wide > .grid-2 {
    gap: 22px !important;
    margin-bottom: 24px !important;
  }

  .contact-form-wide > .field.full-width {
    margin-bottom: 24px !important;
  }

  .contact-form-wide > .btn-gradient,
  .contact-form-wide > button,
  .contact-form-wide > input[type="submit"] {
    margin-top: 14px !important;
  }
}

.beta-inline,
.beta-inline .panel,
.compact-beta-form,
.compact-beta-form .field,
.compact-beta-form .full-width,
.compact-beta-form .custom-select {
  overflow: visible;
}

.compact-beta-form .custom-select {
  z-index: 30;
}

.compact-beta-form .select-dropdown {
  z-index: 200;
}