@font-face {
  font-family: "Poppins";
  src: url("assets/poppins/Poppins-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Poppins";
  src: url("assets/poppins/Poppins-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

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

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

@font-face {
  font-family: "Poppins";
  src: url("assets/poppins/Poppins-ExtraBold.ttf") format("truetype");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Poppins";
  src: url("assets/poppins/Poppins-Black.ttf") format("truetype");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

:root {
  --ink: #191f56;
  --ink-soft: #354071;
  --cream: #f7f0e8;
  --cream-2: #fbf4ef;
  --sand: #c4beaa;
  --coral: #d95148;
  --coral-dark: #bd3e36;
  --line: rgba(25, 31, 86, 0.14);
  --white: #fffaf6;
  --shadow: 0 24px 60px rgba(50, 31, 16, 0.12);
}

.text-coral {
  color: var(--coral);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: "Poppins", Arial, sans-serif;
  background: var(--cream);
  overflow-x: hidden;
}

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

p {
  color: var(--ink-soft);
  font-size: clamp(0.9rem, 1.4vw, 1rem);
  line-height: 1.75;
  margin: 0;
}

h1,
h2,
h3 {
  margin: 0;
  /* letter-spacing: -0.07em; */
}

h1 {
  font-size: clamp(3.15rem, 11vw, 8rem);
  font-weight: 900;
  line-height: 0.88;
}

h2 {
  font-size: clamp(2.45rem, 6vw, 5.25rem);
  font-weight: 900;
  line-height: 0.98;
}

h3 {
  font-size: 1.45rem;
  font-weight: 850;
  line-height: 1.1;
}

.hero-bg {
  position: relative;
  background:
    url("assets/herobg.jpg") center top / cover no-repeat,
    var(--cream);
  width: 100%;
  padding-bottom: 3rem;
  overflow: hidden;
}

.site-header {
  /* position: sticky; */
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 20px 0;
}

.logo,
.main-nav,
.nav-cta,
.btn {
  display: inline-flex;
  align-items: center;
}

.logo {
  justify-self: start;
}

.logo-img {
  display: block;
  width: clamp(118px, 14vw, 148px);
  height: auto;
}

.main-nav {
  justify-self: center;
  gap: clamp(14px, 2.4vw, 34px);
  color: var(--ink);
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
}

.header-cta {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 38px;
  padding: 0 18px;
  color: var(--ink);
  border: 1px solid var(--ink);
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
}

.header-cta span {
  font-size: 0.85rem;
  line-height: 1;
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 0;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 999px;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: var(--ink);
}

.section-shell {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.hero {
  display: grid;
  justify-items: center;
  align-items: center;
  padding: clamp(40px, 6vw, 72px) 0 24px;
  text-align: center;
}

.hero-copy {
  display: grid;
  width: 100%;
  justify-items: center;
  gap: 22px;
  max-width: 760px;
  margin-inline: auto;
}
.reject-text {
  display: block;
  width: min(100%, 920px);
  margin: 0 auto;
}
.eyebrow {
  color: var(--coral);
  font-size: 1rem;
  font-weight: 300;
  /* letter-spacing: 0.18em; */
  line-height: 1;
  text-transform: uppercase;
}

.hero-text {
  max-width: 530px;
}

.btn {
  justify-content: center;
  min-height: 44px;
  padding: 0 22px;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 850;
  /* letter-spacing: 0.04em; */
  text-transform: uppercase;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(217, 81, 72, 0.25);
}

.primary {
  color: white;
  background: var(--coral);
}

.primary:hover {
  background: var(--coral-dark);
}

.hero-slider {
  position: relative;
  width: 100vw;
  padding-bottom: 24px;
}

.hero-slider-shadow {
  width: 100%;
  height: 120px;
  position: absolute;
  left: 0;
  bottom: 0;
  background: radial-gradient(
    ellipse at center,
    rgba(25, 31, 86, 0.14) 0%,
    rgba(25, 31, 86, 0.08) 26%,
    rgba(25, 31, 86, 0) 67%
  );
  pointer-events: none;
  opacity: 0.5;
  z-index: 1;
}

.curved-carousel {
  position: relative;
  width: 100%;
  height: clamp(340px, 38vw, 480px);
  transform-style: preserve-3d;
  user-select: none;
  overflow: hidden;
  cursor: grab;
  touch-action: none;
  -webkit-mask-image: linear-gradient(
    90deg,
    transparent,
    #000 22%,
    #000 78%,
    transparent
  );
  mask-image: linear-gradient(
    90deg,
    transparent,
    #000 22%,
    #000 78%,
    transparent
  );
}

.curved-carousel.is-dragging {
  cursor: grabbing;
}

.curved-carousel__stage {
  perspective: clamp(680px, 72vw, 960px);
  position: absolute;
  left: 50%;
  top: 54%;
  transform: translate(-50%, -50%);
}

.curved-carousel__ring {
  position: absolute;
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
}

.curved-carousel__slide {
  position: absolute;
  transform-style: preserve-3d;
  overflow: hidden;
  border-radius: 14px 14px 0 0;
  background: var(--sand);
  box-shadow: 0 20px 40px rgba(50, 31, 16, 0.14);
}

.curved-carousel__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  pointer-events: none;
}
.curved-carousel__slide video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  pointer-events: none;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 16px;
  margin-top: 8px;
}

.hero-actions .btn {
  min-height: 52px;
  min-width: 0;
  padding: 0 28px;
  border-radius: 12px;
  font-size: 0.92rem;
  font-weight: 600;
  text-transform: none;
  gap: 10px;
}

.hero-actions .btn.primary {
  color: #fff;
  background: var(--coral);
  border: 1px solid var(--coral);
}

.hero-actions .btn.primary:hover {
  background: var(--coral-dark);
  border-color: var(--coral-dark);
}

.hero-actions .btn-outline {
  color: var(--coral);
  background: transparent;
  border: 1px solid var(--coral);
  box-shadow: none;
}

.hero-actions .btn-outline:hover {
  background: rgba(217, 81, 72, 0.08);
  box-shadow: none;
}

.explore-link {
  color: var(--ink-soft);
  font-size: 0.88rem;
  font-weight: 850;
}

.brand-bar {
  padding: 22px 0;
  /* background: var(--ink); */
  overflow: hidden;
}

.brand-marquee {
  width: 100%;
  overflow: hidden;
}

.brand-marquee-track {
  display: flex;
  width: max-content;
  animation: brandMarquee 32s linear infinite;
}

.brand-marquee-set {
  display: flex;
  align-items: center;
  gap: clamp(42px, 6vw, 96px);
  padding-right: clamp(42px, 6vw, 96px);
}

.brand-marquee-set img {
  display: block;
  height: clamp(22px, 2.6vw, 50px);
  width: auto;
  max-width: clamp(88px, 12vw, 150px);
  object-fit: contain;
  flex-shrink: 0;
}

.brand-marquee:hover .brand-marquee-track {
  animation-play-state: paused;
}

@keyframes brandMarquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 430px);
  gap: clamp(32px, 8vw, 120px);
  align-items: center;
}

.story {
  padding: clamp(76px, 10vw, 120px) 0 0;
}
.story .image-card {
  background-image: url("assets/a.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-color: unset;
  box-shadow: unset;
  border-radius: 0;
}
#proof.split-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(229px, 535px) !important;
  gap: clamp(32px, 8vw, 78px) !important;
}

.stats-wrap {
  /* background: var(--cream); */
  background-color: #fff;
  margin-top: 0;
  border-bottom: 1px solid var(--line);
}

.section-copy,
.section-heading,
.section-heading.narrow {
  display: grid;
  gap: 18px;
}

.section-copy {
  max-width: 525px;
}

.section-heading {
  /* max-width: 620px; */
}

.section-heading.narrow {
  /* max-width: 560px; */
}

.image-card {
  position: relative;
  display: grid;
  min-height: clamp(370px, 48vw, 600px);
  place-items: center;
  overflow: hidden;
  color: white;
  background:
    linear-gradient(155deg, transparent 58%, rgba(255, 255, 255, 0.18)),
    var(--sand);
  border-radius: 4px;
  box-shadow: var(--shadow);
}

/* .image-card::after {
  content: "";
  position: absolute;
  right: 26px;
  bottom: 28px;
  width: 58px;
  height: 2px;
  background: rgba(255, 255, 255, 0.75);
} */

.image-card span {
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.4rem;
  font-weight: 500;
}

.capability-strip {
  width: 100%;
  background: url("assets/pinkbg.jpg") center / cover no-repeat;
  padding: clamp(20px, 2.8vw, 30px) clamp(16px, 3vw, 40px);
  margin-top: 4.375rem;
}

.capability-strip-list {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(10px, 2vw, 28px);
  /* width: min(1180px, 100%); */
  margin: 0 auto;
  padding: 0;
  list-style: none;
}

.capability-strip-list li {
  color: var(--ink);
  font-size: clamp(0.62rem, 1.05vw, 0.8rem);
  font-weight: 700;
  line-height: 1.2;
  text-transform: uppercase;
  white-space: nowrap;
}

.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding: clamp(32px, 4.5vw, 52px) 0;
}

.stat {
  position: relative;
  display: flex;
  align-items: center;
  gap: clamp(14px, 2vw, 24px);
  padding: 0 clamp(18px, 2.8vw, 32px);
}

.stat:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 12%;
  right: 0;
  bottom: 12%;
  width: 1px;
  background: rgba(25, 31, 86, 0.22);
}

.stat-icon-img {
  display: block;
  width: clamp(36px, 4vw, 52px);
  height: auto;
  flex-shrink: 0;
}

.stat-content {
  display: grid;
  gap: 6px;
}

.stat strong {
  color: var(--ink);
  font-size: clamp(2.2rem, 4.2vw, 4rem);
  font-weight: 900;
  line-height: 0.9;
}

.stat span {
  color: var(--ink);
  font-size: clamp(0.76rem, 1.05vw, 0.9rem);
  font-weight: 700;
  line-height: 1.3;
  max-width: 11rem;
}

.engine {
  position: relative;
  padding: clamp(86px, 11vw, 150px) 0;
  overflow: hidden;
  background-image: url("assets/ourbg.jpg");
  background-size: cover;
  background-position: top;
  background-repeat: no-repeat;
}

.engine-curve {
  position: absolute;
  top: 8%;
  left: 50%;
  width: min(1400px, 140vw);
  height: 70%;
  transform: translateX(-50%);
  border: 1px solid rgba(25, 31, 86, 0.07);
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}

.engine .section-shell {
  position: relative;
  z-index: 1;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 58px;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.service-card {
  position: relative;
  display: grid;
  min-height: 230px;
  align-content: start;
  gap: 18px;
  padding: 34px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.service-card::after {
  content: "";
  position: absolute;
  top: 32px;
  right: 34px;
  width: 28px;
  height: 28px;
  background:
    linear-gradient(var(--coral), var(--coral)) center / 2px 100% no-repeat,
    linear-gradient(90deg, var(--coral), var(--coral)) center / 100% 2px
      no-repeat;
  opacity: 0.35;
  transform: rotate(25deg);
}
.mt-0 {
  margin-top: 0;
}
.mt-10 {
  margin-top: 10px;
}
.mt-20 {
  margin-top: 20px;
}
.mt-30 {
  margin-top: 30px;
}
.mt-40 {
  margin-top: 40px;
}

.service-card span {
  color: rgb(217 81 72);
  font-size: 1.65rem;
  font-weight: 900;
}

.service-card p {
  font-size: 0.86rem;
}

.results {
  padding: clamp(76px, 10vw, 124px) 0;
  border-top: 1px solid rgba(217, 81, 72, 0.12);
  background-image: url("assets/ourbg.jpg");
  background-size: cover;
  background-position: bottom;
  background-repeat: no-repeat;
  width: 100%;
}

.results-heading {
  display: grid;
  gap: 10px;
}

.results-heading h2 {
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 900;
  line-height: 0.98;
  color: var(--ink);
}

.results-eyebrow {
  margin: 0;
  color: var(--coral);
  font-size: clamp(0.62rem, 1vw, 0.78rem);
  font-weight: 700;
  letter-spacing: 0.14em;
  line-height: 1.4;
  text-transform: uppercase;
}

.result-slider {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(16px, 2.4vw, 28px);
  margin-top: clamp(32px, 4vw, 48px);
}

.result-card {
  position: relative;
  display: block;
  min-height: clamp(360px, 34vw, 520px);
  overflow: hidden;
  border-radius: 20px;
  box-shadow: 0 18px 36px rgba(50, 31, 16, 0.1);
  transition:
    transform 220ms ease,
    box-shadow 220ms ease;
}

.result-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0) 52%,
    rgba(0, 0, 0, 0.72) 100%
  );
  pointer-events: none;
}

.result-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 44px rgba(50, 31, 16, 0.14);
}

.result-card img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: clamp(360px, 34vw, 520px);
  object-fit: cover;
}

.result-card-label {
  position: absolute;
  left: clamp(18px, 2vw, 28px);
  bottom: clamp(18px, 2vw, 28px);
  z-index: 1;
  color: #fff;
  font-size: clamp(1.15rem, 1.8vw, 1.65rem);
  font-weight: 800;
  line-height: 1.1;
}

.testimonials {
  padding: clamp(80px, 11vw, 148px) 0;
  background-image: url("assets/ledbg.png");
  background-size: cover;
  background-position: bottom;
  background-repeat: no-repeat;
  height: 100%;
  width: 100%;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(28px, 8vw, 110px);
  /* max-width: 880px; */
  margin: 54px auto 0;
  padding: 0px 80px;
}

.quote-card {
  display: grid;
  gap: 18px;
  padding: 0 6px;
}

.quote-card h3 {
  font-size: 1.15rem;
}

.quote-card p {
  font-size: 0.92rem;
}

.final-cta {
  position: relative;
  overflow: hidden;
  padding: clamp(96px, 13vw, 165px) 0 54px;
  text-align: center;
}

.final-cta-curve {
  position: absolute;
  inset: 0;
  background:
    url("assets/herobg.jpg") center bottom / cover no-repeat,
    var(--cream);
  opacity: 0.55;
  pointer-events: none;
}

.final-cta-inner {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: center;
  gap: 18px;
}

.final-cta h2 {
  /* max-width: 820px; */
}

.final-cta h3 {
  font-size: 2.5rem;
  margin-top: 20px;
  font-weight: 800;
  line-height: 1.1;
  text-align: center;
  margin-bottom: 20px;
}
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 20px 42px;
  justify-content: center;
  margin-top: 42px;
  color: var(--ink-soft);
  font-size: 0.78rem;
  font-weight: 600;
}

.footer-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.careers-anchor {
  height: 0;
  margin: 0;
  padding: 0;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 700ms ease,
    transform 700ms ease;
}
/* .service-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(217, 81, 72, 0.25);
  background-color: #d95148;
} */

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-ltr {
  opacity: 0;
  transform: translateX(-48px);
  transition:
    opacity 700ms ease var(--reveal-delay, 0ms),
    transform 700ms ease var(--reveal-delay, 0ms);
}

.reveal-ltr.is-visible {
  opacity: 1;
  transform: translateX(0);
}

.case-study-about-title.reveal-ltr {
  --reveal-delay: 0ms;
}

.case-study-about-details > .case-study-about-heading.reveal-ltr {
  --reveal-delay: 140ms;
}

.case-study-about-details > .case-study-about-block.reveal-ltr:nth-child(2) {
  --reveal-delay: 260ms;
}

.case-study-about-details > .case-study-about-block.reveal-ltr:nth-child(3) {
  --reveal-delay: 380ms;
}

.case-study-about-details > .case-study-about-block.reveal-ltr:nth-child(4) {
  --reveal-delay: 500ms;
}
/* .reveal.is-visible :hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(217, 81, 72, 0.25);
  background-color: red;
} */

@media (max-width: 900px) {
  .site-header {
    grid-template-columns: 1fr auto;
    width: min(100% - 24px, 1180px);
  }

  .header-cta {
    display: none;
  }

  .menu-toggle {
    display: block;
    justify-self: end;
  }

  .main-nav {
    grid-column: 1 / -1;
    position: absolute;
    top: 72px;
    right: 0;
    display: grid;
    min-width: 230px;
    gap: 0;
    padding: 14px;
    background: rgba(255, 250, 246, 0.94);
    border: 1px solid var(--line);
    border-radius: 24px;
    box-shadow: var(--shadow);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition:
      opacity 180ms ease,
      transform 180ms ease;
  }

  .main-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .main-nav a {
    padding: 13px 12px;
  }

  .hero {
    min-height: auto;
    padding-top: 56px;
  }

  .curved-carousel {
    height: clamp(280px, 52vw, 380px);
  }

  .curved-carousel__stage {
    perspective: 420px;
    top: 52%;
  }

  .split-section,
  .service-grid,
  .result-slider,
  .testimonial-grid {
    grid-template-columns: 1fr;
  }

  #proof.split-section {
    grid-template-columns: 1fr !important;
    gap: clamp(28px, 5vw, 40px) !important;
  }

  .story {
    padding-top: clamp(48px, 8vw, 76px);
    overflow: hidden;
  }

  .story .section-copy {
    max-width: 100%;
  }

  .story .section-copy h2 {
    font-size: clamp(2rem, 9vw, 2.75rem);
    overflow-wrap: break-word;
  }

  .story .image-card {
    min-height: 0;
    width: 100%;
    max-width: min(100%, 340px);
    aspect-ratio: 3 / 4;
    margin-inline: auto;
    justify-self: center;
    background-size: contain;
  }

  .stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 28px 0;
  }

  .stat:nth-child(2)::after {
    display: none;
  }

  .stat:nth-child(-n + 2) {
    padding-bottom: 28px;
    border-bottom: 1px solid var(--line);
  }

  .stat:nth-child(n + 3) {
    padding-top: 4px;
  }

  .stat:nth-child(odd)::after {
    display: block;
  }

  .stat:nth-child(even)::after {
    display: none;
  }

  .result-slider {
    grid-template-columns: 1fr;
    gap: 18px;
  }
}

@media (max-width: 560px) {
  .section-shell {
    width: min(100% - 24px, 1180px);
  }

  .hero-copy {
    gap: 18px;
  }

  .capability-strip-list {
    flex-wrap: wrap;
    justify-content: center;
    row-gap: 12px;
  }

  .story,
  .engine,
  .results,
  .testimonials {
    padding-left: 0;
    padding-right: 0;
  }

  .story .section-copy h2 {
    font-size: clamp(1.85rem, 8.8vw, 2.35rem);
    line-height: 1.02;
  }

  .story .image-card {
    max-width: min(100%, 300px);
    aspect-ratio: 4 / 5;
  }

  .stats {
    gap: 0;
  }

  .stat {
    padding-left: 14px;
    padding-right: 14px;
  }

  .service-card {
    min-height: 210px;
    padding: 28px 22px;
  }

  .footer-links {
    display: grid;
  }
}

.case-study-page {
  background: var(--cream);
}

.case-study-hero {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  height: 100vh;
  overflow: hidden;
}

.case-study-header {
  position: absolute;
  top: 0;
  left: 50%;
  z-index: 20;
  width: min(1180px, calc(100% - 32px));
  background: transparent;
  transform: translateX(-50%);
}

.case-study-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: clamp(28px, 4vw, 44px);
  padding: clamp(110px, 14vw, 140px) clamp(32px, 5vw, 72px)
    clamp(40px, 6vw, 88px);
  background: #53ad33;
  color: #111;
}

.case-study-brand {
  margin: 0;
  color: #111;
  font-size: clamp(0.95rem, 1.4vw, 1.15rem);
  font-weight: 600;
  line-height: 1.2;
  text-transform: uppercase;
}

.case-study-title {
  margin: 0;
  color: #fff;
  font-size: clamp(2.4rem, 5.2vw, 4.6rem);
  font-weight: 900;
  line-height: 0.98;
  text-transform: uppercase;
}

.case-study-block {
  display: grid;
  gap: 14px;
}

.case-study-label {
  margin: 0;
  color: #111;
  font-size: clamp(0.95rem, 1.4vw, 1.15rem);
  font-weight: 600;
  line-height: 1.2;
  text-transform: uppercase;
}

.case-study-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.case-study-tags li {
  padding: 10px 18px;
  border-radius: 999px;
  font-size: clamp(0.72rem, 1vw, 0.82rem);
  font-weight: 600;
  line-height: 1.2;
  text-transform: uppercase;
}

.case-study-tags--outline li {
  color: #fff;
  border: 1.5px solid #fff;
  background: transparent;
}

.case-study-tags--filled li {
  color: #111;
  background: #fff;
}

.case-study-media {
  min-height: clamp(320px, 50vh, 720px);
}

.case-study-media img,
.case-study-media video {
  display: block;
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
}

.case-study-about {
  background:
    url("assets/caseBG.jpg") center / cover no-repeat,
    #f3f3f3;
  padding: clamp(72px, 9vw, 132px) 0;
}

.case-study-about--dettol {
  background:
    url("assets/caseBG.jpg") center / cover no-repeat,
    #fff;
}

.case-study-about-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr) minmax(0, 1.15fr);
  gap: clamp(28px, 4vw, 56px);
  align-items: start;
}

.case-study-about--dettol .case-study-about-grid {
  grid-template-columns: minmax(0, 0.38fr) minmax(0, 0.62fr);
  align-items: center;
  gap: clamp(32px, 5vw, 72px);
}

.case-study-about-title {
  margin: 0;
  color: #111;
  font-size: clamp(2.75rem, 6.5vw, 5.25rem);
  font-weight: 900;
  line-height: 0.92;
  text-transform: uppercase;
}

.case-study-about--dettol .case-study-about-title {
  color: #00843d;
  font-size: clamp(3.5rem, 9vw, 7.5rem);
  font-weight: 800;
  line-height: 0.95;
  text-transform: none;
}

.case-study-about-heading {
  margin: 0 0 clamp(18px, 2.4vw, 28px);
  color: #111;
  font-size: clamp(1.05rem, 1.5vw, 1.3rem);
  font-weight: 500;
  line-height: 1.2;
}

.case-study-about--dettol .case-study-about-heading,
.case-study-about--dettol .case-study-about-subheading {
  color: #00843d;
}

.case-study-hero--dettol .case-study-content {
  background: #53ad33;
}

.case-study-hero--cetaphil .case-study-content {
  background: #5b9ec4;
}

.case-study-about--cetaphil {
  background:
    url("assets/caseBG.jpg") center / cover no-repeat,
    #f7fbfd;
}

.case-study-about--cetaphil .case-study-about-grid {
  grid-template-columns: minmax(0, 0.38fr) minmax(0, 0.62fr);
  align-items: center;
  gap: clamp(32px, 5vw, 72px);
}

.case-study-about--cetaphil .case-study-about-title {
  color: #1a5f7a;
  font-size: clamp(3.5rem, 9vw, 4.5rem);
  font-weight: 800;
  line-height: 0.95;
  text-transform: none;
}

.case-study-about--cetaphil .case-study-about-heading,
.case-study-about--cetaphil .case-study-about-subheading {
  color: #1a5f7a;
}

.case-study-hero--toffeeman .case-study-content {
  background: #c9742f;
}

.case-study-about--toffeeman {
  background:
    url("assets/caseBG.jpg") center / cover no-repeat,
    #fffaf6;
}

.case-study-about--toffeeman .case-study-about-grid {
  grid-template-columns: minmax(0, 0.38fr) minmax(0, 0.62fr);
  align-items: center;
  gap: clamp(32px, 5vw, 72px);
}

.case-study-about--toffeeman .case-study-about-title {
  color: #b8621a;
  font-size: clamp(2.4rem, 6vw, 4.5rem);
  font-weight: 800;
  line-height: 0.95;
  text-transform: none;
}

.case-study-about--toffeeman .case-study-about-heading,
.case-study-about--toffeeman .case-study-about-subheading {
  color: #b8621a;
}

.case-study-about-details {
  display: grid;
  gap: clamp(22px, 3vw, 32px);
}

.case-study-about-block {
  display: grid;
  gap: 10px;
}

.case-study-about-subheading {
  margin: 0;
  font-size: clamp(0.95rem, 1.2vw, 1.05rem);
  font-weight: 700;
  line-height: 1.3;
}

.case-study-about-copy p,
.case-study-about-block p {
  margin: 0;
  color: #111;
  font-size: clamp(0.82rem, 1vw, 0.92rem);
  line-height: 1.8;
}

.case-study-about-list {
  margin: 0;
  padding-left: 1.1rem;
  color: #111;
  font-size: clamp(0.82rem, 1vw, 0.92rem);
  line-height: 1.8;
}

.case-study-about-list li + li {
  margin-top: 6px;
}

.case-study-about-copy--secondary {
  padding-top: clamp(2.4rem, 4vw, 3.4rem);
}

@media (max-width: 900px) {
  .case-study-about-grid,
  .case-study-about--dettol .case-study-about-grid,
  .case-study-about--cetaphil .case-study-about-grid,
  .case-study-about--toffeeman .case-study-about-grid {
    grid-template-columns: 1fr;
    gap: clamp(24px, 5vw, 40px);
  }

  .case-study-about-copy--secondary {
    padding-top: 0;
  }

  .case-study-hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .case-study-header {
    width: min(100% - 24px, 1180px);
  }

  .case-study-content {
    order: 1;
    min-height: auto;
    padding-top: clamp(96px, 18vw, 120px);
  }

  .case-study-media {
    order: 2;
    min-height: clamp(280px, 52vw, 420px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .curved-carousel {
    cursor: default;
  }

  .brand-marquee-track {
    animation: none;
  }

  .reveal-ltr {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

.contact-page {
  background: var(--cream);
}

.contact-hero {
  background:
    url("assets/herobg.jpg") center top / cover no-repeat,
    var(--cream);
  padding-bottom: clamp(40px, 6vw, 72px);
}

.contact-hero-inner {
  display: grid;
  justify-items: center;
  text-align: center;
  gap: 16px;
  padding: clamp(44px, 6vw, 70px) 0 clamp(8px, 2vw, 16px);
}

.contact-hero-inner h1 {
  font-size: clamp(2rem, 5vw, 3.4rem);
  font-weight: 800;
  line-height: 1.1;
}

.contact-hero-text {
  max-width: 740px;
  font-size: clamp(0.88rem, 1.2vw, 1rem);
}

.contact-content {
  padding: clamp(34px, 5vw, 56px) 0 clamp(78px, 10vw, 130px);
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(22px, 4vw, 38px);
  align-items: start;
}

.contact-grid--form-only {
  grid-template-columns: minmax(320px, 1fr) minmax(0, 1.08fr);
  justify-content: space-between;
  gap: clamp(28px, 4vw, 56px);
}

.contact-info-card,
.contact-form-card {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.62);
  backdrop-filter: blur(4px);
}

.contact-info-card {
  display: grid;
  gap: 16px;
  padding: clamp(28px, 4vw, 44px);
}

.contact-info-card h2 {
  font-size: clamp(1.9rem, 4vw, 3rem);
}

.contact-info-list {
  display: grid;
  gap: 10px;
  margin-top: 8px;
}

.contact-info-list p {
  color: var(--ink);
}

.contact-form-card {
  display: grid;
  gap: 14px;
  padding: clamp(26px, 3vw, 36px);
  border-radius: 30px;
  box-shadow: 0 22px 50px rgba(25, 31, 86, 0.13);
  background: rgba(255, 255, 255, 0.9);
}

.contact-form-card label {
  color: var(--ink);
  font-size: 0.74rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.contact-form-card input,
.contact-form-card select,
.contact-form-card textarea {
  width: 100%;
  border: 1px solid rgba(25, 31, 86, 0.16);
  border-radius: 10px;
  padding: 10px 12px;
  color: var(--ink);
  font-family: inherit;
  font-size: 0.88rem;
  background: #fff;
}

.contact-form-card textarea {
  margin-top: 2px;
  border-radius: 8px;
  min-height: 110px;
  resize: vertical;
}

.contact-form-card .btn {
  margin-top: 0;
  min-height: 48px;
  min-width: 130px;
  font-size: 0.86rem;
  border-radius: 999px;
  align-self: end;
}

.contact-form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.contact-field {
  display: grid;
  gap: 6px;
}

.contact-form-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  align-items: center;
  gap: 12px;
  margin-top: 8px;
}

.contact-form-status {
  min-height: 22px;
  margin: 0;
  font-size: 0.84rem;
  font-weight: 500;
  color: var(--ink-soft);
}

.contact-form-status.is-success {
  color: #1a7f37;
}

.contact-form-status.is-error {
  color: var(--coral-dark);
}

.thank-you-page {
  min-height: 100vh;
}

.thank-you-page main {
  min-height: 100vh;
}

.thank-you-page .contact-hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.thank-you-page .contact-hero-inner {
  flex: 1;
  display: grid;
  align-content: center;
  padding-bottom: clamp(48px, 8vw, 90px);
}

.contact-illustration {
  display: grid;
  align-self: center;
  justify-self: center;
}

.contact-illustration img {
  width: min(100%, 560px);
  height: auto;
  display: block;
}

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

  .contact-illustration img {
    width: min(100%, 460px);
  }

  .contact-form-row {
    grid-template-columns: 1fr;
  }
}

/* ── Social hero ── */

.social-hero {
  --social-navy: #20285c;
  --social-coral: #ef4f4a;
  --social-card: rgba(180, 180, 180, 0.35);
  position: relative;
  min-height: 100vh;
  width: 100%;
  overflow: hidden;
  background: url("assets/socialpage/herobg.jpg") center / cover no-repeat;
  color: var(--social-navy);
}

.social-hero__header {
  position: relative;
  z-index: 10;
}

.social-hero__nav {
  color: var(--social-navy);
}

.social-hero__header-cta {
  color: var(--social-navy);
  border-color: var(--social-navy);
}

.social-hero__layout {
  position: relative;
  z-index: 4;
  display: flex;
  align-items: center;
  width: min(1280px, calc(100% - clamp(32px, 6vw, 96px)));
  min-height: calc(100vh - 88px);
  margin: 0 auto;
  padding: clamp(40px, 6vw, 88px) 0 clamp(48px, 6vw, 80px);
}

.social-hero__copy {
  position: relative;
  z-index: 1;
  width: min(100%, 42rem);
  padding-top: clamp(16px, 3vw, 48px);
}

.social-hero__eyebrow {
  margin: 0 0 clamp(18px, 2.5vw, 28px);
  color: var(--social-coral);
  font-size: clamp(0.68rem, 1vw, 0.78rem);
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.social-hero__title {
  margin: 0 0 clamp(22px, 3vw, 36px);
  color: var(--social-navy);
  font-size: clamp(2.75rem, 6.5vw, 5.5rem);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.03em;
}

.social-hero__title-line {
  display: block;
}

.social-hero__accent {
  color: var(--social-coral);
}

.social-hero__description {
  max-width: 30rem;
  margin: 0 0 clamp(28px, 3.5vw, 40px);
  color: var(--social-navy);
  font-size: clamp(0.92rem, 1.35vw, 1.02rem);
  line-height: 1.75;
  opacity: 0.92;
}

.social-hero__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 clamp(22px, 3vw, 30px);
  background: var(--social-coral);
  border-radius: 999px;
  color: #fff;
  font-size: clamp(0.88rem, 1.2vw, 0.98rem);
  font-weight: 600;
  transition:
    transform 220ms ease,
    box-shadow 220ms ease,
    background-color 220ms ease;
}

.social-hero__cta:hover {
  background: #e64540;
  box-shadow: 0 14px 32px rgba(239, 79, 74, 0.28);
  color: #fff;
  transform: translateY(-2px);
}

.social-hero__cards {
  position: absolute;
  top: clamp(72px, 10vh, 120px);
  right: clamp(100px, -2vw, 24px);
  bottom: clamp(-80px, -8vh, -24px);
  z-index: 2;
  display: flex;
  justify-content: flex-end;
  gap: clamp(20px, 3vw, 36px);
  width: min(62%, 760px);
  /* padding: 0 clamp(8px, 2vw, 24px) clamp(40px, 6vw, 80px); */
  transform: rotate(340deg);
  transform-origin: center center;
  mask-image: linear-gradient(
    to right,
    transparent 0%,
    rgba(0, 0, 0, 0.2) 14%,
    #000 30%
  );
  -webkit-mask-image: linear-gradient(
    to right,
    transparent 0%,
    rgba(0, 0, 0, 0.2) 14%,
    #000 30%
  );
  height: 150vh;
  top: -10%;
}

.social-hero__column {
  flex: 0 0 clamp(140px, 15vw, 190px);
  height: 100%;
  overflow: hidden;
}

.social-hero__track {
  display: flex;
  flex-direction: column;
  gap: clamp(18px, 2.5vw, 28px);
  will-change: transform;
}

.social-hero__column--up .social-hero__track {
  animation: social-marquee-up 28s linear infinite;
}

.social-hero__column--down .social-hero__track {
  animation: social-marquee-down 32s linear infinite;
}

.social-hero__card {
  position: relative;
  flex-shrink: 0;
  width: 100%;
  aspect-ratio: 3 / 4.2;
  overflow: hidden;
  background: rgba(200, 200, 200, 0.4);
  border-radius: clamp(16px, 1.8vw, 24px);
  opacity: 0.72;
  pointer-events: auto;
  transition:
    transform 350ms ease,
    opacity 350ms ease;
}

.social-hero__card img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: inherit;
}

.social-hero__card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: rgba(247, 240, 232, 0.18);
  pointer-events: none;
  transition: opacity 350ms ease;
}

.social-hero__card:hover {
  opacity: 1;
  transform: scale(1.03);
  z-index: 2;
}

.social-hero__card:hover::after {
  opacity: 0;
}

@keyframes social-marquee-up {
  from {
    transform: translateY(0);
  }

  to {
    transform: translateY(-50%);
  }
}

@keyframes social-marquee-down {
  from {
    transform: translateY(-50%);
  }

  to {
    transform: translateY(0);
  }
}

@media (max-width: 1100px) {
  .social-hero__cards {
    width: min(50%, 440px);
    opacity: 0.7;
    top: clamp(88px, 12vh, 140px);
  }
}

@media (max-width: 900px) {
  .social-hero__layout {
    min-height: auto;
    padding-top: clamp(24px, 6vw, 40px);
    padding-bottom: clamp(56px, 10vw, 80px);
    text-align: center;
  }

  .social-hero__copy {
    max-width: none;
    margin: 0 auto;
    padding-top: 0;
  }

  .social-hero__description {
    max-width: 36rem;
    margin-left: auto;
    margin-right: auto;
  }

  .social-hero__cards {
    display: none;
  }
}

@media (max-width: 640px) {
  .social-hero__title {
    font-size: clamp(2.35rem, 11vw, 3.2rem);
  }

  .social-hero__cta {
    width: 100%;
    max-width: 20rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .social-hero__column--up .social-hero__track,
  .social-hero__column--down .social-hero__track {
    animation: none;
  }
}

/* ── Social CTA review ── */

.social-cards-review {
  --social-navy: #20285c;
  --social-coral: #ef4f4a;
  background: url("assets/socialpage/reviewcardbg.jpg") center / cover no-repeat;
  color: var(--social-navy);
}

.social-cards-review__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: clamp(20px, 3vw, 32px);
  width: min(900px, calc(100% - clamp(32px, 6vw, 64px)));
  margin: 0 auto;
  padding: clamp(72px, 10vw, 120px) 0;
  padding-bottom: 0px;
  text-align: center;
}

.social-cards-review__title {
  margin: 0;
  color: var(--social-navy);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.03em;
}
.social-cards-review__image {
  height: 600px;
}
.social-cards-review__accent {
  color: var(--social-coral);
}

.social-cards-review__link {
  color: var(--social-navy);
  font-size: clamp(1rem, 1.6vw, 1.2rem);
  font-weight: 500;
  line-height: 1.5;
  transition: opacity 200ms ease;
}

.social-cards-review__link:hover {
  opacity: 0.72;
  color: var(--social-navy);
}

/* ── Social What We Do ── */

.social-what-we-do {
  --social-navy: #20285c;
  --social-coral: #ef4f4a;
  --social-muted: #5a6285;
  background: url("assets/socialpage/b4.jpg") center top / cover no-repeat;
  color: var(--social-navy);
}

.social-what-we-do__inner {
  width: min(1180px, calc(100% - clamp(32px, 6vw, 80px)));
  margin: 0 auto;
  padding: clamp(72px, 9vw, 110px) 0 clamp(80px, 10vw, 120px);
}

.social-what-we-do__intro {
  max-width: 34rem;
  margin-bottom: clamp(40px, 5vw, 56px);
}

.social-what-we-do__eyebrow {
  margin: 0 0 clamp(16px, 2vw, 24px);
  color: var(--social-coral);
  font-size: clamp(0.68rem, 1vw, 0.78rem);
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.social-what-we-do__title {
  margin: 0 0 clamp(20px, 2.5vw, 28px);
  color: var(--social-navy);
  font-size: clamp(2.2rem, 4.8vw, 3.6rem);
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: -0.03em;
}

.social-what-we-do__title span {
  display: block;
  margin-bottom: 15px;
}

.social-what-we-do__accent {
  color: var(--social-coral);
}

.social-what-we-do__lead {
  max-width: 30rem;
  margin: 0;
  color: var(--social-muted);
  font-size: clamp(0.88rem, 1.2vw, 0.96rem);
  line-height: 1.7;
}

.social-what-we-do__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(16px, 2vw, 24px);
}

.social-what-we-do__card {
  display: flex;
  flex-direction: column;
  gap: clamp(14px, 1.8vw, 18px);
  min-height: clamp(220px, 24vw, 260px);
  padding: clamp(24px, 2.8vw, 32px);
  background: #fff;
  border-radius: clamp(14px, 1.5vw, 20px);
  box-shadow: 0 10px 36px rgba(32, 40, 92, 0.08);
}

.social-what-we-do__card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

.social-what-we-do__number {
  color: var(--social-navy);
  font-size: clamp(1.6rem, 2.4vw, 2rem);
  font-weight: 800;
  line-height: 1;
}

.social-what-we-do__icon {
  display: inline-flex;
  flex-shrink: 0;
  width: clamp(28px, 3vw, 34px);
  height: clamp(28px, 3vw, 34px);
  color: var(--social-coral);
}

.social-what-we-do__icon svg {
  width: 100%;
  height: 100%;
}

.social-what-we-do__card-title {
  margin: 0;
  color: var(--social-navy);
  font-size: clamp(0.82rem, 1.1vw, 0.92rem);
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.social-what-we-do__card-text {
  margin: 0;
  color: var(--social-muted);
  font-size: clamp(0.78rem, 1vw, 0.86rem);
  line-height: 1.65;
}

@media (max-width: 900px) {
  .social-what-we-do__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .social-what-we-do__grid {
    grid-template-columns: 1fr;
  }

  .social-what-we-do__intro {
    max-width: none;
  }
}

/* ── Social Platforms ── */

.social-platforms {
  --social-navy: #20285c;
  --social-coral: #ef4f4a;
  --social-muted: #5a6285;
  background: url("assets/socialpage/bg5.jpg") center / cover no-repeat;
  color: var(--social-navy);
}

.social-platforms__inner {
  width: min(1180px, calc(100% - clamp(32px, 6vw, 80px)));
  margin: 0 auto;
  padding: clamp(72px, 9vw, 110px) 0 clamp(80px, 10vw, 120px);
}

.social-platforms__intro {
  max-width: 42rem;
  margin: 0 auto clamp(36px, 5vw, 56px);
  text-align: center;
}

.social-platforms__eyebrow {
  margin: 0 0 clamp(16px, 2vw, 24px);
  color: var(--social-coral);
  font-size: clamp(0.68rem, 1vw, 0.78rem);
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.social-platforms__title {
  margin: 0 0 clamp(20px, 2.5vw, 28px);
  color: var(--social-navy);
  font-size: clamp(2.2rem, 4.8vw, 3.6rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.03em;
}

.social-platforms__accent {
  color: var(--social-coral);
}

.social-platforms__title .social-platforms__accent {
  display: block;
}

.social-platforms__lead {
  max-width: 42rem;
  margin: 0 auto;
  color: var(--social-muted);
  font-size: clamp(0.88rem, 1.2vw, 0.96rem);
  line-height: 1.7;
}

.social-platforms__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(18px, 2.2vw, 28px);
  align-items: stretch;
}

.social-platforms__card {
  display: flex;
  flex-direction: column;
  padding: clamp(28px, 3.2vw, 40px);
  background: #fff;
  border-radius: clamp(28px, 3vw, 36px);
  box-shadow: 0 10px 36px rgba(32, 40, 92, 0.08);
}

.social-platforms__card-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: clamp(14px, 1.8vw, 20px);
  height: 100%;
  text-align: left;
}

.social-platforms__card-logo {
  display: inline-flex;
  width: clamp(36px, 4vw, 44px);
  height: clamp(36px, 4vw, 44px);
  flex-shrink: 0;
}

.social-platforms__card-logo svg,
.social-platforms__card-logo img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
}

.social-platforms__card-headline {
  margin: 0;
  color: var(--social-navy);
  font-size: clamp(1.05rem, 1.45vw, 1.35rem);
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: -0.01em;
}

.social-platforms__card-text {
  margin: 0;
  color: var(--social-navy);
  font-size: clamp(0.82rem, 1vw, 0.9rem);
  line-height: 1.6;
}

.social-platforms__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 12px;
  margin: auto 0 0;
  padding: clamp(8px, 1vw, 14px) 0 0;
  list-style: none;
}

.social-platforms__tags li {
  padding: 8px 14px;
  background: #f7f4f1;
  border-radius: 999px;
  color: var(--social-navy);
  font-size: clamp(0.7rem, 0.9vw, 0.78rem);
  font-weight: 600;
  line-height: 1.2;
  white-space: nowrap;
}

.social-platforms__card-visual {
  min-height: clamp(120px, 14vw, 160px);
  margin-top: auto;
  background: #f3ebe3;
  border-radius: clamp(10px, 1.2vw, 14px);
}

@media (max-width: 992px) {
  .social-platforms__grid {
    grid-template-columns: 1fr;
    max-width: 420px;
    margin: 0 auto;
  }
}

@media (max-width: 900px) {
  .social-platforms__content {
    width: 100%;
    max-width: 36rem;
  }
}

@media (max-width: 640px) {
  .social-platforms__card-visual {
    min-height: 160px;
  }
}

/* ── Social team ── */

.social-team {
  --social-navy: #20285c;
  --social-coral: #ef4f4a;
  width: 100%;
  background: #f9f3eb;
  color: var(--social-navy);
}

.social-team__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: min(1120px, calc(100% - clamp(24px, 5vw, 72px)));
  margin: 0 auto;
  padding: clamp(72px, 9vw, 110px) 0 clamp(56px, 7vw, 88px);
  text-align: center;
  padding-bottom: 0;
}

.social-team__title {
  margin: 0;
  max-width: 28ch;
  color: var(--social-navy);
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
}

.social-team__accent {
  display: block;
  color: var(--social-coral);
}

.social-team__lead {
  max-width: 42rem;
  margin: clamp(20px, 2.8vw, 32px) auto 0;
  color: var(--social-navy);
  font-size: clamp(0.88rem, 1.15vw, 1rem);
  line-height: 1.7;
}

.social-team__tagline {
  margin: clamp(18px, 2.2vw, 28px) 0 0;
  color: var(--social-navy);
  font-size: clamp(0.92rem, 1.2vw, 1.05rem);
  font-weight: 700;
  line-height: 1.4;
}

.social-team__visual {
  width: 100%;
  max-width: 980px;
  margin-top: clamp(36px, 5vw, 56px);
}

.social-team__visual img {
  display: block;
  width: 100%;
  height: auto;
}

/* ── Social footer CTA ── */

.social-footer-cta {
  --social-navy: #20285c;
  --social-coral: #ef4f4a;
  background: url("assets/socialpage/footer.jpg") center / cover no-repeat;
  color: var(--social-navy);
}

.social-footer-cta__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: clamp(18px, 2.5vw, 28px);
  width: min(920px, calc(100% - clamp(32px, 6vw, 64px)));
  margin: 0 auto;
  padding: clamp(80px, 11vw, 130px) 0;
  text-align: center;
}

.social-footer-cta__eyebrow {
  margin: 0;
  color: var(--social-coral);
  font-size: clamp(0.68rem, 1vw, 0.78rem);
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.social-footer-cta__title {
  margin: 0;
  color: var(--social-navy);
  font-size: clamp(2.2rem, 5.5vw, 4rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.03em;
}

.social-footer-cta__accent {
  color: var(--social-coral);
}

.social-footer-cta__tagline {
  max-width: 36rem;
  margin: 0;
  color: #5a6285;
  font-size: clamp(0.82rem, 1.2vw, 0.95rem);
  font-weight: 500;
  line-height: 1.65;
}

.social-footer-cta__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 52px;
  margin-top: clamp(4px, 1vw, 8px);
  padding: 0 clamp(22px, 3vw, 30px);
  background: var(--social-coral);
  border-radius: 999px;
  color: #fff;
  font-size: clamp(0.88rem, 1.2vw, 0.98rem);
  font-weight: 600;
  text-decoration: none;
  transition:
    transform 220ms ease,
    box-shadow 220ms ease,
    background-color 220ms ease;
}

.social-footer-cta__button:hover {
  background: #e64540;
  box-shadow: 0 14px 32px rgba(239, 79, 74, 0.28);
  color: #fff;
  transform: translateY(-1px);
}

@media (max-width: 576px) {
  .social-footer-cta__button {
    width: 100%;
  }
}

/* ── AI Hero ── */

.ai-hero-page {
  min-height: 100vh;
  background: #f2efe9;
  color: #212657;
}

.ai-hero-wrap {
  width: 100%;
  padding: 24px 32px 40px;
  background: url("assets/aipage/herobg.jpg") center / cover no-repeat;
}

.ai-hero-wrap__inner {
  max-width: 1240px;
  margin: 0 auto;
}

.ai-hero-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 44px;
}

.ai-hero-logo img {
  width: 172px;
  height: auto;
  display: block;
}

.ai-hero-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.ai-hero-nav a {
  font-size: 11px;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  text-decoration: none;
  color: #151515;
  font-weight: 500;
}

.ai-hero-contact {
  border: 2px solid #23284b;
  border-radius: 12px;
  padding: 12px 22px;
  text-decoration: none;
  color: #23284b;
  font-size: 14px;
  line-height: 1;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.ai-hero-main {
  display: grid;
  grid-template-columns: 1fr 520px;
  gap: 52px;
  align-items: center;
  margin-top: 6.25rem;
}

.ai-hero-title {
  margin: 0;
  font-weight: 700;
  font-size: clamp(44px, 6.2vw, 70px);
  line-height: 1.05;
  letter-spacing: -0.02em;
}

.ai-hero-title .accent {
  color: #e95956;
}

.ai-hero-copy p {
  margin: 22px 0 0;
  max-width: 630px;
  font-size: 17px;
  line-height: 1.34;
  color: #2f3257;
}

.ai-hero-copy p + p {
  margin-top: 16px;
}

.ai-hero-cta {
  margin-top: 30px;
  background: #ea5554;
  color: #fff;
  border: 0;
  border-radius: 10px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 15px 26px;
  font-weight: 600;
  font-size: 18px;
}

.ai-hero-visual img {
  width: 100%;
  max-width: 520px;
  height: auto;
  display: block;
}

@media (max-width: 1200px) {
  .ai-hero-main {
    grid-template-columns: 1fr 430px;
    gap: 36px;
  }

  .ai-hero-copy p {
    font-size: 16px;
  }
}

@media (max-width: 992px) {
  .ai-hero-wrap {
    padding: 20px 20px 32px;
  }

  .ai-hero-header {
    flex-wrap: wrap;
    margin-bottom: 28px;
  }

  .ai-hero-nav {
    order: 3;
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
    gap: 16px 20px;
  }

  .ai-hero-main {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .ai-hero-copy p {
    font-size: 22px;
  }

  .ai-hero-visual {
    max-width: 480px;
    width: 100%;
    margin: 0 auto;
  }
}

@media (max-width: 576px) {
  .ai-hero-title {
    font-size: 38px;
  }

  .ai-hero-copy p {
    font-size: 18px;
  }

  .ai-hero-cta {
    width: 100%;
    justify-content: center;
    font-size: 18px;
  }
}

.ai-benefits {
  background:
    url("assets/aipage/popupbg.png") center / cover no-repeat,
    #f5efe7;
  padding: clamp(20px, 4vw, 52px) 0 clamp(34px, 5vw, 72px);
}

.ai-benefits__inner {
  width: min(1280px, calc(100% - clamp(24px, 6vw, 64px)));
  margin: 0 auto;
}

.ai-benefits__visual {
  display: block;
  width: min(100%, 1240px);
  margin: 0 auto;
  height: auto;
}

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

  .ai-benefits__inner {
    width: min(1100px, calc(100% - 20px));
  }
}

.ai-card-section {
  width: 100%;
  background:
    url("assets/aipage/cardsection.jpg") center / cover no-repeat,
    #f2ece4;
  padding: clamp(56px, 8vw, 96px) 0 clamp(62px, 8vw, 98px);
}

.ai-card-section__inner {
  width: min(1240px, calc(100% - clamp(24px, 5vw, 72px)));
  margin: 0 auto;
}

.ai-card-section__title {
  margin: 0;
  text-align: center;
  color: #1f2b6a;
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.02em;
}

.ai-card-section__title .accent {
  color: #e75a55;
}

.ai-trusted-card__brand-logo0 {
  height: 30px;
  width: auto;
  object-fit: contain;
  display: block;
  margin-bottom: 10px;
}

.ai-showcase {
  margin-top: clamp(30px, 4vw, 46px);
  display: grid;
  grid-template-columns: minmax(280px, 460px) 1fr;
  gap: clamp(16px, 2.4vw, 28px);
  align-items: stretch;
}

.ai-showcase__list {
  display: grid;
  gap: 6px;
  align-content: start;
}

.ai-showcase__item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  width: 100%;
  padding: 14px;
  border: 0;
  border-radius: 18px;
  background: transparent;
  text-align: left;
  font-family: inherit;
  cursor: pointer;
  transition:
    background-color 220ms ease,
    box-shadow 220ms ease,
    transform 220ms ease;
}

.ai-showcase__item:hover {
  background: rgba(255, 255, 255, 0.55);
}

.ai-showcase__item.is-active {
  background: #fff;
  box-shadow: 0 16px 34px rgba(31, 43, 106, 0.14);
}

.ai-showcase__thumb {
  width: 96px;
  height: 88px;
  border-radius: 12px;
  object-fit: cover;
  flex-shrink: 0;
  display: block;
}

.ai-showcase__text {
  display: grid;
  gap: 6px;
  padding-top: 2px;
}

.ai-showcase__title-text {
  color: #1f2b6a;
  font-size: clamp(0.95rem, 1.6vw, 1.08rem);
  font-weight: 700;
  line-height: 1.2;
}

.ai-showcase__desc {
  color: #4b547a;
  font-size: 0.8rem;
  line-height: 1.5;
}

.ai-showcase__stage {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  min-height: 320px;
  background: #dfe6ef;
  box-shadow: 0 24px 54px rgba(31, 43, 106, 0.16);
}

.ai-showcase__preview {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 320px;
}

.ai-showcase__preview-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 320ms ease;
}

.ai-showcase__preview-img.is-active {
  opacity: 1;
}

.ai-showcase__nav {
  position: absolute;
  top: 50%;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.85);
  color: #1f2b6a;
  transform: translateY(-50%);
  cursor: pointer;
  transition:
    background-color 200ms ease,
    transform 200ms ease;
}

.ai-showcase__nav:hover {
  background: #fff;
  transform: translateY(-50%) scale(1.06);
}

.ai-showcase__nav--prev {
  left: 16px;
}

.ai-showcase__nav--next {
  right: 16px;
}

.ai-showcase__dots {
  position: absolute;
  left: 50%;
  bottom: 18px;
  z-index: 2;
  display: flex;
  gap: 8px;
  transform: translateX(-50%);
}

.ai-showcase__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.55);
  cursor: pointer;
  transition:
    background-color 200ms ease,
    transform 200ms ease;
}

.ai-showcase__dot.is-active {
  background: #1f2b6a;
  transform: scale(1.15);
}

@media (max-width: 992px) {
  .ai-showcase {
    grid-template-columns: 1fr;
  }

  .ai-showcase__stage {
    min-height: 280px;
    order: -1;
  }

  .ai-showcase__preview {
    min-height: 280px;
  }
}

@media (max-width: 576px) {
  .ai-card-section {
    padding: 44px 0 58px;
  }

  .ai-showcase__item {
    gap: 12px;
    padding: 10px;
  }

  .ai-showcase__thumb {
    width: 72px;
    height: 64px;
  }

  .ai-showcase__desc {
    font-size: 0.78rem;
  }

  .ai-showcase__stage,
  .ai-showcase__preview {
    min-height: 220px;
  }
}

/* ── AI Trusted Brands ── */

.ai-trusted {
  width: 100%;
  background:
    url("assets/aipage/tr.jpg") center / cover no-repeat,
    #f2ece4;
  padding: clamp(56px, 8vw, 96px) 0 clamp(62px, 8vw, 98px);
}

.ai-trusted__inner {
  width: min(1240px, calc(100% - clamp(24px, 5vw, 72px)));
  margin: 0 auto;
}

.ai-trusted__title {
  margin: 0;
  text-align: center;
  color: #1f2b6a;
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.02em;
}

.ai-trusted__title .accent {
  color: #e75a55;
}

.ai-trusted__lead {
  max-width: 720px;
  margin: clamp(14px, 2vw, 20px) auto 0;
  text-align: center;
  color: #4b547a;
  font-size: clamp(0.82rem, 1.1vw, 0.95rem);
  line-height: 1.65;
}

.ai-trusted__grid {
  margin-top: clamp(32px, 4.5vw, 52px);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(14px, 1.6vw, 22px);
  align-items: stretch;
}

.ai-trusted-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 10px 28px rgba(24, 34, 86, 0.08);
  transition:
    transform 220ms ease,
    box-shadow 220ms ease;
}

.ai-trusted-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 36px rgba(24, 34, 86, 0.14);
}

.ai-trusted-card__media {
  position: relative;
  aspect-ratio: 16 / 10;
  background: linear-gradient(180deg, #d8d8d8 0%, #f4efe8 100%);
  overflow: hidden;
  cursor: pointer;
}

.ai-trusted-card__media video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.ai-trusted-card__play {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  transform: translate(-50%, -50%);
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  padding: 0;
  border: 0;
  border-radius: 12px;
  background: rgba(55, 60, 80, 0.55);
  color: #fff;
  cursor: pointer;
  transition: opacity 180ms ease;
}

.ai-trusted-card__media.is-playing .ai-trusted-card__play {
  opacity: 0;
  pointer-events: none;
}

.ai-trusted-card__play svg {
  width: 22px;
  height: 22px;
  margin-left: 3px;
}

.ai-trusted-card__body {
  padding: clamp(16px, 2vw, 22px);
  display: flex;
  flex-direction: column;
  flex: 1;
  align-items: baseline;
}

.ai-trusted-card__brand {
  margin: 0 0 12px;
  align-self: flex-start;
  padding: 6px 12px;
  border-radius: 6px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1;
}

.ai-trusted-card__brand--root {
  background: #8b7355;
  color: #fff;
  text-transform: lowercase;
}

.ai-trusted-card__brand--asian {
  background: transparent;
  color: #e31837;
  padding-left: 0;
  font-size: 0.85rem;
}

.ai-trusted-card__brand--itc {
  background: transparent;
  color: #1a4f9c;
  padding-left: 0;
  font-size: 1.1rem;
  font-weight: 800;
}

.ai-trusted-card h3 {
  margin: 0 0 10px;
  color: #1f2b6a;
  font-size: clamp(1rem, 1.3vw, 1.35rem);
  font-weight: 700;
  line-height: 1.2;
}

.ai-trusted-card__body > p:last-child {
  margin: 0;
  color: #4b547a;
  font-size: clamp(0.72rem, 0.85vw, 0.82rem);
  line-height: 1.55;
}

@media (max-width: 992px) {
  .ai-trusted__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
  }

  .ai-trusted-card h3 {
    font-size: 0.95rem;
  }

  .ai-trusted-card__body > p:last-child {
    font-size: 0.72rem;
  }
}

@media (max-width: 768px) {
  .ai-trusted__grid {
    grid-template-columns: 1fr;
    max-width: 420px;
    margin-left: auto;
    margin-right: auto;
  }
}

/* ── AI Footer CTA ── */

.ai-footer-cta {
  background:
    url("assets/aipage/footer.jpg") bottom center / cover no-repeat,
    #f2ece4;
  color: #1f2b6a;
}

.ai-footer-cta__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: clamp(16px, 2.2vw, 24px);
  width: min(1120px, calc(100% - clamp(32px, 6vw, 64px)));
  margin: 0 auto;
  padding: clamp(72px, 10vw, 120px) 0;
  text-align: center;
}

.ai-footer-cta__title {
  margin: 0;
  /* max-width: 36rem; */
  color: #1f2b6a;
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.ai-footer-cta__title .accent {
  color: #e75a55;
}

.ai-footer-cta__lead {
  max-width: 42rem;
  margin: 0;
  color: #2f3257;
  font-size: clamp(0.9rem, 1.3vw, 1.05rem);
  line-height: 1.65;
}

.ai-footer-cta__note {
  max-width: 34rem;
  margin: 0;
  color: #1f2b6a;
  font-size: clamp(0.82rem, 1.1vw, 0.95rem);
  line-height: 1.6;
}

.ai-footer-cta__button {
  margin-top: clamp(8px, 1.5vw, 14px);
  background: #ea5554;
  color: #fff;
  border: 0;
  border-radius: 10px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 15px 28px;
  font-weight: 600;
  font-size: clamp(0.95rem, 1.2vw, 1.1rem);
  transition:
    background-color 180ms ease,
    transform 180ms ease;
}

.ai-footer-cta__button:hover {
  background: #d94a49;
  transform: translateY(-1px);
  color: #fff;
}

@media (max-width: 576px) {
  .ai-footer-cta__title {
    max-width: none;
  }

  .ai-footer-cta__button {
    width: 100%;
    justify-content: center;
  }
}

/* ── Marketing Hero ── */

.marketing-hero-page {
  min-height: 100vh;
  background: #f2efe9;
  color: #212657;
}

.marketing-hero-wrap {
  width: 100%;
  padding: 24px 32px 64px;
  background: linear-gradient(59deg, #fdfcfb 5.5%, #fef5e9 35%), #f2ece4;
}

.marketing-hero-wrap__inner {
  max-width: 1240px;
  margin: 0 auto;
}

.marketing-hero-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 44px;
}

.marketing-hero-logo img {
  width: 172px;
  height: auto;
  display: block;
}

.marketing-hero-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.marketing-hero-nav a {
  font-size: 11px;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  text-decoration: none;
  color: #151515;
  font-weight: 500;
}

.marketing-hero-nav a.is-active {
  color: #e95956;
  border-bottom: 2px solid #e95956;
  padding-bottom: 4px;
}

.marketing-hero-contact {
  border: 2px solid #23284b;
  border-radius: 12px;
  padding: 12px 22px;
  text-decoration: none;
  color: #23284b;
  font-size: 14px;
  line-height: 1;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  /* margin-top: 50px; */
}

.marketing-hero-main {
  display: grid;
  grid-template-columns: 1fr 520px;
  gap: 52px;
  align-items: center;
  margin-top: 8.25rem;
}

.marketing-hero-title {
  margin: 0;
  font-weight: 700;
  font-size: clamp(44px, 6.2vw, 70px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: #1f2b6a;
}

.marketing-hero-title .accent {
  display: block;
  color: #e95956;
}

.marketing-hero-copy p {
  margin: 22px 0 0;
  max-width: 630px;
  font-size: 17px;
  line-height: 1.34;
  color: #2f3257;
}

.marketing-hero-copy p + p {
  margin-top: 16px;
}

.marketing-hero-cta {
  margin-top: 30px;
  background: #ea5554;
  color: #fff;
  border: 0;
  border-radius: 10px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 15px 26px;
  font-weight: 600;
  font-size: 18px;
  transition:
    background-color 180ms ease,
    transform 180ms ease;
}

.marketing-hero-cta:hover {
  background: #d94a49;
  transform: translateY(-1px);
  color: #fff;
}

.marketing-hero-visual img {
  width: 100%;
  max-width: 520px;
  height: auto;
  display: block;
}

@media (max-width: 1200px) {
  .marketing-hero-main {
    grid-template-columns: 1fr 430px;
    gap: 36px;
  }

  .marketing-hero-copy p {
    font-size: 16px;
  }
}

@media (max-width: 992px) {
  .marketing-hero-wrap {
    padding: 20px 20px 32px;
  }

  .marketing-hero-header {
    flex-wrap: wrap;
    margin-bottom: 28px;
  }

  .marketing-hero-nav {
    order: 3;
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
    gap: 16px 20px;
  }

  .marketing-hero-main {
    grid-template-columns: 1fr;
    gap: 24px;
    margin-top: 2rem;
  }

  .marketing-hero-copy p {
    font-size: 16px;
  }

  .marketing-hero-visual {
    max-width: 480px;
    width: 100%;
    margin: 0 auto;
  }
}

@media (max-width: 576px) {
  .marketing-hero-title {
    font-size: 38px;
  }

  .marketing-hero-copy p {
    font-size: 16px;
  }

  .marketing-hero-cta {
    width: 100%;
    justify-content: center;
    font-size: 16px;
  }
}

/* ── Marketing Competitive Section ── */

.marketing-competitive {
  width: 100%;
  background:
    url("assets/marketingpage/figma/competitive-bg.png") center / cover
      no-repeat,
    linear-gradient(180deg, #fef5e9 0%, #fff 50%, #fef5e9 100%);
  padding: clamp(56px, 8vw, 96px) 0 clamp(72px, 9vw, 120px);
}

.marketing-competitive__inner {
  width: min(1240px, calc(100% - clamp(24px, 5vw, 72px)));
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(28px, 4vw, 40px);
}

.marketing-competitive__title {
  margin: 0;
  max-width: 18ch;
  text-align: center;
  color: #242e69;
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.marketing-competitive__title .accent {
  color: #e5554d;
}

.marketing-competitive__lead {
  margin: 0;
  max-width: 34rem;
  text-align: center;
  color: #242e69;
  font-size: clamp(1rem, 1.8vw, 1.5rem);
  line-height: 1.5;
}

.marketing-competitive__pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px 14px;
  max-width: 1056px;
}

.marketing-competitive__pills span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 24px;
  background: #fff;
  border: 1px solid #e5554d;
  border-radius: 999px;
  color: #242e69;
  font-size: 0.88rem;
  line-height: 1.4;
  white-space: nowrap;
}

.marketing-competitive__results-title {
  margin: clamp(8px, 2vw, 16px) 0 0;
  color: #242e69;
  font-size: clamp(1.2rem, 2vw, 1.5rem);
  font-weight: 700;
  text-align: center;
}

.marketing-competitive__results-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(14px, 2vw, 24px);
  width: 100%;
}

.marketing-competitive__result-card {
  background: #fff;
  border-radius: 21px;
  overflow: hidden;
}

.marketing-competitive__result-card img {
  display: block;
  width: 100%;
  height: auto;
}

.marketing-competitive__footer {
  margin: 0;
  max-width: 44rem;
  text-align: center;
  color: #242e69;
  font-size: clamp(1rem, 1.4vw, 1.25rem);
  line-height: 1.5;
}

@media (max-width: 900px) {
  .marketing-competitive__results-grid {
    grid-template-columns: 1fr;
    max-width: 420px;
  }

  .marketing-competitive__pills span {
    white-space: normal;
    text-align: center;
  }
}

/* ── Marketing Growth Stickies ── */

.marketing-growth {
  width: 100%;
  background: linear-gradient(66.67deg, #fdfcfb 5.5%, #fef5e9 35%), #f2ece4;
  padding: clamp(64px, 8vw, 96px) 0;
}

.marketing-growth__inner {
  width: min(1240px, calc(100% - clamp(24px, 5vw, 72px)));
  margin: 0 auto;
}

.marketing-growth__title {
  margin: 0 0 clamp(40px, 5vw, 56px);
  text-align: center;
  color: #242e69;
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.02em;
}

.marketing-growth__title .accent {
  color: #e5554d;
}

.marketing-growth__stickies {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(48px, 6vw, 40px) clamp(20px, 2.5vw, 32px);
  align-items: start;
  padding: 12px 0 24px;
}

.marketing-sticky {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 42px;
  transform-origin: center top;
  transition: transform 280ms cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}

/* Figma scatter: top middle up, bottom middle down; alternating tilts */
.marketing-sticky--1 {
  transform: rotate(-3.8deg);
  margin-top: 18px;
}

.marketing-sticky--2 {
  transform: rotate(3.6deg);
  margin-top: -28px;
}

.marketing-sticky--3 {
  transform: rotate(-3.2deg);
  margin-top: 28px;
}

.marketing-sticky--4 {
  transform: rotate(-3.5deg);
  margin-top: 8px;
}

.marketing-sticky--5 {
  transform: rotate(4deg);
  margin-top: 42px;
}

.marketing-sticky--6 {
  transform: rotate(-3deg);
  margin-top: 4px;
}

.marketing-sticky:hover,
.marketing-sticky:focus-within {
  z-index: 5;
  transform: rotate(0deg) translateY(-10px) scale(1.04);
}

.marketing-sticky__tape {
  position: absolute;
  top: -30px;
  left: 50%;
  z-index: 2;
  width: 120px;
  height: auto;
  transform: translateX(-50%);
  pointer-events: none;
  transition: transform 280ms cubic-bezier(0.22, 1, 0.36, 1);
}

.marketing-sticky__tape--orange {
  width: 118px;
}

.marketing-sticky__tape--tilt {
  transform: translateX(-50%) rotate(8deg);
}

.marketing-sticky__tape--flip {
  transform: translateX(-50%) rotate(180deg);
}

.marketing-sticky:hover .marketing-sticky__tape,
.marketing-sticky:focus-within .marketing-sticky__tape {
  transform: translateX(-50%) rotate(-4deg);
}

.marketing-sticky:hover .marketing-sticky__tape--tilt,
.marketing-sticky:focus-within .marketing-sticky__tape--tilt {
  transform: translateX(-50%) rotate(4deg);
}

.marketing-sticky:hover .marketing-sticky__tape--flip,
.marketing-sticky:focus-within .marketing-sticky__tape--flip {
  transform: translateX(-50%) rotate(176deg);
}

.marketing-sticky__card {
  width: 100%;
  max-width: 359px;
  background: #fff;
  border-radius: 28px;
  padding: 48px 16px 16px;
  box-shadow: 0 25px 36px rgba(0, 0, 0, 0.04);
  transition: box-shadow 280ms ease;
}

.marketing-sticky:hover .marketing-sticky__card,
.marketing-sticky:focus-within .marketing-sticky__card {
  box-shadow: 0 28px 48px rgba(36, 46, 105, 0.16);
}

.marketing-sticky__panel {
  border-radius: 16px;
  padding: 16px;
  min-height: 168px;
  transition: background-color 280ms ease;
}

.marketing-sticky__panel--blue {
  background: #e2e6ff;
}

.marketing-sticky:hover .marketing-sticky__panel--blue,
.marketing-sticky:focus-within .marketing-sticky__panel--blue {
  background: #d4dbff;
}

.marketing-sticky__panel--coral {
  background: #ffeceb;
}

.marketing-sticky:hover .marketing-sticky__panel--coral,
.marketing-sticky:focus-within .marketing-sticky__panel--coral {
  background: #ffdfdd;
}

.marketing-sticky__panel h3 {
  margin: 0 0 16px;
  color: #242e69;
  font-size: clamp(1.15rem, 1.6vw, 1.4rem);
  font-weight: 700;
  line-height: 1.3;
}

.marketing-sticky__panel p {
  margin: 0;
  color: #303030;
  font-size: 0.88rem;
  line-height: 1.5;
}

@media (max-width: 992px) {
  .marketing-growth__stickies {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .marketing-sticky--1,
  .marketing-sticky--2,
  .marketing-sticky--3,
  .marketing-sticky--4,
  .marketing-sticky--5,
  .marketing-sticky--6 {
    transform: rotate(0deg);
    margin-top: 0;
  }

  .marketing-sticky:hover,
  .marketing-sticky:focus-within {
    transform: translateY(-8px) scale(1.03);
  }
}

@media (prefers-reduced-motion: reduce) {
  .marketing-sticky,
  .marketing-sticky__tape,
  .marketing-sticky__card,
  .marketing-sticky__panel {
    transition: none;
  }

  .marketing-sticky:hover,
  .marketing-sticky:focus-within {
    transform: none;
  }
}

@media (max-width: 640px) {
  .marketing-growth__stickies {
    grid-template-columns: 1fr;
    max-width: 380px;
    margin: 0 auto;
  }
}

/* ── Marketplace Success ── */

.marketing-success {
  width: 100%;
  background:
    radial-gradient(
      ellipse 55% 45% at 50% 42%,
      rgba(254, 210, 170, 0.45) 0%,
      rgba(255, 248, 240, 0) 70%
    ),
    linear-gradient(180deg, #fff9f4 0%, #fef4e6 100%);
  padding: clamp(80px, 10vw, 130px) 0 clamp(90px, 11vw, 140px);
  overflow: hidden;
}

.marketing-success__inner {
  width: min(1320px, calc(100% - clamp(24px, 5vw, 72px)));
  margin: 0 auto;
}

.marketing-success__stage {
  position: relative;
  min-height: clamp(560px, 62vw, 720px);
}

.marketing-success__copy {
  position: absolute;
  left: 50%;
  top: 38%;
  transform: translate(-50%, -50%);
  width: min(100%, 620px);
  text-align: center;
  z-index: 1;
}

.marketing-success__title {
  margin: 0;
  color: #242e69;
  font-size: clamp(2rem, 4.2vw, 3.5rem);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.02em;
}

.marketing-success__title .accent {
  color: #e5554d;
}

.marketing-success__lead {
  max-width: 30rem;
  margin: clamp(16px, 2vw, 24px) auto 0;
  color: #242e69;
  font-size: clamp(0.9rem, 1.2vw, 1rem);
  line-height: 1.6;
}

.marketing-success__sub {
  max-width: 28rem;
  margin: clamp(10px, 1.4vw, 16px) auto 0;
  color: #4b547a;
  font-size: clamp(0.82rem, 1.05vw, 0.92rem);
  line-height: 1.6;
}

.ai-value .marketing-success__title {
  max-width: 14ch;
  margin-left: auto;
  margin-right: auto;
}

.ai-value__card {
  width: min(100%, 300px);
  background: #fff;
}

.ai-value__card p {
  margin: 0;
  color: #242e69;
  font-size: clamp(0.85rem, 1.05vw, 0.95rem);
  font-weight: 600;
  line-height: 1.4;
}

.ai-value__icon {
  display: inline-flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  color: #e5554d;
  transition: transform 280ms cubic-bezier(0.22, 1, 0.36, 1);
}

.ai-value__icon svg {
  display: block;
  width: 28px;
  height: 28px;
}

.ai-value .marketing-success__card--bc {
  width: min(100%, 320px);
}

.marketing-success__card {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 16px;
  width: min(100%, 370px);
  text-align: left;
  background: #fffaf0;
  border-radius: 21px;
  padding: 20px;
  box-shadow: 4px 7px 17px rgba(0, 0, 0, 0.06);
  z-index: 2;
  cursor: default;
  transition:
    transform 280ms cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 280ms ease,
    background-color 280ms ease;
  will-change: transform;
}

.marketing-success__card img {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  object-fit: contain;
  display: block;
  transition: transform 280ms cubic-bezier(0.22, 1, 0.36, 1);
}

.marketing-success__card h3 {
  margin: 0 0 6px;
  color: #242e69;
  font-size: clamp(1rem, 1.3vw, 1.25rem);
  font-weight: 700;
  line-height: 1.25;
}

.marketing-success__card p {
  margin: 0;
  color: #242e69;
  font-size: 0.92rem;
  line-height: 1.45;
}

.marketing-success__card--tl {
  top: 2%;
  left: 0;
  transform: rotate(-4deg);
}

.marketing-success__card--tr {
  top: 0;
  right: 0;
  transform: rotate(4deg);
}

.marketing-success__card--bl {
  top: 46%;
  left: 0;
  transform: rotate(3.5deg);
}

.marketing-success__card--br {
  top: 44%;
  right: 0;
  transform: rotate(-4deg);
}

.marketing-success__card--bc {
  left: 50%;
  bottom: 2%;
  width: min(100%, 447px);
  transform: translateX(-50%);
}

.marketing-success__card:hover,
.marketing-success__card:focus-within {
  z-index: 5;
  background: #fff;
  box-shadow: 0 22px 40px rgba(36, 46, 105, 0.14);
}

.marketing-success__card--tl:hover,
.marketing-success__card--tl:focus-within {
  transform: rotate(0deg) translateY(-10px) scale(1.04);
}

.marketing-success__card--tr:hover,
.marketing-success__card--tr:focus-within {
  transform: rotate(0deg) translateY(-10px) scale(1.04);
}

.marketing-success__card--bl:hover,
.marketing-success__card--bl:focus-within {
  transform: rotate(0deg) translateY(-10px) scale(1.04);
}

.marketing-success__card--br:hover,
.marketing-success__card--br:focus-within {
  transform: rotate(0deg) translateY(-10px) scale(1.04);
}

.marketing-success__card--bc:hover,
.marketing-success__card--bc:focus-within {
  transform: translateX(-50%) translateY(-10px) scale(1.04);
}

.marketing-success__card:hover img,
.marketing-success__card:focus-within img {
  transform: scale(1.08);
}

.ai-value__card:hover .ai-value__icon,
.ai-value__card:focus-within .ai-value__icon {
  transform: scale(1.08);
}

@media (max-width: 1100px) {
  .marketing-success__stage {
    min-height: 0;
    display: grid;
    gap: 16px;
  }

  .marketing-success__copy,
  .marketing-success__card {
    position: static;
    transform: none;
    width: 100%;
    max-width: 520px;
    margin: 0 auto;
  }

  .marketing-success__copy {
    order: -1;
    margin-bottom: 12px;
  }

  .marketing-success__card--tl:hover,
  .marketing-success__card--tl:focus-within,
  .marketing-success__card--tr:hover,
  .marketing-success__card--tr:focus-within,
  .marketing-success__card--bl:hover,
  .marketing-success__card--bl:focus-within,
  .marketing-success__card--br:hover,
  .marketing-success__card--br:focus-within,
  .marketing-success__card--bc:hover,
  .marketing-success__card--bc:focus-within {
    transform: translateY(-8px) scale(1.03);
  }
}

@media (prefers-reduced-motion: reduce) {
  .marketing-success__card,
  .marketing-success__card img {
    transition: none;
  }

  .marketing-success__card--tl:hover,
  .marketing-success__card--tl:focus-within,
  .marketing-success__card--tr:hover,
  .marketing-success__card--tr:focus-within,
  .marketing-success__card--bl:hover,
  .marketing-success__card--bl:focus-within,
  .marketing-success__card--br:hover,
  .marketing-success__card--br:focus-within {
    transform: none;
  }

  .marketing-success__card--bc:hover,
  .marketing-success__card--bc:focus-within {
    transform: translateX(-50%);
  }
}

/* ── Marketing Footer CTA ── */

.marketing-footer-cta {
  position: relative;
  overflow: hidden;
  background:
    url("assets/marketingpage/figma/footer-bg.png") bottom center / cover
      no-repeat,
    linear-gradient(24.63deg, #eadac5 19.8%, #fef4e7 51.7%);
  color: #242e69;
}

.marketing-footer-cta .site-footer__watermark {
  top: auto;
  bottom: -6%;
  transform: translate(-50%, 0);
}

.marketing-footer-cta__inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: clamp(16px, 2.2vw, 24px);
  width: min(1120px, calc(100% - clamp(32px, 6vw, 64px)));
  margin: 0 auto;
  padding: clamp(72px, 10vw, 120px) 0 clamp(56px, 7vw, 80px);
  text-align: center;
}

.marketing-footer-cta__title {
  margin: 0;
  max-width: 48rem;
  color: #242e69;
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.marketing-footer-cta__eyebrow {
  margin: 0;
  color: #e5554d;
  font-size: clamp(0.68rem, 1vw, 0.78rem);
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.marketing-footer-cta__title .accent {
  display: inline;
  color: #e5554d;
}

.marketing-footer-cta__lead {
  max-width: 42rem;
  margin: 0;
  color: #242e69;
  font-size: clamp(0.9rem, 1.3vw, 1.05rem);
  line-height: 1.65;
}

.marketing-footer-cta__note {
  max-width: 38rem;
  margin: 0;
  color: #242e69;
  font-size: clamp(0.82rem, 1.1vw, 0.95rem);
  line-height: 1.6;
}

.marketing-footer-cta__button {
  margin-top: clamp(8px, 1.5vw, 14px);
  background: #e5554d;
  color: #fff;
  border: 0;
  border-radius: 8px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 28px 18px 36px;
  font-weight: 600;
  font-size: clamp(0.95rem, 1.2vw, 1.1rem);
  transition:
    background-color 180ms ease,
    transform 180ms ease;
}

.marketing-footer-cta__button:hover {
  background: #d94a49;
  transform: translateY(-1px);
  color: #fff;
}

.marketing-footer-cta__contacts {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: clamp(28px, 5vw, 64px);
  width: 100%;
  max-width: 900px;
  margin-top: clamp(20px, 3vw, 36px);
}

.marketing-footer-cta__contacts a {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #242e69;
  font-size: clamp(0.95rem, 1.2vw, 1.05rem);
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
}

.marketing-footer-cta__contacts img {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  object-fit: contain;
  display: block;
}

@media (max-width: 700px) {
  .marketing-footer-cta__contacts {
    flex-direction: column;
    gap: 18px;
  }
}

@media (max-width: 576px) {
  .marketing-footer-cta__title {
    max-width: none;
  }

  .marketing-footer-cta__button {
    width: 100%;
    justify-content: center;
  }
}

/* ── Site footer ── */

.site-footer {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, var(--cream-2) 0%, var(--cream) 100%);
  color: var(--ink);
}

.site-footer__watermark {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, 23%);
  width: 100%;
  text-align: center;
  pointer-events: none;
  user-select: none;
  z-index: 1;
}

.site-footer__watermark-track {
  position: relative;
  display: inline-flex;
  align-items: baseline;
  font-size: clamp(5rem, 18vw, 14rem);
  line-height: 1;
  white-space: nowrap;
  height: 300px;
}

.site-footer__watermark-un {
  font-family: "Pacifico", cursive;

  font-weight: 100;
}

.site-footer__watermark-average {
  font-family: "Poppins", Arial, sans-serif;
  /* font-weight: 800; */
  letter-spacing: -0.04em;
}

.site-footer__watermark-base,
.site-footer__watermark-spotlight {
  display: inline-flex;
  align-items: baseline;
}

.site-footer__watermark-base .site-footer__watermark-un,
.site-footer__watermark-base .site-footer__watermark-average {
  color: transparent;
  -webkit-text-stroke: 1px rgba(25, 31, 86, 0.08);
}

.site-footer__watermark-spotlight {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.2s ease;
  --spot-radius: clamp(100px, 11vw, 140px);
  --spot-x: -9999px;
  --spot-y: -9999px;
  -webkit-mask-image: radial-gradient(
    circle var(--spot-radius) at var(--spot-x) var(--spot-y),
    #000 0%,
    #000 52%,
    rgba(0, 0, 0, 0.55) 72%,
    transparent 100%
  );
  mask-image: radial-gradient(
    circle var(--spot-radius) at var(--spot-x) var(--spot-y),
    #000 0%,
    #000 52%,
    rgba(0, 0, 0, 0.55) 72%,
    transparent 100%
  );
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
}

.site-footer__watermark-spotlight.is-active {
  opacity: 1;
}

.site-footer__watermark-spotlight .site-footer__watermark-un {
  color: #d95148;
  -webkit-text-stroke: 0 transparent;
}

.site-footer__watermark-spotlight .site-footer__watermark-average {
  color: #191f56;
  -webkit-text-stroke: 0 transparent;
}

.site-footer__inner {
  position: relative;
  z-index: 2;
  padding: clamp(56px, 8vw, 96px) 0 clamp(40px, 6vw, 64px);
}

.site-footer__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: clamp(32px, 6vw, 80px);
}

.site-footer__brand {
  display: grid;
  gap: clamp(28px, 4vw, 48px);
}

.site-footer__logo-link {
  display: inline-block;
  text-decoration: none;
  color: inherit;
  position: relative;
  z-index: 5;
}

.site-footer__logo {
  display: inline-flex;
  align-items: baseline;
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  line-height: 1;
  cursor: pointer;
}

.site-footer__logo-un,
.site-footer__logo-average {
  transition: color 0.3s ease;
}

.site-footer__logo-un {
  font-family: "Pacifico", cursive;
  font-weight: 400;
  color: #d95148;
}

.site-footer__logo-average {
  font-family: "Poppins", Arial, sans-serif;
  font-weight: 800;
  color: #000;
}

.site-footer__contact {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(16px, 3vw, 48px);
}

.site-footer__contact-item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  font-size: clamp(0.82rem, 1.2vw, 0.95rem);
  font-weight: 600;
  transition: opacity 200ms ease;
}

.site-footer__contact-item:hover,
.site-footer__contact-item:focus-visible {
  opacity: 0.72;
}

.site-footer__nav {
  display: flex;
  align-items: flex-start;
  gap: clamp(28px, 4vw, 56px);
  flex-shrink: 0;
}

.site-footer__nav-col {
  display: grid;
  gap: 14px;
}

.site-footer__nav-col a {
  color: var(--ink);
  font-size: clamp(0.88rem, 1.3vw, 1rem);
  font-weight: 700;
  transition: opacity 200ms ease;
}

.site-footer__nav-col a:hover,
.site-footer__nav-col a:focus-visible {
  opacity: 0.72;
}

.site-footer__social {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--ink);
  margin-top: 2px;
  transition: opacity 200ms ease;
}

.site-footer__social:hover,
.site-footer__social:focus-visible {
  opacity: 0.72;
}

.site-footer__bottom {
  position: relative;
  z-index: 1;
  padding: 18px 24px;
  text-align: center;
  background: rgba(196, 190, 170, 0.22);
  border-top: 1px solid rgba(25, 31, 86, 0.06);
}

.site-footer__bottom p {
  margin: 0;
  color: var(--ink);
  font-size: 0.78rem;
  font-weight: 500;
}

@media (max-width: 900px) {
  .site-footer__top {
    flex-direction: column;
  }

  .site-footer__nav {
    width: 100%;
    justify-content: space-between;
  }
}

@media (max-width: 576px) {
  .site-footer__contact {
    flex-direction: column;
    gap: 14px;
  }

  .site-footer__nav {
    flex-wrap: wrap;
    gap: 24px 40px;
  }

  .site-footer__social {
    margin-left: auto;
  }
}

/* ── Legal / Privacy Policy ── */

.legal-page .contact-hero {
  padding-bottom: clamp(24px, 4vw, 40px);
}

.legal-updated {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.82rem;
  font-weight: 600;
}

.legal-content {
  padding: 0 0 clamp(78px, 10vw, 130px);
}

.legal-card {
  max-width: 820px;
  margin: 0 auto;
  padding: clamp(28px, 4vw, 44px);
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 18px 44px rgba(25, 31, 86, 0.08);
}

.legal-section {
  display: grid;
  gap: 12px;
  padding-bottom: 28px;
  margin-bottom: 28px;
  border-bottom: 1px solid var(--line);
}

.legal-section:last-child {
  padding-bottom: 0;
  margin-bottom: 0;
  border-bottom: 0;
}

.legal-section h2 {
  font-size: clamp(1.2rem, 2.2vw, 1.5rem);
  font-weight: 800;
  line-height: 1.2;
  color: var(--ink);
}

.legal-section h3 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--ink);
  margin-top: 4px;
}

.legal-section p,
.legal-section li {
  font-size: 0.92rem;
  line-height: 1.75;
}

.legal-section ul {
  margin: 0;
  padding-left: 1.2rem;
  display: grid;
  gap: 8px;
}

.legal-section a {
  color: var(--coral);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.legal-section a:hover {
  color: var(--coral-dark);
}
