/* ==========================================================================
   TIPOGRAFÍA
   ========================================================================== */

/*
@font-face {
  font-family: "Just Sans";
  src: url("../fonts/JustSans-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Just Sans";
  src: url("../fonts/JustSans-Medium.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Just Sans";
  src: url("../fonts/JustSans-SemiBold.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Just Sans";
  src: url("../fonts/JustSans-Bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
*/

/* ==========================================================================
   ANIMATIONS
   ========================================================================== */

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }

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

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }

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

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }

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

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.92);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

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

.animate-fade-in-up {
  animation: fadeInUp 0.7s ease-out forwards;
}

.animate-slide-in-left {
  animation: slideInLeft 0.7s ease-out forwards;
}

.animate-slide-in-right {
  animation: slideInRight 0.7s ease-out forwards;
}

.animate-scale-in {
  animation: scaleIn 0.7s ease-out forwards;
}

.animate-fade-in {
  animation: fadeIn 0.7s ease-out forwards;
}

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

:root {
  --bg-dark: #222222;
  --bg-dark-2: #1c1c1c;
  --card-dark: #2a2a2a;

  --text-white: #f5f4f2;
  --text-dark: #222222;
  --text-muted: #a8a6a2;

  --accent-orange: #f58c3d;
  --accent-yellow: #ffd23d;

  --gradient-hero: linear-gradient(
    135deg,
    #f5343d 0%,
    #f58c3d 45%,
    #ff9a6a 75%,
    #ffc9a8 100%
  );

  --gradient-card: linear-gradient(
    160deg,
    #f58c3d 0%,
    #f5613d 60%,
    #f5343d 100%
  );

  --gradient-cta: linear-gradient(90deg, #fddb2b 0%, #fc918d 100%);

  --border-subtle: rgba(245, 244, 242, 0.12);

  --radius-md: 14px;
  --radius-lg: 20px;

  --max-width: 100%;

  --font-base: "Just Sans", "Helvetica Neue", Arial, sans-serif;
}

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

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

html {
  scroll-behavior: smooth;
}

body {
  background: var(--bg-dark);
  color: var(--text-white);
  font-family: var(--font-base);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

button {
  font: inherit;
}

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

.text-accent {
  color: var(--accent-orange);
}

/* ==========================================================================
   GLOBAL TITLES
   ========================================================================== */

.section-title {
  font-size: clamp(48px, 10vw, 80px);
  font-weight: 300;
  line-height: 1.05;
  letter-spacing: -0.04em;
  opacity: 0;
}

.section-title--left {
  text-align: left;
}

.divider {
  border: none;
  border-top: 1px solid var(--border-subtle);
  margin-top: 32px;
}

/* ==========================================================================
   BUTTONS
   ========================================================================== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  padding: 13px 26px;

  border-radius: 8px;

  font-size: 14px;
  font-weight: 600;

  white-space: nowrap;

  border: none;

  cursor: pointer;

  transition:
    transform 0.15s ease,
    opacity 0.15s ease;
}

.btn:hover {
  transform: translateY(-1px);
  opacity: 0.92;
}

.btn--primary {
  background: var(--gradient-cta);
  color: #1a1a1a;
}

.btn--dark {
  background: var(--bg-dark);
  color: var(--text-white);
}

.btn--header {
  font-size: 13px;
  padding: 11px 20px;
}

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

.header {
  padding: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.464);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;

  gap: 24px;

  padding: 16px 24px;
}

.logo {
  height: fit-content;
  width: fit-content;
}

.logo__icon {
  height: auto;
  width: 200px;
}

/* NAV */

.nav {
  display: flex;
  align-items: center;

  gap: 4px;

  background: transparent;

  border-radius: 6px;

  padding: 4px;

  border: 1px solid rgb(255, 255, 255);
}

.nav__link {
  font-size: 13px;
  font-weight: 500;

  color: rgb(255, 255, 255);

  padding: 8px 18px;

  border-radius: 4px;

  transition:
    color 0.15s ease,
    background 0.15s ease;
}

.nav__link--active {
  color: var(--text-dark);
  background: var(--text-white);
}

.nav__link:hover {
  color: var(--text-dark);
}

.header .btn--header {
  background: var(--gradient-cta);
  color: var(--text-dark);
}

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

.mobile-header {
  display: none;
}

.mobile-menu {
  display: none;
}

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

.hero {
  position: relative;

  max-width: var(--max-width);

  margin: 0 auto;

  height: 100vh;

  overflow: hidden;

  border-bottom-left-radius: var(--radius-lg);
  border-bottom-right-radius: var(--radius-lg);

  background: var(--gradient-hero);
}

.hero__top {
  padding: 20px 24px 0;
}

.hero__info {
  height: 70%;

  width: 100%;

  display: flex;

  align-items: end;

  justify-content: space-between;
}

.hero__content {
  height: auto;

  width: 70%;

  display: flex;

  align-items: start;

  justify-content: center;

  flex-direction: column;

  gap: 24px;

  padding-right: 100px;
}

.hero__title {
  font-size: clamp(48px, 10vw, 80px);

  font-weight: 400;

  line-height: 1.05;

  letter-spacing: -0.04em;

  color: var(--text-dark);
}

.hero__text {
  width: 70%;

  font-size: 20px;

  line-height: 1.6;

  font-weight: 500;

  color: rgba(34, 34, 34, 0.75);
}

/* ==========================================================================
   PROBLEM
   ========================================================================== */

.problem {
  max-width: var(--max-width);

  margin: 0 auto;

  padding: 56px 24px 0;
}

.problem__box {
  border: 1px solid var(--border-subtle);

  border-radius: var(--radius-md);

  padding: 40px;

  background-color: #262626;

  opacity: 0;
}

.problem__text {
  margin-top: 20px;

  max-width: 780px;

  color: var(--text-muted);

  font-size: 14px;

  line-height: 1.7;

  opacity: 0;
}

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

.services {
  max-width: var(--max-width);

  margin: 0 auto;

  padding: 88px 24px 0;
}

.services__grid {
  margin-top: 36px;

  display: grid;

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

  gap: 20px;
}

.service-card {
  background-image: url("../assets/images/card-background/card-background-grey.png");

  background-size: cover;

  background-position: center;

  border-radius: var(--radius-md);

  padding: 24px;

  height: 260px;

  display: flex;

  flex-direction: column;

  justify-content: space-between;

  opacity: 0;
}

.service-card--accent {
  background-image: url("../assets/images/card-background/card-background.png");

  background-size: cover;
}

.service-card--accent .service-card__text {
  color: rgba(255, 255, 255, 0.75);
}

.service-card__title {
  font-size: 32px;

  font-weight: 400;
}

.service-card__text {
  margin-top: 8px;

  font-size: 13px;

  color: var(--text-muted);

  line-height: 1.55;

  max-width: 220px;
}

.service-card__icon {
  height: auto;

  width: 50px;
}

.small-icon {
  height: auto;

  width: 40px;
}

/* ==========================================================================
   TOOLS
   ========================================================================== */

.tools {
  max-width: var(--max-width);

  margin: 0 auto;

  padding: 88px 24px 0;
}

.tools__title {
  font-size: clamp(48px, 10vw, 80px);

  font-weight: 300;

  line-height: 1.05;

  letter-spacing: -0.04em;

  opacity: 0;
}

.tools__grid {
  margin-top: 36px;

  display: grid;

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

  gap: 16px;
}

.tool-card {
  height: 300px;

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

  border-radius: var(--radius-md);

  padding: 24px;

  background-color: #262626;

  display: flex;

  flex-direction: column;

  justify-content: space-between;

  opacity: 0;
}

.tool-card--wide {
  grid-column: span 1;
}

.tools__grid > .tool-card:nth-child(4) {
  grid-column: 1 / 3;
}

.tools__grid > .tool-card:nth-child(5) {
  grid-column: 3 / 4;
}

.tool-card__title {
  font-size: 32px;

  line-height: 35px;

  font-weight: 200;

  margin-bottom: 14px;
}

.tool-card__tags {
  list-style: none;

  display: flex;

  flex-wrap: wrap;

  gap: 6px 10px;
}

.tool-card__tags li {
  font-size: 12.5px;

  color: var(--accent-orange);

  background-color: #3b3028;

  padding: 6px 10px;

  border-radius: 100px;
}

.tools__note {
  margin-top: 32px;

  font-size: 13px;

  color: var(--text-muted);

  opacity: 0;
}

/* ==========================================================================
   FOUNDER
   ========================================================================== */

.founder {
  max-width: var(--max-width);

  margin: 0 auto;

  padding: 88px 24px 0;

  display: flex;

  align-items: center;

  justify-content: space-between;
}

.founder__text {
  width: fit-content;

  opacity: 0;
}

.founder__desc {
  width: 50%;

  margin-top: 20px;

  font-size: 14px;

  color: var(--text-muted);

  line-height: 1.7;

  opacity: 0;
}

.founder__badge {
  width: 400px;

  height: 400px;

  opacity: 0;
}

.founder__badge-img {
  width: 300px;

  height: 300px;

  object-fit: cover;

  object-position: center;

  display: block;
}

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

.cta {
  max-width: var(--max-width);

  margin: 0 auto;
}

.cta__box {
  background: var(--gradient-hero);

  border-radius: var(--radius-lg);

  padding: 90px;

  opacity: 0;
}

.cta__inner {
  background: var(--bg-dark-2);

  border-radius: calc(var(--radius-lg) - 8px);

  padding: 24px;
}

.cta__top {
  display: flex;

  align-items: flex-end;

  justify-content: space-between;

  gap: 24px;

  flex-wrap: wrap;
}

.cta__title {
  font-size: clamp(28px, 4vw, 100px);

  font-weight: 300;

  color: var(--text-white);

  letter-spacing: -0.02em;

  line-height: 1.2;

  opacity: 0;
}

.cta__arrow {
  display: inline-block;

  color: var(--accent-orange);
}

.cta .divider {
  margin-top: 32px;
}

.cta__text {
  margin-top: 20px;

  font-size: 13px;

  color: var(--text-muted);

  opacity: 0;
}

.cta .btn--header {
  background: var(--gradient-cta);

  color: var(--text-dark);
}

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

.footer {
  border-top: 1px solid var(--border-subtle);

  background: var(--bg-dark-2);
}

.footer__inner {
  max-width: var(--max-width);

  margin: 0 auto;

  padding: 48px 24px;

  display: flex;

  align-items: flex-start;

  justify-content: space-between;

  gap: 32px;

  flex-wrap: wrap;
}

.logo-footer__icon {
  height: auto;

  width: 200px;
}

.footer__col {
  display: flex;

  flex-direction: column;

  gap: 10px;
}

.footer__heading {
  font-size: 11px;

  text-transform: uppercase;

  letter-spacing: 0.08em;

  color: var(--text-muted);

  margin-bottom: 4px;
}

.footer__link {
  font-size: 13px;

  color: var(--text-muted);

  transition: color 0.15s ease;
}

.footer__link:hover {
  color: var(--text-white);
}

/* ==========================================================================
   ================================================================
   TABLET
   901px → 561px
   ================================================================
   ========================================================================== */

@media (max-width: 900px) {
  /* ---------------------------------------------------------------
     DESKTOP HEADER OFF
  --------------------------------------------------------------- */

  .header--desktop {
    display: none;
  }

  /* ---------------------------------------------------------------
     MOBILE HEADER
  --------------------------------------------------------------- */

  .mobile-header {
    position: absolute;

    z-index: 20;

    top: 0;
    left: 0;

    width: 100%;

    padding: 18px 24px;

    display: flex;

    align-items: center;

    justify-content: space-between;
  }

  .mobile-header__logo img {
    width: 145px;

    height: auto;
  }

  .mobile-menu-toggle {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    height: 36px;

    padding: 0 18px;

    border: 1px solid #ffffff;

    border-radius: 2px;

    background: transparent;

    color: #ffffff;

    font-size: 10px;

    font-weight: 500;

    letter-spacing: 0.03em;

    cursor: pointer;
  }

  /* ---------------------------------------------------------------
     MOBILE MENU
  --------------------------------------------------------------- */

  .mobile-menu {
    position: fixed;

    z-index: 999;

    inset: 0;

    width: 100%;
    height: 100dvh;

    background: #222222;

    display: flex;

    flex-direction: column;

    padding: 20px;

    visibility: hidden;

    opacity: 0;

    transform: translateY(-10px);

    pointer-events: none;

    transition:
      opacity 0.25s ease,
      transform 0.25s ease,
      visibility 0.25s ease;
  }

  .mobile-menu.is-open {
    visibility: visible;

    opacity: 1;

    transform: translateY(0);

    pointer-events: auto;
  }

  .mobile-menu__header {
    display: flex;

    align-items: center;

    justify-content: space-between;
  }

  .mobile-menu__logo img {
    width: 145px;

    height: auto;
  }

  .mobile-menu__close {
    height: 38px;

    padding: 0 28px;

    border: 1px solid var(--accent-orange);

    border-radius: 3px;

    background: var(--accent-orange);

    color: #111111;

    font-size: 12px;

    font-weight: 500;

    cursor: pointer;
  }

  /* NAV MENU */

  .mobile-menu__nav {
    margin-top: 105px;

    display: flex;

    flex-direction: column;
  }

  .mobile-menu__link {
    width: 100%;

    min-height: 105px;

    display: flex;

    align-items: center;

    justify-content: space-between;

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

    color: #f5f4f2;

    font-size: clamp(54px, 9vw, 80px);

    font-weight: 300;

    line-height: 1;

    letter-spacing: -0.04em;
  }

  .mobile-menu__link:first-child {
    border-top: 1px solid rgba(255, 255, 255, 0.24);
  }

  .mobile-menu__link--active {
    color: var(--accent-orange);
  }

  .mobile-menu__arrow {
    font-size: 34px;

    font-weight: 300;

    color: var(--accent-orange);

    transition: transform 0.2s ease;
  }

  .mobile-menu__link:not(.mobile-menu__link--active) .mobile-menu__arrow {
    color: #777777;
  }

  .mobile-menu__link:hover .mobile-menu__arrow {
    transform: translateX(5px);
  }

  .mobile-menu__cta {
    margin-top: auto;

    padding-top: 30px;
  }

  .mobile-menu__cta .btn {
    min-height: 46px;

    padding: 0 18px;

    font-size: 14px;
  }

  /* ---------------------------------------------------------------
     HERO
     hero__top (CTA button) is re-ordered via flex so it renders
     AFTER the title/paragraph, matching the reference design,
     without needing to touch the HTML markup.
  --------------------------------------------------------------- */

  .hero {
    height: 560px;

    min-height: 560px;

    border-bottom-left-radius: 16px;

    border-bottom-right-radius: 16px;
  }

  .hero__info {
    height: 100%;

    display: flex;

    flex-direction: column;

    align-items: flex-start;

    justify-content: flex-end;

    padding: 0 24px 48px;
  }

  .hero__top {
    order: 2;

    padding: 0;

    margin-top: 24px;
  }

  .hero__content {
    order: 1;

    width: 100%;

    padding: 0;

    gap: 18px;

    align-items: flex-start;

    justify-content: flex-end;
  }

  .hero__title {
    width: 100%;

    max-width: 650px;

    font-size: clamp(54px, 8vw, 76px);

    line-height: 0.98;

    letter-spacing: -0.045em;
  }

  .hero__text {
    width: 65%;

    max-width: 500px;

    font-size: 16px;

    line-height: 1.45;
  }

  /* ---------------------------------------------------------------
     GLOBAL
  --------------------------------------------------------------- */

  .desktop-break {
    display: none;
  }

  .section-title {
    font-size: clamp(48px, 7vw, 70px);

    line-height: 0.98;
  }

  /* ---------------------------------------------------------------
     PROBLEM
  --------------------------------------------------------------- */

  .problem {
    padding: 48px 24px 0;
  }

  .problem__box {
    padding: 32px;
  }

  .problem__text {
    max-width: 100%;

    font-size: 13px;

    line-height: 1.65;
  }

  /* ---------------------------------------------------------------
     SERVICES
  --------------------------------------------------------------- */

  .services {
    padding: 80px 24px 0;
  }

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

    gap: 12px;

    margin-top: 30px;
  }

  .service-card {
    height: 230px;

    padding: 22px;
  }

  .service-card__title {
    font-size: 28px;
  }

  /* ---------------------------------------------------------------
     TOOLS
  --------------------------------------------------------------- */

  .tools {
    padding: 80px 24px 0;
  }

  .tools__title {
    font-size: clamp(48px, 7vw, 70px);
  }

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

    gap: 12px;

    margin-top: 30px;
  }

  .tools__grid > .tool-card:nth-child(4),
  .tools__grid > .tool-card:nth-child(5) {
    grid-column: span 1;
  }

  .tool-card {
    height: 250px;

    padding: 20px;
  }

  .tool-card__title {
    font-size: 25px;

    line-height: 1.05;
  }

  /* ---------------------------------------------------------------
     FOUNDER
  --------------------------------------------------------------- */

  .founder {
    padding: 80px 24px 0;

    flex-direction: column;

    align-items: flex-start;

    gap: 40px;
  }

  .founder__desc {
    width: 70%;

    font-size: 13px;
  }

  .founder__badge {
    width: 300px;

    height: 300px;
  }

  .founder__badge-img {
    width: 250px;

    height: 250px;
  }

  /* ---------------------------------------------------------------
     CTA
  --------------------------------------------------------------- */

  .cta {
    padding: 60px 24px 0;
  }

  .cta__box {
    padding: 50px;
  }

  .cta__top {
    flex-direction: column;

    align-items: flex-start;
  }

  .cta__title {
    font-size: 42px;
  }

  /* ---------------------------------------------------------------
     FOOTER
  --------------------------------------------------------------- */

  .footer__inner {
    padding: 40px 24px;

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 35px;
  }

  .footer__inner > .logo {
    grid-column: 1 / -1;
  }
}

/* ==========================================================================
   ================================================================
   MOBILE
   560px AND BELOW
   Values below were measured directly (pixel by pixel) against the
   supplied reference screenshot (393px wide) so this breakpoint is
   a 1:1 replica of that design.
   ================================================================
   ========================================================================== */

@media (max-width: 560px) {
  /* ---------------------------------------------------------------
     MOBILE HEADER
  --------------------------------------------------------------- */

  .mobile-header {
    padding: 20px 20px 0;
  }

  .mobile-header__logo img {
    width: 168px;
  }

  .mobile-menu-toggle {
    height: 36px;

    padding: 0 20px;

    border-radius: 3px;

    font-size: 11px;
  }

  /* ---------------------------------------------------------------
     MOBILE MENU
  --------------------------------------------------------------- */

  .mobile-menu {
    padding: 20px;
  }

  .mobile-menu__logo img {
    width: 145px;
  }

  .mobile-menu__close {
    height: 38px;

    padding: 0 28px;

    font-size: 12px;
  }

  .mobile-menu__nav {
    margin-top: 100px;
  }

  .mobile-menu__link {
    min-height: 105px;

    font-size: 58px;
  }

  .mobile-menu__arrow {
    font-size: 30px;
  }

  .mobile-menu__cta .btn {
    width: auto;

    min-height: 47px;

    font-size: 14px;
  }

  /* ---------------------------------------------------------------
     HERO
     height + inner spacing tuned to the reference: lots of open
     gradient above the title, block bottom-aligned, CTA button
     re-ordered to sit right after the paragraph text.
  --------------------------------------------------------------- */

  .hero {
    height: 852px;

    min-height: 852px;

    border-bottom-left-radius: 14px;

    border-bottom-right-radius: 14px;
  }

  .hero__info {
    padding: 0 20px 76px;
  }

  .hero__top {
    margin-top: 32px;
  }

  .hero__content {
    gap: 20px;
  }

  .hero__top .btn {
    padding: 13px 22px;

    font-size: 14px;
  }

  .hero__title {
    font-size: 46px;

    line-height: 0.98;

    letter-spacing: -0.04em;
  }

  .hero__text {
    width: 100%;

    max-width: 100%;

    font-size: 15px;

    line-height: 1.5;

    font-weight: 500;
  }

  /* ---------------------------------------------------------------
     GLOBAL TITLES
  --------------------------------------------------------------- */

  .section-title {
    font-size: 32px;

    line-height: 1.25;

    letter-spacing: -0.03em;
  }

  /* ---------------------------------------------------------------
     PROBLEM
  --------------------------------------------------------------- */

  .problem {
    padding: 40px 20px 0;
  }

  .problem__box {
    padding: 28px 24px;

    border-radius: 14px;
  }

  .problem__box .section-title {
    font-size: 34px;
  }

  .problem__text {
    margin-top: 24px;

    font-size: 13px;

    line-height: 1.6;
  }

  /* ---------------------------------------------------------------
     SERVICES
  --------------------------------------------------------------- */

  .services {
    padding: 64px 20px 0;
  }

  .services .section-title {
    font-size: 32px;
  }

  .services__grid {
    margin-top: 32px;

    gap: 16px;
  }

  .service-card {
    height: 290px;

    min-height: 290px;

    padding: 28px 24px;

    border-radius: 14px;
  }

  .service-card__title {
    font-size: 30px;

    line-height: 1.05;
  }

  .service-card__text {
    margin-top: 10px;

    max-width: 80%;

    font-size: 13px;

    line-height: 1.5;
  }

  .service-card__icon {
    width: 34px;
  }

  .small-icon {
    width: 30px;
  }

  /* ---------------------------------------------------------------
     TOOLS
  --------------------------------------------------------------- */

  .tools {
    padding: 64px 20px 0;
  }

  .tools__title {
    font-size: 32px;

    line-height: 1.25;
  }

  .tools__grid {
    margin-top: 32px;

    grid-template-columns: 1fr;

    gap: 16px;
  }

  .tools__grid > .tool-card:nth-child(4),
  .tools__grid > .tool-card:nth-child(5) {
    grid-column: auto;
  }

  .tool-card {
    height: 300px;

    min-height: 300px;

    padding: 28px 24px;

    border-radius: 14px;
  }

  .tool-card__title {
    font-size: 28px;

    line-height: 1.08;

    margin-bottom: 16px;
  }

  .tool-card__tags {
    gap: 8px 10px;
  }

  .tool-card__tags li {
    font-size: 13px;

    padding: 8px 14px;
  }

  .tools__note {
    margin-top: 24px;

    font-size: 13px;

    line-height: 1.5;
  }

  .divider {
    margin-top: 24px;
  }

  /* ---------------------------------------------------------------
     FOUNDER
  --------------------------------------------------------------- */

  .founder {
    padding: 64px 20px 0;

    gap: 32px;
  }

  .founder__text {
    width: 100%;
  }

  .founder .section-title {
    font-size: 32px;
  }

  .founder__desc {
    width: 100%;

    margin-top: 16px;

    font-size: 13px;

    line-height: 1.6;
  }

  .founder__badge {
    width: 220px;

    height: 220px;

    align-self: center;
  }

  .founder__badge-img {
    width: 220px;

    height: 220px;
  }

  /* ---------------------------------------------------------------
     CTA
  --------------------------------------------------------------- */

  .cta {
    padding: 48px 20px 0;
  }

  .cta__box {
    padding: 6px;

    border-radius: 16px;
  }

  .cta__inner {
    padding: 24px 20px 20px;

    border-radius: 12px;
  }

  .cta__top {
    gap: 20px;
  }

  .cta__title {
    font-size: 30px;

    line-height: 1.1;
  }

  .cta__arrow {
    margin-left: 3px;
  }

  .cta .btn--header {
    font-size: 13px;

    padding: 12px 18px;
  }

  .cta__text {
    margin-top: 16px;

    font-size: 13px;
  }

  /* ---------------------------------------------------------------
     FOOTER
  --------------------------------------------------------------- */

  .footer__inner {
    padding: 32px 20px;

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 24px 16px;
  }

  .logo-footer__icon {
    width: 190px;
  }

  .footer__heading {
    font-size: 11px;

    margin-bottom: 4px;
  }

  .footer__col {
    gap: 10px;
  }

  .footer__link {
    font-size: 14px;
  }

  .footer__inner > .btn {
    font-size: 13px;

    padding: 12px 18px;
  }
}

/* ==========================================================================
   VERY SMALL PHONES
   ========================================================================== */

@media (max-width: 380px) {
  .hero__title {
    font-size: 40px;
  }

  .mobile-menu__link {
    font-size: 52px;
  }

  .mobile-menu__nav {
    margin-top: 80px;
  }
}
