/* ============================================================
   M360New Addon – Elementor Widgets CSS  v4.0
   Light mode · Full-width · Mobile-first · Zero missing classes
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Syne:wght@400;500;600;700;800&family=Inter:wght@400;500;600&display=swap');

/* ── Design Tokens ────────────────────────────────────────── */
:root {
  --m360-bg:           #ffffff;
  --m360-bg-alt:       #f8f7ff;
  --m360-bg-card:      #ffffff;
  --m360-primary:      #7c3aed;
  --m360-secondary:    #db2777;
  --m360-accent:       #0891b2;
  --m360-foreground:   #0f172a;
  --m360-muted:        #64748b;
  --m360-border:       rgba(15, 23, 42, 0.1);
  --m360-font-display: 'Syne', sans-serif;
  --m360-font-body:    'Inter', sans-serif;
  --m360-radius:       12px;
  --m360-gutter:       clamp(1rem, 5vw, 6rem);
  --m360-inner:        1280px;
}

/* ================================================================
   ELEMENTOR RESET — strip ALL padding/max-width from every wrapper
   around our widgets so content sits correctly centred.
   ================================================================ */

/* Every Elementor structural wrapper that contains any m360new widget */
.elementor-section:has([class*="elementor-widget-m360new_"]),
.elementor-container:has([class*="elementor-widget-m360new_"]),
.elementor-row:has([class*="elementor-widget-m360new_"]),
.elementor-column:has([class*="elementor-widget-m360new_"]),
.e-con:has([class*="elementor-widget-m360new_"]),
.e-con-inner:has([class*="elementor-widget-m360new_"]) {
  padding-top:    0 !important;
  padding-bottom: 0 !important;
  padding-left:   0 !important;
  padding-right:  0 !important;
  margin-left:    0 !important;
  margin-right:   0 !important;
  max-width:      none !important;
  width:          100% !important;
  flex:           0 0 100% !important;
}

/* The direct widget element and its generated inner container */
[class*="elementor-widget-m360new_"] {
  width: 100% !important;
  max-width: none !important;
  padding: 0 !important;
  margin: 0 !important;
}
[class*="elementor-widget-m360new_"] > .elementor-widget-container {
  padding:   0 !important;
  margin:    0 !important;
  width:     100% !important;
  max-width: none !important;
}

/* 5 – sections fill their container width naturally.
   Background bleeds to viewport edges via box-shadow + clip-path trick.
   This keeps content in normal flow so text-align:center works correctly. */
.m360-hero,
.m360-platforms,
.m360-showcase,
.m360-articles,
.m360-videos,
.m360-cta,
.m360-footer {
  width: 100%;
  position: relative;
  box-sizing: border-box;
}

/* Per-section box-shadow background colours for full-bleed effect */
.m360-platforms { box-shadow: 0 0 0 100vmax var(--m360-bg-alt); clip-path: inset(0 -100vmax); }
.m360-articles  { box-shadow: 0 0 0 100vmax var(--m360-bg-alt); clip-path: inset(0 -100vmax); }
.m360-showcase  { box-shadow: 0 0 0 100vmax var(--m360-bg);     clip-path: inset(0 -100vmax); }
.m360-videos    { box-shadow: 0 0 0 100vmax var(--m360-bg);     clip-path: inset(0 -100vmax); }
.m360-cta       { box-shadow: 0 0 0 100vmax var(--m360-bg);     clip-path: inset(0 -100vmax); }
.m360-footer    { box-shadow: 0 0 0 100vmax var(--m360-bg);     clip-path: inset(0 -100vmax); }
.m360-hero      { box-shadow: 0 0 0 100vmax var(--m360-bg-alt); clip-path: inset(0 -100vmax); }


/* ================================================================
   SHARED LAYOUT UTILITIES
   ================================================================ */

/* Centred content wrapper — used inside every section */
.m360-inner {
  width: 100%;
  max-width: var(--m360-inner);
  margin-left:  auto;
  margin-right: auto;
  padding-left:  var(--m360-gutter);
  padding-right: var(--m360-gutter);
  box-sizing: border-box;
}

/* Section header block */
.m360-section-header {
  text-align: center;
  margin-bottom: clamp(2rem, 5vw, 4rem);
}

/* Eyebrow label — shared base; colour set per-section */
.m360-eyebrow {
  text-align: center;
  display: block;
  font-family: var(--m360-font-display);
  font-size: clamp(0.7rem, 1.2vw, 0.8125rem);
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

/* Section H2 — shared base */
.m360-section-heading {
  text-align: center;
  font-family: var(--m360-font-display);
  font-size: clamp(1.75rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--m360-foreground);
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin: 0;
}

/* Gradient accent spans */
.m360-section-heading .accent-primary,
.m360-hero__heading .accent {
  background: linear-gradient(135deg, var(--m360-primary) 0%, #a855f7 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.m360-section-heading .accent-warm,
.m360-cta__heading .accent {
  background: linear-gradient(135deg, var(--m360-secondary) 0%, #f97316 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Logo accent (navbar + footer) */
.m360-navbar__logo .accent,
.m360-footer__logo .accent {
  background: linear-gradient(135deg, var(--m360-primary) 0%, #a855f7 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-left: 0.25rem;
}

/* CTA centred block */
.m360-cta__inner {
  position: relative;
  z-index: 1;
  text-align: center;
}

/* Footer flex row */
.m360-footer__row {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  text-align: center;
}
@media (min-width: 768px) {
  .m360-footer__row {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    text-align: left;
  }
}

/* ================================================================
   NAVBAR
   ================================================================ */
.m360-navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  width: 100%;
  z-index: 9999;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--m360-border);
  box-shadow: 0 1px 0 rgba(15, 23, 42, 0.07);
  box-sizing: border-box;
}
.m360-navbar__container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  max-width: var(--m360-inner);
  width: 100%;
  margin: 0 auto;
  padding-left:  var(--m360-gutter);
  padding-right: var(--m360-gutter);
  box-sizing: border-box;
}
.m360-navbar__logo {
  font-family: var(--m360-font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--m360-foreground);
  text-decoration: none;
  letter-spacing: -0.01em;
  white-space: nowrap;
}
.m360-navbar__links {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.m360-navbar__link {
  font-family: var(--m360-font-body);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--m360-muted);
  text-decoration: none;
  transition: color 0.2s;
  white-space: nowrap;
}
.m360-navbar__link:hover { color: var(--m360-foreground); }
.m360-navbar__link--btn {
  background: var(--m360-primary) !important;
  color: #fff !important;
  padding: 0.5rem 1.25rem;
  border-radius: 8px;
  font-weight: 600;
  transition: transform 0.2s, box-shadow 0.2s !important;
}
.m360-navbar__link--btn:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 20px rgba(124, 58, 237, 0.35);
  color: #fff !important;
}

/* Mobile toggle */
.m360-navbar__toggle {
  display: none;
  background: none;
  border: none;
  color: var(--m360-foreground);
  cursor: pointer;
  padding: 0.25rem;
  line-height: 1;
}
.m360-navbar__toggle svg {
  width: 24px; height: 24px;
  stroke: currentColor; fill: none;
  stroke-width: 2; stroke-linecap: round; stroke-linejoin: round;
  display: block;
}
.m360-navbar__mobile {
  display: none;
  flex-direction: column;
  gap: 0.875rem;
  padding: 1rem var(--m360-gutter) 1.5rem;
  border-top: 1px solid var(--m360-border);
  background: var(--m360-bg);
}
.m360-navbar__mobile.is-open { display: flex; }
.m360-navbar__mobile .m360-navbar__link      { font-size: 1rem; }
.m360-navbar__mobile .m360-navbar__link--btn { text-align: center; padding: 0.75rem 1.25rem; }
@media (max-width: 767px) {
  .m360-navbar__links  { display: none; }
  .m360-navbar__toggle { display: flex; }
}

/* ================================================================
   HERO
   ================================================================ */
.m360-hero {
  min-height: 100svh;
  min-height: 100vh; /* fallback */
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--m360-bg-alt);
  padding-top: 64px;
  box-sizing: border-box;
}
@media (min-width: 768px) {
  .m360-hero {
    min-height: unset;
    aspect-ratio: 16 / 9;
    padding-top: 0;
  }
}
@media (max-width: 767px) {
  .m360-hero { padding-bottom: 3rem; }
}
.m360-hero__bg-img {
  position: absolute;
  inset: 0; width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  opacity: 0.18;
  pointer-events: none;
}
.m360-hero__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(255,255,255,0.55) 0%,
    rgba(255,255,255,0.35) 50%,
    rgba(255,255,255,0.90) 100%
  );
  pointer-events: none;
}
.m360-hero__content {
  position: relative;
  z-index: 10;
  text-align: center;
  width: 100%;
  max-width: var(--m360-inner);
  margin: 0 auto;
  padding: clamp(2rem, 5vw, 4rem) var(--m360-gutter);
  box-sizing: border-box;
}
.m360-hero__eyebrow {
  text-align: center;
  font-family: var(--m360-font-display);
  font-size: clamp(0.7rem, 1.2vw, 0.875rem);
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--m360-primary);
  margin-bottom: 1rem;
  animation: m360FadeIn 0.6s ease both;
}
.m360-hero__heading {
  text-align: center;
  font-family: var(--m360-font-display);
  font-size: clamp(2.5rem, 7vw, 6rem);
  font-weight: 800;
  line-height: 1.0;
  color: var(--m360-foreground);
  margin: 0 0 1.25rem;
  letter-spacing: -0.03em;
  animation: m360FadeUp 0.7s ease both;
}
.m360-hero__sub {
  text-align: center;
  font-family: var(--m360-font-body);
  font-size: clamp(0.95rem, 1.8vw, 1.2rem);
  color: var(--m360-muted);
  max-width: 38rem;
  margin: 0 auto 2.25rem;
  line-height: 1.75;
  animation: m360FadeUp 0.7s 0.2s ease both;
}
.m360-hero__btns {
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
  justify-content: center;
  align-items: center;
  animation: m360FadeUp 0.7s 0.4s ease both;
}
@media (min-width: 480px) { .m360-hero__btns { flex-direction: row; } }
.m360-hero__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  font-family: var(--m360-font-body);
  font-weight: 600;
  font-size: clamp(0.875rem, 1.2vw, 1rem);
  padding: 0.875rem 2rem;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
  white-space: nowrap;
}
.m360-hero__btn--primary {
  background: var(--m360-primary);
  color: #fff;
  box-shadow: 0 4px 24px rgba(124, 58, 237, 0.25);
}
.m360-hero__btn--primary:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 32px rgba(124, 58, 237, 0.42);
  color: #fff;
}
.m360-hero__btn--secondary {
  background: transparent;
  color: var(--m360-foreground);
  border: 1.5px solid var(--m360-border);
}
.m360-hero__btn--secondary:hover {
  background: rgba(15, 23, 42, 0.04);
  transform: scale(1.02);
}
@media (max-width: 479px) {
  .m360-hero__btn { width: 100%; max-width: 300px; }
}

/* ================================================================
   SECTION BACKGROUNDS & PADDING
   ================================================================ */
.m360-platforms { padding: clamp(3rem, 7vw, 6rem) 0; background: var(--m360-bg-alt); }
.m360-showcase  { padding: clamp(3rem, 7vw, 6rem) 0; background: var(--m360-bg); }
.m360-articles  { padding: clamp(3rem, 7vw, 6rem) 0; background: var(--m360-bg-alt); }
.m360-videos    { padding: clamp(3rem, 7vw, 6rem) 0; background: var(--m360-bg); }
.m360-cta       { padding: clamp(3.5rem, 8vw, 6rem) 0; background: var(--m360-bg); overflow: hidden; }
.m360-footer    { padding: clamp(2rem, 4vw, 3rem) 0; background: var(--m360-bg); border-top: 1px solid var(--m360-border); }

/* CTA ambient gradient */
.m360-cta::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg,
    rgba(124, 58, 237, 0.05) 0%,
    rgba(8, 145, 178, 0.03) 50%,
    rgba(219, 39, 119, 0.05) 100%
  );
  pointer-events: none;
}

/* ================================================================
   PER-SECTION EYEBROW COLOURS  (applied alongside .m360-eyebrow)
   ================================================================ */
.m360-platforms__eyebrow { color: var(--m360-primary); }
.m360-articles__eyebrow  { color: var(--m360-primary); }
.m360-showcase__eyebrow  { color: var(--m360-secondary); }
.m360-videos__eyebrow    { color: var(--m360-secondary); }

/* ================================================================
   BACKWARD-COMPAT: old section-specific container / header /
   heading / eyebrow names still generated by Elementor style tabs
   ================================================================ */
.m360-platforms__container,
.m360-showcase__container,
.m360-articles__container,
.m360-videos__container,
.m360-cta__container,
.m360-footer__container {
  width: 100%;
  max-width: var(--m360-inner);
  margin-left:  auto;
  margin-right: auto;
  padding-left:  var(--m360-gutter);
  padding-right: var(--m360-gutter);
  box-sizing: border-box;
}
.m360-footer__container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  text-align: center;
}
@media (min-width: 768px) {
  .m360-footer__container {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}

.m360-platforms__header,
.m360-showcase__header,
.m360-articles__header,
.m360-videos__header {
  text-align: center;
  margin-bottom: clamp(2rem, 5vw, 4rem);
}

.m360-platforms__heading,
.m360-showcase__heading,
.m360-articles__heading,
.m360-videos__heading {
  text-align: center;
  font-family: var(--m360-font-display);
  font-size: clamp(1.75rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--m360-foreground);
  letter-spacing: -0.02em;
  line-height: 1.1;
}
.m360-platforms__heading .accent,
.m360-videos__heading .accent {
  background: linear-gradient(135deg, var(--m360-secondary) 0%, #f97316 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.m360-showcase__heading .accent,
.m360-articles__heading .accent {
  background: linear-gradient(135deg, var(--m360-primary) 0%, #a855f7 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ================================================================
   PLATFORMS GRID
   ================================================================ */
.m360-platforms__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(0.75rem, 2vw, 1.5rem);
}
@media (min-width: 600px)  { .m360-platforms__grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1024px) { .m360-platforms__grid { grid-template-columns: repeat(6, 1fr); } }

.m360-platforms__card {
  background: var(--m360-bg-card);
  border: 1px solid var(--m360-border);
  border-radius: var(--m360-radius);
  padding: clamp(1.125rem, 2.5vw, 1.75rem) 1rem;
  text-align: center;
  box-shadow: 0 1px 3px rgba(15, 23, 42, 0.06);
  transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
  cursor: default;
}
.m360-platforms__card:hover {
  transform: translateY(-5px);
  border-color: rgba(124, 58, 237, 0.28);
  box-shadow: 0 10px 36px rgba(124, 58, 237, 0.11);
}
.m360-platforms__card-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.75rem;
  font-size: clamp(1.5rem, 2.5vw, 2rem);
}
.m360-platforms__card-icon i,
.m360-platforms__card-icon svg { font-size: inherit; width: 1em; height: 1em; }
.m360-platforms__card-name {
  text-align: center;
  font-family: var(--m360-font-display);
  font-weight: 600;
  font-size: clamp(0.8125rem, 1.3vw, 1rem);
  color: var(--m360-foreground);
  margin-bottom: 0.25rem;
}
.m360-platforms__card-desc {
  text-align: center;
  font-family: var(--m360-font-body);
  font-size: clamp(0.72rem, 1.1vw, 0.875rem);
  color: var(--m360-muted);
  line-height: 1.5;
}

/* ================================================================
   CONTENT SHOWCASE GRID
   ================================================================ */
.m360-showcase__grid {
  display: grid;
  gap: clamp(1rem, 2.5vw, 2rem);
}
@media (min-width: 600px) { .m360-showcase__grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 900px)  { .m360-showcase__grid { grid-template-columns: repeat(3, 1fr); } }

.m360-showcase__card {
  text-align: center;
  display: flex;
  flex-direction: column;
  background: var(--m360-bg-card);
  border-left:   4px solid var(--m360-primary);
  border-top:    1px solid var(--m360-border);
  border-right:  1px solid var(--m360-border);
  border-bottom: 1px solid var(--m360-border);
  border-radius: var(--m360-radius);
  padding: clamp(1.25rem, 2.5vw, 1.75rem);
  text-decoration: none;
  box-shadow: 0 1px 4px rgba(15, 23, 42, 0.06);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}
.m360-showcase__card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 36px rgba(124, 58, 237, 0.11);
}
.m360-showcase__card-tag {
  text-align: center;
  font-family: var(--m360-font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--m360-muted);
}
.m360-showcase__card-title {
  text-align: center;
  font-family: var(--m360-font-display);
  font-size: clamp(0.95rem, 1.4vw, 1.125rem);
  font-weight: 600;
  color: var(--m360-foreground);
  margin: 0.5rem 0 0.75rem;
  line-height: 1.35;
  transition: color 0.2s;
}
.m360-showcase__card:hover .m360-showcase__card-title { color: var(--m360-primary); }
.m360-showcase__card-desc {
  text-align: center;
  font-family: var(--m360-font-body);
  font-size: clamp(0.8125rem, 1.2vw, 0.9rem);
  color: var(--m360-muted);
  line-height: 1.65;
  flex: 1;
  margin-bottom: 1rem;
}
.m360-showcase__card-link {
  justify-content: center;
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  font-family: var(--m360-font-body);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--m360-primary);
  transition: gap 0.2s;
  margin-top: auto;
}
.m360-showcase__card:hover .m360-showcase__card-link { gap: 0.5rem; }

/* ================================================================
   ARTICLES GRID
   ================================================================ */
.m360-articles__grid {
  display: grid;
  gap: clamp(0.875rem, 2vw, 1.5rem);
}
@media (min-width: 600px)  { .m360-articles__grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .m360-articles__grid { grid-template-columns: repeat(3, 1fr); } }

.m360-articles__card {
  text-align: center;
  display: flex;
  flex-direction: column;
  background: var(--m360-bg-card);
  border: 1px solid var(--m360-border);
  border-radius: var(--m360-radius);
  padding: clamp(1.125rem, 2vw, 1.5rem);
  text-decoration: none;
  box-shadow: 0 1px 3px rgba(15, 23, 42, 0.06);
  transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}
.m360-articles__card:hover {
  transform: translateY(-5px);
  border-color: rgba(124, 58, 237, 0.28);
  box-shadow: 0 10px 36px rgba(124, 58, 237, 0.11);
}
.m360-articles__card-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.75rem;
  gap: 0.5rem;
  flex-wrap: wrap;
}
.m360-articles__card-category {
  text-align: center;
  font-family: var(--m360-font-body);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--m360-accent);
}
.m360-articles__card-time {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  font-family: var(--m360-font-body);
  font-size: 0.72rem;
  color: var(--m360-muted);
  white-space: nowrap;
}
.m360-articles__card-title {
  text-align: center;
  font-family: var(--m360-font-display);
  font-size: clamp(0.875rem, 1.2vw, 1rem);
  font-weight: 600;
  color: var(--m360-foreground);
  margin-bottom: 0.5rem;
  line-height: 1.4;
  transition: color 0.2s;
}
.m360-articles__card:hover .m360-articles__card-title { color: var(--m360-primary); }
.m360-articles__card-excerpt {
  text-align: center;
  font-family: var(--m360-font-body);
  font-size: clamp(0.8125rem, 1.2vw, 0.875rem);
  color: var(--m360-muted);
  line-height: 1.65;
  flex: 1;
}
.m360-articles__card-link {
  justify-content: center;
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  font-family: var(--m360-font-body);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--m360-primary);
  margin-top: 1rem;
  transition: gap 0.2s;
}
.m360-articles__card:hover .m360-articles__card-link { gap: 0.5rem; }

/* ================================================================
   VIDEOS GRID
   ================================================================ */
.m360-videos__grid {
  display: grid;
  gap: clamp(0.875rem, 2vw, 1.5rem);
  grid-template-columns: 1fr;
}
@media (min-width: 480px)  { .m360-videos__grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .m360-videos__grid { grid-template-columns: repeat(4, 1fr); } }

.m360-videos__card {
  display: flex;
  flex-direction: column;
  background: var(--m360-bg-card);
  border: 1px solid var(--m360-border);
  border-radius: var(--m360-radius);
  overflow: hidden;
  text-decoration: none;
  box-shadow: 0 1px 3px rgba(15, 23, 42, 0.06);
  transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}
.m360-videos__card:hover {
  transform: translateY(-5px);
  border-color: rgba(124, 58, 237, 0.28);
  box-shadow: 0 10px 36px rgba(124, 58, 237, 0.11);
}
.m360-videos__thumb {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #ede9fe;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  flex-shrink: 0;
}
.m360-videos__thumb img {
  position: absolute;
  inset: 0; width: 100%; height: 100%;
  object-fit: cover;
}
.m360-videos__play {
  position: relative;
  z-index: 2;
  width: clamp(2.5rem, 4vw, 3rem);
  height: clamp(2.5rem, 4vw, 3rem);
  border-radius: 50%;
  background: rgba(124, 58, 237, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, transform 0.2s;
}
.m360-videos__card:hover .m360-videos__play {
  background: rgba(124, 58, 237, 0.45);
  transform: scale(1.1);
}
.m360-videos__play i {
  font-size: clamp(0.9rem, 1.5vw, 1.125rem);
  color: var(--m360-primary);
  margin-left: 3px;
}
.m360-videos__duration {
  position: absolute;
  bottom: 0.5rem; right: 0.5rem;
  background: rgba(15, 23, 42, 0.72);
  color: #fff;
  font-family: monospace;
  font-size: 0.72rem;
  padding: 0.15rem 0.4rem;
  border-radius: 4px;
  z-index: 2;
  letter-spacing: 0.04em;
}
.m360-videos__card-body {
  text-align: center;
  padding: clamp(0.75rem, 1.5vw, 1rem);
  display: flex;
  flex-direction: column;
  flex: 1;
}
.m360-videos__card-meta {
  justify-content: center;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  margin-bottom: 0.4rem;
  flex-wrap: wrap;
}
.m360-videos__card-tag {
  text-align: center;
  font-family: var(--m360-font-body);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--m360-primary);
}
.m360-videos__card-platform {
  text-align: center;
  font-family: var(--m360-font-body);
  font-size: 0.72rem;
  color: var(--m360-muted);
}
.m360-videos__card-title {
  text-align: center;
  font-family: var(--m360-font-display);
  font-size: clamp(0.8125rem, 1.1vw, 0.9375rem);
  font-weight: 600;
  color: var(--m360-foreground);
  line-height: 1.35;
  transition: color 0.2s;
  margin-top: auto;
}
.m360-videos__card:hover .m360-videos__card-title { color: var(--m360-primary); }

/* ================================================================
   CTA SECTION
   ================================================================ */
.m360-cta__heading {
  text-align: center;
  font-family: var(--m360-font-display);
  font-size: clamp(1.75rem, 4.5vw, 3.25rem);
  font-weight: 700;
  color: var(--m360-foreground);
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin-bottom: 1rem;
}
.m360-cta__sub {
  text-align: center;
  font-family: var(--m360-font-body);
  font-size: clamp(0.95rem, 1.6vw, 1.125rem);
  color: var(--m360-muted);
  max-width: 34rem;
  margin: 0 auto 2rem;
  line-height: 1.75;
}
.m360-cta__btn {
  text-align: center;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: var(--m360-secondary);
  color: #fff;
  font-family: var(--m360-font-body);
  font-weight: 700;
  font-size: clamp(0.875rem, 1.2vw, 1rem);
  padding: 0.9rem 2.5rem;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(219, 39, 119, 0.25);
  transition: transform 0.2s, box-shadow 0.2s;
}
.m360-cta__btn:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 32px rgba(219, 39, 119, 0.42);
  color: #fff;
}
@media (max-width: 479px) {
  .m360-cta__btn { width: 100%; max-width: 300px; }
}

/* ================================================================
   FOOTER
   ================================================================ */
.m360-footer__logo {
  text-align: center;
  font-family: var(--m360-font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--m360-foreground);
  margin: 0;
  white-space: nowrap;
}
.m360-footer__social {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
  justify-content: center;
}
@media (min-width: 768px) { .m360-footer__social { justify-content: flex-start; } }
.m360-footer__social-link {
  color: var(--m360-muted);
  text-decoration: none;
  font-size: 1.2rem;
  line-height: 1;
  display: inline-flex;
  transition: color 0.2s, transform 0.2s;
}
.m360-footer__social-link:hover {
  color: var(--m360-primary);
  transform: translateY(-2px);
}
.m360-footer__social-link i,
.m360-footer__social-link svg { width: 1.2rem; height: 1.2rem; font-size: 1.2rem; }
.m360-footer__copyright {
  text-align: center;
  font-family: var(--m360-font-body);
  font-size: 0.875rem;
  color: var(--m360-muted);
  margin: 0;
  white-space: nowrap;
}

/* ================================================================
   ANIMATIONS
   ================================================================ */
@keyframes m360FadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes m360FadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  .m360-hero__eyebrow,
  .m360-hero__heading,
  .m360-hero__sub,
  .m360-hero__btns { animation: none; opacity: 1; }

  .m360-platforms__card, .m360-showcase__card,
  .m360-articles__card,  .m360-videos__card,
  .m360-hero__btn,       .m360-cta__btn,
  .m360-navbar__link--btn { transition: none; }
}
