/* ============================================
   BLOGR LANDING PAGE — STYLES
   Section 1: Hero / Header
   ============================================ */

/* ---------- CSS Variables / Design Tokens ---------- */
:root {
  /* Primary */
  --red-500: hsl(356, 100%, 66%);
  --red-400: hsl(355, 100%, 74%);
  --blue-900: hsl(208, 49%, 24%);

  /* Neutral */
  --white: hsl(0, 0%, 100%);
  --gray-600: hsl(207, 13%, 34%);
  --gray-900: hsl(240, 10%, 16%);

  /* Gradients */
  --orange-300: hsl(13, 100%, 72%);
  --red-550: hsl(353, 100%, 62%);
  --purple-950: hsl(237, 17%, 21%);
  --purple-900: hsl(237, 23%, 31%);

  /* Typography */
  --ff-body: 'Overpass', sans-serif;
  --ff-nav: 'Ubuntu', sans-serif;
  --fs-base: 16px;
  /* Animation Tokens */
  --anim-ease: cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
  font-size: var(--fs-base);
  scroll-behavior: smooth;
}

body {
  font-family: var(--ff-body);
  color: var(--gray-600);
  line-height: 1.6;
  overflow-x: hidden;
}

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

ul {
  list-style: none;
}

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

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

/* ---------- Utility ---------- */
.attribution {
  font-size: 0.6875rem;
  text-align: center;
  padding: 1rem;
}
.attribution a {
  color: hsl(228, 45%, 44%);
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-block;
  padding: 0.8rem 1.1rem;
  border-radius: 50px;
  font-family: var(--ff-nav);
  font-weight: 700;
  font-size: 1rem;
  transition: all 0.3s ease;
  cursor: pointer;
  text-align: center;
}

.btn--white {
  background: var(--white);
  color: var(--red-500);
}
.btn--white:hover {
  background: var(--red-400);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.btn--white-fill {
  background: var(--white);
  color: var(--red-500);
  padding: 0.85rem 1.3rem;
}
.btn--white-fill:hover {
  background: var(--red-400);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.btn--outline {
  background: transparent;
  color: var(--white);
  border: 1px solid var(--white);
  padding: 0.85rem 1.3rem;
}
.btn--outline:hover {
  background: var(--white);
  color: var(--red-400);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(255, 255, 255, 0.3);
}

.btn--gradient-mobile {
  background: linear-gradient(to right, var(--orange-300), var(--red-550));
  color: var(--white);
  display: block;
  width: 140px;
  margin: 0 auto;
  padding: 0.85rem 2rem;
}

/* ============================================
   ANIMATIONS & REVEAL
   ============================================ */
@keyframes float {
  0% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
  100% { transform: translateY(0); }
}

@keyframes slideUpFade {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s var(--anim-ease);
}

.reveal--active {
  opacity: 1;
  transform: translateY(0);
}

/* Floating Effects for Illustrations — applied to containers, not images */
.features__illustration {
  animation: float 6s ease-in-out infinite;
}

.infra__illustration {
  animation: float 6s ease-in-out infinite 0.5s;
}

.features--laptop .features__illustration {
  animation: float 6s ease-in-out infinite 1.5s;
}

.hero {
  background: linear-gradient(135deg, var(--orange-300), var(--red-550));
  border-radius: 0 0 0 80px;
  position: relative;
  overflow: hidden;
  padding: 3.5rem 1.5rem 10rem;
  min-height: 600px;
  display: flex;
  flex-direction: column;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('./images/bg-pattern-intro-mobile.svg');
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 160%;
  z-index: 0;
}

/* ============================================
   ENTRY ANIMATIONS (KEYFRAMES)
   ============================================ */
@keyframes slideUpFade {
  0% { opacity: 0; transform: translateY(30px); }
  100% { opacity: 1; transform: translateY(0); }
}

@keyframes slideDownFade {
  0% { opacity: 0; transform: translateY(-20px); }
  100% { opacity: 1; transform: translateY(0); }
}

/* ============================================
   NAVIGATION
   ============================================ */
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 2.5rem 1.5rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  animation: slideDownFade 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

.nav--scrolled {
  background-color: hsla(356, 100%, 66%, 0.95);
  backdrop-filter: blur(10px);
  padding-top: 1.2rem !important;
  padding-bottom: 1.2rem !important;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.nav__container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
}

.nav__left {
  display: flex;
  align-items: center;
  gap: 4rem;
  width: 100%;
}

.nav__logo img {
  width: 82px;
  height: auto;
}

/* -- Hamburger -- */
.nav__hamburger {
  display: block;
  margin-left: auto;
  z-index: 20;
  background: none;
  border: none;
  padding: 0.25rem;
}

.nav__hamburger-close {
  display: none;
}

.nav__hamburger.is-active .nav__hamburger-open {
  display: none;
}

.nav__hamburger.is-active .nav__hamburger-close {
  display: block;
}

/* -- Navigation Menu -- */
.nav__menu {
  position: absolute;
  top: 90px;
  left: 1.5rem;
  right: 1.5rem;
  background: var(--white);
  border-radius: 8px;
  padding: 1.8rem 1.5rem;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
  display: flex;
  flex-direction: column;
  gap: 0;
  z-index: 100;
  
  /* SaaS appearance animation */
  opacity: 0;
  visibility: hidden;
  transform: translateY(-15px) scale(0.98);
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  transform-origin: top center;
}

.nav__menu.is-open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

/* -- Nav Items -- */
.nav__item {
  text-align: center;
  padding: 0.6rem 0;
  border-bottom: 1px solid hsla(207, 13%, 34%, 0.1);
}

.nav__item:last-of-type {
  border-bottom: none;
}

.nav__link {
  font-family: var(--ff-nav);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--blue-900);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 0;
}

/* Arrows */
.nav__arrow {
  width: 10px;
  height: 7px;
  transition: transform 0.3s ease;
}

.nav__arrow--light {
  display: none;
}

.nav__arrow--dark {
  display: inline-block;
}

.nav__link--dropdown[aria-expanded="true"] .nav__arrow {
  transform: rotate(180deg);
}

/* -- Dropdown -- */
.nav__dropdown {
  background: hsla(207, 13%, 34%, 0.08);
  border-radius: 6px;
  margin-top: 0;
  
  /* Accordion animation */
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav__item--dropdown.is-open .nav__dropdown {
  max-height: 400px; /* Arbitrary large height to fit items */
  opacity: 1;
  margin-top: 0.6rem;
  padding: 1rem 0;
}

.nav__dropdown-link {
  display: block;
  padding: 0.4rem 1.2rem;
  color: var(--gray-600);
  font-family: var(--ff-nav);
  font-weight: 400;
  font-size: 0.95rem;
  transition: font-weight 0.2s ease;
}

.nav__dropdown-link:hover {
  font-weight: 700;
}

/* -- Auth Mobile -- */
.nav__auth-mobile {
  border-top: 1px solid hsla(207, 13%, 34%, 0.15);
  margin-top: 0.8rem;
  padding-top: 1.2rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.nav__login-mobile {
  font-family: var(--ff-nav);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--blue-900);
}

/* -- Auth Desktop (hidden on mobile) -- */
.nav__auth {
  display: none;
  align-items: center;
  gap: 1.5rem;
}

.nav__login {
  font-family: var(--ff-nav);
  font-weight: 700;
  font-size: 1rem;
  color: var(--white);
  opacity: 0.9;
  transition: opacity 0.2s ease;
}

.nav__login:hover {
  opacity: 1;
  text-decoration: underline;
}

/* ============================================
   HERO CONTENT
   ============================================ */
.hero__content {
  text-align: center;
  position: relative;
  z-index: 2;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-top: 4rem;
}

.hero__title {
  font-family: var(--ff-body);
  font-weight: 600;
  font-size: 2.2rem;
  color: var(--white);
  line-height: 1.3;
  letter-spacing: -0.5px;
  margin-bottom: 0.8rem;
  
  /* Prevent layout jumps when empty on mobile (usually 2 lines max) */
  min-height: 5.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  
  /* Interactivité */
  transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1), text-shadow 0.6s ease;
  cursor: default;
}

.hero__title:hover {
  transform: translateY(-5px) scale(1.03);
  text-shadow: 0 15px 40px rgba(255, 255, 255, 0.6);
}

/* CURSOR BLINK ANIMATION */
.cursor {
  display: inline-block;
  margin-left: 2px;
  animation: blink 0.8s infinite;
  font-weight: 300;
  color: hsla(0, 0%, 100%, 0.8);
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}

.hero__subtitle {
  font-family: var(--ff-body);
  font-weight: 300;
  font-size: 1.1rem;
  color: hsla(0, 0%, 100%, 0.8);
  margin-bottom: 2.5rem;
  opacity: 0;
  animation: slideUpFade 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) 0.15s forwards;
}

.hero__buttons {
  display: flex;
  gap: 1rem;
  opacity: 0;
  animation: slideUpFade 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) 0.3s forwards;
}

/* ============================================
   SECTION 2: DESIGNED FOR THE FUTURE
   ============================================ */
.features {
  padding: 4rem 1.5rem;
  background: linear-gradient(180deg, hsl(240, 10%, 96%) 0%, hsl(240, 6%, 93%) 100%);
  position: relative;
}

.features__heading {
  font-family: var(--ff-body);
  font-weight: 600;
  font-size: 1.7rem;
  color: var(--blue-900);
  text-align: center;
  margin-bottom: 2.5rem;
  letter-spacing: -0.5px;
}

.features__grid {
  display: flex;
  flex-direction: column-reverse;
  gap: 2.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

.features--laptop .features__grid {
  flex-direction: column;
}

.features__text {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.features__block {
  text-align: center;
  /* -- Premium SaaS Card -- */
  background: var(--white);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-left: 5px solid var(--red-400);
  border-radius: 16px;
  padding: 2.2rem 2rem;
  box-shadow:
    0 8px 30px rgba(0, 0, 0, 0.08),
    0 2px 8px rgba(0, 0, 0, 0.04);
  transition: all 0.4s var(--anim-ease);
  position: relative;
  overflow: hidden;
}

.features__block::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--orange-300), var(--red-550));
  opacity: 0;
  transition: opacity 0.4s ease;
}

.features__block:hover {
  transform: translateY(-8px);
  box-shadow:
    0 20px 60px rgba(255, 115, 105, 0.15),
    0 8px 20px rgba(0, 0, 0, 0.08);
  border-left-color: var(--red-500);
}

.features__block:hover::before {
  opacity: 1;
}

/* Staggered card delays */
.features__block:nth-child(2) {
  transition-delay: 0.12s;
}

.features__title {
  font-family: var(--ff-body);
  font-weight: 600;
  font-size: 1.6rem;
  color: var(--blue-900);
  margin-bottom: 1rem;
  letter-spacing: -0.3px;
  line-height: 1.3;
  position: relative;
  z-index: 1;
}

.features__desc {
  font-family: var(--ff-body);
  font-weight: 300;
  font-size: 1rem;
  color: var(--gray-600);
  line-height: 1.75;
  letter-spacing: 0.2px;
  position: relative;
  z-index: 1;
}

.features__illustration {
  display: flex;
  justify-content: center;
}

.features__img {
  width: 100%;
  max-width: 400px;
}

/* ============================================
   SECTION 3: INFRASTRUCTURE
   ============================================ */
.infra {
  position: relative;
  /* Massive white margin above to give space for phones to extrude */
  margin-top: 13rem;
  /* Tighter padding internally so text isn't miles below */
  padding: 5rem 1.5rem 6rem;
}

.infra__bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, var(--purple-950), var(--purple-900));
  border-radius: 0 80px 0 80px;
  overflow: hidden;
  z-index: 1;
}

.infra__bg::before {
  content: '';
  position: absolute;
  top: -330px;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 600px;
  background-image: url('./images/bg-pattern-circles.svg');
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
}

.infra__container {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.infra__illustration {
  width: 100%;
  max-width: 320px;
  /* Pull it massively upwards into the white margin-top of .infra */
  margin-top: -13rem;
  margin-bottom: 2rem;
  z-index: 3;
  position: relative;
}

.infra__phones {
  width: 100%;
}

.infra__text {
  position: relative;
  z-index: 2;
  /* -- Glassmorphism Card on dark bg -- */
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 20px;
  padding: 2.8rem 2.2rem;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.15);
  transition: all 0.4s var(--anim-ease);
}

.infra__text:hover {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.3);
  box-shadow: 0 12px 48px rgba(0, 0, 0, 0.25);
  transform: translateY(-6px);
}

.infra__title {
  font-family: var(--ff-body);
  font-weight: 600;
  font-size: 2rem;
  color: var(--white);
  margin-bottom: 1.2rem;
  letter-spacing: -0.5px;
  line-height: 1.2;
}

.infra__desc {
  font-family: var(--ff-body);
  font-weight: 300;
  font-size: 1rem;
  color: hsla(0, 0%, 100%, 0.8);
  line-height: 1.75;
  letter-spacing: 0.2px;
}

/* ============================================
   SECTION 5: FOOTER
   ============================================ */
.footer {
  background-color: var(--gray-900);
  padding: 4.5rem 1.5rem;
  text-align: center;
  border-radius: 0 80px 0 0;
}

.footer__container {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  align-items: center;
}

.footer__logo-wrap {
  margin-bottom: 1rem;
}

.footer__nav {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  width: 100%;
}

.footer__heading {
  font-family: var(--ff-body);
  color: var(--white);
  font-weight: 500;
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
}

.footer__list {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.footer__link {
  font-family: var(--ff-body);
  color: hsla(0, 0%, 100%, 0.75);
  font-size: 1rem;
  font-weight: 400;
}

.footer__link:hover {
  text-decoration: underline;
}

.attribution {
  background-color: var(--gray-900);
  color: var(--white);
  font-size: 11px;
  text-align: center;
  padding-bottom: 1.5rem;
}

.attribution a {
  color: var(--red-400);
  text-decoration: underline;
}

/* ============================================
   DESKTOP STYLES (768px+)
   ============================================ */
@media (min-width: 768px) {
  .hero {
    padding: 3.5rem 2rem 10rem;
    border-radius: 0 0 0 100px;
  }

  .hero::before {
    background-image: url('./images/bg-pattern-intro-desktop.svg');
    background-position: 25% 52%;
    background-size: 220%;
  }

  /* Hamburger hidden */
  .nav__hamburger {
    display: none;
  }

  /* Nav menu is always visible on desktop */
  .nav__menu {
    position: static;
    display: flex;
    flex-direction: row;
    background: transparent;
    box-shadow: none;
    padding: 0;
    gap: 0.5rem;
    
    /* Override mobile hidden states */
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
  }

  .nav__item {
    text-align: left;
    padding: 0;
    border-bottom: none;
    position: relative;
    z-index: 10;
  }

  .nav__link {
    color: var(--white);
    font-size: 1rem;
    font-weight: 500;
    opacity: 0.8;
    padding: 0.5rem 1rem;
    transition: opacity 0.3s ease, border-bottom 0.3s ease;
  }

  /* Cool hover interact on nav */
  .nav__link:hover::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 1rem;
    width: calc(100% - 2rem);
    height: 2px;
    background: var(--white);
    border-radius: 2px;
  }

  .nav__link:hover {
    opacity: 1;
    text-decoration: none;
  }

  /* Arrows — show light, hide dark on desktop */
  .nav__arrow--light {
    display: inline-block;
  }

  .nav__arrow--dark {
    display: none;
  }
  
  /* Clean up is-open for desktop dropping */
  .nav__item--dropdown:hover .nav__dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  /* Desktop dropdown */
  .nav__dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 168px;
    background: var(--white);
    border-radius: 6px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    padding: 1.2rem 0;
    margin-top: 0.5rem;
    z-index: 50;
    
    /* Reveal animation */
    max-height: none;
    overflow: visible;
    display: block;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  }

  .nav__dropdown-link {
    color: var(--gray-900);
    padding: 0.4rem 1.5rem;
    font-size: 0.9rem;
  }

  .nav__dropdown-link:hover {
    font-weight: 700;
  }

  /* Auth mobile hidden on desktop */
  .nav__auth-mobile {
    display: none;
  }

  /* Auth desktop visible */
  .nav__auth {
    display: flex;
    flex-shrink: 0;
  }

  /* Hero */
  .hero__title {
    font-size: 3.5rem;
  }

  .hero__subtitle {
    font-size: 1.25rem;
  }

  /* -- Section 2 Desktop -- */
  .features {
    padding: 10rem 2rem 5rem;
    overflow: hidden; /* Capture our bleeding images */
  }

  .features__heading {
    font-size: 2.22rem;
    margin-bottom: 2rem;
    text-align: center;
    width: 100%;
  }

  .features__grid {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
  }

  .features__text {
    flex: 1;
    text-align: left;
    padding-right: 0;
  }

  .features__illustration {
    flex: 1;
    position: relative;
    display: flex;
    justify-content: flex-end;
  }

  .features__img {
    position: relative;
    width: 140%;
    max-width: none;
    transform: scale(1.4) translateX(25%);
    left: auto;
    top: auto;
  }

  /* -- Section 4 Desktop Overrides -- */
  .features--laptop {
    padding: 5rem 2rem;
    overflow: hidden;
  }

  .features--laptop .features__grid {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
  }

  .features--laptop .features__illustration {
    flex: 1;
    order: -1; /* Force image to the LEFT */
    display: flex;
    justify-content: flex-start;
  }

  .features--laptop .features__img {
    position: relative;
    width: 140%;
    max-width: none;
    transform: scale(1.3) translateX(-20%);
    left: auto;
    right: auto;
    top: auto;
  }

  .features--laptop .features__text {
    flex: 1;
    text-align: left;
    padding-right: 0;
    padding-left: 0;
  }

  /* -- Section 3 Desktop -- */
  .infra {
    padding: 4rem 2rem 5rem;
    margin-top: 5rem;
  }

  .infra__bg {
    border-radius: 0 100px 0 100px;
  }

  .infra__bg::before {
    top: 50%;
    left: -200px;
    transform: translateY(-50%);
    width: 900px;
    height: 900px;
    background-size: contain;
  }

  .infra__container {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    text-align: left;
    gap: 4rem;
    min-height: 400px;
  }

  .infra__illustration {
    flex: 1;
    position: relative;
    top: 0;
    left: -4rem;
    margin-top: 0;
    margin-bottom: 0;
    max-width: 500px;
  }

  .infra__phones {
    width: 100%;
    display: block;
    transform: translateY(-50px); /* Subtle overflow upward */
  }

  .infra__text {
    flex: 1;
    margin-left: 0;
    padding-right: 5%;
  }

  .infra__title {
    font-size: 2.5rem;
  }

  .infra__desc {
    font-size: 1.1rem;
    max-width: none;
  }

  /* -- Footer Desktop -- */
  .footer {
    padding: 4.5rem 4rem;
    text-align: left;
  }

  .footer__container {
    flex-direction: row;
    align-items: flex-start;
    justify-content: flex-start;
    max-width: 1200px;
    margin: 0 auto;
    gap: 0;
  }

  .footer__logo-wrap {
    flex: 1;
    margin-bottom: 0;
  }

  .footer__nav {
    flex: 3;
    flex-direction: row;
    justify-content: space-around;
    gap: 1.5rem;
  }
}

/* Large desktop */
@media (min-width: 1024px) {
  .hero {
    padding: 3.5rem 4rem 10rem;
  }

  .nav__left {
    gap: 4rem;
  }

  .hero__title {
    font-size: 4rem;
  }

  /* Section 2 large desktop */
  .features {
    padding: 10rem 4rem 8rem;
  }

  .features__heading {
    font-size: 2.5rem;
  }

  .features__title {
    font-size: 1.75rem;
  }

  .features__img {
    width: 160%;
    transform: translateX(25%);
  }

  /* Section 4 large desktop */
  .features--laptop .features__text {
    padding-left: 6rem;
  }
  
  .features--laptop .features__img {
    width: 135%;
    transform: translateX(-20%);
  }

  /* Section 3 large desktop */
  .infra {
    padding: 6.5rem 4rem;
  }

  .infra__bg::before {
    top: -480px;
    left: -80px;
    width: 900px;
    height: 900px;
  }

  .infra__title {
    font-size: 2.4rem;
  }

  .infra__illustration {
    margin-top: -200px;
    margin-bottom: -80px;
  }
}
