/* Base styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: #ffffff;
  font-family:
    "Inter",
    -apple-system,
    Roboto,
    Helvetica,
    sans-serif;
  overflow-x: hidden;
}

.page-container {
  width: 100%;
  overflow: hidden;
  padding-bottom: 55px;
}

/* Hero Section */
.hero-section {
  display: flex;
  flex-direction: column;
  position: relative;

  width: 100%;
  padding-top: 55px;
  padding-bottom: 16px;
  color: #ffffff;
}

.hero-section--main {
  min-height: 552px;
}

.hero-image {
  position: absolute;
  inset: 0;
  height: 100%;
  width: 100%;
  object-fit: cover;
  object-position: center;
}

.header-content {
  position: relative;
  width: 100%;
  padding-left: 58px;
  padding-right: 58px;
  text-transform: uppercase;
}

.main-navigation {
  border-radius: 56px;
  background-color: #983300;
  display: flex;
  min-height: 80px;
  padding: 27px 40px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  overflow: hidden;

  
}

.main-navigation nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.company-name {
  font-size: 20px;
  font-weight: 800;
  align-self: stretch;
  color: #ffffff;
  text-decoration: unset;
  line-height: 1.1;
}

.nav-link {
  color: #ffffff;
  text-decoration: none;
  align-self: stretch;
  margin-top: auto;
  margin-bottom: auto;
  padding: 0 10px;
  font-family:
  "Open Sans",
  -apple-system,
  Roboto,
  Helvetica,
  sans-serif;
font-size: 14px;
font-weight: 600;
text-align: center;
transition: all 0.3s ease;
}

.nav-link:hover {
  color: #ff9f1a;
}

.hero-title {
  font-size: 36px;
  font-family:
    "Krona One",
    -apple-system,
    Roboto,
    Helvetica,
    sans-serif;
  font-weight: 400;
  margin-top: 33px;
  width: 721px;
}

.hero-cta {
  position: relative;
  background-color: rgba(84, 17, 9, 0.7);
  display: flex;
  margin-top: 12px;
  width: 60%;
  max-width: 100%;
  padding: 12px 58px;
  flex-direction: column;
  align-items: stretch;
  font-family:
    "Krona One",
    -apple-system,
    Roboto,
    Helvetica,
    sans-serif;
  font-size: 16px;
  font-weight: 400;
}

.cta-title {
  font-size: 20px;
  text-transform: uppercase;
  margin-right: 45px;
}

.cta-description {
  font-family:
    "Inter",
    -apple-system,
    Roboto,
    Helvetica,
    sans-serif;
  font-weight: 300;
  margin-top: 12px;
  line-height: 1.1;
}

.cta-button {
  border: none;
  border-radius: 25px;
  background-color: #ff9f1a;
  align-self: start;
  margin-top: 12px;
  padding: 10px 51px;
  white-space: nowrap;
  text-transform: uppercase;
  color: #ffffff;
  font-family:
    "Krona One",
    -apple-system,
    Roboto,
    Helvetica,
    sans-serif;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.cta-button--center {
  margin-left: auto;
  margin-right: auto;
  display: block;
}

button,
a {
  transition: all 0.3s ease;
}

.cta-button:hover,
.more-link:hover {
  box-shadow: 0px 5px 15px 5px rgba(0, 0, 0, 0.5);
}

/* Services Section */
.services-section {
  display: flex;
  margin-top: 33px;
  width: 100%;
  padding: 0 58px;
  flex-direction: column;
  align-items: stretch;
}

.section-title {
  color: #983300;
  font-size: 32px;
  font-family:
    "Krona One",
    -apple-system,
    Roboto,
    Helvetica,
    sans-serif;
  font-weight: 400;
  text-transform: uppercase;
  align-self: start;
}

.services-grid {
  margin-top: 37px;
}

.services-row {
  display: flex;
  gap: 20px;
  margin-bottom: 33px;
}

.service-card {
  border-radius: 25px;
  background-color: #983300;
  flex: 1;
  padding: 25px 56px 49px;
  color: #ffffff;
  text-align: center;
}

.service-title {
  font-size: 20px;
  font-family:
    "Krona One",
    -apple-system,
    Roboto,
    Helvetica,
    sans-serif;
  font-weight: 400;
  text-transform: uppercase;
}

.service-description {
  font-size: 16px;
  font-family:
    "Inter",
    -apple-system,
    Roboto,
    Helvetica,
    sans-serif;
  font-weight: 300;
  margin-top: 33px;
  max-width: 80%;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.1;
}

.more-link {
  align-self: center;
  border-radius: 25px;
  background-color: #ff9f1a;
  margin-top: 15px;
  max-width: 100%;
  padding: 10px 51px;
  text-align: center;
  font-family:
    "Krona One",
    -apple-system,
    Roboto,
    Helvetica,
    sans-serif;
  font-size: 16px;
  color: #ffffff;
  font-weight: 400;
  text-transform: uppercase;
  text-decoration: none;
  display: block;
}

/* Benefits Section */
.benefits-section {
  display: flex;
  margin-top: 95px;
  width: 100%;
  padding: 0 58px;
  flex-direction: column;
  align-items: start;
}

.benefits-text {
  font-family: 'Inter';
  font-weight: 400;
  font-size: 16px;
  line-height: 100%;
  text-transform: uppercase;
  color: rgba(152, 51, 0, 1);
  max-width: 828px;
  width: 100%;
  margin-top: 16px;
}

.accordion {
  width: 100%;
  margin-top: 46px;
}

.accordion-item {
  margin-bottom: 23px;
  width: 100%;
}

.accordion-header {
  width: 100%;
  border: none;
  border-radius: 25px;
  background-color: #983300;
  padding: 15px 19px;
  text-align: left;
  font-family:
    "Krona One",
    -apple-system,
    Roboto,
    Helvetica,
    sans-serif;
  font-size: 20px;
  color: #ffffff;
  font-weight: 400;
  text-transform: uppercase;

  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.accordion-description {
  font-family: 'Krona One';
  font-weight: 400;
  font-size: 16px;
  line-height: 100%;
  letter-spacing: 0%;
  text-transform: uppercase;  
  margin-top: 5px;

}

.accordion-item.active .accordion-description {
  display: block;
  animation: fadeIn 0.3s ease-in-out;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* Team Section */
.team-section {
  margin-top: 80px;
  padding: 0 58px;
}

.team-grid {
  display: flex;
  gap: 20px;
  margin-top: 46px;
}

.team-member {
  position: relative;
  min-height: 290px;
  flex: 1;
  padding: 20px 32px;
  font-size: 16px;
  color: #ffffff;
  text-align: center;
  border-radius: 25px;
  background-color: #983300;
}

.member-info {
  display: flex;

  flex-direction: column;
  align-items: center;

}

.member-name {
  font-family:
    "Krona One",
    -apple-system,
    Roboto,
    Helvetica,
    sans-serif;
  font-weight: 400;
  text-transform: uppercase;
}

.member-description {
  font-family:
    "Inter",
    -apple-system,
    Roboto,
    Helvetica,
    sans-serif;
  font-weight: 300;
  margin-top: 9px;
  line-height: 1.1;
}

.member-image {
  min-height: 134px;
  height: auto;
  object-fit: cover;
  object-position: center 10%;
  width: 100%;
  border-radius: 25px;
  max-width: 100%;
  aspect-ratio: 292/134;
}

/* Process Section */
.process-section {
  margin-top: 80px;
  padding: 0 58px;
}

.process-steps {
  margin-top: 46px;
}

.process-step {
  border-radius: 25px;
  background-color: #983300;
  margin-bottom: 37px;
  padding: 15px 19px;
  color: #ffffff;
}

.step-title {
  font-family:
    "Krona One",
    -apple-system,
    Roboto,
    Helvetica,
    sans-serif;
  font-size: 20px;
  font-weight: 400;
  text-transform: uppercase;
}

/* Contact Section */
.contact-section {
  margin-top: 80px;
  padding: 0 58px;
}

.contact-info {
  color: #983300;
  font-size: 16px;
  font-family:
    "Krona One",
    -apple-system,
    Roboto,
    Helvetica,
    sans-serif;
  font-weight: 400;
  text-transform: uppercase;
  margin-top: 46px;
  max-width: 721px;
  width: 100%;
  font-style: normal;
  line-height: 1.6;
}

.contact-info a {
  color: #983300;
  text-decoration: none;
}

/* Footer */
.site-footer {
  
  margin-top: 58px;
  width: 100%;

  padding: 0 58px;
  color: #ffffff;
  text-align: center;
}

.footer-content {
  padding: 20px 40px;
  border-radius: 48px;
  background-color: #983300;
  display: flex;
  width: 100%;
  align-items: center;
  gap: 40px ;
  justify-content: space-between;
  flex-wrap: wrap;
}

.copyright {
  font-family:
    "Inter",
    -apple-system,
    Roboto,
    Helvetica,
    sans-serif;
  font-weight: 400;
  align-self: stretch;
  margin-top: auto;
  margin-bottom: auto;
}

.footer-links {
  align-self: stretch;
  display: flex;
  min-width: 240px;
  margin-top: auto;
  margin-bottom: auto;
  align-items: center;
  gap: 8px;
  font-family:
    "Montserrat",
    -apple-system,
    Roboto,
    Helvetica,
    sans-serif;
  font-weight: 500;
  text-transform: uppercase;
  line-height: 1.2;
  justify-content: start;
}

.links-container {
  border-radius: 20px;
  background-color: #983300;
  align-self: stretch;
  display: flex;
  min-width: 240px;
  margin-top: auto;
  margin-bottom: auto;
  padding: 8px;
  align-items: center;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
}

.footer-link {
  color: #ffffff;
  text-decoration: none;
  align-self: stretch;
  margin-top: auto;
  margin-bottom: auto;
}

.footer-link:hover {
  opacity: 0.7;
}

/* Media Queries */
@media (max-width: 991px) {
  .hero-section,
  .services-section,
  .benefits-section,
  .team-section,
  .process-section,
  .contact-section {
    max-width: 100%;
    padding-left: 16px;
    padding-right: 16px;
  }
  .header-content {
    padding-left: 0;
    padding-right: 0;
  }
  .hero-section {
    padding-top: 0;
   
  }
  .main-navigation {
    border-radius: 0;
    margin-left: -16px;
    margin-right: -16px;
    width: calc(100% + 32px);
  }

  .main-navigation {
    padding-left: 16px;
    padding-right: 16px;
  }
  .hero-cta {
    width: calc(100% + 32px);
    max-width: calc(100% + 32px);
    margin-left: -16px;
    margin-right: -16px;
    padding: 28px 16px;
  }

  .hero-title,
  .cta-title,
  .section-title,
  .contact-info {
    max-width: 100%;
  }

  .cta-button {
    padding-left: 16px;
    padding-right: 16px;
    white-space: initial;
   
  }

  .cta-title {
    font-size: 16px;
  }
  .services-row {
    flex-direction: column;
    align-items: stretch;
    gap: 40px;
  }

  .service-card {
    max-width: 100%;
    padding-left: 16px;
    padding-right: 16px;
  }

  .more-link {
    padding-left: 16px;
    padding-right: 16px;
    margin-top: 0;
  }

  .benefits-section {
    margin-top: 40px;
  }
  .accordion {
    margin-top: 15px;
  }

  .accordion-header {
    max-width: 100%;
    margin-right: 4px;
  }

  .team-section,
  .process-section
   {
    margin-top: 40px;
  }
  .contact-section {
    margin-top: 56px;
  }
  .page-container {
    padding-bottom: 0;
  }

  .team-grid {
    flex-direction: column;
    align-items: stretch;
    gap: 40px;
  }

  .team-member {
    margin-top: 5px;
    padding-left: 16px;
    padding-right: 16px;
  }

  .process-steps {
    margin-top: 25px;
  }
  .process-step {
    margin-bottom: 25px;
  }

  .site-footer {
    max-width: 100%;
    padding: 0;
    margin-top: 40px;
  }
  .footer-content {
    border-radius: 0;
    padding: 20px 40px;
  }
  .footer-links {
    width: 100%;

  }

  .links-container {
    row-gap: 40px;
    justify-content: flex-start;
  }

  .footer-link {
    text-align: left;
  }

  .footer-content,
  .links-container {
    max-width: 100%;
  }
  .section-title {
    font-size: 24px;
  }
}


@media (max-width:768px){
  .hero-title {
    font-size: 24px;
  }
}

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

@media (max-width:992px){
  .menu {
    display: none !important;
    position: absolute;
    top: 60px;
    left: 0;
    background-color: rgba(84, 17, 9, 0.7);
    width: 100%;
    padding: 20px;
    justify-content: center !important;
    backdrop-filter: blur(6px);
  }
  
  .menu.active {
    display: flex !important;
  }

  .burger {
    display: flex;
  }
}

.burger {
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 24px;
  cursor: pointer;
  z-index: 10;
}

.burger span {
  display: block;
  height: 4px;
  background: #fff;
  border-radius: 2px;
}

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

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

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

.hero-section + .benefits-section {
  margin-top: 55px;
}

.benefits-text li {
  list-style-position: inside;
  padding-top: 16px;
}

.benefits-text li:last-child {
  padding-bottom: 16px;
}

#about .benefits-text {
  text-transform: unset;
}

.faq {
  display: flex;
  flex-direction: column;
  margin-top: 16px;
  gap: 20px;
  color: rgba(152, 51, 0, 1);
}

.faq-item h3 {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 20px;
  line-height: 100%;
}

.faq-item p {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 100%;
  padding-top: 6px;
}

.policy * {
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  font-size: 20px;
  line-height: 100%;
  letter-spacing: 0%;
  color: rgba(152, 51, 0, 1);
}

.policy li {
  list-style-position: inside;
}

.policy {
  padding-top: 20px;
  max-width: 1080px;
}

.header-lang {
  margin-left: 30px;
  color: rgba(255, 159, 26, 1);
  text-decoration: unset;
}

.nav-link.active {
  text-decoration: underline;
}


input[type="text"],
input[type="email"],
input[type="tel"],
textarea {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
}
.input {
  background: transparent;
	width: 100%;
	display: block;
	padding: 18px 16px;
  border: 1px solid rgba(44, 44, 44, 0.3);
  font-size: 16px;
  font-weight: 400;
  line-height: 18.75px;
	caret-color: inherit;
  outline: none;
  transition: all 0.3s ease;
  color: #000;
  border-radius: 24px;
  box-sizing: border-box;
}

.input::placeholder {
  color: rgba(5, 5, 5, 0.4);
}
.input[placeholder]:not([data-placeholder-nohiden]) {
	&::placeholder {
		transition: opacity 0.3s;
	}
	&:focus::placeholder {
		opacity: 0;
	}
}

textarea {
  min-height: 160px;
  resize: none;
}

.contact__form {
  display: flex;
  flex-direction: column;
  gap: 28px;
  margin-top: 16px;
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

@media (max-width:768px){
  .contact-content {
    grid-template-columns: 1fr;
  }
}

main {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

#success {
  flex: 1 1 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  gap: 16px;
  width: 100%;
}
#success * {
  text-align: center;
}

#success a {
  margin-left: auto;
  margin-right: auto;
  text-decoration: unset;
}