:root {
  --font-size: 1.1rem;
  --default-padding: 2rem;
  --color-lightgray: #f0f0f0;
  --color-blue: rgb(170, 223, 238, 0.2);
}

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  /* border: 1px solid cyan !important; */
}

body {
  /* font-family: "IBM Plex Sans", sans-serif; */
  font-family: "DM Sans", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-size: var(--font-size);
  /* font-variation-settings: "wdth" 100; */
}

.container {
  width: 100%;
  /* border: 1px solid black; */
}
.adva-topnav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  height: 90px;
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  background: #fff;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  box-sizing: border-box;
}

.adva-logo {
  font-size: 1.45rem;
  font-family: "DM Sans", sans-serif;
  font-weight: 800;
  text-decoration: none;
  color: #000;
  white-space: nowrap;
}

.adva-logo span {
  /* color: #2b4a78; */
  color: #6ff0a6;
}

.adva-menu-toggle {
  display: none;
}

.adva-menu-btn {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  border: 1px solid rgba(31, 54, 94, 0.16);
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.adva-menu-btn span,
.adva-menu-btn span::before,
.adva-menu-btn span::after {
  content: "";
  display: block;
  width: 22px;
  height: 2px;
  background: #1f365e;
  border-radius: 99px;
  position: relative;
}

.adva-menu-btn span::before {
  position: absolute;
  top: -7px;
}

.adva-menu-btn span::after {
  position: absolute;
  top: 7px;
}

.adva-topnav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.adva-topnav-links li {
  position: relative;
}

.adva-topnav-links a {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 12px 14px;
  text-decoration: none;
  color: #1f365e;
  font-family: "DM Sans", sans-serif;
  font-size: 1rem;
  font-weight: 500;
  border-radius: 12px;
  transition: 0.25s ease;
}

.adva-topnav-links a:hover {
  background: #eef7f1;
  color: #14783d;
}

.has-dropdown > a::after {
  content: "";
  width: 1rem;
  height: 1rem;
  flex: 0 0 1rem;
  display: inline-block;
  background: url("../dropdown.svg") center/contain no-repeat;
  margin-top: 1px;
}

.dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 230px;
  padding: 10px;
  margin-top: 10px;
  list-style: none;
  background: #fff;
  border: 1px solid rgba(31, 54, 94, 0.1);
  border-radius: 18px;
  box-shadow: 0 18px 45px rgba(31, 54, 94, 0.12);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: 0.25s ease;
}

.has-dropdown > a {
  display: flex;
  align-items: center;
  gap: 6px;
}

.has-dropdown:hover .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown a {
  padding: 11px 12px;
  font-size: 0.95rem;
  border-radius: 10px;
}

.search-box {
  flex: 0 1 300px;
  max-width: 340px;
  min-width: 220px;
  padding: 5px;
  border: 2px solid #e8f6fb;
  border-radius: 999px;
  display: flex;
  align-items: center;
  background: #fff;
}

.searchbar {
  flex: 1;
  min-width: 0;
  border: none;
  outline: none;
  padding: 12px 16px;
  border-radius: 999px;
  font-family: "DM Sans", sans-serif;
  font-size: 1rem;
}

.search-icon {
  flex: 0 0 48px;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #1f365e;
  border-radius: 50%;
}

@media (max-width: 1100px) {
  .adva-topnav {
    padding: 0 22px;
    gap: 16px;
  }

  .adva-topnav-links a {
    padding: 10px 9px;
    font-size: 0.94rem;
  }

  .search-box {
    max-width: 250px;
    min-width: 180px;
  }
}

@media (max-width: 900px) {
  .adva-topnav {
    height: 76px;
  }

  .adva-menu-btn {
    display: flex;
    order: 3;
  }

  .adva-topnav-links {
    position: fixed;
    top: 76px;
    left: 0;
    right: 0;
    height: calc(100vh - 76px);
    padding: 22px;
    background: #fff;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 6px;
    overflow-y: auto;
    transform: translateX(100%);
    transition: 0.3s ease;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
  }

  .adva-menu-toggle:checked ~ .adva-topnav-links {
    transform: translateX(0);
  }

  .adva-topnav-links a {
    justify-content: space-between;
    padding: 15px 14px;
    font-size: 1rem;
  }

  .dropdown {
    position: static;
    min-width: 100%;
    margin: 4px 0 8px;
    padding: 6px;
    box-shadow: none;
    border-radius: 14px;
    background: #f6faf8;
    opacity: 1;
    visibility: visible;
    transform: none;
    display: none;
  }

  .has-dropdown:hover .dropdown {
    display: block;
  }

  .search-box {
    flex: 1;
    max-width: none;
    min-width: 0;
    order: 2;
  }

  .adva-logo {
    order: 1;
  }
}

@media (max-width: 560px) {
  .adva-topnav {
    padding: 0 14px;
    gap: 10px;
  }

  .adva-logo {
    font-size: 1.1rem;
  }

  .search-box {
    max-width: 150px;
    border-width: 1px;
    padding: 3px;
  }

  .searchbar {
    padding: 10px;
    font-size: 0.9rem;
  }

  .search-icon {
    width: 40px;
    height: 40px;
    flex-basis: 40px;
  }
}
.hero {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: var(--default-padding);
  text-align: center;
  height: 100vh;
  /* background: #fff;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 1) 30%,
    rgba(194, 233, 251, 1) 100%
  ); */

  gap: 1.2rem;
}

.hero h1 {
  /* font-size: 3rem; */

  font-size: clamp(36px, 5vw, 68px);
  line-height: 0.95;
  /* margin: 0 0 24px; */
  font-weight: 900;
  letter-spacing: -0.04em;
  color: #1f365e;
}

.hero p {
  font-size: 1.2rem;
  color: #6b7280; /*6b7280*/
}

.hero button {
  padding: 10px 12px;
  font-family: "DM Sans", sans-serif;
  font-size: 1rem;
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: 8px;
  background-color: #56bfdc;
  color: #fff;
}

.hero button:first-child {
  background-color: #1f365e;
  color: #f0f0f0;
}

.features {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
  grid-auto-rows: 1fr;
  background-color: #f5f5dc;
}

.feature-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  height: 100%;
  padding: 2rem 1rem;
}

.feature-icon {
  /* fill: #9ca3af; */
  /* fill: #279fbf; */
  fill: #1f365e;
  width: 100px;
  height: 100px;
}

.feature-card h2 {
  color: #1f365e;
  font-weight: 700;
  font-size: 1.3rem;
}
.feature-card p {
  font-size: 0.9rem;
  color: #6b7280;
}

/* Tablet */
@media (max-width: 1024px) {
  .features {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 36px 28px;
  }
}

/* Smartphone */
@media (max-width: 640px) {
  .features {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

.trusts {
  overflow: hidden;
  background-color: #1f365e;
  padding: 1rem 0;
}

.trusts-track {
  display: flex;
  width: max-content;
  animation: trustSlide 24s linear infinite;
}

.trusts:hover .trusts-track {
  animation-play-state: paused;
}

.trust-card {
  flex: 0 0 180px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 2rem 1rem;
}

.trust-card p {
  font-size: 0.9rem;
  color: #f0f0f0;
  margin: 10px 0 0;
}

.fa-brands {
  font-size: 3rem;
  color: #f0f0f0;
}

@keyframes trustSlide {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@media (max-width: 768px) {
  .trust-card {
    flex-basis: 150px;
  }

  .fa-brands {
    font-size: 2.4rem;
  }
}

.bento {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  grid-template-areas:
    "intro intro intro cta cta"
    "intro intro intro cta cta"
    "small1 small2 small3 cta cta";
  gap: var(--default-padding);
  padding: var(--default-padding);
  /* background: #fff; */
  background: #ffc1c1;
}

.bento-card {
  background: #f5f5dc;
  color: #1f365e;
  border-radius: 0.5rem;
  border: 1px solid rgba(0, 0, 0, 0.05);
  padding: 32px;
}

.bento-intro {
  grid-area: intro;
  min-height: 420px;
}

.bento-intro h2 {
  font-size: clamp(36px, 5vw, 68px);
  line-height: 0.95;
  margin: 0 0 24px;
  font-weight: 900;
  letter-spacing: -0.04em;
  color: firebrick;
}

.bento-intro p {
  max-width: 520px;
  font-size: 18px;
  line-height: 1.6;
  margin: 0;
}

.small1 {
  grid-area: small1;
}
.small2 {
  grid-area: small2;
}
.small3 {
  grid-area: small3;
}

.bento-small {
  min-height: 180px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 14px;
  text-align: center;
}

.bento-small .material-symbols-outlined {
  font-size: 52px;
  color: firebrick;
  font-variation-settings:
    "FILL" 0,
    "wght" 500,
    "GRAD" 0,
    "opsz" 24;
}

.bento-small h3 {
  margin: 0;
  font-size: 20px;
  font-weight: 900;
}

.bento-cta {
  grid-area: cta;
  min-height: 420px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 28px;
}

.bento-cta p {
  font-size: 22px;
  line-height: 1.5;
  margin: 0;
  max-width: 420px;
}

.bento-cta a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  padding: 16px 26px;
  border-radius: 999px;
  /* background: #30345f; */
  background: #22c55e;
  color: #fff8ea;
  text-decoration: none;
  font-weight: 800;
}

.bento-cta a:hover {
  background: #1a7b3e;
}

@media (max-width: 1024px) {
  .bento {
    grid-template-columns: repeat(2, 1fr);
    grid-template-areas:
      "intro intro"
      "small1 small2"
      "small3 cta";
    padding: 40px;
  }

  .bento-intro,
  .bento-cta {
    min-height: 320px;
  }
}

@media (max-width: 640px) {
  .bento {
    grid-template-columns: 1fr;
    grid-template-areas:
      "intro"
      "small1"
      "small2"
      "small3"
      "cta";
    padding: 24px;
    gap: 16px;
  }

  .bento-card {
    padding: 24px;
    border-radius: 20px;
  }

  .bento-intro,
  .bento-cta,
  .bento-small {
    min-height: auto;
  }

  .bento-intro h2 {
    font-size: 38px;
  }

  .bento-intro p,
  .bento-cta p {
    font-size: 16px;
  }
}

.services-section {
  padding: 80px 7%;
  /* background: #99e3b4; */
}

.services-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 32px;
  margin-bottom: 42px;
}

.services-eyebrow {
  display: block;
  margin-bottom: 12px;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #1a7b3e;
}

.services-header h2 {
  margin: 0 0 14px;
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1;
  letter-spacing: -0.04em;
  color: #1f365e;
}

.services-header p {
  max-width: 620px;
  margin: 0;
  font-size: 1rem;
  line-height: 1.7;
  color: #1f365e;
}

.services-main-btn {
  flex: 0 0 auto;
  padding: 14px 24px;
  border-radius: 999px;
  background: #22c55e;
  color: #f5f5dc;
  font-weight: 800;
  text-decoration: none;
}

.services-main-btn:hover {
  background: #1a7b3e;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.service-card {
  transition: all 0.3s ease;
  min-height: 230px;
  padding: 30px;
  border-radius: 0.5rem;
  background-color: #f7f6f2;
  /* background: rgba(255, 255, 255, 0.72); */
  color: #17191f;
  box-shadow: 0 0px 20px rgba(20, 20, 30, 0.01);
  border: 1px solid rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

/* .service-card-featured {
  background: #17191f;
  color: #fff;
  transform: rotate(-2deg); 
} */

.service-card:hover {
  background-color: #1a7b3e;
  color: #f0f0f0;
  transform: rotate(-2deg);
}

.service-card .material-symbols-outlined {
  font-size: 3.5rem;
  color: #22c55e;
}

.service-card h3 {
  margin: 0 0 14px;
  font-size: 22px;
}

.service-card p {
  margin: 0 0 24px;
  font-size: 1rem;
  line-height: 1.6;
  color: inherit;
  opacity: 0.72;
}

.service-card a {
  color: inherit;
  font-weight: 800;
  text-decoration: none;
}

/* Tablet */
@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .service-card-featured {
    transform: none;
  }
}

/* Mobile */
@media (max-width: 640px) {
  .services-section {
    padding: 56px 20px;
  }

  .services-header {
    flex-direction: column;
    margin-bottom: 28px;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .service-card {
    min-height: auto;
    padding: 26px;
  }

  .services-main-btn {
    width: 100%;
    text-align: center;
  }
}

.adva-why-section {
  /* padding: 90px 20px; */
  padding: var(--default-padding);
  background: #f4f8f6;
}

.adva-why-card {
  width: 100%;
  margin: 0 auto;
  padding: var(--default-padding);
  /* padding: 64px 72px 72px; */
  /* border-radius: 28px;
  background: #ffffff;
  border: 1px solid rgba(31, 163, 117, 0.18);
  box-shadow: 0 18px 45px rgba(16, 64, 49, 0.08); */
}

.adva-why-header {
  text-align: center;
  margin-bottom: var(--default-padding);
}

.adva-eyebrow {
  display: inline-flex;
  padding: 14px 26px;
  /* border-radius: 999px;
  background: linear-gradient(135deg, #1fa375, #7ee35f); */
  color: #062b20;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin-bottom: 22px;
}

.adva-why-header h2 {
  margin: 0;
  color: #07120f;
  font-size: 42px;
  line-height: 1.12;
  font-weight: 900;
  letter-spacing: -0.04em;
}

.adva-why-header h2 span {
  font-weight: 500;
}

.adva-why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  align-items: stretch;
}

.adva-feature {
  background: #fff;
  border-radius: 0.5rem;
  padding: var(--default-padding);
}

.adva-feature h3 {
  margin: 20px 0 10px;
  color: #07120f;
  font-size: 19px;
  line-height: 1.25;
  font-weight: 800;
}

.adva-feature p {
  margin: 0;
  color: #5d6662;
  font-size: 15px;
  line-height: 1.7;
}

.adva-icon,
.mini-icon {
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  background: #e8fbf5;
  color: #1fa375;
  font-size: 30px;
  font-weight: 800;
  box-shadow: inset 0 0 0 1px rgba(31, 163, 117, 0.08);
}

.adva-visual {
  min-height: 190px;
  padding: 28px;
  border-radius: 0.5rem;
  background: linear-gradient(135deg, #e7fbf5, #d9f8ee);
  display: grid;
  grid-template-columns: repeat(3, 70px);
  gap: 24px;
  align-content: center;
  justify-content: center;
}

.adva-visual .mini-icon {
  background: #ffffff;
}

.adva-visual .mini-icon:nth-child(5) {
  grid-column: 3;
}

@media (max-width: 900px) {
  .adva-why-card {
    padding: 48px 24px;
  }

  .adva-why-header h2 {
    font-size: 34px;
  }

  .adva-why-grid {
    grid-template-columns: 1fr 1fr;
    gap: 34px 28px;
  }

  .adva-visual {
    grid-column: 1 / -1;
  }
}

@media (max-width: 640px) {
  .adva-why-section {
    padding: 56px 14px;
  }

  .adva-why-card {
    padding: 38px 20px;
    border-radius: 22px;
  }

  .adva-why-header {
    margin-bottom: 38px;
  }

  .adva-eyebrow {
    font-size: 10px;
    padding: 12px 20px;
  }

  .adva-why-header h2 {
    font-size: 28px;
  }

  .adva-why-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .adva-feature {
    text-align: center;
  }

  .adva-icon {
    margin: 0 auto;
  }

  .adva-visual {
    display: none;
  }
}

.team-section {
  padding: 90px 20px;
  /*background: #f3f3f3;*/
  font-family: "DM Sans", Arial, sans-serif;
}

.team-container {
  width: 100%;
  margin: 0 auto;
  padding: var(--default-padding);
  /*background: #ffffff;*/
  /*box-shadow: 0 28px 70px rgba(0, 0, 0, 0.16);*/
}

.team-header {
  max-width: 620px;
  margin: 0 auto 46px;
  text-align: center;
}

.team-header span {
  display: block;
  margin-bottom: 10px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #111827;
}

.team-header h2 {
  margin: 0 0 14px;
  color: #111827;
  font-size: 42px;
  line-height: 1.08;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.team-header p {
  margin: 0;
  color: #6b7280;
  font-size: 15px;
  line-height: 1.7;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

.team-card {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  transition: 0.3s ease;
}

.team-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.08);
}

.team-image {
  width:100%;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.team-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center bottom;
  display: block;
}

.team-image.blue {
  background: #a7d8f2;
}
.team-image.peach {
  background: #efb0a3;
}
.team-image.gold {
  background: #eec987;
}
.team-image.lavender {
  background: #dda4f4;
}

.team-content {
  padding: 18px 16px 20px;
}

.team-content h3 {
  margin: 0 0 5px;
  color: #111827;
  font-size: 15px;
  line-height: 1.3;
  font-weight: 800;
}

.team-content .role {
  margin: 0 0 10px;
  color: #374151;
  font-size: 12px;
  font-weight: 500;
}

.team-content .bio {
  margin: 0 0 18px;
  color: #6b7280;
  font-size: 12px;
  line-height: 1.55;
}

.team-socials {
  display: flex;
  align-items: center;
  gap: 10px;
}

.team-socials a {
  width: 30px;
  height: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  /*background: #f3f4f6;*/
  color: #4b5563;
  /*font-size: 11px;*/
  text-decoration: none;
  transition: 0.25s ease;
}

.team-socials a:hover {
  background: #111827;
  color: #ffffff;
}
.team-socials a i {
  color: #1fa375;
  font-size: 1rem;
}

@media (max-width: 1024px) {
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .team-section {
    padding: 56px 14px;
  }

  .team-container {
    padding: 42px 18px;
  }

  .team-header h2 {
    font-size: 32px;
  }

  .team-grid {
    grid-template-columns: 1fr;
  }

  .team-image {
    height: 240px;
  }
}

.adva-footer {
  background: linear-gradient(180deg, #10213f 0%, #071427 100%);
  color: #f7f6f2;
  padding: 70px 7% 26px;
  font-family: "DM Sans", sans-serif;
}

.adva-footer-cta {
  max-width: 1100px;
  margin: 0 auto 70px;
  padding: 56px;
  border-radius: 34px;
  text-align: center;
  background:
    radial-gradient(
      circle at top left,
      rgba(111, 240, 166, 0.22),
      transparent 35%
    ),
    #f7f6f2;
  color: #10213f;
}

.adva-footer-cta span {
  display: block;
  margin-bottom: 12px;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: #1f8f47;
}

.adva-footer-cta h2 {
  margin: 0 0 16px;
  font-size: clamp(38px, 6vw, 76px);
  line-height: 0.95;
  letter-spacing: -0.05em;
}

.adva-footer-cta p {
  max-width: 650px;
  margin: 0 auto 30px;
  font-size: 17px;
  line-height: 1.7;
  color: rgba(16, 33, 63, 0.72);
}

.adva-newsletter {
  max-width: 560px;
  margin: 0 auto;
  padding: 7px;
  display: flex;
  gap: 8px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid rgba(16, 33, 63, 0.1);
}

.adva-newsletter input {
  flex: 1;
  min-width: 0;
  border: 0;
  outline: 0;
  padding: 16px 20px;
  border-radius: 999px;
  font-size: 1rem;
  font-family: inherit;
}

.adva-newsletter button {
  border: 0;
  padding: 15px 24px;
  border-radius: 999px;
  background: #1f8f47;
  color: #fff;
  font-weight: 800;
  cursor: pointer;
  font-family: inherit;
}

.adva-footer-main {
  max-width: 1200px;
  margin: 0 auto;
  padding: 44px 0;
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 60px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.adva-footer-logo {
  display: inline-block;
  margin-bottom: 18px;
  color: #fff;
  font-size: 1.5rem;
  font-weight: 900;
  text-decoration: none;
}

.adva-footer-logo span {
  color: #6ff0a6;
  /* color: #1f365e; */
}

.adva-footer-brand p {
  max-width: 420px;
  margin: 0 0 24px;
  line-height: 1.7;
  color: rgba(247, 246, 242, 0.72);
}

.adva-socials {
  display: flex;
  gap: 10px;
}

.adva-socials a {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  text-decoration: none;
  font-size: 13px;
  font-weight: 800;
}

.adva-socials .fa-brands {
  font-size: 20px;
}

.adva-footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 34px;
}

.adva-footer-links h3 {
  margin: 0 0 16px;
  font-size: 15px;
  color: #fff;
}

.adva-footer-links a {
  display: block;
  margin-bottom: 11px;
  color: rgba(247, 246, 242, 0.68);
  text-decoration: none;
  font-size: 15px;
  transition: 0.25s ease;
}

.adva-footer-links a:hover {
  color: #6ff0a6;
  transform: translateX(4px);
}

.adva-footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  color: rgba(247, 246, 242, 0.58);
  font-size: 14px;
}

.adva-footer-bottom p {
  margin: 0;
}

.adva-footer-bottom a {
  color: rgba(247, 246, 242, 0.58);
  text-decoration: none;
  margin-left: 18px;
}

@media (max-width: 900px) {
  .adva-footer {
    padding: 50px 22px 24px;
  }

  .adva-footer-cta {
    padding: 42px 24px;
    margin-bottom: 50px;
  }

  .adva-footer-main {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .adva-footer-links {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 560px) {
  .adva-footer-cta {
    border-radius: 24px;
  }

  .adva-newsletter {
    flex-direction: column;
    border-radius: 22px;
    padding: 8px;
  }

  .adva-newsletter input,
  .adva-newsletter button {
    width: 100%;
    box-sizing: border-box;
  }

  .adva-footer-links {
    grid-template-columns: 1fr;
  }

  .adva-footer-bottom {
    flex-direction: column;
  }

  .adva-footer-bottom a {
    margin-left: 0;
    margin-right: 16px;
  }
}
