:root {
      --primary: #ff6b00;
      --secondary: #ff9800;
      --accent: #22c55e;
      --cyan: #67e8f9;
      --purple: #a78bfa;
      --green: #86efac;
      --bg-dark: #0b0f19;
      --bg-darker: #020617;
      --bg-card: #111827;
      --bg-hover: #1e293b;
      --border: #334155;
      --text-primary: #e5e7eb;
      --text-secondary: #cbd5e1;
      --text-muted: #9ca3af;
      --gradient-1: linear-gradient(135deg, #ff6b00 0%, #ff9800 100%);
      --gradient-2: linear-gradient(135deg, #ff9800 0%, #fbbf24 100%);
      --gradient-3: linear-gradient(135deg, #22c55e 0%, #4ade80 100%);
      --shadow-sm: 0 2px 4px rgba(0,0,0,0.3);
      --shadow-md: 0 4px 12px rgba(0,0,0,0.4);
      --shadow-lg: 0 10px 25px rgba(255,107,0,0.25);
      --shadow-glow: 0 0 30px rgba(255,107,0,0.5);
      --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    }

    * { margin:0; padding:0; box-sizing:border-box; }
    body {
      background: var(--bg-dark);
      color: var(--text-primary);
      line-height: 1.7;
      overflow-x: hidden;
    }
	
	
	
	
	
	
	
	
	
	
  .advantages-section {
    padding: 120px 0 100px;
     background: linear-gradient(
  to bottom,
  #f8fafc 0%,
  #e9edf2 70%,
  #e2e7ec 100%
);
    overflow: hidden;
  }

  .section-header {
    display: flex;
    align-items: center;
    margin-bottom: 5rem;
  }

  .section-header h2 {
    font-family: var(--font-code);
    font-size: 3.5rem;
    font-weight: 800;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin: 0;
    flex: 0 0 50%;
    line-height: 1.1;
  }

  .gradient-line {
    height: 6px;
    background: rgba(255,107,0,0.15);
    border-radius: 3px;
    position: relative;
    overflow: hidden;
    margin-left: 20px;
    flex: 1;
    box-shadow: 0 0 20px rgba(255,107,0,0.4);
  }

  .fill-line {
    position: absolute;
    top: 0; left: 0; height: 100%;
    width: 0;
    background: var(--gradient-1);
    border-radius: 3px;
    transition: width 1.8s ease-out;
    box-shadow: 0 0 20px rgba(255,107,0,0.4);
  }

  .advantages-section.is-visible .fill-line {
    width: 100%;
  }

  .cards-mosaic {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    width: 100%;
    margin: 0 auto;
  }

  .mosaic-row {
    display: flex;
    gap: 1.5rem;
    width: 100%;
    justify-content: center; 
  }

  .advantage-card {
    position: relative;
    background: rgba(17,24,39,0.6);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255,107,0,0.2);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    transition: all 0.4s ease;
    overflow: hidden;
    box-sizing: border-box;
  }

  .advantage-card.big {
    flex: 0 0 calc(60% - 1.25rem); 
  }

  .advantage-card.small {
    flex: 0 0 calc(40% - 1.25rem); 
  }

  .advantage-card:hover {
    transform: translateY(-12px);
    box-shadow: var(--shadow-glow);
    border-color: var(--primary);
  }

  .card-bg {
    position: absolute;
    inset: 0;
    background-image: url('/userfiles/images/lazer/fon-bg-1.webp');
    background-size: cover;
    background-position: center;
    opacity: 0.2;
    z-index: -1;
  }

  .advantage-card h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    color: white;
    position: relative;
    z-index: 1;
  }

  .advantage-card p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    line-height: 1.6;
    position: relative;
    z-index: 1;
  }

  .cta-center {
    text-align: center;
    margin-top: 5rem;
  }

  @media (max-width: 1024px) {
    .section-header {
      flex-direction: column;
      align-items: flex-start;
      gap: 1.5rem;
    }

    .section-header h2 {
      flex: none;
      font-size: 2.8rem;
    }

    .gradient-line {
      margin-left: 0;
      width: 100vw;
      margin-left: calc(-50vw + 50%);
      margin-right: calc(-50vw + 50%);
      height: 4px;
    }

    .mosaic-row {
      flex-direction: column;
      gap: 2rem;
    }

    .advantage-card.big,
    .advantage-card.small {
      flex: 0 0 100%;
    }
  }

  @media (max-width: 768px) {
    .advantages-section {
      padding: 80px 0 60px;
    }
    .section-header h2 {
      font-size: 2.4rem;
    }
  }
 
@media (max-width: 768px) {

  #advantages .container {
    padding-left: 1rem !important;
    padding-right: 1rem !important;
  }
}

.advantage-card {
  position: relative;
  background: linear-gradient(
    145deg,
    rgba(15,23,42,0.75) 0%,
    rgba(2,6,23,0.85) 100%
  );
  border: 1px solid rgba(255,107,0,0.35);
}
.advantage-card h3 {
  color: #ffffff;
}

.advantage-card p {
   color: #ffffff;
}
.card-bg {
  opacity: 0.45;
  filter: blur(2px) brightness(0.9);
  transition: opacity 0.4s ease;
}
.advantage-card:hover {
  background: linear-gradient(
    145deg,
    #020617 0%,
    #020617 100%
  );
}
.advantage-card:hover .card-bg {
  opacity: 0;
}
.advantage-card:hover {
  transform: translateY(-10px);
  box-shadow:
    0 30px 60px rgba(2,6,23,0.9),
    0 0 0 1px rgba(255,107,0,0.5);
}
.advantage-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(2,6,23,0.35);
  transition: opacity 0.4s ease;
}

.advantage-card:hover::before {
  opacity: 1;
}










/* ================== MODELS SECTION ================== */
  .models-section {
    padding: 120px 0 40px;
    position: relative;
    overflow: hidden;
  }

  .models-section .hero-background {
    position: absolute;
    inset: 0;
    z-index: -1;
  }

  .models-section .code-grid-bg {
    position: absolute;
    inset: 0;
    background-image:
      linear-gradient(var(--primary) 1px, transparent 1px),
      linear-gradient(90deg, var(--primary) 1px, transparent 1px);
    background-size: 60px 60px;
    opacity: 0.06;
    animation: gridMove 30s linear infinite;
  }

  @keyframes gridMove {
    to { transform: translate(60px, 60px); }
  }

  .section-header {
    display: flex;
    align-items: center;
    margin-bottom: 3rem;
  }

  .section-header h2 {
    font-family: var(--font-code);
    font-size: 3.5rem;
    font-weight: 800;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin: 0;
    flex: 0 0 50%;
    line-height: 1.1;
  }

  .gradient-line {
    height: 6px;
    background: rgba(255,107,0,0.15);
    border-radius: 3px;
    overflow: hidden;
    margin-left: 20px;
    flex: 1;
    box-shadow: 0 0 20px rgba(255,107,0,0.4);
  }

  .fill-line {
    position: absolute;
    top: 0; left: 0; height: 100%;
    width: 0;
    background: var(--gradient-1);
    border-radius: 3px;
    transition: width 1.8s ease-out;
    box-shadow: 0 0 20px rgba(255,107,0,0.4);
  }

  .models-section.is-visible .fill-line {
    width: 100%;
  }

  .section-subtitle {
    font-size: 1.35rem;
    color: var(--text-secondary);
    text-align: center;
    margin-bottom: 4rem;
  }

  .models-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    width: 100%;
    margin: 0 auto;
  }

  .model-card {
    background: rgba(17,24,39,0.6);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255,107,0,0.25);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
    text-align: left;
    position: relative;
  }

  .model-card:hover {
    transform: translateY(-12px);
    box-shadow: var(--shadow-glow);
    border-color: var(--primary);
  }

  .model-image {
    width: 100%;
    height: 220px;
    overflow: hidden;
    margin: 0;
    position: relative;
  }

  .model-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
  }

  .model-card:hover .model-image img {
    transform: scale(1.08);
  }

  .price-benefit-ribbon {
    position: absolute;
  top: 16px;
  right: -40px;
  background: linear-gradient(135deg, #ff7a18, #ffd200);
  color: #1a1a1a;
  padding: 8px 50px;
  font-weight: 700;
  font-size: 13px;
  transform: rotate(45deg);
  box-shadow: 0 5px 20px rgba(255, 160, 0, 0.6);
  text-transform: uppercase;
  letter-spacing: 1px;
  }

  .model-content {
    padding: 1.5rem 1.5rem 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    flex: 1;
  }

  .model-name {
    font-size: 1.25rem;
    font-weight: 700;
    color: white;
    text-align: left;
  }

  .model-specs {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    font-size: 1.05rem;
    color: var(--text-secondary);
    text-align: left;
  }

  .model-specs div {
    display: flex;
    align-items: center;
    gap: 0.6rem;
  }

  .model-price {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: auto;
  }

  .price-old {
    font-size: 1rem;
    color: var(--text-muted);
    text-decoration: line-through;
  }

  .price-new {
    font-size: 1.35rem;
    color: var(--primary);
    font-weight: 800;
  }

  .model-actions {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    margin-top: auto;
  }

  .btn.small {
    padding: 0.8rem 1.5rem;
    font-size: 0.95rem;
    width: 100%;
    text-align: center;
  }

  .cta-center {
    text-align: center;
    margin-top: 5rem;
  }

  /* Мобильная версия */
  @media (max-width: 1024px) {
    .models-grid {
      grid-template-columns: 1fr;
      gap: 2.5rem;
    }

    .section-header {
      flex-direction: column;
      align-items: flex-start;
      gap: 1.5rem;
    }

    .section-header h2 {
      flex: none;
      font-size: 2.8rem;
    }

    .gradient-line {
      margin-left: 0;
      width: 100vw;
      margin-left: calc(-50vw + 50%);
      margin-right: calc(-50vw + 50%);
      height: 4px;
    }
  }

  @media (max-width: 768px) {
    .models-section {
      padding: 80px 0 60px;
    }
    .section-header h2 {
      font-size: 2.4rem;
    }
  }
  
  
  
  
  
  
  
  
  /* ============= CTA ============= */

.cta-section{
  padding: 100px 0;
  background:linear-gradient(180deg,#0a0a0a,#111);
}

.cta-container{
  max-width:1440px;
  margin:0 auto;
  padding:0 30px;
}

.cta-box{
  position:relative;
  width:100%;
  min-height:260px;
  background:linear-gradient(135deg,#111,#1a1a1a);
  border-radius:34px;
  border:2px solid rgba(255,122,24,.45);
  box-shadow:
    0 0 70px rgba(255,122,24,.45),
    inset 0 0 40px rgba(255,122,24,.15);
  overflow:visible;

  transform:
    perspective(1200px)
    rotateY(10deg)
    rotateX(5deg)
    skewX(-2deg);

  transition:transform .9s cubic-bezier(.2,.8,.2,1),
             box-shadow .9s;
}

.cta-box:hover{
  transform:
    perspective(1200px)
    rotateY(0deg)
    rotateX(0deg)
    skewX(0deg);

  box-shadow:
    0 0 120px rgba(255,122,24,.75),
    inset 0 0 60px rgba(255,122,24,.25);
}

.cta-inner{
  position:relative;
  z-index:5;
  display:flex;
  align-items:center;
  height:100%;
  padding:60px 80px;
}

.cta-text{
  width:60%;
  text-align:left;
}

.cta-text h2{
  font-size:3.1rem;
  font-family:var(--font-code);
  margin-bottom:10px;
  background:linear-gradient(135deg,#ff7a18,#ffd200);
  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
}

.cta-text p{
  font-size:1.2rem;
  color:#ccc;
  max-width:520px;
}

.cta-action{
  width:40%;
  display:flex;
  justify-content:flex-end;
}

.cta-btn{
  width:100%;
  max-width:420px;
  text-align:center;
  padding:20px 30px;
  font-size:1.1rem;
}

.cta-float{
  position:absolute;
  font-family:var(--font-code);
  font-size:7rem;
  font-weight:900;
  color:#ff7a18;
  opacity:.4;
  text-shadow:
    0 0 25px rgba(255,122,24,.9),
    0 0 80px rgba(255,122,24,.6);
  animation:floatCTA 6s ease-in-out infinite;
  pointer-events:none;
}

.f1{ top:-15%; left:4%; animation-delay:0s;}
.f2{ top:-10%; right:6%; animation-delay:1.5s;}
.f3{ bottom:-18%; left:12%; animation-delay:3s;}
.f4{ bottom:-14%; right:10%; animation-delay:4.5s;}

@keyframes floatCTA{
  0%,100%{ transform:translateY(0) rotate(0deg);}
  50%{ transform:translateY(-45px) rotate(12deg);}
}

@media(max-width:1024px){
  .cta-inner{
    flex-direction:column;
    gap:30px;
	padding:20px 10px;
  }
  .cta-text,
  .cta-action{
    width:100%;
  }
  .cta-action{
    justify-content:flex-start;
  }
}










/* ================== SPECS ================== */
.specs-section{
  padding:120px 0 100px;
 background: linear-gradient(
  to bottom,
  #f8fafc 0%,
  #e9edf2 70%,
  #e2e7ec 100%
);
}

.specs-section .section-header{
  display:flex;
  align-items:center;
  margin-bottom:1.8rem;
}

.specs-section .section-header h2{
  font-family:var(--font-code);
  font-size:3.5rem;
  font-weight:800;
  background:var(--gradient-1);
  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
  margin:0;
  flex:0 0 50%;
  line-height:1.1;
}

.specs-section .gradient-line{
  height:6px;
  background:rgba(255,107,0,.15);
  border-radius:3px;
  position:relative;
  overflow:hidden;
  margin-left:20px;
  flex:1;
  box-shadow:0 0 20px rgba(255,107,0,.4);
}

.specs-section .fill-line{
  position:absolute;
  inset:0;
  width:0;
  background:var(--gradient-1);
  border-radius:3px;
  transition:width 1.8s ease-out;
  box-shadow:0 0 20px rgba(255,107,0,.4);
}

.specs-section.is-visible .fill-line{
  width:100%;
}

.specs-subtitle{
  text-align:center;
  color:#000;
  font-size:1.2rem;
  margin-bottom:4rem;
}

.specs-wrapper{
  overflow-x:auto;
}

.specs-table-wrap{
  width: 100%;
  border-radius: 26px;
  overflow: hidden; 
  margin: 0 auto;
  background: rgba(17,24,39,0.7);
  backdrop-filter: blur(8px);
  box-sizing: border-box;
}

.specs-table{
  width:100%;
  border-collapse:separate;
  border-radius: 26px; 
  overflow: hidden; 
  border-spacing:0;
  background:rgba(20,20,20,.85);
  backdrop-filter:blur(14px);
  border:1px solid rgba(255,122,24,.25);
}

.specs-table th,
.specs-table td{
  padding:22px 20px;
  text-align:center;
  color:#ddd;
  font-size:1rem;
  border-bottom:1px solid rgba(255,255,255,.05);
   overflow: hidden; 
}

.specs-table thead th{
  background:rgba(255,122,24,.08);
  font-size:1.05rem;
}

.specs-table thead span{
  display:block;
  font-size:.85rem;
  color:#ff7a18;
  margin-top:4px;
}

.specs-table tbody td:first-child{
  text-align:left;
  font-weight:600;
  color:#fff;
}

.specs-table .highlight{
  background:rgba(255,122,24,.12);
  box-shadow:inset 0 0 30px rgba(255,122,24,.25);
}

.specs-table tbody tr:hover td{
  background:rgba(255,255,255,.03);
}

.price{
  font-weight:700;
  color:#ffd200;
}

.actions td{
  padding:28px 20px;
}

.btn-outline{
  border:2px solid #ff7a18;
  color:#ff7a18;
  padding:10px 26px;
  border-radius:50px;
  transition:.3s;
}

.btn-outline:hover{
  background:#ff7a18;
  color:#111;
}

.specs-note{
  text-align:center;
  margin-top:35px;
  color:#000;
  font-size:.95rem;
}

@media(max-width:1024px){
  .specs-section .section-header{
    flex-direction:column;
    align-items:flex-start;
    gap:1.5rem;
  }

  .specs-section .gradient-line{
    margin-left:0;
    width:100vw;
    margin-left:calc(-50vw + 50%);
  }

  .specs-section .section-header h2{
    font-size:2.8rem;
  }
}
@media (max-width: 768px) {

  .specs-wrapper {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .specs-table {
    min-width: 900px;
  }

  .specs-table thead th {
    position: sticky;
    top: 0;
    z-index: 5;
    background: rgba(20,20,20,0.95);
  }

  .specs-table th:first-child,
  .specs-table td:first-child {
    position: sticky;
    left: 0;
    z-index: 4;
    background: linear-gradient(
      to right,
      rgba(15,23,42,0.95) 0%,
      rgba(15,23,42,0.85) 100%
    );
    text-align: left;
    font-weight: 600;
  }

  .specs-table td {
    font-size: 0.95rem;
    white-space: nowrap;
  }

  .specs-table thead th:first-child {
    z-index: 6;
  }

  .specs-table .btn {
    padding: 8px 18px;
    font-size: 0.9rem;
  }

}
@media (max-width: 768px) {

  .specs-wrapper {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .specs-table-wrap {
    min-width: max-content;
  }

  .specs-table {
    width: max-content;
    min-width: 900px;
  }
}














/* ================== PRODUCTION SECTION ================== */
.production-section {
  padding: 120px 0 100px;
  background: linear-gradient(to bottom, #111 0%, #222 100%);
  overflow: hidden;
  position: relative;
}

.production-section .hero-background {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.production-section .code-grid-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(var(--primary) 1px, transparent 1px),
    linear-gradient(90deg, var(--primary) 1px, transparent 1px);
  background-size: 60px 60px;
  opacity: 0.06;
  animation: gridMove 30s linear infinite;
}

@keyframes gridMove {
  to { transform: translate(60px, 60px); }
}

.production-section .section-header {
  display: flex;
  align-items: center;
  margin-bottom: 2rem;
  position: relative;
  z-index: 1;
}

.production-section .section-header h2 {
  font-size: 3.5rem;
  font-weight: 800;
  background: linear-gradient(90deg, #ff6b00, #ffa500);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin: 0;
  flex: 0 0 50%;
  line-height: 1.1;
}

.production-section .gradient-line {
  height: 6px;
  background: rgba(255,107,0,0.15);
  border-radius: 3px;
  overflow: hidden;
  margin-left: 20px;
  flex: 1;
  box-shadow: 0 0 20px rgba(255,107,0,0.4);
  position: relative;
}

.production-section .fill-line {
  position: absolute;
  top: 0; left: 0; height: 100%;
  width: 0;
  background: linear-gradient(90deg, #ff6b00, #ffa500);
  border-radius: 3px;
  transition: width 1.8s ease-out;
  box-shadow: 0 0 20px rgba(255,107,0,0.4);
}

.production-section.is-visible .fill-line {
  width: 100%;
}

.production-section .section-subtitle {
  font-size: 1.35rem;
  color: #fff;
  margin-bottom: 4rem;
  position: relative;
  z-index: 1;
}

.production-columns {
  display: flex;
  gap: 3rem;
  align-items: flex-start;
  position: relative;
  z-index: 1;
}

.production-text {
  flex: 0 0 48%;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.production-text .text-block p {
  color: #fff;
  font-size: 1.15rem;
  line-height: 1.8;
  margin-bottom: 1rem;
}

.production-stats {
  flex: 0 0 48%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.stats-grid {
  display: flex;
  flex-direction: column;
  gap: 1.8rem;
}

.stat-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  padding-bottom: 0.2rem;
}

.stat-item::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  border-bottom: 1px dashed rgba(255, 107, 0, 0.4);
  z-index: 0;
}

.stat-number {
  font-size: 3.5rem;
  font-weight: 800;
  color: #ff6b00;
  min-width: 80px;
  z-index: 1;
}

.stat-label {
  font-size: 1.15rem;
  color: #fff;
  text-align: right;
  flex: 1;
  z-index: 1;
}

.production-button {
  margin-top: 3rem;
}

.btn-primary {
  display: inline-block;
  padding: 0.85rem 1.8rem;
  background: linear-gradient(90deg, #ff6b00, #ffa500);
  color: #fff;
  font-weight: 700;
  text-decoration: none;
  border-radius: 12px;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(255,107,0,0.4);
}

@media (max-width: 1024px) {
  .production-columns {
    flex-direction: column;
  }

  .production-text, .production-stats {
    flex: 0 0 100%;
  }
}

@media (max-width: 768px) {
  .production-section {
    padding: 80px 0 60px;
  }

  .production-section .section-header h2 {
    font-size: 2.4rem;
  }

  .production-section .section-subtitle {
    font-size: 1.2rem;
  }

  .stat-number {
    font-size: 2rem;
    min-width: 60px;
  }

  .stat-label {
    font-size: 1rem;
  }
}













/* ================== APPLICATIONS SECTION ================== */
.applications-section{
  padding:120px 0 100px;
   background: linear-gradient(
  to bottom,
  #f8fafc 0%,
  #e9edf2 70%,
  #e2e7ec 100%
);
  overflow:hidden;
}

.applications-section .hero-background{
  position:absolute;
  inset:0;
  z-index:0;
}

.applications-section .code-grid-bg{
  position:absolute;
  inset:0;
  background-image:
    linear-gradient(var(--primary) 1px, transparent 1px),
    linear-gradient(90deg, var(--primary) 1px, transparent 1px);
  background-size:60px 60px;
  opacity:.06;
  animation:gridMove 30s linear infinite;
}

@keyframes gridMove{
  to{transform:translate(60px,60px);}
}

.applications-section .section-header{
  display:flex;
  align-items:center;
  margin-bottom:2rem;
}

.applications-section .section-header h2{
  font-family:var(--font-code);
  font-size:3.5rem;
  font-weight:800;
  background:var(--gradient-1);
  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
  margin:0;
  flex:0 0 50%;
  line-height:1.1;
}

.applications-section .gradient-line{
  height:6px;
  background:rgba(255,107,0,.15);
  border-radius:3px;
  position:relative;
  overflow:hidden;
  margin-left:20px;
  flex:1;
  box-shadow:0 0 20px rgba(255,107,0,.4);
}

.applications-section .fill-line{
  position:absolute;
  inset:0;
  width:0;
  background:var(--gradient-1);
  border-radius:3px;
  transition:width 1.8s ease-out;
  box-shadow:0 0 20px rgba(255,107,0,.4);
}

.applications-section.is-visible .fill-line{
  width:100%;
}

.applications-section .section-subtitle{
  font-size:1.35rem;
  color:#000;
  text-align:center;
  margin:1.5rem 0 4rem;
}

.app-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:2.5rem;
  margin-bottom:4rem;
}

.app-card{
  position:relative;
  background: linear-gradient(
    145deg,
    rgba(15,23,42,0.75) 0%,
    rgba(2,6,23,0.85) 100%
  );
  backdrop-filter:blur(12px);
  border: 1px solid rgba(255,107,0,0.35);
  border-radius:20px;
  padding:2.5rem 2rem;
  transition:all .4s ease;
  display:flex;
  flex-direction:column;
  gap:1rem;
  overflow:hidden;
}

.app-card:hover{
  transform:translateY(-12px);
  box-shadow:var(--shadow-glow);
  border-color:var(--primary);
  background: linear-gradient(
    145deg,
    #020617 0%,
    #020617 100%
  );
}

.app-card .card-bg{
  position:absolute;
  inset:0;
  background-image:url('/userfiles/images/lazer/fon-bg-2.webp');
  background-size:cover;
  background-position:center;
   opacity: 0.45;
   filter: blur(2px) brightness(0.9);
   transition: opacity 0.4s ease;
  z-index:-1;
}

.app-card:hover .card-bg {
  opacity: 0;
}

.app-card h3{
  font-size:1.6rem;
  color:white;
  margin:0;
  position:relative;
  z-index:1;
}

.app-card p{
  color:white;
  font-size:1.1rem;
  line-height:1.6;
  margin:0;
  position:relative;
  z-index:1;
}

.cta-center{
  text-align:center;
}

@media(max-width:1024px){
  .applications-section .section-header{
    flex-direction:column;
    align-items:flex-start;
    gap:1.5rem;
  }
  .applications-section .gradient-line{
    margin-left:0;
    width:100vw;
    margin-left:calc(-50vw + 50%);
    margin-right:calc(-50vw + 50%);
    height:4px;
  }
  .app-grid{
    grid-template-columns:1fr;
    gap:2rem;
  }
}

@media(max-width:768px){
  .applications-section{
    padding:80px 0 60px;
  }
  .applications-section .section-header h2{
    font-size:2.8rem;
  }
}













/* ================== DETAILED-SPECS SECTION ================== */
.detailed-specs-section{
 padding:120px 0 100px;
  position:relative;
  overflow:hidden;
}

.detailed-specs-section .code-grid-bg{
  position:absolute;
  inset:0;
  background-image:
    linear-gradient(var(--primary) 1px, transparent 1px),
    linear-gradient(90deg, var(--primary) 1px, transparent 1px);
  background-size:60px 60px;
  opacity:.06;
  animation:gridMove 30s linear infinite;
}

.detailed-specs-section .section-header{
  display:flex;
  align-items:center;
  margin-bottom:2rem;
}

.detailed-specs-section .section-header h2{
  font-family:var(--font-code);
  font-size:3.5rem;
  font-weight:800;
  background:var(--gradient-1);
  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
  margin:0;
  flex:0 0 50%;
  line-height:1.1;
}

.detailed-specs-section .gradient-line{
  height:6px;
  background:rgba(255,107,0,.15);
  border-radius:3px;
  position:relative;
  overflow:hidden;
  margin-left:20px;
  flex:1;
  box-shadow:0 0 20px rgba(255,107,0,.4);
}

.detailed-specs-section .fill-line{
  position:absolute;
  inset:0;
  width:0;
  background:var(--gradient-1);
  border-radius:3px;
  transition:width 1.8s ease-out;
  box-shadow:0 0 20px rgba(255,107,0,.4);
}

.detailed-specs-section.is-visible .fill-line{
  width:100%;
}

.detailed-specs-section .section-subtitle{
  font-size:1.35rem;
  color:#fff;
  text-align:center;
  margin:1.5rem 0 4rem;
}

.spec-tabs{
  display:flex;
  gap:1rem;
  justify-content:center;
  flex-wrap:wrap;
  margin-bottom:3rem;
}

.spec-tab{
  padding:.9rem 1.8rem;
  background:rgba(17,24,39,0.6);
  border:1px solid rgba(255,107,0,.25);
  border-radius:12px;
  color:var(--text-primary);
  font-weight:700;
  cursor:pointer;
  transition:all .3s ease;
}

.spec-tab.active,
.spec-tab:hover{
  background:var(--gradient-1);
  color:white;
  border-color:var(--primary);
  box-shadow:var(--shadow-glow);
}

.spec-slider{
  position:relative;
}

.spec-slide-inner{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:3rem;
  align-items:center;
  background:rgba(17,24,39,0.6);
  backdrop-filter:blur(12px);
  border:1px solid rgba(255,107,0,.2);
  border-radius:20px;
  padding:3rem;
}

.spec-image img{
  width:100%;
  height:auto;
  border-radius:12px;
  object-fit:cover;
}

.spec-list ul{
  list-style:none;
  padding:0;
  margin:0;
  display:flex;
  flex-direction:column;
  gap:.8rem;
}

.spec-list li{
  color: #fff;
  font-size:1.1rem;
  line-height:1.5;
  padding-left:1.4rem;
  position:relative;
}

.spec-list li::before{
  content:'';
  position:absolute;
  left:0;
  top:.6em;
  width:6px;
  height:6px;
  background:var(--primary);
  border-radius:50%;
}

.swiper-button-prev,
.swiper-button-next{
  color:var(--primary);
  transition:all .3s ease;
}

.swiper-button-prev:hover,
.swiper-button-next:hover{
  transform:scale(1.15);
  color:white;
}

.cta-center{
  text-align:center;
  margin-top:4rem;
}

@media(max-width:1024px){
  .detailed-specs-section .section-header{
    flex-direction:column;
    align-items:flex-start;
    gap:1.5rem;
  }
  .detailed-specs-section .gradient-line{
    margin-left:0;
    width:100vw;
    margin-left:calc(-50vw + 50%);
    margin-right:calc(-50vw + 50%);
    height:4px;
  }
  .spec-slide-inner{
    grid-template-columns:1fr;
    gap:2rem;
  }
}

@media(max-width:768px){
  .detailed-specs-section{
    padding:80px 0 60px;
  }
  .detailed-specs-section .section-header h2{
    font-size:2.5rem;
  }
  .spec-tabs{
  display:grid;
  grid-template-columns:1fr 1fr ;
}
}














/* ================== VIDEO SECTION (hero-фон + 2×2 стрелки) ================== */
.video-section{
  padding:120px 0 100px;
  position:relative;
  overflow:hidden;
   background: linear-gradient(
  to bottom,
  #f8fafc 0%,
  #e9edf2 70%,
  #e2e7ec 100%
);
}

.video-section .hero-background{
  position:absolute;
  inset:0;
  z-index:0;
}

.video-section .code-grid-bg{
  position:absolute;
  inset:0;
  background-image:
    linear-gradient(var(--primary) 1px, transparent 1px),
    linear-gradient(90deg, var(--primary) 1px, transparent 1px);
  background-size:60px 60px;
  opacity:.06;
  animation:gridMove 30s linear infinite;
}

@keyframes gridMove{
  to{transform:translate(60px,60px);}
}

.video-section .section-header{
  display:flex;
  align-items:center;
  margin-bottom:2rem;
}

.video-section .section-header h2{
  font-family:var(--font-code);
  font-size:3.5rem;
  font-weight:800;
  background:var(--gradient-1);
  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
  margin:0;
  flex:0 0 50%;
  line-height:1.1;
}

.video-section .gradient-line{
  height:6px;
  background:rgba(255,107,0,.15);
  border-radius:3px;
  position:relative;
  overflow:hidden;
  margin-left:20px;
  flex:1;
  box-shadow:0 0 20px rgba(255,107,0,.4);
}

.video-section .fill-line{
  position:absolute;
  inset:0;
  width:0;
  background:var(--gradient-1);
  border-radius:3px;
  transition:width 1.8s ease-out;
  box-shadow:0 0 20px rgba(255,107,0,.4);
}

.video-section.is-visible .fill-line{
  width:100%;
}

.video-section .section-subtitle{
  font-size:1.35rem;
   color:#000;
  text-align:center;
  margin:1.5rem 0 4rem;
}

.steps-rows{
  display:flex;
  flex-direction:column;
  gap:4rem;
  margin-bottom:4rem;
}

.steps-row{
  display:flex;
  align-items:center;
  gap:2rem;
}

.step-arrow-item{
  flex:1;
  position:relative;
}

.step-arrow-item .step{
  background:rgba(0,0,0,0.9);
  backdrop-filter:blur(12px);
  border:1px solid rgba(255,107,0,.2);
  border-radius:20px;
  padding:2.5rem 2rem;
  text-align:center;
  transition:all .4s ease;
  opacity:0;
  transform:translateY(30px);
}

.step-arrow-item.animate .step{
  opacity:1;
  transform:translateY(0);
}

.step:hover{
  transform:translateY(-12px);
  box-shadow:var(--shadow-glow);
  border-color:var(--primary);
}

.step-number{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:60px;
  height:60px;
  background:var(--gradient-1);
  color:white;
  font-size:1.8rem;
  font-weight:800;
  border-radius:50%;
  margin:0 auto 1.5rem;
}

.step h3{
  font-size:1.4rem;
  color:white;
  margin:0 0 1rem;
}

.step p{
   color:white;
  font-size:1.05rem;
  line-height:1.6;
  margin:0;
}

.arrow-h{
  width:160px;
  height:60px;
  flex-shrink:0;
  pointer-events:none;
}

@media(max-width:1024px){
  .video-section .section-header{
    flex-direction:column;
    align-items:flex-start;
    gap:1.5rem;
  }
  .video-section .gradient-line{
    margin-left:0;
    width:100vw;
    margin-left:calc(-50vw + 50%);
    margin-right:calc(-50vw + 50%);
    height:4px;
  }
  .steps-row{
    flex-direction:column;
    gap:3rem;
  }
  .arrow-h{
    display:none;
  }
}

@media(max-width:768px){
  .video-section{
    padding:80px 0 60px;
  }
  .video-section .section-header h2{
    font-size:2.8rem;
  }
}










/* ========== PREMIUM-MODELS SECTION ========== */
.premium-models-section{
  padding:120px 0 100px;
  background:linear-gradient(to bottom, var(--bg-dark) 0%, var(--bg-darker) 100%);
  overflow:hidden;
}

.premium-models-section .section-header{
  display:flex;
  align-items:center;
  margin-bottom:2rem;
}

.premium-models-section .section-header h2{
  font-family:var(--font-code);
  font-size:3.5rem;
  font-weight:800;
  background:var(--gradient-1);
  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
  margin:0;
  flex:0 0 50%;
  line-height:1.1;
}

.premium-models-section .gradient-line{
  height:6px;
  background:rgba(255,107,0,.15);
  border-radius:3px;
  position:relative;
  overflow:hidden;
  margin-left:20px;
  flex:1;
  box-shadow:0 0 20px rgba(255,107,0,.4);
}

.premium-models-section .fill-line{
  position:absolute;
  inset:0;
  width:0;
  background:var(--gradient-1);
  border-radius:3px;
  transition:width 1.8s ease-out;
  box-shadow:0 0 20px rgba(255,107,0,.4);
}

.premium-models-section.is-visible .fill-line{
  width:100%;
}

.premium-models-section .section-subtitle{
  font-size:1.35rem;
  color:var(--text-secondary);
  text-align:center;
  margin:1.5rem 0 4rem;
}

.models-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:2.5rem;
  margin-bottom:4rem;
}

.model-card{
  position:relative;
  background:rgba(17,24,39,0.6);
  backdrop-filter:blur(12px);
  border:1px solid rgba(255,107,0,.2);
  border-radius:20px;
  overflow:hidden;
  transition:all .4s ease;
  display:flex;
  flex-direction:column;
}

.model-card:hover{
  transform:translateY(-12px);
  box-shadow:var(--shadow-glow);
  border-color:var(--primary);
}

.card-ribbon{
  position:absolute;
  top:16px;
  right:-40px;
  background:linear-gradient(135deg,#ffd200,#ff7a18);
  color:#111;
  padding:8px 50px;
  font-weight:700;
  font-size:13px;
  transform:rotate(45deg);
  box-shadow:0 5px 20px rgba(255,160,0,.6);
  text-transform:uppercase;
  letter-spacing:1px;
  z-index:2;
}

.card-image img{
  width:100%;
  height:220px;
  object-fit:cover;
  display:block;
}

.card-content{
  padding:1.8rem;
  display:flex;
  flex-direction:column;
  gap:1rem;
  flex:1;
}

.card-title{
  font-size:1.25rem;
  font-weight:700;
  color:white;
}

.card-specs{
  display:flex;
  flex-direction:column;
  gap:.6rem;
  font-size:1.05rem;
  color:var(--text-secondary);
}

.price-line{
  display:flex;
  align-items:center;
  gap:.8rem;
}

.card-price{
  display:flex;
  flex-direction:column;
  gap:.4rem;
  margin-top:auto;
}

.price-old{
  font-size:1rem;
  color:var(--text-muted);
  text-decoration:line-through;
}

.price-new{
  font-size:1.45rem;
  color:var(--primary);
  font-weight:800;
}

.card-actions{
  display:flex;
  flex-direction:column;
  gap:.8rem;
  margin-top:1rem;
}

/* ========== ПРАЗДНИЧНЫЙ CTA ========== */
.gift-cta-box{
  position:relative;
  width:100%;
  min-height:260px;
  background:linear-gradient(135deg,#111,#1a1a1a);
  border-radius:34px;
  border:2px solid rgba(255,122,24,.45);
  box-shadow:
    0 0 70px rgba(255,122,24,.45),
    inset 0 0 40px rgba(255,122,24,.15);
  overflow:visible;

  transform:
    perspective(1200px)
    rotateY(10deg)
    rotateX(5deg)
    skewX(-2deg);

  transition:transform .9s cubic-bezier(.2,.8,.2,1),
             box-shadow .9s;
}

.gift-cta-box:hover{
  transform:
    perspective(1200px)
    rotateY(0deg)
    rotateX(0deg)
    skewX(0deg);

  box-shadow:
    0 0 120px rgba(255,122,24,.75),
    inset 0 0 60px rgba(255,122,24,.25);
}

.gift-inner{
  position:relative;
  z-index:5;
  display:flex;
  align-items:center;
  height:100%;
  padding:60px 80px;
}

.gift-text{
  width:60%;
  text-align:left;
}

.gift-text h3{
  font-size:3.1rem;
  font-family:var(--font-code);
  margin-bottom:10px;
  background:linear-gradient(135deg,#ff7a18,#ffd200);
  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
}

.gift-text p{
  font-size:1.2rem;
  color:#ccc;
  max-width:520px;
}

.gift-action{
  width:40%;
  display:flex;
  justify-content:flex-end;
}

.gift-btn{
  width:100%;
  max-width:420px;
  text-align:center;
  padding:20px 30px;
  font-size:1.1rem;
}

.gift-float{
  position:absolute;
  font-size:7rem;
  line-height:1;
  filter:drop-shadow(0 0 25px rgba(255,122,24,.9)) drop-shadow(0 0 80px rgba(255,122,24,.6));
  animation:giftFloat 6s ease-in-out infinite;
  pointer-events:none;
}

.gf1{ top:-15%; left:4%; animation-delay:0s;}
.gf2{ top:-10%; right:6%; animation-delay:1.5s;}
.gf3{ bottom:-18%; left:12%; animation-delay:3s;}
.gf4{ bottom:-14%; right:10%; animation-delay:4.5s;}

@keyframes giftFloat{
  0%,100%{ transform:translateY(0) rotate(0deg);}
  50%{ transform:translateY(-45px) rotate(12deg);}
}

@media(max-width:1024px){
  .premium-models-section .section-header{
    flex-direction:column;
    align-items:flex-start;
    gap:1.5rem;
  }
  .premium-models-section .gradient-line{
    margin-left:0;
    width:100vw;
    margin-left:calc(-50vw + 50%);
    margin-right:calc(-50vw + 50%);
    height:4px;
  }
  .models-grid{
    grid-template-columns:1fr;
    gap:2rem;
  }
  .gift-inner{
    flex-direction:column;
    gap:30px;
  }
  .gift-text,
  .gift-action{
    width:100%;
  }
  .gift-action{
    justify-content:flex-start;
  }
}

@media(max-width:768px){
  .premium-models-section{
    padding:80px 0 60px;
  }
  .premium-models-section .section-header h2{
    font-size:2.8rem;
  }
  .gift-inner{
  padding:20px 10px;
}
.gift-text h3{
  font-size:2.1rem;
}
.gift-float{
  font-size:4rem;
}
}









/* ================== CONFIGURATION SECTION (hero-фон + 3 price-card) ================== */
.configuration-section{
  padding:120px 0 100px;
  position:relative;
  overflow:hidden;
  background: linear-gradient(
  to bottom,
  #f8fafc 0%,
  #e9edf2 70%,
  #e2e7ec 100%
);
}

.configuration-section .hero-background{
  position:absolute;
  inset:0;
  z-index:0;
}

.configuration-section .code-grid-bg{
  position:absolute;
  inset:0;
  background-image:
    linear-gradient(var(--primary) 1px, transparent 1px),
    linear-gradient(90deg, var(--primary) 1px, transparent 1px);
  background-size:60px 60px;
  opacity:.06;
  animation:gridMove 30s linear infinite;
}

@keyframes gridMove{
  to{transform:translate(60px,60px);}
}

.configuration-section .section-header{
  display:flex;
  align-items:center;
  margin-bottom:2rem;
}

.configuration-section .section-header h2{
  font-family:var(--font-code);
  font-size:3.5rem;
  font-weight:800;
  background:var(--gradient-1);
  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
  margin:0;
  flex:0 0 50%;
  line-height:1.1;
}

.configuration-section .gradient-line{
  height:6px;
  background:rgba(255,107,0,.15);
  border-radius:3px;
  position:relative;
  overflow:hidden;
  margin-left:20px;
  flex:1;
  box-shadow:0 0 20px rgba(255,107,0,.4);
}

.configuration-section .fill-line{
  position:absolute;
  inset:0;
  width:0;
  background:var(--gradient-1);
  border-radius:3px;
  transition:width 1.8s ease-out;
  box-shadow:0 0 20px rgba(255,107,0,.4);
}

.configuration-section.is-visible .fill-line{
  width:100%;
}

.configuration-section .section-subtitle{
  font-size:1.35rem;
  color:#000;
  text-align:center;
  margin:1.5rem 0 4rem;
}

.price-cards{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:2.5rem;
  max-width:1200px;
  margin:0 auto;
}

.price-card{
  background:rgba(0,0,0,0.9);
  backdrop-filter:blur(12px);
  border:1px solid rgba(255,107,0,.2);
  border-radius:20px;
  padding:2.5rem 2rem;
  display:flex;
  flex-direction:column;
  transition:all .4s ease;
}

.price-card:hover{
  transform:translateY(-12px);
  box-shadow:var(--shadow-glow);
  border-color:var(--primary);
}

.price-card.featured{
  border-color:var(--primary);
  box-shadow:var(--shadow-glow);
}

.card-header{
  text-align:center;
  margin-bottom:1.5rem;
}

.card-header h3{
  font-size:1.8rem;
  color:white;
  margin:0;
  line-height: 1.3;
}

.card-features{
  list-style:none;
  padding:0;
  margin:0 0 2rem;
  flex:1;
}

.card-features li{
  color:white;
  font-size:1.05rem;
  line-height:1.5;
  padding:.6rem 0 .6rem 1.4rem;
  position:relative;
}

.card-features li::before{
  content:'';
  position:absolute;
  left:0;
  top:.9em;
  width:6px;
  height:6px;
  background:var(--primary);
  border-radius:50%;
}

.card-footer{
  margin-top:auto;
  text-align:center;
}

@media(max-width:1024px){
  .configuration-section .section-header{
    flex-direction:column;
    align-items:flex-start;
    gap:1.5rem;
  }
  .configuration-section .gradient-line{
    margin-left:0;
    width:100vw;
    margin-left:calc(-50vw + 50%);
    margin-right:calc(-50vw + 50%);
    height:4px;
  }
  .price-cards{
    grid-template-columns:1fr;
    gap:2rem;
  }
}

@media(max-width:768px){
  .configuration-section{
    padding:80px 0 60px;
  }
  .configuration-section .section-header h2{
    font-size:2.8rem;
  }
}

















/* ================== REVIEWS SECTION ================== */
.reviews-section{
  padding:120px 0 100px;
  background:linear-gradient(to bottom, var(--bg-dark) 0%, var(--bg-darker) 100%);
  overflow:hidden;
}

.reviews-section .section-header{
  display:flex;
  align-items:center;
  margin-bottom:2rem;
}

.reviews-section .section-header h2{
  font-family:var(--font-code);
  font-size:3.5rem;
  font-weight:800;
  background:var(--gradient-1);
  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
  margin:0;
  flex:0 0 50%;
  line-height:1.1;
}

.reviews-section .gradient-line{
  height:6px;
  background:rgba(255,107,0,.15);
  border-radius:3px;
  position:relative;
  overflow:hidden;
  margin-left:20px;
  flex:1;
  box-shadow:0 0 20px rgba(255,107,0,.4);
}

.reviews-section .fill-line{
  position:absolute;
  inset:0;
  width:0;
  background:var(--gradient-1);
  border-radius:3px;
  transition:width 1.8s ease-out;
  box-shadow:0 0 20px rgba(255,107,0,.4);
}

.reviews-section.is-visible .fill-line{
  width:100%;
}

.reviews-section .section-subtitle{
  font-size:1.35rem;
  color:var(--text-secondary);
  text-align:center;
  margin:1.5rem 0 4rem;
}

.reviews-swiper{
  max-width:1200px;
  margin:0 auto;
  padding:0 3rem;
  position:relative;
}

.review-card{
  background:rgba(17,24,39,0.6);
  backdrop-filter:blur(12px);
  border:1px solid rgba(255,107,0,.2);
  border-radius:20px;
  padding:2rem;
  display:flex;
  flex-direction:column;
  height:100%;
}

.review-top{
  position:relative;
  margin-bottom:1.5rem;
}

.review-org{
  position:absolute;
  top:-1rem;
  left:1rem;
  background:rgba(0,0,0,.5);
  backdrop-filter:blur(4px);
  color:white;
  padding:.4rem .8rem;
  border-radius:8px;
  font-size:.9rem;
  font-weight:600;
  z-index:2;
}

.review-top img{
  width:100%;
  height:220px;
  object-fit:cover;
  border-radius:12px;
}

.review-text{
  flex:1;
  color:var(--text-secondary);
  font-size:1.05rem;
  line-height:1.6;
  margin:0 0 1.5rem;
}

.review-stars{
  margin-top:auto;
  font-size:1.4rem;
  line-height:1;
  color:#fbbf24;
  text-align:right;
}

.swiper-button-prev,
.swiper-button-next{
  color:var(--primary);
  transition:all .3s ease;
}

.swiper-button-prev:hover,
.swiper-button-next:hover{
  transform:scale(1.15);
  color:white;
}

@media(max-width:1024px){
  .reviews-section .section-header{
    flex-direction:column;
    align-items:flex-start;
    gap:1.5rem;
  }
  .reviews-section .gradient-line{
    margin-left:0;
    width:100vw;
    margin-left:calc(-50vw + 50%);
    margin-right:calc(-50vw + 50%);
    height:4px;
  }
}

@media(max-width:768px){
  .reviews-section{
    padding:80px 0 60px;
  }
  .reviews-section .section-header h2{
    font-size:2.8rem;
  }
  .reviews-swiper{
    padding:0 1rem;
  }
}











/* ================== CONTACTS SECTION (подписи после линии) ================== */
.contacts-section{
  padding:120px 0 100px;
  background: linear-gradient(
  to bottom,
  #f8fafc 0%,
  #e9edf2 70%,
  #e2e7ec 100%
);
  overflow:hidden;
}

.contacts-section .section-header{
  display:flex;
  align-items:center;
  margin-bottom:2rem;
}

.contacts-section .section-header h2{
  font-family:var(--font-code);
  font-size:3.5rem;
  font-weight:800;
  background:var(--gradient-1);
  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
  margin:0;
  flex:0 0 50%;
  line-height:1.1;
}

.contacts-section .gradient-line{
  height:6px;
  background:rgba(255,107,0,.15);
  border-radius:3px;
  position:relative;
  overflow:hidden;
  margin-left:20px;
  flex:1;
  box-shadow:0 0 20px rgba(255,107,0,.4);
}

.contacts-section .fill-line{
  position:absolute;
  inset:0;
  width:0;
  background:var(--gradient-1);
  border-radius:3px;
  transition:width 1.8s ease-out;
  box-shadow:0 0 20px rgba(255,107,0,.4);
}

.contacts-section.is-visible .fill-line{
  width:100%;
}

.contacts-section .section-subtitle{
  font-size:1.35rem;
  color:#000;
  text-align:center;
  margin:1.5rem 0 4rem;
}

.contacts-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:3rem;
  align-items:stretch;
}

.contact-col{
  background:rgba(0,0,0,0.9);
  backdrop-filter:blur(12px);
  border:1px solid rgba(255,107,0,.2);
  border-radius:20px;
  padding:2.5rem;
  display:flex;
  flex-direction:column;
  gap:2rem;
}

.contact-col h3{
  font-size:1.5rem;
  color:white;
  margin:0 0 1rem;
}

.contact-block{
  display:flex;
  align-items:flex-start;
  gap:1rem;
}

.contact-icon{
  font-size:1.6rem;
  line-height:1;
  flex-shrink:0;
}

.contact-text{
  font-size:1.05rem;
  line-height:1.6;
  color:white;
}

.contact-text a{
  color:var(--primary);
  text-decoration:none;
  font-weight:600;
}

.contact-text a:hover{
  text-decoration:underline;
}

.social-line{
  display:flex;
  flex-direction:column;
  gap:1rem;
}

.social-card{
  background:rgba(255,107,0,.08);
  border:1px solid rgba(255,107,0,.2);
  border-radius:12px;
  padding:1rem 1.2rem;
  text-decoration:none;
  color:var(--text-primary);
  transition:all .3s ease;
  display:flex;
  align-items:center;
  gap:.8rem;
  position:relative;
}

.social-card:hover{
  background:var(--gradient-1);
  color:white;
  border-color:var(--primary);
  box-shadow:var(--shadow-glow);
}

.soc-icon{
  font-size:1.8rem;
  line-height:1;
}

.soc-name{
  font-size:1.05rem;
  font-weight:600;
}

.soc-line{
  flex:1;
  height:1px;
  background:linear-gradient(to right, transparent 0%, rgba(255,107,0,.4) 50%, transparent 100%);
  margin:0 .5rem;
}

.soc-desc{
  font-size:.75rem;
  color:var(--text-muted);
  letter-spacing:.2px;
  margin-left:auto;
}

@media(max-width:1024px){
  .contacts-section .section-header{
    flex-direction:column;
    align-items:flex-start;
    gap:1.5rem;
  }
  .contacts-section .gradient-line{
    margin-left:0;
    width:100vw;
    margin-left:calc(-50vw + 50%);
    margin-right:calc(-50vw + 50%);
    height:4px;
  }
  .contacts-grid{
    grid-template-columns:1fr;
    gap:2rem;
  }
}

@media(max-width:768px){
  .contacts-section{
    padding:80px 0 60px;
  }
  .contacts-section .section-header h2{
    font-size:2.8rem;
  }
}



.main-header {
  position: fixed;
  top: 0; left: 0; width: 100%;
  z-index: 1000;
  transition: all var(--transition);
}

.header-top {
  background: rgba(11,15,25,0.85);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255,107,0,0.15);
  padding: 0.1rem 0;
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.main-header.scrolled .header-top {
  opacity: 0;
  transform: translateY(-100%);
  pointer-events: none;
}

.header-bottom {
  background: rgba(11,15,25,0.9);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255,107,0,0.2);
  padding: 0.8rem 0;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 998;
  transition: all var(--transition);
  transform: translateY(0);
}

.main-header:not(.scrolled) .header-bottom {
  position: relative;
  top: auto;
}

.main-header.scrolled .header-bottom {
  box-shadow: var(--shadow-md);
}

.nav-container {
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 3rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.brand-logo {
  font-size: 2.1rem;
  font-weight: 800;
  background: var(--gradient-1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.header-contacts {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  font-size: 0.95rem;
  color: var(--text-muted);
  white-space: nowrap;
}

.header-contacts strong {
  color: var(--text-primary);
  font-weight: 700;
  font-size: 1.1rem;
}

.header-cta .btn {
  padding: 0.8rem 1.8rem;
  font-size: 0.95rem;
  background: var(--gradient-1);
  color: white;
  border-radius: 10px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.35s ease;
  box-shadow: var(--shadow-sm);
  white-space: nowrap;
}

.header-cta .btn:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: var(--shadow-glow);
}

.nav-menu {
  display: flex;
  gap: 2.5rem;
  justify-content: center;
  flex: 1;
  background: rgba(17,24,39,0.6);
  backdrop-filter: blur(12px);
  border-radius: 16px;
  padding: 0.8rem 2.5rem;
  border: 1px solid rgba(255,107,0,0.25);
  box-shadow: 0 4px 20px rgba(0,0,0,0.35);
}

.nav-link {
  color: var(--text-primary);
  text-decoration: none;
  font-weight: 700;
  padding: 0.7rem 1.3rem;
  border-radius: 12px;
  transition: all 0.3s ease;
  position: relative;
  background: rgba(255,107,0,0.08);
}

.nav-link:hover,
.nav-link.active {
  color: var(--primary);
  background: rgba(255,107,0,0.25);
  transform: scale(1.08);
  box-shadow: var(--shadow-glow);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 50%; transform: translateX(-50%);
  width: 0; height: 3px;
  background: var(--gradient-1);
  transition: width 0.4s ease;
  border-radius: 3px;
}

.nav-link:hover::after,
.nav-link.active::after { width: 80%; }

.mobile-header-right {
  display: none;
  align-items: center;
  gap: 0.8rem;
}

.open-menu-text {
  color: var(--primary);
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
  white-space: nowrap;
}

.open-menu-text:hover {
  transform: scale(1.05);
  text-shadow: 0 0 8px rgba(255,107,0,0.6);
}

.burger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 0.5rem;
}

.burger span {
  width: 26px;
  height: 3px;
  background: var(--primary);
  transition: all 0.3s;
}

.burger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.burger.active span:nth-child(2) {
  opacity: 0;
}

.burger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -6px);
}

.mobile-menu {
  position: fixed;
  top: 0; right: -100%;
  width: 85%;
  max-width: 340px;
  height: 100%;
  background: var(--bg-card);
  backdrop-filter: blur(12px);
  padding: 7rem 1.8rem 2rem;
  transition: right 0.4s ease;
  z-index: 999;
  overflow-y: auto;
}

.mobile-menu.active {
  right: 0;
}

.mobile-menu .menu-categories {
  margin-top: 2rem;
  margin-bottom: 3rem;
}

.mobile-menu .contacts {
  margin-top: 3rem;
  font-size: 1.1rem;
  color: var(--text-secondary);
  line-height: 1.8;
  word-break: break-word;
}

.mobile-menu .contacts strong {
  color: var(--primary);
  display: block;
  margin-bottom: 0.6rem;
  font-size: 1.25rem;
}

.mobile-menu ul {
  list-style: none;
}

.mobile-menu a {
  display: block;
  color: var(--text-primary);
  font-size: 1.25rem;
  padding: 1.2rem 0;
  border-bottom: 1px solid var(--border);
  text-decoration: none;
}

.hero-section {
min-height: auto; 
height: auto;     
position: relative;
display: flex;
flex-direction: column; 
align-items: center;
padding: 260px 0 120px;
overflow: visible; 
}

.hero-background {
  position: absolute;
  inset: 0;
  z-index: -1;
}

.code-grid-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(var(--primary) 1px, transparent 1px),
    linear-gradient(90deg, var(--primary) 1px, transparent 1px);
  background-size: 60px 60px;
  opacity: 0.06;
  animation: gridMove 30s linear infinite;
}

@keyframes gridMove {
  to { transform: translate(60px, 60px); }
}

.hero-container {
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 4rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}

.hero-content h1 {
  font-size: 5rem;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  background: var(--gradient-1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-greeting {
  color: var(--primary);
  font-size: 1.4rem;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.greeting-cursor { animation: blink 1s infinite; }

@keyframes blink {
  0%, 50% { opacity: 1; }
  51%, 100% { opacity: 0; }
}

.hero-description {
  font-size: 1.4rem;
  color: var(--text-secondary);
  max-width: 700px;
  margin-bottom: 3rem;
}

.hero-buttons {
  display: flex;
  gap: 2rem;
}

.btn {
  padding: 0.9rem 2.2rem;
  border-radius: 12px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.35s ease;
  box-shadow: var(--shadow-sm);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.btn-primary {
  background: var(--gradient-1);
  color: white;
}

.btn-primary:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: var(--shadow-glow);
}

.btn-outline {
  border: 2px solid var(--primary);
  color: var(--primary);
  background: transparent;
}

.btn-outline:hover {
  background: var(--primary);
  color: white;
  transform: translateY(-3px) scale(1.05);
  box-shadow: var(--shadow-glow);
}

.hero-image-wrapper {
  position: relative;
}

.hero-image-container {
  position: relative;
  width: 520px;
  height: 520px;
  perspective: 1200px;
}

.profile-image-frame {
  width: 100%;
  height: 100%;
  border-radius: 24px;
  overflow: hidden;
  border: 3px solid rgba(255,107,0,0.4);
  box-shadow: 0 0 60px rgba(255,107,0,0.4);
  transform: rotateY(10deg) rotateX(5deg);
  transition: transform 0.8s;
}

.hero-image-wrapper:hover .profile-image-frame {
  transform: rotateY(0deg) rotateX(0deg) scale(1.05);
}

.floating-badge {
  position: absolute;
  background: rgba(17,24,39,0.6);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,107,0,0.3);
  border-radius: 16px;
  padding: 1.2rem 1.8rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  box-shadow: var(--shadow-glow);
  animation: floatBadge 5s ease-in-out infinite;
}

.badge-1 { top: 15%; right: -10%; animation-delay: 0s; }
.badge-2 { bottom: 25%; right: -15%; animation-delay: 1.5s; }
.badge-3 { top: 55%; left: -12%; animation-delay: 3s; }

@keyframes floatBadge {
  0%,100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-30px) rotate(3deg); }
}

.advantages-badges {
  display: none;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.small-badge {
  background: rgba(17,24,39,0.7);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,107,0,0.3);
  border-radius: 12px;
  padding: 0.8rem 1.4rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 0.95rem;
  color: var(--text-primary);
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
}

.small-badge:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-glow);
}

.small-badge i {
  font-size: 1.4rem;
  color: var(--accent);
}

@media (max-width: 1024px) {
  .hero-container { grid-template-columns: 1fr; text-align: center; padding: 0 2rem; }
  .hero-image-wrapper { order: -1; margin-bottom: 4rem; }
  .floating-badge { display: none; }
  .advantages-badges { display: grid; grid-template-columns: 1fr 1fr;}
  .header-contacts { display: none; }
  .nav-menu { display: none; }
  .mobile-header-right { display: flex; }
  .hero-section { padding-top: 160px; }
  .hero-content h1 { font-size: 3.5rem; }
  .hero-description { font-size: 1.2rem; }
  .hero-buttons { flex-direction: column; gap: 1.5rem; }
  .btn { width: 100%; padding: 1.2rem; font-size: 1.1rem; }
  .hero-image-container { width: 360px; height: 360px; margin-bottom: 3rem; }
}

@media (max-width: 768px) {
  .nav-container { padding: 0 1.2rem; }
  .brand-logo { font-size: 1.7rem; }
  .header-cta .btn { padding: 0.6rem 1.2rem; font-size: 0.85rem; }
  .hero-section { padding-top: 140px; }
}


@media (max-width: 1024px) {

html, body {
width: 100%;
max-width: 100%;
overflow-x: hidden;
}

* {
max-width: 100%;
box-sizing: border-box;
}


.nav-container {
padding: 0 1rem;
}

.brand-logo {
font-size: 1.25rem;
white-space: nowrap;
flex-shrink: 0;
}

.header-cta .btn {
padding: 0.45rem 0.9rem;
font-size: 0.75rem;
border-radius: 8px;
white-space: nowrap;
}

.hero-container {
display: grid;
grid-template-columns: 1fr;
grid-template-areas:
  "title"
  "image"
  "text"
  "buttons";
padding: 0 1rem;
gap: 0; 
}

.hero-content {
display: contents;
}

.hero-greeting {
grid-area: title;
font-size: 0.95rem;
margin-bottom: 0.35rem; 
justify-content: center;
text-align: center;
line-height: 1.2;
}

.hero-content h1 {
grid-area: title;
font-size: 2.05rem;
line-height: 1.15;
margin-bottom: 0.9rem; 
text-align: center;
word-break: break-word;
}


.hero-image-wrapper {
grid-area: image;
width: 100%;
margin-top: 0.4rem; 
overflow: hidden;
}

.hero-image-container {
width: 250px;
height: 250px;
margin: 0 auto 1.1rem; 
}

.profile-image-frame {
transform: none;
}

.floating-badge {
display: none !important;
}

.advantages-badges {
margin-top: 0.6rem;
margin-bottom: 0.8rem;
gap: 0.6rem;
}

.hero-description {
grid-area: text;
font-size: 1.1rem;
text-align: center;
margin-bottom: 1.1rem; 
}

.hero-buttons {
grid-area: buttons;
display: flex;
flex-direction: column;
gap: 0.9rem; 
margin-bottom: 0.5rem;
}

.hero-buttons .btn {
width: 100%;
font-size: 1.05rem;
padding: 1.05rem;
}
}
@media (max-width: 1024px) {
.hero-greeting {
display: none !important;
}
}
@media (max-width: 1024px) {

.mobile-header-right {
width: 100%;
justify-content: center;
}

}
@media (max-width: 768px) {
html, body {
height: auto !important;
overflow-y: auto !important;
-webkit-overflow-scrolling: touch; 
}

.hero-section {
padding: 120px 20px 60px;
}

.hero-section, .hero-background, .code-grid-bg {
overflow: visible !important;
position: relative !important;
}
}
@media (max-width: 768px) {
.advantages-badges {
display: flex;
flex-wrap: wrap;
justify-content: space-around; 
padding: 0 8px; 
gap: 8px;       
box-sizing: border-box;
}

.advantages-badges .small-badge {
flex: 1 1 calc(50% - 8px); 
min-width: 140px;           
text-align: center;
}
}


@media (max-width: 350px) {
  .nav-container {
flex-direction: column;

  }

  .hero-container {
    padding-top: 20px;
  }

  .section-header h2 {
    font-size: 2.1rem;
    margin-bottom: 1rem;
}



}

.multi-window-show{
  cursor: pointer;
}





.faq-section{
  padding:120px 0 100px;
  position:relative;
  overflow:hidden;
}

.faq-section .hero-background{
  position:absolute;
  inset:0;
  z-index:0;
}

.faq-section .code-grid-bg{
  position:absolute;
  inset:0;
  background-image:
    linear-gradient(var(--primary) 1px, transparent 1px),
    linear-gradient(90deg, var(--primary) 1px, transparent 1px);
  background-size:60px 60px;
  opacity:.06;
  animation:gridMove 30s linear infinite;
}

@keyframes gridMove{
  to{transform:translate(60px,60px);}
}

.faq-section .section-header{
  display:flex;
  align-items:center;
  margin-bottom:2rem;
}

.faq-section .section-header h2{
  font-family:var(--font-code);
  font-size:3.5rem;
  font-weight:800;
  background:var(--gradient-1);
  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
  margin:0;
  flex:0 0 50%;
  line-height:1.1;
}

.faq-section .gradient-line{
  height:6px;
  background:rgba(255,107,0,.15);
  border-radius:3px;
  position:relative;
  overflow:hidden;
  margin-left:20px;
  flex:1;
  box-shadow:0 0 20px rgba(255,107,0,.4);
}

.faq-section .fill-line{
  position:absolute;
  inset:0;
  width:0;
  background:var(--gradient-1);
  border-radius:3px;
  transition:width 1.8s ease-out;
  box-shadow:0 0 20px rgba(255,107,0,.4);
}

.faq-section.is-visible .fill-line{
  width:100%;
}

.faq-section .section-subtitle{
  font-size:1.35rem;
  color:var(--text-secondary);
  text-align:center;
  margin:1.5rem 0 4rem;
}

.faq-columns{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:2.5rem;
  max-width:1200px;
  margin:0 auto;
}

.accordion{
  display:flex;
  flex-direction:column;
  gap:1.2rem;
}

.accordion-item{
  background:rgba(17,24,39,0.6);
  backdrop-filter:blur(12px);
  border:1px solid rgba(255,107,0,.2);
  border-radius:16px;
  overflow:hidden;
  transition:all .3s ease;
}

.accordion-header{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:1.2rem 1.5rem;
  cursor:pointer;
  user-select:none;
  color:var(--text-primary);
  font-weight:600;
  font-size:1.05rem;
}

.accordion-header::after{
  content:'❯';
  font-size:1rem;
  transition:transform .3s ease;
  margin-left:1rem;
  color:var(--primary);
}

.accordion-item.active .accordion-header::after{
  transform:rotate(90deg);
}

.accordion-body{
  max-height:0;
  overflow:hidden;
  transition:max-height .35s ease;
  padding:0 1.5rem;
  color:var(--text-secondary);
  font-size:1rem;
  line-height:1.6;
}

.accordion-item.active .accordion-body{
  max-height:8em; 
  padding-bottom:1.2rem;
}

@media(max-width:1024px){
  .faq-section .section-header{
    flex-direction:column;
    align-items:flex-start;
    gap:1.5rem;
  }
  .faq-section .gradient-line{
    margin-left:0;
    width:100vw;
    margin-left:calc(-50vw + 50%);
    margin-right:calc(-50vw + 50%);
    height:4px;
  }
  .faq-columns{
    grid-template-columns:1fr;
    gap:2rem;
  }
}

@media(max-width:768px){
  .faq-section{
    padding:80px 0 60px;
  }
  .faq-section .section-header h2{
    font-size:2.8rem;
  }
}



