/* ======================================================================
   KEYFRAMES
   ====================================================================== */

@keyframes maSlideLeft {
  from { opacity: 0; transform: translateX(-36px); }
  to   { opacity: 1; transform: translateX(0); }
}

@keyframes maFadeUp {
  from { opacity: 0; transform: translateY(22px); filter: blur(4px); }
  to   { opacity: 1; transform: translateY(0);    filter: blur(0); }
}

@keyframes maPop {
  from { opacity: 0; transform: translateY(10px) scale(0.92); }
  to   { opacity: 1; transform: translateY(0)    scale(1); }
}

@keyframes maGradShimmer {
  0%   { background-position: 100% center; }
  50%  { background-position: 0%   center; }
  100% { background-position: 100% center; }
}

/* ======================================================================
   GRADIENT TEXT UTILITY
   ====================================================================== */

.ma-grad {
  background: linear-gradient(90deg, #7c3aed, #c026d3, #e11d48, #c026d3, #7c3aed);
  background-size: 400% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: maGradShimmer 3.5s ease 1.2s infinite;
}

/* ======================================================================
   HERO SECTION
   ====================================================================== */

.ma-hero {
  position: relative;
  overflow: hidden;
  min-height: calc(100vh - var(--da-nav-h, 78px));
  background-color: #050508;
  background-image: url('../img/meta-ads/meta-banner.webp');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

/* Horizontal gradient — dense left for text readability, clear right for laptop art */
.ma-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(5, 4, 14, 0.82) 0%,
    rgba(5, 4, 14, 0.62) 42%,
    rgba(5, 4, 14, 0.12) 65%,
    rgba(5, 4, 14, 0.00) 100%
  );
  pointer-events: none;
  z-index: 1;
}

/* ── Inner wrapper ── */
.ma-hero__inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1380px;
  margin: 0 auto;
  padding: clamp(3rem, 6vw, 5rem) clamp(1.25rem, 4vw, 3.5rem);
}

/* ── Left: content (constrained to ~50% so it never overlaps the laptop art) ── */
.ma-hero__content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  max-width: clamp(320px, 50%, 660px);
}

/* ── Eyebrow badge ── */
.ma-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--da-font);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: rgba(255, 255, 255, 0.85);
  margin: 0 0 1rem;
  animation: maSlideLeft 0.7s ease both;
}

.ma-hero__eyebrow-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

/* ── H1 ── */
.ma-hero__title {
  font-family: var(--da-font);
  font-size: clamp(1.65rem, 2.6vw, 3.2rem);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  line-height: 1.1;
  color: var(--da-white, #fff);
  margin: 0 0 clamp(1rem, 2vw, 1.75rem);
  animation: maSlideLeft 0.75s ease both;
}

/* ── Body text ── */
.ma-hero__body {
  font-size: clamp(0.875rem, 1.05vw, 1.05rem);
  line-height: 1.72;
  color: rgba(255, 255, 255, 0.78);
  margin: 0 0 clamp(1.25rem, 2.5vw, 2rem);
  animation: maFadeUp 0.75s ease 0.25s both;
}

/* ── CTA (solid gradient-filled pill, per screenshot) ── */
.ma-hero__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 32px;
  border-radius: 999px;
  border: none;
  background: linear-gradient(90deg, #7c3aed 0%, #c026d3 55%, #e11d48 100%);
  color: #ffffff;
  text-decoration: none;
  font-family: var(--da-font);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  box-shadow: 0 10px 28px rgba(124, 58, 237, 0.32);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  animation: maPop 0.7s cubic-bezier(0.34, 1.56, 0.64, 1) 0.75s both;
}
.ma-hero__cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 40px rgba(192, 38, 211, 0.40);
  color: #ffffff;
  text-decoration: none;
}

/* ======================================================================
   RESPONSIVE
   ====================================================================== */

@media (max-width: 1024px) {
  .ma-hero__title {
    font-size: clamp(1.5rem, 2.8vw, 2.4rem);
  }
}

/* Tablet portrait — full-width content, heavier overlay, anchor laptop art right */
@media (max-width: 768px) {
  .ma-hero {
    background-position: right center;
  }

  .ma-hero::before {
    background: rgba(5, 4, 14, 0.78);
  }

  .ma-hero__content {
    max-width: 100%;
    align-items: flex-start;
  }
}

/* Mobile */
@media (max-width: 480px) {
  .ma-hero__title {
    font-size: clamp(1.35rem, 6.5vw, 1.65rem);
  }
}

@media (max-width: 360px) {
  .ma-hero__title {
    font-size: 1.25rem;
  }
}

/* ======================================================================
   TAKE YOUR BUSINESS TO THE NEXT LEVEL SECTION
   ====================================================================== */

.ma-trust {
  position: relative;
  overflow: hidden;
  background-color: #07060e;
  padding: clamp(3.5rem, 7vw, 6rem) 0;
}

/* Faint giant "Meta" wordmark, centered behind the section content */
.ma-trust::before {
  content: "Meta";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  font-family: var(--da-font);
  font-weight: 500;
  font-size: clamp(7rem, 28vw, 24rem);
  letter-spacing: 0;
  text-align: center;
  color: rgba(255, 255, 255, 0.06);
  white-space: nowrap;
  z-index: 0;
  pointer-events: none;
}

.ma-trust::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(5, 4, 14, 0.3);
  pointer-events: none;
  z-index: 1;
}

/* ── Inner wrapper ── */
.ma-trust__inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 3rem);
  text-align: center;
}

/* ── Heading ── */
.ma-trust__head {
  margin-bottom: clamp(1.5rem, 3vw, 2.25rem);
}

.ma-trust__title {
  font-family: var(--da-font);
  font-size: clamp(1.4rem, 2.4vw, 2.6rem);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  line-height: 1.3;
  color: #fff;
  margin: 0;
}

/* ── Lead / body paragraphs ── */
.ma-trust__body {
  max-width: 820px;
  margin: 0 auto clamp(2.5rem, 5vw, 4rem);
}

.ma-trust__body p {
  font-family: var(--da-font);
  font-size: clamp(0.8rem, 0.92vw, 0.9rem);
  line-height: 1.85;
  color: rgba(255, 255, 255, 0.68);
  margin: 0 0 1rem;
}

.ma-trust__body p:last-child {
  margin-bottom: 0;
}

/* ── 4-col card grid ── */
.ma-trust__cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

.ma-trust__card {
  border-radius: 14px;
  border: 1px solid transparent;
  background:
    linear-gradient(#151318, #151318) padding-box,
    linear-gradient(rgba(255, 255, 255, 0.10), rgba(255, 255, 255, 0.10)) border-box;
  padding: 2rem 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.85rem;
}

.ma-trust__card--active {
  background:
    linear-gradient(#151318, #151318) padding-box,
    linear-gradient(135deg, #7c3aed 0%, #c026d3 55%, #e11d48 100%) border-box;
}

.ma-trust__card-icon {
  font-size: 2.6rem;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 2.6rem;
}

.ma-trust__card-icon img {
  width: 42px;
  height: 42px;
  object-fit: contain;
}

.ma-trust__card-title {
  font-family: var(--da-font);
  font-size: clamp(0.9rem, 1vw, 1.05rem);
  font-weight: 800;
  color: #fff;
  margin: 0;
  line-height: 1.3;
}

.ma-trust__card-desc {
  font-family: var(--da-font);
  font-size: clamp(0.75rem, 0.82vw, 0.825rem);
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.65);
  margin: 0;
}

/* ======================================================================
   SCROLL-REVEAL — .is-visible added to .ma-trust by IntersectionObserver
   ====================================================================== */

.ma-trust [data-ss-reveal="head"] {
  opacity: 0;
  transform: translateY(24px);
  clip-path: inset(0 0 100% 0);
  transition:
    opacity   0.85s ease 0.1s,
    transform 0.85s ease 0.1s,
    clip-path 0.85s cubic-bezier(0.22, 1, 0.36, 1) 0.1s;
}

.ma-trust [data-ss-reveal="body"] {
  opacity: 0;
  transform: translateY(22px);
  filter: blur(4px);
  transition:
    opacity   0.8s ease 0.22s,
    transform 0.8s ease 0.22s,
    filter    0.8s ease 0.22s;
}

.ma-trust [data-ss-reveal="card"] {
  opacity: 0;
  transform: translateY(30px) scale(0.97);
  transition:
    opacity   0.7s ease,
    transform 0.7s cubic-bezier(0.34, 1.4, 0.64, 1);
}

.ma-trust [data-ss-reveal="card"][data-ss-delay="0"] { transition-delay: 0.10s; }
.ma-trust [data-ss-reveal="card"][data-ss-delay="1"] { transition-delay: 0.25s; }
.ma-trust [data-ss-reveal="card"][data-ss-delay="2"] { transition-delay: 0.40s; }
.ma-trust [data-ss-reveal="card"][data-ss-delay="3"] { transition-delay: 0.55s; }

.ma-trust.is-visible [data-ss-reveal="head"] {
  opacity: 1;
  transform: translateY(0);
  clip-path: inset(0 0 0% 0);
}

.ma-trust.is-visible [data-ss-reveal="body"] {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}

.ma-trust.is-visible [data-ss-reveal="card"] {
  opacity: 1;
  transform: translateY(0) scale(1);
}

@media (prefers-reduced-motion: reduce) {
  .ma-trust [data-ss-reveal] {
    opacity: 1 !important;
    transform: none !important;
    clip-path: none !important;
    filter: none !important;
    transition: none !important;
  }
}

/* ── Responsive ── */
@media (max-width: 1024px) {
  .ma-trust__cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .ma-trust__cards {
    grid-template-columns: 1fr;
  }

  .ma-trust__card {
    padding: 1.5rem 1.25rem;
  }

  .ma-trust__title {
    font-size: clamp(1.2rem, 6vw, 1.5rem);
  }
}

/* ======================================================================
   WHAT MAKES US DIFFERENT SECTION
   ====================================================================== */

.ma-different {
  position: relative;
  overflow: hidden;
  background-color: #050308;
  padding: clamp(4rem, 8vw, 8rem) 0;
}

/* ── Inner wrapper ── */
.ma-different__inner {
  position: relative;
  width: 100%;
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 3rem);
}

/* ── Head: centered H2 + lead paragraphs ── */
.ma-different__head {
  text-align: center;
  max-width: 900px;
  margin: 0 auto clamp(2.5rem, 5vw, 4rem);
}

.ma-different__title {
  font-family: var(--da-font);
  font-size: clamp(1.4rem, 2.4vw, 2.6rem);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  line-height: 1.3;
  color: #fff;
  margin: 0 0 1.25rem;
}

.ma-different__lead {
  font-family: var(--da-font);
  font-size: clamp(0.8rem, 0.92vw, 0.9rem);
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.65);
  margin: 0 0 0.75rem;
}

.ma-different__lead:last-child {
  margin-bottom: 0;
}

.ma-different__lead--strong {
  color: rgba(255, 255, 255, 0.92);
  font-weight: 600;
}

/* ── 2-col grid: portrait image left, list right ── */
.ma-different__grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}

.ma-different__img-wrap {
  display: flex;
  justify-content: center;
}

.ma-different__img {
  width: 100%;
  max-width: clamp(280px, 30vw, 440px);
  height: auto;
  display: block;
  margin: 0 auto;
}

/* ── Right: differentiator list ── */
.ma-different__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
}

.ma-different__list li {
  font-family: var(--da-font);
  font-size: clamp(0.8rem, 0.92vw, 0.9rem);
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.7);
  padding-bottom: 1.1rem;
}

.ma-different__list li strong {
  color: #fff;
  font-weight: 700;
}

.ma-different__list li:not(:last-child)::after {
  content: "";
  display: block;
  height: 8px;
  margin-top: 1.1rem;
  background-image: repeating-linear-gradient(
    45deg,
    #e11d48 0, #e11d48 10px,
    transparent 10px, transparent 20px
  );
}

/* ======================================================================
   SCROLL-REVEAL — .is-visible added to .ma-different by IntersectionObserver
   ====================================================================== */

.ma-different [data-ss-reveal="head"] {
  opacity: 0;
  transform: translateY(24px);
  clip-path: inset(0 0 100% 0);
  transition:
    opacity   0.85s ease 0.1s,
    transform 0.85s ease 0.1s,
    clip-path 0.85s cubic-bezier(0.22, 1, 0.36, 1) 0.1s;
}

.ma-different [data-ss-reveal="img"] {
  opacity: 0;
  transform: translateX(-42px) scale(0.95);
  transition: opacity 0.85s ease 0.15s, transform 0.85s cubic-bezier(0.22, 1, 0.36, 1) 0.15s;
}

.ma-different [data-ss-reveal="text"] {
  opacity: 0;
  transform: translateX(36px);
  transition: opacity 0.85s ease 0.3s, transform 0.85s cubic-bezier(0.22, 1, 0.36, 1) 0.3s;
}

.ma-different.is-visible [data-ss-reveal="head"] {
  opacity: 1;
  transform: translateY(0);
  clip-path: inset(0 0 0% 0);
}

.ma-different.is-visible [data-ss-reveal="img"] {
  opacity: 1;
  transform: translateX(0) scale(1);
}

.ma-different.is-visible [data-ss-reveal="text"] {
  opacity: 1;
  transform: translateX(0);
}

@media (prefers-reduced-motion: reduce) {
  .ma-different [data-ss-reveal] {
    opacity: 1 !important;
    transform: none !important;
    clip-path: none !important;
    transition: none !important;
  }
}

/* ── Responsive ── */
@media (max-width: 900px) {
  .ma-different__grid {
    grid-template-columns: 1fr;
  }

  .ma-different__img-wrap {
    order: -1;
  }

  .ma-different__img {
    max-width: 320px;
  }

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

  .ma-different__list li {
    text-align: left;
  }
}

@media (max-width: 480px) {
  .ma-different__title {
    font-size: clamp(1.2rem, 6vw, 1.5rem);
  }

  .ma-different__img {
    max-width: 240px;
  }
}

/* ======================================================================
   DOMINATE FACEBOOK & INSTAGRAM ADS SECTION
   ====================================================================== */

.ma-dominate {
  position: relative;
  overflow: hidden;
  padding: clamp(3.5rem, 7vw, 6rem) 0;
  background-color: #07060e;
  background-image: url('../web/Home_back_C.webp');
  background-size: 100% auto;
  background-position: center top;
  background-repeat: repeat-y;
}

.ma-dominate::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(5, 4, 14, 0.52);
  pointer-events: none;
  z-index: 1;
}

/* ── Inner wrapper ── */
.ma-dominate__inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 3rem);
}

/* ── Heading ── */
.ma-dominate__head {
  text-align: center;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

.ma-dominate__title {
  font-family: var(--da-font);
  font-size: clamp(1.35rem, 2.2vw, 2.3rem);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  line-height: 1.35;
  color: #fff;
  margin: 0;
}

/* ── 3-col icon grid ── */
.ma-dominate__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.75rem, 4vw, 3rem) 1.5rem;
}

.ma-dominate__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1rem;
}

.ma-dominate__icon {
  width: 68px;
  height: 68px;
  object-fit: contain;
}

.ma-dominate__label {
  font-family: var(--da-font);
  font-size: clamp(0.85rem, 1vw, 1rem);
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
  margin: 0;
  max-width: 220px;
}

/* ======================================================================
   SCROLL-REVEAL — .is-visible added to .ma-dominate by IntersectionObserver
   ====================================================================== */

.ma-dominate [data-ss-reveal="head"] {
  opacity: 0;
  transform: translateY(24px);
  clip-path: inset(0 0 100% 0);
  transition:
    opacity   0.85s ease 0.1s,
    transform 0.85s ease 0.1s,
    clip-path 0.85s cubic-bezier(0.22, 1, 0.36, 1) 0.1s;
}

.ma-dominate [data-ss-reveal="item"] {
  opacity: 0;
  transform: translateY(30px) scale(0.96);
  transition:
    opacity   0.7s ease,
    transform 0.7s cubic-bezier(0.34, 1.4, 0.64, 1);
}

.ma-dominate [data-ss-reveal="item"][data-ss-delay="0"] { transition-delay: 0.10s; }
.ma-dominate [data-ss-reveal="item"][data-ss-delay="1"] { transition-delay: 0.25s; }
.ma-dominate [data-ss-reveal="item"][data-ss-delay="2"] { transition-delay: 0.40s; }

.ma-dominate.is-visible [data-ss-reveal="head"] {
  opacity: 1;
  transform: translateY(0);
  clip-path: inset(0 0 0% 0);
}

.ma-dominate.is-visible [data-ss-reveal="item"] {
  opacity: 1;
  transform: translateY(0) scale(1);
}

@media (prefers-reduced-motion: reduce) {
  .ma-dominate [data-ss-reveal] {
    opacity: 1 !important;
    transform: none !important;
    clip-path: none !important;
    transition: none !important;
  }
}

/* ── Responsive ── */
@media (max-width: 768px) {
  .ma-dominate__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .ma-dominate__title {
    font-size: clamp(1.2rem, 4vw, 1.8rem);
  }
}

@media (max-width: 480px) {
  .ma-dominate__grid {
    grid-template-columns: 1fr;
  }

  .ma-dominate__icon {
    width: 58px;
    height: 58px;
  }
}

/* ======================================================================
   TOGETHER, LET'S CREATE A SUCCESSFUL STRATEGY SECTION
   ====================================================================== */

.ma-strategy {
  position: relative;
  overflow: hidden;
  background-color: #070707;
  background-image: url('../web/Home_back_C.webp');
  background-size: 100% auto;
  background-position: center top;
  background-repeat: repeat-y;
  padding: clamp(4.5rem, 7vw, 7rem) 0;
}

.ma-strategy::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(5, 4, 14, 0.52);
  pointer-events: none;
  z-index: 0;
}

.ma-strategy::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 2px;
  background: linear-gradient(90deg, #7c3aed 0%, #c026d3 55%, #e11d48 100%);
  opacity: 0.6;
  pointer-events: none;
  z-index: 2;
}

.ma-strategy__inner {
  position: relative;
  z-index: 1;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 3.5rem);
}

.ma-strategy__header {
  text-align: center;
  max-width: 860px;
  margin: 0 auto clamp(2.5rem, 4.5vw, 4rem);
  opacity: 0;
  transform: translateY(28px);
  filter: blur(8px);
  transition:
    opacity   0.95s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.95s cubic-bezier(0.22, 1, 0.36, 1),
    filter    0.95s cubic-bezier(0.22, 1, 0.36, 1);
}

.ma-strategy__title {
  margin: 0 0 1.2rem;
  font-family: var(--da-font);
  font-weight: 900;
  text-transform: uppercase;
  font-size: clamp(1.55rem, 2.5vw, 3rem);
  line-height: 1.12;
  letter-spacing: -0.02em;
  color: #ffffff;
}

.ma-strat-grad {
  display: inline;
  background: linear-gradient(90deg, #7c3aed 0%, #c026d3 60%, #e11d48 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.ma-strat-grad2 {
  display: inline;
  background: linear-gradient(90deg, #c026d3 0%, #e11d48 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.ma-strategy__sub {
  margin: 0 auto;
  font-family: var(--da-font);
  font-size: clamp(0.8rem, 0.92vw, 0.9rem);
  font-weight: 400;
  color: rgba(255, 255, 255, 0.62);
  line-height: 1.82;
  max-width: 720px;
}

.ma-strategy__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(0.875rem, 1.4vw, 1.25rem);
}

.ma-strategy__card {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  background-color: #101010;
  background-size: cover;
  background-position: center center;
  border: 1px solid rgba(255, 255, 255, 0.05);
  cursor: pointer;
  opacity: 0;
  transform: translateY(36px) scale(0.97);
  filter: blur(6px);
  transition:
    opacity      0.75s cubic-bezier(0.22, 1, 0.36, 1),
    transform    0.75s cubic-bezier(0.22, 1, 0.36, 1),
    filter       0.75s cubic-bezier(0.22, 1, 0.36, 1),
    border-color 0.3s ease,
    box-shadow   0.3s ease;
}

.ma-strategy__card:hover {
  border-color: rgba(124, 58, 237, 0.45);
  box-shadow: 0 0 0 1px rgba(124, 58, 237, 0.18), 0 12px 40px rgba(124, 58, 237, 0.18), 0 4px 16px rgba(0, 0, 0, 0.5);
  transform: translateY(-5px) scale(1.01) !important;
}

.ma-strategy__card--accent {
  border-color: rgba(192, 38, 211, 0.12);
}

.ma-strategy__card--accent:hover {
  border-color: rgba(192, 38, 211, 0.5);
  box-shadow: 0 0 0 1px rgba(192, 38, 211, 0.22), 0 12px 40px rgba(192, 38, 211, 0.18), 0 4px 16px rgba(0, 0, 0, 0.5);
}

.ma-strategy__card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10, 10, 10, 0.05) 0%, rgba(10, 10, 10, 0.28) 100%);
  border-radius: inherit;
  pointer-events: none;
  z-index: 0;
  transition: background 0.3s ease;
}

.ma-strategy__card:hover::before {
  background: linear-gradient(180deg, rgba(10, 10, 10, 0.0) 0%, rgba(10, 10, 10, 0.16) 100%);
}

.ma-strategy__card-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.85rem;
  padding: clamp(1.75rem, 3vw, 2.5rem) clamp(1rem, 2vw, 1.75rem);
  text-align: center;
  min-height: clamp(185px, 18vw, 240px);
}

.ma-strategy__card-content-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.65rem;
}

.ma-strategy__card-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: clamp(48px, 4.5vw, 60px);
  height: clamp(48px, 4.5vw, 60px);
  border-radius: 50%;
  background: rgba(124, 58, 237, 0.1);
  border: 1px solid rgba(124, 58, 237, 0.22);
  flex-shrink: 0;
  transition: background 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
}

.ma-strategy__card:hover .ma-strategy__card-icon {
  background: rgba(124, 58, 237, 0.2);
  border-color: rgba(124, 58, 237, 0.5);
  transform: scale(1.08);
}

.ma-strategy__card-icon i {
  font-size: clamp(1.2rem, 1.6vw, 1.55rem);
  background: linear-gradient(135deg, #7c3aed, #c026d3);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  display: block;
}

.ma-strategy__card-title {
  margin: 0;
  font-family: var(--da-font);
  font-weight: 800;
  font-size: clamp(0.85rem, 1.05vw, 1.05rem);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  line-height: 1.3;
  color: #ffffff;
}

.ma-strategy__card-title--grad {
  background: linear-gradient(90deg, #7c3aed 0%, #c026d3 55%, #e11d48 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.ma-strategy__card-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 7px 20px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: transparent;
  color: rgba(255, 255, 255, 0.75);
  font-family: var(--da-font);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-decoration: none;
  text-transform: capitalize;
  transition: border-color 0.25s ease, color 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
}

.ma-strategy__card-btn:hover {
  border-color: rgba(124, 58, 237, 0.7);
  background: rgba(124, 58, 237, 0.12);
  color: #fff;
  box-shadow: 0 0 14px rgba(124, 58, 237, 0.18);
}

/* ======================================================================
   SCROLL-REVEAL — .is-visible added to .ma-strategy by IntersectionObserver
   ====================================================================== */

.ma-strategy.is-visible .ma-strategy__header { opacity: 1; transform: translateY(0); filter: blur(0); }
.ma-strategy.is-visible .ma-strategy__card   { opacity: 1; transform: translateY(0) scale(1); filter: blur(0); }

.ma-strategy.is-visible .ma-strategy__card:nth-child(1) { transition-delay: 0.12s; }
.ma-strategy.is-visible .ma-strategy__card:nth-child(2) { transition-delay: 0.22s; }
.ma-strategy.is-visible .ma-strategy__card:nth-child(3) { transition-delay: 0.32s; }
.ma-strategy.is-visible .ma-strategy__card:nth-child(4) { transition-delay: 0.40s; }
.ma-strategy.is-visible .ma-strategy__card:nth-child(5) { transition-delay: 0.50s; }
.ma-strategy.is-visible .ma-strategy__card:nth-child(6) { transition-delay: 0.60s; }

@media (prefers-reduced-motion: reduce) {
  .ma-strategy__header,
  .ma-strategy__card {
    transition: none !important;
    filter: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
}

/* ── Responsive ── */
@media (max-width: 900px) {
  .ma-strategy__grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
  .ma-strategy.is-visible .ma-strategy__card:nth-child(1) { transition-delay: 0.10s; }
  .ma-strategy.is-visible .ma-strategy__card:nth-child(2) { transition-delay: 0.18s; }
  .ma-strategy.is-visible .ma-strategy__card:nth-child(3) { transition-delay: 0.26s; }
  .ma-strategy.is-visible .ma-strategy__card:nth-child(4) { transition-delay: 0.34s; }
  .ma-strategy.is-visible .ma-strategy__card:nth-child(5) { transition-delay: 0.42s; }
  .ma-strategy.is-visible .ma-strategy__card:nth-child(6) { transition-delay: 0.50s; }
}

@media (max-width: 768px) {
  .ma-strategy { padding: 60px 0 68px; }
  .ma-strategy__title { font-size: clamp(1.3rem, 5.5vw, 2rem); }
  .ma-strategy__sub { font-size: 0.875rem; line-height: 1.78; }
  .ma-strategy__card-inner { min-height: 170px; padding: 1.5rem 1rem; }
}

@media (max-width: 560px) {
  .ma-strategy__inner { padding: 0 1rem; }
  .ma-strategy__grid { grid-template-columns: repeat(2, 1fr); gap: 0.75rem; }

  .ma-strategy__card-inner {
    flex-direction: column;
    text-align: center;
    justify-content: center;
    align-items: center;
    gap: 0.6rem;
    min-height: 155px;
    padding: 1.1rem 0.7rem;
  }

  .ma-strategy__card-content-wrap { align-items: center; gap: 0.4rem; }
  .ma-strategy__card-icon { width: 42px; height: 42px; flex-shrink: 0; }
  .ma-strategy__card-icon i { font-size: 1.1rem; }
  .ma-strategy__card-title { font-size: 0.75rem; text-align: center; letter-spacing: 0.03em; }
  .ma-strategy__card-btn { font-size: 10px; padding: 5px 14px; margin-top: 0; }

  .ma-strategy.is-visible .ma-strategy__card:nth-child(1) { transition-delay: 0.06s; }
  .ma-strategy.is-visible .ma-strategy__card:nth-child(2) { transition-delay: 0.12s; }
  .ma-strategy.is-visible .ma-strategy__card:nth-child(3) { transition-delay: 0.18s; }
  .ma-strategy.is-visible .ma-strategy__card:nth-child(4) { transition-delay: 0.24s; }
  .ma-strategy.is-visible .ma-strategy__card:nth-child(5) { transition-delay: 0.30s; }
  .ma-strategy.is-visible .ma-strategy__card:nth-child(6) { transition-delay: 0.36s; }
}

@media (max-width: 360px) {
  .ma-strategy__grid { gap: 0.6rem; }
  .ma-strategy__card-inner { min-height: 140px; padding: 1rem 0.55rem; }
  .ma-strategy__card-title { font-size: 0.7rem; }
  .ma-strategy__card-btn { font-size: 9.5px; padding: 4px 10px; }
}

@media (max-width: 480px) {
  .ma-strategy__title { font-size: clamp(1.2rem, 6.5vw, 1.7rem); letter-spacing: -0.015em; }
  .ma-strategy__sub { font-size: 0.84rem; }
}

/* ======================================================================
   CROSS TICKER  (.sm-crt)
   Copied from email-marketing.css — reuses da-crt__ ribbon internals from home-new.css
   ====================================================================== */

.sm-crt {
  position: relative;
  overflow: visible;
  z-index: 1;
  background: #07070a;
  min-height: clamp(260px, 28vw, 360px);
  padding: clamp(70px, 8vw, 100px) 0;
}

.sm-crt__clip {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 1;
  pointer-events: none;
}

.sm-crt .da-crt__fade--top,
.sm-crt__clip .da-crt__fade--top {
  height: 18%;
  background: linear-gradient(to bottom,
    #07070a 0%, rgba(7,7,10,0.70) 40%, transparent 100%);
}
.sm-crt .da-crt__fade--bottom,
.sm-crt__clip .da-crt__fade--bottom {
  height: 18%;
  background: linear-gradient(to top,
    #07070a 0%, rgba(7,7,10,0.70) 40%, transparent 100%);
}
.sm-crt .da-crt__vignette--l,
.sm-crt .da-crt__vignette--r { display: none; }

.sm-crt__cord {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 2.5px;
  background: linear-gradient(180deg,
    transparent 0%,
    rgba(130,130,130,0.22) 10%,
    rgba(168,168,168,0.52) 42%,
    rgba(195,195,195,0.80) 100%);
  border-radius: 2px;
  z-index: 0;
  pointer-events: none;
}

.sm-crt__lamp {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 30;
  pointer-events: none;
}

.sm-crt__lamp-cap {
  width: 34px;
  height: 14px;
  background: radial-gradient(ellipse at 50% 0%,
    #747474 0%, #4e4e4e 42%, #2e2e2e 80%, #1e1e1e 100%);
  border-radius: 50% 50% 0 0 / 100% 100% 0 0;
  box-shadow: 0 3px 10px rgba(0,0,0,0.85), inset 0 1px 0 rgba(255,255,255,0.12);
}

.sm-crt__lamp-svg {
  display: block;
  width: clamp(150px, 16vw, 220px);
  height: auto;
}

.sm-crt__lamp-glow {
  width: clamp(150px, 16vw, 220px);
  height: 5px;
  margin-top: -3px;
  background: rgba(255, 253, 215, 0.95);
  filter: blur(3px);
  box-shadow:
    0    0px  14px   5px rgba(255, 252, 200, 0.94),
    0   28px  55px  20px rgba(255, 246, 175, 0.58),
    0   75px 120px  42px rgba(255, 236, 140, 0.28),
    0  145px 220px  68px rgba(255, 222,  95, 0.12),
    0  260px 360px  90px rgba(255, 205,  55, 0.05);
}

/* ======================================================================
   TESTIMONIALS  (.sm-testimonials)
   Copied from email-marketing.css
   ====================================================================== */

.sm-testimonials {
  position: relative;
  z-index: 5;
  overflow: visible;
  background: linear-gradient(180deg,
    transparent               0%,
    rgba(7, 7, 10, 0.55)      7%,
    rgba(7, 7, 10, 0.90)     16%,
    #07070a                  24%);
  margin-top: -2px;
  padding-top:    clamp(3.5rem, 6vw, 6rem);
  padding-bottom: clamp(2rem, 3vw, 3rem);
}

.sm-testimonials__inner {
  position: relative;
  z-index: 1;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 3.5rem);
}

.sm-testimonials__header {
  text-align: center;
  margin-bottom: clamp(2.5rem, 4vw, 3.5rem);
  opacity: 0;
  transform: translateY(26px);
  filter: blur(6px);
  transition:
    opacity   1.1s cubic-bezier(0.22, 1, 0.36, 1),
    transform 1.1s cubic-bezier(0.22, 1, 0.36, 1),
    filter    1.1s cubic-bezier(0.22, 1, 0.36, 1);
}
.sm-testimonials.is-visible .sm-testimonials__header {
  opacity: 1; transform: translateY(0); filter: blur(0);
}

.sm-testimonials__title {
  font-family: var(--da-font);
  font-size: clamp(1.65rem, 2.8vw, 3rem);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  line-height: 1.1;
  color: #fff;
  margin: 0 0 clamp(0.8rem, 1.2vw, 1.1rem);
}

.sm-testimonials__sub {
  font-family: var(--da-font);
  font-size: clamp(0.8rem, 0.88vw, 0.9rem);
  line-height: 1.8;
  color: rgba(255,255,255,0.60);
  max-width: 560px;
  margin: 0 auto;
}

.sm-testimonials__slider-wrap {
  position: relative;
  overflow: hidden;
  width: 100%;
  padding: clamp(1rem, 1.5vw, 1.5rem) 0;
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity   1.05s cubic-bezier(0.22, 1, 0.36, 1) 0.22s,
    transform 1.05s cubic-bezier(0.22, 1, 0.36, 1) 0.22s;
}
.sm-testimonials.is-visible .sm-testimonials__slider-wrap {
  opacity: 1; transform: translateY(0);
}

.sm-testimonials__slider-wrap::before,
.sm-testimonials__slider-wrap::after {
  content: "";
  position: absolute;
  top: 0; bottom: 0;
  width: clamp(30px, 4vw, 60px);
  z-index: 5;
  pointer-events: none;
}
.sm-testimonials__slider-wrap::before {
  left: 0;
  background: linear-gradient(to right, #07070a 0%, transparent 100%);
}
.sm-testimonials__slider-wrap::after {
  right: 0;
  background: linear-gradient(to left, #07070a 0%, transparent 100%);
}

.sm-testimonials__track {
  display: flex;
  gap: clamp(14px, 1.5vw, 20px);
  width: max-content;
  will-change: transform;
  animation: smReviewScroll 32s linear infinite;
}
.sm-testimonials__slider-wrap:hover .sm-testimonials__track {
  animation-play-state: paused;
}

@keyframes smReviewScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.sm-testimonials__card {
  flex-shrink: 0;
  width: clamp(280px, 24vw, 350px);
  background: rgba(14, 12, 26, 0.94);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px;
  padding: clamp(1.5rem, 2vw, 2rem);
  display: flex;
  flex-direction: column;
  gap: clamp(0.85rem, 1.2vw, 1.1rem);
  transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}
.sm-testimonials__card:hover {
  border-color: rgba(124,58,237,0.38);
  box-shadow: 0 10px 36px rgba(124,58,237,0.16);
  transform: translateY(-4px);
}

.sm-testimonials__card--featured {
  border-color: transparent;
  background:
    linear-gradient(rgba(14,12,26,0.96), rgba(14,12,26,0.96)) padding-box,
    linear-gradient(135deg, #7c3aed 0%, #c026d3 55%, #e11d48 100%) border-box;
}
.sm-testimonials__card--featured:hover { filter: brightness(1.04); }

.sm-testimonials__quote {
  font-size: clamp(1.4rem, 2vw, 2rem);
  background: linear-gradient(135deg, #7c3aed, #c026d3);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
  opacity: 0.9;
}

.sm-testimonials__text {
  font-family: var(--da-font);
  font-size: clamp(0.78rem, 0.84vw, 0.875rem);
  line-height: 1.78;
  color: rgba(255,255,255,0.72);
  margin: 0;
  flex: 1;
}

.sm-testimonials__author {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: auto;
  padding-top: clamp(0.6rem, 0.9vw, 0.85rem);
  border-top: 1px solid rgba(255,255,255,0.07);
}

.sm-testimonials__avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 15px;
  color: #fff;
  flex-shrink: 0;
}
.sm-testimonials__avatar--a { background: linear-gradient(135deg,#7c3aed,#c026d3); }
.sm-testimonials__avatar--b { background: linear-gradient(135deg,#1d4ed8,#7c3aed); }
.sm-testimonials__avatar--c { background: linear-gradient(135deg,#c026d3,#e11d48); }
.sm-testimonials__avatar--d { background: linear-gradient(135deg,#0891b2,#7c3aed); }
.sm-testimonials__avatar--e { background: linear-gradient(135deg,#f97316,#e11d48); }
.sm-testimonials__avatar--f { background: linear-gradient(135deg,#059669,#0891b2); }

.sm-testimonials__name {
  font-family: var(--da-font);
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #c026d3;
}

@media (max-width: 768px) {
  .sm-crt { min-height: clamp(300px, 70vw, 420px); }
  .sm-crt__lamp-svg { width: clamp(100px, 22vw, 140px); }
  .sm-crt__lamp-cap { width: 24px; height: 11px; }
}
@media (max-width: 480px) {
  .sm-crt { min-height: clamp(280px, 80vw, 380px); }
  .sm-crt__lamp-svg { width: clamp(85px, 22vw, 115px); }
  .sm-crt__lamp-cap { width: 20px; height: 9px; }
  .sm-testimonials__card { width: clamp(240px, 80vw, 300px); }
}
@media (max-width: 360px) {
  .sm-crt { min-height: clamp(260px, 85vw, 360px); }
  .sm-crt__lamp-svg { width: clamp(70px, 24vw, 100px); }
  .sm-crt__lamp-cap { width: 17px; height: 8px; }
  .sm-testimonials__inner { padding: 0 1rem; }
  .sm-testimonials__card  { width: clamp(220px, 88vw, 280px); }
  .sm-testimonials__title { font-size: 1.3rem; }
}
@media (prefers-reduced-motion: reduce) {
  .sm-testimonials__header, .sm-testimonials__slider-wrap, .sm-testimonials__track {
    transition: none !important; animation: none !important;
    opacity: 1 !important; transform: none !important; filter: none !important;
  }
}

/* ======================================================================
   PRESENCE CTA — page-specific override
   The old page's CTA copy ("Begin Advertising More Intelligently") is
   longer than the shared pill button's default nowrap text; let it wrap
   on narrow screens instead of overflowing.
   ====================================================================== */
#ma-presence .da-presence__cta-text {
  white-space: normal;
  max-width: 220px;
  line-height: 1.3;
}
@media (min-width: 640px) {
  #ma-presence .da-presence__cta-text {
    max-width: 320px;
  }
}
