/* ========== FONTS ========== */
@font-face {
  font-family: "Aptos";
  src: url("../fonts/Aptos.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Aptos";
  src: url("../fonts/Aptos-SemiBold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Aptos";
  src: url("../fonts/Aptos-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Aptos";
  src: url("../fonts/Aptos-Italic.ttf") format("truetype");
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}

/* ========== CSS VARIABLES ========== */
:root {
  --primary: #1A73E8;
  --primary-hover: #1558b0;
  --text: #000;
  --text-secondary: #151515;
  --text-light: #9aa0a6;
  --border: #dadce0;
  --bg-light: #f8f9fa;
  --bg-white: #fff;
  --radius: 12px;
  --radius-pill: 53px;
  --shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.08);
  --transition: all 0.2s ease;
  --max-width: 1296px;
}

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

/* html {
  scroll-behavior: smooth;
  scrollbar-width: none;
}

html::-webkit-scrollbar {
  display: none;
} */

body {
  font-family: "Aptos", "Segoe UI", sans-serif;
  color: var(--text);
  line-height: 1.6;
  background: #f4f8fb;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

main {
  background: var(--bg-white);
}

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

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

ul {
  list-style: none;
}

button {
  border: none;
  cursor: pointer;
  font-family: inherit;
}

/* ========== LAYOUT ========== */
.container {
  width: 100%;
  max-width: min(calc(100% - 32px), var(--max-width));
  margin: 0 auto;
}

.container--narrow {
  max-width: 1076px;
}

.br_mobile {
  display: none;
}

@media (max-width: 1024px) {
  .container--narrow {
    max-width: min(calc(100% - 32px), var(--max-width));
  }
}

@media (max-width: 768px) {
  .br_pc {
    display: none;
  }

  .br_mobile {
    display: block;
  }
}

/* ========== BUTTONS ========== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 600;
  padding: 12px 46px;
  border-radius: 53px;
  cursor: pointer;
  white-space: nowrap;
  min-height: 48px;
  line-height: 120%;
}

.btn--primary {
  background: linear-gradient(90.4deg, #5966F3 0.3%, #257BF9 31.81%, #24ABFF 92.98%);
  color: #fff;
}

.btn--outline {
  background: transparent;
  color: var(--primary);
  border: 1.5px solid transparent;
  background: linear-gradient(#dde8fd, #daebfe) padding-box, linear-gradient(to right, #5966F3 0%, #24ABFF 100%) border-box;
}

@media (max-width: 768px) {
  .btn {
    font-size: 14px;
    min-height: 40px;
  }
}

/* ========== HEADER ========== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #e2edfd;
}

/* PC: ẩn toàn bộ header; chỉ hiển thị trên mobile */
@media (min-width: 769px) {
  .site-header {
    display: none;
  }
}

/* Header spans (near) full viewport width, not the 1200px container */
.header__inner {
  max-width: 1720px;
  padding: 0 48px;
  display: flex;
  align-items: center;
  gap: 18px;
  height: 72px;
}

.header__logo {
  height: 30px;
}

.header__nav {
  margin-left: 40px;
}

.header__nav ul {
  display: flex;
  gap: 28px;
}

.header__nav a {
  font-size: 15px;
  font-weight: 500;
  color: var(--text);
  display: inline-flex;
  align-items: center;
  gap: 5px;
  white-space: nowrap;
}

.header__nav a.is-active {
  color: var(--primary);
}

.header__nav a:hover {
  color: var(--primary);
}

.header__cta {
  margin-left: auto;
  padding: 9px 22px;
}

.header__toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
}

.header__toggle img {
  width: 30px;
  height: 30px;
}

@media (max-width: 768px) {

  /* offset anchor-scroll targets so the sticky 64px header doesn't cover them */
  #tinh-nang,
  #bang-gia,
  #faqs,
  #dang-ky {
    scroll-margin-top: 94px;
  }

  .header__logo {
    width: 132px;
  }

  .header__inner {
    height: 54px;
    gap: 12px;
    padding: 0 12px;
  }

  .header__nav {
    position: fixed;
    top: 54px;
    left: 0;
    right: 0;
    background: #e2edfd;
    border-bottom: 1px solid var(--border);
    padding: 12px 24px 20px;
    display: none;
    margin-left: 0;
    box-shadow: 0 12px 24px rgba(0, 0, 0, .08);
  }

  .header__nav.is-open {
    display: block;
  }

  .header__nav ul {
    flex-direction: column;
    gap: 4px;
  }

  .header__nav a {
    padding: 8px 16px;
    width: 100%;
  }

  .header__cta {
    margin-left: auto;
    padding: 8px 16px;
    font-size: 14px;
    font-weight: 500;
    line-height: 100%;
    min-height: 31px;
    border: 1px solid #1A73E8;
  }

  .header__toggle {
    display: flex;
  }
}

/* ========== HERO SECTION ========== */
.hero {
  position: relative;
  padding: 60px 0 0;
  overflow: hidden;
  background-image: url('../images/20260715_hero_bg.svg');
  background-size: cover;
  background-position: bottom;
}

.hero__overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
}

.hero__inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.hero__content {
  max-width: 1018px;
  margin-bottom: 113px;
}

.hero__label {
  color: var(--text-secondary);
  font-size: 24px;
  font-weight: 400;
  line-height: 36px;
}

.hero__title {
  font-size: 54px;
  font-weight: 600;
  margin-bottom: 16px;
  line-height: 66px;
  background: linear-gradient(90.4deg, #5966F3 0.3%, #257BF9 31.81%, #24ABFF 92.98%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.hero__desc {
  font-size: 18px;
  color: var(--text-secondary);
  line-height: 1.5;
  margin-bottom: 40px;
}

.hero__cta {
  display: flex;
  gap: 24px;
  align-items: center;
  justify-content: center;
}

.hero__icons {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 600px;
  height: 448px;
  margin: 0 auto;
}

@media (max-width: 1024px) {
  .hero {
    padding: 60px 0 0;
  }

  .hero__title {
    font-size: 40px;
  }

  .hero__icons {
    height: 300px;
  }
}

@media (max-width: 768px) {
  .hero {
    padding: 40px 0 0;
    background-image: url('../images/20260715_hero_bg_mobile.svg');
  }

  .hero__title {
    font-size: 24px;
    margin-bottom: 12px;
    line-height: 29px;
  }

  .hero__label {
    font-size: 14px;
    font-family: Aptos;
    font-weight: 400;
    letter-spacing: 10%;
    line-height: 17px;
  }

  .hero__desc {
    font-size: 14px;
    margin-bottom: 16px;
    line-height: 140%;
  }

  .hero__cta {
    gap: 16px;
  }

  .hero__cta .btn {
    width: 100%;
    padding: 12px 38px;
  }

  .hero__icons {
    height: 192px;
  }

  .hero__content {
    margin-bottom: 0px;
  }
}

/* ========== TABS NAVIGATION ========== */
.tabs-nav {
  position: sticky;
  top: 0;
  z-index: 99;
  display: flex;
  justify-content: center;
  padding: 25px 0 0;
  margin-top: 60px;
}

.tabs-nav__pill {
  display: inline-flex;
  gap: 8px;
  background: #FFFDFD;
  border-radius: 61px;
  padding: 16px 30px;
  box-shadow: 0px 6px 24px 0px #0011351A;
}

.tabs-nav__pill a {
  padding: 0px 40px;
  border-radius: 999px;
  font-size: 18px;
  font-weight: 600;
  line-height: 120%;
  color: var(--text-secondary);
}

.tabs-nav__pill a.is-active {
  color: var(--primary);
}

@media (max-width: 768px) {
  .tabs-nav {
    width: 100%;
    max-width: min(calc(100% - 32px), var(--max-width));
    /* padding: 45px 0 0; */
    padding: 65px 0 0;
    margin: 0 auto;
    margin-top: -20px;
  }

  .tabs-nav__pill {
    width: 100%;
    justify-content: space-between;
    gap: 0;
    padding: 16px 40px;
  }

  .tabs-nav__pill a {
    padding: 0;
    font-size: 14px;
  }
}

/* ========== SECTION TITLE ========== */
.section-title {
  text-align: center;
  font-size: 40px;
  font-weight: 400;
  line-height: 49px;
  margin-bottom: 40px;
}

@media (max-width: 1024px) {
  .section-title {
    font-size: 36px;
  }
}

@media (max-width: 768px) {
  .section-title {
    font-size: 24px;
    line-height: 29px;
    margin-bottom: 16px;
  }
}

/* ========== BENEFITS SECTION ========== */
.benefits {
  padding: 120px 0 0;
}

.benefits__header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.benefits__title {
  font-size: 40px;
  font-weight: 400;
  line-height: 49px;
  color: var(--text-secondary);
  text-align: center;
  margin: 0;
}

.benefits__title-row {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.benefits__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.benefit-card {
  text-align: center;
  padding: 40px;
  background: #F4F8FF;
  border-radius: 24px;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.benefit-card:hover {
  background: #c6d9fb;
  box-shadow: var(--shadow-md);
}

.benefit-card__icon {
  width: 80px;
  height: 80px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.benefit-card__icon img {
  width: 100%;
  height: 100%;
}

.benefit-card__title {
  font-size: 24px;
  font-weight: 400;
  line-height: 1.4;
  color: var(--text-secondary);
  margin: 0;
}

.benefits .info {
  position: relative;
  display: inline-flex;
  align-items: center;
  cursor: pointer;
  outline: none;
  width: 30px;
  height: 30px;
  flex: 0 0 auto;
}

/* Info tooltip (price breakdown) — opens upward with a pointed tail */
.info .tooltip {
  position: absolute;
  top: calc(100% + 10px);
  bottom: auto;
  left: -152px;
  width: 340px;
  max-width: calc(100vw - 40px);
  background: #fff;
  border-radius: 20px;
  padding: 20px;
  z-index: 30;
  text-align: left;
  font-size: 14px;
  font-weight: 400;
  line-height: 140%;
  color: var(--text-muted);
  box-shadow: 0px 0px 40px 12px #0000001A;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
}

.info .tooltip::after {
  content: "";
  position: absolute;
  top: auto;
  left: 158px;
  bottom: 100%;
  width: 0;
  height: 0;
  background: none;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-bottom: 12px solid #fff;
}

.info:hover .tooltip {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

@media (max-width: 1024px) {
  .benefits__grid {
    grid-template-columns: 1fr;
  }

  .benefits__title {
    font-size: 36px;
  }
}

@media (max-width: 768px) {
  .benefits {
    padding: 40px 0 0;
  }

  .benefits__header {
    margin-bottom: 16px;
  }

  .benefits__title {
    font-size: 24px;
    line-height: 28px;
  }

  .info .tooltip {
    top: calc(100% + 6px);
    left: -158px;
    width: 260px;
  }

  .benefits__grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .benefit-card {
    padding: 16px;
    flex-direction: row;
    align-items: center;
  }

  .benefit-card__icon {
    width: 60px;
    height: 50px;
    margin: 0px;
  }

  .benefit-card__title {
    font-size: 16px;
    text-align: left;
  }
}

/* ========== TOOLS SECTION ========== */
.tools {
  padding: 71px 0 120px;
}

.tools__grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.tool-item {
  flex: 0 0 120px;
  height: 140px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 24px 0px;
  text-align: center;
  border-radius: 16px;
  background: var(--bg-white);
  border: 1px solid #DDEAFF;
  transition: var(--transition);
  cursor: pointer;
}

.tool-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.tool-item img {
  width: 54px;
  height: 54px;
}

.tool-item span {
  font-size: 18px;
  font-weight: 400;
}

@media (max-width: 1024px) {
  .tools__grid {
    gap: 16px;
  }
}

@media (max-width: 768px) {
  .tools {
    padding: 40px 0 40px;
  }

  .tools__grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px 8px;
    margin-top: 0;
  }

  .tool-item {
    display: flex;
    height: auto;
    min-width: 0;
    padding: 0;
    gap: 8px;
    background: transparent;
    border: 0;
    border-radius: 0;
  }

  .tool-item img {
    width: 40px;
    height: 40px;
  }

  .tool-item span {
    font-size: 14px;
    font-weight: 400;
    white-space: nowrap;
  }

  .tools__grid .tool-item:nth-child(n + 13) {
    display: none;
  }
}

/* ========== PRICING SECTION ========== */
.pricing {
  padding: 120px 0 152px;
  background: #F8F9FA;
  overflow: hidden;
}

.pricing__heading {
  text-align: center;
  margin-bottom: 40px;
}

.pricing__heading h2 {
  font-size: 40px;
  font-weight: 400;
  line-height: 49px;
  color: var(--text-secondary);
}

.pricing__heading p {
  margin-top: 16px;
  font-size: 20px;
  font-style: italic;
  color: var(--text-secondary);
  line-height: 100%;
}

/* SWIPER */
.pricing__slider {
  width: 100%;
}

.pricing__slider .swiper {
  overflow: visible;
}

.pricing__slider .swiper-wrapper {
  align-items: stretch;
}

.pricing__slider .swiper-slide {
  height: auto;
}

/* căn card đầu theo container */
.pricing__slider .swiper {
  padding-left: max(24px, calc((100vw - var(--max-width)) / 2));
}

/* CARD */
.pricing-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 40px;
  background: #fff;
  border-radius: 16px;
  box-sizing: border-box;
  min-width: 480px;
}

.pricing-card h3 {
  font-size: 24px;
  font-weight: 400;
  line-height: 29px;
  color: var(--text-secondary);
}

.pricing-card__price {
  display: flex;
  align-items: flex-end;
  gap: 12px;
  margin-top: 12px;
}

.pricing-card__price strong {
  font-size: 28px;
  font-weight: 700;
  line-height: 120%;
  color: var(--text-secondary);
}

.pricing-card__price span {
  font-size: 18px;
  line-height: 140%;
  color: var(--text-secondary);
}

.pricing-card .btn {
  margin-top: 16px;
  width: 185px;
  min-height: 46px;
  background: linear-gradient(#fff, #fff) padding-box, linear-gradient(to right, #5966F3 0%, #24ABFF 100%) border-box;
}

.pricing-card .btn:hover {
  background: linear-gradient(90.4deg, #5966F3 0.3%, #257BF9 31.81%, #24ABFF 92.98%);
  color: #fff;
  border: none;
}

.price-line {
  width: 100%;
  height: 1px;
  background: url("../images/20260715_price_line.svg") center center no-repeat;
  background-size: contain; /* hoặc 100% auto */
  margin-top: 24px;
}

.pricing-card__features {
  margin-top: 24px;
  display: grid;
  gap: 12px;
}

.pricing-card__features li {
  position: relative;
  list-style: none;
  font-size: 16px;
  color: var(--text-secondary);
  display: flex;
  gap: 12px;
}

.pricing-card__features li::before {
  content: "";
  flex: 0 0 20px;
  width: 20px;
  height: 20px;
  margin-top: 1px;
  background: linear-gradient(90.4deg, #5966F3 0.3%, #257BF9 31.81%, #24ABFF 92.98%);
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23000' d='M9 16.17 4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z'/%3E%3C/svg%3E") center/contain no-repeat;
          mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23000' d='M9 16.17 4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z'/%3E%3C/svg%3E") center/contain no-repeat;
}

.pricing-card__apps {
  margin-top: auto;
  padding-top: 40px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  min-height: 96px;
}

.pricing-card__apps img {
  width: 24px;
  height: 24px;
  object-fit: contain;
}

/* PAGINATION */
.pricing__pagination {
  display: flex;
  justify-content: center;
  margin-top: 24px;
}

.pricing__pagination .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  border-radius: 12px;
  margin: 0 3px;
  background: linear-gradient(90.4deg, #5966F3 0.3%, #257BF9 31.81%, #24ABFF 92.98%);
  opacity: 1;
  transition: .3s;
}

.pricing__pagination .swiper-pagination-bullet-active {
  width: 32px;
  opacity: 1;
}

/* TABLET */
@media (max-width:1200px) {
  .pricing__slider .swiper {
    padding-left: 24px;
  }

  .pricing-card {
    min-width: initial;
  }
}

/* MOBILE */
@media (max-width:768px) {
  .pricing {
    padding: 40px 0;
  }

  .pricing__heading {
    margin-bottom: 24px;
  }

  .pricing__heading h2 {
    margin: auto;
    font-size: 24px;
    line-height: 29px;
  }

  .pricing__heading p {
    font-size: 14px;
  }

  .pricing__slider .swiper {
    padding-left: 16px;
    padding-right: 16px;
  }

  .pricing-card {
    padding: 16px;
    border-radius: 8px;
    min-width: initial;
  }

  .pricing-card h3 {
    line-height: 20px;
    font-size: 16px;
  }

  .pricing-card__price {
    margin-top: 8px;
  }

  .pricing-card__price strong {
    font-size: 24px;
  }

  .pricing-card__price span {
    font-size: 14px;
    line-height: 28px;
  }

  .pricing-card .btn {
    width: 173px;
    min-height: 40px;
    font-size: 12px;
  }

  .price-line {
    background: url("../images/20260715_price_line_mobile.svg") no-repeat;
    margin-top: 16px;
  }

  .pricing-card__features {
    margin-top: 16px;
    gap: 12px;
  }

  .pricing-card__features li {
    font-size: 14px;
  }

  .pricing-card__apps {
    padding-top: 24px;
  }
}

/* ========== FAQ SECTION ========== */
.faq {
  padding: 120px 0 0;
}

.accordion__item {
  border-radius: 16px;
  margin-bottom: 16px;
  overflow: hidden;
  background: #F3F8FF;
  transition: background .2s ease;
}

.accordion__item.is-open {
  background: #F3F8FF;
}

.accordion__head {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
  font-size: 20px;
  font-weight: 600;
  text-align: left;
  line-height: 130%;
  color: var(--text-secondary);
  transition: padding .3s ease;
}

.accordion__icon {
  position: relative;
  flex: 0 0 24px;
  width: 24px;
  height: 24px;
}

.accordion__icon::before,
.accordion__icon::after {
  content: "";
  position: absolute;
  background: linear-gradient(90.4deg, #5966F3 0.3%, #257BF9 31.81%, #24ABFF 92.98%);
  border-radius: 2px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.accordion__icon::before {
  width: 14px;
  height: 2px;
}

.accordion__icon::after {
  width: 2px;
  height: 14px;
  transition: .25s;
}

.accordion__item.is-open .accordion__icon::after {
  transform: translate(-50%, -50%) scaleY(0);
}

.accordion__body {
  max-height: 0;
  overflow: hidden;
  transition: max-height .3s ease;
}

.accordion__body p {
  padding: 0 64px 20px 24px;
  color: #151515;
  font-size: 18px;
  line-height: 150%;
  font-weight: 400;
  text-align: justify;
}

@media (max-width: 768px) {
  .faq {
    padding: 40px 0 0;
  }

  .accordion__item {
    border-radius: 8px;
    margin-bottom: 12px;
  }

  .accordion__head {
    padding: 16px;
    font-size: 14px;
  }

  .accordion__body p {
    padding: 0 16px 16px;
    font-size: 14px;
    line-height: 140%;
  }
}

/* ========== CTA SECTION ========== */
.cta {
  padding: 120px 0;
}

.cta__box {
  position: relative;
  background: url("../images/20260715_cta_bg.svg") center / cover no-repeat, #eef2fd;
  border-radius: 40px;
  text-align: center;
  padding: 40px 80px;
  overflow: hidden;
}

.cta__box h2 {
  font-size: 32px;
  font-weight: 400;
  margin-bottom: 8px;
  line-height: 120%;
  color: #151515
}

.cta__box p {
  color: rgba(21, 21, 21, 0.9);
  font-size: 18px;
  margin-bottom: 24px;
  line-height: 27px;
}

.cta .btn {
  background: #1A73E8;
  min-height: 47px;
}

@media (max-width: 768px) {
  .cta {
    padding: 26px 0 40px;
  }

  .cta__box {
    padding: 40px 16px;
    border-radius: 16px;
  }

  .cta__box h2 {
    font-size: 20px;
    margin-bottom: 8px;
  }

  .cta__box p {
    font-size: 14px;
    line-height: 130%;
    margin-bottom: 16px;
  }

  .cta__box {
    background: url("../images/20260715_cta_bg_mobile.svg") center / cover no-repeat, #eef2fd;
  }

  .cta .btn {
    font-size: 16px;
    min-height: 40px;
  }
}

/* ========== CONTACT SECTION ========== */
.contact {
  padding: 64px 0;
}

.contact__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 48px;
  margin-top: 48px;
}

.contact-card {
  padding: 32px;
  background: var(--bg-light);
  border-radius: var(--radius);
  text-align: center;
  transition: var(--transition);
}

.contact-card:hover {
  background: #e7f3ff;
}

.contact-card__label {
  font-size: 14px;
  font-weight: 600;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 12px;
}

.contact-card__value {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 8px;
}

.contact-card__desc {
  font-size: 12px;
  color: var(--text-light);
}

@media (max-width: 1024px) {
  .contact__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .contact {
    padding: 48px 0;
  }

  .contact__grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .contact-card {
    padding: 24px;
  }
}

/* ========== FOOTER ========== */
.footer {
  background: #0b57c9;
  color: #fff;
  padding: 64px 0 16px;
  margin-top: 64px;
}

.footer__content {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 48px;
  margin-bottom: 48px;
}

.footer__col h4 {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 24px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  opacity: 0.9;
}

.footer__col ul {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer__col a {
  font-size: 14px;
  opacity: 0.8;
  transition: var(--transition);
}

.footer__col a:hover {
  opacity: 1;
}

.footer__bottom {
  text-align: center;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 14px;
  opacity: 0.8;
}

@media (max-width: 1024px) {
  .footer__content {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .footer {
    padding: 48px 0 16px;
  }

  .footer__content {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .footer__col h4 {
    font-size: 12px;
  }

  .footer__col a {
    font-size: 12px;
  }
}

/* ========== ACCESSIBILITY ========== */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}