﻿@import url("https://fonts.googleapis.com/css2?family=Karla:wght@300;400;500;600;700;800&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Dancing+Script:wght@400;500;600;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Mulish:wght@900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Sora:wght@400;500;600;700;800&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Lily+Script+One&display=swap");

:root,
:root.light-mode {
  --light-block: block;
  --dark-block: none;
  --body-bg: #fbfdfb;
  --util-bg: #fff;
  --util-border: #e6efe9;
  --dark-primary-bg: #ffffff;
  --light-primary-color: #16a34a;
  --text-color: #2c3a4a;
  --text-color-dark: #0b2447;
  --header-bg: #fff;
  --hero-bg: #eef6ee;
  --hero-heading-color: #0b2447;
  --hero-description-color: #15803d;
  --border: #dce8df;
  --border-2: #f3f8f4;
  --feature-bg-1: #eef8f0;
  --feature-bg-2: #eaf2ff;
  --feature-bg-3: #fdf7e9;
  --feature-bg-4: #f1eeff;
  --feature-heading-color: #0b2447;
  --feature-description-color: #3a4a63;
  --feature-link-color: #16a34a;
  --market-bg: #ffffff;
  --market-table-bg: #ffffff;
  --market-border: #e6efe9;
  --sort-icon: #c6cdd4;
  --sort-icon-active: #0b2447;
  --why-choose-bg: #0b2447;
  --testimonial-bg: #fff;
  --testimonial-bg-2: #eef6ee;
  --footer-bg: #eef6ee;
  --accordion-bg: #fff;
  --vcard-home-bg: #e9f3ff;
  --vcard-heading-color: #0b2447;
  --vcard-text-color: #4a5a72;
  --featured-heading-color: #b8c2c9;
  --featured-color: #1a2a3a;
  --featured-active-color: #fff;
  --shadow-bg: rgba(11, 36, 71, 0.18);
  --section-header-bg: #eef6ee;
  --gold: #f5b829;
}

:root.dark-mode {
  --light-block: none;
  --dark-block: block;
  --body-bg: #071120;
  --util-bg: #0a1730;
  --util-border: #122241;
  --dark-primary-bg: #16a34a;
  --light-primary-color: #22c55e;
  --text-color: #dbe4ef;
  --text-color-dark: #f2f6fb;
  --header-bg: #08152b;
  --hero-bg: #071120;
  --hero-heading-color: #ffffff;
  --hero-description-color: #a7e0bd;
  --border: #1b2d4f;
  --border-2: #101d36;
  --feature-bg-1: #0e2115;
  --feature-bg-2: #0d1e38;
  --feature-bg-3: #2b210c;
  --feature-bg-4: #1b1434;
  --feature-heading-color: #ffffff;
  --feature-description-color: #9fb0c8;
  --feature-link-color: #22c55e;
  --market-bg: #0a1730;
  --market-table-bg: transparent;
  --market-border: #1b2d4f;
  --sort-icon: #2c3d5f;
  --sort-icon-active: #22c55e;
  --why-choose-bg: #0b2447;
  --testimonial-bg: #08152b;
  --testimonial-bg-2: #0c1c35;
  --footer-bg: #071120;
  --accordion-bg: #0a1730;
  --vcard-home-bg: #0a1f38;
  --vcard-heading-color: #e6eef7;
  --vcard-text-color: #9fb0c8;
  --featured-heading-color: #3a4d6d;
  --featured-color: #c3d1e3;
  --featured-active-color: #c3d1e3;
  --shadow-bg: rgba(0, 0, 0, 0.65);
  --section-header-bg: #071120;
  --gold: #f5b829;
}

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: inherit;
}

html {
  scroll-behavior: smooth;
  font-size: 62.5%;
}
@media (max-width: 750px) {
  html {
    font-size: 55%;
  }
}
@media (max-width: 600px) {
  html {
    font-size: 50%;
  }
}
@media (max-width: 360px) {
  html {
    font-size: 47%;
  }
}

body {
  box-sizing: border-box;
  max-width: 100dvw;
  overflow-x: hidden;
  font-size: 1.4rem;
  font-weight: 400;
  font-family: "Karla", sans-serif;
  color: var(--text-color);
  background-color: var(--body-bg);
  line-height: 1.5;
  padding-top: 7rem;
  transition: background-color 0.3s, color 0.3s;
}

.container {
  max-width: 130rem;
  margin: auto;
  padding: 0 2.4rem;
}

.section {
  padding: 6.5rem 0;
}

.light-block {
  display: var(--light-block) !important;
}
.dark-block {
  display: var(--dark-block) !important;
}

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

.heading-secondary {
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--text-color-dark);
}

.heading-tertiary {
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--text-color-dark);
}

/* ===================== HEADER ===================== */
.home-header {
  height: 7rem;
  z-index: 999999;
  background-color: var(--header-bg);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
}
.home-header__container {
  max-width: 140rem;
  margin: auto;
  padding: 0 2.4rem;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 4.8rem;
  background-color: var(--header-bg);
  z-index: 999999;
}

.app-brand {
  display: flex;
  align-items: center;
}
.app-brand img {
  height: 4.5rem;
}

.navbar {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 9.6rem;
}
.navbar__nav {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 3.6rem;
}
.navbar__link:link,
.navbar__link:visited {
  font-weight: 600;
  color: var(--text-color);
  text-decoration: none;
  transition: all 0.2s;
}
.navbar__link:hover,
.navbar__link:active {
  color: #16a34a;
}
.navbar__link--active:link,
.navbar__link--active:visited {
  color: #16a34a;
}

.navbar__right {
  display: flex;
  align-items: center;
  gap: 1.8rem;
}
.navbar__btn-link:link,
.navbar__btn-link:visited {
  display: inline-block;
  padding: 0.8rem 3.2rem;
  background-color: #16a34a;
  background-image: linear-gradient(135deg, #22c55e 0%, #16a34a 70%, #15803d 100%);
  border-radius: 10rem;
  color: #e6e6e6;
  font-weight: 500;
  text-decoration: none;
  box-shadow: 0 0.8rem 1.8rem rgba(22, 163, 74, 0.35);
  transition: all 0.2s;
}
.navbar__btn-link:hover,
.navbar__btn-link:active {
  background-color: #15803d;
  background-image: linear-gradient(135deg, #4ade80 0%, #22c55e 70%, #16a34a 100%);
  transform: translateY(-1px);
}

/* theme toggle */
.theme-toggle {
  display: flex;
  align-items: center;
}
.theme-toggle__checkbox {
  appearance: none;
  display: block;
  width: 4.8rem;
  height: 2.6rem;
  background-color: var(--accordion-bg);
  border: 1px solid var(--border);
  border-radius: 10rem;
  position: relative;
  cursor: pointer;
  transition: all 0.3s;
}
.theme-toggle__checkbox::after {
  content: "";
  display: block;
  width: 2rem;
  height: 2rem;
  background-color: #16a34a;
  border-radius: 50%;
  position: absolute;
  left: 3px;
  top: 2px;
  transition: all 0.3s;
}
.theme-toggle__checkbox:checked::after {
  background-color: #fff;
  transform: translateX(2.1rem);
}

/* hamburger */
.navbar__btn {
  display: none;
  background-color: transparent;
  border: none;
  cursor: pointer;
}
.navbar__btn-icon {
  display: block;
  width: 2.8rem;
  height: 2.8rem;
  color: var(--text-color);
}
.navbar__btn-icon--close {
  display: none;
}
.navbar--open .navbar__btn-icon--open {
  display: none;
}
.navbar--open .navbar__btn-icon--close {
  display: block;
}

@media (max-width: 750px) {
  .navbar__btn {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: auto;
  }
  .navbar__nav {
    position: fixed;
    top: 6.5rem;
    left: 0;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 1.2rem;
    background-color: var(--header-bg);
    padding: 2rem 2.8rem;
    border-top: 5.5px solid var(--border);
    transition: all 0.4s;
    transform: translateY(-100%);
    z-index: -1;
  }
  .navbar--open .navbar__nav {
    transform: translateY(0);
  }
  .navbar__nav-item-mobile {
    display: flex;
  }
  .navbar__link:link,
  .navbar__link:visited {
    width: 100%;
    padding: 1.2rem 0;
  }
  .navbar__right .navbar__link {
    display: none;
  }
}

/* ===================== HERO ===================== */
.hero-section {
  background-color: var(--hero-bg);
  background-image: radial-gradient(
      circle at 12% 15%,
      rgba(34, 197, 94, 0.16),
      transparent 42%
    ),
    radial-gradient(
      circle at 88% 85%,
      rgba(11, 36, 71, 0.12),
      transparent 45%
    ),
    radial-gradient(
      circle at 80% 8%,
      rgba(245, 184, 41, 0.1),
      transparent 35%
    );
}
.hero-section__container {
  text-align: center;
  padding-top: 9.6rem;
  perspective: 140rem;
}
.hero-section__content {
  max-width: 80rem;
  margin: auto;
}
.hero-section__heading {
  font-size: 6.2rem;
  line-height: 1.2;
  font-family: "Dancing Script", cursive;
  font-weight: 700;
  margin-bottom: 1.2rem;
  color: var(--hero-heading-color);
}
@media (max-width: 450px) {
  .hero-section__heading {
    font-size: 4.8rem;
  }
}
.hero-section__desc {
  font-size: 1.8rem;
  color: var(--hero-description-color);
  font-weight: 600;
  margin-bottom: 3.6rem;
}
.hero-section__actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.2rem;
  margin-bottom: 3.6rem;
  flex-wrap: wrap;
}
.hero-section__action {
  height: 6.2rem;
  border-radius: 1.2rem;
}
@media (max-width: 400px) {
  .hero-section__action {
    height: 5rem;
  }
}
.hero-deck {
  position: relative;
  max-width: 120rem;
  margin: 0 auto;
  aspect-ratio: 2.6 / 1;
  border-radius: 2.4rem;
  overflow: hidden;
  box-shadow: 0 3.2rem 6.4rem var(--shadow-bg);
  border: 1px solid var(--util-border);
  background: radial-gradient(circle at 15% 20%, rgba(34, 197, 94, 0.16), transparent 45%),
    radial-gradient(circle at 85% 80%, rgba(245, 184, 41, 0.14), transparent 45%),
    radial-gradient(circle at 75% 15%, rgba(11, 36, 71, 0.1), transparent 40%),
    var(--vcard-home-bg);
}
@media (max-width: 700px) {
  .hero-deck {
    aspect-ratio: auto;
    height: 52rem;
  }
}
.hero-deck__bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  will-change: transform;
  background: linear-gradient(
    120deg,
    rgba(34, 197, 94, 0.12),
    transparent 40%,
    rgba(245, 184, 41, 0.1) 80%
  );
  background-size: 300% 300%;
  animation: heroAurora 14s ease-in-out infinite;
}
@keyframes heroAurora {
  0%,
  100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}
.hero-deck__blob {
  position: absolute;
  width: 44rem;
  height: 44rem;
  border-radius: 50%;
  filter: blur(7rem);
  opacity: 0.5;
  will-change: transform;
}
.hero-deck__blob--1 {
  top: -14rem;
  right: -8rem;
  background: radial-gradient(circle, rgba(34, 197, 94, 0.7), rgba(34, 197, 94, 0));
  animation: heroBlobFloat1 9s ease-in-out infinite alternate;
}
.hero-deck__blob--2 {
  bottom: -16rem;
  left: -10rem;
  background: radial-gradient(circle, rgba(245, 184, 41, 0.6), rgba(245, 184, 41, 0));
  animation: heroBlobFloat2 11s ease-in-out infinite alternate;
}
@keyframes heroBlobFloat1 {
  from {
    transform: translate(0, 0) scale(1);
  }
  to {
    transform: translate(-4rem, 3rem) scale(1.12);
  }
}
@keyframes heroBlobFloat2 {
  from {
    transform: translate(0, 0) scale(1);
  }
  to {
    transform: translate(4rem, -3rem) scale(1.1);
  }
}
.hero-deck__dots-g {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(11, 36, 71, 0.14) 1px, transparent 1.5px);
  background-size: 2.6rem 2.6rem;
  -webkit-mask-image: radial-gradient(circle at 50% 55%, #000 20%, transparent 75%);
  mask-image: radial-gradient(circle at 50% 55%, #000 20%, transparent 75%);
  animation: heroGridDrift 16s linear infinite;
}
@keyframes heroGridDrift {
  from {
    background-position: 0 0;
  }
  to {
    background-position: 0 2.6rem;
  }
}
.hero-deck__shimmer {
  position: absolute;
  top: -20%;
  bottom: -20%;
  width: 30%;
  pointer-events: none;
  background: linear-gradient(100deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  transform: skewX(-18deg);
  animation: heroShimmer 6s ease-in-out infinite;
}
@keyframes heroShimmer {
  0% {
    left: -40%;
  }
  55%,
  100% {
    left: 130%;
  }
}
.hero-deck__particles {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}
.hero-deck__particle {
  position: absolute;
  display: block;
  border-radius: 50%;
  background: rgba(34, 197, 94, 0.45);
  opacity: 0;
}
.hero-deck__particle--ambient {
  animation-name: heroParticleRise;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
}
@keyframes heroParticleRise {
  0% {
    opacity: 0;
    transform: translateY(0);
  }
  15% {
    opacity: 0.7;
  }
  85% {
    opacity: 0.4;
  }
  100% {
    opacity: 0;
    transform: translateY(-70vh);
  }
}
.hero-deck__particle--burst {
  background: linear-gradient(135deg, #22c55e, #f5b829);
  animation: heroParticleBurst 1.05s ease-out forwards;
}
@keyframes heroParticleBurst {
  0% {
    opacity: 1;
    transform: translate(0, 0) scale(1);
  }
  100% {
    opacity: 0;
    transform: translate(var(--dx, 0px), var(--dy, 0px)) scale(0.2);
  }
}
.hero-deck__stage {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  perspective: 140rem;
  padding: 6rem 2rem;
  will-change: transform;
}
.hero-deck__card {
  position: absolute;
  width: 34rem;
  max-width: 88vw;
  border-radius: 2.4rem;
  padding: 3.2rem;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(11, 36, 71, 0.08);
  box-shadow: 0 3rem 6rem var(--shadow-bg);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  text-align: center;
  transition: transform 0.8s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.8s ease, filter 0.8s ease;
  will-change: transform, opacity, filter;
}
.hero-deck__card--active {
  transform: translateX(0) scale(1) rotateY(0);
  opacity: 1;
  filter: blur(0);
  z-index: 3;
}
.hero-deck__card--left {
  transform: translateX(-58%) scale(0.78) rotateY(14deg);
  opacity: 0.45;
  filter: blur(2px);
  z-index: 1;
}
.hero-deck__card--right {
  transform: translateX(58%) scale(0.78) rotateY(-14deg);
  opacity: 0.45;
  filter: blur(2px);
  z-index: 1;
}
@media (max-width: 700px) {
  .hero-deck__card--left {
    transform: translateX(-72%) scale(0.72) rotateY(14deg);
  }
  .hero-deck__card--right {
    transform: translateX(72%) scale(0.72) rotateY(-14deg);
  }
}
.hero-deck__icon {
  width: 7.6rem;
  height: 7.6rem;
  margin: 0 auto 1.8rem;
  border-radius: 1.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 1rem 2.4rem rgba(11, 36, 71, 0.18);
}
.hero-deck__icon svg {
  width: 4rem;
  height: 4rem;
}
.hero-deck__card--1 .hero-deck__icon {
  background: linear-gradient(135deg, #22c55e, #16a34a);
}
.hero-deck__card--2 .hero-deck__icon {
  background: linear-gradient(135deg, #1e6fd9, #0b3a8f);
}
.hero-deck__card--3 .hero-deck__icon {
  background: linear-gradient(135deg, #f5b829, #d99b0b);
}
.hero-deck__title {
  font-family: "Sora", sans-serif;
  font-weight: 800;
  font-size: 2.6rem;
  color: var(--text-color-dark);
  margin-bottom: 1rem;
}
.hero-deck__desc {
  font-size: 1.4rem;
  line-height: 1.65;
  color: var(--text-color);
  margin-bottom: 2rem;
}
.hero-deck__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  justify-content: center;
}
.hero-deck__tag {
  padding: 0.6rem 1.3rem;
  border-radius: 100px;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-color-dark);
  background: var(--testimonial-bg-2);
  border: 1px solid var(--util-border);
}
.hero-deck__card--active .hero-deck__icon {
  animation: heroIconPop 0.7s cubic-bezier(0.34, 1.56, 0.64, 1) 0.05s both;
}
.hero-deck__card--active .hero-deck__title {
  animation: heroSlideUp 0.6s ease 0.18s both;
}
.hero-deck__card--active .hero-deck__desc {
  animation: heroSlideUp 0.6s ease 0.28s both;
}
.hero-deck__card--active .hero-deck__tag {
  animation: heroChipPop 0.5s ease both;
}
.hero-deck__card--active .hero-deck__tag:nth-child(1) {
  animation-delay: 0.38s;
}
.hero-deck__card--active .hero-deck__tag:nth-child(2) {
  animation-delay: 0.48s;
}
.hero-deck__card--active .hero-deck__tag:nth-child(3) {
  animation-delay: 0.58s;
}
@keyframes heroSlideUp {
  from {
    opacity: 0;
    transform: translateY(3rem);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes heroIconPop {
  0% {
    opacity: 0;
    transform: scale(0.3) rotate(-12deg);
  }
  60% {
    opacity: 1;
    transform: scale(1.15) rotate(4deg);
  }
  100% {
    opacity: 1;
    transform: scale(1) rotate(0);
  }
}
@keyframes heroChipPop {
  from {
    opacity: 0;
    transform: translateY(1.4rem) scale(0.8);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.hero-deck__progress {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: rgba(11, 36, 71, 0.1);
}
.hero-deck__progress-bar {
  display: block;
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, #22c55e, #f5b829);
}
.hero-deck__dots {
  position: absolute;
  bottom: 2.4rem;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  gap: 1rem;
}
.hero-deck__dot {
  width: 1.1rem;
  height: 1.1rem;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  padding: 0;
  background: rgba(11, 36, 71, 0.25);
  transition: all 0.3s;
}
.hero-deck__dot--active {
  background: #22c55e;
  width: 3rem;
  border-radius: 10rem;
}
@media (prefers-reduced-motion: reduce) {
  .hero-deck__bg,
  .hero-deck__blob,
  .hero-deck__dots-g,
  .hero-deck__shimmer {
    animation: none;
  }
  .hero-deck__particle {
    display: none;
  }
}

/* ===================== FEATURED / PRESS ===================== */
.featured-section {
  padding: 4.8rem 0 0;
}
.featured-section__main {
  width: 87.2rem;
  max-width: 100%;
  margin: auto;
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
}
.featured-section__header {
  display: flex;
  align-items: center;
  gap: 1.6rem;
}
.featured-section__header-line {
  flex: 1;
  height: 1px;
  background-color: var(--featured-heading-color);
}
.featured-section__heading {
  font-size: 2rem;
  font-weight: 600;
  font-family: "Sora", sans-serif;
  color: var(--featured-heading-color);
  white-space: nowrap;
}
.featured-section__featured {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2.4rem;
}
@media (max-width: 550px) {
  .featured-section__featured {
    grid-template-columns: repeat(2, 1fr);
  }
}
.featured-section__feature {
  height: 8rem;
  border-radius: 0.8rem;
  padding: 2.4rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--util-bg);
  transition: all 0.3s;
  text-decoration: none;
  color: var(--featured-color);
}
.featured-section__feature:hover {
  background-color: #16a34a;
}
.featured-section__feature:hover svg {
  color: var(--featured-active-color);
}
.featured-section__feature svg {
  width: 100%;
  max-height: 5rem;
  color: var(--featured-color);
  transition: color 0.3s;
}

/* ===================== FEATURES ===================== */
.features-section {
  padding: 4.8rem 0;
}
.features-section__container {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.features-section__description {
  width: 25%;
  color: var(--text-color);
  font-size: 1.5rem;
}
.features-section__features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.6rem;
}
@media (max-width: 1100px) {
  .features-section__features {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 650px) {
  .features-section__features {
    grid-template-columns: 1fr;
  }
}

.feature {
  padding: 3.2rem;
  border-radius: 1.6rem;
  transition: transform 0.3s, box-shadow 0.3s;
}
.feature:hover {
  transform: translateY(-6px);
  box-shadow: 0 1.6rem 3.2rem var(--shadow-bg);
}
.feature--1,
.feature--5,
.feature--9 {
  background-color: var(--feature-bg-1);
}
.feature--2,
.feature--6,
.feature--10 {
  background-color: var(--feature-bg-2);
}
.feature--3,
.feature--7,
.feature--11 {
  background-color: var(--feature-bg-3);
}
.feature--4,
.feature--8,
.feature--12 {
  background-color: var(--feature-bg-4);
}
.feature__img {
  display: inline-block;
  height: 15rem;
  margin-bottom: 2.4rem;
}
.feature__icon {
  display: block;
  width: 6.4rem;
  height: 6.4rem;
  margin-bottom: 2.4rem;
  padding: 1.2rem;
  border-radius: 1.4rem;
  background-color: rgba(255, 255, 255, 0.55);
  box-shadow: 0 0.8rem 1.6rem rgba(11, 36, 71, 0.08);
}
.feature__heading {
  color: var(--feature-heading-color);
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: 1.2rem;
}
.feature__text {
  font-size: 1.35rem;
  color: var(--feature-description-color);
  font-weight: 500;
  margin-bottom: 1.6rem;
}
.feature__link:link,
.feature__link:visited {
  color: var(--feature-link-color);
  font-weight: 600;
  text-decoration: none;
}
.feature__link:hover {
  color: #16a34a;
}
.feature__link span {
  display: inline-block;
  border-bottom: 1px solid currentColor;
}

/* ===================== HV CARD (virtual card) ===================== */
.hv-card {
  width: 125.2rem;
  max-width: calc(100vw - 4.8rem);
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20rem;
  padding: 5.6rem;
  border-radius: 1.6rem;
  background-color: var(--vcard-home-bg);
}
@media (max-width: 1250px) {
  .hv-card {
    gap: 10rem;
  }
}
@media (max-width: 1100px) {
  .hv-card {
    gap: 4.8rem;
  }
}
@media (max-width: 900px) {
  .hv-card {
    flex-direction: column;
    gap: 10rem;
    text-align: center;
  }
}
@media (max-width: 550px) {
  .hv-card {
    padding: 3.6rem;
    gap: 4.8rem;
  }
}
.hv-card__eyebrow {
  font-size: 1.8rem;
  font-weight: 700;
  font-family: "Sora", sans-serif;
  color: #a6a6a6;
  margin-bottom: 0.8rem;
}
.hv-card__heading {
  font-size: 2.8rem;
  font-weight: 700;
  font-family: "Sora", sans-serif;
  color: var(--vcard-heading-color);
  margin-bottom: 1.2rem;
}
.hv-card__sub-heading {
  font-size: 1.8rem;
  font-family: "Sora", sans-serif;
  font-weight: 700;
  color: #a6a6a6;
  margin-bottom: 1.2rem;
}
.hv-card__text {
  font-size: 1.5rem;
  color: var(--vcard-text-color);
  margin-bottom: 2.4rem;
  max-width: 60rem;
}
.hv-card__button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  padding: 1.6rem 4rem;
  border-radius: 0.8rem;
  cursor: pointer;
  color: #ffffff;
  border: none;
  background-color: #16a34a;
  background-image: linear-gradient(135deg, #22c55e 0%, #16a34a 60%, #15803d 100%);
  font-family: inherit;
  font-size: 1.5rem;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 1rem 2.4rem rgba(22, 163, 74, 0.35);
  transition: all 0.2s;
}
.hv-card__button:hover {
  background-color: #15803d;
  background-image: linear-gradient(135deg, #4ade80 0%, #22c55e 60%, #16a34a 100%);
  transform: translateY(-2px);
}
.hv-card__img {
  display: block;
  width: 45.6rem;
}
@media (max-width: 1250px) {
  .hv-card__img {
    width: 40rem;
  }
}
@media (max-width: 1000px) {
  .hv-card__img {
    width: 35rem;
  }
}
@media (max-width: 900px) {
  .hv-card__img {
    width: 50rem;
    max-width: 100%;
  }
}

/* ===================== MARKET ===================== */
.market-section {
  padding: 4.8rem 0;
}
.market-section__container {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.market-section__heading {
  font-size: 2.8rem;
  font-weight: 700;
  font-family: "Sora", sans-serif;
  color: var(--text-color-dark);
}
.market-section__coins-grid {
  display: flex;
  gap: 1.6rem;
  overflow-x: scroll;
  padding-bottom: 0.5rem;
}
.market-section__coins-grid::-webkit-scrollbar {
  display: none;
}
.market-section__coins-grid > div {
  flex: 1;
  min-width: 26rem;
}

.coins-block {
  background-color: var(--market-bg);
  border-radius: 1.2rem;
  padding: 1.6rem;
}
.coins-block__heading {
  font-size: 1.6rem;
  font-weight: 700;
  color: #15803d;
  margin-bottom: 1.2rem;
}
.coins-block__coin {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  padding: 0.8rem 0;
  border-bottom: 1px solid var(--market-border);
}
.coins-block__coin:last-child {
  border-bottom: none;
}
.coins-block__coin img {
  width: 3.2rem;
  height: 3.2rem;
}
.coins-block__coin-name {
  flex: 1;
  font-weight: 600;
}
.coins-block__coin-name span {
  text-transform: uppercase;
  font-size: 1.1rem;
  color: var(--sort-icon);
  display: block;
  line-height: 1.2;
}
.coins-block__coin-price {
  font-weight: 700;
  font-size: 1.3rem;
}
.coins-block__coin-change--success {
  color: #1a7f40;
  font-weight: 600;
}
.coins-block__coin-change--danger {
  color: #ff6b6b;
  font-weight: 600;
}

/* market table */
.market__filter-block {
  display: flex;
  flex-direction: column;
  gap: 1.8rem;
}
.market__filter {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2.4rem;
}
@media (max-width: 550px) {
  .market__filter {
    flex-direction: column;
    align-items: stretch;
  }
}
.market__filter-btns {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.2rem;
}
.market__filter-btn {
  display: inline-block;
  background-color: var(--util-bg);
  border: 1px solid var(--util-border);
  height: 3.6rem;
  padding: 0 1.2rem;
  border-radius: 3px;
  font-family: inherit;
  cursor: pointer;
  color: var(--text-color);
  font-size: 1.3rem;
  transition: all 0.2s;
}
.market__filter-btn--active,
.market__filter-btn:hover {
  background-color: #16a34a;
  color: #e6e6e6;
  border: 1px solid #16a34a;
}
.market__search-form {
  height: 3.6rem;
  background-color: var(--util-bg);
  border: 1px solid var(--util-border);
  border-radius: 6px;
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.market__search-form button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3.6rem;
  background-color: transparent;
  border: none;
  cursor: pointer;
}
.market__search-form button svg {
  width: 1.6rem;
  height: 1.6rem;
  color: var(--text-color);
}
.market__search-form input {
  color: var(--text-color);
  background-color: transparent;
  outline: none;
  margin-right: 6px;
  font-family: inherit;
  font-size: inherit;
  border: none;
  width: 18rem;
}
.market__table-responsive {
  overflow-x: scroll;
}
.market__table-responsive::-webkit-scrollbar {
  display: none;
}
.market__table {
  width: 100%;
  border: 1px solid var(--market-border);
  border-collapse: collapse;
}
.market__table tr {
  background-color: var(--market-table-bg);
  border: 1px solid var(--market-border);
  height: 4.8rem;
}
.market__table th {
  text-align: left;
  font-weight: 400;
  text-transform: uppercase;
  white-space: nowrap;
  color: var(--sort-icon);
  font-size: 1.2rem;
}
.market__table td {
  font-weight: 600;
  font-size: 1.2rem;
}
.market__table th,
.market__table td {
  padding: 0.6rem 1.2rem;
}
.market__table-heading {
  display: flex;
  align-items: center;
  gap: 2.4rem;
  cursor: pointer;
}
.market__table-heading svg {
  width: 1.2rem;
  height: 1.2rem;
  color: var(--sort-icon);
}
.market__table-heading--active svg {
  color: var(--sort-icon-active);
}
.market__currency {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}
.market__currency img {
  height: 2.8rem;
}
.market__currency-name {
  display: inline-block;
  white-space: nowrap;
  padding-right: 2rem;
}
.market__currency-name span {
  text-transform: uppercase;
  font-size: 1rem;
  color: var(--sort-icon);
  display: block;
  line-height: 1.2;
}
.market__trade-btn {
  display: inline-block;
  padding: 6px 2.4rem;
  background-color: #1a7f40;
  background-image: linear-gradient(135deg, #22c55e 0%, #16a34a 70%, #15803d 100%);
  font-family: inherit;
  color: #e6e6e6;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  font-size: 1.2rem;
  text-decoration: none;
  transition: all 0.2s;
}
.market__trade-btn:hover {
  background-color: #16a34a;
  background-image: linear-gradient(135deg, #4ade80 0%, #22c55e 70%, #16a34a 100%);
}
.market__change {
  display: flex;
  align-items: center;
  gap: 4px;
}
.market__change--danger {
  color: #ff6b6b;
}
.market__change--success {
  color: #1a7f40;
}
.market__pagination {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 1.2rem;
  font-size: 1.3rem;
}
.market__page-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background-color: var(--util-bg);
  border: 1px solid var(--util-border);
  color: var(--text-color);
  border-radius: 6px;
  padding: 0.8rem 1.6rem;
  font-family: inherit;
  cursor: pointer;
  font-size: 1.3rem;
}
.market__page-btn:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

/* ===================== CTA / WHY CHOOSE US ===================== */
.cta-section {
  padding: 4.8rem 0;
}
.cta {
  background-color: var(--why-choose-bg);
  background-image: radial-gradient(
      circle at 8% 20%,
      rgba(34, 197, 94, 0.22),
      transparent 40%
    ),
    radial-gradient(
      circle at 92% 85%,
      rgba(245, 184, 41, 0.18),
      transparent 42%
    );
  border-radius: 2.4rem;
  overflow: hidden;
}
.cta__main {
  padding: 0 4.8rem;
  text-align: center;
}
@media (max-width: 500px) {
  .cta__main {
    padding: 0 1.2rem;
  }
}
.cta__main-img {
  height: 20rem;
  transform: translateY(-25%);
}
@media (max-width: 500px) {
  .cta__main-img {
    height: 14rem;
  }
}
.cta__heading {
  font-size: 2.8rem;
  font-weight: 700;
  color: #e6e6e6;
  margin-bottom: 1.2rem;
  margin-top: -4rem;
}
.cta__sub-heading {
  font-size: 1.6rem;
  color: #e6e6e6;
  margin-bottom: 0.8rem;
}
.cta__text {
  font-size: 1.4rem;
  color: #e6e6e6;
  margin-bottom: 3.6rem;
  max-width: 90rem;
  margin-left: auto;
  margin-right: auto;
}
.cta__link:link,
.cta__link:visited {
  display: inline-block;
  padding: 1.2rem 3.6rem;
  border-radius: 100px;
  color: #141414;
  background-color: #e6e6e6;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s;
}
.cta__link:hover {
  background-color: #fff;
}
.cta__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4.8rem;
  padding: 6rem 2.4rem 4.8rem;
  color: #e6e6e6;
}
@media (max-width: 1050px) {
  .cta__grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 500px) {
  .cta__grid {
    padding: 4.8rem 1.2rem;
  }
}
.cta__info {
  display: flex;
  gap: 1.2rem;
}
.cta__info-icon-block {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 5.6rem;
  height: 5.6rem;
  border-radius: 1.4rem;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.16);
}
.cta__info-icon-block img {
  height: 3.6rem;
}
.cta__info-icon-block svg {
  width: 3.2rem;
  height: 3.2rem;
}
.cta__info-heading {
  font-size: 1.8rem;
  margin-bottom: 0.8rem;
  color: #e6e6e6;
}
.cta__info-text {
  font-size: 1.4rem;
  color: #c8d4e6;
}
.cta__footer-1 {
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
  color: #e6e6e6;
  text-align: center;
  padding: 0 4.8rem 4.8rem;
}
.cta__link-2:link,
.cta__link-2:visited {
  text-decoration: underline;
  color: #e6e6e6;
  font-weight: 600;
}
.cta__footer {
  text-align: right;
  margin-top: -5rem;
  padding-right: 2.4rem;
}
.cta__footer-img {
  height: 20rem;
  display: inline;
}
@media (max-width: 500px) {
  .cta__footer-img {
    height: 12rem;
  }
}

/* ===================== TESTIMONIALS ===================== */
.testimonials-section {
  padding: 4.8rem 0;
}
.testimonials-section__header {
  text-align: center;
  font-size: 3.2rem;
  font-weight: 700;
  margin-bottom: 3.6rem;
  color: var(--text-color-dark);
}
.testimonials {
  height: 35rem;
  position: relative;
  overflow: hidden;
}
.testimonial {
  width: 55%;
  height: 30rem;
  position: absolute;
  top: 0;
  left: 50%;
  opacity: 0.5;
  transform: translateX(-50%) scale(0.8);
  transition: all 0.4s;
}
@media (max-width: 1200px) {
  .testimonial {
    width: 70%;
  }
}
@media (max-width: 900px) {
  .testimonial {
    width: 90%;
  }
}
@media (max-width: 650px) {
  .testimonial {
    width: 95%;
  }
}
.testimonial::before {
  content: "";
  display: none;
  position: absolute;
  bottom: -1.8rem;
  left: -1.8rem;
  height: 90%;
  width: 90%;
  border-radius: 1.2rem;
  background-color: var(--testimonial-bg-2);
  z-index: -1;
}
.testimonial--active {
  opacity: 1;
  transform: translateX(-50%) scale(1);
}
.testimonial--active::before {
  display: block;
}
.testimonial__main {
  height: 100%;
  background-color: var(--testimonial-bg);
  padding: 4.8rem;
  border-radius: 1.2rem;
  box-shadow: 0 1.4rem 4rem var(--shadow-bg);
  display: flex;
  flex-direction: column;
}
@media (max-width: 650px) {
  .testimonial__main {
    padding: 2.4rem;
  }
}
@media (max-width: 400px) {
  .testimonial__main {
    padding: 1.2rem;
  }
}
.testimonial__quote {
  font-size: 5.6rem;
  font-weight: 900;
  font-family: "Mulish", sans-serif;
  color: #16a34a;
  line-height: 1;
  flex-shrink: 0;
}
.testimonial__msg {
  padding-left: 3.6rem;
  color: var(--text-color);
  margin-bottom: 1.8rem;
  margin-top: -1.8rem;
  overflow-y: auto;
}
@media (max-width: 700px) {
  .testimonial__msg {
    padding-left: 0;
  }
}
.testimonial__author {
  text-align: right;
  color: #16a34a;
  margin-top: auto;
}
.testimonial__dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.2rem;
  margin-top: 2.4rem;
}
.testimonial__dot {
  width: 1.2rem;
  height: 1.2rem;
  border-radius: 50%;
  background-color: var(--sort-icon);
  border: none;
  cursor: pointer;
  transition: all 0.3s;
}
.testimonial__dot--active {
  background-color: #16a34a;
  width: 3rem;
  border-radius: 10rem;
}

/* ===================== SOCIALS ===================== */
.socials-section {
  padding: 4.8rem 0;
}
.socials-section__header {
  text-align: center;
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 3.6rem;
  color: var(--text-color-dark);
}
.socials-section__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2.4rem;
}
@media (max-width: 900px) {
  .socials-section__grid {
    gap: 1.2rem;
  }
}
@media (max-width: 750px) {
  .socials-section__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 4.8rem;
  }
}
@media (max-width: 500px) {
  .socials-section__grid {
    grid-template-columns: 1fr;
  }
}
.socials-section__social {
  padding: 2.4rem;
  border-radius: 6px;
  background-color: var(--util-bg);
  transition: all 0.3s;
  text-decoration: none;
  display: block;
}
.socials-section__social:hover {
  box-shadow: 0 1.5rem 4rem var(--shadow-bg);
}
.socials-section__social img {
  height: 6rem;
  margin-bottom: 1.6rem;
}
.socials-section__social-heading {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--text-color-dark);
  margin-bottom: 0.8rem;
}
.socials-section__social-text {
  font-size: 1.35rem;
  color: var(--text-color);
}

/* ===================== ABOUT THE CEO ===================== */
.ceo-section {
  padding: 4.8rem 0;
}
.ceo {
  display: flex;
  align-items: center;
  gap: 6rem;
  padding: 5.6rem;
  border-radius: 2.4rem;
  background-color: var(--util-bg);
  border: 1px solid var(--util-border);
  box-shadow: 0 1.4rem 4rem var(--shadow-bg);
}
@media (max-width: 900px) {
  .ceo {
    flex-direction: column;
    text-align: center;
    gap: 4.8rem;
    padding: 3.2rem;
  }
}
@media (max-width: 500px) {
  .ceo {
    padding: 2.4rem;
  }
}
.ceo__img-wrap {
  position: relative;
  flex-shrink: 0;
}
.ceo__img-wrap::before {
  content: "";
  position: absolute;
  inset: -1.8rem;
  border-radius: 50%;
  border: 2px dashed rgba(34, 197, 94, 0.5);
}
.ceo__img-wrap::after {
  content: "";
  position: absolute;
  inset: -3.2rem;
  border-radius: 50%;
  border: 1px dashed rgba(245, 184, 41, 0.4);
}
@media (max-width: 500px) {
  .ceo__img-wrap::before {
    inset: -1.2rem;
  }
  .ceo__img-wrap::after {
    inset: -2.4rem;
  }
}
.ceo__img {
  width: 28rem;
  height: 28rem;
  border-radius: 50%;
  object-fit: cover;
  display: block;
  box-shadow: 0 2rem 4rem var(--shadow-bg);
}
@media (max-width: 500px) {
  .ceo__img {
    width: 22rem;
    height: 22rem;
  }
}
.ceo__eyebrow {
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #16a34a;
  margin-bottom: 1.2rem;
}
.ceo__heading {
  font-size: 3.2rem;
  font-weight: 700;
  color: var(--text-color-dark);
  margin-bottom: 0.6rem;
}
.ceo__role {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 2rem;
}
.ceo__text {
  font-size: 1.5rem;
  line-height: 1.7;
  color: var(--text-color);
  margin-bottom: 2.4rem;
  max-width: 60rem;
}
@media (max-width: 900px) {
  .ceo__text {
    margin-left: auto;
    margin-right: auto;
  }
}
.ceo__creds {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2.8rem;
}
@media (max-width: 900px) {
  .ceo__creds {
    justify-content: center;
  }
}
.ceo__cred {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.8rem 1.6rem;
  border-radius: 100px;
  background-color: var(--testimonial-bg-2);
  color: var(--text-color-dark);
  font-size: 1.3rem;
  font-weight: 600;
}
.ceo__cred svg {
  width: 1.7rem;
  height: 1.7rem;
  flex-shrink: 0;
}
.ceo__link:link,
.ceo__link:visited {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  padding: 1.2rem 2.8rem;
  border-radius: 100px;
  background: linear-gradient(135deg, #22c55e, #16a34a);
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 1rem 2.4rem rgba(22, 163, 74, 0.35);
  transition: all 0.2s;
}
.ceo__link:hover {
  transform: translateY(-2px);
}
.ceo__link img {
  width: 2rem;
  height: 2rem;
}

/* ===================== FOOTER ===================== */
.home-footer {
  margin-top: 4.8rem;
  padding: 4.8rem 0;
  background-color: var(--footer-bg);
}
.home-footer__container {
  display: grid;
  grid-template-columns: 35fr 20fr 20fr 20fr;
  gap: 4.8rem;
}
@media (max-width: 750px) {
  .home-footer__container {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 500px) {
  .home-footer__container {
    grid-template-columns: 1fr;
  }
}
.home-footer__logo {
  height: 5rem;
  margin-bottom: 2.4rem;
}
.home-footer__brand {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text-color-dark);
  margin-bottom: 0.4rem;
}
.home-footer__brand-link {
  font-size: 1.3rem;
  margin-bottom: 0;
}
.home-footer__brand-link a:link,
.home-footer__brand-link a:visited {
  text-decoration: none;
  color: var(--text-color);
  transition: all 0.2s;
}
.home-footer__brand-link a:hover {
  color: #16a34a;
}
.home-footer__text {
  margin-bottom: 1.2rem;
  display: flex;
  align-items: center;
  gap: 1.2rem;
}
.home-footer__heading {
  margin-bottom: 2.4rem;
  font-weight: 600;
}
.home-footer__nav {
  display: flex;
  flex-direction: column;
  gap: 6px;
  list-style: none;
}
.home-footer__nav-link:link,
.home-footer__nav-link:visited {
  text-decoration: none;
  color: var(--text-color);
  transition: all 0.2s;
}
.home-footer__nav-link:hover {
  color: #16a34a;
}
.home-footer__socials {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}
.home-footer__social-link:link,
.home-footer__social-link:visited {
  text-decoration: none;
  color: var(--text-color);
  display: inline-flex;
}
.home-footer__social-link svg {
  display: block;
  width: 2.4rem;
  height: 2.4rem;
  transition: all 0.2s;
}
.home-footer__social-link:hover svg {
  color: #16a34a;
}
.home-footer__footer {
  font-size: 1.4rem;
  grid-column: 1/-1;
  text-align: center;
  color: var(--text-color);
}
.home-footer__brandname {
  font-family: "Sora", sans-serif;
  font-weight: 800;
  font-size: 2rem;
  color: var(--text-color-dark);
}
.home-footer__suffix {
  color: var(--text-color);
  margin-left: 0.6rem;
}
.home-footer__copyright {
  display: block;
  margin-top: 0.8rem;
  color: var(--text-color);
}
.home-footer__footer span {
  color: red;
}
