*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: "DM Sans", sans-serif;
  line-height: 1.7;
  color: #334155;
  background: #FFFFFF;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Barlow", sans-serif;
  font-weight: 700;
  line-height: 1.2;
  color: #0F172A;
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

ul {
  list-style: none;
}

button {
  border: none;
  background: none;
  cursor: pointer;
  font-family: inherit;
}

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

.section {
  padding: 8rem 0;
}
@media (max-width: 768px) {
  .section {
    padding: 4rem 0;
  }
}

.section__subtitle {
  display: inline-block;
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #DC2626;
  margin-bottom: 1rem;
}

.section__title {
  font-size: clamp(2rem, 5vw, 3rem);
  margin-bottom: 1.5rem;
  color: #1E3A8A;
}

.section__description {
  font-size: 1.125rem;
  color: #64748B;
  line-height: 1.8;
  max-width: 600px;
}

.section__header-center {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 6rem;
}

.section__description-center {
  font-size: 1.125rem;
  color: #64748B;
  margin: 0 auto;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  font-family: "Barlow", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  border-radius: 50px;
  transition: all 0.3s ease;
  cursor: pointer;
  border: 2px solid transparent;
}
.btn--primary {
  background: #DC2626;
  color: white;
}
.btn--primary:hover {
  background: #B91C1C;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(220, 38, 38, 0.3);
}
.btn--secondary {
  background: white;
  color: #DC2626;
  border-color: #DC2626;
}
.btn--secondary:hover {
  background: #DC2626;
  color: white;
}
.btn--full {
  width: 100%;
  justify-content: center;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: white;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.08);
  z-index: 1000;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 90px;
}
.nav__item--dropdown {
  position: relative;
}
@media (min-width: 1025px) {
  .nav__item--dropdown:hover .nav__dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
  .nav__item--dropdown:hover .nav__arrow {
    transform: rotate(180deg);
  }
}
.nav__arrow {
  display: inline-block;
  margin-left: 0.25rem;
  transition: transform 0.3s ease;
  vertical-align: middle;
}
.nav__dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 200px;
  background: white;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  border-radius: 8px;
  padding: 0.5rem 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  z-index: 100;
}
@media (max-width: 1024px) {
  .nav__dropdown {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    box-shadow: none;
    background: #F8FAFC;
    border-radius: 0;
    margin-top: 0.5rem;
    padding: 1rem 0 1rem 1.5rem;
    display: none;
  }
  .nav__item--dropdown.active .nav__dropdown {
    display: block;
  }
}
.nav__dropdown li {
  list-style: none;
}
.nav__dropdown li:not(:last-child) {
  border-bottom: 1px solid #E2E8F0;
}
@media (max-width: 1024px) {
  .nav__dropdown li:not(:last-child) {
    border-bottom: none;
  }
}
.nav__dropdown-link {
  display: block;
  padding: 1rem 2rem;
  color: #334155;
  font-size: 0.9375rem;
  font-weight: 500;
  transition: all 0.3s ease;
}
.nav__dropdown-link:hover {
  background: #F8FAFC;
  color: #DC2626;
  padding-left: 2.5rem;
}
@media (max-width: 1024px) {
  .nav__dropdown-link:hover {
    background: transparent;
    padding-left: 2rem;
  }
}
@media (max-width: 1024px) {
  .nav__dropdown-link {
    padding: 0.5rem 2rem;
    font-size: 0.875rem;
  }
}
.nav__logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.nav__logo img {
  height: 75px;
}
.nav__list {
  display: flex;
  align-items: center;
  gap: 3rem;
}
@media (max-width: 1024px) {
  .nav__list {
    flex-direction: column;
    gap: 2rem;
    align-items: flex-start;
  }
}
.nav_link {
  font-family: "Barlow", sans-serif;
  font-size: 0.9375rem;
  font-weight: 600;
  color: #334155;
  position: relative;
  padding: 0.5rem 0;
}
.nav_link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: #DC2626;
  transition: all 0.3s ease;
}
.nav_link:hover, .nav_link.active {
  color: #DC2626;
}
.nav_link:hover::after, .nav_link.active::after {
  width: 100%;
}
.nav__phone {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: 0.8rem 1.5rem;
  background: #1E3A8A;
  color: white;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  box-shadow: 0 4px 12px rgba(30, 58, 138, 0.3);
}
.nav__phone svg {
  flex-shrink: 0;
}
.nav__phone:hover {
  background: #172554;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(30, 58, 138, 0.4);
}
@media (max-width: 640px) {
  .nav__phone {
    padding: 1rem 1.5rem;
  }
  .nav__phone span {
    display: none;
  }
}
.nav__toggle, .nav__close {
  display: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: #0F172A;
}
@media (max-width: 1024px) {
  .nav__toggle, .nav__close {
    display: block;
  }
}
@media (max-width: 1024px) {
  .nav__menu {
    position: fixed;
    top: 0;
    left: -100%;
    width: 80%;
    max-width: 400px;
    height: 100%;
    background: white;
    box-shadow: 2px 0 20px rgba(0, 0, 0, 0.1);
    padding: 4rem 2rem;
    transition: all 0.3s ease;
    z-index: 100;
  }
  .nav__menu.show {
    left: 0;
  }
}
.nav__close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  font-size: 2rem;
}

.logo-text {
  font-size: 1.75rem;
  font-weight: 800;
  color: #1E3A8A;
}

.logo-subtext {
  font-size: 0.875rem;
  font-weight: 700;
  color: #334155;
  letter-spacing: 1px;
}

.page-hero {
  padding-top: 90px;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background: linear-gradient(135deg, #1E3A8A, #172554);
}
.page-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("img/banner3.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  opacity: 0.1;
}
.page-hero__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(23, 37, 84, 0.2);
}
.page-hero__content {
  position: relative;
  z-index: 1;
  text-align: center;
  color: white;
  padding: 4rem 0;
}
.page-hero__title {
  font-size: clamp(2.5rem, 6vw, 4rem);
  color: white;
  margin-bottom: 1.5rem;
}
.page-hero__subtitle {
  font-size: 1.25rem;
  opacity: 0.95;
  margin-bottom: 2rem;
}
.page-hero__breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 0.9375rem;
  opacity: 0.9;
}
.page-hero__breadcrumb a:hover {
  text-decoration: underline;
}

.tarifs-intro {
  background: white;
}

.pricing-features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2.5rem;
  margin-top: 4rem;
}
@media (max-width: 1024px) {
  .pricing-features {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .pricing-features {
    grid-template-columns: 1fr;
  }
}

.pricing-feature {
  text-align: center;
}
.pricing-feature__icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(220, 38, 38, 0.1);
  border-radius: 50%;
  color: #DC2626;
}
.pricing-feature h3 {
  font-size: 1.125rem;
  color: #1E3A8A;
  margin-bottom: 0.5rem;
}
.pricing-feature p {
  color: #64748B;
  font-size: 0.9375rem;
}

.pricing-grid {
  background: #F8FAFC;
}
.pricing-grid__title {
  text-align: center;
  font-size: 2rem;
  color: #1E3A8A;
  margin-bottom: 1rem;
}
.pricing-grid__subtitle {
  text-align: center;
  color: #64748B;
  margin-bottom: 4rem;
}

.pricing-category {
  background: white;
  border-radius: 16px;
  padding: 3rem;
  margin-bottom: 2.5rem;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
}
.pricing-category__title {
  font-size: 1.75rem;
  color: #1E3A8A;
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 3px solid #DC2626;
}

.pricing-table {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.pricing-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem;
  background: #F8FAFC;
  border-radius: 8px;
  transition: all 0.3s ease;
}
@media (max-width: 768px) {
  .pricing-row {
    flex-direction: column;
    gap: 0.5rem;
    text-align: center;
  }
}
.pricing-row:hover {
  background: rgba(30, 58, 138, 0.05);
}
.pricing-row.highlight {
  background: rgba(220, 38, 38, 0.1);
  border: 2px solid #DC2626;
  font-weight: 600;
}
.pricing-row__service {
  color: #334155;
}
.pricing-row__price {
  color: #DC2626;
  font-weight: 700;
  font-size: 1.125rem;
}

.pricing-note {
  background: rgba(30, 58, 138, 0.05);
  border-left: 4px solid #1E3A8A;
  padding: 2rem;
  border-radius: 8px;
  margin-top: 2.5rem;
}
.pricing-note p {
  color: #334155;
  line-height: 1.7;
}

.why-pricing {
  background: white;
}
.why-pricing__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2.5rem;
  margin-top: 4rem;
}
@media (max-width: 1024px) {
  .why-pricing__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .why-pricing__grid {
    grid-template-columns: 1fr;
  }
}

.why-card {
  text-align: center;
  padding: 2rem;
  background: #F8FAFC;
  border-radius: 12px;
  transition: all 0.3s ease;
}
.why-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}
.why-card__icon {
  font-size: 3rem;
  margin-bottom: 1.5rem;
}
.why-card h3 {
  font-size: 1.25rem;
  color: #1E3A8A;
  margin-bottom: 1rem;
}
.why-card p {
  color: #334155;
  line-height: 1.7;
}

.cta-section {
  background: linear-gradient(135deg, #1E3A8A, #172554);
  padding: 6rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("/img/pattern.png");
  opacity: 0.05;
}

.cta-content {
  position: relative;
  z-index: 1;
}
.cta-content h2 {
  font-size: clamp(2rem, 5vw, 3rem);
  color: white;
  margin-bottom: 1.5rem;
}
.cta-content p {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 2.5rem;
}

.cta-buttons {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
}

.footer {
  background: #0F172A;
  color: rgba(255, 255, 255, 0.8);
  padding: 4rem 0 2rem;
}
.footer__content {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
@media (max-width: 1024px) {
  .footer__content {
    grid-template-columns: 1fr;
  }
}
.footer__section h3,
.footer__section h4 {
  color: white;
  margin-bottom: 1.5rem;
}
.footer__section p {
  line-height: 1.7;
}
.footer__section ul li {
  margin-bottom: 1rem;
}
.footer__section ul li a:hover {
  color: #DC2626;
}
.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
@media (max-width: 768px) {
  .footer__bottom {
    flex-direction: column;
    gap: 1.5rem;
    text-align: center;
  }
}
.footer__bottom a:hover {
  color: #DC2626;
}

@media (max-width: 768px) {
  .btn {
    width: 100%;
    justify-content: center;
  }
}/*# sourceMappingURL=tarifs.css.map */