* {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      text-decoration: none;
      scroll-behavior: smooth;
    }
    @font-face {
    font-family: 'Inter';
    src: url('fonts/Technic.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
    }
    @font-face {
    font-family: 'Text';
    src: url('fonts/C-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
    }

    body {
      font-family: 'Text', sans-serif;
      color: #1f2937;
      line-height: 1.5;
      background-color: #ffffff;
    }

    .container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 20px;
    }

    /* Типографика */
    h1, h2, h3 {
      font-family: 'Inter';
      font-weight: 400;
      line-height: 1.2;
    }

    h1 {
      font-size: 3rem;
      margin-bottom: 1rem;
      font-family: 'Inter';
    }

    h2 {
      font-size: 2.25rem;
      margin-bottom: 2rem;
      text-align: center;
    }

    .section {
      padding: 80px 0;
    }

    .section-bg {
      background-color: #f9fafb;
    }

    /* Кнопки */
    .btn {
      display: inline-block;
      padding: 10px 30px;
      border-radius: 40px;
      font-weight: 500;
      text-decoration: none;
      transition: all 0.2s ease;
      font-size: 1.2rem;
      border: none;
      cursor: pointer;
    }

    .btn-primary {
      background-color: #feb713;
      color: white;
      /* box-shadow: 0 10px 20px rgba(249, 115, 22, 0.2); */
    }

    .btn-primary:hover {
      background-color: #00a651;
      /* transform: translateY(-2px); */
      /* box-shadow: 0 15px 25px rgba(249, 115, 22, 0.3); */
    }
    .btn-primary-invert {
      background-color: #00a651 ;
      color: white;
      /* box-shadow: 0 10px 20px rgba(249, 115, 22, 0.2); */
    }

    .btn-primary-invert:hover {
      background-color: #feb713;
      /* transform: translateY(-2px); */
      /* box-shadow: 0 15px 25px rgba(249, 115, 22, 0.3); */
    }

    .btn-outline {
      background-color: transparent;
      border: 2px solid white;
      color: white;
    }

    .btn-outline:hover {
      background-color: white;
      color: #1f2937;
    }

    /* Шапка */
    .header {
      position: sticky;
      top: 0;
      background-color: rgba(255, 255, 255, 1);
      backdrop-filter: blur(5px);
      box-shadow: 0 2px 10px rgba(0,0,0,0.05);
      z-index: 100;
      padding: 16px 0;
    }

    .header .container {
      display: flex;
      align-items: center;
      justify-content: space-between;
    }

    .logo {
      font-size: 1.8rem;
      font-weight: 700;
      color: #feb713;
    }

    .logo span {
      color: #1f2937;
    }

    .nav-links {
      display: flex;
      gap: 32px;
    }

    .nav-links a {
      text-decoration: none;
      color: #1f2937;
      font-weight: 700;
    }

    .nav-links a:hover {
      color: #00a651;
    }

    .header .btn {
      padding: 10px 24px;
    }

    /* Герой (Hero) */
    .hero {
      background: linear-gradient(135deg, #525254, #48484a);
      color: white;
      padding: 60px 0;
    }

    .hero .container {
      display: flex;
      align-items: center;
      gap: 40px;
    }

    .hero-content {
      flex: 1;
    }

    .hero-content p {
      font-size: 1.25rem;
      margin: 24px 0 32px;
      opacity: 0.9;
    }

    .hero-image {
      flex: 1;
      text-align: center;
    }

    .hero-image video {
      max-width: 100%;
      border-radius: 20px;
      box-shadow: 0 20px 40px rgba(0,0,0,0.3);
      overflow: hidden;
    }

    /* преимущества / особенности */
    .features-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 30px;
      margin-top: 20px;
    }

    .feature-card {
      background: white;
      padding: 30px 20px;
      border-radius: 20px;
      text-align: center;
      box-shadow: 0 10px 25px rgba(0,0,0,0.03);
      transition: transform 0.2s;
      border: 1px solid #f0f0f0;
    }

    .feature-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 20px 30px rgba(0,0,0,0.05);
    }

    .feature-card svg {
      font-size: 3rem;
      color: #feb713;
      margin-bottom: 20px;
    }

    .feature-card h3 {
      font-size: 1.25rem;
      margin-bottom: 10px;
    }

    .feature-card p {
      color: #6b7280;
    }

    /* Услуги (тарифы/прайс) */
    .services-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
      gap: 10px;
    }

    .service-item {
      background: white;
      border-radius: 24px;
      padding: 32px 24px;
      box-shadow: 0 10px 30px rgba(0,0,0,0.03);
      border: 1px solid #f3f4f6;
      transition: all 0.2s;
      display: flex;
      flex-direction: column;
    }

    .service-item:hover {
      border-color: #00a651;
      box-shadow: 0 20px 30px rgba(249, 115, 22, 0.05);
    }

    .service-icon {
      font-size: 2.5rem;
      color: #feb713;
      margin-bottom: 20px;
    }

    .service-item h3 {
      font-size: 1.5rem;
      margin-bottom: 10px;
    }

    .service-desc {
      color: #6b7280;
      margin: 15px 0;
      flex-grow: 1;
    }

    .service-price {
      font-size: 1.8rem;
      font-weight: 700;
      color: #1f2937;
      margin: 20px 0 15px;
    }

    .service-price small {
      font-size: 1rem;
      font-weight: 400;
      color: #9ca3af;
    }

    .service-btn {
      background: #f3f4f6;
      color: #1f2937;
      text-align: center;
      padding: 12px;
      border-radius: 40px;
      text-decoration: none;
      font-weight: 600;
      transition: background 0.2s;
    }

    .service-btn:hover {
      background: #00a651;
      color: white;
    }
    
    .service-btn-invert {
    background: #f3f4f6;
      color: #1f2937;
      text-align: center;
      padding: 12px;
      border-radius: 40px;
      text-decoration: none;
      font-weight: 600;
      transition: background 0.2s;
    }

    .service-btn-invert:hover {
        background:  #feb713;
        color: white;
    }

    /* О нас / преимущества */
    .about-grid {
      display: flex;
      gap: 50px;
      align-items: center;
    }

    .about-content {
      flex: 1;
    }

    .about-content h2 {
      text-align: left;
      margin-bottom: 1rem;
    }

    .about-content p {
      margin-bottom: 20px;
      color: #4b5563;
    }

    .about-stats {
      display: flex;
      gap: 30px;
      margin-top: 30px;
    }

    .stat {
      text-align: center;
    }

    .stat-number {
      font-size: 2rem;
      font-weight: 700;
      color: #feb713;
    }

    .about-image {
      flex: 1;
      border-radius: 20px;
      overflow: hidden;
      box-shadow: 0 20px 30px rgba(0,0,0,0.1);
    }

    .about-image img {
      width: 100%;
      height: auto;
      display: block;
    }

    /* Форма записи / CTA */
    .cta-section {
      background: linear-gradient(135deg, #feb713, #fbbf24);
      color: white;
    }
    .cta-section-invert {
      background: linear-gradient(135deg, #008f42, #00a651);
      color: white;
    }

    .cta-grid {
      display: flex;
      gap: 40px;
      align-items: center;
    }

    .cta-text {
      flex: 1;
    }

    .cta-text h2 {
      text-align: left;
      margin-bottom: 1rem;
      color: white;
    }

    .cta-text p {
      font-size: 1.2rem;
      opacity: 0.95;
    }

    .cta-form {
      flex: 1;
      background: rgba(255,255,255,0.15);
      backdrop-filter: blur(8px);
      padding: 36px 32px;
      border-radius: 30px;
      box-shadow: 0 20px 30px rgba(0,0,0,0.1);
    }

    .form-group {
      margin-bottom: 20px;
    }

    .form-group input {
      width: 100%;
      padding: 16px 20px;
      border: none;
      border-radius: 50px;
      font-size: 1rem;
      outline: none;
    }

    .form-group input:focus {
      box-shadow: 0 0 0 3px rgba(255,255,255,0.5);
    }

    .cta-form .btn {
      width: 100%;
      background: #48484a;
      color: white;
      box-shadow: none;
    }

    .cta-form .btn:hover {
      background: #111827;
    }

    /* Контакты */
    .contact-grid {
        display: grid;
        grid-template-columns: 1fr 1fr 1fr;
        gap: 10px;
    }

    .contact-info {
      display: flex;
      flex-direction: column;
      gap: 25px;
    }

    .contact-item {
      display: flex;
      align-items: center;
      gap: 15px;
      color: #1f2937;
    }
    .contact-item a{      
      color: #1f2937;
    }

    .contact-item i {
      width: 50px;
      height: 50px;
      background: #feb713;
      color: white;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.2rem;
    }

    .contact-item p {
      font-size: 1.1rem;
    }

    .map {
      height: 450px;
      border-radius: 20px;
      overflow: hidden;
      box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    }

    .map iframe {
      width: 100%;
      height: 100%;
      border: 0;
    }

    /* Футер */
    .footer {
      background: #48484a;
      color: #d1d5db;
      padding: 30px 0;
      text-align: center;
    }

    .footer p {
      margin: 5px 0;
    }

    /* Responsive */
    @media (max-width: 1024px) {
      h1 { font-size: 2.5rem; }
      h2 { font-size: 1.8rem; }

      .header .container {
        
        justify-content: center;
        gap: 10px;
      }
      .header .btn {
        display: none;
      }
      .logo img{
        height: 30px;
      }
      .nav-links {
        order: 3;
        width: 100%;
        justify-content: center;
        gap: 15px;
        
      }
      .hero .container {
        flex-direction: column;
        text-align: center;
      }
      .about-grid {
        flex-direction: column;
      }
      .cta-grid {
        flex-direction: column;
      }
      .contact-grid {
        grid-template-columns: 1fr;
      }
      .about-stats {
        justify-content: center;
      }
    }