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

html {
  scroll-behavior: smooth;
}

body {
  position: relative;
  width: 100%;
  min-height: 100dvh;
  font-family: 'Source Sans 3', sans-serif;
  accent-color: hsl(202, 80%, 64%);
  display: flex;
  flex-direction: column;
}

main {
  flex: 1;
}

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

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

/* Navigation */
.nav-header {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: 0;
  width: 100%;
  height: 4rem;
  padding: 1rem 16%;
  background-color: #141515;
}

.nav-header.home {
  position: absolute;
  z-index: 1000;
  background-color: transparent;
}

.nav-header__logo-box {
  display: inline-block;
  height: 100%;
}

.nav-header__logo-box .logo {
  height: 100%;
  object-fit: contain;
}

.nav-header__nav .nav-list {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 1.6rem;
  list-style: none;
}

.nav-header__nav .nav-link {
  font-size: 1rem;
  font-weight: 400;
  text-transform: capitalize;
  letter-spacing: 0.025rem;
  color: #cacdce;
  transition: color 0.2s ease;
}

.nav-header__nav .nav-link:hover {
  color: #fff;
}

.nav-header__nav .nav-link.cta {
  padding: 0.45rem 0.8rem 0.4rem;
  border-radius: 0.32rem;
  font-weight: 500;
  color: #041925;
  background-color: #fff;
}

.nav-header__toggle {
  display: none;
  aspect-ratio: 1;
  height: 100%;
  border-radius: 0.4rem;
  font-size: 1.4rem;
  color: #fff;
  background-color: #1d1f20;
  border: none;
  cursor: pointer;
}

@media (width <= 768px) {
  .nav-header {
    flex-wrap: wrap;
    padding: 1rem 8%;
  }

  .nav-header__nav {
    z-index: 1000;
    display: none;
    order: 2;
    width: 100%;
    margin-top: 1rem;
    padding: 1.6rem;
    border-radius: 0.4rem;
    backdrop-filter: blur(0.6rem);
    background-color: #050506e6;
    opacity: 0;
    transform: translateY(-8rem);
    transition:
      opacity 0.4s ease,
      transform 0.4s ease,
      display 0.4s ease allow-discrete;
  }

  .nav-header__nav.active {
    position: relative;
    display: block;
    opacity: 1;
    transform: translateY(0);
    transition: all 0.4s ease, opacity 0.4s ease 0.2s;
  }

  @starting-style {
    .nav-header__nav.active {
      display: block;
      opacity: 0;
      transform: translateY(-8rem);
    }
  }

  .nav-header__nav .nav-list {
    flex-direction: column;
    gap: 0;
  }

  .nav-header__nav .nav-list li {
    width: 100%;
  }

  .nav-header__nav .nav-list .nav-link {
    display: block;
    width: 100%;
    padding: 0.45rem 0.4rem 0.4rem;
    border-radius: 0.32rem;
    text-align: center;
    transition: background-color 0.2s ease;
  }

  .nav-header__nav .nav-list .nav-link:not(.cta):hover {
    color: #27292a;
    background-color: #7ec7f1;
  }

  .nav-header__nav .nav-list .nav-link.cta {
    margin-top: 0.4rem;
  }

  .nav-header__toggle {
    order: 1;
    display: grid;
    place-items: center;
  }
}

/* Section layout */
.section-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3.6rem;
  padding: 5.2rem 16%;
}

@media (width <= 768px) {
  .section-wrapper {
    padding: 4.8rem 8%;
  }
}

@media (width <= 576px) {
  .section-wrapper {
    padding: 4rem 4%;
  }
}

/* Headline */
.headline {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  text-align: center;
}

.headline__title {
  font-family: Kanit, sans-serif;
  font-size: clamp(2rem, 4vw, 3.4rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05rem;
  line-height: 1;
  color: #27292a;
}

.headline__subtitle {
  font-size: clamp(1rem, 4vw, 1.2rem);
  line-height: 1.5;
  text-transform: capitalize;
  color: #a0a4a7;
}

/* Hero */
.home-hero {
  isolation: isolate;
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  height: 100svh;
  padding: 6rem 16%;
  overflow: hidden;
}

.home-hero .content {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  width: fit-content;
}

.home-hero .content__title {
  max-width: 12ch;
  font-family: Kanit, sans-serif;
  font-style: italic;
  font-size: clamp(2.8rem, 10vw, 4.8rem);
  font-weight: 800;
  text-transform: uppercase;
  line-height: 0.9;
  color: #fff;
  filter: drop-shadow(0 0 1.6rem black);
}

.home-hero .content__subtitle {
  max-width: 70ch;
  font-size: clamp(1rem, 0.3rem + 2vw, 1.2rem);
  font-weight: 350;
  line-height: 1.5;
  color: #cacdce;
}

.home-hero .content__cta-button {
  display: grid;
  place-items: center;
  width: fit-content;
  padding: 0.64rem 1.6rem;
  border-radius: 0.4rem;
  font-family: Kanit, sans-serif;
  font-size: clamp(1rem, 0.3rem + 2vw, 1.2rem);
  font-weight: 500;
  color: #041925;
  background-color: #ebf8ff;
  transition: all 0.2s ease;
}

.home-hero .content__cta-button:hover {
  outline: 1px solid hsl(202, 100%, 96%);
  color: #ebf8ff;
  background-color: #edf7fd0a;
}

.home-hero::after {
  position: absolute;
  inset: 0;
  z-index: -10;
  content: '';
  mix-blend-mode: multiply;
  backdrop-filter: grayscale(100%) brightness(0.9) contrast(90%);
  background: linear-gradient(
    60deg,
    #00273d 16%,
    #00a2ff 72%,
    #004166 90%
  );
}

.home-hero::before {
  position: absolute;
  inset: 0;
  z-index: -20;
  content: '';
  background: url('../img/hero-background.jpeg');
  background-size: cover;
  background-position: center;
}

@media (width <= 768px) {
  .home-hero {
    padding: 6rem 8%;
  }

  .home-hero .content {
    align-items: center;
    text-align: center;
  }
}

/* About */
.home-about {
  gap: 2.8rem;
  background-color: #fff;
}

.home-about .content {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

.home-about .content {
  gap: 1.2rem;
}

.home-about .content p {
  width: 70ch;
  font-size: 1.1rem;
  text-align: center;
  line-height: 1.6;
  color: #8a9093;
}

.home-about .quote {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.8rem;
}

.home-about .quote blockquote {
  padding: 0.4rem 1.2rem 0.32rem;
  border-radius: 0.4rem;
  font-size: 1.1rem;
  font-style: italic;
  text-align: center;
  color: #147cb8;
  background-color: #d6f0ff;
}

.home-about .quote cite {
  font-size: 0.92rem;
  font-weight: 500;
  font-style: italic;
  color: #8a9093;
}

@media (width <= 768px) {
  .home-about .content p {
    width: 100%;
    font-size: 1rem;
  }

  .home-about .quote blockquote {
    font-size: 1rem;
  }
}

/* Services */
.home-services {
  background-color: #f4f5f5;
}

.home-services .card-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.4rem;
  width: 100%;
}

@media (width <= 992px) {
  .home-services .card-container {
    grid-template-columns: 1fr;
  }
}

.icon-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.2rem;
  padding: 2rem;
  border-radius: 0.8rem;
  background-color: #fff;
  box-shadow: #00000006 0 4px 5px;
  transition: all 0.2s ease;
}

.icon-card__icon-box {
  display: grid;
  place-items: center;
  aspect-ratio: 1;
  width: 3.6rem;
  padding: 0.8rem;
  border-radius: 9999px;
  background-color: #d6f0ff;
}

.icon-card__icon-box svg {
  width: 100%;
  height: 100%;
  fill: #00a2ff;
}

.icon-card__icon-box--emoji {
  font-size: 1.6rem;
  line-height: 1;
}

.icon-card__content {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  width: 100%;
  height: 100%;
}

.icon-card__content .title {
  font-family: Kanit, sans-serif;
  text-transform: capitalize;
  font-size: 1.6rem;
  font-weight: 600;
  color: #3b3e40;
}

.icon-card__content .description {
  font-size: 1rem;
  line-height: 1.5;
  color: #8a9093;
}

.icon-card:hover {
  transform: translateY(-4px);
  background-color: #1895dc;
}

.icon-card:hover .icon-card__icon-box {
  background-color: #fff;
}

.icon-card:hover .icon-card__icon-box svg {
  fill: #27292a;
}

.icon-card:hover .icon-card__content .title {
  color: #fff;
}

.icon-card:hover .icon-card__content .description {
  color: #dfe1e2;
}

@media (width <= 576px) {
  .icon-card {
    align-items: center;
    text-align: center;
    padding: 2rem 1.6rem;
  }

  .icon-card__content .title {
    width: 100%;
    font-size: 1.4rem;
    line-height: 1.3;
    margin-bottom: 0.4rem;
  }
}

/* Hero product / video */
.home-hero-product {
  isolation: isolate;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1rem;
}

.home-hero-product::after {
  position: absolute;
  inset: 0;
  z-index: -10;
  content: '';
  mix-blend-mode: multiply;
  backdrop-filter: grayscale(100%) brightness(0.8) contrast(80%) blur(2rem);
  background: linear-gradient(
    -60deg,
    #003452 16%,
    #0081cc 72%,
    #0067a3 90%
  );
}

.home-hero-product::before {
  position: absolute;
  inset: 0;
  z-index: -20;
  content: '';
  background: url('../img/hero-background.jpeg');
  background-size: cover;
  background-position: center;
}

.home-hero-product__cover {
  aspect-ratio: 16 / 9;
  width: 80%;
}

.youtube-player {
  width: 100%;
  height: 100%;
  border: none;
  border-radius: 0.64rem;
  box-shadow: 0 0.2rem 0.8rem #0006;
}

.home-hero-product .content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  text-align: center;
}

.home-hero-product .content__title {
  font-family: Kanit, sans-serif;
  font-style: italic;
  font-size: clamp(2.4rem, 8vw, 3.2rem);
  line-height: 1;
  text-transform: uppercase;
  color: #fff;
}

.home-hero-product .content p {
  width: 80%;
  font-size: clamp(1rem, 0.3rem + 2vw, 1.1rem);
  line-height: 1.5;
  color: #a0a4a7;
}

.home-hero-product .content__cta {
  display: grid;
  place-items: center;
  width: fit-content;
  padding: 0.64rem 1.6rem;
  border-radius: 0.4rem;
  font-family: Kanit, sans-serif;
  font-size: clamp(1rem, 0.3rem + 2vw, 1.1rem);
  font-weight: 500;
  color: #041925;
  background-color: #ebf8ff;
  transition: all 0.2s ease;
}

.home-hero-product .content__cta:hover {
  outline: 1px solid hsl(202, 100%, 96%);
  color: #ebf8ff;
  background-color: #edf7fd0a;
}

@media (width <= 768px) {
  .home-hero-product {
    height: 100lvh;
    gap: 2rem;
  }

  .home-hero-product__cover,
  .home-hero-product .content p {
    width: 100%;
  }
}

/* Products */
.home-products {
  background-color: #eaebeb;
}

.home-products .card-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: stretch;
  gap: 2.4rem;
  width: 100%;
}

.image-card {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  padding: 0.8rem;
  border-radius: 0.8rem;
  background-color: #fff;
  box-shadow: #00000006 0 4px 5px;
  width: 100%;
  min-width: 280px;
  flex-basis: calc(50% - 2.4rem);
  flex-grow: 1;
}

.image-card__cover {
  aspect-ratio: 16 / 9;
  width: 100%;
  border-radius: 0.4rem;
  overflow: hidden;
}

.image-card__cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.image-card__content {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  padding: 0.8rem;
  flex-grow: 1;
}

.image-card__content .title {
  font-family: Kanit, sans-serif;
  font-size: 1.6rem;
  font-weight: 600;
  line-height: 1.2;
  text-transform: capitalize;
  color: #3b3e40;
}

.image-card__content .tagline {
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1.4;
  color: #147cb8;
}

.image-card__content .description {
  line-height: 1.6;
  color: #8a9093;
}

.image-card__content .button {
  display: grid;
  place-items: center;
  width: fit-content;
  margin-top: auto;
  padding: 0.56rem 1rem;
  border-radius: 0.4rem;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 400;
  text-transform: capitalize;
  background: #009bf5;
  color: #fff;
  cursor: pointer;
  transition: all 0.2s ease;
}

.image-card__content .button:hover {
  background: #0067a3;
}

@media (width <= 576px) {
  .image-card {
    text-align: center;
  }

  .image-card__content .title {
    width: 100%;
    font-size: 1.4rem;
    line-height: 1.3;
  }

  .image-card__content .button {
    width: 100%;
  }
}

.products-closing {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 70ch;
  text-align: center;
}

.products-closing__title {
  font-family: Kanit, sans-serif;
  font-size: 1.4rem;
  font-weight: 600;
  line-height: 1.3;
  color: #27292a;
}

.products-closing p {
  font-size: 1.05rem;
  line-height: 1.6;
  color: #8a9093;
}

/* Blog — layout shell */
main:has(.article-page),
main:has(.blog-page) {
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: #eef0f1;
  padding: 5.5rem 1.25rem 4rem;
}

.blog-page.section-wrapper,
.article-page.section-wrapper {
  width: 100%;
  max-width: 44rem;
  padding: 0;
  gap: 0;
  align-items: stretch;
}

/* Blog index */
.blog-page {
  min-height: auto;
  padding-top: 0;
}

.blog-page .headline {
  margin-bottom: 2rem;
}

.blog-list {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  width: 100%;
}

.blog-card {
  display: block;
  padding: 1.4rem 1.4rem 1.4rem 1.6rem;
  border-radius: 0.8rem;
  border: 1px solid hsl(202, 8%, 90%);
  border-left: 4px solid #00a2ff;
  background-color: #fff;
  box-shadow: 0 2px 8px #00000008;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    border-left-color 0.2s ease;
}

.blog-card:hover {
  transform: translateY(-2px);
  border-left-color: #0067a3;
  box-shadow: 0 8px 24px #00000012;
}

.blog-card__title {
  font-family: Kanit, sans-serif;
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1.35;
  color: #27292a;
  margin-bottom: 0.5rem;
}

.blog-card__excerpt {
  font-size: 0.98rem;
  line-height: 1.55;
  color: #8a9093;
}

.blog-card__link {
  display: inline-block;
  margin-top: 0.75rem;
  font-size: 0.92rem;
  font-weight: 600;
  color: #147cb8;
}

.blog-card:hover .blog-card__link {
  color: #0067a3;
}

.blog-empty {
  max-width: 50ch;
  text-align: center;
  font-size: 1.1rem;
  line-height: 1.6;
  color: #8a9093;
}

.blog-back-link {
  display: grid;
  place-items: center;
  width: fit-content;
  padding: 0.64rem 1.25rem;
  border-radius: 0.4rem;
  font-family: Kanit, sans-serif;
  font-size: 0.95rem;
  font-weight: 500;
  text-transform: capitalize;
  background: #009bf5;
  color: #fff;
  transition: background 0.2s ease;
}

.blog-back-link:hover {
  background: #0067a3;
}

/* Article pages */
.article-page {
  background: #fff;
  border-radius: 0.8rem;
  box-shadow: 0 4px 28px #0000000d;
  overflow: hidden;
}

.article-header {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 2rem 2.25rem 1.75rem;
  border-bottom: none;
  background: linear-gradient(135deg, #00273d 0%, #0081cc 72%, #004166 100%);
}

.article-back {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  width: fit-content;
  padding: 0.3rem 0.7rem;
  border-radius: 9999px;
  font-size: 0.88rem;
  font-weight: 500;
  color: #d6f0ff;
  background: #ffffff1a;
  transition: background 0.2s ease;
}

.article-back:hover {
  background: #ffffff33;
  text-decoration: none;
}

.article-title {
  font-family: Kanit, sans-serif;
  font-size: clamp(1.65rem, 4vw, 2.25rem);
  font-weight: 700;
  line-height: 1.15;
  color: #fff;
  text-wrap: balance;
}

.article-body {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 2rem 2.25rem 1.5rem;
}

.article-body > p:first-of-type {
  font-size: 1.12rem;
  line-height: 1.75;
  color: #4e5255;
}

.article-body h2 {
  font-family: Kanit, sans-serif;
  font-size: 1.35rem;
  font-weight: 600;
  line-height: 1.3;
  color: #27292a;
  margin-top: 1.25rem;
  padding-left: 0.85rem;
  border-left: 3px solid #35a7e9;
}

.article-body p {
  font-size: 1.05rem;
  line-height: 1.75;
  color: #62676a;
}

.article-body ul,
.article-body ol {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  padding: 0.75rem 1rem 0.75rem 2rem;
  border-radius: 0.5rem;
  background-color: #f4f9fc;
  border: 1px solid #d6f0ff;
}

.article-body li {
  font-size: 1.05rem;
  line-height: 1.65;
  color: #62676a;
}

.article-body li::marker {
  color: #147cb8;
}

.article-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  margin: 0;
  padding: 1.75rem 2.25rem 2.25rem;
  text-align: center;
  border-top: 1px solid hsl(202, 8%, 92%);
  background: linear-gradient(180deg, #f8fbfd 0%, #eef6fb 100%);
}

.article-cta p {
  max-width: 36ch;
  font-size: 1.05rem;
  line-height: 1.55;
  color: #4e5255;
}

@media (width <= 768px) {
  main:has(.article-page),
  main:has(.blog-page) {
    padding: 5rem 0.75rem 3rem;
  }

  .article-header,
  .article-body,
  .article-cta {
    padding-inline: 1.25rem;
  }

  .article-header {
    padding-top: 1.5rem;
    padding-bottom: 1.25rem;
  }

  .article-body p,
  .article-body li {
    line-height: 1.65;
  }
}

/* CTA / contact form */
.home-cta {
  position: relative;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
}

.home-cta::after {
  position: absolute;
  inset: 0;
  z-index: -10;
  content: '';
  mix-blend-mode: multiply;
  backdrop-filter: grayscale(100%) brightness(0.4) contrast(64%) blur(2rem);
  background: linear-gradient(
    60deg,
    #003452 16%,
    #0081cc 72%,
    #0067a3 90%
  );
}

.home-cta::before {
  position: absolute;
  inset: 0;
  z-index: -20;
  content: '';
  background: url('../img/hero-background.jpeg');
  background-size: cover;
  background-position: center;
}

.home-cta__title {
  width: 50%;
  font-family: Kanit, sans-serif;
  font-style: italic;
  font-size: 4rem;
  font-weight: 800;
  text-transform: uppercase;
  line-height: 1;
  color: #fff;
  filter: drop-shadow(0 0 1.6rem black);
}

.home-cta .form-container {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  width: 40%;
}

.home-cta .form-container__subtitle {
  font-size: 1.2rem;
  font-weight: 500;
  color: #cacdce;
}

.home-cta .form-container__hint {
  font-size: 0.95rem;
  line-height: 1.5;
  color: #a0a4a7;
}

.home-cta .form-container__hint a {
  color: #ebf8ff;
  text-decoration: underline;
  text-underline-offset: 0.15rem;
}

.home-cta .form-container__hint a:hover {
  color: #fff;
}

.home-cta .form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 0.64rem;
  row-gap: 0.8rem;
  width: 100%;
}

.home-cta .form input {
  width: 100%;
  padding: 0.4rem 1rem;
  border-radius: 0.32rem;
  border: none;
  font-family: inherit;
  font-size: 0.96rem;
  color: #cacdce;
  outline: 1px solid hsla(202, 100%, 40%, 0.4);
  background-color: #33b4ff1a;
  transition: all 0.4s ease;
}

.home-cta .form input::placeholder {
  color: #fff6;
}

.home-cta .form input:focus {
  outline: 1px solid hsla(202, 100%, 40%, 0.8);
  background-color: #33b4ff33;
}

.home-cta .form__submit-btn {
  grid-column: 1 / 3;
  display: grid;
  place-items: center;
  width: 100%;
  min-height: 3rem;
  padding: 0.5rem 1.6rem;
  border-radius: 0.4rem;
  border: none;
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 0.025rem;
  color: #fff;
  background-color: #00a2ff;
  transition: background-color 0.4s ease;
  cursor: pointer;
}

.home-cta .form__submit-btn:disabled {
  cursor: wait;
}

.home-cta .form__submit-btn.success {
  background-color: #6abf40;
  color: #2a4d19;
}

.home-cta .form__submit-btn.failed {
  background-color: #e56161;
  color: #4d1919;
}

@media (width <= 1600px) {
  .home-cta .form {
    display: flex;
    flex-direction: column;
  }

  .home-cta .form input {
    padding: 0.8rem 1rem;
  }
}

@media (width <= 992px) {
  .home-cta {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
  }

  .home-cta__title {
    width: 100%;
    font-size: 3.2rem;
  }

  .home-cta .form-container {
    width: 80%;
  }

  .home-cta .form-container__subtitle {
    width: 100%;
    font-size: 1rem;
    font-weight: 400;
  }
}

@media (width <= 576px) {
  .home-cta {
    height: 100lvh;
  }

  .home-cta__title {
    font-size: 2.8rem;
  }

  .home-cta .form-container {
    width: 100%;
  }
}

/* Loader */
.loader {
  width: 9px;
  aspect-ratio: 1;
  border-radius: 50%;
  animation: loader-pulse 0.8s infinite linear alternate;
}

@keyframes loader-pulse {
  0% {
    box-shadow: 14px 0 #fff, -14px 0 #5ab7ed;
    background: #fff;
  }
  33% {
    box-shadow: 14px 0 #fff, -14px 0 #5ab7ed;
    background: #5ab7ed;
  }
  66% {
    box-shadow: 14px 0 #5ab7ed, -14px 0 #fff;
    background: #5ab7ed;
  }
  100% {
    box-shadow: 14px 0 #5ab7ed, -14px 0 #fff;
    background: #fff;
  }
}

/* Footer */
.footer {
  display: flex;
  flex-direction: column;
  gap: 3.2rem;
  padding: 3.2rem 16% 2rem;
  background-color: #0a0a0b;
  margin-top: auto;
}

.footer__content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 2rem;
  width: 100%;
}

.footer__content .summary-box {
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
  width: 50%;
}

.footer__content .summary-box__logo-box {
  display: flex;
  align-items: center;
  gap: 0.64rem;
}

.footer__content .summary-box__logo-box .logo {
  width: 2.4rem;
  height: auto;
  object-fit: contain;
}

.footer__content .summary-box__logo-box .company-name {
  font-size: 1.1rem;
  color: #cacdce;
}

.footer__content .summary-box__summary {
  font-size: 1rem;
  color: #767c7f;
}

.footer__content .column-container {
  display: flex;
  justify-content: space-around;
  gap: 0.64rem;
  width: 50%;
}

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

.footer-column__title {
  font-size: 1rem;
  font-weight: 400;
  color: #cacdce;
}

.footer-column__list {
  display: flex;
  flex-direction: column;
  gap: 0.64rem;
  list-style: none;
}

.footer-column__list a {
  color: #767c7f;
}

.footer-column__list a:hover {
  color: #35a7e9;
}

.footer__copyright {
  width: 100%;
  font-size: 0.9rem;
  text-align: center;
  color: #767c7f;
}

@media (width <= 768px) {
  .footer {
    padding-inline: 8%;
  }

  .footer__content {
    flex-direction: column;
    align-items: center;
    gap: 2rem;
  }

  .footer__content .summary-box {
    align-items: center;
    gap: 1rem;
    width: 100%;
  }

  .footer__content .summary-box__summary {
    text-align: center;
    width: 40ch;
  }

  .footer__content .column-container {
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    width: 100%;
  }

  .footer-column {
    align-items: center;
  }

  .footer-column__title {
    text-align: center;
  }

  .footer-column__list {
    align-items: center;
  }
}
