 :root {
   --brand-dark: #1e1e1e;
   --brand-accent: #b2967d;
   --brand-light: #f7f5f3;
 }
 * {
   box-sizing: border-box;
 }
 body {
   margin: 0;
   font-family: 'Montserrat', sans-serif;
   background-color: var(--brand-light);
   color: var(--brand-dark);
 }
 header {
   position: fixed;
   top: 0;
   width: 100%;
   background: #fff;
   box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
   z-index: 999;
 }
 .nav-wrapper {
   max-width: 1200px;
   margin: 0 auto;
   display: flex;
   justify-content: space-between;
   align-items: center;
   padding: 1rem;
 }
 .nav-logo img {
   height: 80px;
 }
 nav ul {
   display: flex;
   list-style: none;
   margin: 0;
   padding: 0;
   flex-wrap: wrap;
 }
 nav li {
   margin-left: 2rem;
   display: flex;
   align-items: center;
   gap: 0.5rem;
   font-weight: 600;
 }
 nav li::before {
   content: attr(data-step) ". ";
   font-weight: bold;
   color: var(--brand-accent);
 }
 nav a {
   text-decoration: none;
   color: var(--brand-dark);
 }
 .burger {
   display: none;
   flex-direction: column;
   cursor: pointer;
 }
 .burger div {
   width: 25px;
   height: 3px;
   background-color: var(--brand-dark);
   margin: 4px;
 }
 .nav-wrapper.mobile nav ul {
   display: none;
   flex-direction: column;
   width: 100%;
 }
 .nav-wrapper.mobile nav ul.show {
   display: flex;
 }
 .hero {
   background: url('assets/images/bg-data.jpg') center/cover no-repeat;
   text-align: center;
   padding: 150px 20px 80px;
   margin-top: 80px;
 }
 .hero h1 {
   font-size: 2rem;
   color: white;
 }
 .hero p {
   color: white;
   margin-bottom: 1rem;
 }
 .hero a {
   background-color: var(--brand-accent);
   padding: 0.75rem 1.5rem;
   color: white;
   text-decoration: none;
   font-weight: 600;
   border-radius: 5px;
 }
 .quote {
   padding: 60px 20px;
   text-align: center;
   font-style: italic;
   background-color: white;
   max-width: 800px;
   margin: auto;
 }
 .section {
   padding: 80px 20px;
   max-width: 1000px;
   margin: auto;
 }
 .step {
   background: white;
   padding: 40px;
   margin-bottom: 40px;
   border-radius: 12px;
   box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
 }
 .step-number {
   background-color: var(--brand-accent);
   color: white;
   border-radius: 50%;
   width: 42px;
   height: 42px;
   display: flex;
   align-items: center;
   justify-content: center;
   font-weight: bold;
   margin: 0 auto 10px;
 }
 .step-title {
   text-align: center;
   font-size: 2.5rem;
   font-weight: 600;
   margin-bottom: 20px;
 }
 .step p {
   text-align: left;
   margin-bottom: 20px;
   font-size: 20px;
   line-height: 34px;
 }
 .button-row {
   display: flex;
   flex-wrap: wrap;
   gap: 1rem;
   justify-content: center;
 }
 .step button {
   background-color: var(--brand-accent);
   color: white;
   border: none;
   padding: 0.75rem 1.25rem;
   border-radius: 6px;
   font-weight: 600;
   cursor: pointer;
   flex: 1 1 calc(25% - 1rem);
   min-width: 150px;
   text-align: center;
   font-size: 0.9rem;
 }
 .button-row.ankety {
   display: block;
   text-align: center;
 }
 .button-row.ankety button {
   width: 70%;
   /*display: block;
	 text-align: left;*/
   position: relative;
   margin-bottom: 10px;
   font-size: 1.4rem;
   padding: 1.5rem;
   margin-left: auto;
   margin-right: auto;
 }
 .button-row.ankety button::after {
   content: "→";
   position: absolute;
   right: 16px;
   top: 50%;
   transform: translateY(-50%) translateX(10px);
   opacity: 0;
   transition: all 0.3s ease;
   color: #ffffff;
   font-size: 2.5rem;
 }
 .button-row.ankety button:hover {
   color: #ffffff;
   background-color: #8a6d3b; /* Теплий коричнево-золотий акцент */
   border-color: #8a6d3b;
   box-shadow: 0 6px 12px rgba(138, 109, 59, 0.3);
   transform: translateY(-2px);
 }
 .button-row.ankety button:hover::after {
   opacity: 1;
   transform: translateY(-50%) translateX(0);
 }
 .accordion-button {
   background: none;
   border: none;
   text-align: left;
   font-weight: 600;
   padding: 10px;
   flex: 1;
   cursor: pointer;
   color: var(--brand-dark);
 }
 .accordion-row {
   display: flex;
   flex-wrap: wrap;
   gap: 1rem;
 }
 .accordion-content {
   padding: 15px;
   background-color: #f0f0f0;
   border-radius: 8px;
   margin-top: 15px;
   display: none;
 }
 .accordion-content.open {
   display: block;
 }
 html {
   scroll-behavior: smooth;
 }
 .anchor {
   scroll-margin-top: 120px;
 }
 @media (max-width: 768px) {
   .burger {
     display: flex;
   }
   .nav-wrapper {
     flex-direction: column;
     align-items: flex-start;
   }
   #navWrapper-pc {
     display: none;
   }
   #navWrapper .burger {
     position: fixed;
     right: 1rem;
   }
   nav ul {
     display: none;
     flex-direction: column;
     gap: 0.5rem;
     width: 100%;
     margin-top: 1rem;
   }
   nav ul.show {
     display: flex;
   }
   .burger {
     width: 30px;
     height: 24px;
     display: block;
     flex-direction: column;
     justify-content: space-between;
     cursor: pointer;
     z-index: 1001;
     /* чтобы была сверху, если нужно */
   }
   .burger div {
     width: 100%;
     height: 4px;
     background-color: #000;
     border-radius: 2px;
     transition: transform 0.3s ease, opacity 0.3s ease;
     transform-origin: center;
   }
   /* Активный (крестик) */
   .burger.active div:nth-child(1) {
     transform: rotate(45deg);
     position: absolute;
     top: 7px;
   }
   .burger.active div:nth-child(2) {
     opacity: 0;
   }
   .burger.active div:nth-child(3) {
     transform: rotate(-45deg);
   }
 }
 @media (min-width: 768px) {
   #navWrapper {
     display: none;
   }
 }
 .quote {
   text-align: center;
   font-size: 1.2rem;
   font-weight: 500;
   color: #333;
   line-height: 1.6;
   max-width: 800px;
   margin: 40px auto;
   padding: 10px 20px;
 }
 .quote-line {
   opacity: 0;
   transform: translateY(20px);
   transition: opacity 0.6s ease, transform 0.6s ease;
   margin-top: 0;
   margin-bottom: 5px;
 }
 /* Коли блок активний — анімація запускається */
 .quote.scroll-fade.active .quote-line:nth-child(1) {
   transition-delay: 0.2s;
   opacity: 1;
   transform: translateY(0);
 }
 .quote.scroll-fade.active .quote-line:nth-child(2) {
   transition-delay: 0.5s;
   opacity: 1;
   transform: translateY(0);
 }
 .quote.scroll-fade.active .quote-line:nth-child(3) {
   transition-delay: 0.8s;
   opacity: 1;
   transform: translateY(0);
 }
 .quote.scroll-fade.active .quote-line:nth-child(4) {
   transition-delay: 1.1s;
   opacity: 1;
   transform: translateY(0);
 }
 /* Основні стилі модального вікна */
 .modal {
   position: fixed;
   top: 0;
   left: 0;
   right: 0;
   bottom: 0;
   z-index: 1050;
   display: flex;
   justify-content: center;
   align-items: center;
   background: rgba(0, 0, 0, 0.5);
   padding: 20px;
   overflow-y: auto;
 }
 .modal-content {
   position: relative;
   width: 100%;
   max-width: 600px;
   background: #fff;
   border-radius: 8px;
   box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
   padding: 20px;
   animation: fadeIn 0.3s ease-out;
 }
 /* Анімація появи */
 @keyframes fadeIn {
   from {
     opacity: 0;
     transform: translateY(-20px);
   }
   to {
     opacity: 1;
     transform: translateY(0);
   }
 }
 /* Стилі заголовка */
 .modal-header {
   display: flex;
   justify-content: space-between;
   align-items: center;
   padding: 0;
   margin-bottom: 20px;
 }
 .modal-title {
   font-size: 18px;
   font-weight: 600;
   color: #000;
   margin: 0;
   text-transform: uppercase;
   letter-spacing: -0.02em;
 }
 /* Кнопка закриття */
 .modal-close {
   background: none;
   border: none;
   color: #333;
   font-size: 1.5rem;
   font-weight: 600;
   cursor: pointer;
   transition: color 0.3s ease;
 }
 .modal-close:hover {
   color: #e74c3c;
 }
 /* Стилі тіла модального вікна */
 .modal-body {
   font-size: 1rem;
   line-height: 1.6;
   color: #555;
   margin-bottom: 20px;
 }
 /* Стилі футера */
 .modal-footer {
   display: flex;
   justify-content: flex-end;
   padding: 0;
 }
 .modal-footer button {
   background-color: #3498db;
   color: white;
   border: none;
   padding: 10px 20px;
   font-size: 1rem;
   border-radius: 4px;
   cursor: pointer;
   transition: background-color 0.3s ease;
 }
 .modal-footer button:hover {
   background-color: #2980b9;
 }
 /* Общие стили страницы и навигации (твой текущий CSS) */
 /* Модалка - стиль как на странице “Про нас” */
 .modal {
   position: fixed;
   top: 0;
   left: 0;
   width: 100%;
   height: 100%;
   display: none;
   z-index: 1000;
   align-items: center;
   justify-content: center;
   background: rgba(0, 0, 0, 0.5);
 }
 .modal.active {
   display: flex;
 }
 .modal-overlay {
   position: absolute;
   width: 100%;
   height: 100%;
   cursor: pointer;
 }
 .modal-content {
   position: relative;
   max-width: 800px;
   width: 90%;
   background: #fff;
   border-radius: 8px;
   padding: 1rem 1rem;
   box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
   font-family: 'Montserrat', sans-serif;
   color: #000;
   z-index: 1010;
 }
 .modal-content p {
   font-size: 16px;
   line-height: 1.5;
   margin-bottom: 15px;
 }
 .step .open-mod {
   text-align: center;
 }
 .open-mod a, #step6 a {
   color: #C4956A;
   text-decoration: none;
 }
 .open-mod a:hover, #step6 a:hover {
   color: #8a6d3b;
 }
 strong {
   font-weight: 600;
 }
 .btn-close {
   background: transparent url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23333' viewBox='0 0 16 16'%3E%3Cpath d='M2.5 2.5l11 11m0-11l-11 11' stroke='%23333' stroke-linecap='round' stroke-width='2'/%3E%3C/svg%3E") center / 1em auto no-repeat;
   border: none;
   width: 1.5rem;
   height: 1.5rem;
   opacity: 0.75;
 }
 .btn-close:hover {
   opacity: 1;
 }
 .additional-info {
   margin-top: 15px;
   display: flex;
   gap: 30px; /* увеличенное расстояние */
   flex-wrap: wrap;
   align-items: center;
   justify-content: center;
 }
 /* Ссылки */
 .download-link, .video-link {
   font-weight: 600;
   color: #C4956A;
   text-decoration: none;
   border-bottom: 2px solid transparent;
   display: flex;
   align-items: center;
   gap: 8px;
   transition: border-color 0.3s ease;
   line-height: 1.2;
 }
 .download-link:hover, .video-link:hover {
   border-color: #8a6d3b;
   text-decoration: none;
 }
 .icon {
   flex-shrink: 0;
   width: 20px;
   height: 20px;
   display: block;
 }
 /* Адаптив */
 /* Планшеты и меньше (max-width: 768px) — чуть уменьшенный gap */
 @media (max-width: 768px) {
   .additional-info {
     gap: 20px;
   }
 }
 /* Мобильные (max-width: 480px) — вертикальный стек */
 @media (max-width: 480px) {
   .additional-info {
     flex-direction: column;
     gap: 15px;
   }
 }