:root {
  --dark-green: #01493e;
  --purple: #4c37ba;
  --navy: #0a0258;
  --light-green: #dbebe2;
  --light-gray: #f8f7f9;
  --text-dark: #1a1a1a;
  --text-body: #333333;
  --white: #ffffff;
  --bebas-new: 'Bebas Neue', sans-serif;
  --max-width: 1400px;
  --header-height: 115px;
  --logo-width: 237px;
}

*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Lato', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--text-body);
  line-height: 1.25;
  background: var(--white);
  overflow-x: hidden;
}

h1,
h2,
h3 {
  color: var(--dark-green);
  font-family: var( --bebas-new);
  font-weight: normal;
  text-transform: uppercase;
}

p {
  color: var(--navy);
  font-size: 25px;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: var(--purple);
}

a:hover {
  text-decoration: underline;
}

.accent {
  color: var(--purple);
}

/* ========== HEADER ========== */
.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--white);
  -webkit-transition: -webkit-box-shadow 0.25s ease;
  transition: -webkit-box-shadow 0.25s ease;
  transition: box-shadow 0.25s ease;
  transition: box-shadow 0.25s ease, -webkit-box-shadow 0.25s ease;
  height: var(--header-height);
}

.header.scrolled {
  -webkit-box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
          box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
}

.header-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 48px;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.logo img {
  width: var(--logo-width);
  height: auto;
}

.nav {
  font-family: var( --bebas-new);
  margin: -8px -16px;
  position: relative;
  text-align: right;
  text-transform: uppercase;
}

.lang-switch {
  color: var(--navy);
  display: inline-block;
  font-size: 20px;
  line-height: 1em;
  margin-bottom: 8px;
  padding: 8px 16px;
}

.lang-switch .active {
  color: var(--purple);
}

.lang-switch:hover {
  text-decoration: none;
}

.lang-switch:hover span {
  color: var(--purple);
}

.lang-switch:hover .active {
  color: var(--navy);
}

.nav-links {
  list-style: none;
}

.nav-links li {
  display: inline-block;
}

.nav-links a {
  display: inline-block;
  font-size: 25px;
  color: var(--navy);
  -webkit-transition: color 0.2s ease;
  transition: color 0.2s ease;
  padding: 8px 16px;
  line-height: 1em;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--purple);
  text-decoration: none;
}

/* ========== HERO ========== */
.hero {
  max-width: var(--max-width);
  margin: 0 auto;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr;
  grid-template-columns: 1fr 1fr;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}

.hero-content {
  padding: 128px 40px 80px;
  position: relative;
  z-index: 1;
}

.hero-title {
  font-size: 75px;
  line-height: 0.95;
  margin-bottom: 14px;
}

.hero-sub {
  margin-bottom: 32px;
}

.hero-cta-label {
  font-family: var( --bebas-new);
  font-size: 35px;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 16px;
}

.store-buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 12px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.store-buttons a img {
  width: auto;
}

.hero-image {
  height: 100%;
  position: relative;
}

.hero-image img {
  bottom: 0;
  height: auto;
  max-height: 100%;
  max-width: 117.188%;
  position: absolute;
  right: 0;
  width: auto;
}

/* ========== BENEFITS ========== */
.benefits {
  background: var(--light-green);
  padding: 80px 40px;
}

.benefits-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  text-align: center;
}

.section-title {
  font-size: 65px;
  line-height: 0.86em;
  margin-bottom: 16px;
}

.section-sub {
  margin-bottom: 48px;
}

.benefits-grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 40px 1fr 40px 1fr 40px 1fr;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  max-width: 1100px;
  margin: 0 auto;
}

.benefit-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
}

.benefit-icon {
  width: 72px;
  height: 72px;
  margin-bottom: 18px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.benefit-icon img {
  max-width: 72px;
  max-height: 68px;
  width: auto;
  height: auto;
}

/* ========== GETTING STARTED ========== */
.getting-started {
  padding: 80px 40px;
}

.getting-started-inner {
  max-width: 727px;
  margin: 0 auto;
  text-align: center;
}

.getting-started .section-title {
  margin-bottom: 12px;
}

.getting-started .section-sub {
  margin-bottom: 56px;
}

.steps hr {
  background-color: transparent;
  border: 0;
  border-top: 1px solid var(--light-green);
  color: transparent;
  margin: 32px 0;
}

.step {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 40px 2.5fr;
  grid-template-columns: 1fr 2.5fr;
  gap: 40px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: left;
  margin: 0 auto;
  max-width: 580px;
}

.step-phone {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.step-phone img {
  max-width: 156px;
  width: 100%;
  height: auto;
}

.step-number {
  font-size: 20px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--purple);
  margin-bottom: 12px;
}

.step-title {
  font-size: 35px;
  line-height: 1em;
  margin-bottom: 8px;
}

/* ========== THINGS TO KNOW ========== */
.things-to-know {
  background: var(--light-gray);
  padding: 80px 40px;
}

.things-to-know-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  text-align: center;
}

.things-grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 48px 1fr 48px 1fr;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
  max-width: 1100px;
  margin: 48px auto 0;
}

.thing-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
  padding: 0 12px;
}

.thing-icon {
  width: 72px;
  height: 80px;
  margin-bottom: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.thing-icon img {
  max-width: 72px;
  max-height: 80px;
}

.thing-title {
  font-size: 35px;
  margin-bottom: 8px;
  line-height: 1em;
}

/* ========== GET STARTED CTA ========== */
.get-started {
  padding: 80px 40px;
  text-align: center;
}

.get-started .section-title {
  margin-bottom: 14px;
}

.get-started .section-sub {
  margin-bottom: 32px;
}

.get-started .store-buttons {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 992px) {
   :root {
    --header-height: 101px;
    --logo-width: 187px;
  }

  .header-inner {
    padding: 0 32px;
  }
  
  .nav-links a {
    font-size: 20px;
  }

  .hero {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    text-align: center;
    min-height: auto;
  }

  .hero-content {
    width: 100%;
    padding: 64px 32px 32px;
  }

  .hero-sub {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-title {
    font-size: 65px;
  }
  
  .hero-cta-label,
  .step-title,
  .thing-title {
    font-size: 30px;
  }

  .store-buttons {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }

  .section-title {
    font-size: 55px;
  }

  .hero-image {
    -ms-grid-column-align: center;
        justify-self: center;
    max-width: 480px;
  }

  .hero-image img {
    max-width: 100%;
    position: static;
  }
  
  .benefits,
  .getting-started,
  .things-to-know,
  .get-started {
    padding: 64px 32px;
  }

  .benefits-grid {
    -ms-grid-columns: 1fr 40px 1fr;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }

  .things-grid {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

@media (min-width: 625px) {
  .step-reverse {
    direction: rtl;
  }

  .step-reverse > * {
    direction: ltr;
  }

  .step-reverse .step-content {
    text-align: right;
  }
}

@media (max-width: 624px) {
  :root {
    --header-height: auto;
    --logo-width: 137px;
  }

  p {
    font-size: 20px;
  }
  
  .header-inner {
    display: block;
    padding: 16px 24px;
  }
  
  .lang-switch {
    bottom: calc(100% + 4px);
    position: absolute;
    right: 0;
  }
  
  .nav {
    margin-top: 16px;
  }
  
  .nav-links {
    margin-bottom: -4px;
    margin-top: -4px;
    text-align: center;
  }
  
  .nav-links a {
    padding-bottom: 4px;
    padding-top: 4px;
  }

  .hero-title {
    font-size: 55px;
  }
  
  .hero-cta-label,
  .step-title,
  .thing-title {
    font-size: 25px;
  }

  .store-buttons a img {
    height: 48px;
  }

  .section-title {
    font-size: 45px;
  }

  .benefits,
  .getting-started,
  .things-to-know,
  .get-started {
    padding: 48px 24px;
  }

  .benefits-grid {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }

  .step {
    gap: 24px;
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .step-number {
    font-size: 18px;
  }
}