
    * { box-sizing: border-box; margin: 0; padding: 0; }
    body {
      font-family: 'Inter', sans-serif;
      background: #0b0e13;
      color: #fff;
      overflow-x: hidden;
    }

    .hero {
      min-height: 80vh;
      background: 
          radial-gradient(circle at top, rgba(27, 42, 78, 0.4), rgba(7, 9, 13, 0.9) 70%),
          url('1212.webp') center/cover no-repeat;
      position: relative;
      display: flex;
      align-items: center;
      padding: 80px 40px;
    }
    .hero::after {
      content: '';
      position: absolute;
      inset: 0;
      background: rgba(0,0,0,0.6);
    }
    .hero-content {
      position: relative;
      max-width: 900px;
      z-index: 2;
      margin: 0 auto;
    }
    .hero h1 {
      font-size: clamp(2.5rem, 6vw, 4.5rem);
      font-weight: 800;
      line-height: 1.05;
    }
    .hero h1 span { color: #ffb703; }
    .hero p {
      margin-top: 24px;
      font-size: 1.25rem;
      opacity: .9;
    }
    .hero-actions {
      margin-top: 40px;
      display: flex;
      gap: 20px;
      flex-wrap: wrap;
    }
    .btn {
      padding: 18px 32px;
      font-weight: 700;
      border-radius: 10px;
      text-decoration: none;
      cursor: pointer;
      transition: .25s ease;
      border: none;
    }
    .btn-primary {
      background: #ffb703;
      color: #000;
      box-shadow: 0 0 0 rgba(255,183,3,0.6);
      animation: pulse 2s infinite;
    }
    .btn-primary:hover { transform: translateY(-2px) scale(1.03); }
    .btn-outline {
      background: transparent;
      color: #fff;
      border: 2px solid rgba(255,255,255,0.3);
    }

    @keyframes pulse {
      0% { box-shadow: 0 0 0 0 rgba(255,183,3,.6); }
      70% { box-shadow: 0 0 0 20px rgba(255,183,3,0); }
      100% { box-shadow: 0 0 0 0 rgba(255,183,3,0); }
    }

    .services {
      padding: 120px 40px;
      background: linear-gradient(180deg, #07090d, #0b0e13);
    }
    .services h2 {
      font-size: 3rem;
      text-align: center;
      margin-bottom: 80px;
    }
    .grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px,1fr));
      gap: 40px;
      max-width: 1200px;
      margin: 0 auto;
    }
    .card {
      background: linear-gradient(180deg, #151a24, #0e121a);
      border-radius: 20px;
      padding: 40px;
      position: relative;
      overflow: hidden;
      transition: .4s ease;
    }
    .card::before {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(120deg, transparent, rgba(255,183,3,.15), transparent);
      opacity: 0;
      transition: .4s;
    }
    .card:hover::before { opacity: 1; }
    .card:hover { transform: translateY(-12px) scale(1.02); }
    .card h3 {
      font-size: 1.6rem;
      margin-bottom: 16px;
      color: #ffb703;
    }
    .card p { opacity: .85; line-height: 1.6; }

    .cta {
      padding: 120px 40px;
      text-align: center;
      background: radial-gradient(circle, #1b2a4e, #07090d 70%);
    }
    .cta h2 { font-size: 3rem; margin-bottom: 20px; }
    .cta p { opacity: .85; margin-bottom: 40px; }

    .seo-content {
      max-width: 1000px;
      margin: 0 auto;
      padding: 80px 40px;
      background: #0b0e13;
    }
    .seo-content h2 {
      font-size: 2.5rem;
      margin-bottom: 40px;
      color: #ffb703;
    }
    .seo-article {
      margin-bottom: 50px;
      background: rgba(255,255,255,0.03);
      padding: 30px;
      border-radius: 15px;
    }
    .seo-article h3 {
      font-size: 1.5rem;
      margin-bottom: 15px;
    }
    .seo-article p {
      line-height: 1.7;
      opacity: 0.9;
    }

    .breadcrumbs {
      padding: 20px 40px;
      background: rgba(255,255,255,0.03);
      font-size: 0.9rem;
    }
    .breadcrumbs a {
      color: #ffb703;
      text-decoration: none;
    }

    .gallery {
      padding: 80px 40px;
      background: linear-gradient(180deg, #0b0e13, #07090d);
    }

    .gallery h2 {
      text-align: center;
      font-size: 3rem;
      margin-bottom: 20px;
    }

    .gallery p {
      text-align: center;
      opacity: .8;
      margin-bottom: 60px;
    }

    .gallery-grid {
      max-width: 1200px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
      gap: 30px;
    }

    .gallery-item {
      position: relative;
      overflow: hidden;
      border-radius: 20px;
      aspect-ratio: 4 / 3;
      cursor: pointer;
    }

    .gallery-item img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform .6s ease;
    }

    .gallery-item::after {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(
        to top,
        rgba(0,0,0,.7),
        rgba(0,0,0,.2),
        rgba(0,0,0,0)
      );
      opacity: 0;
      transition: .4s ease;
    }

    .gallery-item span {
      position: absolute;
      left: 20px;
      bottom: 20px;
      font-weight: 700;
      color: #ffb703;
      opacity: 0;
      transform: translateY(10px);
      transition: .4s ease;
    }

    .gallery-item:hover img {
      transform: scale(1.08);
    }

    .gallery-item:hover::after,
    .gallery-item:hover span {
      opacity: 1;
      transform: translateY(0);
    }

    .slider-overlay {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0, 0, 0, 0.95);
      z-index: 10000;
      backdrop-filter: blur(8px);
      display: none;
    }

    .slider-overlay.active {
      display: flex;
      justify-content: center;
      align-items: center;
      animation: fadeIn 0.3s ease;
    }

    @keyframes fadeIn {
      from {
        opacity: 0;
      }
      to {
        opacity: 1;
      }
    }

    .slider-container {
      position: relative;
      width: 100vw;
      height: 100vh;
      display: flex;
      justify-content: center;
      align-items: center;
    }

    .slider-image {
      width: 100%;
      height: 100%;
      object-fit: cover;
      border-radius: 8px;
      box-shadow: 0 0 30px rgba(255,183,3,0.2);
    }

    .slider-close {
      position: absolute;
      top: 30px;
      right: 30px;
      background: rgba(255,183,3,0.2);
      border: 2px solid #ffb703;
      color: #ffb703;
      width: 40px;
      height: 40px;
      border-radius: 50%;
      font-size: 25px;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      transition: 0.3s;
      z-index: 10001;
    }

    .slider-close:hover {
      background: #ffb703;
      color: #000;
      transform: scale(1.1);
    }

    .slider-nav {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      background: rgba(255,183,3,0.2);
      border: 2px solid #ffb703;
      color: #ffb703;
      width: 60px;
      height: 60px;
      border-radius: 50%;
      font-size: 35px;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      transition: 0.3s;
      z-index: 10001;
    }

    .slider-nav:hover {
      background: #ffb703;
      color: #000;
    }

    .slider-prev {
      left: 20px;
    }

    .slider-next {
      right: 20px;
    }

    .slider-counter {
      position: absolute;
      bottom: 30px;
      left: 50%;
      transform: translateX(-50%);
      background: rgba(0,0,0,0.7);
      padding: 10px 20px;
      border-radius: 50px;
      border: 1px solid #ffb703;
      color: #ffb703;
      font-weight: bold;
      font-size: 1.1rem;
    }

    @media (max-width: 768px) {
      .slider-nav {
        width: 45px;
        height: 45px;
        font-size: 25px;
      }
      .slider-prev { left: 10px; }
      .slider-next { right: 10px; }
      .slider-close {
        top: 15px;
        right: 15px;
        width: 40px;
        height: 40px;
        font-size: 24px;
      }
    }

    .float-call {
      position: fixed;
      right: 24px;
      bottom: 24px;
      background: #ffb703;
      color: #000;
      font-weight: 800;
      padding: 18px 26px;
      border-radius: 999px;
      z-index: 999;
      box-shadow: 0 20px 40px rgba(0,0,0,.4);
      animation: pulse 2s infinite;
      text-decoration: none;
    }

    footer {
      padding: 60px 40px;
      text-align: center;
      background: #07090d;
      border-top: 1px solid rgba(255,183,3,0.1);
    }
    .footer-contacts {
      margin-top: 20px;
      font-size: 1.1rem;
    }

    @media(max-width:600px){
      .cta h2 { font-size: 2rem; }
      .services h2 { font-size: 2rem; }
      .seo-content h2 { font-size: 2rem; }
      .hero { padding: 60px 20px; }
      .services, .cta, .seo-content { padding: 80px 20px; }
      .breadcrumbs { padding: 15px 20px; }
    }