@charset "UTF-8";
/* ==========================================================================
   1. Import & Variables de base
   ========================================================================== */
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700&display=swap");
/* ==========================================================================
   2. Styles Généraux (Reset)
   ========================================================================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Inter", sans-serif;
  background-color: whitesmoke;
  color: #333333;
  line-height: 1.6;
  display: grid;
  grid-template-columns: 200px 1fr;
  grid-template-rows: 80px 1fr;
  grid-template-areas: "navbar navbar" "aside main";
}
body.nav-open {
  overflow: hidden;
}
body nav {
  grid-area: navbar;
  background: #ffffff;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  top: 0;
  position: sticky;
  display: flex;
  align-items: center;
  padding: 0 20px;
  z-index: 100;
  flex-direction: row;
  vertical-align: middle;
  justify-content: space-between;
}
body aside {
  grid-area: aside;
  background: linear-gradient(#ff3131, #1a1a1a);
  padding: 20px;
  box-shadow: 2px 0 4px rgba(0, 0, 0, 0.1);
  top: 100px;
  position: sticky;
  color: white;
  height: 100%;
  margin-left: 20px;
  margin-top: 20px;
  border-radius: 15px;
}
body aside ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 15px;
}
body aside ul li a {
  border-radius: 10px;
  padding: 10px;
  color: white;
  font-weight: bold;
  transition: color 0.3s ease;
  width: 100%;
}
body aside ul li a:hover {
  background: white;
  color: #ff3131;
  border-radius: 10px;
}
body main {
  grid-area: main;
  padding: 40px;
  height: calc(100vh - 120px);
}

.container {
  width: 90%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 25px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.25);
  border-radius: 15px;
}

h1, h2, h3 {
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
}

section {
  padding: 60px 0;
}
section .containerBox {
  display: flex;
  flex-direction: row;
  gap: 20px;
  justify-content: space-around;
}
section .containerBox .box {
  background: #ffffff;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.25);
  height: 100px;
  width: 350px;
  text-align: center;
}

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

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style-type: none;
}

/* ==========================================================================
   3. Styles des Composants Principaux
   ========================================================================== */
.main-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: transparent;
  transition: background-color 0.4s ease, box-shadow 0.4s ease;
}
.main-header.scrolled {
  background-color: #ffffff;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}
.main-header .container {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 20px;
  padding: 20px 0;
}
@media (max-width: 992px) {
  .main-header .container {
    grid-template-columns: auto 1fr;
  }
}
.main-header .logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 24px;
  font-weight: 700;
  color: #1a1a1a;
}
.main-header .main-nav {
  justify-self: center;
}
.main-header .main-nav ul {
  display: flex;
  gap: 30px;
  padding: right 15px;
}
.main-header .main-nav a {
  font-weight: 600;
  transition: color 0.3s ease;
}
.main-header .main-nav a:hover {
  color: #ff3131;
}
.main-header .main-nav .hidden {
  display: none;
}
@media (max-width: 992px) {
  .main-header .main-nav {
    display: none;
  }
  body.nav-open .main-header .main-nav {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(26, 26, 26, 0.98);
    z-index: 1000;
  }
  body.nav-open .main-header .main-nav .hidden {
    display: block !important;
  }
  body.nav-open .main-header .main-nav ul {
    flex-direction: column;
    gap: 40px;
  }
  body.nav-open .main-header .main-nav a {
    color: #ffffff;
    font-size: 24px;
    transition: color 0.3s ease;
  }
  body.nav-open .main-header .main-nav a:hover {
    color: #ff3131;
  }
}
.main-header .header-actions {
  display: flex;
  align-items: center;
  gap: 20px;
  justify-self: end;
}
@media (max-width: 992px) {
  .main-header .header-actions {
    display: none;
  }
}
.main-header .nav-toggle {
  display: none;
  justify-self: end;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 10px;
  z-index: 1001;
}
.main-header .nav-toggle .hamburger {
  display: block;
  position: relative;
  width: 25px;
  height: 3px;
  background: #1a1a1a;
  transition: background 0.2s ease-in-out;
}
.main-header .nav-toggle .hamburger::before, .main-header .nav-toggle .hamburger::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 3px;
  background: #1a1a1a;
  transition: transform 0.3s ease-in-out;
}
.main-header .nav-toggle .hamburger::before {
  top: -8px;
}
.main-header .nav-toggle .hamburger::after {
  top: 8px;
}
@media (max-width: 992px) {
  .main-header .nav-toggle {
    display: block;
  }
}

body.nav-open .nav-toggle .hamburger {
  background: transparent;
}
body.nav-open .nav-toggle .hamburger::before {
  transform: rotate(45deg) translate(5px, 6px);
  background: #ffffff;
}
body.nav-open .nav-toggle .hamburger::after {
  transform: rotate(-45deg) translate(5px, -6px);
  background: #ffffff;
}

.btn {
  display: inline-block;
  padding: 12px 28px;
  border-radius: 50px;
  font-weight: 700;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease, color 0.3s ease;
  border: 2px solid transparent;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}
.btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}
.btn-accent {
  background-color: #ff3131;
  color: #ffffff;
  border-color: #ff3131;
}
.btn-accent:hover {
  background-color: rgb(255, 8.2, 8.2);
  border-color: rgb(255, 8.2, 8.2);
}
.btn-light {
  background-color: #fffdfd;
  color: #1a1a1a;
  border-color: #fffdfd;
  box-shadow: none !important;
}
.btn-light:hover {
  background-color: #ff3131;
  color: #ffffff;
}
.btn-logout {
  color: red;
  font-weight: bold;
  box-shadow: none !important;
}
.btn-logout:hover {
  background-color: red;
  color: #ffffff;
}
.btn-secondary {
  background-color: #ffffff;
  color: #ff3131;
  border-color: #ff3131;
}
.btn-secondary:hover {
  background-color: #ff3131;
  color: #ffffff;
}
.btn-primary {
  padding: 15px 40px;
  font-size: 18px;
}

.main-footer {
  background-color: #1a1a1a;
  color: #dcdcdc;
  padding: 30px 0;
  margin-top: 60px;
}
.main-footer .container {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 20px;
}
.main-footer .container p {
  margin: 0;
  justify-self: start;
  text-align: left;
}
.main-footer .footer-socials {
  display: flex;
  gap: 20px;
  justify-self: center;
}
.main-footer .footer-socials a {
  font-size: 20px;
  color: #dcdcdc;
  transition: color 0.3s ease, transform 0.3s ease;
}
.main-footer .footer-socials a:hover {
  color: #ff3131;
  transform: scale(1.2);
}
.main-footer .footer-badges {
  display: flex;
  align-items: center;
  gap: 15px;
  justify-self: end;
}
.main-footer .footer-badges img {
  height: 75px;
  width: auto;
}
@media (max-width: 768px) {
  .main-footer .container {
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 25px;
  }
  .main-footer .container p, .main-footer .container .footer-socials, .main-footer .container .footer-badges {
    justify-self: center;
    text-align: center;
  }
}

/* ==========================================================================
   4. Styles des Sections et Pages
   ========================================================================== */
.hero {
  text-align: center;
  padding: 80px 0;
}
.hero h1 {
  font-size: 48px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 768px) {
  .hero h1 {
    font-size: 36px;
  }
}

.discover-section .section-header,
.pricing-section .section-header,
.contact-section .section-header,
.module-page-section .section-header,
.portfolio h2,
.solutions h2 {
  text-align: center;
  max-width: 1200px;
  margin: 0 auto 60px auto;
  font-size: 36px;
}
.discover-section .section-header p,
.pricing-section .section-header p,
.contact-section .section-header p,
.module-page-section .section-header p,
.portfolio h2 p,
.solutions h2 p {
  font-size: 18px;
  color: #666666;
}

.solutions-grid,
.discover-grid,
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
@media (max-width: 992px) {
  .solutions-grid,
  .discover-grid,
  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .solutions-grid,
  .discover-grid,
  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 450px;
    margin: 0 auto;
  }
}

.card {
  padding: 40px;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.18);
}
.card .card-icon {
  font-size: 40px;
  margin-bottom: 20px;
  color: #ff3131;
}
.card h3 {
  font-size: 22px;
  margin-bottom: 10px;
}
.card p {
  font-size: 15px;
  margin-bottom: 25px;
}
.card-dark {
  background-color: #1a1a1a;
  color: #dcdcdc;
}
.card-dark h3 {
  color: #ffffff;
}
.card-light {
  background-color: #ffffff;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.07);
}

.discover-card {
  background-color: #ffffff;
  border-radius: 20px;
  padding: 40px;
  text-align: center;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}
.discover-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.12);
}
.discover-card .card-icon {
  font-size: 40px;
  margin-bottom: 20px;
  color: #ff3131;
  height: 50px;
}
.discover-card h3 {
  font-size: 22px;
  margin-bottom: 15px;
}
.discover-card p {
  font-size: 15px;
  margin-bottom: 30px;
  color: rgb(127.5, 127.5, 127.5);
  flex-grow: 1;
}
.discover-card .btn {
  margin-top: auto;
}

.card-pricing {
  background-color: #ffffff;
  border-radius: 20px;
  padding: 40px;
  text-align: center;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: auto;
}
.card-pricing:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.12);
}
.card-pricing .card-header {
  margin-bottom: 20px;
  min-height: 80px;
}
.card-pricing .card-title {
  font-size: 24px;
  font-weight: 700;
  color: #1a1a1a;
}
.card-pricing .card-subtitle {
  font-size: 15px;
  color: rgb(127.5, 127.5, 127.5);
}
.card-pricing .card-price {
  margin-bottom: 30px;
  padding-bottom: 30px;
  border-bottom: 1px solid #f0f0f0;
}
.card-pricing .card-price .price {
  font-size: 48px;
  font-weight: 700;
  color: #1a1a1a;
}
.card-pricing .card-price .period {
  font-size: 16px;
  color: #666666;
}
.card-pricing .card-price .monthly-equivalent {
  display: block;
  font-size: 14px;
  font-weight: 400;
  color: #999999;
  margin-top: 5px;
}
.card-pricing .features-list {
  list-style-type: none;
  padding: 0;
  margin-bottom: 40px;
  min-height: 150px;
  text-align: left;
}
.card-pricing .features-list li {
  margin-bottom: 15px;
  position: relative;
  padding-left: 25px;
}
.card-pricing .features-list li::before {
  content: "✓";
  color: #ff3131;
  font-weight: bold;
  position: absolute;
  left: 0;
}
.card-pricing .btn {
  margin-top: auto;
}
.card-pricing.recommended {
  border: 2px solid #ff3131;
}
.card-pricing .badge {
  position: absolute;
  top: 15px;
  right: -45px;
  background-color: #ff3131;
  color: #ffffff;
  padding: 5px 40px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  transform: rotate(45deg);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.pricing-footer {
  text-align: center;
  margin-top: 60px;
  color: rgb(127.5, 127.5, 127.5);
  font-size: 14px;
}
.pricing-footer p {
  max-width: 600px;
  margin: 10px auto;
}

.section-divider {
  border: 0;
  height: 1px;
  background-color: #f0f0f0;
  margin: 80px auto;
  width: 80%;
}

.contact-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 50px;
  background-color: #ffffff;
  padding: 50px;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}
@media (max-width: 992px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

.contact-form, form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.contact-form .form-group, form .form-group {
  display: flex;
  flex-direction: column;
}
.contact-form label, form label {
  margin-bottom: 8px;
  font-weight: 600;
  font-size: 14px;
  color: #666666;
}
.contact-form input, .contact-form textarea, form input, form textarea {
  width: 100%;
  padding: 15px;
  border: 1px solid #f0f0f0;
  border-radius: 8px;
  font-family: "Inter", sans-serif;
  font-size: 16px;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.contact-form input:focus, .contact-form textarea:focus, form input:focus, form textarea:focus {
  outline: none;
  border-color: #ff3131;
  box-shadow: 0 0 0 3px rgba(255, 49, 49, 0.2);
}
.contact-form textarea, form textarea {
  resize: vertical;
}
.contact-form .btn, form .btn {
  align-self: flex-start;
}

.form-message {
  padding: 15px 20px;
  margin-bottom: 30px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  border-left: 5px solid;
}
.form-message.success {
  background-color: #e9f7ef;
  color: #1d6c41;
  border-color: #48c774;
}
.form-message.error {
  background-color: #fff5f5;
  color: #cc0f35;
  border-color: #ff3131;
}

.contact-info-wrapper h3 {
  font-size: 24px;
  margin-bottom: 25px;
  padding-bottom: 15px;
  border-bottom: 1px solid #f0f0f0;
}

.contact-info-list {
  list-style: none;
  padding: 0;
}
.contact-info-list li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 25px;
  font-size: 16px;
}
.contact-info-list li i {
  font-size: 20px;
  color: #ff3131;
  margin-right: 20px;
  margin-top: 5px;
  width: 20px;
  text-align: center;
}
.contact-info-list li a {
  transition: color 0.3s ease;
}
.contact-info-list li a:hover {
  color: #ff3131;
}

.info-note {
  font-size: 14px;
  font-style: italic;
  color: #999999;
  margin-top: 30px;
}

.honeypot {
  display: none;
}

.module-page-section .module-header {
  text-align: center;
  margin-bottom: 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.module-page-section .module-header img {
  max-width: 100%;
  border-radius: 20px;
  margin-bottom: 40px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  height: 300px;
  min-height: 300px;
  max-height: 400px;
  width: auto;
  max-width: 650px;
}
.module-page-section .module-header h1 {
  font-size: 42px;
}
.module-page-section .module-header .subtitle {
  font-size: 20px;
  color: #666666;
  max-width: 700px;
  margin: 10px auto 0 auto;
}
.module-page-section .module-content {
  max-width: 800px;
  margin: 0 auto;
}
.module-page-section .module-content .text-block {
  margin-bottom: 40px;
}
.module-page-section .module-content .text-block h2 {
  font-size: 28px;
  margin-bottom: 15px;
  padding-bottom: 10px;
  border-bottom: 2px solid #ff3131;
  display: inline-block;
}
.module-page-section .module-content .text-block p {
  line-height: 1.8;
  margin-bottom: 20px;
}
.module-page-section .module-content .text-block ul {
  list-style-type: none;
  padding-left: 0;
}
.module-page-section .module-content .text-block ul li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 15px;
}
.module-page-section .module-content .text-block ul li::before {
  content: "✓";
  color: #ff3131;
  font-weight: bold;
  position: absolute;
  left: 0;
  font-size: 20px;
}
.module-page-section .module-cta {
  text-align: center;
  background-color: #ffffff;
  padding: 50px;
  border-radius: 20px;
  margin-top: 60px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}
.module-page-section .module-cta h2 {
  font-size: 32px;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}
@media (max-width: 992px) {
  .portfolio-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 768px) {
  .portfolio-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.portfolio-item {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}
.portfolio-item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.4s ease;
}
.portfolio-item .portfolio-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 49, 49, 0.85);
  color: #ffffff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: opacity 0.4s ease;
}
.portfolio-item .portfolio-overlay i {
  font-size: 28px;
  margin-bottom: 15px;
}
.portfolio-item .portfolio-overlay span {
  font-weight: 600;
  font-size: 16px;
  text-transform: uppercase;
}
.portfolio-item:hover img {
  transform: scale(1.05);
}
.portfolio-item:hover .portfolio-overlay {
  opacity: 1;
}

.cta {
  text-align: center;
}/*# sourceMappingURL=main.css.map */