@charset "UTF-8";
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:focus-visible {
  outline: 2px solid #00d4ff;
  outline-offset: 2px;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Rajdhani", sans-serif;
  background: #0a0e17;
  color: #ffffff;
  line-height: 1.6;
  overflow-x: hidden;
}

.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}
@media (max-width: 768px) {
  .container {
    padding: 0;
  }
}
@media (max-width: 480px) {
  .container {
    padding: 0;
  }
}

.btn,
button.btn {
  display: inline-block;
  font-family: "Orbitron", sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-decoration: none;
  padding: 1rem 2rem;
  border-radius: 4px;
  transition: all 0.2s;
  cursor: pointer;
}

.btn-outline {
  color: #ffffff;
  border: 1px solid rgba(0, 212, 255, 0.25);
  background: transparent;
}
.btn-outline:hover {
  border-color: #00d4ff;
  box-shadow: 0 0 20px rgba(0, 212, 255, 0.3);
}

.btn-card,
button.btn-card {
  color: #ffffff;
  border: 1px solid rgba(0, 212, 255, 0.25);
  background: rgba(15, 23, 42, 0.6);
  margin-top: 1rem;
}
.btn-card:hover,
button.btn-card:hover {
  border-color: #00d4ff;
  background: rgba(15, 23, 42, 0.85);
  box-shadow: 0 0 15px rgba(0, 212, 255, 0.3);
}

.btn-primary {
  color: #0a0e17;
  background: #00d4ff;
  border: none;
  font-size: 1rem;
  padding: 1.25rem 2.5rem;
}
.btn-primary:hover {
  box-shadow: 0 0 30px rgba(0, 212, 255, 0.3), 0 0 60px rgba(0, 212, 255, 0.4);
  transform: translateY(-2px);
  animation: btn-glow 2s ease-in-out infinite;
}

.btn-ghost {
  color: #94a3b8;
  border: none;
  background: transparent;
}
.btn-ghost:hover {
  color: #00d4ff;
}

.btn-header {
  padding: 0.5rem 1rem;
  font-size: 0.7rem;
}

.btn-large {
  padding: 1.25rem 2rem;
  font-size: 1rem;
  min-width: 220px;
}

.btn-block {
  width: 100%;
  text-align: center;
}

.skip-link {
  position: absolute;
  top: -100px;
  left: 1rem;
  z-index: 1000;
  padding: 0.75rem 1.5rem;
  background: #00d4ff;
  color: #0a0e17;
  font-weight: 700;
  text-decoration: none;
  border-radius: 4px;
  transition: top 0.2s;
}
.skip-link:focus {
  top: 1rem;
  outline: 2px solid #00d4ff;
  outline-offset: 2px;
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
}
.modal.modal-open {
  opacity: 1;
  visibility: visible;
}

.modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  cursor: pointer;
}

.modal-content {
  position: relative;
  background: #0a0e17;
  border: 1px solid rgba(0, 212, 255, 0.25);
  border-radius: 8px;
  padding: 4rem;
  max-width: 480px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 0 60px rgba(0, 212, 255, 0.2);
  transform: scale(0.95);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.modal.modal-open .modal-content {
  transform: scale(1);
}

.modal-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: none;
  border: none;
  color: #94a3b8;
  font-size: 1.5rem;
  cursor: pointer;
  padding: 0.25rem;
  line-height: 1;
}
.modal-close:hover {
  color: #00d4ff;
}

.modal-title {
  font-family: "Orbitron", sans-serif;
  font-weight: 700;
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.modal-subtitle {
  color: #94a3b8;
  margin-bottom: 2rem;
}

.modal-content--form .modal-subtitle {
  margin-bottom: 2.5rem;
}

.form-order-summary {
  background: rgba(0, 212, 255, 0.08);
  border: 1px solid rgba(0, 212, 255, 0.25);
  border-radius: 6px;
  padding: 2rem;
  margin-bottom: 2rem;
}

.form-order-total {
  font-size: 1rem;
  margin-bottom: 1rem;
  color: #94a3b8;
}
.form-order-total strong {
  color: #00d4ff;
  font-size: 1.25em;
}

.form-order-parts {
  margin: 0;
  padding-left: 2rem;
  font-size: 0.8rem;
  color: #94a3b8;
  line-height: 1.5;
}

.lead-form--modal .form-row {
  flex-direction: column;
}

.lead-form--modal .form-row input,
.lead-form--modal .form-row select {
  min-width: 100%;
}

.quiz-progress {
  height: 4px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 2px;
  margin-bottom: 2.5rem;
  overflow: hidden;
}

.quiz-progress-bar {
  height: 100%;
  background: linear-gradient(90deg, #00d4ff, #6366f1);
  border-radius: 2px;
  transition: width 0.3s ease;
}

.quiz-q {
  font-family: "Orbitron", sans-serif;
  font-weight: 600;
  font-size: 1rem;
  margin-bottom: 2rem;
}

.quiz-options {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.quiz-opt {
  padding: 1.5rem 2rem;
  background: rgba(15, 23, 42, 0.6);
  border: 1px solid rgba(0, 212, 255, 0.25);
  border-radius: 6px;
  color: #ffffff;
  font-family: "Rajdhani", sans-serif;
  font-size: 0.9rem;
  text-align: left;
  cursor: pointer;
  transition: all 0.2s;
}
.quiz-opt:hover {
  border-color: #00d4ff;
  background: rgba(0, 212, 255, 0.05);
}

.quiz-result {
  text-align: center;
}

.quiz-result-text {
  margin-bottom: 2rem;
  color: #94a3b8;
}

.quiz-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(0, 212, 255, 0.25);
}

.quiz-step-indicator {
  font-size: 0.8rem;
  color: #94a3b8;
}

.sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 90;
  padding: 1rem 2rem;
  background: rgba(10, 14, 23, 0.95);
  border-top: 1px solid rgba(0, 212, 255, 0.25);
  display: flex;
  justify-content: center;
  transform: translateY(100%);
  opacity: 0;
  transition: transform 0.3s, opacity 0.3s;
}
.sticky-cta.sticky-cta-visible {
  transform: translateY(0);
  opacity: 1;
}
.sticky-cta .btn {
  width: 100%;
  max-width: 360px;
  text-align: center;
}

@keyframes grid-shift {
  0%, 100% {
    background-position: 0 0;
  }
  50% {
    background-position: 60px 30px;
  }
}
@keyframes glow-pulse {
  0%, 100% {
    opacity: 0.4;
    transform: scale(1);
  }
  50% {
    opacity: 0.6;
    transform: scale(1.1);
  }
}
@keyframes gradient-pulse {
  0%, 100% {
    opacity: 0.6;
  }
  50% {
    opacity: 1;
  }
}
@keyframes glow-float {
  0%, 100% {
    transform: translate(0, 0) scale(1);
  }
  33% {
    transform: translate(10px, -15px) scale(1.05);
  }
  66% {
    transform: translate(-5px, 10px) scale(0.95);
  }
}
@keyframes gradient-drift {
  0%, 100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}
@keyframes float-particle {
  0%, 100% {
    transform: translateY(0) translateX(0);
    opacity: 0.3;
  }
  25% {
    transform: translateY(-20px) translateX(10px);
    opacity: 0.6;
  }
  50% {
    transform: translateY(-10px) translateX(-5px);
    opacity: 0.4;
  }
  75% {
    transform: translateY(-25px) translateX(5px);
    opacity: 0.5;
  }
}
@keyframes btn-glow {
  0%, 100% {
    box-shadow: 0 0 30px rgba(0, 212, 255, 0.3), 0 0 60px rgba(0, 212, 255, 0.4);
  }
  50% {
    box-shadow: 0 0 40px rgba(0, 212, 255, 0.3), 0 0 80px rgba(0, 212, 255, 0.4);
  }
}
@keyframes hero-fade-up {
  from {
    opacity: 0;
    transform: translateY(32px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes hero-fade-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes image-float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}
.section-title,
.section-desc,
#configurator-app,
.seg-tile,
.why-item,
.process-step,
.build-card,
.review-card,
.fear-card,
.guarantee-card,
.proof-item,
.faq-item {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.section-title.reveal,
.section-desc.reveal,
#configurator-app.reveal,
.seg-tile.reveal,
.why-item.reveal,
.process-step.reveal,
.build-card.reveal,
.review-card.reveal,
.fear-card.reveal,
.guarantee-card.reveal,
.proof-item.reveal,
.faq-item.reveal {
  opacity: 1;
  transform: translateY(0);
}

.seg-bento .seg-tile.reveal {
  transition-delay: calc(0.05s * var(--i, 0));
}

.why-list .why-item.reveal {
  transition-delay: calc(0.06s * var(--i, 0));
}

.process-timeline .process-step.reveal {
  transition-delay: calc(0.06s * var(--i, 0));
}

.builds-grid .build-card.reveal {
  transition-delay: calc(0.08s * var(--i, 0));
}

.reviews-grid .review-card.reveal {
  transition-delay: calc(0.06s * var(--i, 0));
}

.fears-grid .fear-card.reveal {
  transition-delay: calc(0.05s * var(--i, 0));
}

.guarantee-grid .guarantee-card.reveal {
  transition-delay: calc(0.05s * var(--i, 0));
}

.proof-numbers .proof-item.reveal {
  transition-delay: calc(0.1s * var(--i, 0));
}

.faq-list .faq-item.reveal {
  transition-delay: calc(0.05s * var(--i, 0));
}

@media (prefers-reduced-motion: reduce) {
  .hero-grid,
  .hero-glow,
  .hero-particle,
  .config-grid,
  .why-us::before,
  .process::before,
  .builds::before,
  .builds::after,
  .reviews::before,
  .reviews::after,
  .fears::before,
  .fears::after,
  .guarantee::before,
  .guarantee::after,
  .faq::before,
  .faq::after,
  .segmentation::before,
  .segmentation::after {
    animation: none !important;
  }
  .hero-text > *,
  .hero-image {
    animation: none !important;
  }
}
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 1rem 2rem;
  background: rgba(10, 14, 23, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  transition: background 0.3s ease, box-shadow 0.3s ease;
}

.header .nav {
  position: relative;
}

.nav {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
}

.nav-link.logo {
  color: #ffffff;
  font-weight: 700;
  margin-right: auto;
}

.nav-link {
  font-family: "Orbitron", sans-serif;
  font-weight: 600;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  color: #94a3b8;
  text-decoration: none;
  transition: color 0.2s, box-shadow 0.2s;
  padding-bottom: 0.5rem;
}
.nav-link:hover, .nav-link.active {
  color: #ffffff;
}
.nav-link.active {
  color: #00d4ff;
  box-shadow: 0 2px 0 0 #00d4ff;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: 8px;
  background: none;
  border: 1px solid rgba(0, 212, 255, 0.25);
  border-radius: 4px;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: #ffffff;
  transition: 0.2s;
}
.nav-toggle:hover span {
  background: #00d4ff;
}

@media (max-width: 1024px) {
  .nav-toggle {
    display: flex;
    margin-left: auto;
  }
  .nav .nav-link:not(.logo),
  .nav .btn-header {
    display: none;
  }
  .nav.nav-open .nav-link:not(.logo),
  .nav.nav-open .btn-header {
    display: block;
  }
  .nav.nav-open {
    flex-wrap: wrap;
    position: absolute;
    display: flex;
    top: 0;
    left: 0;
    right: 0;
    flex-direction: column;
    padding: 2rem;
    background: rgba(10, 14, 23, 0.98);
    border-bottom: 1px solid rgba(0, 212, 255, 0.25);
  }
  .nav.nav-open .nav-link.logo {
    display: none;
  }
  .nav.nav-open .nav-toggle {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
  }
}
body.menu-open {
  overflow: hidden;
}

@media (max-width: 1024px) {
  .hero {
    padding: 6rem 1.5rem 2.5rem;
  }
  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 2.5rem;
  }
  .hero-subtitle {
    max-width: none;
    margin-left: auto;
    margin-right: auto;
  }
  .hero-cta {
    justify-content: center;
  }
  .hero-trust {
    justify-content: center;
  }
  .hero-image {
    order: -1;
    max-width: min(500px, 100%);
    width: 100%;
    margin: 0 auto;
  }
  .config-preview {
    flex-direction: column;
  }
  .process-timeline {
    grid-template-columns: repeat(2, 1fr);
  }
  .builds-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }
  .fears-grid {
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  }
  .guarantee-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .proof-numbers {
    gap: 2.5rem;
  }
  .config-visual {
    flex-direction: column;
    gap: 1.5rem;
  }
  .config-diagram {
    width: 100%;
    max-width: 320px;
  }
}
@media (max-width: 768px) {
  .hero,
  .segmentation,
  .why-us,
  .process,
  .builds,
  .configurator,
  .reviews,
  .fears,
  .guarantee,
  .faq,
  .final-cta {
    padding: 4rem 1.5rem;
  }
  .nav {
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
  }
  .nav-link.logo {
    margin-right: 0;
  }
  .hero {
    padding: 5rem 1rem 2rem;
    min-height: auto;
  }
  .hero-content {
    padding: 0 1rem;
    width: 100%;
  }
  .hero-image {
    max-width: 100%;
  }
  .hero-title {
    font-size: clamp(2rem, 8vw, 3rem);
  }
  .hero-cta {
    flex-direction: column;
    align-items: stretch;
  }
  .hero-cta .btn {
    min-width: auto;
  }
  .hero-trust {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
  }
  .trust-item {
    align-items: center;
  }
  .form-row {
    flex-direction: column;
  }
  .form-row input,
  .form-row select {
    min-width: 100%;
  }
  .footer-content {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }
  .footer-links {
    flex-direction: column;
  }
  .process-timeline {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .builds-grid {
    grid-template-columns: 1fr;
  }
  .reviews-grid {
    grid-template-columns: 1fr;
    margin-bottom: 2.5rem;
  }
  .proof-numbers {
    flex-direction: column;
    gap: 2rem;
  }
  .fears-grid {
    grid-template-columns: 1fr;
  }
  .guarantee-grid {
    grid-template-columns: 1fr;
  }
  .faq-question {
    padding: 1.5rem 0;
    font-size: 0.9rem;
  }
  .faq-item.is-open .faq-answer {
    max-height: 500px;
  }
  .final-cta-content {
    padding: 0 1rem;
  }
  .final-title {
    font-size: clamp(1.5rem, 5vw, 2rem);
  }
  .final-desc {
    font-size: 0.9rem;
    margin-bottom: 2.5rem;
  }
  .modal {
    padding: 1rem;
    align-items: flex-end;
  }
  .modal-content {
    max-width: 100%;
    border-radius: 8px 8px 0 0;
    max-height: 85vh;
  }
  .sticky-cta {
    padding: 1rem 1.5rem;
  }
  .sticky-cta .btn {
    max-width: none;
  }
  .section-title {
    font-size: clamp(1.5rem, 4vw, 1.75rem);
  }
  .section-desc {
    font-size: 0.9rem;
    margin-bottom: 2.5rem;
  }
  .build-content {
    padding: 1.5rem;
  }
  .build-price {
    font-size: 1rem;
  }
}
@media (max-width: 480px) {
  .hero {
    padding: 4.5rem 1rem 2.5rem;
  }
  .hero-trust {
    flex-direction: column;
    gap: 1.5rem;
  }
  .seg-tile--large {
    grid-column: span 1;
  }
  .seg-tile--cta {
    grid-column: span 1;
    flex-direction: column;
    align-items: flex-start;
  }
  .seg-tile--cta .seg-tile-desc {
    margin-left: 0;
  }
  .process-step {
    padding: 1.5rem;
  }
  .process-num {
    font-size: 1.5rem;
  }
  .proof-value {
    font-size: 1.5rem;
  }
  .guarantee-card {
    padding: 1.5rem;
  }
  .guarantee-icon {
    font-size: 2rem;
  }
  .modal-content {
    padding: 2rem;
  }
  .quiz-opt {
    padding: 1rem 1.5rem;
    font-size: 0.8rem;
  }
  .lead-form--modal .form-row input,
  .lead-form--modal .form-row select {
    font-size: 16px;
  }
}
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 8rem 2rem 4rem;
  position: relative;
  overflow-x: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 50% at 50% 0%, rgba(15, 50, 80, 0.4) 0%, transparent 60%), linear-gradient(180deg, #0a0e17 0%, #050810 100%);
  overflow: hidden;
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(0, 212, 255, 0.03) 1px, transparent 1px), linear-gradient(90deg, rgba(0, 212, 255, 0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  background-position: 0 0;
  animation: grid-shift 20s ease-in-out infinite;
  will-change: background-position;
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.4;
  animation: glow-float 12s ease-in-out infinite;
  will-change: transform;
}

.hero-glow-1 {
  width: 400px;
  height: 400px;
  background: #00d4ff;
  top: -100px;
  right: -100px;
  animation-delay: 0s;
}

.hero-glow-2 {
  width: 300px;
  height: 300px;
  background: #6366f1;
  bottom: 20%;
  left: -50px;
  animation-delay: -6s;
  animation-name: glow-float-reverse;
}

@keyframes glow-float-reverse {
  0%, 100% {
    transform: translate(0, 0) scale(1);
  }
  33% {
    transform: translate(-10px, 15px) scale(0.95);
  }
  66% {
    transform: translate(5px, -10px) scale(1.05);
  }
}
.hero-particles {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.hero-particle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: rgba(0, 212, 255, 0.4);
  border-radius: 50%;
  animation: float-particle 8s ease-in-out infinite;
  will-change: transform, opacity;
}
.hero-particle:nth-child(1) {
  left: 10%;
  top: 20%;
  animation-delay: 0s;
  animation-duration: 9s;
}
.hero-particle:nth-child(2) {
  left: 85%;
  top: 15%;
  animation-delay: -2s;
  animation-duration: 10s;
}
.hero-particle:nth-child(3) {
  left: 25%;
  top: 70%;
  animation-delay: -1s;
  animation-duration: 7s;
}
.hero-particle:nth-child(4) {
  left: 70%;
  top: 80%;
  animation-delay: -3s;
  animation-duration: 11s;
}
.hero-particle:nth-child(5) {
  left: 50%;
  top: 40%;
  animation-delay: -4s;
  animation-duration: 8s;
}
.hero-particle:nth-child(6) {
  left: 15%;
  top: 50%;
  animation-delay: -0.5s;
  animation-duration: 12s;
}
.hero-particle:nth-child(7) {
  left: 90%;
  top: 60%;
  animation-delay: -2.5s;
  animation-duration: 7s;
}
.hero-particle:nth-child(8) {
  left: 40%;
  top: 25%;
  animation-delay: -1.5s;
  animation-duration: 10s;
}
.hero-particle:nth-child(9) {
  left: 60%;
  top: 35%;
  animation-delay: -3.5s;
  animation-duration: 9s;
}
.hero-particle:nth-child(10) {
  left: 5%;
  top: 85%;
  animation-delay: -0.3s;
  animation-duration: 11s;
}
.hero-particle:nth-child(11) {
  left: 95%;
  top: 45%;
  animation-delay: -2.2s;
  animation-duration: 8s;
}
.hero-particle:nth-child(12) {
  left: 35%;
  top: 90%;
  animation-delay: -1.8s;
  animation-duration: 10s;
}

.hero-content {
  max-width: 1400px;
  width: 100%;
  min-width: 0;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 1;
  box-sizing: border-box;
}
@media (max-width: 1024px) {
  .hero-content {
    grid-template-columns: 1fr;
  }
}

.hero-text {
  min-width: 0;
  overflow-wrap: break-word;
}
.hero-text > * {
  opacity: 0;
  animation: hero-fade-up 0.8s ease forwards;
}
.hero-text .hero-title {
  animation-delay: 0.1s;
  animation-fill-mode: both;
}
.hero-text .hero-subtitle {
  animation-delay: 0.25s;
  animation-fill-mode: both;
}
.hero-text .hero-cta {
  animation-delay: 0.4s;
  animation-fill-mode: both;
}
.hero-text .hero-trust {
  animation-delay: 0.55s;
  animation-fill-mode: both;
}

.hero-title {
  font-family: "Orbitron", sans-serif;
  font-weight: 800;
  font-size: clamp(3rem, 8vw, 5.5rem);
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin-bottom: 1rem;
  text-shadow: 0 0 60px rgba(0, 212, 255, 0.3);
  overflow-wrap: break-word;
  word-break: break-word;
}

.hero-tagline {
  font-family: "Orbitron", sans-serif;
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.2em;
  color: #94a3b8;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.125rem);
  color: #94a3b8;
  line-height: 1.6;
  margin-bottom: 2.5rem;
  max-width: 32ch;
  overflow-wrap: break-word;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 4rem;
}

.hero-cta .btn {
  min-width: 200px;
}

.hero-trust {
  display: flex;
  gap: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(0, 212, 255, 0.25);
}

.trust-item {
  display: flex;
  flex-direction: column;
}

.trust-value {
  font-family: "Orbitron", sans-serif;
  font-weight: 800;
  font-size: 1.5rem;
  color: #00d4ff;
  line-height: 1.2;
}

.trust-label {
  font-size: 0.8rem;
  color: #94a3b8;
}

.hero-image {
  position: relative;
  min-width: 0;
  max-width: 100%;
  animation: hero-fade-up 1s ease 0.35s both;
}
.hero-image::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  height: 50%;
  width: 50%;
  background: rgb(0, 212, 255);
  background-position: center;
  z-index: -1;
  border-radius: 50%;
  filter: blur(80px);
  animation: glow-pulse 4s ease-in-out infinite;
}
.hero-image img {
  width: 100%;
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  animation: image-float 5s ease-in-out infinite;
}

.section-title {
  font-family: "Orbitron", sans-serif;
  font-weight: 700;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  text-align: center;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.section-desc {
  text-align: center;
  color: #94a3b8;
  margin-bottom: 4rem;
  font-size: 1rem;
}

.segmentation {
  padding: 6rem 2rem;
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, transparent 0%, rgba(0, 20, 40, 0.15) 50%, transparent 100%);
}
.segmentation::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 200px;
  background: linear-gradient(180deg, rgba(0, 50, 80, 0.08) 0%, transparent 100%);
  animation: gradient-pulse 9s ease-in-out infinite;
  pointer-events: none;
}
.segmentation .container {
  position: relative;
  z-index: 1;
}

.seg-bento {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: auto auto;
  gap: 1.5rem;
  max-width: 1400px;
  margin: 0 auto;
}
@media (max-width: 1024px) {
  .seg-bento {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 768px) {
  .seg-bento {
    grid-template-columns: 1fr;
  }
}

.seg-tile {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 2rem;
  text-decoration: none;
  color: inherit;
  background: linear-gradient(135deg, rgba(0, 212, 255, 0.06) 0%, rgba(15, 23, 42, 0.4) 100%);
  border: 1px solid rgba(0, 212, 255, 0.15);
  border-radius: 12px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}
.seg-tile::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 40%, rgba(0, 212, 255, 0.05) 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
}
.seg-tile:hover {
  border-color: rgba(0, 212, 255, 0.5);
  box-shadow: 0 8px 32px rgba(0, 212, 255, 0.25), 0 0 60px rgba(0, 212, 255, 0.1);
  transform: translateY(-4px) scale(1.01);
}
.seg-tile:hover::before {
  opacity: 1;
}
.seg-tile:active {
  transform: translateY(-2px);
}

.seg-tile-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
  line-height: 1;
}

.seg-tile-title {
  font-family: "Orbitron", sans-serif;
  font-weight: 600;
  font-size: 1rem;
  margin-bottom: 0.5rem;
}

.seg-tile-desc {
  font-size: 0.8rem;
  color: #94a3b8;
  line-height: 1.4;
}

.seg-tile--large {
  grid-column: span 2;
  grid-row: span 2;
  min-height: 200px;
}
.seg-tile--large .seg-tile-icon {
  font-size: 3rem;
}
.seg-tile--large .seg-tile-title {
  font-size: 1.25rem;
}
.seg-tile--large .seg-tile-desc {
  font-size: 0.9rem;
}
@media (max-width: 1024px) {
  .seg-tile--large {
    grid-column: span 2;
    grid-row: span 1;
    min-height: auto;
  }
}
@media (max-width: 768px) {
  .seg-tile--large {
    grid-column: span 1;
  }
}

.seg-tile--medium {
  min-height: 140px;
}

.seg-tile--small {
  min-height: 120px;
}

.seg-tile--cta {
  grid-column: span 4;
  flex-direction: row;
  align-items: center;
  gap: 1.5rem;
  background: rgba(0, 212, 255, 0.04);
  border-style: dashed;
  border-color: rgba(0, 212, 255, 0.35);
}
.seg-tile--cta .seg-tile-icon {
  margin-bottom: 0;
  font-size: 1.75rem;
}
.seg-tile--cta .seg-tile-title {
  margin-bottom: 0;
}
.seg-tile--cta .seg-tile-desc {
  margin-left: auto;
  font-size: 0.8rem;
}
.seg-tile--cta:hover {
  background: rgba(0, 212, 255, 0.08);
  border-color: #00d4ff;
}
@media (max-width: 1024px) {
  .seg-tile--cta {
    grid-column: span 2;
  }
}
@media (max-width: 768px) {
  .seg-tile--cta {
    grid-column: span 1;
    flex-direction: column;
    align-items: flex-start;
  }
  .seg-tile--cta .seg-tile-desc {
    margin-left: 0;
  }
}

.why-us {
  padding: 6rem 2rem;
  position: relative;
  overflow: hidden;
}
.why-us .container {
  position: relative;
  z-index: 1;
}

.why-list {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.why-item {
  display: grid;
  grid-template-columns: 48px 1fr 48px;
  align-items: center;
  gap: 2rem;
  padding: 2.5rem 0;
  border-bottom: 1px solid rgba(0, 212, 255, 0.12);
  transition: opacity 0.4s ease, transform 0.3s ease;
}
.why-item:last-child {
  border-bottom: none;
}
.why-item:hover .why-item-icon {
  color: #00d4ff;
  filter: drop-shadow(0 0 12px rgba(0, 212, 255, 0.3));
  transform: scale(1.08);
}
.why-item:hover .why-item-num {
  color: rgba(0, 212, 255, 0.7);
}
@media (max-width: 768px) {
  .why-item {
    grid-template-columns: 1fr;
    gap: 1rem;
    padding: 2rem 0;
    text-align: center;
  }
}

.why-item--left .why-item-num {
  order: 1;
  justify-self: start;
}
.why-item--left .why-item-content {
  order: 2;
  text-align: left;
}
.why-item--left .why-item-icon {
  order: 3;
  justify-self: end;
}
@media (max-width: 768px) {
  .why-item--left .why-item-num {
    order: 1;
    justify-self: center;
  }
  .why-item--left .why-item-content {
    order: 2;
    text-align: center;
  }
  .why-item--left .why-item-icon {
    order: 3;
    justify-self: center;
  }
}

.why-item--right .why-item-icon {
  order: 1;
  justify-self: start;
}
.why-item--right .why-item-content {
  order: 2;
  text-align: right;
}
.why-item--right .why-item-num {
  order: 3;
  justify-self: end;
}
@media (max-width: 768px) {
  .why-item--right .why-item-icon {
    order: 1;
    justify-self: center;
  }
  .why-item--right .why-item-content {
    order: 2;
    text-align: center;
  }
  .why-item--right .why-item-num {
    order: 3;
    justify-self: center;
  }
}

.why-item-num {
  font-family: "Orbitron", sans-serif;
  font-weight: 800;
  font-size: 1.25rem;
  color: rgba(0, 212, 255, 0.4);
  line-height: 1;
  transition: color 0.3s ease;
}

.why-item-content {
  padding: 0 1rem;
}

.why-item-title {
  font-family: "Orbitron", sans-serif;
  font-weight: 600;
  font-size: 1rem;
  margin-bottom: 0.5rem;
}

.why-item-desc {
  font-size: 0.9rem;
  color: #94a3b8;
  line-height: 1.6;
}

.why-item-icon {
  width: 48px;
  height: 48px;
  color: rgba(0, 212, 255, 0.6);
  filter: drop-shadow(0 0 6px rgba(0, 212, 255, 0.2));
  transition: color 0.3s ease, filter 0.3s ease, transform 0.3s ease;
}
.why-item-icon svg {
  width: 100%;
  height: 100%;
}

.process {
  padding: 6rem 2rem;
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, transparent 0%, rgba(0, 20, 40, 0.2) 50%, transparent 100%);
}
.process .container {
  position: relative;
  z-index: 1;
}

.process-timeline {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 2rem;
  max-width: 1400px;
  margin: 0 auto 4rem;
}

.process-step {
  background: rgba(15, 23, 42, 0.6);
  border: 1px solid rgba(0, 212, 255, 0.25);
  border-radius: 8px;
  padding: 2rem;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.process-step:hover {
  border-color: #00d4ff;
  box-shadow: 0 0 24px rgba(0, 212, 255, 0.3), 0 4px 20px rgba(0, 0, 0, 0.2);
  transform: translateY(-2px);
}

.process-num {
  font-family: "Orbitron", sans-serif;
  font-weight: 800;
  font-size: 2rem;
  color: #00d4ff;
  display: block;
  margin-bottom: 0.5rem;
}

.process-title {
  font-family: "Orbitron", sans-serif;
  font-weight: 600;
  font-size: 1rem;
  margin-bottom: 0.5rem;
}

.process-desc {
  font-size: 0.8rem;
  color: #94a3b8;
}

.process-cta {
  text-align: center;
}

.builds {
  padding: 6rem 2rem;
  position: relative;
  overflow: hidden;
}
.builds::after {
  content: "";
  position: absolute;
  top: 20%;
  right: 5%;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(0, 212, 255, 0.06) 0%, transparent 70%);
  border-radius: 50%;
  animation: glow-pulse 6s ease-in-out infinite;
  pointer-events: none;
}
.builds .container {
  position: relative;
  z-index: 1;
}

.builds-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  max-width: 1400px;
  margin: 0 auto;
}

.build-card {
  background: rgba(15, 23, 42, 0.6);
  border: 1px solid rgba(0, 212, 255, 0.25);
  border-radius: 8px;
  overflow: hidden;
  position: relative;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.build-card .build-image img {
  transition: transform 0.5s ease;
}
.build-card:hover {
  border-color: #00d4ff;
  box-shadow: 0 0 40px rgba(0, 212, 255, 0.3), 0 12px 40px rgba(0, 0, 0, 0.3);
  transform: translateY(-6px);
}
.build-card:hover .build-image img {
  transform: scale(1.05);
}
.build-card.build-card-featured {
  border-color: #00d4ff;
  box-shadow: 0 0 40px rgba(0, 212, 255, 0.3);
}

.build-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-family: "Orbitron", sans-serif;
  font-weight: 700;
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  background: #00d4ff;
  color: #0a0e17;
  padding: 0.25rem 0.5rem;
  border-radius: 4px;
  z-index: 1;
}

.build-image {
  aspect-ratio: 10/10;
  overflow: hidden;
}
.build-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.build-content {
  padding: 2rem;
}

.build-title {
  font-family: "Orbitron", sans-serif;
  font-weight: 700;
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.build-for {
  font-size: 0.8rem;
  color: #94a3b8;
  margin-bottom: 1rem;
}

.build-specs {
  list-style: none;
  font-size: 0.8rem;
  color: #94a3b8;
  margin-bottom: 1rem;
}
.build-specs li {
  padding: 0.2rem 0;
}

.build-fps {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
  border-top: 1px solid rgba(0, 212, 255, 0.25);
  border-bottom: 1px solid rgba(0, 212, 255, 0.25);
  margin-bottom: 1rem;
}

.fps-label {
  font-size: 0.8rem;
  color: #94a3b8;
}

.fps-value {
  font-family: "Orbitron", sans-serif;
  font-weight: 700;
  color: #00d4ff;
}

.build-price {
  font-family: "Orbitron", sans-serif;
  font-weight: 700;
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
}

.configurator {
  padding: 6rem 2rem;
  position: relative;
}

.configurator-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 40% at 50% 100%, rgba(0, 50, 80, 0.2) 0%, transparent 70%);
}

.config-grid {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(0, 212, 255, 0.04) 1px, transparent 1px), linear-gradient(90deg, rgba(0, 212, 255, 0.04) 1px, transparent 1px);
  background-size: 40px 40px;
  background-position: 0 0;
  animation: grid-shift 25s ease-in-out infinite reverse;
  will-change: background-position;
  /* Мобильная оптимизация: статичная сетка и учёт reduced-motion */
}
@media (max-width: 768px) {
  .config-grid {
    animation: none;
    will-change: auto;
    background-size: 24px 24px; /* более мелкая сетка на маленьком экране */
  }
}
@media (prefers-reduced-motion: reduce) {
  .config-grid {
    animation: none;
    will-change: auto;
  }
}

.configurator .section-title {
  margin-bottom: 1rem;
}

.configurator .section-desc {
  margin-bottom: 4rem;
}

.configurator-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4rem;
  position: relative;
}

.config-preview {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  flex-wrap: wrap;
  justify-content: center;
}

.config-specs-preview {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  min-width: 180px;
}

.config-cta-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: center;
}

.config-sidebar {
  background: rgba(15, 23, 42, 0.6);
  border: 1px solid rgba(0, 212, 255, 0.25);
  border-radius: 8px;
  padding: 1rem;
}

.config-specs-preview .spec-bar {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.config-specs-preview .spec-label {
  font-size: 0.8rem;
  width: 50px;
  color: #94a3b8;
}

.config-specs-preview .spec-fill {
  height: 8px;
  background: linear-gradient(90deg, #00d4ff, rgba(0, 212, 255, 0.4));
  border-radius: 4px;
  min-width: 20px;
}

.config-step {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.875rem 1rem;
  border-radius: 6px;
  color: #94a3b8;
  transition: all 0.2s;
}
.config-step:hover {
  color: #ffffff;
}
.config-step.active {
  background: rgba(0, 212, 255, 0.1);
  color: #00d4ff;
}

.config-step-icon {
  font-size: 0.6rem;
  color: #00d4ff;
}

.config-main {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}

.config-visual {
  display: flex;
  align-items: center;
  gap: 2rem;
  width: 100%;
  justify-content: center;
}

.config-diagram {
  width: 320px;
  height: 240px;
  position: relative;
  background: rgba(0, 212, 255, 0.03);
  border: 1px solid rgba(0, 212, 255, 0.25);
  border-radius: 8px;
}

.diagram-cpu,
.diagram-ram,
.diagram-gpu {
  position: absolute;
  background: rgba(0, 212, 255, 0.15);
  border: 1px solid #00d4ff;
  border-radius: 4px;
}

.diagram-cpu {
  width: 80px;
  height: 80px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-15deg);
}

.diagram-ram {
  width: 40px;
  height: 60px;
  top: 20%;
  left: 30%;
  transform: rotate(10deg);
}

.diagram-gpu {
  width: 100px;
  height: 50px;
  bottom: 15%;
  right: 20%;
  transform: rotate(5deg);
}

.diagram-trace {
  position: absolute;
  background: linear-gradient(90deg, transparent, rgba(0, 212, 255, 0.4), transparent);
  height: 2px;
  border-radius: 2px;
}

.diagram-trace-1 {
  width: 60px;
  top: 35%;
  left: 25%;
  transform: rotate(-20deg);
}

.diagram-trace-2 {
  width: 80px;
  bottom: 30%;
  left: 30%;
  transform: rotate(15deg);
}

.diagram-trace-3 {
  width: 50px;
  top: 45%;
  right: 25%;
  transform: rotate(-10deg);
}

.config-specs {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  min-width: 180px;
}

.spec-bar {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.spec-label {
  font-size: 0.8rem;
  width: 50px;
  color: #94a3b8;
}

.spec-fill {
  height: 8px;
  background: linear-gradient(90deg, #00d4ff, rgba(0, 212, 255, 0.4));
  border-radius: 4px;
  min-width: 20px;
}

.reviews {
  padding: 6rem 2rem;
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, transparent 0%, rgba(0, 20, 40, 0.15) 50%, transparent 100%);
}
.reviews::after {
  content: "";
  position: absolute;
  bottom: 15%;
  left: 10%;
  width: 150px;
  height: 150px;
  background: radial-gradient(circle, rgba(99, 102, 241, 0.05) 0%, transparent 70%);
  border-radius: 50%;
  animation: glow-pulse 8s ease-in-out infinite 2s;
  pointer-events: none;
}
.reviews .container {
  position: relative;
  z-index: 1;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  max-width: 1400px;
  margin: 0 auto 4rem;
}

.review-card {
  background: rgba(15, 23, 42, 0.6);
  border: 1px solid rgba(0, 212, 255, 0.25);
  border-radius: 8px;
  padding: 2rem;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.review-card:hover {
  border-color: rgba(0, 212, 255, 0.5);
  box-shadow: 0 0 24px rgba(0, 212, 255, 0.15);
  transform: translateY(-2px);
}

.review-stars {
  color: #fbbf24;
  font-size: 1rem;
  margin-bottom: 1rem;
}

.review-text {
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.review-author {
  display: flex;
  flex-direction: column;
}

.author-name {
  font-family: "Orbitron", sans-serif;
  font-weight: 600;
  font-size: 0.8rem;
}

.author-meta {
  font-size: 0.75rem;
  color: #94a3b8;
}

.proof-numbers {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 4rem;
}

.proof-item {
  text-align: center;
}

.proof-value {
  font-family: "Orbitron", sans-serif;
  font-weight: 800;
  font-size: 2rem;
  color: #00d4ff;
  display: block;
}

.proof-label {
  font-size: 0.8rem;
  color: #94a3b8;
}

.fears {
  padding: 6rem 2rem;
  position: relative;
  overflow: hidden;
}
.fears::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(0, 212, 255, 0.015) 1px, transparent 1px), linear-gradient(90deg, rgba(0, 212, 255, 0.015) 1px, transparent 1px);
  background-size: 90px 90px;
  animation: grid-shift 40s ease-in-out infinite;
  pointer-events: none;
}
.fears .container {
  position: relative;
  z-index: 1;
}

.fears-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
  max-width: 1400px;
  margin: 0 auto;
}

.fear-card {
  background: rgba(15, 23, 42, 0.6);
  border: 1px solid rgba(0, 212, 255, 0.25);
  border-radius: 8px;
  padding: 2rem;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.fear-card:hover {
  border-color: rgba(0, 212, 255, 0.5);
  box-shadow: 0 0 20px rgba(0, 212, 255, 0.12);
  transform: translateY(-2px);
}

.fear-q {
  font-family: "Orbitron", sans-serif;
  font-weight: 600;
  font-size: 1rem;
  margin-bottom: 1rem;
  color: #ffffff;
}

.fear-a {
  font-size: 0.9rem;
  color: #94a3b8;
  line-height: 1.6;
}

.guarantee {
  padding: 6rem 2rem;
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, transparent 0%, rgba(0, 20, 40, 0.2) 50%, transparent 100%);
}
.guarantee::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(0, 212, 255, 0.04) 0%, transparent 70%);
  border-radius: 50%;
  animation: glow-pulse 7s ease-in-out infinite;
  pointer-events: none;
}
.guarantee .container {
  position: relative;
  z-index: 1;
}

.guarantee-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2rem;
  max-width: 1400px;
  margin: 0 auto;
}

.guarantee-card {
  background: rgba(15, 23, 42, 0.6);
  border: 1px solid rgba(0, 212, 255, 0.25);
  border-radius: 8px;
  padding: 2rem;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.guarantee-card:hover {
  border-color: rgba(0, 212, 255, 0.5);
  box-shadow: 0 0 24px rgba(0, 212, 255, 0.12);
  transform: translateY(-2px);
}
.guarantee-card:hover .guarantee-icon {
  transform: scale(1.1);
}

.guarantee-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  transition: transform 0.3s ease;
}

.guarantee-title {
  font-family: "Orbitron", sans-serif;
  font-weight: 600;
  font-size: 1rem;
  margin-bottom: 0.5rem;
}

.guarantee-desc {
  font-size: 0.9rem;
  color: #94a3b8;
  line-height: 1.5;
}

.faq {
  padding: 6rem 2rem;
  position: relative;
  overflow: hidden;
}
.faq::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(0, 212, 255, 0.02) 1px, transparent 1px), linear-gradient(90deg, rgba(0, 212, 255, 0.02) 1px, transparent 1px);
  background-size: 75px 75px;
  animation: grid-shift 33s linear infinite;
  pointer-events: none;
}
.faq .container {
  position: relative;
  z-index: 1;
}

.faq-list {
  max-width: 640px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid rgba(0, 212, 255, 0.25);
}

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 2rem 0;
  background: none;
  border: none;
  color: #ffffff;
  font-family: "Rajdhani", sans-serif;
  font-family: "Orbitron", sans-serif;
  font-weight: 600;
  font-size: 1rem;
  text-align: left;
  cursor: pointer;
  transition: color 0.2s;
}
.faq-question::after {
  content: "+";
  font-size: 1.5rem;
  color: #00d4ff;
  flex-shrink: 0;
  margin-left: 1rem;
  transition: transform 0.2s;
}
.faq-question[aria-expanded=true]::after {
  transform: rotate(45deg);
}
.faq-question:hover {
  color: #00d4ff;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  font-size: 0.9rem;
  color: #94a3b8;
  line-height: 1.6;
}

.faq-item.is-open .faq-answer {
  max-height: 300px;
  padding-bottom: 2rem;
}

.faq-question {
  transition: color 0.2s ease, transform 0.2s ease;
}
.faq-question:active {
  transform: scale(0.99);
}

.final-cta {
  padding: 6rem 2rem;
  position: relative;
  overflow: hidden;
  background: radial-gradient(ellipse 80% 60% at 50% 50%, rgba(0, 50, 80, 0.3) 0%, transparent 70%);
}
.final-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 40% at 70% 30%, rgba(0, 100, 150, 0.25) 0%, transparent 50%);
  animation: gradient-pulse 8s ease-in-out infinite;
}
.final-cta .container {
  position: relative;
  z-index: 1;
}

.final-cta-content {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.final-title {
  font-family: "Orbitron", sans-serif;
  font-weight: 800;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  line-height: 1.2;
  margin-bottom: 1rem;
}

.final-desc {
  font-size: 1rem;
  color: #94a3b8;
  margin-bottom: 4rem;
}

.lead-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 1rem;
}

.form-row {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.form-row input,
.form-row select {
  flex: 1;
  min-width: 200px;
  padding: 1rem 1.25rem;
  background: rgba(15, 23, 42, 0.8);
  border: 1px solid rgba(0, 212, 255, 0.25);
  border-radius: 4px;
  color: #ffffff;
  font-family: "Rajdhani", sans-serif;
  font-size: 0.9rem;
  transition: border-color 0.2s;
}
.form-row input::placeholder,
.form-row select::placeholder {
  color: #94a3b8;
}
.form-row input:focus,
.form-row select:focus {
  outline: none;
  border-color: #00d4ff;
}

.form-note {
  font-size: 0.75rem;
  color: #94a3b8;
}

.lead-form.form-success .form-row,
.lead-form.form-success button[type=submit] {
  animation: pulse-success 0.3s ease;
}

@keyframes pulse-success {
  50% {
    opacity: 0.8;
  }
}
.footer {
  padding: 2rem;
  border-top: 1px solid rgba(0, 212, 255, 0.25);
}

.footer-content {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.footer-logo {
  font-family: "Orbitron", sans-serif;
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
}

.footer-links {
  display: flex;
  gap: 2rem;
}
.footer-links a {
  color: #94a3b8;
  text-decoration: none;
  font-size: 0.8rem;
}
.footer-links a:hover {
  color: #00d4ff;
}

.footer-copy {
  font-size: 0.75rem;
  color: #94a3b8;
}/*# sourceMappingURL=main.css.map */