/* =========================================================
   ULINZI TECHNOLOGY
   STYLE PRINCIPAL
========================================================= */

/* =========================================================
   VARIABLES
========================================================= */

:root {
  --orange: #f45116;
  --orange-dark: #d83e0b;

  --dark: #24262a;
  --dark-2: #1d1f22;
  --dark-3: #17191c;

  --white: #ffffff;
  --light: #f5f5f3;

  --gray: #a7a9ad;
  --gray-dark: #6f7277;

  --border-dark: rgba(255, 255, 255, 0.12);
  --border-light: rgba(0, 0, 0, 0.1);

  --max-width: 1200px;

  --transition: 0.3s ease;
}

/* =========================================================
   RESET
========================================================= */

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", Arial, sans-serif;

  color: var(--dark);

  background: var(--white);

  line-height: 1.6;

  overflow-x: hidden;
}

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

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

button,
input,
textarea,
select {
  font: inherit;
}

/* =========================================================
   CONTAINER
========================================================= */

.container {
  width: min(calc(100% - 60px), var(--max-width));

  margin: 0 auto;
}

/* =========================================================
   HEADER
========================================================= */

.header {
  position: fixed;

  top: 0;
  left: 0;

  width: 100%;

  z-index: 1000;

  background: rgba(36, 38, 42, 0.94);

  backdrop-filter: blur(15px);

  border-bottom: 1px solid var(--border-dark);

  transition: var(--transition);
}

.nav-container {
  min-height: 82px;

  display: flex;

  align-items: center;

  justify-content: space-between;

  gap: 30px;
}

/* LOGO */

.logo-link {
  width: 190px;
}

.logo {
  width: 70%;

  height: auto;
  object-fit: contain;
  border-radius: 25%;
  margin-top: 20px;
}

/* NAV */

.desktop-nav {
  display: flex;

  align-items: center;

  gap: 34px;
}

.nav-link {
  position: relative;

  color: rgba(255, 255, 255, 0.78);

  font-size: 14px;

  font-weight: 500;

  transition: var(--transition);
}

.nav-link:hover,
.nav-link.active {
  color: white;
}

.nav-link::after {
  content: "";

  position: absolute;

  left: 0;
  bottom: -8px;

  width: 0;

  height: 2px;

  background: var(--orange);

  transition: var(--transition);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

/* BOUTON HEADER */

.header-button {
  display: inline-flex;

  align-items: center;

  gap: 10px;

  padding: 13px 19px;

  color: white;

  background: var(--orange);

  border-radius: 7px;

  font-size: 13px;

  font-weight: 700;

  transition: var(--transition);
}

.header-button:hover {
  background: var(--orange-dark);

  transform: translateY(-2px);
}

.header-button span {
  font-size: 18px;
}

/* MENU MOBILE */

.menu-button {
  display: none;

  width: 50px;
  height: 50px;

  border: 1px solid rgba(255, 255, 255, 0.15);

  border-radius: 10px;

  background: #292b2f;

  cursor: pointer;

  padding: 12px;
}

.menu-button span {
  display: block;

  height: 2px;

  background: white;

  margin: 5px 0;

  transition: var(--transition);
}

.mobile-nav {
  display: none;
}

/* =========================================================
   HERO
========================================================= */

.hero {
  position: relative;

  min-height: 850px;

  padding-top: 180px;

  background: var(--dark);

  color: white;

  overflow: hidden;
}

.hero-grid {
  position: absolute;

  inset: 0;

  opacity: 0.08;

  background-image:
    linear-gradient(rgba(255, 255, 255, 0.3) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.3) 1px, transparent 1px);

  background-size: 64px 64px;
}

.hero-grid::after {
  content: "";

  position: absolute;

  inset: 0;

  background: radial-gradient(
    circle at 70% 35%,
    rgba(244, 81, 22, 0.18),
    transparent 35%
  );
}

.hero-container {
  position: relative;

  z-index: 2;

  display: grid;

  grid-template-columns: 1.1fr 0.9fr;

  align-items: center;

  gap: 80px;
}

.hero-content {
  max-width: 720px;
}

/* EYEBROW */

.eyebrow {
  display: inline-flex;

  align-items: center;

  gap: 12px;

  padding: 11px 18px;

  margin-bottom: 32px;

  border: 1px solid rgba(255, 255, 255, 0.18);

  border-radius: 50px;

  background: rgba(255, 255, 255, 0.04);

  color: #d5d6d8;

  font-size: 14px;
}

.eyebrow-dot {
  width: 9px;
  height: 9px;

  border-radius: 50%;

  background: var(--orange);

  box-shadow: 0 0 0 5px rgba(244, 81, 22, 0.1);
}

/* TITRE */

.hero h1 {
  max-width: 850px;

  font-size: clamp(52px, 7vw, 92px);

  line-height: 0.99;

  letter-spacing: -4px;

  font-weight: 800;

  margin-bottom: 34px;
}

.hero h1 span {
  color: white;
}

.hero h1 strong {
  display: inline;

  font-weight: 800;
}

.hero h1 em {
  color: var(--orange);

  font-style: normal;
}

.hero-description {
  max-width: 690px;

  color: #b7b9bd;

  font-size: 18px;

  line-height: 1.75;

  margin-bottom: 42px;
}

/* ACTIONS */

.hero-actions {
  display: flex;

  align-items: center;

  gap: 14px;

  flex-wrap: wrap;
}

.btn {
  min-height: 55px;

  padding: 0 24px;

  display: inline-flex;

  justify-content: center;

  align-items: center;

  gap: 14px;

  border-radius: 8px;

  font-weight: 700;

  font-size: 14px;

  transition: var(--transition);
}

.btn-primary {
  color: white;

  background: var(--orange);
}

.btn-primary:hover {
  background: var(--orange-dark);

  transform: translateY(-3px);
}

.btn-secondary {
  color: white;

  border: 1px solid rgba(255, 255, 255, 0.2);

  background: rgba(255, 255, 255, 0.02);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.08);
}

/* HERO VISUAL */

.hero-visual {
  display: flex;

  justify-content: center;
}

.security-card {
  position: relative;

  width: 360px;

  min-height: 420px;

  padding: 24px;

  border: 1px solid rgba(255, 255, 255, 0.16);

  border-radius: 20px;

  background: linear-gradient(
    145deg,
    rgba(255, 255, 255, 0.08),
    rgba(255, 255, 255, 0.025)
  );

  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.3);

  backdrop-filter: blur(10px);
}

.security-card::before {
  content: "";

  position: absolute;

  width: 170px;
  height: 170px;

  border-radius: 50%;

  top: 90px;
  left: 50%;

  transform: translateX(-50%);

  background: radial-gradient(circle, rgba(244, 81, 22, 0.35), transparent 65%);

  filter: blur(5px);
}

.security-card-top {
  position: relative;

  z-index: 2;

  display: flex;

  align-items: center;

  gap: 9px;

  font-size: 11px;

  letter-spacing: 1.5px;

  color: #c7c8ca;
}

.status-dot {
  width: 8px;
  height: 8px;

  border-radius: 50%;

  background: #27d17f;
}

.live {
  margin-left: auto;

  color: var(--orange);
}

.security-icon {
  position: relative;

  z-index: 2;

  width: 150px;
  height: 150px;

  margin: 65px auto 35px;

  display: grid;

  place-items: center;

  border: 1px solid rgba(244, 81, 22, 0.35);

  border-radius: 50%;

  color: var(--orange);
}

.security-icon svg {
  width: 75px;
  height: 75px;
}

.security-text {
  position: relative;

  z-index: 2;

  text-align: center;
}

.security-text strong {
  display: block;

  color: white;

  font-size: 18px;

  margin-bottom: 6px;
}

.security-text span {
  color: #96999e;

  font-size: 13px;
}

.security-lines {
  display: flex;

  align-items: flex-end;

  justify-content: center;

  gap: 5px;

  height: 35px;

  margin-top: 30px;
}

.security-lines span {
  width: 5px;

  border-radius: 3px;

  background: var(--orange);
}

.security-lines span:nth-child(1) {
  height: 35%;
}

.security-lines span:nth-child(2) {
  height: 70%;
}

.security-lines span:nth-child(3) {
  height: 100%;
}

.security-lines span:nth-child(4) {
  height: 55%;
}

/* STATS */

.hero-stats {
  position: relative;

  z-index: 3;

  display: grid;

  grid-template-columns: repeat(4, 1fr);

  margin-top: 100px;

  border-top: 1px solid var(--border-dark);
}

.stat {
  padding: 27px 20px;

  border-right: 1px solid var(--border-dark);
}

.stat:first-child {
  padding-left: 0;
}

.stat:last-child {
  border-right: none;
}

.stat strong {
  display: block;

  color: white;

  font-size: 24px;

  margin-bottom: 4px;
}

.stat span {
  color: #85888d;

  font-size: 12px;

  text-transform: uppercase;

  letter-spacing: 1px;
}

/* =========================================================
   TRUST STRIP
========================================================= */

.trust-strip {
  background: var(--orange);

  color: white;
}

.trust-content {
  min-height: 65px;

  display: flex;

  justify-content: space-between;

  align-items: center;

  gap: 20px;

  font-size: 11px;

  font-weight: 700;

  letter-spacing: 1.5px;
}

.trust-content i {
  width: 4px;
  height: 4px;

  border-radius: 50%;

  background: rgba(255, 255, 255, 0.55);
}

/* =========================================================
   SECTIONS
========================================================= */

.section {
  padding: 120px 0;
}

.section-heading {
  max-width: 800px;

  margin-bottom: 65px;
}

.section-label {
  color: var(--orange);

  font-size: 11px;

  font-weight: 800;

  letter-spacing: 2px;

  margin-bottom: 18px;
}

.section-heading h2,
.solutions-content h2 {
  font-size: clamp(38px, 5vw, 64px);

  line-height: 1.08;

  letter-spacing: -2.5px;

  margin-bottom: 24px;
}

.section-heading h2 span,
.solutions-content h2 span {
  color: var(--orange);
}

.section-heading > p {
  color: var(--gray-dark);

  max-width: 600px;
}

.section-heading.light h2 {
  color: white;
}

.section-heading.light > p {
  color: #92959a;
}

/* =========================================================
   ABOUT
========================================================= */

.about-grid {
  display: grid;

  grid-template-columns: 1.2fr 0.8fr;

  gap: 90px;

  align-items: center;
}

.about-text {
  max-width: 720px;
}

.about-text p {
  color: #696c71;

  margin-bottom: 22px;
}

.about-text .large-text {
  color: var(--dark);

  font-size: 22px;

  line-height: 1.6;
}

.text-link {
  display: inline-flex;

  gap: 12px;

  align-items: center;

  color: var(--orange);

  font-weight: 700;

  margin-top: 15px;
}

.text-link span {
  font-size: 20px;

  transition: var(--transition);
}

.text-link:hover span {
  transform: translateX(5px);
}

.about-box {
  min-height: 350px;

  padding: 40px;

  display: flex;

  flex-direction: column;

  justify-content: flex-end;

  border-radius: 15px;

  background: var(--dark);

  color: white;

  position: relative;

  overflow: hidden;
}

.about-box::before {
  content: "";

  position: absolute;

  width: 220px;
  height: 220px;

  right: -70px;
  top: -70px;

  border-radius: 50%;

  border: 40px solid rgba(244, 81, 22, 0.18);
}

.about-box-number {
  position: absolute;

  top: 30px;
  left: 40px;

  font-size: 100px;

  line-height: 1;

  font-weight: 800;

  color: rgba(255, 255, 255, 0.08);
}

.about-box strong {
  position: relative;

  font-size: 22px;

  max-width: 300px;

  margin-bottom: 10px;
}

.about-box p {
  position: relative;

  color: #9c9fa4;

  font-size: 14px;

  max-width: 330px;
}

/* =========================================================
   SERVICES
========================================================= */

.dark-section {
  background: var(--dark);

  color: white;
}

.services-grid {
  display: grid;

  grid-template-columns: repeat(3, 1fr);

  gap: 1px;

  background: var(--border-dark);

  border: 1px solid var(--border-dark);
}

.service-card {
  position: relative;

  min-height: 360px;

  padding: 35px;

  background: var(--dark);

  transition: var(--transition);
}

.service-card:hover {
  background: #2a2c30;

  transform: translateY(-5px);
}

.service-number {
  color: #66696e;

  font-size: 12px;

  font-weight: 700;

  margin-bottom: 30px;
}

.service-icon {
  width: 55px;
  height: 55px;

  display: grid;

  place-items: center;

  margin-bottom: 30px;

  color: var(--orange);

  border: 1px solid rgba(244, 81, 22, 0.3);

  border-radius: 10px;
}

.service-icon svg {
  width: 27px;
  height: 27px;
}

.service-card h3 {
  font-size: 20px;

  margin-bottom: 13px;
}

.service-card p {
  color: #92959a;

  font-size: 14px;

  line-height: 1.7;

  max-width: 320px;
}

.service-card a {
  position: absolute;

  bottom: 30px;

  color: var(--orange);

  font-size: 13px;

  font-weight: 700;
}

/* =========================================================
   SOLUTIONS
========================================================= */

.solutions {
  background: var(--light);
}

.solutions-grid {
  display: grid;

  grid-template-columns: 1fr 1fr;

  gap: 100px;

  align-items: center;
}

.solutions-content > p {
  color: #6e7175;

  max-width: 550px;

  margin-bottom: 40px;
}

.solution-list {
  display: flex;

  flex-direction: column;

  gap: 25px;
}

.solution-item {
  display: flex;

  gap: 18px;
}

.check {
  flex: 0 0 32px;

  width: 32px;
  height: 32px;

  display: grid;

  place-items: center;

  border-radius: 50%;

  color: var(--orange);

  border: 1px solid rgba(244, 81, 22, 0.3);

  font-weight: 700;
}

.solution-item strong {
  display: block;

  margin-bottom: 4px;
}

.solution-item p {
  color: #777a7e;

  font-size: 13px;
}

/* VISUAL */

.solution-visual {
  position: relative;

  min-height: 550px;

  overflow: hidden;

  border-radius: 20px;

  background: var(--dark);
}

.visual-grid {
  position: absolute;

  inset: 0;

  opacity: 0.12;

  background-image:
    linear-gradient(rgba(255, 255, 255, 0.3) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.3) 1px, transparent 1px);

  background-size: 45px 45px;
}

.visual-circle {
  position: absolute;

  width: 330px;
  height: 330px;

  left: 50%;
  top: 50%;

  transform: translate(-50%, -50%);

  border-radius: 50%;

  border: 1px solid rgba(244, 81, 22, 0.45);

  box-shadow:
    0 0 0 45px rgba(244, 81, 22, 0.04),
    0 0 0 90px rgba(244, 81, 22, 0.025);
}

.visual-logo {
  position: absolute;

  left: 50%;
  top: 50%;

  width: 220px;

  transform: translate(-50%, -50%);

  filter: drop-shadow(0 15px 30px rgba(0, 0, 0, 0.3));
}

.visual-tag {
  position: absolute;

  bottom: 30px;
  left: 30px;

  padding: 9px 14px;

  border: 1px solid rgba(255, 255, 255, 0.15);

  color: #a9abb0;

  font-size: 10px;

  letter-spacing: 2px;
}

/* =========================================================
   CTA
========================================================= */

.cta-section {
  padding: 80px 0;

  background: white;
}

.cta-box {
  display: flex;

  align-items: center;

  justify-content: space-between;

  gap: 50px;

  padding: 60px;

  border-radius: 18px;

  background: var(--dark);

  color: white;

  overflow: hidden;

  position: relative;
}

.cta-box::after {
  content: "";

  position: absolute;

  width: 300px;
  height: 300px;

  right: -100px;
  bottom: -170px;

  border-radius: 50%;

  border: 60px solid rgba(244, 81, 22, 0.15);
}

.cta-box h2 {
  font-size: clamp(30px, 4vw, 48px);

  line-height: 1.1;

  margin-bottom: 15px;
}

.cta-box p {
  color: #96999e;

  max-width: 520px;
}

/* =========================================================
   CONTACT
========================================================= */

.contact {
  padding-bottom: 130px;
}

.contact-grid {
  display: grid;

  grid-template-columns: 0.85fr 1.15fr;

  gap: 100px;
}

.contact-info h2 {
  font-size: clamp(38px, 5vw, 60px);

  line-height: 1.08;

  letter-spacing: -2px;

  margin-bottom: 25px;
}

.contact-info h2 span {
  color: var(--orange);
}

.contact-info > p {
  color: #95989d;

  max-width: 500px;

  margin-bottom: 15px;
}

.contact-details {
  margin-top: 45px;

  display: flex;

  flex-direction: column;

  gap: 25px;
}

.contact-detail {
  display: flex;

  align-items: center;

  gap: 16px;
}

.contact-icon {
  width: 42px;
  height: 42px;

  display: grid;

  place-items: center;

  color: var(--orange);

  border: 1px solid rgba(244, 81, 22, 0.3);

  border-radius: 8px;
}

.contact-detail small {
  display: block;

  color: #6f7277;

  font-size: 10px;

  text-transform: uppercase;

  letter-spacing: 1px;
}

.contact-detail strong {
  color: #ddd;

  font-size: 14px;
}

/* FORMULAIRE */

.contact-form {
  padding: 40px;

  border: 1px solid var(--border-dark);

  border-radius: 15px;

  background: rgba(255, 255, 255, 0.025);
}

.form-row {
  display: grid;

  grid-template-columns: 1fr 1fr;

  gap: 20px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;

  color: #c9cbd0;

  font-size: 12px;

  font-weight: 600;

  margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;

  border: 1px solid rgba(255, 255, 255, 0.12);

  border-radius: 7px;

  outline: none;

  background: #1c1e21;

  color: white;

  padding: 14px 15px;

  transition: var(--transition);
}

.form-group textarea {
  resize: vertical;

  min-height: 130px;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #66696e;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--orange);

  box-shadow: 0 0 0 3px rgba(244, 81, 22, 0.08);
}

.form-group select {
  cursor: pointer;
}

.form-submit {
  width: 100%;

  min-height: 55px;

  display: flex;

  align-items: center;

  justify-content: center;

  gap: 15px;

  border: none;

  border-radius: 7px;

  background: var(--orange);

  color: white;

  font-weight: 700;

  cursor: pointer;

  transition: var(--transition);
}

.form-submit:hover {
  background: var(--orange-dark);
}

.form-message {
  text-align: center;

  font-size: 13px;

  margin-top: 15px;

  min-height: 20px;
}

/* =========================================================
   FOOTER
========================================================= */

.footer {
  background: var(--dark-3);

  color: white;

  padding: 70px 0 25px;
}

.footer-main {
  display: grid;

  grid-template-columns: 1.5fr repeat(3, 1fr);

  gap: 60px;

  padding-bottom: 60px;

  border-bottom: 1px solid var(--border-dark);
}

.footer-brand img {
  width: 200px;

  margin-bottom: 20px;
}

.footer-brand p {
  color: #85888d;

  max-width: 260px;

  font-size: 13px;
}

.footer-column {
  display: flex;

  flex-direction: column;

  gap: 12px;
}

.footer-column h4 {
  font-size: 13px;

  margin-bottom: 10px;
}

.footer-column a {
  color: #85888d;

  font-size: 13px;

  transition: var(--transition);
}

.footer-column a:hover {
  color: var(--orange);
}

.footer-bottom {
  padding-top: 25px;

  display: flex;

  align-items: center;

  justify-content: space-between;

  gap: 20px;
}

.footer-bottom p {
  color: #66696e;

  font-size: 11px;
}

/* =========================================================
   RESPONSIVE TABLET
========================================================= */

@media (max-width: 1050px) {
  .desktop-nav {
    gap: 20px;
  }

  .header-button {
    display: none;
  }

  .hero-container {
    grid-template-columns: 1fr;

    gap: 60px;
  }

  .hero {
    padding-top: 150px;
  }

  .hero-visual {
    display: none;
  }

  .hero-stats {
    margin-top: 70px;
  }

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

  .solutions-grid {
    gap: 50px;
  }

  .contact-grid {
    gap: 50px;
  }
}

/* =========================================================
   RESPONSIVE MOBILE
========================================================= */

@media (max-width: 768px) {
  .container {
    width: min(calc(100% - 32px), var(--max-width));
  }

  /* HEADER */

  .nav-container {
    min-height: 72px;
  }

  .logo-link {
    width: 165px;
  }

  .desktop-nav,
  .header-button {
    display: none;
  }

  .menu-button {
    display: block;
  }

  .mobile-nav {
    display: flex;

    max-height: 0;

    overflow: hidden;

    flex-direction: column;

    padding: 0 20px;

    background: #202226;

    transition:
      max-height 0.35s ease,
      padding 0.35s ease;
  }

  .mobile-nav.open {
    max-height: 500px;

    padding-top: 15px;

    padding-bottom: 20px;

    border-top: 1px solid var(--border-dark);
  }

  .mobile-nav a {
    padding: 15px 5px;

    color: #d6d7d9;

    border-bottom: 1px solid rgba(255, 255, 255, 0.07);

    font-size: 14px;
  }

  .mobile-nav .mobile-cta {
    margin-top: 15px;

    text-align: center;

    color: white;

    background: var(--orange);

    border-radius: 7px;

    border: none;

    font-weight: 700;
  }

  /* HERO */

  .hero {
    min-height: auto;

    padding-top: 125px;

    padding-bottom: 0;
  }

  .hero h1 {
    font-size: clamp(47px, 14vw, 70px);

    letter-spacing: -3px;

    line-height: 0.98;
  }

  .hero-description {
    font-size: 16px;

    line-height: 1.7;
  }

  .eyebrow {
    font-size: 11px;
  }

  .hero-actions {
    flex-direction: column;

    align-items: stretch;
  }

  .btn {
    width: 100%;
  }

  .hero-stats {
    grid-template-columns: repeat(2, 1fr);

    margin-top: 65px;
  }

  .stat {
    border-bottom: 1px solid var(--border-dark);

    padding: 22px 15px;
  }

  .stat:nth-child(2) {
    border-right: none;
  }

  .stat:nth-child(3) {
    padding-left: 0;
  }

  /* TRUST */

  .trust-content {
    overflow: hidden;

    justify-content: flex-start;

    flex-wrap: nowrap;

    min-height: 55px;
  }

  .trust-content span {
    white-space: nowrap;
  }

  .trust-content span:nth-of-type(n + 4),
  .trust-content i:nth-of-type(n + 3) {
    display: none;
  }

  /* SECTIONS */

  .section {
    padding: 80px 0;
  }

  .section-heading {
    margin-bottom: 45px;
  }

  .section-heading h2,
  .solutions-content h2 {
    font-size: 40px;

    letter-spacing: -1.8px;
  }

  /* ABOUT */

  .about-grid {
    grid-template-columns: 1fr;

    gap: 40px;
  }

  .about-text .large-text {
    font-size: 19px;
  }

  /* SERVICES */

  .services-grid {
    grid-template-columns: 1fr;
  }

  .service-card {
    min-height: 330px;
  }

  /* SOLUTIONS */

  .solutions-grid {
    grid-template-columns: 1fr;
  }

  .solution-visual {
    min-height: 400px;

    order: -1;
  }

  /* CTA */

  .cta-section {
    padding: 50px 0;
  }

  .cta-box {
    padding: 35px 25px;

    flex-direction: column;

    align-items: flex-start;

    gap: 30px;
  }

  .cta-box .btn {
    width: 100%;
  }

  /* CONTACT */

  .contact-grid {
    grid-template-columns: 1fr;

    gap: 55px;
  }

  .contact-form {
    padding: 25px 20px;
  }

  .form-row {
    grid-template-columns: 1fr;

    gap: 0;
  }

  /* FOOTER */

  .footer-main {
    grid-template-columns: 1fr 1fr;

    gap: 45px 30px;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .footer-bottom {
    flex-direction: column;

    align-items: flex-start;
  }
}

/* =========================================================
   PETITS TÉLÉPHONES
========================================================= */

@media (max-width: 400px) {
  .hero h1 {
    font-size: 45px;
  }

  .hero-description {
    font-size: 15px;
  }

  .section-heading h2,
  .solutions-content h2 {
    font-size: 35px;
  }

  .footer-main {
    grid-template-columns: 1fr;
  }

  .footer-brand {
    grid-column: auto;
  }
}

/* =========================================================
   ANIMATION
========================================================= */

@keyframes fadeUp {
  from {
    opacity: 0;

    transform: translateY(25px);
  }

  to {
    opacity: 1;

    transform: translateY(0);
  }
}

.hero-content {
  animation: fadeUp 0.8s ease both;
}

.hero-visual {
  animation: fadeUp 1s 0.15s ease both;
}
