@import "../node_modules/bootstrap-icons/font/bootstrap-icons.css";
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background: #ffffff;
  color: #11181b;
  font-family: "DM Sans", sans-serif;
  line-height: 1.6;
}

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

button {
  font-family: inherit;
}

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

.container {
  width: min(100% - 40px, 1180px);
  margin-inline: auto;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(15px);
  border-bottom: 1px solid rgba(17, 24, 27, 0.1);
}
.header__content {
  min-height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.logo {
  font-family: "Space Grotesk", sans-serif;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 2px;
}
.logo span {
  color: #19bfb2;
}

.nav {
  display: flex;
  align-items: center;
  gap: 35px;
}
.nav__link {
  color: #5f7076;
  font-size: 14px;
  font-weight: 500;
  transition: 0.3s ease;
}
.nav__link:hover, .nav__link.active {
  color: #11181b;
}
.nav__link.active {
  position: relative;
}
.nav__link.active::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 100%;
  height: 2px;
  background: #19bfb2;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 14px 22px;
  border-radius: 10px;
  background: #19bfb2;
  color: #11181b;
  font-size: 14px;
  font-weight: 600;
  transition: 0.3s ease;
}
.btn:hover {
  background: #35d8cb;
  transform: translateY(-2px);
}
.btn--small {
  padding: 10px 17px;
}
.btn--outline {
  background: transparent;
  border: 1px solid rgba(17, 24, 27, 0.1);
}
.btn--outline:hover {
  background: rgba(17, 24, 27, 0.05);
  border-color: rgba(25, 191, 178, 0.45);
}
.btn--light {
  background: #11181b;
  color: #ffffff;
}
.btn--light:hover {
  background: #000000;
  color: #ffffff;
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(17, 24, 27, 0.1);
  border-radius: 10px;
  background: transparent;
  cursor: pointer;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  transition: 0.3s ease;
}
.menu-toggle:hover {
  border-color: rgba(25, 191, 178, 0.45);
  background: rgba(17, 24, 27, 0.04);
}
.menu-toggle span {
  width: 18px;
  height: 2px;
  background: #11181b;
  transition: 0.3s ease;
}

.hero {
  min-height: 100vh;
  padding: 150px 0 100px;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: radial-gradient(circle at 80% 30%, rgba(25, 191, 178, 0.1), transparent 35%);
}
.hero__content {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 80px;
}
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 7px 12px;
  border: 1px solid rgba(17, 24, 27, 0.1);
  border-radius: 100px;
  color: #5f7076;
  font-size: 14px;
  margin-bottom: 25px;
}
.hero__badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #28b86a;
  box-shadow: 0 0 10px rgba(40, 184, 106, 0.5);
}
.hero h1 {
  max-width: 650px;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(40px, 3vw, 60px);
  line-height: 1.02;
  letter-spacing: -3px;
}
.hero h1 span {
  display: block;
  color: #19bfb2;
}
.hero__description {
  max-width: 600px;
  margin: 30px 0;
  color: #5f7076;
  font-size: 17px;
}
.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.hero__stats {
  display: flex;
  gap: 45px;
  margin-top: 55px;
  padding-top: 25px;
  border-top: 1px solid rgba(17, 24, 27, 0.1);
}

.stat {
  display: flex;
  flex-direction: column;
}
.stat strong {
  font-family: "Space Grotesk", sans-serif;
  font-size: 17px;
}
.stat span {
  margin-top: 3px;
  color: #5f7076;
  font-size: 11px;
}

.hero__visual {
  position: relative;
  min-height: 450px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.code-card {
  width: 100%;
  max-width: 500px;
  background: #ffffff;
  border: 1px solid rgba(17, 24, 27, 0.1);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(17, 24, 27, 0.12), 0 0 40px rgba(25, 191, 178, 0.12);
}
.code-card__header {
  height: 48px;
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 0 18px;
  border-bottom: 1px solid rgba(17, 24, 27, 0.1);
  color: #5f7076;
  font-size: 11px;
}
.code-card__dots {
  display: flex;
  gap: 5px;
}
.code-card__dots span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #9aa8ad;
}
.code-card__body {
  padding: 30px 25px;
  font-family: monospace;
  font-size: 14px;
  line-height: 2;
}

.code-line {
  display: flex;
  gap: 20px;
}
.code-line--indent {
  padding-left: 20px;
}

.code-number {
  width: 20px;
  color: #9aa8ad;
}

.code-purple {
  color: #7357c9;
}

.code-blue {
  color: #3199df;
}

.code-green {
  color: #28b86a;
}

.code-white {
  color: #11181b;
}

.floating-card {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 11px 15px;
  background: rgba(17, 24, 27, 0.1);
  border: 1px solid rgba(17, 24, 27, 0.1);
  border-radius: 6px;
  box-shadow: 0 10px 30px rgba(17, 24, 27, 0.1);
  font-size: 11px;
}
.floating-card span {
  color: #19bfb2;
}
.floating-card--top {
  top: 45px;
  right: -10px;
}
.floating-card--bottom {
  bottom: 50px;
  left: -15px;
}
.floating-card--bottom span {
  color: #28b86a;
}

.section {
  padding: 120px 0;
}

.section-label {
  display: block;
  margin-bottom: 15px;
  color: #19bfb2;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 55px;
}
.section-heading div span {
  font-size: 18px;
}
.section-heading h2 {
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(35px, 4vw, 50px);
  line-height: 1.1;
  letter-spacing: -2px;
}
.section-heading h2 span {
  color: #19bfb2;
}
.section-heading > p {
  max-width: 390px;
  color: #5f7076;
  font-size: 14px;
}

/*  **************************  MES SERVICES ****************** */
.services {
  background: #f6f8f9;
}
.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
}
.services__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 35px;
  color: #5f7076;
  font-size: 13px;
}

.service-card {
  position: relative;
  min-height: 230px;
  padding: 30px;
  background: rgba(17, 24, 27, 0.1);
  border: 1px solid rgba(17, 24, 27, 0.1);
  border-radius: 10px;
  overflow: hidden;
  transition: 0.3s ease;
}
.service-card:hover {
  transform: translateY(-5px);
  border-color: rgba(25, 191, 178, 0.45);
  box-shadow: 0 5px 20px rgba(17, 24, 27, 0.08);
}
.service-card__icon {
  width: 45px;
  height: 45px;
  display: grid;
  place-items: center;
  margin-bottom: 25px;
  background: rgba(25, 191, 178, 0.1);
  border-radius: 6px;
  color: #19bfb2;
  font-size: 20px;
}
.service-card h3 {
  margin-bottom: 10px;
  font-family: "Space Grotesk", sans-serif;
  font-size: 18px;
}
.service-card p {
  max-width: 280px;
  color: #11181b;
  font-size: 13px;
}
.service-card__number {
  position: absolute;
  right: 20px;
  bottom: 15px;
  color: rgba(17, 24, 27, 0.04);
  font-family: "Space Grotesk", sans-serif;
  font-size: 60px;
  font-weight: 700;
}

.text-link {
  color: #19bfb2;
  font-weight: 600;
  transition: 0.3s ease;
}
.text-link:hover {
  color: #35d8cb;
}

div.services__footer p {
  font-size: 16px;
  font-weight: 700;
}

.section-label {
  font-size: 16px;
}

.advantages__content {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 100px;
}
.advantages__intro h2 {
  max-width: 450px;
  margin-bottom: 25px;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(38px, 4vw, 55px);
  line-height: 1.05;
  letter-spacing: -2px;
}
.advantages__intro h2 span {
  color: #19bfb2;
}
.advantages__intro p {
  max-width: 470px;
  margin-bottom: 30px;
  color: #5f7076;
  font-size: 14px;
}
.advantages__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
}

.advantage {
  display: flex;
  gap: 15px;
  padding: 25px;
  border: 1px solid rgba(17, 24, 27, 0.1);
  border-radius: 10px;
  background: #f6f8f9;
  transition: 0.3s ease;
}
.advantage:hover {
  border-color: rgba(25, 191, 178, 0.45);
  transform: translateY(-3px);
}
.advantage__icon {
  flex-shrink: 0;
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 6px;
  background: rgba(25, 191, 178, 0.1);
  color: #19bfb2;
  font-weight: 700;
}
.advantage h3 {
  margin-bottom: 5px;
  font-family: "Space Grotesk", sans-serif;
  font-size: 14px;
}
.advantage p {
  color: #5f7076;
  font-size: 12px;
}

.cta {
  padding: 100px 0;
  background: radial-gradient(circle at center, rgba(25, 191, 178, 0.14), transparent 55%), #f6f8f9;
  text-align: center;
}
.cta__content {
  max-width: 700px;
  margin: auto;
}
.cta h2 {
  margin-bottom: 20px;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(38px, 5vw, 60px);
  line-height: 1.05;
  letter-spacing: -2px;
}
.cta h2 span {
  color: #19bfb2;
}
.cta p {
  max-width: 500px;
  margin: 0 auto 30px;
  color: #5f7076;
}

.footer {
  padding: 35px 0;
  border-top: 1px solid rgba(17, 24, 27, 0.1);
  background: #ffffff;
}
.footer__content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}
.footer__content > div p {
  margin-top: 5px;
  color: #5f7076;
  font-size: 11px;
}
.footer__copyright {
  color: #5f7076;
  font-size: 11px;
}

.page-hero {
  padding: 160px 0 100px;
  background: radial-gradient(circle at 80% 30%, rgba(25, 191, 178, 0.1), transparent 40%), #ffffff;
}
.page-hero h1 {
  max-width: 800px;
  margin-bottom: 25px;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(38px, 3vw, 50px);
  line-height: 1.05;
  letter-spacing: -3px;
}
.page-hero h1 span {
  display: block;
  color: #19bfb2;
}
.page-hero p {
  max-width: 650px;
  color: #5f7076;
  font-size: 17px;
}

.services-page {
  background: #f6f8f9;
}
.services-page h2 {
  font-size: 35px;
}

.pricing {
  background: #ffffff;
}
.pricing__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
}
.pricing__note {
  margin-top: 30px;
  color: #5f7076;
  font-size: 12px;
  text-align: center;
}
.pricing h2 {
  font-size: 35px;
}
.pricing .section-label {
  font-size: 25px;
}

.price-card {
  padding: 35px;
  background: #ffffff;
  border: 1px solid rgba(17, 24, 27, 0.1);
  border-radius: 10px;
  transition: 0.3s ease;
}
.price-card:hover {
  transform: translateY(-5px);
  border-color: rgba(25, 191, 178, 0.45);
  box-shadow: 0 10px 30px rgba(17, 24, 27, 0.1);
}
.price-card__label {
  display: block;
  margin-bottom: 20px;
  color: #19bfb2;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 1.5px;
}
.price-card a {
  background-color: rgba(17, 24, 27, 0.1);
}
.price-card h3 {
  margin-bottom: 15px;
  font-family: "Space Grotesk", sans-serif;
  font-size: 18px;
  color: #5f7076;
}
.price-card h3 strong {
  display: block;
  margin-top: 5px;
  color: #11181b;
  font-size: 35px;
}
.price-card p {
  max-width: 450px;
  min-height: 65px;
  margin-bottom: 25px;
  color: #5f7076;
  font-size: 13px;
}
.price-card--featured {
  border-color: rgba(25, 191, 178, 0.45);
  box-shadow: 0 0 40px rgba(25, 191, 178, 0.12);
}

p.pricing__note {
  font-size: 12px;
  font-weight: 700;
  color: #e54858;
}

.realization {
  background: #f6f8f9;
}
.realization h2 {
  font-size: 40px;
}
.realization__card {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 50px;
  align-items: center;
  padding: 50px;
  background: #ffffff;
  border: 1px solid rgba(17, 24, 27, 0.1);
  border-radius: 15px;
}
.realization__tag {
  display: inline-block;
  margin-bottom: 20px;
  color: #19bfb2;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
}
.realization h3 {
  margin-bottom: 20px;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(28px, 3vw, 35px);
}
.realization p {
  max-width: 600px;
  color: #5f7076;
  font-size: 14px;
}
.realization__skills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 25px;
}
.realization__skills span {
  padding: 7px 12px;
  background: rgba(25, 191, 178, 0.08);
  border: 1px solid rgba(17, 24, 27, 0.1);
  border-radius: 100px;
  color: #5f7076;
  font-size: 11px;
}
.realization__visual {
  min-height: 250px;
  display: grid;
  place-items: center;
  background: radial-gradient(circle, rgba(25, 191, 178, 0.14), transparent 65%);
  border: 1px solid rgba(17, 24, 27, 0.1);
  border-radius: 10px;
}
.realization__visual i {
  color: #19bfb2;
  font-size: 75px;
  opacity: 0.8;
}

.contact {
  background: #ffffff;
}
.contact__grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 80px;
  align-items: start;
}
.contact__info h2 {
  margin-bottom: 20px;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(38px, 3vw, 55px);
  line-height: 1.05;
  letter-spacing: -2px;
}
.contact__info h2 span {
  display: block;
  color: #19bfb2;
}
.contact__info > p {
  max-width: 450px;
  margin-bottom: 35px;
  color: #5f7076;
  font-size: 14px;
}
.contact__items {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 15px;
  background: #f6f8f9;
  border: 1px solid rgba(17, 24, 27, 0.1);
  border-radius: 10px;
  transition: 0.3s ease;
}
.contact-item:hover {
  border-color: rgba(25, 191, 178, 0.45);
  transform: translateX(5px);
}
.contact-item__icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  background: rgba(25, 191, 178, 0.1);
  border-radius: 6px;
  color: #19bfb2;
  font-size: 18px;
}
.contact-item strong,
.contact-item small {
  display: block;
}
.contact-item strong {
  font-family: "Space Grotesk", sans-serif;
  font-size: 14px;
}
.contact-item small {
  margin-top: 3px;
  color: #5f7076;
  font-size: 11px;
}

.contact__form-wrapper {
  padding: 35px;
  background: #ffffff;
  border: 1px solid rgba(17, 24, 27, 0.1);
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(17, 24, 27, 0.1);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.contact-form .btn {
  align-self: flex-start;
  border: 0;
  cursor: pointer;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.form-group label {
  color: #11181b;
  font-size: 13px;
  font-weight: 600;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 13px 15px;
  background: #f6f8f9;
  border: 1px solid rgba(17, 24, 27, 0.1);
  border-radius: 10px;
  outline: none;
  color: #11181b;
  font-family: "DM Sans", sans-serif;
  font-size: 13px;
  transition: 0.3s ease;
}
.form-group input::-moz-placeholder, .form-group select::-moz-placeholder, .form-group textarea::-moz-placeholder {
  color: #9aa8ad;
}
.form-group input::placeholder,
.form-group select::placeholder,
.form-group textarea::placeholder {
  color: #9aa8ad;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: #19bfb2;
  box-shadow: 0 0 0 3px rgba(25, 191, 178, 0.12);
}
.form-group textarea {
  resize: vertical;
  min-height: 150px;
}
.form-group select {
  cursor: pointer;
}

.contact-form__note {
  margin-top: 12px;
  font-size: 11px;
  line-height: 1.5;
  color: #e54858;
  text-align: center;
}
.contact-form__note span {
  color: #e54858;
  font-weight: 700;
}

.form-message {
  margin-bottom: 25px;
  padding: 15px 18px;
  border-radius: 10px;
  font-size: 13px;
  display: none;
}
.form-message.success, .form-message.error {
  display: block;
}
.form-message.success {
  background: rgba(69, 212, 131, 0.08);
  border: 1px solid rgba(69, 212, 131, 0.25);
  color: #28b86a;
}
.form-message.error {
  background: rgba(255, 92, 108, 0.08);
  border: 1px solid rgba(255, 92, 108, 0.25);
  color: #e54858;
}

/* **************************** RGPD ******************* */
.privacy-content {
  max-width: 850px;
  margin: 0 auto;
}
.privacy-content h2 {
  margin-top: 40px;
  margin-bottom: 15px;
  font-size: 22px;
  color: #11181b;
}
.privacy-content p {
  margin-bottom: 15px;
  color: #5f7076;
  font-size: 14px;
  line-height: 1.8;
}
.privacy-content ul {
  margin: 0 0 20px;
  padding-left: 20px;
  color: #5f7076;
  font-size: 14px;
  line-height: 1.8;
}
.privacy-content ul li {
  margin-bottom: 5px;
}
.privacy-content a {
  color: #19bfb2;
  text-decoration: none;
}
.privacy-content a:hover {
  text-decoration: underline;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(25px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}
.hero__badge {
  animation: fadeUp 0.6s ease forwards;
}

.hero h1 {
  animation: fadeUp 0.7s ease 0.1s forwards;
  opacity: 0;
}

.hero__description {
  animation: fadeUp 0.7s ease 0.2s forwards;
  opacity: 0;
}

.hero__actions {
  animation: fadeUp 0.7s ease 0.3s forwards;
  opacity: 0;
}

.hero__stats {
  animation: fadeUp 0.7s ease 0.4s forwards;
  opacity: 0;
}

.code-card {
  animation: fadeIn 0.8s ease 0.2s forwards, float 5s ease-in-out 1s infinite;
  opacity: 0;
}

.floating-card {
  animation: float 4s ease-in-out infinite;
}

.service-card,
.advantage {
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
  transform: translateY(-6px);
  border-color: rgba(25, 191, 178, 0.45);
  box-shadow: 0 10px 30px rgba(17, 24, 27, 0.1);
}

.advantage:hover {
  transform: translateY(-4px);
  border-color: rgba(25, 191, 178, 0.45);
}

@media (max-width: 650px) {
  .nav {
    position: absolute;
    top: 70px;
    left: 15px;
    right: 15px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 15px;
    background: #ffffff;
    border: 1px solid rgba(17, 24, 27, 0.1);
    border-radius: 10px;
    box-shadow: 0 20px 50px rgba(17, 24, 27, 0.12);
  }
  .nav.active {
    display: flex;
  }
  .nav__link {
    padding: 12px 10px;
    border-radius: 6px;
  }
  .nav__link:hover {
    background: rgba(17, 24, 27, 0.05);
  }
  .nav__link.active::after {
    display: none;
  }
  .menu-toggle.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }
  .menu-toggle.active span:nth-child(2) {
    opacity: 0;
  }
  .menu-toggle.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }
}
@media (max-width: 900px) {
  .nav {
    gap: 20px;
  }
  .header .btn {
    display: none;
  }
  .hero__content {
    grid-template-columns: 1fr;
    gap: 60px;
  }
  .hero__text {
    max-width: 700px;
  }
  .hero__visual {
    max-width: 600px;
  }
  .services__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .advantages__content {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  .realization__card {
    grid-template-columns: 1fr;
  }
  .contact__grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  .contact__info > p {
    max-width: 600px;
  }
}
@media (max-width: 650px) {
  .container {
    width: min(100% - 30px, 1180px);
  }
  .header__content {
    min-height: 70px;
  }
  .nav {
    display: none;
  }
  .menu-toggle {
    display: flex;
  }
  .hero {
    padding: 120px 0 70px;
  }
  .hero h1 {
    font-size: clamp(43px, 13vw, 60px);
    letter-spacing: -2px;
  }
  .hero__description {
    font-size: 15px;
  }
  .hero__stats {
    gap: 20px;
    justify-content: space-between;
  }
  .hero__visual {
    min-height: 350px;
  }
  .code-card__body {
    padding: 20px 15px;
    font-size: 11px;
  }
  .floating-card {
    display: none;
  }
  .section {
    padding: 80px 0;
  }
  .section-heading {
    display: block;
  }
  .section-heading > p {
    margin-top: 20px;
  }
  .services__grid {
    grid-template-columns: 1fr;
  }
  .services__footer {
    display: block;
  }
  .services__footer .text-link {
    display: block;
    margin-top: 10px;
  }
  .advantages__list {
    grid-template-columns: 1fr;
  }
  .cta {
    padding: 80px 0;
  }
  .footer__content {
    display: block;
  }
  .footer__content .footer__copyright {
    margin-top: 20px;
  }
  .page-hero {
    padding: 120px 0 70px;
  }
  .page-hero h1 {
    font-size: clamp(42px, 12vw, 58px);
    letter-spacing: -2px;
  }
  .page-hero p {
    font-size: 15px;
  }
  .pricing__grid {
    grid-template-columns: 1fr;
  }
  .price-card {
    padding: 25px;
  }
  .price-card h3 strong {
    font-size: 30px;
  }
  .realization__card {
    padding: 25px;
  }
  .realization__visual {
    min-height: 180px;
  }
  .realization__visual i {
    font-size: 70px;
  }
  .contact__form-wrapper {
    padding: 20px;
  }
  .contact-form .btn {
    width: 100%;
  }
}/*# sourceMappingURL=style.css.map */