html {
  scroll-behavior: smooth;
}

.logo,body {
  color: var(--text-white)
}

.burger,
.burger>.active {
  display: none;
  cursor: pointer
}

.cta-button,
nav a {
  text-decoration: none
}

.hero,
.pricing-card,
.section-subtitle,
.section-title {
  text-align: center
}

.cta-button,
.pricing-card {
  transition: transform .3s, box-shadow .3s
}

.hero,
.hero-content,
.pricing,
.pricing-card,
.service-card, .team-card {
  position: relative
}

.hero .highlight,
.price {
  -webkit-text-fill-color: transparent
}

.form-message.error::before,
.form-message.success::before {
  width: 50px;
  height: 50px;
  line-height: 50px;
  color: #fff;
  font-size: 28px;
  margin-bottom: 15px
}

footer,
footer a {
  color: grey
}

.modal-backdrop,
nav {
  backdrop-filter: blur(10px)
}

.modal-content,
.modal-left {
  max-height: 85vh;
  overflow: hidden
}

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

:root {
  --primary-blue: limegreen;
  --secondary-blue: #00CEC8;
  --dark-bg: #000000;
  --darker-bg: #000000;
  --card-bg: #1a1d22;
  --text-white: #F1F5F9;
  --text-gray: #94A3B8;
  --accent: #38BDF8
}

body {
  font-family: "Chakra Petch", sans-serif;
  font-weight: 300;
  font-style: normal;
  line-height: 1.6;
  background-color: var(--dark-bg)
}

nav {
  background-color: rgb(255 255 255 / 3%);
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid rgba(96, 165, 250, .1)
}

nav li {
  padding: 0 1em
}

nav li:last {
  padding: 0
}

nav .container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: .5em 2em
}

.logo {
  font-size: 1.3rem;
  font-weight: 700
}

.logo a,
nav .logo a:hover {
  color: #fff
}

.features-list li:before,
.logo span,
nav a:hover {
  color: var(--primary-blue)
}

nav ul {
  display: flex;
  gap: .5rem;
  list-style: none
}

nav a {
  color: var(--text-gray);
  font-weight: 500;
  transition: color .3s
}

.burger {
  flex-direction: column;
  gap: 5px
}

.burger>.active {
  flex-direction: column;
  gap: 8px
}

.burger span {
  width: 25px;
  height: 2px;
  background-color: var(--text-white);
  transition: .3s;
  border-radius: 2px
}

.burger.active span:first-child {
  transform: rotate(45deg) translate(9px, 8px)
}

.burger.active span:nth-child(2),
.realization-card:hover .realization-badges {
  opacity: 0
}

.burger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px)
}

.hero {
  padding: 120px 5%;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--darker-bg)
}

.hero-content {
  z-index: 1;
  max-width: 900px
}

.hero h1 {
  font-size: 3.5rem;
  color: var(--text-white);
  margin-bottom: 1.5rem;
  font-weight: 800;
  line-height: 1.2
}

.hero .highlight {
  background: linear-gradient(135deg, var(--primary-blue), var(--accent));
  -webkit-background-clip: text;
  background-clip: text
}

.hero p {
  font-size: 1.3rem;
  color: var(--text-gray);
  margin-bottom: 2.5rem;
  line-height: 1.8
}

.cta-button,
.section-title,
.service-card h3,
.team-card h3 {
  color: var(--text-white)
}

.cta-button {
  display: inline-block;
  padding: .5em 1.2em;
  background: linear-gradient(135deg, var(--secondary-blue), var(--primary-blue));
  border-radius: 7px;
  font-weight: 600;
  box-shadow: 0 10px 30px rgba(59, 130, 246, .3)
}

.cta-button:hover,
.submit-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(59, 130, 246, .5)
}

.services {
  padding: 5rem 1em;
  max-width: 1200px;
  margin: 0 auto;
  background-color: var(--dark-bg)
}
.teams {
  padding: 5rem 1em;
  max-width: 1200px;
  margin: 0 auto;
  background-color: var(--dark-bg)
}

.section-title {
  font-size: 2.8rem;
  margin-bottom: 1rem;
  font-weight: 700
}

.section-subtitle {
  color: var(--text-gray);
  margin-bottom: 4rem;
  font-size: 1.1rem
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem
}

.service-card {
  background: var(--card-bg);
  background: linear-gradient(to bottom, #111, rgba(0, 0, 0, .7) 50%, #000 100%);
  padding: 2.5rem;
  border-radius: .5em;
  overflow: hidden;
  border: 1px solid #222
}

.teams-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem
}

.team-card {
  background: var(--card-bg);
  background: linear-gradient(to bottom, #111, rgba(0, 0, 0, .7) 50%, #000 100%);
  padding: 2.5rem;
  border-radius: .5em;
  overflow: hidden;
  border: 1px solid #222
}

.pricing,
footer {
  background-color: var(--darker-bg)
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, #fff);
  transform: scaleX(0);
  transition: transform .2s
}

/*.service-card:hover::before {
  transform: scaleX(1)
}

.service-card:hover {
  transform: scale(1.03);
  box-shadow: 0 10px 30px rgba(255, 255, 255, .1)
}*/

.service-icon {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  filter: grayscale(.3)
}

.service-icon img {
  width: 100px
}

.service-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  font-weight: 600
}

.service-card p {
  color: var(--text-gray);
  line-height: 1.8
}



.team-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, #fff);
  transform: scaleX(0);
  transition: transform .2s
}

.team-card:hover::before {
  transform: scaleX(1)
}

.team-card:hover {
  transform: scale(1.03);
  box-shadow: 0 10px 30px rgba(255, 255, 255, .1)
}

.team-icon {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  filter: grayscale(.3)
}

.team-icon img {
  width: 100px
}

.team-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  font-weight: 600
}

.team-card p {
  color: var(--text-gray);
  line-height: 1.8
}

.featured-badge,
.pricing-card h3 {
  color: var(--text-white);
  font-weight: 600
}

.pricing {
  padding: 5rem 1em
}

.pricing-card,
.pricing-card.featured {
  background: linear-gradient(to bottom, #111, rgba(0, 0, 0, .7) 50%, #000 100%)
}

.pricing-container {
  max-width: 1200px;
  margin: 0 auto
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2.5rem
}

.pricing-card {
  padding: 3rem;
  border-radius: 20px;
  border: 1px solid #333
}

.pricing-card:hover {
  transform: scale(1.03);
  box-shadow: 0 10px 60px rgba(255, 255, 255, .1)
}

.pricing-card.featured {
  border: 1px solid var(--primary-blue)
}

.featured .pricing-button,
.featured-badge,
.pricing-button:hover {
  background: linear-gradient(135deg, var(--secondary-blue), var(--primary-blue))
}

.featured-badge {
  position: absolute;
  top: -17px;
  left: 50%;
  transform: translateX(-50%);
  padding: 6px 20px;
  border-radius: 20px;
  font-size: .85rem;
  box-shadow: 0 5px 15px rgba(59, 130, 246, .4)
}

.pricing-button,
.submit-button {
  box-shadow: 0 10px 30px rgba(59, 130, 246, .3);
  text-decoration: none
}

.pricing-card h3 {
  font-size: 1.8rem;
  margin-bottom: 1rem
}

.price {
  font-size: 3rem;
  background: linear-gradient(135deg, var(--primary-blue), var(--accent));
  -webkit-background-clip: text;
  background-clip: text;
  font-weight: 800;
  margin: 1.5rem 0 0
}

.price-period {
  font-size: 1rem;
  color: var(--text-gray)
}

.features-list {
  list-style: none;
  margin: 2rem 0;
  text-align: left
}

.features-list li {
  padding: .5rem 0 .5rem 30px;
  color: var(--text-gray);
  position: relative
}

.contact-form label,
.pricing-button,
.realization-title,
.submit-button {
  color: var(--text-white)
}

.features-list li:before {
  content: "✓";
  position: absolute;
  left: 0;
  font-weight: 700;
  font-size: 1.2rem
}

.pricing-button {
  padding: .5em 1.2em;
  background: var(--card-bg);
  border-radius: 7px;
  transition: .3s;
  border: 1px solid var(--primary-blue);
  display: inline-block;
  font-weight: 600;
  transition: transform .3s, box-shadow .3s
}

.contact,
footer {
  padding: 5rem 1em
}

.pricing-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(59, 130, 246, .3)
}

.featured .pricing-button {
  border: none
}

.featured .pricing-button:hover {
  transform: translateY(-2px) scale(1.05)
}

.contact {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  background-color: var(--dark-bg)
}

.contact-form {
  margin-top: 3rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem
}

.form-group {
  text-align: left
}

.form-message,
.modal-button,
footer {
  text-align: center
}

.contact-form label {
  display: block;
  margin-bottom: .5rem;
  font-weight: 500
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 15px 20px;
  border-radius: 7px;
  font-size: 1rem;
  transition: .3s;
  border: 1px solid rgba(255, 255, 255, .2);
  color: var(--text-white);
  background: #000
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: 0;
  border-color: var(--primary-blue);
  box-shadow: 0 0 0 3px rgba(96, 165, 250, .1)
}

.contact-form textarea {
  min-height: 150px;
  resize: vertical
}

.submit-button {
  padding: .5em 1.2em;
  background: linear-gradient(135deg, var(--secondary-blue), var(--primary-blue));
  border: none;
  border-radius: 7px;
  font-size: 1.1rem;
  cursor: pointer;
  transition: transform .3s, box-shadow .3s;
  display: inline-block;
  background: linear-gradient(135deg, var(--secondary-blue), var(--primary-blue));
  font-weight: 500;
  font-family: 'Chakra Petch'
}

.submit-button:disabled {
  opacity: .6;
  cursor: not-allowed
}

.form-message {
  margin-top: 2rem;
  padding: 25px 30px;
  border-radius: 15px;
  opacity: 0;
  visibility: hidden;
  font-size: 16px;
  font-weight: 500;
  transition: .4s ease-out;
  position: relative;
  transform: translateY(20px)
}

.form-message.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0)
}

.form-message.success {
  background: linear-gradient(135deg, rgba(16, 185, 129, .15), rgba(16, 185, 129, .05));
  color: #10b981;
  border: 2px solid rgba(16, 185, 129, .4);
  box-shadow: 0 8px 20px rgba(16, 185, 129, .25)
}

.form-message.success strong {
  display: block;
  font-size: 20px;
  margin-bottom: 8px;
  color: #059669
}

.form-message.success::before {
  content: "✓";
  display: inline-block;
  background: linear-gradient(135deg, #10b981, #059669);
  border-radius: 50%;
  font-weight: 700;
  box-shadow: 0 4px 12px rgba(16, 185, 129, .4)
}

.form-message.error {
  background: linear-gradient(135deg, rgba(239, 68, 68, .15), rgba(239, 68, 68, .05));
  color: #ef4444;
  border: 2px solid rgba(239, 68, 68, .4);
  box-shadow: 0 8px 20px rgba(239, 68, 68, .25)
}

.pricing::before,
hr {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--primary-blue), transparent)
}

.form-message.error strong {
  display: block;
  font-size: 20px;
  margin-bottom: 8px;
  color: #dc2626
}

.form-message.error::before {
  content: "⨉";
  display: inline-block;
  background: linear-gradient(135deg, #ef4444, #dc2626);
  border-radius: 50%;
  font-weight: 700;
  box-shadow: 0 4px 12px rgba(239, 68, 68, .4)
}

footer {
  border-top: 1px solid rgba(96, 165, 250, .1);
  display: flex;
  justify-content: center;
  gap: 1em
}

footer img {
  filter: brightness(.5);
  padding-bottom: 2em
}

@media (max-width:768px) {
  .burger {
    display: flex
  }

  nav ul {
    position: fixed;
    right: -100%;
    top: 50px;
    flex-direction: column;
    background-color: rgba(0, 0, 0, .9);
    backdrop-filter: blur(10px);
    width: 100%;
    text-align: center;
    transition: right .3s;
    box-shadow: 0 10px 27px rgba(0, 0, 0, .3);
    padding: 2rem 0;
    height: 100vh
  }

  nav ul.active {
    right: 0
  }

  nav ul li {
    margin: 1rem 0
  }

  .hero {
    padding: 80px 5%;
    min-height: 80vh
  }

  .hero h1 {
    font-size: 2.2rem
  }

  .hero p {
    font-size: 1.1rem
  }

  .section-title {
    font-size: 2rem
  }

  .services-grid {
    display: grid;
    grid-template-columns: 2fr 2fr;
    gap: .5em
  }

  .service-card {
    padding: 1em
  }

  .service-card h3 {
    font-size: 1.3rem;
    color: var(--text-white);
    margin-bottom: 1rem;
    font-weight: 400;
    line-height: normal
  }

  .service-card p {
    line-height: 1.3
  }

  .teams-grid {
    display: grid;
    grid-template-columns: 2fr 2fr;
    gap: .5em
  }

  .team-card {
    padding: 1em
  }

  .team-card h3 {
    font-size: 1.3rem;
    color: var(--text-white);
    margin-bottom: 1rem;
    font-weight: 400;
    line-height: normal
  }

  .team-card p {
    line-height: 1.3
  }

  .pricing-slider-wrapper {
    overflow: hidden;
    position: relative;
    width: 100%;
    padding: 2rem 0
  }

  .pricing-grid {
    display: flex;
    gap: .5rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none
  }

  .pricing-card {
    padding: 3em 2em !important;
    flex: 0 0 85%;
    scroll-snap-align: center;
    transition: .4s cubic-bezier(.4, 0, .2, 1);
    opacity: .5;
    transform: scale(.9)
  }

  .pricing-grid::-webkit-scrollbar {
    display: none
  }

  .pricing-card.active {
    opacity: 1;
    transform: scale(.95)
  }

  .pricing-card:not(.active) {
    filter: brightness(.7)
  }

  .pricing-card.featured {
    border: 1px solid var(--primary-blue)
  }

  .featured-badge {
    z-index: 10
  }

  footer {
    flex-direction: column;
    align-items: center
  }

  footer .pcontainer {
    align-items: center !important
  }
}

.pricing::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0
}

hr {
  border: none
}

.hero {
  background: linear-gradient(to bottom, #000, rgba(0, 0, 0, .3) 50%, #000 100%), url(hero.gif);
  background-size: cover;
  background-position: center;
}

footer .pcontainer {
  display: flex;
  flex-direction: column;
  align-items: flex-start
}

@media (min-width:200px) and (max-width:700px) {
  .hero {
    height: 100vh
  }
}

.realizations {
  padding: 7rem 4em;
  margin: 0 auto;
  background-color: var(--dark-bg)
}

.realizations-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 4rem
}

.realization-card {
  position: relative;
  border-radius: 7px;
  overflow: hidden;
  cursor: pointer;
  transition: transform .3s, box-shadow .3s;
  height: 277px;
  background: var(--card-bg);
  border: 1px solid #222
}

.realization-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 206, 200, .2)
}

.modal-badges .badge,
.realization-badges .badge {
  font-weight: 400;
  box-shadow: 0 2px 8px rgba(0, 206, 200, .3)
}

.realization-image {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: top;
  position: relative;
  transition: transform .5s;
  background-repeat: no-repeat;
  filter: grayscale(100%)
}

.realization-card:hover .realization-image {
  transform: scale(1.05);
  filter: grayscale(0%)
}

.realization-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, .95), rgba(0, 0, 0, .7) 70%, transparent);
  padding: 2rem;
  transform: translateY(100%);
  transition: transform .4s
}

.realization-card:hover .realization-overlay {
  transform: translateY(0)
}

.realization-title {
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: .5rem
}

.realization-description {
  color: var(--text-gray);
  font-size: .95rem;
  line-height: 1.5
}

.realization-badges {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  right: 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  z-index: 2;
  transition: opacity .3s
}

.modal,
.modal-backdrop {
  top: 0;
  left: 0;
  height: 100%;
  width: 100%
}

.realization-badges .badge {
  background: linear-gradient(135deg, var(--secondary-blue), var(--primary-blue));
  color: var(--text-white);
  padding: .1em .5em;
  border-radius: 5px;
  font-size: .7rem
}

.modal {
  display: none;
  position: fixed;
  z-index: 9999;
  animation: .3s fadeIn
}

.modal-close,
.modal.active {
  display: flex;
  align-items: center
}

.modal.active {
  justify-content: center
}

.modal-backdrop {
  position: absolute;
  background: rgba(0, 0, 0, .9)
}

.modal-content {
  position: relative;
  border-radius: 7px;
  max-width: 1200px;
  width: 90%;
  box-shadow: 0 20px 60px rgba(0, 206, 200, .3);
  border: 1px solid rgba(0, 206, 200, .2);
  animation: .4s slideUp
}

.modal-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: rgba(255, 255, 255, .1);
  border: 1px solid rgba(255, 255, 255, .2);
  color: var(--text-white);
  font-size: 2rem;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  justify-content: center;
  transition: .3s;
  z-index: 10;
  line-height: 1;
  padding: 0
}

.modal-close:hover {
  background: rgba(255, 255, 255, .2);
  transform: rotate(90deg)
}

.modal-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  height: 100%
}

.modal-left {
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center
}

.modal-badges .badge,
.modal-button {
  background: linear-gradient(135deg, var(--secondary-blue), var(--primary-blue));
  color: var(--text-white)
}

.modal-left img {
  width: 100%;
  height: 100%;
  object-fit: cover
}

.modal-right {
  padding: 3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow-y: auto;
  max-height: 85vh
}

.modal-right h3 {
  color: var(--text-white);
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.2
}

.modal-badges {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  margin-bottom: 2rem
}

.modal-badges .badge {
  padding: .1em .7em;
  border-radius: 7px;
  font-size: .85rem
}

.modal-right p {
  color: var(--text-gray);
  line-height: 1.8;
  font-size: 1.05rem;
  margin-bottom: 2rem
}

.modal-button {
  display: inline-block;
  padding: .8rem 2rem;
  text-decoration: none;
  border-radius: 10px;
  font-weight: 600;
  transition: .3s;
  box-shadow: 0 5px 20px rgba(0, 206, 200, .3);
  align-self: flex-start
}

.modal-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 206, 200, .5)
}

@keyframes fadeIn {
  from {
    opacity: 0
  }

  to {
    opacity: 1
  }
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(50px)
  }

  to {
    opacity: 1;
    transform: translateY(0)
  }
}

@media (min-width:769px) and (max-width:1140px) {
  .realizations {
    padding: 7rem 3em
  }

  .realizations-grid {
    grid-template-columns: repeat(2, 1fr)
  }
}

@media (max-width:768px) {
  .realizations {
    padding: 7rem 2em
  }

  .realizations-grid {
    grid-template-columns: 1fr;
    gap: 2rem
  }

  .realization-card {
    height: 350px
  }

  .modal-content {
    width: 95%;
    max-height: 90vh;
    overflow-y: scroll
  }

  .modal-body {
    grid-template-columns: 1fr;
    max-height: 90vh
  }

  .modal-right {
    padding: 2rem
  }

  .modal-right h3 {
    font-size: 1.5rem
  }

  .modal-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: rgba(255, 255, 255, .5);
    border: 1px solid rgba(255, 255, 255, .2);
    color: #090909;
    font-size: 2rem;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    line-height: 1;
    padding: 0;
    box-shadow: -3px 3px 3px rgba(0, 0, 0, .3)
  }
}
.badge-titre {
    padding: .3em .6em;
    background: linear-gradient(to left,#7B1FA2,#AB47BC 100%);
    color:white;
    margin-left: .5em;
    font-size: 0.4em;
    border-radius: 3px;
    position: relative;
    top: -.4em;
    font-weight: 500;
    letter-spacing: .1em;
}