body {
    background-color: whitesmoke;
}
html {
    scroll-behavior: smooth;
}
*{
    box-sizing: border-box;
}

.container {
   width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 16px;
}

/* arrow */
.arrow-text {
    gap: 5px;
    text-decoration: none;
    color: #1F2937;
    transition: color 0.25s ease;
     display: inline-flex;
        align-items: center;
        margin-left: 5px;
}

.arrow-text span {
    transition: color 0.25s ease;
}

.arrow-text svg {
    transition: fill 0.25s ease;
}

.arrow-text:hover span {
    color: #FF7A1A;
}

.arrow-text:hover svg {
    fill: #FF7A1A;
}
span {
    font-family: "Inter";
    font-size: 18px;
    font-weight: 400;
}


.span-arrow {
      fill: #9CA3AF;
    width: 24px;
    height: 24px;
    display: block;
    transform: translateY(-3px);
}


/* header */

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



.header {
    padding: 20px;
    position: relative;
}

.burger {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  position: absolute;
  left: 90%;
}

.burger.active span:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}

.burger.active span:nth-child(2) {
  opacity: 0;
}

.burger.active span:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}

.burger span {
  width: 26px;
  height: 3px;
  background: #1F2937;
  border-radius: 2px;
  transition: .3s ease;
}

.logo-wrap {
    display: flex;
    align-items: center;
    gap: 3px;
}

.logo {
    font-family: 'Inter', sans-serif;
    color: #FF7A1A;
    font-weight: 700;
    font-size: 30px;
    margin: 0;
    z-index: 999;
}

.span {
    font-family: 'Inter', sans-serif;
    color: #1f2937;
    font-weight: 700;
    font-size: 30px;
    z-index: 999;
}

.header-link {
 text-decoration: none;
  font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 18px;
    line-height: 1.4;
    letter-spacing: 0;
    color: #1f2937;
    transition: color 0.25s ease;
}

.header-link:hover {
    color: #f59e0b;
}

.header-list {
    display: flex;
    align-items: center;
    gap: 60px;
    list-style: none;
    margin: 0;
    padding: 0;
}


.no-scroll {
    overflow: hidden;
}

.modal.active {
    display: flex;
  justify-content: center;
  align-items: center;
}

.get-consultation {
    display: flex;
    align-items: center;
}

.consulltation-button {
    font-family: 'Inter', sans-serif;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-color: #FF7A1A;
    font-weight: 600;
    font-size: 15px;
    border-radius: 12px;
    color: #ffffff;
    width: 200px;
    height: 40px;
    border: none;
    margin-right: 10px;
    cursor: pointer;
    position: relative;
    transition: background-color 0.25s ease;
}


.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.45);

  display: flex;
  align-items: center;
  justify-content: center;

  opacity: 0;
  pointer-events: none;

  transition: opacity 0s ease;
  z-index: 999;
}

.modal-overlay.active {
  opacity: 1;
  pointer-events: auto;
}
.modal-content {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  background: white;
  padding: 28px;
  border-radius: 12px;
  width: 100%;
  max-width: 420px;
}
.modal-title {
      font-size: 24px;
    font-family: 'Inter', sans-serif;
    margin: 20px;
    color: #1f2937;
    font-weight: 700;
}

.close {
  position: absolute;
  right: 12px;
  top: 8px;
  font-size: 24px;
  cursor: pointer;
}
.input {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    padding: 5px;
    text-align: start;
    width: 90%;
    margin: 10px auto;
    height: 30px;
    color: black;
    border: solid 2px black;
    border-radius: 3px;
    outline: none;
    resize: none;
}

textarea.input {
  min-height: 50px;
  padding-top: 13px;
}

.input:focus {
  border: 2px solid black;
  outline: none;
}

#contactForm {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.submit-btn {
     background-color: #222;
  color: #ffffff;
 
  border: none;
  border-radius: 6px;
   width: 50%;
   height: 30px;
   margin-top: 10px;

  font-size: 16px;
  font-weight: 400;
  cursor: pointer;
  font-family: 'Open Sans', sans-serif;

}
.submit-btn:hover {
    background-color: #4A4A4A;
}


.consulltation-button::before {
    content: "";
    background-image: url('./img/phone.png');
    right: -33px;
    width: 30px;
    height: 30px;
    background-size: contain;
    position: absolute;
}
.consulltation-button:hover {
     background: #f59e0b;
}

/* about-auditor */
.about-auditor {
    position: relative;
    margin-bottom: 70px;
}
.about-auditor-title {
    font-size: 34px;
    font-family: "Inter", sans-serif;
    font-weight: 600;
    color: #1F2937;
    margin-top: 72px;
}

.about-auditor-desc {
    
    font-size: 18px;
    font-family: "Inter", sans-serif;
    font-weight: 400;
    color: #1F2937;
}

.about-auditor-wrap {
    display: flex;
}

.about-auditor-text {
    max-width: 50%;
}

.auditor-image {
    width: 400px;
    border-radius: 13px;
    object-fit: contain;
}

/* work-experience */
.work-experience {
    margin-bottom: 70px;
}
.work-experience-title {
    font-size: 24px;
    font-family: "Inter", sans-serif;
    font-weight: 600;
    color: #1F2937;
    margin-top: 70px;
}

.card-wrap {
   
    gap: 10px;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.card {
    width: 45%;
    box-shadow:
        0 2px 6px rgba(0, 0, 0, 0.06),
        0 8px 24px rgba(0, 0, 0, 0.04);
    text-align: center;
    min-width: 200px;
    background-color: #FFFFFF;
    padding: 10px;
    border-radius: 8px;
}

.card-title {
    font-size: 18px;
    font-family: "Inter", sans-serif;
    font-weight: 500;
    color: #1F2937;
}

/* my-services */
.my-services {
    margin-bottom: 70px;
}
.my-services-title {
    font-size: 24px;
    font-family: "Inter", sans-serif;
    font-weight: 600;
    color: #1F2937;
}

.my-services-card-wrap {
    display: flex;
    
    gap: 10px;
    flex-wrap: wrap;
}

.my-services-card-wrap> :last-child {
    margin-left: auto;
    margin-right: auto;
}

.my-services-card {

    min-width: 300px;
    background-color: #FFFFFF;
    padding: 10px;
    border-radius: 8px;
    text-align: center;
    box-shadow:
        0 2px 6px rgba(0, 0, 0, 0.06),
        0 8px 24px rgba(0, 0, 0, 0.04);
}

.my-services-card-title {
     font-size: 18px;
    font-family: "Inter", sans-serif;
    font-weight: 500;
    color: #1F2937;

    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.my-services-card-title::before {

      content: "";
    display: block;
    width: 36px;
    height: 36px;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
}

.card--compliance .my-services-card-title::before {
    width: 36px;
    height: 36px;
    background-image: url('./img-page2/compliance.svg');
}

.card--briefcase .my-services-card-title::before {
    width: 36px;
    height: 36px;
    background-image: url('./img-page2/briefcase2.svg');
}

.card--report .my-services-card-title::before {
    width: 36px;
    height: 36px;
    background-image: url('./img-page2/business-report.svg');
}

.card--tax .my-services-card-title::before {
    width: 36px;
    height: 36px;
    background-image: url('./img-page2/tax.svg');
}

.card--school .my-services-card-title::before {
    width: 36px;
    height: 36px;
    background-image: url('./img-page2/school.svg');
    background-size: cover;
}

/* why-choice-me */
.why-choice-me {
    margin-bottom: 70px;
}
.why-choice-me-title {
    font-size: 24px;
    font-family: "Inter", sans-serif;
    font-weight: 600;
    color: #1F2937;
}

.why-choice-me-card-wrap {
    display: flex;
    gap: 20px;
}

.why-choice-me-card {
    text-align: center;
    min-width: 200px;
    background-color: #FFFFFF;
    border-radius: 8px;
    padding: 10px;
    
}

.why-choice-me-card-title {
     font-size: 18px;
    font-family: "Inter", sans-serif;
    font-weight: 500;
    color: #1F2937;
    
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.why-choice-me-card-title::before {
    content: "";
    display: block;
    width: 36px;
    height: 36px;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
}

.card--security .why-choice-me-card-title::before {
    width: 36px;
    height: 36px;
    background-image: url('./img-page2/cyber-security.svg');
}

.card--badge .why-choice-me-card-title::before {
    width: 36px;
    height: 36px;
    background-image: url('./img-page2/badge.svg');
}

.card--hourglass .why-choice-me-card-title::before {
    width: 36px;
    height: 36px;
    background-image: url('./img-page2/hourglass.svg');
}

.card--user .why-choice-me-card-title::before {
    width: 36px;
    height: 36px;
    background-image: url('./img-page2/user-gear.svg');

}
/* need-consultation */

.need-consultation .container {
    margin-bottom: 70px;
    text-align: center;
       background: linear-gradient(
    to right,
    #f28c28 80%,   /* оранжевий */
    
    #f5b041 100%  /* світліший оранжевий (не бежевий) */
  );
  border-radius: 12px;
  padding: 20px;
  color: white;
}
.need-consultation-title {
    margin-top: 30px;
    color: #FFFFFF;
    font-family: "Inter", sans-serif;
    font-size: 24px;
    font-weight: 700;
}
.need-consultation-desc {
    color: #FFFFFF;
    font-family: "Inter", sans-serif;
    font-size: 18px;
    font-weight: 600;
    margin-top: 25px;
    margin-bottom: 25px;
}
.need-consultation-button { 
     box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    min-width: 300px;
    background-color: #ffffff;
    border: none;
    padding: 13px;
    cursor: pointer;
    border-radius: 3px;
    font-family: "Inter", sans-serif;
    font-size: 18px;
    color: #FF7A1A;
    font-weight: 500;
    margin-bottom: 30px;
}

/* footer */
footer .container {
    display: flex;
    align-items: flex-start;
    gap: 200px;
    margin-bottom: 20px;
}
.footer-title {
    font-size: 24px;
    font-family: 'Inter', sans-serif;
    color: #1f2937;
    font-weight: 700;
    transition: color 0.25s ease;
      margin: 0 0 15px 0
}
.footer-link {
text-decoration: none;
color: #1F2937;
transition: color 0.25s ease;
}
.footer-link:hover {
    color: #f59e0b;
}
.footer-title:hover {
    color: #f59e0b;
    cursor: pointer;
}
.footer-text:hover {
    color: #f59e0b;
    cursor: pointer;
}
 .contacts,
.navigation {
    display: flex;
    flex-direction: column;
    gap: 15px;
}



.footer-text {
    font-size: 18px;
    font-family: "Inter", sans-serif;
    font-weight: 500;
    color: #1F2937;
    text-decoration: none;
    transition: color 0.25s ease;
}
/* адаптив */




@media (max-width: 767px) {
    .input {
        min-height: 50px;
    }
    .close {
        font-size: 36px;
    }
    
    .card {
        width: 100%;
    }

    .arrow {
        order: -2;
    }

     .span-arrow {
        
        width: 20px;
        height: 20px;
     }
     .arrow span {
        
        font-size: 16px;
     }

    /* // burger menu */
    .burger {
      display: flex;
      z-index: 999;
  }
  

.header-item:first-child {
    margin-top: 35px;
}

 .header-list {
    display: flex;
    flex-direction: column;
    position: absolute;
    left: 0;
    width: 100%;
    background: #fff;
    padding: 20px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);

    transform: translateY(-100%);
    transition: transform 0.35s ease;
    z-index: 998;
}

.header-list.active {
    transform: translateY(40%);
}

.modal-content {
    margin-left: 5px;
    margin-right: 5px;
}

.submit-btn {
    font-size: 18px;
    width: 60%;
    height: 40px;
}
    
    .logo-wrap {
        gap: 5px;
    }

    .logo {
        font-size: 24px;
    }
    .span {
        font-size: 24px;
    }

    .about-auditor-wrap {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .about-auditor-text {
        max-width: 100%;
    }

    .auditor-image {
        width: 100%;
        max-width: 320px;
        margin-top: 20px;
        order: -1;
        aspect-ratio: 1 / 1;
        object-fit: cover;
    }

    .my-services-card {
        width: 100%;
    }

    .my-services-title {
        text-align: center;
    }

    .why-choice-me-card-wrap {
        flex-direction: column;
    }

    .why-choice-me-title {
        text-align: center;
    }

    .need-consultation {
        margin-left: 5px;
        margin-right: 5px;
    }

    footer .container {
        flex-direction: row;
        gap: 30px;
        margin-bottom: 35px;
    }

    .contacts {
        margin-right: 0;
    }
}

@media (min-width: 768px) {

    .input {
        font-size: 20px;
    }

    .modal-title {
     font-size: 30px;
    }

    .input {
        min-height: 60px;
    }
    .close {
        font-size: 48px;
    }
    .modal-content {
        min-height: 540px;
        max-width: 520px;
    }
    

    .submit-btn {
    font-size: 24px;
    width: 70%;
    height: 50px;
    margin-top: 10px;
}

    .about-auditor-text {
        max-width: 100%;
    }

     .burger {
      display: flex;
      z-index: 999;
  }
  

.header-item:first-child {
    margin-top: 35px;
}

 .header-list {
    display: flex;
    flex-direction: column;
    position: absolute;
    left: 0;
    width: 100%;
    background: #fff;
    padding: 20px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);

    transform: translateY(-100%);
    transition: transform 0.35s ease;
    z-index: 998;
}

.header-list.active {
    transform: translateY(40%);
}




.header-list.active {
    transform: translateY(40%);
}

    
    .logo-wrap {
        gap: 5px;
    }

    

.need-consultation {
        margin-left: 5px;
        margin-right: 5px;
    }
  
     .about-auditor-wrap {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
    }

    .auditor-image {
        width: 300px;
    }

    .my-services-card {
        flex: 1 1 calc(50% - 10px);
    }

    .why-choice-me-card-wrap {
        flex-wrap: wrap;
    }

    .why-choice-me-card {
        flex: 1 1 calc(50% - 20px);
    }

    footer .container {
        flex-direction: row;
        justify-content: center;
    }
}

@media (min-width: 1024px) {
   .burger {
    display: none;
   }

     .header-list {
        display: flex;
        flex-direction: row;
        position: static; 
        transform: none ;
        background: transparent; 
        
        
        box-shadow: none;
        
    }
    .header .container {
        gap: 60px;
    }

        .header-item:first-child {
        margin-top: 0;
    }

  .container {
    max-width: 1200px;
    margin: 0 auto;
  }
    .my-services-card {
        flex: 1 1 calc(33.333% - 10px);
    }

    .why-choice-me-card {
        flex: 1;
    }

    .auditor-image {
        width: 450px;
    }
}