/* ======================================== */
/* HEADING */
/* ======================================== */
.main-wrapper {
  background: linear-gradient(180deg, #ffffff 15%, #ffa6004f);
  min-height: 65vh;
  position: relative;
  overflow: hidden;
}

/* Header Menu */
.header__navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 2.4rem;
  padding-bottom: 2.4rem;
}

.logo-img {
  width: 3.2rem;
  height: 3.2rem;
  object-fit: cover;
}

.header__nav-right {
  display: flex;
  align-items: center;
  gap: 4.8rem;
}

.header__nav-list {
  display: flex;
  gap: 3.2rem;
  font-size: 1.6rem;
  font-weight: 400;
}

.header__nav-list a {
  color: var(--color-text-3);
  transition: color 0.3s ease;
}

.header__nav-list a.active {
  font-weight: 500;
}

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

/* Hero Section */
.hero {
  text-align: center;
  padding: 8rem 0 16rem;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 1;
  gap: 3.2rem;
}

/* Amazon Badge */
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  padding: 0.6rem 1.6rem 0.6rem 0.6rem;
  border-radius: 4rem;
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--color-text-2);
  margin-bottom: -2rem;
}

.amazon-logo {
  width: 6.4rem;
  height: 3rem;
  border-radius: 8px;
  border: 1px solid var(--color-stroke-2);
}

/* Hero Heading */
.hero__heading {
  font-size: 7.2rem;
  font-weight: 600;
  color: var(--color-text-2);
  line-height: 1.1;
}

/* Floating Cards */
.floating-card {
  position: absolute;
  background-color: #fff;
  border-radius: 1.6rem;
  box-shadow: 0 3rem 3rem rgba(0, 0, 0, 0.08);
  border: 1px solid var(--color-stroke-2);
  padding: 1.6rem;
  z-index: -1;
}

.floating-card--left {
  top: 40%;
  left: -5%;
  transform: rotate(-16deg);
  width: 22.7rem;
}

.floating-card--right {
  top: 40%;
  right: -6%;
  transform: rotate(16deg);
  width: 24rem;
}

/* Chart inside left card */
.floating-card__title {
  font-size: 1.6rem;
  font-weight: 500;
  color: var(--color-text-2);
  margin-bottom: 2.4rem;
  text-align: left;
}

.card__chart {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  height: 8rem;
  gap: 1rem;
  margin-bottom: 1.2rem;
}

.bar {
  flex: 1;
  background-color: #f2f2f2;
  border-radius: 1rem;
}
.bar-1 {
  height: 6rem;
}
.bar-2 {
  height: 8rem;
}
.bar-3 {
  height: 6.2rem;
}
.bar-4 {
  height: 8rem;
  background-color: var(--color-primary);
}
.bar-5 {
  height: 3.4rem;
}
.bar-6 {
  height: 9rem;
}

.card__labels {
  display: flex;
  justify-content: space-between;
  font-size: 0.8rem;
  color: var(--color-text-4);
  font-weight: 400;
}

/* Users inside right card */
.card__users-content {
  display: flex;
  align-items: center;
  gap: 1.6rem;
}

.avatars {
  display: flex;
}
.avatar {
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  border: 2px solid #fff5e4;
  margin-left: -1.6rem;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  object-fit: cover;
}
.avatar:first-child {
  margin-left: 0;
}

.avatar-1 {
  z-index: 1;
  position: relative;
}
.avatar-2 {
  z-index: 2;
  position: relative;
}
.avatar-3 {
  z-index: 3;
  position: relative;
}

.stats {
  text-align: left;
}
.stats-num {
  font-size: 2rem;
  font-weight: 600;
  color: var(--color-text-2);
  margin-bottom: 0.4rem;
}
.stats-rating {
  font-size: 1.4rem;
  color: var(--color-text-4);
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.star {
  width: 1.8rem;
  height: 1.8rem;
}

/* ======================================== */
/* Statistics Section */
/* ========================================= */

.statistics {
  padding: 6rem 1.6rem;
  text-align: center;
  background-color: var(--color-bg-1);
}

.statistics__heading {
  color: var(--color-text-2);
  margin-bottom: 3.2rem;
}

.statistics__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 2.4rem;
}

.stat-card {
  background-color: #fff;
  border: 1px solid var(--color-stroke-2);
  border-radius: 1.6rem;
  padding: 3.2rem 1.6rem;
  box-shadow: 0 4px 2.4rem rgba(0, 0, 0, 0.02);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.stat-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 3.2rem rgba(0, 0, 0, 0.06);
}

.stat-card__number {
  font-size: clamp(2.4rem, 1.5rem + 2.2vw, 4rem);
  line-height: 1.2;
  overflow-wrap: anywhere;
  color: var(--color-text-2);
  margin-bottom: 1.2rem;
}

.stat-card__text {
  color: var(--color-text-3);
}

/* ========================================= */
/* Our Story Section */
/* ========================================= */
.story {
  padding: 4rem 1.6rem 10rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.story__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  background-color: #fff;
  padding: 0.6rem 1.6rem 0.6rem 0.6rem;
  border-radius: 4rem;
  color: var(--color-text-2);
  margin-bottom: 1.6rem;
}
.story__badge-transparent {
  background-color: transparent;
}

.story__badge-text {
  padding-right: 0.4rem;
}

.story__heading {
  color: var(--color-text-2);
  line-height: 1.2;
  margin-bottom: 1.6rem;
}

.story__description {
  width: 60%;
  font-size: 1.8rem;
  color: var(--color-text-4);
  line-height: 1.6;
  margin-bottom: 4rem;
}

/* ======================================== */
/* Why Choose Us Section */
/* ========================================= */

.section-dark {
  background-color: var(--color-bg-2);
  padding: 10rem 0;
}

.why-choose {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 4.8rem;
}

.why-choose__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  border-radius: 4rem;
  padding: 0.6rem 1.6rem 0.6rem 0.6rem;
  margin-bottom: 2.4rem;
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--color-text-1);
}

.why-choose__badge .amazon-logo {
  border: none;
}

.why-choose__heading {
  color: var(--color-text-1);
  margin-bottom: 2.4rem;
  letter-spacing: -1px;
}

.why-choose__description {
  font-size: 1.6rem;
  color: #a9a9a9;
  line-height: 1.6;
  margin-bottom: 4rem;
}

.why-choose__image img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

/* ======================================== */
/* Services Section */
/* ========================================= */

.services {
  padding: 12rem 1.6rem;
}

.services__header {
  text-align: center;
  margin-bottom: 6.4rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.services__heading {
  color: var(--color-text-2);
  margin-bottom: 1.6rem;
  letter-spacing: -1px;
}

.services__description {
  font-size: 1.8rem;
  color: var(--color-text-2);
  opacity: 0.8;
}

.services__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.2rem;
}

.service-card {
  background-color: #fff;
  border: 1px solid var(--color-stroke-2);
  border-radius: 1.6rem;
  padding: 4rem;
  display: flex;
  flex-direction: column;
  gap: 4.8rem;
  box-shadow: 0 4px 1.6rem rgba(0, 0, 0, 0.02);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 1.2rem 3.2rem rgba(0, 0, 0, 0.05);
}

.service-card__top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  position: relative;
}

/* Vertical line decoration */
.service-card__top::before {
  content: '';
  position: absolute;
  left: 0;
  top: 4.8rem;
  width: 2px;
  height: 4rem;
  background-color: var(--color-primary);
  opacity: 0.3;
}

.service-card__title {
  font-size: 1.8rem;
  color: var(--color-primary);
  max-width: 70%;
  line-height: 1.4;
}

.service-icon {
  width: 5.6rem;
  height: auto;
  object-fit: contain;
}

.border-icon {
  border: 1px solid var(--color-stroke-2);
}

.service-card__list {
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
}

.service-card__list li {
  display: flex;
  align-items: flex-start;
  gap: 1.2rem;
  font-size: 1.5rem;
  color: var(--color-text-3);
  line-height: 1.5;
}

.check-icon {
  width: 2.2rem;
  height: 2.2rem;
  flex-shrink: 0;
}

/* ======================================== */
/* Our Approach Section */
/* ========================================= */

.approach__container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: end;
  gap: 6.4rem;
}

.approach__images {
  position: relative;
  height: 56rem;
  flex-shrink: 0;
}

.img-tall {
  position: absolute;
  left: 0;
  bottom: 4rem;
  width: 48%;
  height: 40rem;
  object-fit: cover;
  object-position: center top;
  border-radius: 1.6rem;
}

.img-laptop {
  position: absolute;
  right: 0;
  bottom: 0rem;
  width: 48%;
  height: 35rem;
  object-fit: cover;
  border-radius: 1.6rem;
}

.approach__title {
  color: var(--color-text-1);
  margin-bottom: 3.2rem;
  letter-spacing: -1px;
}

.approach__accordion {
  display: flex;
  flex-direction: column;
}

.accordion__item {
  padding: 1.6rem 0 1.6rem 2rem;
  border-left: 3px solid #2d2d2d;
  cursor: pointer;
  transition: border-color 0.3s ease;
}

.accordion__item--active {
  border-left: 3px solid var(--color-primary);
}

.accordion__heading {
  color: var(--color-text-1);
}

.accordion__text {
  font-size: 1.6rem;
  color: var(--color-text-1);
  line-height: 1.6;
  margin-top: 1.6rem;
  margin-bottom: 2.4rem;
}

.accordion__divider {
  height: 1px;
  background-color: #2d2d2d;
  margin: 0.4rem 0;
}

/* ======================================== */
/* Grid Sections (Reality & Help) */
/* ========================================= */

.reality {
  padding: 10rem 0;
  background-color: #fff;
}

.help {
  padding: 10rem 0;
}

.grid__header {
  text-align: center;
  margin-bottom: 6.4rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.align-center {
  margin: 0 auto 1.6rem auto;
}

.grid__heading {
  margin-bottom: 1.6rem;
  letter-spacing: -1px;
  color: var(--color-text-2);
}

.grid__description {
  font-size: 1.8rem;
  color: var(--color-text-2);
  line-height: 1.6;
  opacity: 0.8;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.4rem;
  margin-bottom: 6.4rem;
}

.card {
  border-radius: 1.2rem;
  padding: 3.2rem;
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.card:hover {
  transform: translateY(-4px);
}

.card__title {
  font-size: 1.8rem;
  color: var(--color-primary);
}

.card__line {
  height: 3.2rem;
  width: 2px;
  background-color: rgba(255, 170, 0, 0.3);
}

.card__text {
  font-size: 1.5rem;
  line-height: 1.5;
}

/* Light Theme Cards */
.card--light {
  background-color: #fff;
  border: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: 0 4px 1.6rem rgba(0, 0, 0, 0.02);
}

.card--light:hover {
  box-shadow: 0 1.2rem 3.2rem rgba(0, 0, 0, 0.05);
}

.card--light .card__text {
  color: var(--color-text-3);
}

/* Dark Theme Cards */
.card--dark {
  background-color: #1a1a1a;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.card--dark .card__text {
  color: var(--color-text-1);
  opacity: 0.9;
}

.card--dark:hover {
  box-shadow: 0 1.2rem 3.2rem rgba(0, 0, 0, 0.2);
}

.card--dark .card__line {
  background-color: rgba(255, 170, 0, 0.4);
}

.card--dark .card__text {
  color: rgba(255, 255, 255, 0.7);
}

.grid__footer {
  text-align: center;
}

.btn--shadow {
  box-shadow: 0 4px 12px rgba(255, 170, 0, 0.4);
}

.border-white {
  border: 2px solid #fff;
}

/* ======================================== */
/* Scheduling Section */
/* ========================================= */

.scheduling {
  padding: 10rem 0 8rem;
  background-color: #fafafa;
}

.scheduling__subtitle {
  font-size: 1.6rem;
  color: var(--color-text-4);
}

.calendly-wrapper {
  max-width: 1000px;
  margin: 0 auto;
  background: #fff;
  border-radius: 1.2rem;
  box-shadow: 0 4px 2.4rem rgba(0, 0, 0, 0.05);
  overflow: hidden;
  margin-bottom: 3.2rem;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.scheduling__footer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3.2rem;
  margin-top: 3.2rem;
  font-size: 1.4rem;
  color: var(--color-text-4);
}

.scheduling__email {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  font-weight: 500;
  color: var(--color-text-3);
}

.email-icon {
  width: 2rem;
  height: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text-2);
}

.email-icon svg {
  width: 100%;
  height: 100%;
}

.scheduling__note {
  font-size: 1.3rem;
}

/* ======================================== */
/* Footer Section */
/* ========================================= */

.site-footer {
  background: var(--color-bg-2);
  color: rgba(white, white, white, 0.7);
}

.footer__top {
  display: grid;
  grid-template-columns: 2.2fr 1fr 1.2fr;
  gap: 7.2rem;
  padding-top: 8rem;
  padding-bottom: 5.6rem;
}

.footer__brand {
  max-width: 48rem;
}

.footer__logo-link {
  margin-bottom: 2.4rem;
}

.footer__logo {
  width: 2.4rem;
  height: 2.4rem;
  object-fit: cover;
}

.footer__brand-text {
  font-size: 1.6rem;
  line-height: 1.8;
  color: #d7dbe6;
}

.footer__heading {
  color: #ffffff;
  font-size: 2.8rem;
  font-weight: 600;
  margin-bottom: 2.4rem;
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
}

.footer__links a,
.footer__legal a,
.footer__mail {
  color: #d4d8e0;
  font-size: 1.6rem;
  transition: color 0.25s ease;
}

.footer__links a:hover,
.footer__legal a:hover,
.footer__mail:hover {
  color: var(--color-primary);
}

.footer__mail {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
}

.footer__mail-icon {
  width: 1.8rem;
  height: 1.8rem;
  display: inline-flex;
  color: #d4d8e0;
  flex-shrink: 0;
}

.footer__mail-icon svg {
  width: 100%;
  height: 100%;
}

.footer__bottom {
  border-top: 1px solid #222734;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2.4rem;
  padding-top: 2.8rem;
  padding-bottom: 2.8rem;
}

.footer__copyright {
  font-size: 1.5rem;
  color: #c7ccd7;
}

.footer__legal {
  display: flex;
  align-items: center;
  gap: 3.2rem;
}
