@import url("https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500&family=Manrope:wght@600;700&family=Montserrat:wght@500;600&display=swap");

html {
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

body {
  overflow-x: hidden;
  min-height: 100vh;
  background: linear-gradient(
    150deg,
    #ede9fe5e 0%,
    #dbeafe8c 20%,
    #cffafe00 50%
  );
  background-attachment: fixed;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.navbar-section {
  --navbar-text: #181818;
  --navbar-bg: #ffffff;
  --navbar-shadow: 0 4px 21px rgba(0, 0, 0, 0.05);
  font-family: "DM Sans", sans-serif;
}

.navbar-section .navbar {
  background: var(--navbar-bg);
  box-shadow: var(--navbar-shadow);

  padding: 30px 33px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.navbar-section .navbar-inner {
  width: min(1543px, 100%);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.navbar-section .navbar-logo img {
  width: 259px;
  height: 35px;
  display: block;
}

.navbar-section .navbar-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 58px;
}

.navbar-section .navbar-links a {
  color: var(--navbar-text);
  text-decoration: none;
  font-size: 16px;
  font-weight: 400;
  line-height: 1;
  transition: color 0.2s;
}

.navbar-section .navbar-links a:hover {
  color: #3478f6;
}

.navbar-section .navbar-links a.nav-active {
  color: #3478f6;
  font-weight: 500;
}

.navbar-section .navbar-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid #d9d9d9;
  background: #fff;
  border-radius: 8px;
  padding: 10px 8px;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}

.navbar-section .navbar-toggle span {
  width: 24px;
  height: 2px;
  background: var(--navbar-text);
  display: block;
}

.navbar-section .navbar-logo:focus-visible,
.navbar-section .navbar-links a:focus-visible,
.navbar-section .navbar-toggle:focus-visible {
  outline: 2px solid #0f62fe;
  outline-offset: 3px;
  border-radius: 4px;
}

@media (max-width: 768px) {
  .navbar-section .navbar {
    min-height: auto;
    padding: 20px 16px;
  }

  .navbar-section .navbar-inner {
    width: 100%;
    flex-wrap: wrap;
    row-gap: 14px;
  }

  .navbar-section .navbar-toggle {
    display: inline-flex;
  }

  .navbar-section .navbar-links {
    display: none;
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    padding-top: 6px;
  }

  .navbar-section .navbar.is-open .navbar-links {
    display: flex;
  }
}

.hero {
  position: relative;
  width: 100%;
  min-height: 621px;
  overflow: hidden;
  font-family: "DM Sans", sans-serif;
}

.hero__background {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.hero__background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero__shade {
  position: absolute;
  top: 0;
  left: 0;
  width: min(1014px, 100%);
  height: 100%;
  z-index: 2;
  background: linear-gradient(270deg, rgba(255, 255, 255, 0) 0%, #ffffff 99%);
}

.hero__container {
  position: relative;
  z-index: 3;
  width: 100%;
  max-width: 1728px;
  margin: 0 auto;
  min-height: 621px;
  padding: 172px 92px;
  box-sizing: border-box;
  display: flex;
  align-items: flex-start;
}

.hero__content {
  width: 100%;
  max-width: 844px;
  color: #000;
}

.hero__title {
  margin: 0;
  font-family: "Manrope", sans-serif;
  font-size: 56px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0;
}

.hero__subtitle {
  margin: 28px 0 0;
  font-size: 16px;
  font-weight: 400;
  line-height: 1;
  color: rgba(0, 0, 0, 0.75);
  letter-spacing: 0;
}

.hero__cta {
  margin-top: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 45px;
  padding: 0 60px;
  background: #3478f6;
  color: #ffffff;
  font-size: 16px;
  font-weight: 400;
  line-height: 1;
  text-decoration: none;
}

.hero__cta:hover {
  background: #2968e0;
}

.hero__cta:focus-visible {
  outline: 2px solid #ffffff;
  outline-offset: 3px;
}

@media (max-width: 1199px) {
  .hero {
    min-height: 520px;
  }

  .hero__container {
    min-height: 520px;
    padding: 128px 56px;
  }

  .hero__shade {
    width: min(760px, 100%);
  }

  .hero__content {
    max-width: 640px;
  }

  .hero__title {
    font-size: 44px;
    line-height: 1;
  }

  .hero__subtitle {
    margin-top: 22px;
    font-size: 16px;
    line-height: 1;
  }

  .hero__cta {
    margin-top: 24px;
  }
}

@media (max-width: 767px) {
  .hero {
    min-height: 460px;
  }

  .hero__container {
    min-height: 460px;
    padding: 72px 16px 56px;
    align-items: flex-end;
  }

  .hero__shade {
    width: 100%;
  }

  .hero__content {
    max-width: 100%;
  }

  .hero__title {
    font-size: 32px;
    line-height: 1.2;
  }

  .hero__subtitle {
    margin-top: 16px;
    font-size: 16px;
    line-height: 24px;
  }

  .hero__cta {
    margin-top: 20px;
    min-width: 100%;
    max-width: 320px;
  }
}

/* ── Hero V2 ─────────────────────────────────────────────────── */

.hero-v2 {
  width: 100%;
  height: 621px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-left: 89px;
  overflow: hidden;
  background: radial-gradient(ellipse at center, #ffffff 0%, #f2f7ff 100%);
  font-family: "DM Sans", sans-serif;
}

.hero-v2__text-group {
  display: flex;
  flex-direction: column;
  gap: 28px;
  max-width: 771px;
  flex: 1;
}

.hero-v2__title {
  font-family: "Manrope", sans-serif;
  font-size: 56px;
  font-weight: 700;
  line-height: 1;
  color: #000;
  margin: 0;
}

.hero-v2__subtitle {
  font-size: 16px;
  font-weight: 400;
  line-height: 1;
  color: rgba(0, 0, 0, 0.75);
  margin: 0;
}

.hero-v2__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 45px;
  padding: 0 60px;
  background: #3478f6;
  color: #fff;
  font-size: 16px;
  font-weight: 400;
  text-decoration: none;
  align-self: flex-start;
}

.hero-v2__cta:hover {
  background: #2968e0;
}

.hero-v2__right {
  position: relative;
  width: 763px; /* 204px offset + 559px image */
  height: 621px;
  flex-shrink: 0;
}

.hero-v2__bg-image {
  position: absolute;
  top: 0;
  left: 204px;
  width: 559px;
  height: 621px;
  background: #d8e3ef;
  overflow: hidden;
}

.hero-v2__bg-image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-v2__pillars {
  position: absolute;
  top: 0;
  left: 0;
  width: 321px;
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 50px;
  justify-content: center;
  padding-top: 22px;
  z-index: 1;
}

.hero-v2__pillar {
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: center;
  padding: 10px;
}

.hero-v2__pillar--highlighted {
  background: rgba(255, 244, 252, 0.2);
  height: 70px;
}

.hero-v2__pillar--shadow {
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.22),
    rgba(255, 255, 255, 0.08)
  );
  backdrop-filter: blur(12px) saturate(100%);
  -webkit-backdrop-filter: blur(24px) saturate(100%);
  border: 1px solid rgba(255, 255, 255, 0.22);

  box-shadow:
    0 5px 15px rgba(0, 0, 0, 0.055),
    inset 0 1px 0 rgba(255, 255, 255, 0);
}

.hero-v2__pillar--full {
  width: 100%;
}

.hero-v2__pillar-img {
  width: 100px;
  height: 56px;
  flex-shrink: 0;
  background: #c8d5e0;
  overflow: hidden;
  position: relative;
}

.hero-v2__pillar-img img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-v2__pillar-text {
  font-size: 13px;
  font-weight: 400;
  line-height: 1.4;
  color: #2b2b2b;
  text-align: center;
  margin: 0;
  flex: 1;
}

@media (max-width: 1300px) {
  .hero-v2 {
    padding-left: 56px;
  }

  .hero-v2__text-group {
    width: 560px;
  }

  .hero-v2__title {
    font-size: 44px;
  }
}

@media (max-width: 1024px) {
  .hero-v2 {
    flex-direction: column;
    height: auto;
    padding: 72px 40px 56px;
    gap: 56px;
    align-items: flex-start;
  }

  .hero-v2__text-group {
    width: 100%;
  }
}

@media (max-width: 767px) {
  .hero-v2 {
    padding: 48px 16px 40px;
    gap: 40px;
  }

  .hero-v2__title {
    font-size: 32px;
    line-height: 1.2;
  }

  .hero-v2__cta {
    align-self: stretch;
    text-align: center;
    max-width: 320px;
  }

  .hero-v2__bg-image {
    display: none;
  }

  .hero-v2__pillars {
    width: 100%;
    gap: 24px;
  }
}

/* ── Discover Section ────────────────────────────────────────────── */

.discover {
  padding: 56px 88px;
  font-family: "DM Sans", sans-serif;
}

.discover__container {
  max-width: 1543px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 56px;
}

.discover__heading {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 11px;
  text-align: center;
  color: #181818;
}

.discover__title {
  font-family: "Manrope", sans-serif;
  font-size: 36px;
  font-weight: 600;
  line-height: 1;
  color: #181818;
  margin: 0;
}

.discover__title--blue {
  color: #3478f6;
}

.discover__subtitle {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0.098px;
  color: #181818;
  margin: 0;
}

.discover__search {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  height: 67px;
  padding: 20px;
  background: #fcfef9;
  border: 1px solid rgba(0, 0, 0, 0.1);
  box-sizing: border-box;
  box-shadow:
    0 20px 25px -5px #f1f5f9,
    0 8px 10px -6px #f1f5f9;
  margin-top: 10px;
  margin-bottom: 0px;
}

.discover__search-field {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 1;
  min-width: 0;
}

.discover__search-icon {
  display: block;
  flex-shrink: 0;
}

.discover__search-input {
  border: none;
  background: transparent;
  outline: none;
  font-family: "DM Sans", sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #181818;
  width: 100%;
}

.discover__search-input::placeholder {
  color: #a3a3a3;
}

.discover__search-input::-webkit-search-decoration,
.discover__search-input::-webkit-search-cancel-button,
.discover__search-input::-webkit-search-results-button,
.discover__search-input::-webkit-search-results-decoration {
  display: none;
}

.discover__search-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 45px;
  padding: 0 60px;
  background: #3478f6;
  color: #fff;
  font-family: "DM Sans", sans-serif;
  font-size: 16px;
  font-weight: 400;
  border: none;
  cursor: pointer;
  white-space: nowrap;
  flex-shrink: 0;
}

.discover__search-btn:hover {
  background: #2968e0;
}

.discover__categories {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  width: 100%;
  max-width: 1005px;
}

.discover__categories-label {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0.098px;
  color: #181818;
  margin: 0;
  text-align: center;
}

.discover__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.discover__tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 30px;
  padding: 0 12px;
  background: rgb(233 241 253 / 41%);
  border: 1px solid rgba(1, 154, 95, 0.12);
  border-radius: 2px;
  font-family: "Montserrat", sans-serif;
  font-size: 12px;
  font-weight: 600;
  color: #3478f6;
  text-decoration: none;
  white-space: nowrap;
}

.discover__tag:hover {
  background: rgba(1, 154, 95, 0.2);
}

.discover__tag:focus-visible,
.discover__search-btn:focus-visible {
  outline: 2px solid #3478f6;
  outline-offset: 3px;
}

/* ── Discover marquee (mobile only) ──────────────────────────── */
.discover__marquee {
  display: none;
}

@media (max-width: 767px) {
  .discover__tags {
    display: none;
  }

  .discover__marquee {
    display: flex;
    flex-direction: column;
    gap: 10px;
    overflow: hidden;
    width: 100%;
    mask-image: linear-gradient(
      to right,
      transparent 0%,
      black 10%,
      black 90%,
      transparent 100%
    );
    -webkit-mask-image: linear-gradient(
      to right,
      transparent 0%,
      black 10%,
      black 90%,
      transparent 100%
    );
  }

  .discover__marquee-row {
    overflow: hidden;
  }

  .discover__marquee-track {
    display: flex;
    flex-direction: row;
    gap: 10px;
    width: max-content;
  }

  .discover__marquee-row--left .discover__marquee-track {
    animation: marquee-left 35s linear infinite;
  }

  .discover__marquee-row--right .discover__marquee-track {
    animation: marquee-right 35s linear infinite;
  }

  @keyframes marquee-left {
    0% {
      transform: translateX(0);
    }
    100% {
      transform: translateX(-50%);
    }
  }

  @keyframes marquee-right {
    0% {
      transform: translateX(-50%);
    }
    100% {
      transform: translateX(0);
    }
  }
}

@media (max-width: 1024px) {
  .discover {
    padding: 56px 40px;
  }
}

@media (max-width: 767px) {
  .discover {
    padding: 40px 16px;
  }

  .discover__container {
    gap: 20px;
  }

  .discover__title {
    font-size: 28px;
  }

  .discover__search {
    height: auto;
    padding: 12px 16px;
    flex-wrap: wrap;
  }

  .discover__search-btn {
    width: 100%;
    padding: 0 24px;
  }
}

/* ── Marketplace Section ─────────────────────────────────────────── */

.marketplace-Home-Row {
  padding: 80px 88px 120px;
  font-family: "DM Sans", sans-serif;
  max-width: 1719px;
  margin: 0 auto;
  background-color: white;
}
.marketplace {
  padding: 80px 88px 120px;
  font-family: "DM Sans", sans-serif;
  max-width: 1719px;
  margin: 0 auto;
}

.marketplace__container {
  max-width: 100%;
}

.marketplace__no-results {
  text-align: center;
  padding: 60px 0;
  font-size: 16px;
  color: #6b7280;
  font-family: "DM Sans", sans-serif;
}

.marketplace__title {
  font-family: "Manrope", sans-serif;
  font-size: 36px;
  font-weight: 600;
  line-height: 1;
  color: #181818;
  margin: 0 0 63px;
}

.marketplace__cards {
  display: grid;
  grid-template-columns: repeat(4, 292px);
  justify-content: space-between;
  row-gap: 32px;
  margin: 30px 0;
}

.marketplace__card {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 27px 28px;
  border: 1px solid rgba(0, 0, 0, 0.07);
  box-shadow: 0 0 6px 2px rgba(0, 0, 0, 0.05);
  box-sizing: border-box;
  overflow: hidden;
  background-color: white;
}

.marketplace__card-logo {
  display: block;
  max-width: 100%;
  height: auto;
}
.marketplace__card-logo_ExplorePage {
  width: 28px;
  height: 28px;
}
.marketplace__card-text {
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}

.marketplace__card-name {
  font-family: "Manrope", sans-serif;
  font-size: 22px;
  font-weight: 600;
  line-height: 1;
  color: #000;
  margin: auto 0;
}
.marketplace__card-logo-container {
  display: flex;
}
.marketplace__card-name--logo {
  font-family: "DM Sans", sans-serif;
  font-size: 18px;
  font-weight: 600;
  line-height: 1;
  color: #000;
  margin: auto 0;
}

.marketplace__card-desc {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.4;
  color: #181818;
  margin: 0;
}

.marketplace__card-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 45px;
  padding: 0 60px;
  background: rgba(52, 120, 246, 0.07);
  border: 1px solid #3478f6;
  color: #3478f6;
  font-family: "DM Sans", sans-serif;
  font-size: 16px;
  font-weight: 400;
  text-decoration: none;
  white-space: nowrap;
  flex-shrink: 0;
}

.marketplace__card-btn:hover {
  background: rgba(52, 120, 246, 0.15);
}

.marketplace__explore-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  margin: 44px auto 0;
  height: 45px;
  padding: 0 60px;
  background: #3478f6;
  color: #fff;
  font-family: "DM Sans", sans-serif;
  font-size: 16px;
  font-weight: 400;
  text-decoration: none;
  white-space: nowrap;
}

.marketplace__explore-btn:hover {
  background: #2968e0;
}

.marketplace__card-btn:focus-visible,
.marketplace__explore-btn:focus-visible {
  outline: 2px solid #3478f6;
  outline-offset: 3px;
}

@media (max-width: 1400px) {
  .marketplace__cards {
    grid-template-columns: repeat(4, 1fr);
    column-gap: 24px;
    justify-content: start;
  }
}

@media (max-width: 1024px) {
  .marketplace {
    padding: 60px 40px 80px;
  }

  .marketplace__cards {
    grid-template-columns: repeat(2, 1fr);
    column-gap: 24px;
    row-gap: 24px;
  }
}

@media (max-width: 600px) {
  .marketplace {
    padding: 40px 16px 60px;
  }

  .marketplace__title {
    font-size: 28px;
    margin-bottom: 40px;
  }

  .marketplace__cards {
    grid-template-columns: 1fr;
  }

  .marketplace__explore-btn {
    max-width: 320px;
    width: 100%;
  }
}

/* ── Trending News + Featured Marketplace ─────────────────────────── */

.trending-featured {
  padding: 56px 88px;
  font-family: "DM Sans", sans-serif;
}

.trending-featured__container {
  max-width: 1543px;
  margin: 0 auto;
  display: flex;
  gap: 136px;
  align-items: flex-start;
}

.trending-featured__left {
  flex: 1 1 772px;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.trending-featured__right {
  flex: 0 1 632px;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 38px;
}

.trending-featured__heading {
  font-family: "Manrope", sans-serif;
  font-size: 36px;
  font-weight: 600;
  line-height: 1;
  color: #000;
  margin: 0;
}

.trending-featured__news-content {
  display: flex;
  flex-direction: column;
  gap: 40px;
  align-items: center;
}

.trending-featured__blog-cards {
  display: flex;
  justify-content: space-between;
  width: 100%;
}

.trending-featured__news-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 45px;
  padding: 0 60px;
  background: #3478f6;
  color: #fff;
  font-family: "DM Sans", sans-serif;
  font-size: 16px;
  font-weight: 400;
  text-decoration: none;
  white-space: nowrap;
}

.trending-featured__news-btn:hover {
  background: #2968e0;
}

.trending-featured__news-btn:focus-visible {
  outline: 2px solid #3478f6;
  outline-offset: 3px;
}

/* Blog Cards */

.blog-card {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.07);
  box-shadow: 0 0 18px 0 rgba(81, 81, 81, 0.11);
  overflow: hidden;
  width: 324px;
  min-width: 0;
  flex-shrink: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 11px;
  padding-bottom: 12px;
}

.blog-card__image {
  position: relative;
  width: 100%;
  height: 244px;
  flex-shrink: 0;
}

.blog-card__image > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.blog-card__badges {
  position: absolute;
  bottom: 6px;
  right: 7px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  align-items: flex-end;
  width: 102px;
}

.blog-card__brand-badge {
  background: rgba(255, 255, 255, 0.1);
  padding: 4px;
  display: inline-flex;
  align-items: center;
  cursor: pointer;
  transition:
    background 0.2s ease,
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.blog-card__brand-badge:hover {
  background: rgba(255, 255, 255, 0.28);
  transform: scale(1.12);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.22);
}

.blog-card__brand-badge img {
  width: 18px;
  height: 18px;
  display: block;
}

.blog-card__read-time {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 21px;
  padding: 0 4px;
  background: rgb(29 27 27 / 35%);
  border-radius: 3px;
  font-family: "DM Sans", sans-serif;
  font-size: 11px;
  font-weight: 500;
  color: #d0d0d0;
  white-space: nowrap;
}

.blog-card__body {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 0 12px;
  box-sizing: border-box;
}

.blog-card__info {
  display: flex;
  flex-direction: column;
  gap: 10px;
  color: #222124;
}

.blog-card__title {
  font-family: "Manrope", sans-serif;
  font-size: 22px;
  font-weight: 600;
  line-height: 1.2;
  margin: 0;
}

.blog-card__desc {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0.098px;
  margin: 0;
}

.blog-card__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.blog-card__author {
  display: flex;
  align-items: flex-start;
  gap: 4px;
}

.blog-card__avatar {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  display: block;
}

.blog-card__author-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.blog-card__author-name {
  font-size: 12px;
  font-weight: 500;
  color: #6e6e6e;
  line-height: 1;
}

.blog-card__author-role {
  font-size: 10px;
  font-weight: 500;
  color: #6e6e6e;
  line-height: 1;
}

.blog-card__date {
  font-size: 12px;
  font-weight: 500;
  color: #6e6e6e;
  line-height: 1;
}

/* Featured Marketplace Cards (right section) */

.trending-featured__featured-cards {
  display: flex;
  gap: 48px;
}

.featured-card {
  display: flex;
  flex-direction: column;
  gap: 20px;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.07);
  box-shadow: 0 0 18px 0 rgba(81, 81, 81, 0.11);
  padding: 27px 28px;
  width: 292px;
  min-width: 0;
  flex-shrink: 1;
  box-sizing: border-box;
  overflow: hidden;
}

.featured-card__logo {
  display: block;
  height: auto;
  max-width: 100%;
}

.featured-card__text {
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}

.featured-card__name {
  font-family: "Manrope", sans-serif;
  font-size: 22px;
  font-weight: 600;
  line-height: 1;
  color: #000;
  margin: 0;
}

.featured-card__desc {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.4;
  color: #000;
  margin: 0;
}

.featured-card__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 45px;
  padding: 0 60px;
  background: rgba(52, 120, 246, 0.07);
  border: 1px solid #3478f6;
  color: #3478f6;
  font-family: "DM Sans", sans-serif;
  font-size: 16px;
  font-weight: 400;
  text-decoration: none;
  white-space: nowrap;
  flex-shrink: 0;
}

.featured-card__btn:hover {
  background: rgba(52, 120, 246, 0.15);
}

.featured-card__btn:focus-visible {
  outline: 2px solid #3478f6;
  outline-offset: 3px;
}

@media (max-width: 1500px) {
  .trending-featured__blog-cards {
    gap: 16px;
  }

  .trending-featured__left .blog-card {
    flex: 1 1 0;
    min-width: 0;
    width: auto;
  }
}

@media (max-width: 1400px) {
  .trending-featured__container {
    gap: 40px;
  }

  .trending-featured__left {
    flex: 1 1 0;
    min-width: 0;
  }

  .trending-featured__right {
    flex: 0 0 360px;
    min-width: 0;
  }

  .trending-featured__blog-cards {
    gap: 16px;
  }

  .trending-featured__left .blog-card {
    flex: 1 1 0;
    min-width: 0;
    width: auto;
  }

  .trending-featured__featured-cards {
    flex-direction: column;
    gap: 20px;
  }

  .featured-card {
    width: 100%;
    flex-shrink: 1;
  }
}

@media (max-width: 1200px) {
  .trending-featured,
  .marketplace-Home-Row {
    padding: 56px 40px;
  }

  .trending-featured__container {
    flex-direction: column;
    gap: 56px;
  }

  .trending-featured__left,
  .trending-featured__right {
    flex: none;
    width: 100%;
  }

  .trending-featured__blog-cards {
    gap: 24px;
    justify-content: flex-start;
    flex-wrap: wrap;
  }

  .blog-card {
    width: calc(50% - 12px);
  }

  .trending-featured__featured-cards {
    flex-wrap: wrap;
  }

  .featured-card {
    width: calc(50% - 24px);
  }
}

@media (max-width: 768px) {
  .marketplace-Home-Row {
    padding: 40px 16px 60px;
  }

  .cta__outer {
    max-width: 100%;
  }

  .trending-featured {
    padding: 40px 16px;
  }

  .trending-featured__heading {
    font-size: 28px;
  }

  .blog-card,
  .featured-card {
    width: 100%;
  }

  .trending-featured__blog-cards {
    flex-direction: column;
  }

  .trending-featured__left .blog-card {
    flex: none;
    width: 100%;
  }
}

/* ── FAQ Section ─────────────────────────────────────────────────── */

.faq {
  background: linear-gradient(
    146.68deg,
    rgba(248, 253, 244, 0.5) 4.06%,
    rgba(238, 249, 225, 0.21) 43.29%,
    rgba(221, 243, 201, 0) 91.24%
  );
  padding: 50px 88px;
  font-family: "DM Sans", sans-serif;
}

.faq__container {
  max-width: 1543px;
  margin: 0 auto;
}

.faq__inner {
  display: flex;
  gap: clamp(40px, 8vw, 253px);
  align-items: flex-start;
}

/* Left column */

.faq__left {
  flex: 0 0 542px;
  display: flex;
  flex-direction: column;
  gap: 62px;
  position: sticky;
  top: 40px;
  align-self: flex-start;
}

.faq__heading {
  display: flex;
  flex-direction: column;
  gap: 11px;
}

.faq__title {
  font-family: "Manrope", sans-serif;
  font-size: 36px;
  font-weight: 600;
  line-height: 1;
  color: #181818;
  margin: 0;
}

.faq__subtitle {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0.098px;
  color: #181818;
  margin: 0;
}

.faq__still-card {
  background: rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border: 1px solid rgba(255, 255, 255, 0.4);
  box-shadow:
    0 10px 30px -5px rgba(0, 0, 0, 0.04),
    0 4px 12px -4px rgba(0, 0, 0, 0.03);
  padding: 25px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-start;
}

.faq__still-content {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq__still-title {
  font-family: "Manrope", sans-serif;
  font-size: 22px;
  font-weight: 600;
  line-height: 1;
  color: #181818;
  margin: 0;
}

.faq__still-desc {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0.098px;
  color: #181818;
  margin: 0;
}

.faq__chat-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 45px;
  padding: 0 60px;
  background: #3478f6;
  color: #fff;
  font-family: "DM Sans", sans-serif;
  font-size: 16px;
  font-weight: 400;
  text-decoration: none;
  white-space: nowrap;
}

.faq__chat-btn:hover {
  background: #2968e0;
}

.faq__chat-btn:focus-visible {
  outline: 2px solid #3478f6;
  outline-offset: 3px;
}

/* Right column: accordion */

.faq__right {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 42px;
}

.faq__item {
  border: 1px solid #bbdfa9ad;
  padding: 20px;
  box-shadow: 0 4px 20px -2px rgba(0, 0, 0, 0.05);
  background: #fff;
}

.faq__question {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  cursor: pointer;
  user-select: none;
}

.faq__question::-webkit-details-marker {
  display: none;
}

.faq__question span {
  font-family: "Manrope", sans-serif;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.2;
  color: #181818;
}

.faq__arrow {
  display: block;
  flex-shrink: 0;
  transition: transform 0.25s ease;
}

details[open] .faq__arrow {
  transform: rotate(180deg);
}

.faq__answer {
  margin-top: 11px;
}

.faq__answer p {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0.098px;
  color: #181818;
  margin: 0;
}

@media (max-width: 1400px) {
  .faq__inner {
    gap: 80px;
  }

  .faq__left {
    flex: 0 0 400px;
  }

  .faq__right {
    flex: 1;
    min-width: 0;
  }
}

@media (max-width: 1100px) {
  .faq {
    padding: 50px 40px;
  }

  .faq__inner {
    flex-direction: column;
    gap: 48px;
  }

  .faq__left,
  .faq__right {
    flex: none;
    width: 100%;
  }
}

@media (max-width: 767px) {
  .faq {
    padding: 40px 16px;
  }

  .faq__title {
    font-size: 28px;
  }

  .faq__right {
    gap: 24px;
  }
}

/* ── CTA Section ─────────────────────────────────────────────────── */

.cta {
  padding: 56px 88px;
  font-family: "DM Sans", sans-serif;
}

.cta__outer {
  max-width: 70%;
  margin: 0 auto;
}

.cta__box {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.07);
  box-shadow: 0 0 12px 0 rgba(0, 0, 0, 0.08);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 330px;
  padding: 60px 45px;
  overflow: hidden;
}

/* Corner avatar groups */
.cta__corner {
  position: absolute;
}

.cta__corner .cta__avatar {
  position: absolute;
  border-radius: 50%;
  display: block;
  width: 72px;
  height: 72px;
  object-fit: cover;
}

.cta__corner .cta__bubble {
  position: absolute;
  display: block;
  width: 39px;
  height: 39px;
}

/* TL: avatar at (0, 15px), bubble at (67px, 0) */
.cta__corner--tl {
  left: 45px;
  top: 45px;
  width: 111px;
  height: 87px;
}
.cta__corner--tl .cta__avatar {
  left: 0;
  top: 15px;
}
.cta__corner--tl .cta__bubble {
  left: 67px;
  top: 0;
}

/* TR: avatar at (0, 3px), bubble at (77px, 0) */
.cta__corner--tr {
  right: 45px;
  top: 45px;
  width: 116px;
  height: 75px;
}
.cta__corner--tr .cta__avatar {
  left: 0;
  top: 3px;
}
.cta__corner--tr .cta__bubble {
  left: 77px;
  top: 0;
}

/* BL: avatar at (30px, 23px), bubble at (0, 0) */
.cta__corner--bl {
  left: 45px;
  bottom: 45px;
  width: 102px;
  height: 95px;
}
.cta__corner--bl .cta__avatar {
  left: 30px;
  top: 23px;
}
.cta__corner--bl .cta__bubble {
  left: 0;
  top: 0;
}

/* BR: avatar at (0, 19px), bubble at (68px, 0) — horizontally flipped */
.cta__corner--br {
  right: 45px;
  bottom: 45px;
  width: 107px;
  height: 91px;
}
.cta__corner--br .cta__avatar {
  left: 0;
  top: 19px;
}
.cta__corner--br .cta__bubble {
  left: 68px;
  top: 0;
}

.cta__bubble--flip {
  transform: scaleX(-1);
}

/* Center content */
.cta__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  max-width: 568px;
  text-align: center;
  position: relative;
  z-index: 1;
}

.cta__title {
  font-family: "Manrope", sans-serif;
  font-size: 36px;
  font-weight: 600;
  line-height: 1.2;
  color: #181818;
  margin: 0;
}

.cta__title--blue {
  color: #3478f6;
}

.cta__subtitle {
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
  color: #181818;
  margin: 0;
}

.cta__actions {
  display: flex;
  align-items: center;
  gap: 25px;
}

.cta__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 41px;
  padding: 0 28px;
  font-family: "DM Sans", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
  text-decoration: none;
  white-space: nowrap;
}

.cta__btn--whatsapp {
  background: #43ca4d;
  color: #fff;
  gap: 10px;
}

.cta__btn--whatsapp:hover {
  background: #37b341;
}

.cta__btn--contact {
  background: #3478f6;
  color: #fff;
}

.cta__btn--contact:hover {
  background: #2968e0;
}

.cta__btn:focus-visible {
  outline: 2px solid #3478f6;
  outline-offset: 3px;
}

@media (max-width: 1200px) {
  .cta {
    padding: 56px 40px;
  }

  .cta__corner {
    display: none;
  }
}

@media (max-width: 767px) {
  .cta {
    padding: 40px 16px;
  }

  .cta__box {
    padding: 40px 24px;
    min-height: auto;
  }

  .cta__title {
    font-size: 28px;
  }

  .cta__actions {
    flex-direction: column;
    width: 100%;
  }

  .cta__btn {
    width: 100%;
    max-width: 320px;
  }
}

/* ── Footer ──────────────────────────────────────────────────────── */

/* ── Privacy Page ──────────────────────────────────────────── */
.privacy {
  padding: 80px 24px;
}
.privacy__container {
  max-width: 760px;
  margin: 0 auto;
}
.privacy__title {
  font-family: "DM Sans", sans-serif;
  font-size: 40px;
  font-weight: 700;
  color: #000;
  margin-bottom: 8px;
}
.privacy__meta {
  font-family: "DM Sans", sans-serif;
  font-size: 14px;
  color: #888;
  margin-bottom: 32px;
}
.privacy__intro {
  font-family: "DM Sans", sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: #333;
  margin-bottom: 40px;
}
.privacy__section {
  margin-bottom: 36px;
}
.privacy__heading {
  font-family: "DM Sans", sans-serif;
  font-size: 20px;
  font-weight: 600;
  color: #000;
  margin-bottom: 10px;
}
.privacy__body {
  font-family: "DM Sans", sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: #444;
  margin-bottom: 10px;
}
.privacy__list {
  font-family: "DM Sans", sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: #444;
  padding-left: 24px;
  margin-top: 8px;
}
.privacy__list li {
  margin-bottom: 4px;
}
.privacy__link {
  color: #3478f6;
  text-decoration: none;
}
.privacy__link:hover {
  text-decoration: underline;
}

.footer {
  background: #ffffff;
  padding: 56px 88px 40px;
  font-family: "DM Sans", sans-serif;
}

.footer__container {
  max-width: 1543px;
  margin: 0 auto;
}

.footer__main {
  display: flex;
  gap: 64px;
  align-items: flex-start;
  margin-bottom: 40px;
}

.footer__brand {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer__logo img {
  display: block;
  width: 220px;
  height: auto;
}

.footer__tagline {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.6;
  color: #181818;
  margin: 0;
}

.footer__social {
  display: flex;
  gap: 12px;
  align-items: center;
}

.footer__social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  color: #181818;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 4px;
  text-decoration: none;
  transition:
    color 0.2s,
    border-color 0.2s;
}

.footer__social-link:hover {
  color: #3478f6;
  border-color: #3478f6;
}

.footer__social-link svg {
  width: 16px;
  height: 16px;
  display: block;
}

.footer__nav {
  flex: 1;
  display: flex;
  gap: 48px;
  justify-content: space-between;
}

.footer__nav-col {
  display: flex;
  flex-direction: column;
  gap: 20px;
  min-width: 0;
}

.footer__nav-heading {
  font-family: "Manrope", sans-serif;
  font-size: 16px;
  font-weight: 600;
  line-height: 1;
  color: #181818;
  margin: 0;
}

.footer__nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer__nav-list a {
  font-size: 14px;
  font-weight: 400;
  line-height: 1;
  color: #181818;
  text-decoration: none;
}

.footer__nav-list a:hover {
  color: #3478f6;
}

.footer__nav-list a:focus-visible {
  outline: 2px solid #3478f6;
  outline-offset: 3px;
  border-radius: 2px;
}

.footer__divider {
  border: none;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  margin: 0 0 24px;
}

.footer__copyright {
  font-size: 14px;
  font-weight: 400;
  line-height: 1;
  color: #181818;
  text-align: center;
  margin: 0;
}

@media (max-width: 1200px) {
  .footer {
    padding: 56px 40px 40px;
  }

  .footer__main {
    gap: 60px;
  }

  .footer__brand {
    flex: 1;
  }
}

@media (max-width: 900px) {
  .footer__main {
    flex-direction: column;
    gap: 40px;
  }

  .footer__brand {
    flex: none;
    width: 100%;
  }

  .footer__nav {
    width: 100%;
    gap: 32px;
  }
}

@media (max-width: 600px) {
  .footer {
    padding: 40px 16px 32px;
  }

  .footer__nav {
    flex-wrap: wrap;
    gap: 32px;
  }

  .footer__nav-col {
    min-width: calc(50% - 16px);
  }
  .cta__outer {
    max-width: 100%;
  }
}

/* ── Video Modal ─────────────────────────────────────────────── */

.video-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.78);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  opacity: 0;
  transition: opacity 0.2s ease;
}

.video-overlay.is-visible {
  opacity: 1;
}

.video-modal {
  position: relative;
  width: min(860px, 92vw);
  background: #000;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.5);
}

.video-modal iframe {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 0;
}

.video-modal__close {
  position: absolute;
  top: -40px;
  right: 0;
  width: 32px;
  height: 32px;
  background: rgba(255, 255, 255, 0.15);
  border: none;
  border-radius: 50%;
  color: #fff;
  font-size: 18px;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s ease;
}

.video-modal__close:hover {
  background: rgba(255, 255, 255, 0.3);
}

.hero-v2__pillar.hero-v2__pillar--shadow {
  cursor: pointer;
}

/* Add this to your CSS */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ── Profile Panel ───────────────────────────────────────────── */
.profile-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.3);
  z-index: 8000;
  opacity: 0;
  transition: opacity 0.3s;
}

.profile-overlay.is-visible {
  opacity: 1;
}

.profile-panel {
  font-family: "DM Sans", sans-serif;
  position: fixed;
  top: 0;
  right: 0;
  width: min(1580px, calc(100vw - 60px));
  height: 100vh;
  z-index: 8001;
  background: linear-gradient(to bottom, #f8fafc, #fff);
  overflow-y: auto;
  overscroll-behavior: contain;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.profile-panel.is-open {
  transform: translateX(0);
}

.profile-panel__back {
  position: sticky;
  top: 20px;
  left: 20px;
  z-index: 2;
  margin: 20px 0 -52px 20px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(0, 0, 0, 0.12);
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #444;
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.profile-panel__back:hover {
  background: #f5f5f5;
}

.profile-panel__scroll {
  padding: 72px 47px 60px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

/* Header card */
.profile-panel__header-card {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.1);
  padding: 48px 33px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.profile-panel__header-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.profile-panel__identity {
  display: flex;
  gap: 21px;
  align-items: center;
}

.profile-panel__avatar {
  width: 133px;
  height: 133px;
  border-radius: 50%;
  background: #c8d5e0;
  flex-shrink: 0;
  overflow: hidden;
}

.profile-panel__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.profile-panel__identity-info {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.profile-panel__name {
  font-family: "Manrope", sans-serif;
  font-size: 22px;
  font-weight: 600;
  color: #222124;
  margin: 0;
}

.profile-panel__location {
  display: flex;
  gap: 7px;
  align-items: center;
}

.profile-panel__flag {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  overflow: hidden;
}

.profile-panel__country {
  font-family: "DM Sans", sans-serif;
  font-size: 14px;
  color: rgba(0, 0, 0, 0.75);
}

.profile-panel__actions {
  display: flex;
  gap: 16px;
  align-items: flex-end;
  flex-shrink: 0;
}

.profile-panel__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 45px;
  padding: 0 60px;
  font-family: "DM Sans", sans-serif;
  font-size: 16px;
  text-decoration: none;
  white-space: nowrap;
  cursor: pointer;
}

.profile-panel__btn--outline {
  background: rgba(52, 120, 246, 0.07);
  border: 1px solid #3478f6;
  color: #3478f6;
}

.profile-panel__btn--outline:hover {
  background: rgba(52, 120, 246, 0.13);
}

.profile-panel__btn--filled {
  background: #3478f6;
  border: none;
  color: #fff;
}

.profile-panel__btn--filled:hover {
  background: #2968e0;
}

.profile-panel__intro {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.profile-panel__intro-label {
  font-family: "DM Sans", sans-serif;
  font-size: 14px;
  line-height: 1.5;
  letter-spacing: 0.098px;
  color: rgba(43, 43, 43, 0.5);
  margin: 0;
}

.profile-panel__intro-text {
  font-family: "Manrope", sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: #2b2b2b;
  margin: 0;
}

.profile-panel__divider {
  height: 1px;
  background: rgba(0, 0, 0, 0.08);
}

.profile-panel__tags {
  display: flex;
  gap: 15px;
  flex-wrap: nowrap;
  overflow-x: auto;
}

.profile-panel__tags--wrap {
  flex-wrap: wrap;
}

.profile-panel__tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 27px;
  padding: 0 10.8px;
  background: rgba(52, 120, 246, 0.07);
  border: 0.9px solid rgba(52, 120, 246, 0.5);
  font-family: "Montserrat", sans-serif;
  font-size: 10.8px;
  font-weight: 600;
  color: #3478f6;
  white-space: nowrap;
  flex-shrink: 0;
}

/* Body */
.profile-panel__body {
  display: flex;
  gap: 48px;
  align-items: flex-start;
}

.profile-panel__left {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.profile-panel__right {
  width: 400px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.profile-panel__right .freelancer-card {
  width: 100%;
}

/* Cards */
.profile-panel__card {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.1);
  padding: 19px 20px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.profile-panel__section-header {
  display: flex;
  gap: 6px;
  align-items: center;
}

.profile-panel__section-title {
  font-family: "Manrope", sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: rgba(0, 0, 0, 0.5);
}

.profile-panel__bio {
  font-family: "DM Sans", sans-serif;
  font-size: 14px;
  line-height: 1.5;
  letter-spacing: 0.098px;
  color: #2b2b2b;
  margin: 0;
}

/* Experience */
.profile-panel__exp-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.profile-panel__exp-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.profile-panel__exp-logo {
  width: 44px;
  height: 44px;
  border-radius: 8px;
  overflow: hidden;
  flex-shrink: 0;
}

.profile-panel__exp-info {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.profile-panel__exp-role {
  font-family: "Manrope", sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: #2b2b2b;
  margin: 0;
}

.profile-panel__exp-company {
  font-family: "DM Sans", sans-serif;
  font-size: 13px;
  color: rgba(0, 0, 0, 0.6);
  margin: 0;
}

.profile-panel__exp-date {
  font-family: "DM Sans", sans-serif;
  font-size: 12px;
  color: rgba(0, 0, 0, 0.4);
  margin: 0;
}

.profile-panel__exp-desc {
  font-family: "DM Sans", sans-serif;
  font-size: 13px;
  line-height: 1.5;
  color: #2b2b2b;
  margin: 4px 0 0;
}

.profile-panel__exp-divider {
  height: 1px;
  background: rgba(0, 0, 0, 0.07);
}

/* Portfolio */
.profile-panel__portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.profile-panel__portfolio-item {
  aspect-ratio: 4 / 3;
  background: #e2e8f0;
  border-radius: 4px;
  overflow: hidden;
}

.profile-panel__portfolio-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Pricing in right panel */
.profile-panel__price-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(52, 120, 246, 0.07);
  border: 1px solid rgba(52, 120, 246, 0.21);
  height: 67px;
  padding: 9px 12px;
}

.profile-panel__price {
  font-family: "Manrope", sans-serif;
  font-weight: 600;
  color: #181818;
  margin: 0;
  line-height: 1;
}

.profile-panel__price-num {
  font-size: 36px;
}
.profile-panel__price-unit {
  font-size: 18px;
}

.profile-panel__actions-hire {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1px;
}

.profile-panel__header-rate {
  font-family: "Manrope", sans-serif;
  font-weight: 600;
  color: #181818;
  margin: 0;
  line-height: 1;
  margin-bottom: 12px;
}

.profile-panel__badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  height: 20px;
  padding: 0 9px;
  background: #3478f6;
  border-radius: 26px;
  font-size: 9px;
  font-weight: 600;
  color: #fff;
  white-space: nowrap;
  font-family: "DM Sans", sans-serif;
}

.profile-panel__hire-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 45px;
  background: #3478f6;
  color: #fff;
  text-decoration: none;
  font-size: 16px;
  font-family: "DM Sans", sans-serif;
}

.profile-panel__hire-btn:hover {
  background: #2968e0;
}

/* Stats */
.profile-panel__stats {
  display: flex;
  justify-content: space-between;
  gap: 8px;
}

.profile-panel__stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  flex: 1;
}

.profile-panel__stat-num {
  font-family: "Manrope", sans-serif;
  font-size: 22px;
  font-weight: 600;
  color: #3478f6;
  margin: 0;
}

.profile-panel__stat-label {
  font-family: "DM Sans", sans-serif;
  font-size: 12px;
  color: rgba(0, 0, 0, 0.5);
  margin: 0;
  text-align: center;
}

@media (max-width: 1024px) {
  .profile-panel {
    width: 100vw;
  }
  .profile-panel__body {
    flex-direction: column;
  }
  .profile-panel__right {
    width: 100%;
  }
  .profile-panel__scroll {
    padding: 72px 24px 40px;
  }
}

@media (max-width: 767px) {
  .profile-panel__scroll {
    padding: 68px 16px 32px;
  }
  .profile-panel__header-card {
    padding: 24px 16px;
  }
  .profile-panel__header-top {
    flex-direction: column;
    align-items: flex-start;
  }
  .profile-panel__btn {
    padding: 0 32px;
  }
  .profile-panel__portfolio-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ── Start Now Popup ─────────────────────────────────────────── */
.popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9000;
  opacity: 0;
  transition: opacity 0.2s;
  padding: 16px;
}

.popup-overlay.is-visible {
  opacity: 1;
}

.popup {
  display: flex;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
  width: 896px;
  max-width: 100%;
  max-height: 92vh;
}

.popup__left {
  width: 496px;
  flex-shrink: 0;
  background: #f5f5f5;
  padding: 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow-y: auto;
}

.popup__logo-wrap {
  padding-bottom: 32px;
}

.popup__logo {
  display: block;
  height: 26px;
  width: auto;
}

.popup__content {
  padding-bottom: 32px;
}

.popup__heading {
  font-family: "Inter", "DM Sans", sans-serif;
  font-size: 36px;
  font-weight: 800;
  line-height: 40px;
  color: #000;
  margin: 0 0 16px;
}

.popup__heading--blue {
  color: #3478f6;
}

.popup__subtitle {
  font-family: "Inter", "DM Sans", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  color: #4b5563;
  margin: 0;
  max-width: 320px;
}

.popup__form {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-bottom: 16px;
}

.popup__email {
  width: 100%;
  background: #e5e7eb;
  border: none;
  border-radius: 6px;
  padding: 14px 16px;
  font-family: "Inter", "DM Sans", sans-serif;
  font-size: 16px;
  color: #111;
  outline: none;
}

.popup__email::placeholder {
  color: #6b7280;
}

.popup__email:focus {
  background: #dde0e5;
}

.popup__subscribe {
  width: 100%;
  background: #3478f6;
  color: #fff;
  border: none;
  border-radius: 6px;
  padding: 12px;
  font-family: "Inter", "DM Sans", sans-serif;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
}

.popup__subscribe:hover {
  background: #2968e0;
}

.popup__policy {
  font-family: "Inter", "DM Sans", sans-serif;
  font-size: 10px;
  color: #6b7280;
  margin: 0;
  padding-top: 16px;
}

.popup__privacy {
  color: #6b7280;
  text-decoration: underline;
}

.popup__right {
  flex: 1;
  position: relative;
  background: #c8d5e0;
  min-height: 400px;
}

.popup__image {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.popup__image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.popup__close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.2);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}

.popup__close:hover {
  background: rgba(0, 0, 0, 0.4);
}

@media (max-width: 767px) {
  .popup {
    flex-direction: column;
  }
  .popup__left {
    width: 100%;
    padding: 32px 24px;
  }
  .popup__right {
    display: none;
  }
  .popup__heading {
    font-size: 28px;
  }
}

/* ── AI Chat Section ─────────────────────────────────────────── */
.ai-chat {
  padding: 80px 89px;
  font-family: "DM Sans", sans-serif;
}

.ai-chat__inner {
  display: flex;
  gap: 39px;
  align-items: flex-start;
}

/* Left column */
.ai-chat__left {
  display: flex;
  flex-direction: column;
  gap: 22px;
  width: 710px;
  flex-shrink: 1;
  min-width: 0;
}

.ai-chat__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.ai-chat__title {
  font-family: "Manrope", sans-serif;
  font-size: 36px;
  font-weight: 600;
  color: #000;
  margin: 0;
}

.ai-chat__help {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  height: 35px;
  padding: 0 14px;
  background: #fff;
  border: 1px solid rgba(52, 120, 246, 0.07);
  color: #3478f6;
  font-size: 14px;
  font-family: "DM Sans", sans-serif;
  text-decoration: none;
  letter-spacing: 0.098px;
  flex-shrink: 0;
}

.ai-chat__interface {
  display: flex;
  flex-direction: column;
  height: 856px;
  border: 1px solid #e2e8f0;
  background: #fff;
  overflow: hidden;
}

.ai-chat__messages {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 25px;
  overflow-y: auto;
}

.ai-chat__msg--sent {
  align-self: flex-end;
  background: rgba(1, 154, 95, 0.1);
  border: 1px solid rgba(1, 154, 95, 0.33);
  padding: 8px 20px;
  min-width: 217px;
  height: 55px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  font-size: 14px;
  font-weight: 500;
  color: rgba(0, 0, 0, 0.75);
}

.ai-chat__reply {
  display: flex;
  align-items: center;
  gap: 9px;
}

.ai-chat__avatar {
  width: 29px;
  height: 29px;
  border-radius: 50%;

  flex-shrink: 0;
  overflow: hidden;
}
.ai-chat__avatar > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.ai-chat__bubble {
  background: linear-gradient(
    to right,
    rgba(230, 245, 239, 0),
    rgba(230, 245, 239, 0.48)
  );
  border: 1px solid rgba(1, 154, 95, 0.2);
  padding: 8px 20px;
  min-width: 217px;
  height: 55px;
  display: flex;
  align-items: center;
  font-size: 14px;
  font-weight: 500;
  color: rgba(0, 0, 0, 0.75);
  line-height: 1.4;
}

.ai-chat__footer {
  background: #f9fafb;
  border-top: 1px solid #e2e8f0;
  padding: 25px;
  flex-shrink: 0;
}

.ai-chat__bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #fff;
  border: 1px solid #cbd5e1;
  padding: 12px 20px;
}

.ai-chat__bar-input {
  flex: 1;
  border: none;
  outline: none;
  font-size: 13px;
  font-weight: 500;
  font-family: "DM Sans", sans-serif;
  color: #2b2b2b;
  background: transparent;
  min-width: 0;
}

.ai-chat__bar-input::placeholder {
  color: #6e6e6e;
}

.ai-chat__send {
  height: 37px;
  width: 70px;
  background: #3478f6;
  color: #fff;
  border: none;
  font-size: 16px;
  cursor: pointer;
  flex-shrink: 0;
}

.ai-chat__send:hover {
  background: #2968e0;
}

/* Right column */
.ai-chat__right {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 22px;
  min-width: 0;
}

.ai-chat__fl-title {
  font-family: "Manrope", sans-serif;
  font-size: 22px;
  font-weight: 600;
  color: #000;
  margin: 0;
}

.ai-chat__cards {
  display: flex;
  flex-wrap: wrap;
  gap: 41px 35px;
  min-width: 0;
  width: 100%;
}

/* Freelancer card */
.freelancer-card {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 25px;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.07);
  box-shadow: 0 0 18px 0 rgba(81, 81, 81, 0.11);
  overflow: hidden;
  width: calc(50% - 17.5px);
  min-width: 0;
  box-sizing: border-box;
}

.freelancer-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.freelancer-card__profile {
  display: flex;
  gap: 8px;
  align-items: center;
  min-width: 0;
}

.freelancer-card__avatar {
  width: 65px;
  height: 65px;
  border-radius: 12px;
  background: #c8d5e0;
  flex-shrink: 0;
  overflow: hidden;
}

.freelancer-card__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
}

.freelancer-card__info {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}

.freelancer-card__name {
  font-family: "Manrope", sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: #000;
  margin: 0;
}

.freelancer-card__subtitle {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0.098px;
  color: #000;
  margin: 0;
}

.freelancer-card__more {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 20px;
  color: #555;
  padding: 0;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.freelancer-card__tags {
  display: flex;
  gap: 17px;
  align-items: center;
  flex-wrap: wrap;
}

.freelancer-card__tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 30px;
  padding: 0 12px;
  background: rgba(52, 120, 246, 0.1);
  border: 1px solid #3478f6;
  border-radius: 2px;
  font-family: "Montserrat", sans-serif;
  font-size: 12px;
  font-weight: 600;
  color: #3478f6;
  white-space: nowrap;
}

.freelancer-card__desc {
  font-size: 16px;
  font-weight: 400;
  color: #000;
  margin: 0;
  line-height: 1.4;
}

.freelancer-card__price-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(52, 120, 246, 0.07);
  border: 1px solid rgba(52, 120, 246, 0.21);
  height: 67px;
  padding: 9px 12px;
}

.freelancer-card__price {
  font-family: "Manrope", sans-serif;
  font-weight: 600;
  color: #181818;
  margin: 0;
  line-height: 1;
}

.freelancer-card__price-num {
  font-size: 36px;
}
.freelancer-card__price-unit {
  font-size: 18px;
}

.freelancer-card__badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  height: 20px;
  padding: 0 9px;
  background: #3478f6;
  border-radius: 26px;
  font-size: 9px;
  font-weight: 600;
  color: #fff;
  white-space: nowrap;
  flex-shrink: 0;
}

.freelancer-card__cta {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 45px;
  background: #3478f6;
  color: #fff;
  text-decoration: none;
  font-size: 16px;
  font-weight: 400;
  font-family: "DM Sans", sans-serif;
}

.freelancer-card__cta:hover {
  background: #2968e0;
}

@media (max-width: 1300px) {
  .ai-chat {
    padding: 80px 56px;
  }
}

@media (max-width: 1200px) {
  .ai-chat__cards {
    flex-direction: column;
  }

  .freelancer-card {
    width: 100%;
  }
}

@media (max-width: 1024px) {
  .ai-chat {
    padding: 56px 40px;
  }
  .ai-chat__inner {
    flex-direction: column;
  }
  .ai-chat__left {
    width: 100%;
    flex-shrink: 1;
  }
  .ai-chat__interface {
    height: 500px;
  }
  .ai-chat__right {
    width: 100%;
  }
  .freelancer-card {
    width: 100%;
  }
}

@media (max-width: 767px) {
  .ai-chat {
    padding: 48px 16px;
  }
  .ai-chat__title {
    font-size: 28px;
  }
  .freelancer-card {
    width: 100%;
  }
}

h1,
h2,
h3 {
  animation: fadeUp 0.8s ease forwards;
  opacity: 0;
}

/* ══════════════════════════════════════════════════
   How It Works page
   ══════════════════════════════════════════════════ */
.hiw {
  padding: 80px 88px 120px;
  font-family: "DM Sans", sans-serif;
  max-width: 1100px;
  margin: 0 auto;
}

/* Page header */
.hiw__tag {
  display: inline-flex;
  align-items: center;
  padding: 6px 18px;
  background: #3478f6;
  color: #fff;
  font-family: "DM Sans", sans-serif;
  font-size: 13px;
  font-weight: 500;
  border-radius: 100px;
  margin-bottom: 28px;
}

.hiw__title {
  font-family: "Manrope", sans-serif;
  font-size: 52px;
  font-weight: 700;
  line-height: 1.1;
  color: #181818;
  margin: 0 0 40px;
  max-width: 640px;
}

.hiw__meta {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 80px;
}

.hiw__subtitle {
  font-size: 15px;
  font-weight: 400;
  line-height: 1.6;
  color: #555;
  margin: 0;
  max-width: 420px;
}

.hiw__dates {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.hiw__date {
  font-size: 13px;
  color: #888;
  padding: 8px 20px;
}

.hiw__date--active {
  background: #3478f6;
  color: #fff;
  font-weight: 500;
}

/* ── Timeline ── */
.hiw__timeline {
  display: flex;
  flex-direction: column;
}

.hiw__step {
  width: 50%;
}

.hiw__step--right {
  margin-left: auto;
}

/* Card: badge inside on the left */
.hiw__card {
  display: flex;
  align-items: stretch;
  gap: 20px;
  border-radius: 20px;
  padding: 28px 28px 28px 8px;
}

/* Left-side cards: light tinted bg */
.hiw__step:not(.hiw__step--right) .hiw__card {
  background: rgba(52, 120, 246, 0.06);
  border: 1px solid rgba(52, 120, 246, 0.1);
}

/* Right-side cards: white */
.hiw__step--right .hiw__card {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 4px 20px -4px rgba(0, 0, 0, 0.07);
}

/* Duration pill — tall, inside card on left */
.hiw__pill {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  background: #181818;
  color: #fff;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.05em;
  padding: 20px 9px;
  border-radius: 100px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  align-self: stretch;
}

.hiw__step--right .hiw__pill {
  background: #1e3a5f;
}

/* Card content */
.hiw__card-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
  justify-content: center;
}

/* Icon + title on same line */
.hiw__card-head {
  display: flex;
  align-items: center;
  gap: 12px;
}

.hiw__card-icon {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
}

.hiw__card-title {
  font-family: "Manrope", sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: #181818;
  margin: 0;
  line-height: 1.2;
}

.hiw__card-desc {
  font-size: 14px;
  line-height: 1.6;
  color: #555;
  margin: 0;
}

/* ── Connectors ── */
.hiw__connector {
  width: 100%;
  overflow: visible;
  display: block;
  height: 90px;
}

/* ── Responsive ── */
@media (max-width: 900px) {
  .hiw {
    padding: 60px 24px 80px;
  }

  .hiw__title {
    font-size: 32px;
  }

  .hiw__meta {
    flex-direction: column;
    gap: 24px;
  }

  .hiw__step,
  .hiw__step--right {
    width: 100%;
    margin-left: 0;
  }

  .hiw__connector {
    height: 40px;
  }

  .hiw__connector svg {
    display: none;
  }
}

/* ══════════════════════════════════════════════════
   News Page
   ══════════════════════════════════════════════════ */
.news-page {
  padding: 80px 88px 120px;
  font-family: "DM Sans", sans-serif;
  max-width: 1719px; /* 1543px content + 88px padding each side */
  margin: 0 auto;
}

.news-page__tag {
  display: inline-flex;
  align-items: center;
  padding: 6px 18px;
  background: #3478f6;
  color: #fff;
  font-size: 13px;
  font-weight: 500;
  border-radius: 100px;
  margin-bottom: 12px;
}

.news-page__date {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 15px;
  font-weight: 500;
  color: #1f2937;
  margin-bottom: 20px;
}

.news-page__title {
  font-family: "Manrope", sans-serif;
  font-size: 48px;
  font-weight: 700;
  color: #181818;
  margin: 0 0 48px;
  line-height: 1.1;
}

/* 3 featured cards side by side */
.news-page__featured {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 28px;
  margin-bottom: 60px;
}

.news-page__featured .blog-card {
  width: 100%;
}

.news-page__featured .blog-card__image {
  height: 320px;
}

.news-page__divider {
  border: none;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  margin: 0 0 48px;
}

/* 4-column grid */
.news-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

.news-grid .blog-card {
  width: 100%;
}

@media (max-width: 1100px) {
  .news-page {
    padding: 60px 40px 80px;
  }

  .news-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 900px) {
  .news-page {
    padding: 40px 16px 60px;
  }

  .news-page__title {
    font-size: 32px;
  }

  .news-page__featured {
    grid-template-columns: 1fr;
  }

  .news-grid {
    grid-template-columns: 1fr;
  }
}
