﻿:root {
  --bg-light: #f4f4f4;
  --bg-muted: #efefef;
  --bg-purple: #f1ecff;
  --bg-orange: #fff4e8;
  --text-dark: #1c1c1f;
  --text-muted: #616161;
  --primary: #000000;
  --accent: #864df7;
  --secondary: #fea557;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", sans-serif;
  background: #ffffff;
  color: var(--text-dark);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.container {
  width: min(90%);
  margin: 0 auto;
  padding: 0 24px;
}

section {
  position: relative;
}
/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 700;
  text-transform: uppercase;
  border-radius: 10px;
  padding: 14px 32px;
  font-size: 0.95rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease,
    color 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
}

.btn-primary,
.btn-dark {
  background: var(--primary);
  color: #ffffff;
}

.btn-outline {
  border: 2px solid var(--primary);
  color: var(--primary);
}

.btn-outline:hover {
  background: var(--primary);
  color: #ffffff;
}

.btn-accent {
  background: var(--accent);
  color: #ffffff;
}

.cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.cta-buttons a {
  font-size: 20px;
}

/* Navbar */
.navbar {
  padding: 24px 0;
}

.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  position: relative;
}

.logo {
  font-family: "Belanosima", sans-serif;
  font-size: 1.75rem;
  color: var(--primary);
  letter-spacing: 0.04em;
}

.logo span {
  color: var(--accent);
}

.menu {
  display: flex;
  align-items: center;
  gap: 32px;
}

.menu a {
  font-family: "Poppins", sans-serif;
  font-size: 20px;
  font-weight: 500;
  color: #858585;
  transition: color 0.2s ease;
}

.menu a.active,
.menu a:hover {
  color: var(--primary);
}

.navbar .btn {
  border-radius: 22.5px;
}

.navbar-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.menu-toggle {
  display: none;
  border: none;
  background: transparent;
  padding: 0;
  cursor: pointer;
  line-height: 0;
}

.menu-toggle img {
  width: 28px;
  height: 28px;
}
/* Hero */
.hero {
  background: var(--bg-muted);
  border-radius: 40px;
  padding: 100px 50px 0 50px;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
      90deg,
      rgba(183, 180, 177, 0.12) 0,
      rgba(183, 180, 177, 0.12) 1px,
      transparent 1px,
      transparent 48px
    ),
    repeating-linear-gradient(
      0deg,
      rgba(183, 180, 177, 0.08) 0,
      rgba(183, 180, 177, 0.08) 1px,
      transparent 1px,
      transparent 48px
    );
  opacity: 0.4;
  pointer-events: none;
}

.hero-inner {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  flex-direction: column;
  gap: 48px;
  z-index: 1;
}

.hero-copy {
  flex: 1 1 320px;
  width: 90%;
  text-align: center;
}

.hero-copy h1 {
  color: #000;
  text-align: center;
  font-family: Belanosima;
  font-size: 64px;
  font-style: normal;
  font-weight: 400;
  line-height: 119%; /* 76.16px */
  text-transform: capitalize;
  margin-bottom: 16px;
}

.hero-copy p {
  font-size: 24px;
  font-weight: 500;
  color: var(--text-muted);
  margin-bottom: 32px;
}
.hero-copy .cta-buttons {
  justify-content: space-evenly;
  margin-top: 48px;
}
.hero-copy .cta-buttons a {
  width: 40%;
}

.hero-art {
  /* flex: 1 1 340px; */
  display: flex;
  justify-content: center;
  position: relative;
}

.hero-media {
  width: 55%;
}



.media-frame {
  position: relative;
  width: 100%;
  max-width: 520px;
  aspect-ratio: 4 / 3;
  border-radius: 32px;
  overflow: hidden;
  background: linear-gradient(
    135deg,
    rgba(134, 77, 247, 0.18),
    rgba(255, 255, 255, 0.8)
  );
  box-shadow: 0 28px 60px rgba(0, 0, 0, 0.14);
}

.media-frame::before {
  content: "";
  position: absolute;
  inset: 12px;
  border-radius: 28px;
  border: 2px dashed rgba(255, 255, 255, 0.6);
  pointer-events: none;
}

.media-frame img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: inherit;
}

.media-frame img[src=""] {
  opacity: 0;
}

/* Eyebrow */
.eyebrow {
  font-size: 0.85rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 16px;
  display: inline-block;
}
/* Trust */
.trust {
  padding: 80px 0;
}
.trust-inner {
  display: flex;
  flex-direction: column;
  gap: 48px;
  align-items: center;
}
.section-head {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 48px;
}

.section-head h2 {
  color: #000;

  /* H3 */
  font-family: Inter;
  font-size: 32px;
  font-style: normal;
  font-weight: 600;
  line-height: 130%; /* 41.6px */
}

.section-head p {
  color: var(--text-muted);
}

/* Card rows */
.card-grid {
  /* --min-card: 240px; */
  display: flex;
  flex-wrap: wrap;
  gap: 34px;
  justify-content: center;
  align-items: center;
}
.card-grid img:first-child{
  width: 80px;
  height:fit-content;
  opacity: 1;
  transition: filter 0.3s ease, opacity 0.3s ease;
}
.card-grid img{
  width: 170px;
  height:fit-content;
  opacity: 1;
  transition: filter 0.3s ease, opacity 0.3s ease;
}

/* .card-grid.three {
  --min-card: 280px;
} */

.card {
  flex: 1 1 var(--min-card);
  max-width: 320px;
  background: #ffffff;
  border-radius: 24px;
  padding: 32px;
  box-shadow: 0 16px 38px rgba(0, 0, 0, 0.06);
  display: flex;
  flex-direction: column;
  gap: 16px;
  text-align: left;
}

.card h3 {
  font-size: 1.25rem;
  font-weight: 600;
}

.card p {
  color: var(--text-muted);
}

.card-icon {
  width: 72px;
  height: 72px;
  border-radius: 22px;
  background: linear-gradient(
    135deg,
    rgba(134, 77, 247, 0.18),
    rgba(134, 77, 247, 0)
  );
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 8px;
}

.card-icon img {
  width: 60%;
  height: 60%;
  object-fit: contain;
}

.card-icon img[src=""] {
  opacity: 0;
}

/* Difference */
.difference {
  padding: 0 0 120px 0;
  background: #ffffff;
}

.difference-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  align-items: center;
}

.difference-highlights {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
  max-width: 560px;
}

.difference-card {
  --card-offset: 0px;
  background: #ffffff;
  border-radius: 28px;
  padding: 32px;
  box-shadow: 0 28px 60px rgba(28, 28, 31, 0.08);
  display: flex;
  flex-direction: column;
  gap: 18px;
  transform: translateY(var(--card-offset));
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.difference-card:nth-child(2),
.difference-card:nth-child(4) {
  --card-offset: 38px;
}

.difference-card:hover {
  transform: translateY(calc(var(--card-offset) - 8px));
  box-shadow: 0 36px 80px rgba(28, 28, 31, 0.14);
}

.difference-icon {
  width: 56px;
  height: 56px;
  border-radius: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: start;
  /* background: rgba(28, 28, 31, 0.05); */
}

.difference-icon img {
  width: 50px;
}

/* .difference-icon--purple {
  background: rgba(134, 77, 247, 0.500);
}

.difference-icon--orange {
  background: rgba(254, 165, 87, 0.500);
}

.difference-icon--amber {
  background: rgba(255, 134, 48, 0.500);
}

.difference-icon--indigo {
  background: rgba(104, 119, 255, 0.500);
} */

.difference-card h3 {
  font-size: 1.3rem;
  font-weight: 700;
}

.difference-card p {
  color: var(--text-muted);
}

.difference-copy {
  margin-left: auto;
}

.difference-tag {
  display: inline-flex;
  align-items: center;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  padding: 8px 20px;
  border-radius: 999px;
  background: rgba(254, 165, 87, 0.22);
  color: var(--secondary);
  margin-bottom: 24px;
}

.difference-copy h2 {
  font-family: "Belanosima", sans-serif;
  font-size: clamp(2.75rem, 4vw, 3.5rem);
  margin-bottom: 24px;
}

.difference-copy p {
  color: var(--text-muted);
  font-size: 1.05rem;
  margin-bottom: 36px;
}

.difference-copy .btn {
  border-radius: 999px;
  padding: 16px 38px;
  font-size: 1rem;
}

/* Advertisers */
.advertisers {
  position: relative;
  overflow: hidden;
  padding: 70px 0;
  background: rgba(239, 239, 239, 0.42);
  backdrop-filter: blur(4.650000095367432px);
  border-radius: 150px 0 0 0;
}

.advertisers::before,
.advertisers::after {
  content: "";
  position: absolute;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.65;
  z-index: 0;
}

.advertisers::before {
  left: -160px;
  top: 30%;
  background: rgba(134, 77, 247, 0.64);
}

.advertisers::after {
  right: -140px;
  bottom: 30%;
  background: rgba(254, 165, 87, 0.758);
}

.advertisers-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}

.advertisers-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 9px 24px;
  border-radius: 999px;
  background: rgba(134, 77, 247, 0.9);
  color: #fff;
  font-weight: 600;
  letter-spacing: 0.18em;
  font-size: 0.75rem;
  text-transform: uppercase;
  box-shadow: 0 14px 34px rgba(134, 77, 247, 0.25);
}

.advertisers-title {
color: #000;
text-align: center;

/* HER SECTION HWEADING */
font-family: Belanosima;
font-size: 64px;
font-style: normal;
font-weight: 400;
line-height: 119%; /* 76.16px */
text-transform: capitalize;
}

.advertisers-title mark {
  background: none;
  color: var(--secondary);
}

.advertisers-title .mark-secondary {
  color: #f97a2b;
}

.advertisers-lead {
  max-width: 700px;
  color: var(--text-muted);
  font-size: 1.05rem;
}

.advertisers-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
  width: 100%;
  max-width: 980px;
  margin: 12px auto 0;
}

.advertiser-card {
  background: #ffffff;
  border-radius: 30px;
  padding: 36px 32px;
  box-shadow: 0 26px 58px rgba(28, 28, 31, 0.1);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.advertiser-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 36px 88px rgba(28, 28, 31, 0.16);
}

.advertiser-icon {
  width: 68px;
  height: 68px;
  border-radius: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(28, 28, 31, 0.06);
}

.advertiser-icon img {
  width: 32px;
  height: 32px;
}

.advertiser-card h3 {
  font-size: 1.35rem;
  font-weight: 700;
  text-align: center;
}

.advertiser-card p {
  text-align: center;
  color: var(--text-muted);
}

.btn-demo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 18px 48px;
  border-radius: 999px;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 1rem;
  background: linear-gradient(90deg, #7544ff 0%, #9d5dff 45%, #fe8c4c 100%);
  color: #fff;
  box-shadow: 0 18px 44px rgba(117, 68, 255, 0.3);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.btn-demo:hover {
  transform: translateY(-4px);
  box-shadow: 0 26px 64px rgba(117, 68, 255, 0.4);
}

/* Publishers */
.publishers {
  padding: 70px 0;
  background-image: url(assets//pattern.png);
  background-size: cover;
  background-color: #fff;
  position: relative;
  overflow: hidden;
}

.publishers::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.55;
  pointer-events: none;
}

.publishers-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}

.publishers-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 22px;
  border-radius: 999px;
  background: rgba(254, 165, 87, 0.92);
  color: #1c1c1f;
  font-weight: 600;
  letter-spacing: 0.18em;
  font-size: 0.75rem;
  text-transform: uppercase;
  box-shadow: 0 14px 32px rgba(254, 165, 87, 0.28);
}

.publishers-title {
  font-family: "Belanosima", sans-serif;
  font-size: clamp(2.5rem, 4vw, 3.4rem);
  line-height: 1.12;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.publishers-title mark {
  background: none;
  color: var(--accent);
}

.publishers-title .mark-secondary {
  color: var(--accent);
}

.publishers-lead {
  max-width: 760px;
  color: var(--text-muted);
  font-size: 1.05rem;
}

.publishers-cards {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 28px;
  width: 100%;
  margin: 16px auto 0;
}

.publisher-card {
  background: #ffffff;
  border-radius: 28px;
  padding: 32px 28px;
  box-shadow: 0 20px 48px rgba(28, 28, 31, 0.08);
  display: flex;
  flex-direction: column;
  gap: 18px;
  text-align: left;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.publisher-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 70px rgba(28, 28, 31, 0.14);
}

.publisher-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: #1c1c1f;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.publisher-icon img {
  width: 28px;
  height: 28px;
}

.publisher-card h3 {
  font-size: 1.3rem;
  font-weight: 700;
}

.publisher-card p {
  color: var(--text-muted);
}

.btn-apply {
  padding: 18px 46px;
  border-radius: 999px;
  background: #fea557;
  color: #1c1c1f;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  box-shadow: 0 16px 38px rgba(254, 165, 87, 0.35);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.btn-apply:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 60px rgba(254, 165, 87, 0.45);
}

/* Commitment */
.commitment {
  padding: 140px 0;
  background: linear-gradient(180deg, #ffffff 0%, rgba(241, 236, 255, 0.85) 100%);
  position: relative;
  overflow: hidden;
}

.commitment::before,
.commitment::after {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.5;
  z-index: 0;
}

.commitment::before {
  left: -180px;
  top: -120px;
  background: rgba(134, 77, 247, 0.35);
}

.commitment::after {
  right: -160px;
  bottom: -80px;
  background: rgba(254, 165, 87, 0.35);
}

.commitment-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1fr);
  gap: 64px;
  align-items: center;
}

.commitment-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 22px;
  border-radius: 999px;
  background: rgba(134, 77, 247, 0.18);
  color: var(--accent);
  font-weight: 600;
  letter-spacing: 0.18em;
  font-size: 0.75rem;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.commitment-copy h2 {
  font-family: "Belanosima", sans-serif;
  font-size: clamp(2.4rem, 3.6vw, 3.2rem);
  margin-bottom: 18px;
}

.commitment-copy p {
  color: var(--text-muted);
  font-size: 1.05rem;
}

.commitment-list {
  list-style: none;
  display: grid;
  gap: 14px;
  margin-top: 28px;
  padding: 0;
}

.commitment-list li {
  position: relative;
  padding-left: 32px;
  font-weight: 500;
  color: var(--text-dark);
}

.commitment-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), rgba(254, 165, 87, 0.9));
  box-shadow: 0 6px 16px rgba(134, 77, 247, 0.25);
}

.commitment-roadmap {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}

.commitment-card {
  position: relative;
  background: #ffffff;
  border-radius: 28px;
  padding: 36px 32px;
  box-shadow: 0 24px 60px rgba(28, 28, 31, 0.1);
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: flex-start;
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.commitment-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  border: 1px solid rgba(134, 77, 247, 0.08);
  pointer-events: none;
}

.commitment-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 32px 80px rgba(28, 28, 31, 0.16);
}

.commitment-step {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 18px;
  border-radius: 999px;
  background: linear-gradient(135deg, #7544ff, #fea557);
  color: #ffffff;
  font-weight: 600;
  letter-spacing: 0.1em;
  font-size: 0.75rem;
}

.commitment-icon {
  width: 64px;
  height: 64px;
  border-radius: 20px;
background: linear-gradient(135deg, #7544ff, #fea557);  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.commitment-icon img {
  width: 30px;
  height: 30px;
}

.commitment-card h3 {
  font-size: 1.35rem;
  font-weight: 700;
}

.commitment-card p {
  color: var(--text-muted);
}
/* Contact */
.contact {
    position: relative;
  overflow: hidden;
  /* background: linear-gradient(135deg, rgba(134, 77, 247, 0.12), rgba(254, 165, 87, 0.12)); */
  padding: 140px 0;
  z-index: 1;
}

.contact::before,
.contact::after {
  content: "";
  position: absolute;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.65;
  z-index: 0;
}

.contact::before {
  left: -160px;
  top: 30%;
  background: rgba(134, 77, 247, 0.64);
}

.contact::after {
  right: -140px;
  bottom: 30%;
  background: rgba(254, 165, 87, 0.758);
}

.contact-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: 72px;
  align-items: center;
  background: #ffffff;
  border-radius: 32px;
  padding: 72px;
  box-shadow: 0 50px 120px rgba(28, 28, 31, 0.12);
  position: relative;
  overflow: hidden;
    z-index: 1;

}

.contact-inner::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  border: 1px solid rgba(134, 77, 247, 0.12);
  pointer-events: none;
}

.contact-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-visual img {
  max-width: 420px;
  width: 100%;
  height: auto;
}

.contact-copy {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 26px;
  border-radius: 999px;
  background: rgba(134, 77, 247, 0.18);
  color: var(--accent);
  font-weight: 600;
  letter-spacing: 0.16em;
  font-size: 0.76rem;
  text-transform: uppercase;
}

.contact-copy h2 {
  font-family: "Belanosima", sans-serif;
  font-size: clamp(2.4rem, 3.5vw, 3.1rem);
  line-height: 1.15;
}

.contact-emoji {
  font-size: 2.5rem;
  margin-left: 8px;
}

.contact-copy p {
  color: var(--text-muted);
  font-size: 1.05rem;
  max-width: 520px;
}

.btn-contact {
  align-self: flex-start;
  padding: 18px 48px;
  border-radius: 999px;
  background: linear-gradient(90deg, #7544ff 0%, #9d5dff 50%, #fea557 100%);
  color: #ffffff;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  box-shadow: 0 18px 44px rgba(117, 68, 255, 0.35);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.btn-contact:hover {
  transform: translateY(-4px);
  box-shadow: 0 26px 62px rgba(117, 68, 255, 0.45);
}
/* Footer */
.site-footer {
  background: url(assets/footer-background.png) no-repeat center/cover;
  color: #ffffff;
  padding: 60px 0 0 10px;
}


.footer-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: space-between;
}

.footer-brand,
.footer-contact,
.footer-nav,
.footer-social {
  flex: 1 1 220px;
}

.footer-brand .logo img {
  filter: invert(1);
  margin-bottom: 20px;
}
.footer-brand p {
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.7);
}

.footer-brand p + p {
  margin-top: 8px;
}

.footer-brand a {
  color: inherit;
}

.footer-brand a:hover {
  color: #ffffff;
}

.footer-about {
  margin-top: 16px;
  max-width: 320px;
}

.footer-contact,
.footer-nav,
.footer-social {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-contact p {
    font-size: 15.5px;
  font-weight: 500;
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
}

.footer-contact a {
  font-size: 15.5px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.7);
}

.footer-contact a:hover {
  color: #ffffff;
}

.footer-nav a,
.footer-social a {
  color: rgba(255, 255, 255, 0.7);
  font-weight: 500;
}

.footer-nav a:hover,
.footer-social a:hover {
  color: #ffffff;
}
.footer-bottom p {
text-align: center;
  color: rgba(255, 255, 255, 0.7);
  padding: 30px 0;
}

.go-top {
  position: fixed;
  right: 28px;
  bottom: 28px;
  width: 58px;
  height: 58px;
  border: none;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), #a177ff);
  color: #ffffff;
  font-size: 1.6rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 22px 44px rgba(134, 77, 247, 0.4);
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transform: translateY(16px);
  transition: opacity 0.25s ease, transform 0.25s ease;
  z-index: 50;
}

.go-top span {
  pointer-events: none;
  line-height: 1;
}

.go-top:focus-visible {
  outline: 3px solid #ffffff;
  outline-offset: 3px;
}

.go-top.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}


/* Responsive */
@media (max-width: 1100px) {
  .card {
    max-width: calc(50% - 24px);
  }
}

@media (max-width: 1024px) {
  .hero {
    padding: 80px 32px 0 32px;
  }
  .hero-inner {
    flex-direction: column;
    gap: 48px;
    text-align: center;
  }
  .hero-copy {
    max-width: 640px;
    text-align: center;
  }
  .hero-copy h1 {
    text-align: center;
  }
  .hero-copy p {
    margin-left: auto;
    margin-right: auto;
  }
  .hero-copy .cta-buttons {
    justify-content: center;
  }
  .hero-copy .cta-buttons a {
    width: min(260px, 100%);
  }
  .hero-art {
    order: 2;
    width: 100%;
  }
  .hero-media {
    width: 100%;
    max-width: 420px;
  }
  .contact-inner {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 56px;
  }

  .contact-inner::after {
    inset: 12px;
  }

  .contact-visual img {
    max-width: 360px;
  }

  .contact-copy {
    align-items: center;
  }

  .contact-copy p {
    max-width: 100%;
  }

  .btn-contact {
    align-self: center;
  }

  .difference-inner {
    grid-template-columns: 1fr;
    gap: 64px;
  }

  .difference-highlights {
    max-width: none;
  }

  .difference-copy {
    margin-left: 0;
  }

  .difference-card:nth-child(2),
  .difference-card:nth-child(4) {
    --card-offset: 24px;
  }

  .advertisers {
    padding: 110px 0;
  }

  .advertisers-cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
  }

  .publishers {
    padding: 110px 0;
  }

  .publishers-cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .commitment-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .commitment-roadmap {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .card {
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .hero {
    padding: 60px 20px 0 20px;
  }
  
  .hero-copy .cta-buttons {
    gap: 12px;
  }
  .hero-copy .cta-buttons a {
    width: 100%;
    max-width: 320px;
    font-size: 15px;
  }
  .hero-media {
    width: 100%;
    max-width: 420px;
  }
  .hero-media img {
    width: 100%;
    height: auto;
  }
  section {
    padding: 70px 0;
  }

  .navbar-inner {
    align-items: center;
  }

  .navbar-actions {
    gap: 12px;
  }

  .menu {
    position: absolute;
    top: calc(100% + 12px);
    right: 0;
    left: 0;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    padding: 24px;
    border-radius: 20px;
    background: #ffffff;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    z-index: 10;
  }

  .menu.is-open {
    display: flex;
  }

  .menu a {
    width: 100%;
    font-size: 18px;
  }

  .menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .navbar .btn {
    font-size: 0.85rem;
    padding: 5px 10px;
    border-radius: 999px;
  }

  .difference-inner {
    gap: 48px;
  }

  .difference-highlights {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .difference-card {
    --card-offset: 0px;
  }

  .difference-card:nth-child(2),
  .difference-card:nth-child(4) {
    --card-offset: 0px;
  }

  .difference-copy {
    text-align: center;
    margin-left: 0;
  }

  .difference-copy .btn {
    margin: 0 auto;
  }

  .advertisers {
    padding: 100px 0;
  }

  .advertisers-inner {
    gap: 26px;
  }

  .advertisers-title {
    font-size: clamp(2.4rem, 6vw, 3rem);
  }

  .advertisers-cards {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .advertiser-card {
    padding: 30px 28px;
  }

  .btn-demo {
    width: 100%;
    max-width: 320px;
  }

  .publishers {
    padding: 100px 0;
  }

  .publishers-inner {
    gap: 26px;
  }

  .publishers-title {
    font-size: clamp(2.3rem, 6vw, 3.1rem);
  }

  .publishers-cards {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .publisher-card {
    text-align: center;
    align-items: center;
  }

  .publisher-card p {
    text-align: center;
  }

  .btn-apply {
    width: 100%;
    max-width: 320px;
  }

  .contact-inner {
    padding: 48px;
    gap: 40px;
  }

  .contact-copy {
    align-items: center;
  }

  .contact-tag {
    margin: 0 auto;
  }

  .contact-copy h2 {
    text-align: center;
  }

  .contact-copy p {
    text-align: center;
  }

  .btn-contact {
    align-self: center;
    width: 100%;
    max-width: 320px;
  }

  .commitment {
    padding: 100px 0;
  }

  .commitment-inner {
    gap: 36px;
  }

  .commitment-copy {
    text-align: center;
  }

  .commitment-list {
    margin: 0 auto;
    text-align: left;
    max-width: 420px;
  }

  .commitment-roadmap {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .commitment-card {
    align-items: center;
    text-align: center;
  }

  .commitment-step {
    align-self: center;
  }

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-brand,
  .footer-contact,
  .footer-nav,
  .footer-social {
    max-width: none;
    flex: 0 0 auto;
    width: 100%;
    text-align: left;
  }

  .footer-contact,
  .footer-nav,
  .footer-social {
    align-items: flex-start;
  }
}

@media (min-width: 769px) {
  .menu {
    position: static;
    display: flex !important;
    flex-direction: row;
    align-items: center;
    gap: 32px;
    padding: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
  }

  .menu a {
    width: auto;
    font-size: 20px;
  }

  .menu-toggle {
    display: none !important;
  }
}

@media (max-width: 620px) {
  section {
    padding: 56px 0;
  }
  .hero {
    padding: 52px 16px 0 16px;
  }
  .hero-copy h1 {
    font-size: clamp(2.2rem, 8vw, 2.8rem);
  }
  .hero-copy p {
    font-size: 1.05rem;
  }
  .hero-copy .cta-buttons a {
    max-width: 100%;
  }
  .hero-media {
    width: 100%;
    max-width: 420px;
  }
  .hero-media img {
    width: 100%;
    height: auto;
  }
  .cta-buttons {
    flex-direction: column;
    width: 100%;
  }

  /* .card-grid {
    justify-content: center;
  } */

  .card {
    max-width: none;
  }

  .go-top {
    right: 18px;
    bottom: 18px;
    width: 52px;
    height: 52px;
  }

  .contact-inner {
    padding: 38px 28px;
    gap: 28px;
  }

  .contact-visual img {
    max-width: 280px;
  }

  .contact-copy {
    gap: 20px;
  }

  .btn-contact {
    width: 100%;
  }

  .publishers {
    padding: 100px 0;
  }

  .publishers-cards {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .publisher-card {
    text-align: center;
  }

  .publisher-card p {
    text-align: center;
  }

  .commitment {
    padding: 90px 0;
  }

  .commitment-copy {
    text-align: center;
  }

  .commitment-list {
    margin: 0 auto;
    text-align: left;
    max-width: 420px;
  }

  .commitment-roadmap {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .commitment-card {
    align-items: center;
    text-align: center;
    padding: 30px 24px;
  }

}





@media (max-width: 540px) {
  .container {
    padding: 0 18px;
  }

  .card-grid{
    flex-direction: column;
  }

  .menu {
    flex-direction: column;
    align-items: flex-start;
  }

  section {
    padding: 48px 0;
  }

  .hero {
    border-radius: 32px;
    padding: 48px 12px 0 12px;
  }
  .hero-section{
    padding: 0;
  }
}

/* About Stats ======================================================== */
.about-stats {
  position: relative;
  background: #fff;
  padding-top: 100px;
  text-align: center;
  overflow: hidden;
  padding-bottom: 200px;
}

.about-stats::before {
  content: "";
  position: absolute;
  /* top: 50%;                à¤†à¤§à¤¾ à¤Šà¤ªà¤°, à¤†à¤§à¤¾ à¤¨à¥€à¤šà¥‡ */
  /* left: 50%; */
  transform: translate(-50%, -5%);
  width: 55%;
  height: 100%;
  background: url("../assets/about/KLY\ MEDIA\ TYPOGRAPHY.png") center/contain
    no-repeat;
  opacity: 1; /* faint look */
  z-index: 1;
}

.stats-box {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.08);
  padding: 50px 40px;
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
  z-index: 2; /* background à¤¸à¥‡ à¤Šà¤ªà¤° */
}

.stat-item h3 {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 6px;
}

.stat-item p {
  font-size: 1rem;
  font-weight: 500;
  color: #444;
}

.stat-item.purple h3 {
  color: #864df7;
}

.stat-item.orange h3 {
  color: #fea557;
}

/* Responsive */
@media (max-width: 768px) {
  .stats-box {
    grid-template-columns: repeat(2, 1fr);
    padding: 40px 28px;
  }
  .about-stats{
    padding-bottom: 50px;
  }
}

@media (max-width: 480px) {
  .stats-box {
    grid-template-columns: 1fr;
    padding: 32px 18px;
  }
}


/* Service Hero =========================================== */
.service-hero {
  position: relative;
  background: 
    linear-gradient(rgba(134, 77, 247, 0.88), rgba(134, 77, 247, 0.88)),
    url("../assets/office-bg.jpg") center/cover no-repeat;
  padding: 30px 0;
  color: #fff;
}

.service-hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 60px;
}

.service-hero-copy {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.service-tag {
  display: inline-block;
  background: #fff;
  color: #000;
  font-size: 0.85rem;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 4px;
  text-transform: uppercase;
  width: fit-content;
}

.service-hero-copy h1 {
  font-family: "Belanosima", sans-serif;
  font-size: 2.6rem;
  font-weight: 700;
  line-height: 1.2;
}

.service-hero-copy p {
  font-size: 1.15rem;
  font-weight: 400;
  max-width: 500px;
}

.service-hero-copy .btn {
  align-self: flex-start;
  background: #fff;
  color: #000;
  border-radius: 999px;
  padding: 14px 32px;
  font-weight: 700;
  text-transform: uppercase;
  transition: all 0.3s ease;
}

.service-hero-copy .btn:hover {
  background: #000;
  color: #fff;
}

.service-hero-visual {
  display: flex;
  justify-content: end;
  align-items: center;}

.service-hero-visual img {
  max-width: 100%;
  height: auto;
}

/* Responsive */
@media (max-width: 992px) {
  .service-hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .service-hero-copy .service-tag{
    align-self: center;
  }
  .service-hero-copy .btn {
    align-self: center;
  }
  .service-hero-visual {
    order: -1;
  }
}

