*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
  :root {
    --blue:    #2E9EE8;
    --blue-dk: #1A7FBF;
    --blue-lt: #E5F4FF;
    --orange:  #E8192C;
    --dark:    #0F172A;
    --gray:    #64748B;
    --light:   #F8FAFC;
    --white:   #FFFFFF;
    --border:  #E2E8F0;
    --radius:  12px;
  }
  body { font-family: 'Inter', sans-serif; color: var(--dark); background: var(--white); line-height: 1.6; }
  a { text-decoration: none; color: inherit; }

  /* TOPBAR */
  .topbar { background: var(--dark); color: #94A3B8; font-size: 13px; padding: 8px 0; }
  .topbar .inner { max-width: 1200px; margin: 0 auto; padding: 0 24px; display: flex; justify-content: space-between; align-items: center; }
  .topbar a { color: #94A3B8; transition: color .15s; }
  .topbar a:hover { color: #E5F4FF; }

  /* HEADER */
  header { background: var(--white); border-bottom: 1px solid var(--border); position: sticky; top: 0; z-index: 100; box-shadow: 0 2px 12px rgba(0,0,0,.06); }
  .header-inner { max-width: 1200px; margin: 0 auto; padding: 0 24px; display: flex; align-items: center; gap: 32px; height: 68px; }
  .logo { display: flex; flex-direction: column; align-items: center; gap: 3px; }
  .logo-icon { width: 40px; height: 40px; background: var(--blue); border-radius: 10px; display: flex; align-items: center; justify-content: center; }
  .logo-icon svg { width: 22px; height: 22px; fill: none; stroke: white; stroke-width: 2; }
  .logo-text { font-family: 'Montserrat', sans-serif; font-weight: 800; font-size: 20px; color: var(--dark); }
  .logo-text span { color: var(--blue); }
  nav { display: flex; gap: 2px; margin-left: auto; }
  nav a { padding: 8px 13px; border-radius: 8px; font-size: 14px; font-weight: 500; color: var(--gray); transition: all .15s; white-space: nowrap; }
  nav a:hover, nav a.active { background: var(--blue-lt); color: var(--blue); }
  .header-phone { font-weight: 700; font-size: 16px; white-space: nowrap; }
  .header-phone small { display: block; font-size: 11px; font-weight: 400; color: var(--gray); text-align: right; }
  .btn-connect { background: var(--orange); color: white; font-weight: 700; font-size: 14px; padding: 10px 20px; border-radius: 8px; border: none; cursor: pointer; transition: background .15s; white-space: nowrap; }
  .btn-connect:hover { background: #C0111F; }

  /* BURGER */
  .burger { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; padding: 6px; margin-left: auto; }
  .burger span { display: block; width: 24px; height: 2px; background: var(--dark); border-radius: 2px; transition: all .25s; }
  .burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .burger.open span:nth-child(2) { opacity: 0; }
  .burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .mobile-nav { display: none; flex-direction: column; background: white; border-top: 1px solid var(--border); }
  .mobile-nav.open { display: flex; }
  .mobile-nav a { padding: 14px 24px; font-size: 15px; font-weight: 500; border-bottom: 1px solid var(--border); color: var(--dark); }
  .mobile-nav a:hover { background: var(--blue-lt); color: var(--blue); }
  .mobile-nav .btn-mob { background: var(--orange); color: white; font-weight: 700; font-size: 15px; padding: 13px; margin: 14px 24px; border-radius: 10px; border: none; cursor: pointer; width: calc(100% - 48px); }

  /* SLIDER */
  .slider { position: relative; overflow: hidden; width: 100%; }
  .slider-track { display: flex; transition: transform .55s cubic-bezier(.4,0,.2,1); }
  .slide { min-width: 100%; position: relative; overflow: hidden; color: white; display: flex; align-items: center; min-height: 500px; padding: 80px 24px 100px; }
  .slide-1 { background: linear-gradient(rgba(10,30,70,.55), rgba(10,30,70,.65)), url("https://solnet.ru/wp-content/uploads/2026/06/slide1.jpg") center/cover no-repeat; }
  .slide-2 { background: linear-gradient(rgba(8,20,50,.6), rgba(8,20,50,.7)), url("https://solnet.ru/wp-content/uploads/2026/06/slide2.jpg") center/cover no-repeat; }
  .slide-3 { background: linear-gradient(rgba(5,15,40,.55), rgba(5,15,40,.65)), url("https://solnet.ru/wp-content/uploads/2026/06/slide3.jpg") center/cover no-repeat; }
  .slide::before { content: ''; position: absolute; inset: 0; pointer-events: none;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.025'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/svg%3E");
  }
  .slide-inner { max-width: 1200px; margin: 0 auto; width: 100%; position: relative; z-index: 1; }
  .slide-deco { position: absolute; right: 3%; bottom: -10px; font-family: 'Montserrat', sans-serif; font-size: 260px; font-weight: 900; line-height: 1; color: rgba(255,255,255,.05); pointer-events: none; user-select: none; z-index: 0; }
  .slide-badge { display: inline-block; background: rgba(255,255,255,.15); border: 1px solid rgba(255,255,255,.35); color: rgba(255,255,255,.95); font-size: 12px; font-weight: 700; padding: 4px 14px; border-radius: 20px; margin-bottom: 20px; text-transform: uppercase; letter-spacing: .8px; }
  .slide h2 { font-family: 'Montserrat', sans-serif; font-size: 52px; font-weight: 900; line-height: 1.05; margin-bottom: 18px; max-width: 640px; color: white; }
  .slide h2 em { font-style: normal; color: #BAE6FD; }
  .slide p { font-size: 17px; color: rgba(255,255,255,.85); margin-bottom: 36px; line-height: 1.65; max-width: 520px; }
  .slide-btns { display: flex; gap: 12px; flex-wrap: wrap; }
  .btn-primary { background: var(--orange); color: white; font-weight: 700; font-size: 16px; padding: 14px 28px; border-radius: 10px; border: none; cursor: pointer; transition: all .15s; }
  .btn-primary:hover { background: #C0111F; transform: translateY(-1px); box-shadow: 0 8px 24px rgba(232,25,44,.35); }
  .btn-outline { background: rgba(255,255,255,.12); color: white; font-weight: 600; font-size: 16px; padding: 14px 28px; border-radius: 10px; border: 1.5px solid rgba(255,255,255,.3); cursor: pointer; transition: all .15s; }
  .btn-outline:hover { background: rgba(255,255,255,.18); }
  .slider-arrow { position: absolute; top: 50%; transform: translateY(-50%); width: 46px; height: 46px; border-radius: 50%; background: rgba(255,255,255,.12); border: 1.5px solid rgba(255,255,255,.25); color: white; font-size: 18px; cursor: pointer; z-index: 10; display: flex; align-items: center; justify-content: center; transition: all .2s; }
  .slider-arrow:hover { background: rgba(255,255,255,.25); }
  .slider-arrow.prev { left: 20px; }
  .slider-arrow.next { right: 20px; }
  .slider-dots { position: absolute; bottom: 20px; left: 50%; transform: translateX(-50%); display: flex; gap: 8px; z-index: 10; }
  .dot { width: 8px; height: 8px; border-radius: 50%; background: rgba(255,255,255,.35); cursor: pointer; transition: all .3s; border: none; }
  .dot.active { background: white; width: 28px; border-radius: 4px; }
  .slider-progress { position: absolute; bottom: 0; left: 0; height: 3px; background: #E8192C; z-index: 10; animation: progbar 5s linear infinite; }
  @keyframes progbar { from { width: 0% } to { width: 100% } }

  /* STATS */
  .stats { background: #2E9EE8; padding: 26px 24px; }
  .stats-inner { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: repeat(4,1fr); gap: 16px; text-align: center; }
  .stat-num { font-family: 'Montserrat', sans-serif; font-size: 30px; font-weight: 900; color: white; }
  .stat-lbl { font-size: 13px; color: rgba(255,255,255,.8); margin-top: 2px; }

  /* SECTIONS */
  section { padding: 72px 24px; }
  .section-inner { max-width: 1200px; margin: 0 auto; }
  .section-eyebrow { font-size: 12px; font-weight: 700; color: var(--blue); text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 10px; }
  .section-title { font-family: 'Montserrat', sans-serif; font-size: 36px; font-weight: 800; color: var(--dark); margin-bottom: 12px; line-height: 1.15; }
  .section-sub { font-size: 16px; color: var(--gray); max-width: 560px; margin-bottom: 48px; }

  /* TARIFFS */
  .tariffs { background: var(--light); }
  .tariff-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
  .tariff-card { background: white; border-radius: 16px; padding: 32px; border: 2px solid var(--border); transition: all .2s; position: relative; overflow: hidden; }
  .tariff-card:hover { border-color: var(--blue); box-shadow: 0 12px 40px rgba(46,158,232,.15); transform: translateY(-3px); }
  .tariff-card.popular { border-color: var(--blue); box-shadow: 0 8px 32px rgba(46,158,232,.18); }
  .popular-badge { position: absolute; top: 0; right: 0; background: var(--blue); color: white; font-size: 11px; font-weight: 700; padding: 6px 14px; border-radius: 0 14px 0 10px; }
  .tariff-name { font-weight: 700; font-size: 13px; color: var(--gray); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 14px; }
  .tariff-speed { font-family: 'Montserrat', sans-serif; font-size: 54px; font-weight: 900; color: var(--dark); line-height: 1; }
  .tariff-speed-unit { font-size: 16px; color: var(--gray); font-weight: 400; }
  .tariff-divider { border: none; border-top: 1px solid var(--border); margin: 20px 0; }
  .tariff-price { font-family: 'Montserrat', sans-serif; font-size: 38px; font-weight: 900; color: var(--blue); }
  .tariff-price span { font-size: 16px; font-weight: 400; color: var(--gray); }
  .tariff-promo { font-size: 13px; color: #16A34A; font-weight: 600; margin: 8px 0 20px; }
  .tariff-features { list-style: none; display: flex; flex-direction: column; gap: 8px; margin-bottom: 24px; }
  .tariff-features li { font-size: 14px; color: var(--gray); display: flex; gap: 8px; }
  .tariff-features li::before { content: '✓'; color: var(--blue); font-weight: 700; flex-shrink: 0; }
  .btn-tariff { width: 100%; padding: 13px; border-radius: 10px; font-weight: 700; font-size: 15px; cursor: pointer; border: 2px solid var(--blue); background: var(--blue-lt); color: var(--blue); transition: all .15s; }
  .tariff-card.popular .btn-tariff { background: var(--blue); color: white; }
  .btn-tariff:hover { background: var(--blue); color: white; }

  /* TV */
  .tv-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 20px; }
  .tv-card { background: white; border: 2px solid var(--border); border-radius: 16px; padding: 32px; display: flex; justify-content: space-between; align-items: center; transition: all .2s; }
  .tv-card:hover { border-color: var(--blue); box-shadow: 0 8px 24px rgba(46,158,232,.12); }
  .tv-name { font-family: 'Montserrat', sans-serif; font-size: 24px; font-weight: 800; margin-bottom: 6px; color: var(--dark); }
  .tv-ch { font-size: 14px; color: var(--gray); }
  .tv-ch strong { font-family: 'Montserrat', sans-serif; font-size: 28px; font-weight: 900; color: var(--dark); }
  .tv-price { font-family: 'Montserrat', sans-serif; font-size: 34px; font-weight: 900; color: var(--blue); text-align: right; }
  .tv-price span { font-size: 14px; color: var(--gray); font-weight: 400; }

  /* WHY */
  .why { background: var(--dark); }
  .why .section-eyebrow { color: #BAE6FD; }
  .why .section-title { color: white; }
  .why .section-sub { color: #94A3B8; }
  .features-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; }
  .feature-card { background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.08); border-radius: var(--radius); padding: 28px 22px; transition: all .2s; }
  .feature-card:hover { background: rgba(46,158,232,.15); border-color: rgba(46,158,232,.3); transform: translateY(-2px); }
  .feature-icon { width: 48px; height: 48px; background: rgba(46,158,232,.3); border-radius: 12px; display: flex; align-items: center; justify-content: center; margin-bottom: 16px; font-size: 22px; }
  .feature-title { font-weight: 700; font-size: 15px; color: white; margin-bottom: 8px; }
  .feature-desc { font-size: 13px; color: #94A3B8; line-height: 1.55; }

  /* CONNECT */
  .connect { background: linear-gradient(135deg, var(--blue-lt) 0%, var(--light) 100%); }
  .connect-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; max-width: 1200px; margin: 0 auto; }
  .connect-info h2 { font-family: 'Montserrat', sans-serif; font-size: 36px; font-weight: 800; margin-bottom: 14px; color: var(--dark); }
  .connect-info p { font-size: 16px; color: var(--gray); margin-bottom: 28px; }
  .contacts-list { display: flex; flex-direction: column; gap: 14px; }
  .contact-row { display: flex; align-items: center; gap: 14px; }
  .contact-ico { width: 44px; height: 44px; background: white; border: 1px solid var(--border); border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 20px; flex-shrink: 0; }
  .contact-lbl { font-size: 12px; color: var(--gray); }
  .contact-val { font-weight: 700; font-size: 15px; color: var(--dark); }
  .connect-form { background: white; border-radius: 20px; padding: 40px; box-shadow: 0 8px 40px rgba(0,0,0,.07); }
  .connect-form h3 { font-family: 'Montserrat', sans-serif; font-size: 22px; font-weight: 800; margin-bottom: 24px; color: var(--dark); }
  .form-group { margin-bottom: 16px; }
  .form-group label { display: block; font-size: 13px; font-weight: 600; color: var(--gray); margin-bottom: 6px; }
  .form-group input, .form-group select { width: 100%; padding: 12px 14px; border: 2px solid var(--border); border-radius: 10px; font-size: 15px; font-family: 'Inter',sans-serif; outline: none; transition: border-color .15s; background: white; color: var(--dark); }
  .form-group input:focus, .form-group select:focus { border-color: var(--blue); }
  .btn-submit { width: 100%; padding: 14px; background: var(--orange); color: white; font-weight: 700; font-size: 16px; border: none; border-radius: 10px; cursor: pointer; transition: all .15s; margin-top: 8px; }
  .btn-submit:hover { background: #C0111F; transform: translateY(-1px); box-shadow: 0 6px 20px rgba(232,25,44,.25); }
  .form-note { font-size: 12px; color: var(--gray); text-align: center; margin-top: 12px; }

  /* FOOTER */
  footer { background: var(--dark); color: #94A3B8; padding: 56px 24px 28px; }
  .footer-inner { max-width: 1200px; margin: 0 auto; }
  .footer-top { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 40px; }
  .footer-brand { font-family: 'Montserrat', sans-serif; font-weight: 800; font-size: 22px; color: white; margin-bottom: 12px; }
  .footer-desc { font-size: 14px; line-height: 1.6; margin-bottom: 18px; }
  .footer-phone { font-size: 20px; font-weight: 700; color: white; }
  .footer-phone small { display: block; font-size: 12px; font-weight: 400; color: #6B7280; margin-top: 2px; }
  .footer-col h4 { font-size: 12px; font-weight: 700; color: white; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 16px; }
  .footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
  .footer-col ul a { font-size: 14px; color: #94A3B8; transition: color .15s; }
  .footer-col ul a:hover { color: white; }
  .footer-bottom { border-top: 1px solid rgba(255,255,255,.07); padding-top: 22px; display: flex; justify-content: space-between; font-size: 13px; flex-wrap: wrap; gap: 8px; }
  .footer-bottom a { color: #6B7280; }
  .footer-bottom a:hover { color: white; }

  /* RESPONSIVE */
  @media (max-width: 1024px) { .features-grid { grid-template-columns: repeat(2,1fr); } }
  @media (max-width: 900px) {
    nav { display: none; } .header-phone { display: none; } .btn-connect { display: none; }
    .burger { display: flex; }
    .slide h2 { font-size: 34px; } .slide-deco { font-size: 160px; }
    .tariff-grid { grid-template-columns: 1fr; }
    .tv-grid { grid-template-columns: 1fr; }
    .stats-inner { grid-template-columns: repeat(2,1fr); }
    .connect-wrap { grid-template-columns: 1fr; gap: 40px; }
    .footer-top { grid-template-columns: 1fr 1fr; }
  }
  @media (max-width: 600px) {
    .slide { min-height: 380px; padding: 56px 20px 80px; }
    .slide h2 { font-size: 26px; } .slide-deco { display: none; }
    .features-grid { grid-template-columns: 1fr; }
    .footer-top { grid-template-columns: 1fr; }
    .slider-arrow { display: none; }
    section { padding: 48px 20px; }
  }