    :root {
      --dark: #293031;          /* сохранён: графит */
      --light: #fefeff;         /* сохранён: фоновый */
      --primary: #1e63f2;       /* насыщенный синий для CTA и ссылок */
      --primary-hover: #184dc1; /* hover-состояние */
      --accent: #6fb0ff;        /* акцент — холодный, но не кричащий */
      --accent-hover: #5396e6;  /* hover для кнопок */
      --bg-soft: #f3f5f7;       /* для карточек и блоков */
    }


    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      font-family: "San Francisco Pro Display", sans-serif;
      background: var(--light);
      color: var(--dark);
      line-height: 1.6;
    }

    nav {
      background: var(--bg-soft);
      color: var(--dark);
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 20px 40px;
      position: sticky;
      top: 0;
      z-index: 1000;
      box-shadow: 0 2px 4px rgba(0,0,0,0.05);
	  flex-wrap: wrap;
    }
	
	.logo-wrapper {
      display: flex;
      align-items: center;
      text-decoration: none;
      color: var(--dark);
      font-weight: bold;
      font-size: 1.2rem;
      gap: 10px;
    }
	
	.logo-img {
      width: 32px;
      height: 32px;
    }

    nav .logo {
      font-weight: bold;
      font-size: 1.2rem;
    }
	
	.logo-text {
      font-size: 1.2rem;
    }

    nav ul {
      list-style: none;
      display: flex;
      gap: 15px;
	  margin-left: 20px;
    }
	
	.nav-btn {
      margin-left: auto;
    }

    nav ul li a {
      color: var(--dark);
      text-decoration: none;
      font-weight: 600;
	  font-size: 1.15rem;
    }

    header {
      background: var(--light);
      color: var(--dark);
      padding: 180px 20px;
      text-align: center;
    }

    header h1 {
      font-size: 3rem;
      margin-bottom: 40px;
    }

    header p {
      font-size: 1.75rem;
      max-width: 900px;
      margin: 0 auto 40px;
	  color: var(--dark);
      margin-bottom: 80px;
    }
	
	header .btn {
      font-size: 1.3rem;
	  padding: 20px 30px;
      border-radius: 20px; /* более "весомый" внешний вид */
	}

    .btn {
      background: var(--primary);
      color: var(--light);
      padding: 12px 24px;
      border: none;
      border-radius: 14px;
      text-decoration: none;
      font-weight: 600;
      transition: background 0.3s ease;
    }

    .btn:hover {
      background: var(--primary-hover);
    }

    section {
      padding: 60px 20px;
      max-width: 1200px;
      margin: 0 auto;
    }

    section h2 {
      font-size: 2rem;
      margin-bottom: 40px;
      text-align: center;
    }

    section h3 {
      /*margin-bottom: 20px;
      text-align: left;*/
      font-size: 1.4rem;
    }
	
	section.offer,
    section.cta {
      max-width: none;
    }
	
	.section-cta {
      text-align: center;
      margin: 40px 0;
    }
	
	.mobile-only {
      display: none;
    }
	
	.offer-grid,
    .cta .cta-grid {
      max-width: 1100px;
      margin: 0 auto;
      padding: 60px 20px;
    }

    .offer {
      color: var(--dark);
      text-align: left;
    }
	
	.offer, .cta {
      background: var(--bg-soft);
    }
	
    .offer-text {
      text-align: left;
    }
	
	.offer-text .offer-icon {
      display: inline-block;
      margin-top: 3px; /* выравнивание по вертикали */
	  width: 24px;
	  height: 24px;
    }
	
	.offer-text p {
      margin-top: 20px;
	  display: flex;
	  align-items: flex-start;
	  gap: 15px;
	  font-size: 1.25rem;
	}

    .offer-img {
    }

	.offer-img img {
      width: 100%;
      height: 450px;
      display: block;
    }

    .offer-grid {
      display: grid;
	  grid-template-columns: 1.1fr 0.9fr;
	  align-items: center;
      padding: 0 40px;
	  border-radius: 8px;
    }
			
    .fade-in-up {
      opacity: 0;
      transform: translateY(40px);
      transition: all 0.6s ease-out;
    }

    .fade-in-up.revealed {
      opacity: 1;
      transform: translateY(0);
    }
	
	.offer-img.fade-in-up {
      transition-delay: 0s;
    }

    .offer-text.fade-in-up {
      transition-delay: 0.2s;
    }

	.offer .card:hover {
      transform: none;
      box-shadow: none;
    }
	
	.steps {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 10px;
	}
	
	.card {
      background: var(--bg-soft);
      padding: 30px;
      border-radius: 8px;
      opacity: 0;
      transform: translateY(40px);
      transition: all 0.6s ease-out;
    }
	
	.card p {
      display: flex;
      align-items: flex-start;
      gap: 10px;
	  margin-top: 20px;
    }

    .card p .icon {
      display: inline-block; /* или просто block, если нужно точное выравнивание */
      margin-bottom: 0;
      margin-top: 8px; /* выравнивание по baseline */
      font-size: 20px;
      color: var(--primary);
    }
	
	.card .icon {
      font-size: 30px;
      margin-bottom: 10px;
      color: var(--primary);
      display: block;
    }

    .card.revealed {
      opacity: 1;
      transform: translateY(0);
    }
	
	.card:hover {
      transform: translateY(-5px);
      box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    }

    .faq-item summary {
      cursor: pointer;
      font-weight: 600;
    }
	
	.faq .faq-card {
      margin-bottom: 10px;
	  padding: 15px 30px;
    }
	
	/* FAQ open animation */
    .faq-card details {
      overflow: hidden;
      transition: max-height 0.4s ease;
      border-radius: 8px;
    }

    .faq-card summary {
      list-style: none;         /* Убирает маркер у большинства браузеров */
	  -webkit-appearance: none; /* Safari / iOS */
	  appearance: none;         /* Остальные браузеры */
      cursor: pointer;
	  display: flex;
      position: relative;
	  justify-content: space-between;
      align-items: center;
    }

    .faq-card summary::-webkit-details-marker {
      display: none; /* Chrome/Safari */
    }
	
	.faq-card summary::marker {
      display: none; /* Firefox */
    }
	
	.faq-card summary span {
      flex-grow: 1;
    }

    .faq-card summary::after {
      content: '▼';
	  font-size: 0.9rem;
      margin-left: 10px;
      transition: transform 0.3s ease;
    }

    .faq-card details[open] summary::after {
      transform: rotate(180deg);
    }

    .faq-card p {
      padding-top: 10px;
    }

    .cta {
      color: var(--light);
      text-align: left;
      padding: 0;
      border-radius: 8px;
    }
	
	.cta-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      align-items: center;
      gap: 40px;
      margin: 0 60px;
    }

    .cta-text h2 {
      text-align: left;
      margin-bottom: 20px;
      color: var(--primary);
    }

    .cta-text p {
      text-align: left;
      margin-bottom: 20px; 
      font-size: 1.05rem;
	  color: var(--dark);
    }
	
	.cta .icon {
      font-size: 1.1rem;	  
      margin-right: 10px;
      color: var(--primary);
	}

    footer {
      background: var(--dark);
      color: var(--light);
      text-align: center;
      padding: 40px 20px;
      font-size: 0.9rem;
    }
	
	footer a {
      color: var(--light);
      text-decoration: none;
      display: block;
    }
	
	.footer-links {
      display: flex;
      justify-content: center;
	  align-items: center;
      gap: 10px;
      flex-wrap: wrap;
	  margin-bottom: 20px;
    }

	.footer-links-top {
      display: flex;
      justify-content: center;
	  align-items: center;
      gap: 10px;
      flex-wrap: wrap;
	  margin-bottom: 10px;
    }

    .footer-links a {
      display: inline;
      margin: 0;
    }

    .footer-links a:hover {
      color: var(--primary-hover);
      text-decoration: underline;
    }

    .footer-links-top a:hover {
      color: var(--primary);
      text-decoration: underline;
    }
	
	.footer-links .divider {
      color: var(--light);
      margin: 0 5px;
    }
	
	.footer-links-top .icon {
      font-size: 2.5rem;
      color: var(--light);
    }
	
	.scroll-top {
      position: fixed;
      bottom: 30px;
      right: 30px;
      background: var(--primary);
      color: var(--light);
      padding: 0;
      width: 48px;
      height: 48px;
      line-height: 48px;
      border-radius: 50%;
      font-size: 1.4rem;
      cursor: pointer;
      text-align: center;
      display: none;
      z-index: 1000;
      box-shadow: 0 2px 10px rgba(0,0,0,0.2);
      transition: background 0.3s, transform 0.3s;
    }

	.scroll-top:hover {
      background: var(--primary-hover);
      transform: translateY(-3px);
    }

    .scroll-top.visible {
      display: block;
    }
	
	.terms-privacy {
      color: var(--dark);
	}
	
	.terms-privacy p {
      margin-bottom: 20px;
	}
	
	.terms-privacy a {
      text-decoration: none;
	}
	
    .terms-privacy a:hover {
      text-decoration: underline;
    }

    @media (max-width: 768px) {
		
      nav ul {
        display: flex;
        flex-direction: row; /* вертикальное отображение */
        justify-content: center;
        align-items: center;
        text-align: center;
        width: 100%;
        padding: 0;
        margin: 0;      
	  }
	  
      nav ul li a {
	    font-size: 0.95rem;
      }

      nav {
        position: static;
        box-shadow: none;
		gap: 10px;
      }

      .nav-btn {
		display: none;
      }
	  
	  .logo-wrapper {
        justify-content: center; /* Центрируем логотип */
		width: 100%;
        margin-bottom: 10px;
      }

      header {
        padding: 100px 20px;
      }
	  
	  header h1 {
        font-size: 1.75rem;
      }
	  
	  header p {
        font-size: 1.25rem;
      }
	  
	  .btn {
		font-size: 1.25rem;
        padding: 22px 36px;
        border-radius: 24px;
	  }

	  .offer-grid {
        grid-template-columns: 1fr;
        padding: 30px 16px;
		gap: 24px;
      }
	  
	  .offer-grid .offer-card {
        width: 100%;
        padding: 24px;
        box-sizing: border-box;
      }
	  
	  #how-it-works h3 {
        padding: 0 16px;
      }
	  
	  #how-it-works .card {
        margin: 0 16px 20px;
		padding: 20px;
        box-sizing: border-box;
      }
	  
	  .cta {
        padding: 40px 16px;
      }
	  
	  .cta-text h2 {
		font-size: 1.75rem;
	  }
	  
	  .cta-grid {
        grid-template-columns: 1fr;
		margin: 0 20px;
		gap: 24px;
      }
	  
	  .cta .cta-text {
        padding: 0 16px;
      }
	  
	  .faq-card summary {
        list-style: none;
		display: block;
		cursor: pointer;
		display: flex;
		position: relative;
		justify-content: space-between;
		align-items: center;
      }
	  
	  .calendly-inline-widget {
        width: 100% !important;
        height: 600px !important;
      }

	  .scroll-top {
        bottom: 100px; /* Поднимаем кнопку выше footer */
		right: 16px;
      }
	  
	  .mobile-only {
        display: block;
      }  
    }
