:root {
  --cosmic-black: #0B0E11;
  --shadow-navy: #141A28;
  --deep-charcoal: #1E1F22;
  --iron-eclipse: #26272B;
  --obsidian-purple: #1A1528;
  --accent-cyan: #00D9FF;
  --accent-magenta: #B649FF;
  --accent-lavender: #8B7FFF;
  
  --font-display: 'Orbitron', sans-serif;
  --font-body: 'Space Grotesk', sans-serif;
  --text-xs: 0.75rem;
  --text-sm: 0.875rem;
  --text-base: 1rem;
  --text-lg: 1.125rem;
  --text-xl: 1.25rem;
  --text-2xl: 1.5rem;
  --text-3xl: 1.875rem;
  --text-4xl: 2.25rem;
  --text-5xl: 3rem;
  
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2rem;
  --space-xl: 3rem;
  --space-2xl: 4rem;
  
  --radius-sm: 0.5rem;
  --radius-md: 1rem;
  --radius-lg: 1.5rem;
  --shadow-soft: 0 4px 20px rgba(0, 217, 255, 0.1);
  --shadow-glow: 0 0 30px rgba(182, 73, 255, 0.3);
  --transition-fast: 0.2s ease;
  --transition-smooth: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--font-body);
  background: var(--cosmic-black);
  color: #fff;
  overflow-x: hidden;
  line-height: 1.6;
  font-size: var(--text-base);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--accent-cyan);
  outline-offset: 3px;
  border-radius: var(--radius-sm);
}


.header-membrane {
  position: relative;
  padding: var(--space-sm) var(--space-md);
  background: linear-gradient(135deg, var(--shadow-navy) 0%, var(--obsidian-purple) 100%);
  border-bottom: 1px solid rgba(0, 217, 255, 0.2);
  backdrop-filter: blur(10px);
  z-index: 1000;
  transition: var(--transition-smooth);
}

.header-container {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-md);
}

.logo-text {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 900;
  color: var(--accent-cyan);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  text-shadow: 0 0 20px rgba(0, 217, 255, 0.5);
  white-space: nowrap;
}

.nav-primary {
  display: flex;
  gap: var(--space-lg);
  align-items: center;
}

.nav-primary a {
  color: #fff;
  text-decoration: none;
  font-size: var(--text-sm);
  font-weight: 500;
  padding: var(--space-xs) var(--space-sm);
  border-radius: var(--radius-sm);
  transition: var(--transition-fast);
  position: relative;
  min-height: 44px;
  display: flex;
  align-items: center;
}

.nav-primary a::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--accent-cyan), var(--accent-magenta));
  transition: var(--transition-smooth);
}

.nav-primary a:hover::before {
  width: 100%;
}

.nav-primary a:hover {
  color: var(--accent-cyan);
}

.burger-menu {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: var(--space-sm);
  background: transparent;
  border: none;
  z-index: 1001;
  min-width: 44px;
  min-height: 44px;
  justify-content: center;
  align-items: center;
  border-radius: var(--radius-sm);
  transition: var(--transition-fast);
}

.burger-menu:active {
  background: rgba(0, 217, 255, 0.1);
}

.burger-line {
  width: 25px;
  height: 2px;
  background: var(--accent-cyan);
  transition: var(--transition-fast);
  box-shadow: 0 0 10px var(--accent-cyan);
}

.burger-menu.active .burger-line:nth-child(1) {
  transform: rotate(45deg) translate(7px, 7px);
}

.burger-menu.active .burger-line:nth-child(2) {
  opacity: 0;
}

.burger-menu.active .burger-line:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

.nav-mobile {
  display: none;
  position: fixed;
  top: 0;
  right: -100%;
  width: 280px;
  height: 100vh;
  background: linear-gradient(135deg, var(--shadow-navy) 0%, var(--obsidian-purple) 100%);
  padding: var(--space-2xl) var(--space-lg);
  z-index: 999;
  transition: var(--transition-smooth);
  box-shadow: -10px 0 30px rgba(0, 0, 0, 0.5);
}

.nav-mobile.active {
  right: 0;
}

.nav-mobile a {
  display: flex;
  align-items: center;
  color: #fff;
  text-decoration: none;
  padding: var(--space-md);
  margin-bottom: var(--space-sm);
  border-radius: var(--radius-sm);
  transition: var(--transition-fast);
  font-weight: 500;
  min-height: 44px;
}

.nav-mobile a:hover {
  background: rgba(0, 217, 255, 0.1);
  color: var(--accent-cyan);
  transform: translateX(-5px);
}

.hero-minimal {
  padding: var(--space-2xl) var(--space-md);
  text-align: center;
  background: linear-gradient(180deg, var(--cosmic-black) 0%, var(--shadow-navy) 100%);
  min-height: 30vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.hero-minimal::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 50% 50%, rgba(0, 217, 255, 0.05) 0%, transparent 70%);
  pointer-events: none;
}

.hero-content {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.hero-title {
  font-family: var(--font-display);
  font-size: var(--text-5xl);
  font-weight: 900;
  margin-bottom: var(--space-md);
  background: linear-gradient(135deg, var(--accent-cyan), var(--accent-magenta));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.2;
}

.hero-subtitle {
  font-size: var(--text-lg);
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.8;
}

.slider-cosmos {
  position: relative;
  height: 90vh;
  min-height: 600px;
  overflow: hidden;
  background: linear-gradient(180deg, var(--cosmic-black) 0%, var(--shadow-navy) 100%);
}

.slider-track {
  position: relative;
  height: 100%;
  width: 100%;
}

.slide-quantum {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1s ease-in-out;
  display: flex;
  align-items: center;
  justify-content: center;
}

.slide-quantum.active {
  opacity: 1;
  z-index: 2;
}

.slide-content {
  max-width: 1400px;
  width: 100%;
  padding: var(--space-xl);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-2xl);
  align-items: center;
}

.slide-text {
  z-index: 3;
}

.slide-text h1 {
  font-family: var(--font-display);
  font-size: var(--text-5xl);
  font-weight: 900;
  margin-bottom: var(--space-md);
  background: linear-gradient(135deg, var(--accent-cyan), var(--accent-magenta));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.2;
}

.slide-text p {
  font-size: var(--text-lg);
  margin-bottom: var(--space-lg);
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.8;
}

.slide-visual {
  position: relative;
  height: 500px;
  perspective: 1000px;
}

.visual-3d-object {
  position: absolute;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  transform-style: preserve-3d;
  animation: float-rotate 20s infinite ease-in-out;
}

.hologram-card {
  width: 400px;
  height: 400px;
  background: linear-gradient(135deg, rgba(0, 217, 255, 0.1), rgba(182, 73, 255, 0.1));
  border: 2px solid rgba(0, 217, 255, 0.3);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(20px);
  box-shadow: var(--shadow-glow);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 100px;
  color: var(--accent-cyan);
  transform: rotateY(20deg) rotateX(10deg);
}

@keyframes float-rotate {
  0%, 100% { transform: rotateY(0deg) rotateX(0deg) translateY(0); }
  25% { transform: rotateY(90deg) rotateX(10deg) translateY(-20px); }
  50% { transform: rotateY(180deg) rotateX(-10deg) translateY(0); }
  75% { transform: rotateY(270deg) rotateX(10deg) translateY(-20px); }
}

.slider-controls {
  position: absolute;
  bottom: var(--space-xl);
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: var(--space-sm);
  z-index: 10;
}

.slide-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  cursor: pointer;
  transition: var(--transition-fast);
  border: 2px solid transparent;
}

.slide-dot.active {
  background: var(--accent-cyan);
  box-shadow: 0 0 15px var(--accent-cyan);
  border-color: #fff;
}

.btn-quantum {
  display: inline-block;
  padding: var(--space-sm) var(--space-xl);
  background: linear-gradient(135deg, var(--accent-cyan), var(--accent-magenta));
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  border-radius: var(--radius-md);
  transition: var(--transition-smooth);
  box-shadow: var(--shadow-soft);
  font-size: var(--text-base);
  border: none;
  cursor: pointer;
}

.btn-quantum:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 40px rgba(0, 217, 255, 0.3);
}

.btn-secondary {
  background: linear-gradient(135deg, var(--deep-charcoal), var(--iron-eclipse));
  border: 1px solid var(--accent-lavender);
}

.btn-submit {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  width: 100%;
}

.btn-icon {
  font-size: var(--text-lg);
}

.section-cosmic {
  padding: var(--space-2xl) var(--space-md);
  max-width: 1400px;
  margin: 0 auto;
}

.section-title {
  font-family: var(--font-display);
  font-size: var(--text-4xl);
  text-align: center;
  margin-bottom: var(--space-xl);
  background: linear-gradient(135deg, var(--accent-lavender), var(--accent-cyan));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.subsection-title {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  margin-bottom: var(--space-md);
  color: var(--accent-lavender);
}

.intro-text {
  text-align: center;
  max-width: 800px;
  margin: 0 auto var(--space-xl);
  color: rgba(255, 255, 255, 0.8);
  font-size: var(--text-lg);
  line-height: 1.8;
}

.features-nebula {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-lg);
  margin-top: var(--space-xl);
}

.feature-crystal {
  background: linear-gradient(135deg, var(--deep-charcoal), var(--iron-eclipse));
  padding: var(--space-lg);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(139, 127, 255, 0.2);
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

.feature-crystal::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(0, 217, 255, 0.1) 0%, transparent 70%);
  opacity: 0;
  transition: var(--transition-smooth);
}

.feature-crystal:hover::before {
  opacity: 1;
}

.feature-crystal:hover {
  transform: translateY(-5px);
  border-color: var(--accent-cyan);
  box-shadow: var(--shadow-glow);
}

.feature-icon {
  font-size: var(--text-4xl);
  color: var(--accent-cyan);
  margin-bottom: var(--space-md);
  display: block;
}

.feature-crystal h3 {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  margin-bottom: var(--space-sm);
  color: var(--accent-lavender);
}

.feature-crystal p {
  color: rgba(255, 255, 255, 0.7);
  font-size: var(--text-sm);
  line-height: 1.7;
}

.product-constellation {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: var(--space-xl);
  margin-top: var(--space-xl);
}

.product-card {
  background: linear-gradient(135deg, var(--deep-charcoal), var(--iron-eclipse));
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(139, 127, 255, 0.2);
  transition: var(--transition-smooth);
  position: relative;
}

.product-card.featured {
  border-color: var(--accent-magenta);
  box-shadow: 0 0 40px rgba(182, 73, 255, 0.2);
}

.featured-badge {
  position: absolute;
  top: var(--space-md);
  right: var(--space-md);
  background: linear-gradient(135deg, var(--accent-magenta), var(--accent-lavender));
  color: #fff;
  padding: var(--space-xs) var(--space-md);
  border-radius: var(--radius-sm);
  font-size: var(--text-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  z-index: 2;
}

.product-visual {
  height: 250px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--shadow-navy), var(--obsidian-purple));
  border-bottom: 1px solid rgba(0, 217, 255, 0.2);
}

.product-icon {
  font-size: 100px;
  color: var(--accent-cyan);
  animation: float-gentle 3s ease-in-out infinite;
}

@keyframes float-gentle {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-15px); }
}

.product-info {
  padding: var(--space-lg);
}

.product-name {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  margin-bottom: var(--space-sm);
  color: var(--accent-lavender);
}

.product-description {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: var(--space-md);
  line-height: 1.7;
}

.product-features {
  list-style: none;
  margin-bottom: var(--space-lg);
}

.product-features li {
  padding: var(--space-xs) 0;
  color: rgba(255, 255, 255, 0.8);
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-size: var(--text-sm);
}

.product-features i {
  color: var(--accent-cyan);
  font-size: var(--text-sm);
}

.product-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: var(--space-md);
  border-top: 1px solid rgba(139, 127, 255, 0.2);
}

.product-price {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 900;
  color: var(--accent-cyan);
}

.product-card:hover {
  transform: translateY(-5px);
  border-color: var(--accent-cyan);
  box-shadow: 0 10px 40px rgba(0, 217, 255, 0.2);
}

.stats-constellation {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--space-lg);
  text-align: center;
  margin: var(--space-xl) 0;
}

.stat-orb {
  padding: var(--space-lg);
}

.stat-number {
  font-family: var(--font-display);
  font-size: var(--text-5xl);
  font-weight: 900;
  background: linear-gradient(135deg, var(--accent-cyan), var(--accent-magenta));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block;
  margin-bottom: var(--space-xs);
}

.stat-label {
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.cta-dimension {
  background: linear-gradient(135deg, var(--obsidian-purple), var(--shadow-navy));
  padding: var(--space-2xl);
  border-radius: var(--radius-lg);
  text-align: center;
  margin: var(--space-2xl) 0;
  border: 1px solid rgba(182, 73, 255, 0.3);
}

.cta-dimension h2 {
  font-family: var(--font-display);
  font-size: var(--text-3xl);
  margin-bottom: var(--space-md);
}

.cta-dimension p {
  font-size: var(--text-lg);
  margin-bottom: var(--space-lg);
  color: rgba(255, 255, 255, 0.8);
}

.contact-nexus {
  max-width: 1200px;
  margin: 0 auto;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-2xl);
}

.contact-form-zone,
.contact-info-zone {
  background: linear-gradient(135deg, var(--deep-charcoal), var(--iron-eclipse));
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(139, 127, 255, 0.2);
}

.form-intro {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: var(--space-lg);
  line-height: 1.7;
}

.form-container {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.input-nebula {
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
}

.input-label {
  font-size: var(--text-sm);
  color: var(--accent-lavender);
  font-weight: 600;
}

.input-quantum,
.textarea-quantum {
  padding: var(--space-sm);
  background: var(--shadow-navy);
  border: 1px solid rgba(139, 127, 255, 0.3);
  border-radius: var(--radius-sm);
  color: #fff;
  font-family: var(--font-body);
  font-size: var(--text-base);
  transition: var(--transition-fast);
}

.input-quantum:focus,
.textarea-quantum:focus {
  outline: none;
  border-color: var(--accent-cyan);
  box-shadow: 0 0 15px rgba(0, 217, 255, 0.2);
  background: rgba(20, 26, 40, 0.8);
}

.input-quantum:focus-visible,
.textarea-quantum:focus-visible {
  outline: 2px solid var(--accent-cyan);
  outline-offset: 2px;
}

.textarea-quantum {
  resize: vertical;
  min-height: 120px;
}

.checkbox-nebula {
  display: flex;
  gap: var(--space-sm);
  align-items: flex-start;
}

.checkbox-nebula input[type="checkbox"] {
  margin-top: 4px;
  width: 18px;
  height: 18px;
  cursor: pointer;
}

.checkbox-label {
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
}

.checkbox-label a {
  color: var(--accent-cyan);
  text-decoration: underline;
}

.info-cluster {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
  margin-bottom: var(--space-xl);
}

.info-item {
  display: flex;
  gap: var(--space-md);
  align-items: flex-start;
}

.info-icon {
  font-size: var(--text-2xl);
  color: var(--accent-cyan);
  min-width: 30px;
}

.info-details {
  flex: 1;
}

.info-title {
  font-family: var(--font-display);
  font-size: var(--text-base);
  margin-bottom: var(--space-xs);
  color: var(--accent-lavender);
}

.info-text {
  color: rgba(255, 255, 255, 0.7);
  font-size: var(--text-sm);
  line-height: 1.7;
}

.info-text a {
  color: var(--accent-cyan);
  transition: var(--transition-fast);
}

.info-text a:hover {
  text-decoration: underline;
}

.social-constellation {
  margin-top: var(--space-xl);
  padding-top: var(--space-xl);
  border-top: 1px solid rgba(139, 127, 255, 0.2);
}

.social-title {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  margin-bottom: var(--space-md);
  color: var(--accent-lavender);
}

.social-links {
  display: flex;
  gap: var(--space-md);
}

.social-orb {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--shadow-navy), var(--obsidian-purple));
  border: 1px solid rgba(0, 217, 255, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-cyan);
  font-size: var(--text-lg);
  transition: var(--transition-smooth);
}

.social-orb:hover {
  transform: translateY(-3px);
  border-color: var(--accent-cyan);
  box-shadow: 0 0 20px rgba(0, 217, 255, 0.4);
}

.map-portal {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(139, 127, 255, 0.2);
  box-shadow: var(--shadow-soft);
}

.map-portal iframe {
  display: block;
  width: 100%;
}


.story-container {
  max-width: 900px;
  margin: 0 auto;
}

.story-block {
  margin-bottom: var(--space-2xl);
}

.story-text {
  color: rgba(255, 255, 255, 0.8);
  font-size: var(--text-lg);
  line-height: 1.8;
  margin-bottom: var(--space-md);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--space-lg);
  margin-top: var(--space-xl);
}

.value-card {
  background: linear-gradient(135deg, var(--deep-charcoal), var(--iron-eclipse));
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(139, 127, 255, 0.2);
  text-align: center;
  transition: var(--transition-smooth);
}

.value-card:hover {
  transform: translateY(-5px);
  border-color: var(--accent-cyan);
  box-shadow: var(--shadow-glow);
}

.value-icon {
  font-size: var(--text-5xl);
  color: var(--accent-cyan);
  margin-bottom: var(--space-md);
}

.value-card h3 {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  margin-bottom: var(--space-sm);
  color: var(--accent-lavender);
}

.value-card p {
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.7;
  font-size: var(--text-sm);
}

.team-constellation {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-xl);
  margin-top: var(--space-xl);
}

.team-member {
  text-align: center;
  padding: var(--space-lg);
  background: linear-gradient(135deg, var(--deep-charcoal), var(--iron-eclipse));
  border-radius: var(--radius-lg);
  border: 1px solid rgba(139, 127, 255, 0.2);
  transition: var(--transition-smooth);
}

.team-member:hover {
  transform: translateY(-5px);
  border-color: var(--accent-cyan);
}

.member-avatar {
  width: 120px;
  height: 120px;
  margin: 0 auto var(--space-md);
  border-radius: 50%;
  background: linear-gradient(135deg, var(--shadow-navy), var(--obsidian-purple));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--text-5xl);
  color: var(--accent-cyan);
  border: 2px solid rgba(0, 217, 255, 0.3);
  overflow: hidden;
}

.member-name {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  margin-bottom: var(--space-xs);
  color: var(--accent-lavender);
}

.member-role {
  font-size: var(--text-sm);
  color: var(--accent-cyan);
  margin-bottom: var(--space-sm);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.member-bio {
  color: rgba(255, 255, 255, 0.7);
  font-size: var(--text-sm);
  line-height: 1.6;
}

.facility-showcase {
  max-width: 900px;
  margin: 0 auto;
}

.thanks-cosmos {
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-2xl) var(--space-md);
}

.thanks-content {
  max-width: 800px;
  text-align: center;
}

.thanks-icon-orbit {
  font-size: 100px;
  color: var(--accent-cyan);
  margin-bottom: var(--space-lg);
  animation: pulse-glow 2s ease-in-out infinite;
}

@keyframes pulse-glow {
  0%, 100% { 
    transform: scale(1);
    filter: drop-shadow(0 0 20px var(--accent-cyan));
  }
  50% { 
    transform: scale(1.1);
    filter: drop-shadow(0 0 40px var(--accent-cyan));
  }
}

.thanks-title {
  font-family: var(--font-display);
  font-size: var(--text-4xl);
  margin-bottom: var(--space-md);
  color: var(--accent-lavender);
}

.thanks-message {
  font-size: var(--text-lg);
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.8;
  margin-bottom: var(--space-xl);
}

.thanks-actions {
  display: flex;
  gap: var(--space-md);
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: var(--space-2xl);
}

.thanks-timeline {
  background: linear-gradient(135deg, var(--deep-charcoal), var(--iron-eclipse));
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(139, 127, 255, 0.2);
  margin-top: var(--space-2xl);
}

.timeline-title {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  margin-bottom: var(--space-lg);
  color: var(--accent-lavender);
  text-align: center;
}

.timeline-steps {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

.timeline-step {
  display: flex;
  gap: var(--space-md);
  align-items: flex-start;
}

.step-marker {
  width: 40px;
  height: 40px;
  min-width: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-cyan), var(--accent-magenta));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: var(--text-lg);
}

.step-content {
  flex: 1;
  text-align: left;
}

.step-content h4 {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  margin-bottom: var(--space-xs);
  color: var(--accent-cyan);
}

.step-content p {
  color: rgba(255, 255, 255, 0.7);
  font-size: var(--text-sm);
  line-height: 1.6;
}

.error-void {
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-2xl) var(--space-md);
}

.error-content {
  max-width: 700px;
  text-align: center;
}

.error-visual {
  position: relative;
  margin-bottom: var(--space-xl);
}

.error-code {
  font-family: var(--font-display);
  font-size: 150px;
  font-weight: 900;
  background: linear-gradient(135deg, var(--accent-cyan), var(--accent-magenta));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  opacity: 0.2;
}

.error-orbit {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 80px;
  color: var(--accent-cyan);
  animation: orbit-spin 10s linear infinite;
}

@keyframes orbit-spin {
  from { transform: translate(-50%, -50%) rotate(0deg); }
  to { transform: translate(-50%, -50%) rotate(360deg); }
}

.error-title {
  font-family: var(--font-display);
  font-size: var(--text-3xl);
  margin-bottom: var(--space-md);
  color: var(--accent-lavender);
}

.error-message {
  font-size: var(--text-lg);
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.8;
  margin-bottom: var(--space-xl);
}

.error-suggestions {
  background: linear-gradient(135deg, var(--deep-charcoal), var(--iron-eclipse));
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(139, 127, 255, 0.2);
  margin-bottom: var(--space-xl);
}

.suggestions-title {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  margin-bottom: var(--space-md);
  color: var(--accent-lavender);
}

.suggestions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: var(--space-md);
}

.suggestion-card {
  padding: var(--space-md);
  background: var(--shadow-navy);
  border: 1px solid rgba(139, 127, 255, 0.2);
  border-radius: var(--radius-sm);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-xs);
  transition: var(--transition-smooth);
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
}

.suggestion-card i {
  font-size: var(--text-3xl);
  color: var(--accent-cyan);
}

.suggestion-card:hover {
  transform: translateY(-3px);
  border-color: var(--accent-cyan);
  background: var(--obsidian-purple);
}

.error-action {
  margin-top: var(--space-xl);
}

.legal-document {
  max-width: 900px;
  margin: 0 auto;
  background: linear-gradient(135deg, rgba(30, 31, 34, 0.5), rgba(38, 39, 43, 0.5));
  padding: var(--space-2xl);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(139, 127, 255, 0.1);
}

.legal-section {
  margin-bottom: var(--space-2xl);
  padding-bottom: var(--space-xl);
  border-bottom: 1px solid rgba(139, 127, 255, 0.1);
  transition: var(--transition-smooth);
}

.legal-section:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.legal-section:hover {
  padding-left: var(--space-sm);
  border-left: 3px solid var(--accent-cyan);
}

.legal-heading {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  margin-bottom: var(--space-md);
  color: var(--accent-lavender);
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  transition: var(--transition-fast);
}

.legal-heading::before {
  content: '';
  width: 4px;
  height: 24px;
  background: linear-gradient(135deg, var(--accent-cyan), var(--accent-magenta));
  border-radius: 2px;
  opacity: 0;
  transition: var(--transition-fast);
}

.legal-section:hover .legal-heading::before {
  opacity: 1;
}

.legal-section:hover .legal-heading {
  color: var(--accent-cyan);
  transform: translateX(5px);
}

.legal-text {
  color: rgba(255, 255, 255, 0.85);
  font-size: var(--text-base);
  line-height: 1.9;
  margin-bottom: var(--space-md);
  text-align: justify;
}

.legal-text strong {
  color: var(--accent-lavender);
  font-weight: 600;
}

.legal-list {
  color: rgba(255, 255, 255, 0.8);
  font-size: var(--text-base);
  line-height: 1.8;
  margin: var(--space-md) 0 var(--space-md) var(--space-xl);
}

.legal-list li {
  margin-bottom: var(--space-sm);
}

.footer-void {
  background: var(--shadow-navy);
  padding: var(--space-lg) var(--space-md);
  border-top: 1px solid rgba(0, 217, 255, 0.2);
  font-size: var(--text-sm);
}

.footer-container {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--space-md);
}

.footer-nav {
  display: flex;
  gap: var(--space-md);
  flex-wrap: wrap;
}

.footer-nav a {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  transition: var(--transition-fast);
  font-size: var(--text-xs);
}

.footer-nav a:hover {
  color: var(--accent-cyan);
}

.footer-copy {
  color: rgba(255, 255, 255, 0.5);
  font-size: var(--text-xs);
}

.privacy-veil {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, var(--deep-charcoal), var(--iron-eclipse));
  padding: var(--space-md);
  border-top: 2px solid var(--accent-cyan);
  box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.5);
  z-index: 2000;
  transform: translateY(100%);
  transition: var(--transition-smooth);
}

.privacy-veil.visible {
  transform: translateY(0);
}

.privacy-content {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-md);
  flex-wrap: wrap;
}

.privacy-text {
  flex: 1;
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.8);
}

.privacy-actions {
  display: flex;
  gap: var(--space-sm);
}

.btn-accept {
  padding: var(--space-xs) var(--space-md);
  background: var(--accent-cyan);
  color: var(--cosmic-black);
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  font-weight: 600;
  transition: var(--transition-fast);
  font-size: var(--text-sm);
}

.btn-accept:hover {
  background: var(--accent-lavender);
  transform: translateY(-2px);
}

@media (max-width: 1024px) {
  .header-container {
    padding: 0 var(--space-sm);
  }
  
  .nav-primary {
    gap: var(--space-md);
  }
  
  .nav-primary a {
    font-size: var(--text-xs);
    padding: var(--space-xs);
  }
  
  .section-cosmic {
    padding: var(--space-xl) var(--space-md);
  }
  
  .contact-grid {
    gap: var(--space-xl);
  }
  
  .product-constellation {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }
}

@media (max-width: 768px) {
  .header-membrane {
    padding: var(--space-sm);
  }
  
  .nav-primary {
    display: none;
  }
  
  .burger-menu {
    display: flex;
  }
  
  .nav-mobile {
    display: block;
  }
  
  .slide-content,
  .contact-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: var(--space-lg);
  }
  
  .slide-visual {
    height: 300px;
  }
  
  .hologram-card {
    width: 280px;
    height: 280px;
    font-size: 60px;
  }
  
  .slide-text h1,
  .hero-title {
    font-size: var(--text-3xl);
  }
  
  .section-title {
    font-size: var(--text-3xl);
  }
  
  .slider-cosmos {
    height: auto;
    min-height: 500px;
  }
  
  .footer-container {
    flex-direction: column;
    text-align: center;
    gap: var(--space-sm);
  }
  
  .thanks-actions,
  .suggestions-grid {
    flex-direction: column;
  }
  
  .thanks-actions {
    gap: var(--space-sm);
  }
  
  .product-constellation,
  .values-grid,
  .team-constellation,
  .features-nebula {
    grid-template-columns: 1fr;
    gap: var(--space-md);
  }
  
  .legal-document {
    padding: var(--space-lg);
  }
  
  .legal-section {
    margin-bottom: var(--space-xl);
    padding-bottom: var(--space-lg);
  }
  
  .legal-section:hover {
    padding-left: var(--space-xs);
  }
  
  .legal-text {
    text-align: left;
    font-size: var(--text-sm);
  }
  
  .contact-form-zone,
  .contact-info-zone {
    padding: var(--space-lg);
  }
  
  .btn-quantum {
    padding: var(--space-sm) var(--space-lg);
    font-size: var(--text-sm);
    width: 100%;
    text-align: center;
  }
  
  .stats-constellation {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-md);
  }
  
  .privacy-content {
    flex-direction: column;
    text-align: center;
    gap: var(--space-sm);
  }
  
  .privacy-actions {
    width: 100%;
    justify-content: center;
  }
  
  .btn-accept {
    flex: 1;
    max-width: 200px;
  }
}

@media (max-width: 480px) {
  .header-membrane {
    padding: var(--space-xs) var(--space-sm);
  }
  
  .logo-text {
    font-size: var(--text-sm);
    letter-spacing: 0.05em;
  }
  
  .slide-text h1,
  .hero-title {
    font-size: var(--text-2xl);
    line-height: 1.3;
  }
  
  .slide-text p {
    font-size: var(--text-base);
  }
  
  .section-cosmic {
    padding: var(--space-lg) var(--space-sm);
  }
  
  .section-title {
    font-size: var(--text-2xl);
  }
  
  .features-nebula {
    grid-template-columns: 1fr;
    gap: var(--space-md);
  }
  
  .feature-crystal {
    padding: var(--space-md);
  }
  
  .stat-number {
    font-size: var(--text-2xl);
  }
  
  .stats-constellation {
    grid-template-columns: 1fr;
    gap: var(--space-sm);
  }
  
  .error-code {
    font-size: 80px;
  }
  
  .error-orbit {
    font-size: 40px;
  }
  
  .error-title {
    font-size: var(--text-2xl);
  }
  
  .legal-document {
    padding: var(--space-md);
    border-radius: var(--radius-md);
  }
  
  .legal-heading {
    font-size: var(--text-lg);
    margin-bottom: var(--space-sm);
  }
  
  .legal-text {
    font-size: var(--text-sm);
    line-height: 1.7;
  }
  
  .legal-section {
    margin-bottom: var(--space-lg);
    padding-bottom: var(--space-md);
  }
  
  .hero-minimal {
    min-height: 20vh;
    padding: var(--space-lg) var(--space-sm);
  }
  
  .hero-subtitle {
    font-size: var(--text-base);
  }
  
  .contact-form-zone,
  .contact-info-zone {
    padding: var(--space-md);
  }
  
  .input-quantum,
  .textarea-quantum {
    font-size: 16px;
  }
  
  .product-card {
    margin-bottom: var(--space-md);
  }
  
  .product-info {
    padding: var(--space-md);
  }
  
  .product-name {
    font-size: var(--text-xl);
  }
  
  .nav-mobile {
    width: 100%;
    right: -100%;
  }
  
  .nav-mobile.active {
    right: 0;
  }
  
  .footer-nav {
    flex-direction: column;
    gap: var(--space-xs);
    width: 100%;
  }
  
  .footer-nav a {
    padding: var(--space-xs);
    text-align: center;
  }
  
  .thanks-icon-orbit {
    font-size: 60px;
  }
  
  .thanks-title {
    font-size: var(--text-2xl);
  }
  
  .thanks-message {
    font-size: var(--text-base);
  }
  
  .btn-quantum {
    padding: var(--space-sm) var(--space-md);
    font-size: var(--text-sm);
  }
  
  .privacy-veil {
    padding: var(--space-sm);
  }
  
  .privacy-text {
    font-size: var(--text-xs);
    margin-bottom: var(--space-sm);
  }
  
  .privacy-actions {
    flex-direction: column;
    width: 100%;
  }
  
  .btn-accept {
    width: 100%;
    max-width: none;
    padding: var(--space-sm);
  }
}

@media (min-width: 1025px) and (max-width: 1199px) {
  .section-cosmic {
    max-width: 1200px;
  }
  
  .product-constellation {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1200px) and (max-width: 1599px) {
  .section-cosmic {
    max-width: 1400px;
  }
}

@media (min-width: 1600px) {
  .section-cosmic {
    max-width: 1600px;
  }
  
  .header-container {
    max-width: 1600px;
  }
  
  .footer-container {
    max-width: 1600px;
  }
}

@media (max-width: 320px) {
  * {
    max-width: 100%;
    box-sizing: border-box;
  }
  
  html {
    overflow-x: hidden;
  }
  
  body {
    font-size: 14px;
    overflow-x: hidden;
    position: relative;
  }
  
  img {
    max-width: 100%;
    height: auto;
    display: block;
  }
  
  .header-membrane {
    padding: 8px 10px;
  }
  
  .header-container {
    gap: 8px;
    padding: 0;
    width: 100%;
    flex-wrap: nowrap;
  }
  
  .logo-text {
    font-size: 10px;
    letter-spacing: 0.02em;
    white-space: nowrap;
    line-height: 1.2;
    max-width: 180px;
    overflow: hidden;
    text-overflow: ellipsis;
    flex-shrink: 1;
  }
  
  .burger-menu {
    padding: 8px;
    min-width: 40px;
    min-height: 40px;
  }
  
  .burger-line {
    width: 20px;
    height: 2px;
  }
  
  .nav-mobile {
    width: 100%;
    padding: 60px 20px 20px;
  }
  
  .nav-mobile a {
    padding: 12px;
    font-size: 14px;
    min-height: 44px;
  }
  
  .hero-minimal {
    min-height: 180px;
    padding: 30px 10px;
  }
  
  .hero-title {
    font-size: 24px;
    line-height: 1.2;
    margin-bottom: 12px;
  }
  
  .hero-subtitle {
    font-size: 13px;
    line-height: 1.5;
  }
  
  .section-cosmic {
    padding: 20px 10px;
    width: 100%;
    overflow-x: hidden;
  }
  
  .section-cosmic > * {
    max-width: 100%;
    overflow-x: hidden;
  }
  
  .section-title {
    font-size: 22px;
    margin-bottom: 20px;
  }
  
  .subsection-title {
    font-size: 18px;
    margin-bottom: 12px;
  }
  
  .intro-text {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 20px;
  }
  
  .slide-text h1,
  .hero-title {
    font-size: 24px;
  }
  
  .slide-text p {
    font-size: 14px;
    line-height: 1.6;
  }
  
  .slider-cosmos {
    min-height: 400px;
    height: auto;
  }
  
  .slide-content {
    padding: 20px 10px;
    gap: 20px;
  }
  
  .slide-visual {
    height: 200px;
  }
  
  .hologram-card {
    width: 200px;
    height: 200px;
    font-size: 40px;
  }
  
  .btn-quantum {
    padding: 12px 16px;
    font-size: 13px;
    width: 100%;
    border-radius: 8px;
  }
  
  .feature-crystal {
    padding: 16px;
    margin-bottom: 16px;
  }
  
  .feature-icon {
    font-size: 32px;
    margin-bottom: 12px;
  }
  
  .feature-crystal h3 {
    font-size: 18px;
    margin-bottom: 8px;
  }
  
  .feature-crystal p {
    font-size: 13px;
    line-height: 1.6;
  }
  
  .product-card {
    margin-bottom: 16px;
  }
  
  .product-visual {
    height: 180px;
  }
  
  .product-icon {
    font-size: 60px;
  }
  
  .product-info {
    padding: 16px;
  }
  
  .product-name {
    font-size: 18px;
    margin-bottom: 8px;
  }
  
  .product-description {
    font-size: 13px;
    line-height: 1.6;
    margin-bottom: 12px;
  }
  
  .product-price {
    font-size: 20px;
  }
  
  .product-features {
    margin-bottom: 12px;
  }
  
  .product-features li {
    font-size: 12px;
    padding: 6px 0;
  }
  
  .stats-constellation {
    grid-template-columns: 1fr;
    gap: 16px;
    margin: 20px 0;
  }
  
  .stat-orb {
    padding: 16px;
  }
  
  .stat-number {
    font-size: 32px;
    margin-bottom: 8px;
  }
  
  .stat-label {
    font-size: 11px;
  }
  
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .contact-form-zone,
  .contact-info-zone {
    padding: 16px;
  }
  
  .form-intro {
    font-size: 13px;
    margin-bottom: 16px;
    line-height: 1.6;
  }
  
  .input-nebula {
    margin-bottom: 12px;
  }
  
  .input-label {
    font-size: 12px;
    margin-bottom: 6px;
  }
  
  .input-quantum,
  .textarea-quantum {
    padding: 12px;
    font-size: 16px;
    border-radius: 8px;
  }
  
  .textarea-quantum {
    min-height: 100px;
  }
  
  .checkbox-label {
    font-size: 12px;
    line-height: 1.5;
  }
  
  .info-cluster {
    gap: 16px;
    margin-bottom: 20px;
  }
  
  .info-item {
    gap: 12px;
  }
  
  .info-icon {
    font-size: 20px;
    min-width: 24px;
  }
  
  .info-title {
    font-size: 14px;
    margin-bottom: 6px;
  }
  
  .info-text {
    font-size: 12px;
    line-height: 1.6;
  }
  
  .social-links {
    gap: 12px;
    flex-wrap: wrap;
  }
  
  .social-orb {
    width: 40px;
    height: 40px;
    font-size: 16px;
  }
  
  .legal-document {
    padding: 16px;
    border-radius: 12px;
  }
  
  .legal-section {
    margin-bottom: 20px;
    padding-bottom: 16px;
  }
  
  .legal-heading {
    font-size: 16px;
    margin-bottom: 10px;
    line-height: 1.3;
  }
  
  .legal-text {
    font-size: 13px;
    line-height: 1.7;
    margin-bottom: 12px;
  }
  
  .legal-list {
    font-size: 13px;
    margin-left: 16px;
  }
  
  .legal-list li {
    margin-bottom: 8px;
  }
  
  .value-card {
    padding: 16px;
    margin-bottom: 16px;
  }
  
  .value-icon {
    font-size: 40px;
    margin-bottom: 12px;
  }
  
  .value-card h3 {
    font-size: 18px;
    margin-bottom: 8px;
  }
  
  .value-card p {
    font-size: 13px;
    line-height: 1.6;
  }
  
  .team-member {
    padding: 16px;
    margin-bottom: 16px;
  }
  
  .member-avatar {
    width: 80px;
    height: 80px;
    font-size: 32px;
    margin-bottom: 12px;
  }
  
  .member-name {
    font-size: 18px;
    margin-bottom: 6px;
  }
  
  .member-role {
    font-size: 11px;
    margin-bottom: 8px;
  }
  
  .member-bio {
    font-size: 12px;
    line-height: 1.5;
  }
  
  .footer-void {
    padding: 16px 10px;
  }
  
  .footer-container {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }
  
  .footer-copy {
    font-size: 11px;
    line-height: 1.5;
  }
  
  .footer-nav {
    flex-direction: column;
    gap: 8px;
    width: 100%;
  }
  
  .footer-nav a {
    padding: 8px;
    font-size: 11px;
    min-height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .error-void {
    min-height: 60vh;
    padding: 20px 10px;
  }
  
  .error-code {
    font-size: 60px;
  }
  
  .error-orbit {
    font-size: 30px;
  }
  
  .error-title {
    font-size: 20px;
    margin-bottom: 12px;
  }
  
  .error-message {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 20px;
  }
  
  .error-suggestions {
    padding: 16px;
    margin-bottom: 20px;
  }
  
  .suggestions-title {
    font-size: 16px;
    margin-bottom: 12px;
  }
  
  .suggestions-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
  
  .suggestion-card {
    padding: 12px 8px;
    font-size: 11px;
  }
  
  .suggestion-card i {
    font-size: 24px;
  }
  
  .thanks-cosmos {
    min-height: 60vh;
    padding: 20px 10px;
  }
  
  .thanks-content {
    padding: 0 10px;
  }
  
  .thanks-icon-orbit {
    font-size: 50px;
    margin-bottom: 16px;
  }
  
  .thanks-title {
    font-size: 22px;
    margin-bottom: 12px;
  }
  
  .thanks-message {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 20px;
  }
  
  .thanks-actions {
    flex-direction: column;
    gap: 10px;
    margin-bottom: 20px;
  }
  
  .thanks-timeline {
    padding: 16px;
    margin-top: 20px;
  }
  
  .timeline-title {
    font-size: 18px;
    margin-bottom: 16px;
  }
  
  .timeline-steps {
    gap: 16px;
  }
  
  .timeline-step {
    gap: 12px;
  }
  
  .step-marker {
    width: 32px;
    height: 32px;
    min-width: 32px;
    font-size: 14px;
  }
  
  .step-content h4 {
    font-size: 14px;
    margin-bottom: 6px;
  }
  
  .step-content p {
    font-size: 12px;
    line-height: 1.5;
  }
  
  .privacy-veil {
    padding: 12px 10px;
  }
  
  .privacy-content {
    flex-direction: column;
    gap: 12px;
  }
  
  .privacy-text {
    font-size: 11px;
    line-height: 1.5;
    margin-bottom: 12px;
  }
  
  .privacy-actions {
    flex-direction: column;
    width: 100%;
    gap: 8px;
  }
  
  .btn-accept {
    width: 100%;
    padding: 12px;
    font-size: 13px;
  }
  
  .cta-dimension {
    padding: 20px 16px;
    margin: 20px 0;
  }
  
  .cta-dimension h2 {
    font-size: 20px;
    margin-bottom: 12px;
  }
  
  .cta-dimension p {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 16px;
  }
  
  .story-text {
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 16px;
  }
  
  .story-block {
    margin-bottom: 20px;
  }
  
  .map-portal {
    border-radius: 12px;
  }
  
  .map-portal iframe {
    height: 250px;
  }
}

@media (hover: none) and (pointer: coarse) {
  .nav-primary a:hover::before,
  .feature-crystal:hover,
  .product-card:hover,
  .value-card:hover,
  .team-member:hover {
    transform: none;
  }
  
  .btn-quantum:active,
  .btn-accept:active {
    transform: scale(0.98);
  }
  
  .nav-mobile a:active {
    background: rgba(0, 217, 255, 0.2);
  }
  
  .input-quantum,
  .textarea-quantum {
    font-size: 16px;
  }
}

